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.
 
 
 

53841 wiersze
1.3 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,
  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: ["monster-hunter"]
  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. }
  2055. //species
  2056. function getSpeciesInfo(speciesList) {
  2057. let result = new Set();
  2058. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2059. result.add(entry)
  2060. });
  2061. return Array.from(result);
  2062. };
  2063. function getSpeciesInfoHelper(species) {
  2064. if (!speciesData[species]) {
  2065. console.warn(species + " doesn't exist");
  2066. return [];
  2067. }
  2068. if (speciesData[species].parents) {
  2069. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2070. } else {
  2071. return [species];
  2072. }
  2073. }
  2074. characterMakers.push(() => makeCharacter(
  2075. {
  2076. name: "Fen",
  2077. species: ["crux"],
  2078. description: {
  2079. title: "Bio",
  2080. text: "Very furry. Sheds on everything."
  2081. },
  2082. tags: [
  2083. "anthro",
  2084. "goo"
  2085. ]
  2086. },
  2087. {
  2088. front: {
  2089. height: math.unit(12, "feet"),
  2090. weight: math.unit(2400, "lb"),
  2091. name: "Front",
  2092. image: {
  2093. source: "./media/characters/fen/front.svg",
  2094. extra: 1804/1562,
  2095. bottom: 205/2009
  2096. },
  2097. extraAttributes: {
  2098. pawSize: {
  2099. name: "Paw Size",
  2100. power: 2,
  2101. type: "area",
  2102. base: math.unit(0.35, "m^2")
  2103. }
  2104. }
  2105. },
  2106. diving: {
  2107. height: math.unit(4.9, "meters"),
  2108. weight: math.unit(2400, "lb"),
  2109. name: "Diving",
  2110. image: {
  2111. source: "./media/characters/fen/diving.svg"
  2112. }
  2113. },
  2114. goo: {
  2115. height: math.unit(12, "feet"),
  2116. weight: math.unit(3600, "lb"),
  2117. volume: math.unit(1000, "liters"),
  2118. preyCapacity: math.unit(6, "people"),
  2119. name: "Goo",
  2120. image: {
  2121. source: "./media/characters/fen/goo.svg",
  2122. extra: 1307/1071,
  2123. bottom: 134/1441
  2124. }
  2125. },
  2126. gooNsfw: {
  2127. height: math.unit(12, "feet"),
  2128. weight: math.unit(3750, "lb"),
  2129. volume: math.unit(1000, "liters"),
  2130. preyCapacity: math.unit(6, "people"),
  2131. name: "Goo (NSFW)",
  2132. image: {
  2133. source: "./media/characters/fen/goo-nsfw.svg",
  2134. extra: 1875/1734,
  2135. bottom: 122/1997
  2136. }
  2137. },
  2138. maw: {
  2139. height: math.unit(5.03, "feet"),
  2140. name: "Maw",
  2141. image: {
  2142. source: "./media/characters/fen/maw.svg"
  2143. }
  2144. },
  2145. gooCeiling: {
  2146. height: math.unit(6.6, "feet"),
  2147. weight: math.unit(3000, "lb"),
  2148. volume: math.unit(1000, "liters"),
  2149. preyCapacity: math.unit(6, "people"),
  2150. name: "Goo (Ceiling)",
  2151. image: {
  2152. source: "./media/characters/fen/goo-ceiling.svg"
  2153. }
  2154. },
  2155. paw: {
  2156. height: math.unit(3.77, "feet"),
  2157. name: "Paw",
  2158. image: {
  2159. source: "./media/characters/fen/paw.svg"
  2160. },
  2161. extraAttributes: {
  2162. "toeSize": {
  2163. name: "Toe Size",
  2164. power: 2,
  2165. type: "area",
  2166. base: math.unit(0.02875, "m^2")
  2167. },
  2168. "pawSize": {
  2169. name: "Paw Size",
  2170. power: 2,
  2171. type: "area",
  2172. base: math.unit(0.378, "m^2")
  2173. },
  2174. }
  2175. },
  2176. tail: {
  2177. height: math.unit(12.1, "feet"),
  2178. name: "Tail",
  2179. image: {
  2180. source: "./media/characters/fen/tail.svg"
  2181. }
  2182. },
  2183. tailFull: {
  2184. height: math.unit(12.1, "feet"),
  2185. name: "Full Tail",
  2186. image: {
  2187. source: "./media/characters/fen/tail-full.svg"
  2188. }
  2189. },
  2190. back: {
  2191. height: math.unit(12, "feet"),
  2192. weight: math.unit(2400, "lb"),
  2193. name: "Back",
  2194. image: {
  2195. source: "./media/characters/fen/back.svg",
  2196. },
  2197. info: {
  2198. description: {
  2199. mode: "append",
  2200. text: "\n\nHe is not currently looking at you."
  2201. }
  2202. }
  2203. },
  2204. full: {
  2205. height: math.unit(1.85, "meter"),
  2206. weight: math.unit(3200, "lb"),
  2207. name: "Full",
  2208. image: {
  2209. source: "./media/characters/fen/full.svg",
  2210. extra: 1133/859,
  2211. bottom: 145/1278
  2212. },
  2213. info: {
  2214. description: {
  2215. mode: "append",
  2216. text: "\n\nMunch."
  2217. }
  2218. }
  2219. },
  2220. gooLounging: {
  2221. height: math.unit(4.53, "feet"),
  2222. weight: math.unit(3000, "lb"),
  2223. preyCapacity: math.unit(6, "people"),
  2224. name: "Goo (Lounging)",
  2225. image: {
  2226. source: "./media/characters/fen/goo-lounging.svg",
  2227. bottom: 116 / 613
  2228. }
  2229. },
  2230. lounging: {
  2231. height: math.unit(10.52, "feet"),
  2232. weight: math.unit(2400, "lb"),
  2233. name: "Lounging",
  2234. image: {
  2235. source: "./media/characters/fen/lounging.svg"
  2236. }
  2237. },
  2238. },
  2239. [
  2240. {
  2241. name: "Small",
  2242. height: math.unit(2.2428, "meter")
  2243. },
  2244. {
  2245. name: "Normal",
  2246. height: math.unit(12, "feet"),
  2247. default: true,
  2248. },
  2249. {
  2250. name: "Big",
  2251. height: math.unit(20, "feet")
  2252. },
  2253. {
  2254. name: "Minimacro",
  2255. height: math.unit(40, "feet"),
  2256. info: {
  2257. description: {
  2258. mode: "append",
  2259. text: "\n\nTOO DAMN BIG"
  2260. }
  2261. }
  2262. },
  2263. {
  2264. name: "Macro",
  2265. height: math.unit(100, "feet"),
  2266. info: {
  2267. description: {
  2268. mode: "append",
  2269. text: "\n\nTOO DAMN BIG"
  2270. }
  2271. }
  2272. },
  2273. {
  2274. name: "Megamacro",
  2275. height: math.unit(2, "miles")
  2276. },
  2277. {
  2278. name: "Gigamacro",
  2279. height: math.unit(10, "earths")
  2280. },
  2281. ]
  2282. ))
  2283. characterMakers.push(() => makeCharacter(
  2284. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2285. {
  2286. front: {
  2287. height: math.unit(183, "cm"),
  2288. weight: math.unit(80, "kg"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/sofia-fluttertail/front.svg",
  2292. bottom: 0.01,
  2293. extra: 2154 / 2081
  2294. }
  2295. },
  2296. frontAlt: {
  2297. height: math.unit(183, "cm"),
  2298. weight: math.unit(80, "kg"),
  2299. name: "Front (alt)",
  2300. image: {
  2301. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2302. }
  2303. },
  2304. back: {
  2305. height: math.unit(183, "cm"),
  2306. weight: math.unit(80, "kg"),
  2307. name: "Back",
  2308. image: {
  2309. source: "./media/characters/sofia-fluttertail/back.svg"
  2310. }
  2311. },
  2312. kneeling: {
  2313. height: math.unit(125, "cm"),
  2314. weight: math.unit(80, "kg"),
  2315. name: "Kneeling",
  2316. image: {
  2317. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2318. extra: 1033 / 977,
  2319. bottom: 23.7 / 1057
  2320. }
  2321. },
  2322. maw: {
  2323. height: math.unit(183 / 5, "cm"),
  2324. name: "Maw",
  2325. image: {
  2326. source: "./media/characters/sofia-fluttertail/maw.svg"
  2327. }
  2328. },
  2329. mawcloseup: {
  2330. height: math.unit(183 / 5 * 0.41, "cm"),
  2331. name: "Maw (Closeup)",
  2332. image: {
  2333. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2334. }
  2335. },
  2336. paws: {
  2337. height: math.unit(1.17, "feet"),
  2338. name: "Paws",
  2339. image: {
  2340. source: "./media/characters/sofia-fluttertail/paws.svg",
  2341. extra: 851 / 851,
  2342. bottom: 17 / 868
  2343. }
  2344. },
  2345. },
  2346. [
  2347. {
  2348. name: "Normal",
  2349. height: math.unit(1.83, "meter")
  2350. },
  2351. {
  2352. name: "Size Thief",
  2353. height: math.unit(18, "feet")
  2354. },
  2355. {
  2356. name: "50 Foot Collie",
  2357. height: math.unit(50, "feet")
  2358. },
  2359. {
  2360. name: "Macro",
  2361. height: math.unit(96, "feet"),
  2362. default: true
  2363. },
  2364. {
  2365. name: "Megamerger",
  2366. height: math.unit(650, "feet")
  2367. },
  2368. ]
  2369. ))
  2370. characterMakers.push(() => makeCharacter(
  2371. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2372. {
  2373. front: {
  2374. height: math.unit(7, "feet"),
  2375. weight: math.unit(100, "kg"),
  2376. name: "Front",
  2377. image: {
  2378. source: "./media/characters/march/front.svg",
  2379. extra: 1992/1851,
  2380. bottom: 39/2031
  2381. }
  2382. },
  2383. foot: {
  2384. height: math.unit(0.9, "feet"),
  2385. name: "Foot",
  2386. image: {
  2387. source: "./media/characters/march/foot.svg"
  2388. }
  2389. },
  2390. },
  2391. [
  2392. {
  2393. name: "Normal",
  2394. height: math.unit(7.9, "feet")
  2395. },
  2396. {
  2397. name: "Macro",
  2398. height: math.unit(220, "meters")
  2399. },
  2400. {
  2401. name: "Megamacro",
  2402. height: math.unit(2.98, "km"),
  2403. default: true
  2404. },
  2405. {
  2406. name: "Gigamacro",
  2407. height: math.unit(15963, "km")
  2408. },
  2409. {
  2410. name: "Teramacro",
  2411. height: math.unit(2980000000, "km")
  2412. },
  2413. {
  2414. name: "Examacro",
  2415. height: math.unit(250, "parsecs")
  2416. },
  2417. ]
  2418. ))
  2419. characterMakers.push(() => makeCharacter(
  2420. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2421. {
  2422. front: {
  2423. height: math.unit(6, "feet"),
  2424. weight: math.unit(60, "kg"),
  2425. name: "Front",
  2426. image: {
  2427. source: "./media/characters/noir/front.svg",
  2428. extra: 1,
  2429. bottom: 0.032
  2430. }
  2431. },
  2432. },
  2433. [
  2434. {
  2435. name: "Normal",
  2436. height: math.unit(6.6, "feet")
  2437. },
  2438. {
  2439. name: "Macro",
  2440. height: math.unit(500, "feet")
  2441. },
  2442. {
  2443. name: "Megamacro",
  2444. height: math.unit(2.5, "km"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Gigamacro",
  2449. height: math.unit(22500, "km")
  2450. },
  2451. {
  2452. name: "Teramacro",
  2453. height: math.unit(2500000000, "km")
  2454. },
  2455. {
  2456. name: "Examacro",
  2457. height: math.unit(200, "parsecs")
  2458. },
  2459. ]
  2460. ))
  2461. characterMakers.push(() => makeCharacter(
  2462. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2463. {
  2464. front: {
  2465. height: math.unit(7, "feet"),
  2466. weight: math.unit(100, "kg"),
  2467. name: "Front",
  2468. image: {
  2469. source: "./media/characters/okuri/front.svg",
  2470. extra: 739/665,
  2471. bottom: 39/778
  2472. }
  2473. },
  2474. back: {
  2475. height: math.unit(7, "feet"),
  2476. weight: math.unit(100, "kg"),
  2477. name: "Back",
  2478. image: {
  2479. source: "./media/characters/okuri/back.svg",
  2480. extra: 734/653,
  2481. bottom: 13/747
  2482. }
  2483. },
  2484. sitting: {
  2485. height: math.unit(2.95, "feet"),
  2486. weight: math.unit(100, "kg"),
  2487. name: "Sitting",
  2488. image: {
  2489. source: "./media/characters/okuri/sitting.svg",
  2490. extra: 370/318,
  2491. bottom: 99/469
  2492. }
  2493. },
  2494. },
  2495. [
  2496. {
  2497. name: "Smallest",
  2498. height: math.unit(5 + 2/12, "feet")
  2499. },
  2500. {
  2501. name: "Smaller",
  2502. height: math.unit(300, "feet")
  2503. },
  2504. {
  2505. name: "Small",
  2506. height: math.unit(1000, "feet")
  2507. },
  2508. {
  2509. name: "Macro",
  2510. height: math.unit(1, "mile")
  2511. },
  2512. {
  2513. name: "Mega Macro (Small)",
  2514. height: math.unit(20, "km")
  2515. },
  2516. {
  2517. name: "Mega Macro (Large)",
  2518. height: math.unit(600, "km")
  2519. },
  2520. {
  2521. name: "Giga Macro",
  2522. height: math.unit(10000, "km")
  2523. },
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(577560, "km"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Large",
  2531. height: math.unit(4, "galaxies")
  2532. },
  2533. {
  2534. name: "Largest",
  2535. height: math.unit(15, "multiverses")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(7, "feet"),
  2544. weight: math.unit(100, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/manny/front.svg",
  2548. extra: 1,
  2549. bottom: 0.06
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(7, "feet"),
  2554. weight: math.unit(100, "kg"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/manny/back.svg",
  2558. extra: 1,
  2559. bottom: 0.014
  2560. }
  2561. },
  2562. },
  2563. [
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(7, "feet"),
  2567. },
  2568. {
  2569. name: "Macro",
  2570. height: math.unit(78, "feet"),
  2571. default: true
  2572. },
  2573. {
  2574. name: "Macro+",
  2575. height: math.unit(300, "meters")
  2576. },
  2577. {
  2578. name: "Macro++",
  2579. height: math.unit(2400, "meters")
  2580. },
  2581. {
  2582. name: "Megamacro",
  2583. height: math.unit(5167, "meters")
  2584. },
  2585. {
  2586. name: "Gigamacro",
  2587. height: math.unit(41769, "miles")
  2588. },
  2589. ]
  2590. ))
  2591. characterMakers.push(() => makeCharacter(
  2592. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2593. {
  2594. front: {
  2595. height: math.unit(7, "feet"),
  2596. weight: math.unit(100, "kg"),
  2597. name: "Front",
  2598. image: {
  2599. source: "./media/characters/adake/front-1.svg"
  2600. }
  2601. },
  2602. frontAlt: {
  2603. height: math.unit(7, "feet"),
  2604. weight: math.unit(100, "kg"),
  2605. name: "Front (Alt)",
  2606. image: {
  2607. source: "./media/characters/adake/front-2.svg",
  2608. extra: 1,
  2609. bottom: 0.01
  2610. }
  2611. },
  2612. back: {
  2613. height: math.unit(7, "feet"),
  2614. weight: math.unit(100, "kg"),
  2615. name: "Back",
  2616. image: {
  2617. source: "./media/characters/adake/back.svg",
  2618. }
  2619. },
  2620. kneel: {
  2621. height: math.unit(5.385, "feet"),
  2622. weight: math.unit(100, "kg"),
  2623. name: "Kneeling",
  2624. image: {
  2625. source: "./media/characters/adake/kneel.svg",
  2626. bottom: 0.052
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(7, "feet"),
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(78, "feet"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Macro+",
  2642. height: math.unit(300, "meters")
  2643. },
  2644. {
  2645. name: "Macro++",
  2646. height: math.unit(2400, "meters")
  2647. },
  2648. {
  2649. name: "Megamacro",
  2650. height: math.unit(5167, "meters")
  2651. },
  2652. {
  2653. name: "Gigamacro",
  2654. height: math.unit(41769, "miles")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(1.65, "meters"),
  2663. weight: math.unit(50, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/elijah/front.svg",
  2667. extra: 858 / 830,
  2668. bottom: 95.5 / 953.8559
  2669. }
  2670. },
  2671. back: {
  2672. height: math.unit(1.65, "meters"),
  2673. weight: math.unit(50, "kg"),
  2674. name: "Back",
  2675. image: {
  2676. source: "./media/characters/elijah/back.svg",
  2677. extra: 895 / 850,
  2678. bottom: 5.3 / 897.956
  2679. }
  2680. },
  2681. frontNsfw: {
  2682. height: math.unit(1.65, "meters"),
  2683. weight: math.unit(50, "kg"),
  2684. name: "Front (NSFW)",
  2685. image: {
  2686. source: "./media/characters/elijah/front-nsfw.svg",
  2687. extra: 858 / 830,
  2688. bottom: 95.5 / 953.8559
  2689. }
  2690. },
  2691. backNsfw: {
  2692. height: math.unit(1.65, "meters"),
  2693. weight: math.unit(50, "kg"),
  2694. name: "Back (NSFW)",
  2695. image: {
  2696. source: "./media/characters/elijah/back-nsfw.svg",
  2697. extra: 895 / 850,
  2698. bottom: 5.3 / 897.956
  2699. }
  2700. },
  2701. dick: {
  2702. height: math.unit(1, "feet"),
  2703. name: "Dick",
  2704. image: {
  2705. source: "./media/characters/elijah/dick.svg"
  2706. }
  2707. },
  2708. beakOpen: {
  2709. height: math.unit(1.25, "feet"),
  2710. name: "Beak (Open)",
  2711. image: {
  2712. source: "./media/characters/elijah/beak-open.svg"
  2713. }
  2714. },
  2715. beakShut: {
  2716. height: math.unit(1.25, "feet"),
  2717. name: "Beak (Shut)",
  2718. image: {
  2719. source: "./media/characters/elijah/beak-shut.svg"
  2720. }
  2721. },
  2722. footFlexing: {
  2723. height: math.unit(1.61, "feet"),
  2724. name: "Foot (Flexing)",
  2725. image: {
  2726. source: "./media/characters/elijah/foot-flexing.svg"
  2727. }
  2728. },
  2729. footStepping: {
  2730. height: math.unit(1.44, "feet"),
  2731. name: "Foot (Stepping)",
  2732. image: {
  2733. source: "./media/characters/elijah/foot-stepping.svg"
  2734. }
  2735. },
  2736. plantigradeLeg: {
  2737. height: math.unit(2.34, "feet"),
  2738. name: "Plantigrade Leg",
  2739. image: {
  2740. source: "./media/characters/elijah/plantigrade-leg.svg"
  2741. }
  2742. },
  2743. plantigradeFootLeft: {
  2744. height: math.unit(0.9, "feet"),
  2745. name: "Plantigrade Foot (Left)",
  2746. image: {
  2747. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2748. }
  2749. },
  2750. plantigradeFootRight: {
  2751. height: math.unit(0.9, "feet"),
  2752. name: "Plantigrade Foot (Right)",
  2753. image: {
  2754. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2755. }
  2756. },
  2757. },
  2758. [
  2759. {
  2760. name: "Normal",
  2761. height: math.unit(1.65, "meters")
  2762. },
  2763. {
  2764. name: "Macro",
  2765. height: math.unit(55, "meters"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Macro+",
  2770. height: math.unit(105, "meters")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(7 + 2/12, "feet"),
  2779. weight: math.unit(320, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/rai/front.svg",
  2783. extra: 1802/1696,
  2784. bottom: 68/1870
  2785. }
  2786. },
  2787. frontDressed: {
  2788. height: math.unit(7 + 2/12, "feet"),
  2789. weight: math.unit(320, "kg"),
  2790. name: "Front (Dressed)",
  2791. image: {
  2792. source: "./media/characters/rai/front-dressed.svg",
  2793. extra: 1802/1696,
  2794. bottom: 68/1870
  2795. }
  2796. },
  2797. side: {
  2798. height: math.unit(7 + 2/12, "feet"),
  2799. weight: math.unit(320, "kg"),
  2800. name: "Side",
  2801. image: {
  2802. source: "./media/characters/rai/side.svg",
  2803. extra: 1789/1710,
  2804. bottom: 115/1904
  2805. }
  2806. },
  2807. back: {
  2808. height: math.unit(7 + 2/12, "feet"),
  2809. weight: math.unit(320, "kg"),
  2810. name: "Back",
  2811. image: {
  2812. source: "./media/characters/rai/back.svg",
  2813. extra: 1770/1707,
  2814. bottom: 28/1798
  2815. }
  2816. },
  2817. feral: {
  2818. height: math.unit(9.5, "feet"),
  2819. weight: math.unit(640, "kg"),
  2820. name: "Feral",
  2821. image: {
  2822. source: "./media/characters/rai/feral.svg",
  2823. extra: 945/553,
  2824. bottom: 176/1121
  2825. }
  2826. },
  2827. dragon: {
  2828. height: math.unit(23, "feet"),
  2829. weight: math.unit(50000, "lb"),
  2830. name: "Dragon",
  2831. image: {
  2832. source: "./media/characters/rai/dragon.svg",
  2833. extra: 2498 / 2030,
  2834. bottom: 85.2 / 2584
  2835. }
  2836. },
  2837. maw: {
  2838. height: math.unit(1.69, "feet"),
  2839. name: "Maw",
  2840. image: {
  2841. source: "./media/characters/rai/maw.svg"
  2842. }
  2843. },
  2844. },
  2845. [
  2846. {
  2847. name: "Normal",
  2848. height: math.unit(7 + 2/12, "feet")
  2849. },
  2850. {
  2851. name: "Big",
  2852. height: math.unit(11, "feet")
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(302, "feet"),
  2857. default: true
  2858. },
  2859. ]
  2860. ))
  2861. characterMakers.push(() => makeCharacter(
  2862. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2863. {
  2864. frontDressed: {
  2865. height: math.unit(216, "feet"),
  2866. weight: math.unit(7000000, "lb"),
  2867. name: "Front (Dressed)",
  2868. image: {
  2869. source: "./media/characters/jazzy/front-dressed.svg",
  2870. extra: 2738 / 2651,
  2871. bottom: 41.8 / 2786
  2872. }
  2873. },
  2874. backDressed: {
  2875. height: math.unit(216, "feet"),
  2876. weight: math.unit(7000000, "lb"),
  2877. name: "Back (Dressed)",
  2878. image: {
  2879. source: "./media/characters/jazzy/back-dressed.svg",
  2880. extra: 2775 / 2673,
  2881. bottom: 36.8 / 2817
  2882. }
  2883. },
  2884. front: {
  2885. height: math.unit(216, "feet"),
  2886. weight: math.unit(7000000, "lb"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/jazzy/front.svg",
  2890. extra: 2738 / 2651,
  2891. bottom: 41.8 / 2786
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(216, "feet"),
  2896. weight: math.unit(7000000, "lb"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/jazzy/back.svg",
  2900. extra: 2775 / 2673,
  2901. bottom: 36.8 / 2817
  2902. }
  2903. },
  2904. maw: {
  2905. height: math.unit(20, "feet"),
  2906. name: "Maw",
  2907. image: {
  2908. source: "./media/characters/jazzy/maw.svg"
  2909. }
  2910. },
  2911. paws: {
  2912. height: math.unit(27.5, "feet"),
  2913. name: "Paws",
  2914. image: {
  2915. source: "./media/characters/jazzy/paws.svg"
  2916. }
  2917. },
  2918. eye: {
  2919. height: math.unit(4.4, "feet"),
  2920. name: "Eye",
  2921. image: {
  2922. source: "./media/characters/jazzy/eye.svg"
  2923. }
  2924. },
  2925. droneOffense: {
  2926. height: math.unit(9.5, "inches"),
  2927. name: "Drone (Offense)",
  2928. image: {
  2929. source: "./media/characters/jazzy/drone-offense.svg"
  2930. }
  2931. },
  2932. droneRecon: {
  2933. height: math.unit(9.5, "inches"),
  2934. name: "Drone (Recon)",
  2935. image: {
  2936. source: "./media/characters/jazzy/drone-recon.svg"
  2937. }
  2938. },
  2939. droneDefense: {
  2940. height: math.unit(9.5, "inches"),
  2941. name: "Drone (Defense)",
  2942. image: {
  2943. source: "./media/characters/jazzy/drone-defense.svg"
  2944. }
  2945. },
  2946. },
  2947. [
  2948. {
  2949. name: "Macro",
  2950. height: math.unit(216, "feet"),
  2951. default: true
  2952. },
  2953. ]
  2954. ))
  2955. characterMakers.push(() => makeCharacter(
  2956. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2957. {
  2958. front: {
  2959. height: math.unit(9 + 6/12, "feet"),
  2960. weight: math.unit(700, "lb"),
  2961. name: "Front",
  2962. image: {
  2963. source: "./media/characters/flamm/front.svg",
  2964. extra: 1751/1632,
  2965. bottom: 46/1797
  2966. }
  2967. },
  2968. buff: {
  2969. height: math.unit(9 + 6/12, "feet"),
  2970. weight: math.unit(950, "lb"),
  2971. name: "Buff",
  2972. image: {
  2973. source: "./media/characters/flamm/buff.svg",
  2974. extra: 3018/2874,
  2975. bottom: 221/3239
  2976. }
  2977. },
  2978. },
  2979. [
  2980. {
  2981. name: "Normal",
  2982. height: math.unit(9.5, "feet")
  2983. },
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(200, "feet"),
  2987. default: true
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(5 + 3/12, "feet"),
  2996. weight: math.unit(60, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/zephiro/front.svg",
  3000. extra: 2309 / 2162,
  3001. bottom: 0.069
  3002. }
  3003. },
  3004. side: {
  3005. height: math.unit(5 + 3/12, "feet"),
  3006. weight: math.unit(60, "kg"),
  3007. name: "Side",
  3008. image: {
  3009. source: "./media/characters/zephiro/side.svg",
  3010. extra: 2403 / 2279,
  3011. bottom: 0.015
  3012. }
  3013. },
  3014. back: {
  3015. height: math.unit(5 + 3/12, "feet"),
  3016. weight: math.unit(60, "kg"),
  3017. name: "Back",
  3018. image: {
  3019. source: "./media/characters/zephiro/back.svg",
  3020. extra: 2373 / 2244,
  3021. bottom: 0.013
  3022. }
  3023. },
  3024. hand: {
  3025. height: math.unit(0.68, "feet"),
  3026. name: "Hand",
  3027. image: {
  3028. source: "./media/characters/zephiro/hand.svg"
  3029. }
  3030. },
  3031. paw: {
  3032. height: math.unit(1, "feet"),
  3033. name: "Paw",
  3034. image: {
  3035. source: "./media/characters/zephiro/paw.svg"
  3036. }
  3037. },
  3038. beans: {
  3039. height: math.unit(0.93, "feet"),
  3040. name: "Beans",
  3041. image: {
  3042. source: "./media/characters/zephiro/beans.svg"
  3043. }
  3044. },
  3045. },
  3046. [
  3047. {
  3048. name: "Micro",
  3049. height: math.unit(3, "inches")
  3050. },
  3051. {
  3052. name: "Normal",
  3053. height: math.unit(5 + 3 / 12, "feet"),
  3054. default: true
  3055. },
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(118, "feet")
  3059. },
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3064. {
  3065. front: {
  3066. height: math.unit(5, "feet"),
  3067. weight: math.unit(90, "kg"),
  3068. name: "Front",
  3069. image: {
  3070. source: "./media/characters/fory/front.svg",
  3071. extra: 2862 / 2674,
  3072. bottom: 180 / 3043.8
  3073. }
  3074. },
  3075. back: {
  3076. height: math.unit(5, "feet"),
  3077. weight: math.unit(90, "kg"),
  3078. name: "Back",
  3079. image: {
  3080. source: "./media/characters/fory/back.svg",
  3081. extra: 2962 / 2791,
  3082. bottom: 106 / 3071.8
  3083. }
  3084. },
  3085. foot: {
  3086. height: math.unit(2.14, "feet"),
  3087. name: "Foot",
  3088. image: {
  3089. source: "./media/characters/fory/foot.svg"
  3090. }
  3091. },
  3092. },
  3093. [
  3094. {
  3095. name: "Normal",
  3096. height: math.unit(5, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(50, "feet"),
  3101. default: true
  3102. },
  3103. {
  3104. name: "Megamacro",
  3105. height: math.unit(10, "miles")
  3106. },
  3107. {
  3108. name: "Gigamacro",
  3109. height: math.unit(5, "earths")
  3110. },
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(7, "feet"),
  3118. weight: math.unit(90, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/kurrikage/front.svg",
  3122. extra: 1845/1733,
  3123. bottom: 119/1964
  3124. }
  3125. },
  3126. back: {
  3127. height: math.unit(7, "feet"),
  3128. weight: math.unit(90, "kg"),
  3129. name: "Back",
  3130. image: {
  3131. source: "./media/characters/kurrikage/back.svg",
  3132. extra: 1790/1677,
  3133. bottom: 61/1851
  3134. }
  3135. },
  3136. dressed: {
  3137. height: math.unit(7, "feet"),
  3138. weight: math.unit(90, "kg"),
  3139. name: "Dressed",
  3140. image: {
  3141. source: "./media/characters/kurrikage/dressed.svg",
  3142. extra: 1845/1733,
  3143. bottom: 119/1964
  3144. }
  3145. },
  3146. foot: {
  3147. height: math.unit(1.5, "feet"),
  3148. name: "Foot",
  3149. image: {
  3150. source: "./media/characters/kurrikage/foot.svg"
  3151. }
  3152. },
  3153. staff: {
  3154. height: math.unit(6.7, "feet"),
  3155. name: "Staff",
  3156. image: {
  3157. source: "./media/characters/kurrikage/staff.svg"
  3158. }
  3159. },
  3160. peek: {
  3161. height: math.unit(1.05, "feet"),
  3162. name: "Peeking",
  3163. image: {
  3164. source: "./media/characters/kurrikage/peek.svg",
  3165. bottom: 0.08
  3166. }
  3167. },
  3168. },
  3169. [
  3170. {
  3171. name: "Normal",
  3172. height: math.unit(12, "feet"),
  3173. default: true
  3174. },
  3175. {
  3176. name: "Big",
  3177. height: math.unit(20, "feet")
  3178. },
  3179. {
  3180. name: "Macro",
  3181. height: math.unit(500, "feet")
  3182. },
  3183. {
  3184. name: "Megamacro",
  3185. height: math.unit(20, "miles")
  3186. },
  3187. ]
  3188. ))
  3189. characterMakers.push(() => makeCharacter(
  3190. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3191. {
  3192. front: {
  3193. height: math.unit(6, "feet"),
  3194. weight: math.unit(75, "kg"),
  3195. name: "Front",
  3196. image: {
  3197. source: "./media/characters/shingo/front.svg",
  3198. extra: 1900/1825,
  3199. bottom: 82/1982
  3200. }
  3201. },
  3202. side: {
  3203. height: math.unit(6, "feet"),
  3204. weight: math.unit(75, "kg"),
  3205. name: "Side",
  3206. image: {
  3207. source: "./media/characters/shingo/side.svg",
  3208. extra: 1930/1865,
  3209. bottom: 16/1946
  3210. }
  3211. },
  3212. back: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Back",
  3216. image: {
  3217. source: "./media/characters/shingo/back.svg",
  3218. extra: 1922/1852,
  3219. bottom: 16/1938
  3220. }
  3221. },
  3222. frontDressed: {
  3223. height: math.unit(6, "feet"),
  3224. weight: math.unit(150, "lb"),
  3225. name: "Front-dressed",
  3226. image: {
  3227. source: "./media/characters/shingo/front-dressed.svg",
  3228. extra: 1900/1825,
  3229. bottom: 82/1982
  3230. }
  3231. },
  3232. paw: {
  3233. height: math.unit(1.29, "feet"),
  3234. name: "Paw",
  3235. image: {
  3236. source: "./media/characters/shingo/paw.svg"
  3237. }
  3238. },
  3239. hand: {
  3240. height: math.unit(1.07, "feet"),
  3241. name: "Hand",
  3242. image: {
  3243. source: "./media/characters/shingo/hand.svg"
  3244. }
  3245. },
  3246. frontAlt: {
  3247. height: math.unit(6, "feet"),
  3248. weight: math.unit(75, "kg"),
  3249. name: "Front (Alt)",
  3250. image: {
  3251. source: "./media/characters/shingo/front-alt.svg",
  3252. extra: 3511 / 3338,
  3253. bottom: 0.005
  3254. }
  3255. },
  3256. frontAlt2: {
  3257. height: math.unit(6, "feet"),
  3258. weight: math.unit(75, "kg"),
  3259. name: "Front (Alt 2)",
  3260. image: {
  3261. source: "./media/characters/shingo/front-alt-2.svg",
  3262. extra: 706/681,
  3263. bottom: 11/717
  3264. }
  3265. },
  3266. pawAlt: {
  3267. height: math.unit(1, "feet"),
  3268. name: "Paw (Alt)",
  3269. image: {
  3270. source: "./media/characters/shingo/paw-alt.svg"
  3271. }
  3272. },
  3273. },
  3274. [
  3275. {
  3276. name: "Micro",
  3277. height: math.unit(4, "inches")
  3278. },
  3279. {
  3280. name: "Normal",
  3281. height: math.unit(6, "feet"),
  3282. default: true
  3283. },
  3284. {
  3285. name: "Macro",
  3286. height: math.unit(108, "feet")
  3287. },
  3288. {
  3289. name: "Macro+",
  3290. height: math.unit(1500, "feet")
  3291. },
  3292. ]
  3293. ))
  3294. characterMakers.push(() => makeCharacter(
  3295. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3296. {
  3297. side: {
  3298. height: math.unit(6, "feet"),
  3299. weight: math.unit(75, "kg"),
  3300. name: "Side",
  3301. image: {
  3302. source: "./media/characters/aigey/side.svg"
  3303. }
  3304. },
  3305. },
  3306. [
  3307. {
  3308. name: "Macro",
  3309. height: math.unit(200, "feet"),
  3310. default: true
  3311. },
  3312. {
  3313. name: "Megamacro",
  3314. height: math.unit(100, "miles")
  3315. },
  3316. ]
  3317. )
  3318. )
  3319. characterMakers.push(() => makeCharacter(
  3320. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3321. {
  3322. front: {
  3323. height: math.unit(5 + 5 / 12, "feet"),
  3324. weight: math.unit(75, "kg"),
  3325. name: "Front",
  3326. image: {
  3327. source: "./media/characters/natasha/front.svg",
  3328. extra: 859 / 824,
  3329. bottom: 23 / 879.6
  3330. }
  3331. },
  3332. frontNsfw: {
  3333. height: math.unit(5 + 5 / 12, "feet"),
  3334. weight: math.unit(75, "kg"),
  3335. name: "Front (NSFW)",
  3336. image: {
  3337. source: "./media/characters/natasha/front-nsfw.svg",
  3338. extra: 859 / 824,
  3339. bottom: 23 / 879.6
  3340. }
  3341. },
  3342. frontErect: {
  3343. height: math.unit(5 + 5 / 12, "feet"),
  3344. weight: math.unit(75, "kg"),
  3345. name: "Front (Erect)",
  3346. image: {
  3347. source: "./media/characters/natasha/front-erect.svg",
  3348. extra: 859 / 824,
  3349. bottom: 23 / 879.6
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(5 + 5 / 12, "feet"),
  3354. weight: math.unit(75, "kg"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/natasha/back.svg",
  3358. extra: 887.9 / 852.6,
  3359. bottom: 9.7 / 896.4
  3360. }
  3361. },
  3362. backAlt: {
  3363. height: math.unit(5 + 5 / 12, "feet"),
  3364. weight: math.unit(75, "kg"),
  3365. name: "Back (Alt)",
  3366. image: {
  3367. source: "./media/characters/natasha/back-alt.svg",
  3368. extra: 1236.7 / 1192,
  3369. bottom: 22.3 / 1258.2
  3370. }
  3371. },
  3372. dick: {
  3373. height: math.unit(1.772, "feet"),
  3374. name: "Dick",
  3375. image: {
  3376. source: "./media/characters/natasha/dick.svg"
  3377. }
  3378. },
  3379. paw: {
  3380. height: math.unit(0.250, "meters"),
  3381. name: "Paw",
  3382. image: {
  3383. source: "./media/characters/natasha/paw.svg"
  3384. },
  3385. extraAttributes: {
  3386. "toeSize": {
  3387. name: "Toe Size",
  3388. power: 2,
  3389. type: "area",
  3390. base: math.unit(0.0024, "m^2")
  3391. },
  3392. "padSize": {
  3393. name: "Pad Size",
  3394. power: 2,
  3395. type: "area",
  3396. base: math.unit(0.00889, "m^2")
  3397. },
  3398. "pawSize": {
  3399. name: "Paw Size",
  3400. power: 2,
  3401. type: "area",
  3402. base: math.unit(0.023667, "m^2")
  3403. },
  3404. }
  3405. },
  3406. },
  3407. [
  3408. {
  3409. name: "Shortstack",
  3410. height: math.unit(3, "feet"),
  3411. default: true
  3412. },
  3413. {
  3414. name: "Normal",
  3415. height: math.unit(5 + 5 / 12, "feet")
  3416. },
  3417. {
  3418. name: "Large",
  3419. height: math.unit(12, "feet")
  3420. },
  3421. {
  3422. name: "Macro",
  3423. height: math.unit(100, "feet")
  3424. },
  3425. {
  3426. name: "Macro+",
  3427. height: math.unit(260, "feet")
  3428. },
  3429. {
  3430. name: "Macro++",
  3431. height: math.unit(1, "mile")
  3432. },
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(6, "feet"),
  3440. weight: math.unit(75, "kg"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/malik/front.svg",
  3444. extra: 1750/1561,
  3445. bottom: 80/1830
  3446. },
  3447. extraAttributes: {
  3448. "toeSize": {
  3449. name: "Toe Size",
  3450. power: 2,
  3451. type: "area",
  3452. base: math.unit(0.0159, "m^2")
  3453. },
  3454. "pawSize": {
  3455. name: "Paw Size",
  3456. power: 2,
  3457. type: "area",
  3458. base: math.unit(0.09834, "m^2")
  3459. },
  3460. }
  3461. },
  3462. side: {
  3463. height: math.unit(6, "feet"),
  3464. weight: math.unit(75, "kg"),
  3465. name: "Side",
  3466. image: {
  3467. source: "./media/characters/malik/side.svg",
  3468. extra: 1802/1685,
  3469. bottom: 42/1844
  3470. },
  3471. extraAttributes: {
  3472. "toeSize": {
  3473. name: "Toe Size",
  3474. power: 2,
  3475. type: "area",
  3476. base: math.unit(0.0159, "m^2")
  3477. },
  3478. "pawSize": {
  3479. name: "Paw Size",
  3480. power: 2,
  3481. type: "area",
  3482. base: math.unit(0.09834, "m^2")
  3483. },
  3484. }
  3485. },
  3486. back: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(75, "kg"),
  3489. name: "Back",
  3490. image: {
  3491. source: "./media/characters/malik/back.svg",
  3492. extra: 1803/1607,
  3493. bottom: 33/1836
  3494. },
  3495. extraAttributes: {
  3496. "toeSize": {
  3497. name: "Toe Size",
  3498. power: 2,
  3499. type: "area",
  3500. base: math.unit(0.0159, "m^2")
  3501. },
  3502. "pawSize": {
  3503. name: "Paw Size",
  3504. power: 2,
  3505. type: "area",
  3506. base: math.unit(0.09834, "m^2")
  3507. },
  3508. }
  3509. },
  3510. },
  3511. [
  3512. {
  3513. name: "Macro",
  3514. height: math.unit(156, "feet"),
  3515. default: true
  3516. },
  3517. {
  3518. name: "Macro+",
  3519. height: math.unit(1188, "feet")
  3520. },
  3521. ]
  3522. ))
  3523. characterMakers.push(() => makeCharacter(
  3524. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3525. {
  3526. front: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(75, "kg"),
  3529. name: "Front",
  3530. image: {
  3531. source: "./media/characters/sefer/front.svg",
  3532. extra: 848 / 659,
  3533. bottom: 28.3 / 876.442
  3534. }
  3535. },
  3536. back: {
  3537. height: math.unit(6, "feet"),
  3538. weight: math.unit(75, "kg"),
  3539. name: "Back",
  3540. image: {
  3541. source: "./media/characters/sefer/back.svg",
  3542. extra: 864 / 695,
  3543. bottom: 10 / 871
  3544. }
  3545. },
  3546. frontDressed: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Front (Dressed)",
  3550. image: {
  3551. source: "./media/characters/sefer/front-dressed.svg",
  3552. extra: 839 / 653,
  3553. bottom: 37.6 / 878
  3554. }
  3555. },
  3556. },
  3557. [
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(6, "feet"),
  3561. default: true
  3562. },
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3567. {
  3568. body: {
  3569. height: math.unit(2.2428, "meter"),
  3570. weight: math.unit(124.738, "kg"),
  3571. name: "Body",
  3572. image: {
  3573. extra: 1225 / 1050,
  3574. source: "./media/characters/north/front.svg"
  3575. }
  3576. }
  3577. },
  3578. [
  3579. {
  3580. name: "Micro",
  3581. height: math.unit(4, "inches")
  3582. },
  3583. {
  3584. name: "Macro",
  3585. height: math.unit(63, "meters")
  3586. },
  3587. {
  3588. name: "Megamacro",
  3589. height: math.unit(101, "miles"),
  3590. default: true
  3591. }
  3592. ]
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3596. {
  3597. angled: {
  3598. height: math.unit(4, "meter"),
  3599. weight: math.unit(150, "kg"),
  3600. name: "Angled",
  3601. image: {
  3602. source: "./media/characters/talan/angled-sfw.svg",
  3603. bottom: 29 / 3734
  3604. }
  3605. },
  3606. angledNsfw: {
  3607. height: math.unit(4, "meter"),
  3608. weight: math.unit(150, "kg"),
  3609. name: "Angled (NSFW)",
  3610. image: {
  3611. source: "./media/characters/talan/angled-nsfw.svg",
  3612. bottom: 29 / 3734
  3613. }
  3614. },
  3615. frontNsfw: {
  3616. height: math.unit(4, "meter"),
  3617. weight: math.unit(150, "kg"),
  3618. name: "Front (NSFW)",
  3619. image: {
  3620. source: "./media/characters/talan/front-nsfw.svg",
  3621. bottom: 29 / 3734
  3622. }
  3623. },
  3624. sideNsfw: {
  3625. height: math.unit(4, "meter"),
  3626. weight: math.unit(150, "kg"),
  3627. name: "Side (NSFW)",
  3628. image: {
  3629. source: "./media/characters/talan/side-nsfw.svg",
  3630. bottom: 29 / 3734
  3631. }
  3632. },
  3633. back: {
  3634. height: math.unit(4, "meter"),
  3635. weight: math.unit(150, "kg"),
  3636. name: "Back",
  3637. image: {
  3638. source: "./media/characters/talan/back.svg"
  3639. }
  3640. },
  3641. dickBottom: {
  3642. height: math.unit(0.621, "meter"),
  3643. name: "Dick (Bottom)",
  3644. image: {
  3645. source: "./media/characters/talan/dick-bottom.svg"
  3646. }
  3647. },
  3648. dickTop: {
  3649. height: math.unit(0.621, "meter"),
  3650. name: "Dick (Top)",
  3651. image: {
  3652. source: "./media/characters/talan/dick-top.svg"
  3653. }
  3654. },
  3655. dickSide: {
  3656. height: math.unit(0.305, "meter"),
  3657. name: "Dick (Side)",
  3658. image: {
  3659. source: "./media/characters/talan/dick-side.svg"
  3660. }
  3661. },
  3662. dickFront: {
  3663. height: math.unit(0.305, "meter"),
  3664. name: "Dick (Front)",
  3665. image: {
  3666. source: "./media/characters/talan/dick-front.svg"
  3667. }
  3668. },
  3669. },
  3670. [
  3671. {
  3672. name: "Normal",
  3673. height: math.unit(4, "meters")
  3674. },
  3675. {
  3676. name: "Macro",
  3677. height: math.unit(100, "meters")
  3678. },
  3679. {
  3680. name: "Megamacro",
  3681. height: math.unit(2, "miles"),
  3682. default: true
  3683. },
  3684. {
  3685. name: "Gigamacro",
  3686. height: math.unit(5000, "miles")
  3687. },
  3688. {
  3689. name: "Teramacro",
  3690. height: math.unit(100, "parsecs")
  3691. }
  3692. ]
  3693. ))
  3694. characterMakers.push(() => makeCharacter(
  3695. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3696. {
  3697. front: {
  3698. height: math.unit(2, "meter"),
  3699. weight: math.unit(90, "kg"),
  3700. name: "Front",
  3701. image: {
  3702. source: "./media/characters/gael'rathus/front.svg"
  3703. }
  3704. },
  3705. frontAlt: {
  3706. height: math.unit(2, "meter"),
  3707. weight: math.unit(90, "kg"),
  3708. name: "Front (alt)",
  3709. image: {
  3710. source: "./media/characters/gael'rathus/front-alt.svg"
  3711. }
  3712. },
  3713. frontAlt2: {
  3714. height: math.unit(2, "meter"),
  3715. weight: math.unit(90, "kg"),
  3716. name: "Front (alt 2)",
  3717. image: {
  3718. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3719. }
  3720. }
  3721. },
  3722. [
  3723. {
  3724. name: "Normal",
  3725. height: math.unit(9, "feet"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Large",
  3730. height: math.unit(25, "feet")
  3731. },
  3732. {
  3733. name: "Macro",
  3734. height: math.unit(0.25, "miles")
  3735. },
  3736. {
  3737. name: "Megamacro",
  3738. height: math.unit(10, "miles")
  3739. }
  3740. ]
  3741. ))
  3742. characterMakers.push(() => makeCharacter(
  3743. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3744. {
  3745. side: {
  3746. height: math.unit(2, "meter"),
  3747. weight: math.unit(140, "kg"),
  3748. name: "Side",
  3749. image: {
  3750. source: "./media/characters/sosha/side.svg",
  3751. extra: 1170/1006,
  3752. bottom: 94/1264
  3753. }
  3754. },
  3755. maw: {
  3756. height: math.unit(2.87, "feet"),
  3757. name: "Maw",
  3758. image: {
  3759. source: "./media/characters/sosha/maw.svg",
  3760. extra: 966/865,
  3761. bottom: 0/966
  3762. }
  3763. },
  3764. cooch: {
  3765. height: math.unit(5.6, "feet"),
  3766. name: "Cooch",
  3767. image: {
  3768. source: "./media/characters/sosha/cooch.svg"
  3769. }
  3770. },
  3771. },
  3772. [
  3773. {
  3774. name: "Normal",
  3775. height: math.unit(12, "feet"),
  3776. default: true
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3782. {
  3783. side: {
  3784. height: math.unit(5 + 5 / 12, "feet"),
  3785. weight: math.unit(170, "kg"),
  3786. name: "Side",
  3787. image: {
  3788. source: "./media/characters/runnola/side.svg",
  3789. extra: 741 / 448,
  3790. bottom: 0.05
  3791. }
  3792. },
  3793. },
  3794. [
  3795. {
  3796. name: "Small",
  3797. height: math.unit(3, "feet")
  3798. },
  3799. {
  3800. name: "Normal",
  3801. height: math.unit(5 + 5 / 12, "feet"),
  3802. default: true
  3803. },
  3804. {
  3805. name: "Big",
  3806. height: math.unit(10, "feet")
  3807. },
  3808. ]
  3809. ))
  3810. characterMakers.push(() => makeCharacter(
  3811. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3812. {
  3813. front: {
  3814. height: math.unit(2, "meter"),
  3815. weight: math.unit(50, "kg"),
  3816. name: "Front",
  3817. image: {
  3818. source: "./media/characters/kurribird/front.svg",
  3819. bottom: 0.015
  3820. }
  3821. },
  3822. frontAlt: {
  3823. height: math.unit(1.5, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front (Alt)",
  3826. image: {
  3827. source: "./media/characters/kurribird/front-alt.svg",
  3828. extra: 1.45
  3829. }
  3830. },
  3831. },
  3832. [
  3833. {
  3834. name: "Normal",
  3835. height: math.unit(7, "feet")
  3836. },
  3837. {
  3838. name: "Big",
  3839. height: math.unit(12, "feet"),
  3840. default: true
  3841. },
  3842. {
  3843. name: "Macro",
  3844. height: math.unit(1500, "feet")
  3845. },
  3846. {
  3847. name: "Megamacro",
  3848. height: math.unit(2, "miles")
  3849. }
  3850. ]
  3851. ))
  3852. characterMakers.push(() => makeCharacter(
  3853. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3854. {
  3855. front: {
  3856. height: math.unit(2, "meter"),
  3857. weight: math.unit(80, "kg"),
  3858. name: "Front",
  3859. image: {
  3860. source: "./media/characters/elbial/front.svg",
  3861. extra: 1643 / 1556,
  3862. bottom: 60.2 / 1696
  3863. }
  3864. },
  3865. side: {
  3866. height: math.unit(2, "meter"),
  3867. weight: math.unit(80, "kg"),
  3868. name: "Side",
  3869. image: {
  3870. source: "./media/characters/elbial/side.svg",
  3871. extra: 1601/1528,
  3872. bottom: 97/1698
  3873. }
  3874. },
  3875. back: {
  3876. height: math.unit(2, "meter"),
  3877. weight: math.unit(80, "kg"),
  3878. name: "Back",
  3879. image: {
  3880. source: "./media/characters/elbial/back.svg",
  3881. extra: 1653/1569,
  3882. bottom: 20/1673
  3883. }
  3884. },
  3885. frontDressed: {
  3886. height: math.unit(2, "meter"),
  3887. weight: math.unit(80, "kg"),
  3888. name: "Front (Dressed)",
  3889. image: {
  3890. source: "./media/characters/elbial/front-dressed.svg",
  3891. extra: 1638/1569,
  3892. bottom: 70/1708
  3893. }
  3894. },
  3895. genitals: {
  3896. height: math.unit(2 / 3.367, "meter"),
  3897. name: "Genitals",
  3898. image: {
  3899. source: "./media/characters/elbial/genitals.svg"
  3900. }
  3901. },
  3902. },
  3903. [
  3904. {
  3905. name: "Large",
  3906. height: math.unit(100, "feet")
  3907. },
  3908. {
  3909. name: "Macro",
  3910. height: math.unit(500, "feet"),
  3911. default: true
  3912. },
  3913. {
  3914. name: "Megamacro",
  3915. height: math.unit(10, "miles")
  3916. },
  3917. {
  3918. name: "Gigamacro",
  3919. height: math.unit(25000, "miles")
  3920. },
  3921. {
  3922. name: "Full-Size",
  3923. height: math.unit(8000000, "gigaparsecs")
  3924. }
  3925. ]
  3926. ))
  3927. characterMakers.push(() => makeCharacter(
  3928. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3929. {
  3930. front: {
  3931. height: math.unit(2, "meter"),
  3932. weight: math.unit(60, "kg"),
  3933. name: "Front",
  3934. image: {
  3935. source: "./media/characters/noah/front.svg"
  3936. }
  3937. },
  3938. talons: {
  3939. height: math.unit(0.315, "meter"),
  3940. name: "Talons",
  3941. image: {
  3942. source: "./media/characters/noah/talons.svg"
  3943. }
  3944. }
  3945. },
  3946. [
  3947. {
  3948. name: "Large",
  3949. height: math.unit(50, "feet")
  3950. },
  3951. {
  3952. name: "Macro",
  3953. height: math.unit(750, "feet"),
  3954. default: true
  3955. },
  3956. {
  3957. name: "Megamacro",
  3958. height: math.unit(50, "miles")
  3959. },
  3960. {
  3961. name: "Gigamacro",
  3962. height: math.unit(100000, "miles")
  3963. },
  3964. {
  3965. name: "Full-Size",
  3966. height: math.unit(3000000000, "miles")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(2, "meter"),
  3975. weight: math.unit(80, "kg"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/natalya/front.svg"
  3979. }
  3980. },
  3981. back: {
  3982. height: math.unit(2, "meter"),
  3983. weight: math.unit(80, "kg"),
  3984. name: "Back",
  3985. image: {
  3986. source: "./media/characters/natalya/back.svg"
  3987. }
  3988. }
  3989. },
  3990. [
  3991. {
  3992. name: "Normal",
  3993. height: math.unit(150, "feet"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Megamacro",
  3998. height: math.unit(5, "miles")
  3999. },
  4000. {
  4001. name: "Full-Size",
  4002. height: math.unit(600, "kiloparsecs")
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(2, "meter"),
  4011. weight: math.unit(50, "kg"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/erestrebah/front.svg",
  4015. extra: 1262/1162,
  4016. bottom: 96/1358
  4017. }
  4018. },
  4019. back: {
  4020. height: math.unit(2, "meter"),
  4021. weight: math.unit(50, "kg"),
  4022. name: "Back",
  4023. image: {
  4024. source: "./media/characters/erestrebah/back.svg",
  4025. extra: 1257/1139,
  4026. bottom: 13/1270
  4027. }
  4028. },
  4029. wing: {
  4030. height: math.unit(2, "meter"),
  4031. weight: math.unit(50, "kg"),
  4032. name: "Wing",
  4033. image: {
  4034. source: "./media/characters/erestrebah/wing.svg",
  4035. extra: 1262/1162,
  4036. bottom: 96/1358
  4037. }
  4038. },
  4039. mouth: {
  4040. height: math.unit(0.39, "feet"),
  4041. name: "Mouth",
  4042. image: {
  4043. source: "./media/characters/erestrebah/mouth.svg"
  4044. }
  4045. }
  4046. },
  4047. [
  4048. {
  4049. name: "Normal",
  4050. height: math.unit(10, "feet")
  4051. },
  4052. {
  4053. name: "Large",
  4054. height: math.unit(50, "feet"),
  4055. default: true
  4056. },
  4057. {
  4058. name: "Macro",
  4059. height: math.unit(300, "feet")
  4060. },
  4061. {
  4062. name: "Macro+",
  4063. height: math.unit(750, "feet")
  4064. },
  4065. {
  4066. name: "Megamacro",
  4067. height: math.unit(3, "miles")
  4068. }
  4069. ]
  4070. ))
  4071. characterMakers.push(() => makeCharacter(
  4072. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4073. {
  4074. front: {
  4075. height: math.unit(2, "meter"),
  4076. weight: math.unit(80, "kg"),
  4077. name: "Front",
  4078. image: {
  4079. source: "./media/characters/jennifer/front.svg",
  4080. bottom: 0.11,
  4081. extra: 1.16
  4082. }
  4083. },
  4084. frontAlt: {
  4085. height: math.unit(2, "meter"),
  4086. weight: math.unit(80, "kg"),
  4087. name: "Front (Alt)",
  4088. image: {
  4089. source: "./media/characters/jennifer/front-alt.svg"
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Canon Height",
  4096. height: math.unit(120, "feet"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Macro+",
  4101. height: math.unit(300, "feet")
  4102. },
  4103. {
  4104. name: "Megamacro",
  4105. height: math.unit(20000, "feet")
  4106. }
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4111. {
  4112. front: {
  4113. height: math.unit(2, "meter"),
  4114. weight: math.unit(50, "kg"),
  4115. name: "Front",
  4116. image: {
  4117. source: "./media/characters/kalista/front.svg",
  4118. extra: 1314/1145,
  4119. bottom: 101/1415
  4120. }
  4121. },
  4122. back: {
  4123. height: math.unit(2, "meter"),
  4124. weight: math.unit(50, "kg"),
  4125. name: "Back",
  4126. image: {
  4127. source: "./media/characters/kalista/back.svg",
  4128. extra: 1366 / 1156,
  4129. bottom: 33.9 / 1362.78
  4130. }
  4131. }
  4132. },
  4133. [
  4134. {
  4135. name: "Uncomfortably Small",
  4136. height: math.unit(10, "feet")
  4137. },
  4138. {
  4139. name: "Small",
  4140. height: math.unit(30, "feet")
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(100, "feet"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Macro+",
  4149. height: math.unit(2000, "feet")
  4150. },
  4151. {
  4152. name: "True Form",
  4153. height: math.unit(8924, "miles")
  4154. }
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4159. {
  4160. front: {
  4161. height: math.unit(2, "meter"),
  4162. weight: math.unit(120, "kg"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/ggv/front.svg"
  4166. }
  4167. },
  4168. side: {
  4169. height: math.unit(2, "meter"),
  4170. weight: math.unit(120, "kg"),
  4171. name: "Side",
  4172. image: {
  4173. source: "./media/characters/ggv/side.svg"
  4174. }
  4175. }
  4176. },
  4177. [
  4178. {
  4179. name: "Extremely Puny",
  4180. height: math.unit(9 + 5 / 12, "feet")
  4181. },
  4182. {
  4183. name: "Horribly Small",
  4184. height: math.unit(47.7, "miles"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Reasonably Sized",
  4189. height: math.unit(25000, "parsecs")
  4190. },
  4191. {
  4192. name: "Slightly Uncompressed",
  4193. height: math.unit(7.77e31, "parsecs")
  4194. },
  4195. {
  4196. name: "Omniversal",
  4197. height: math.unit(1e300, "meters")
  4198. },
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4203. {
  4204. front: {
  4205. height: math.unit(2, "meter"),
  4206. weight: math.unit(75, "lb"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/napalm/front.svg"
  4210. }
  4211. },
  4212. back: {
  4213. height: math.unit(2, "meter"),
  4214. weight: math.unit(75, "lb"),
  4215. name: "Back",
  4216. image: {
  4217. source: "./media/characters/napalm/back.svg"
  4218. }
  4219. }
  4220. },
  4221. [
  4222. {
  4223. name: "Standard",
  4224. height: math.unit(55, "feet"),
  4225. default: true
  4226. }
  4227. ]
  4228. ))
  4229. characterMakers.push(() => makeCharacter(
  4230. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4231. {
  4232. front: {
  4233. height: math.unit(7 + 5 / 6, "feet"),
  4234. weight: math.unit(325, "lb"),
  4235. name: "Front",
  4236. image: {
  4237. source: "./media/characters/asana/front.svg",
  4238. extra: 1133 / 1060,
  4239. bottom: 15.2 / 1148.6
  4240. }
  4241. },
  4242. back: {
  4243. height: math.unit(7 + 5 / 6, "feet"),
  4244. weight: math.unit(325, "lb"),
  4245. name: "Back",
  4246. image: {
  4247. source: "./media/characters/asana/back.svg",
  4248. extra: 1114 / 1043,
  4249. bottom: 5 / 1120
  4250. }
  4251. },
  4252. dressedDark: {
  4253. height: math.unit(7 + 5 / 6, "feet"),
  4254. weight: math.unit(325, "lb"),
  4255. name: "Dressed (Dark)",
  4256. image: {
  4257. source: "./media/characters/asana/dressed-dark.svg",
  4258. extra: 1133 / 1060,
  4259. bottom: 15.2 / 1148.6
  4260. }
  4261. },
  4262. dressedLight: {
  4263. height: math.unit(7 + 5 / 6, "feet"),
  4264. weight: math.unit(325, "lb"),
  4265. name: "Dressed (Light)",
  4266. image: {
  4267. source: "./media/characters/asana/dressed-light.svg",
  4268. extra: 1133 / 1060,
  4269. bottom: 15.2 / 1148.6
  4270. }
  4271. },
  4272. },
  4273. [
  4274. {
  4275. name: "Standard",
  4276. height: math.unit(7 + 5 / 6, "feet"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Large",
  4281. height: math.unit(10, "meters")
  4282. },
  4283. {
  4284. name: "Macro",
  4285. height: math.unit(2500, "meters")
  4286. },
  4287. {
  4288. name: "Megamacro",
  4289. height: math.unit(5e6, "meters")
  4290. },
  4291. {
  4292. name: "Examacro",
  4293. height: math.unit(5e12, "lightyears")
  4294. },
  4295. {
  4296. name: "Max Size",
  4297. height: math.unit(1e31, "lightyears")
  4298. }
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4303. {
  4304. front: {
  4305. height: math.unit(2, "meter"),
  4306. weight: math.unit(60, "kg"),
  4307. name: "Front",
  4308. image: {
  4309. source: "./media/characters/ebony/front.svg",
  4310. bottom: 0.03,
  4311. extra: 1045 / 810 + 0.03
  4312. }
  4313. },
  4314. side: {
  4315. height: math.unit(2, "meter"),
  4316. weight: math.unit(60, "kg"),
  4317. name: "Side",
  4318. image: {
  4319. source: "./media/characters/ebony/side.svg",
  4320. bottom: 0.03,
  4321. extra: 1045 / 810 + 0.03
  4322. }
  4323. },
  4324. back: {
  4325. height: math.unit(2, "meter"),
  4326. weight: math.unit(60, "kg"),
  4327. name: "Back",
  4328. image: {
  4329. source: "./media/characters/ebony/back.svg",
  4330. bottom: 0.01,
  4331. extra: 1045 / 810 + 0.01
  4332. }
  4333. },
  4334. },
  4335. [
  4336. // TODO check why I did this lol
  4337. {
  4338. name: "Standard",
  4339. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4340. default: true
  4341. },
  4342. {
  4343. name: "Macro",
  4344. height: math.unit(200, "feet")
  4345. },
  4346. {
  4347. name: "Gigamacro",
  4348. height: math.unit(13000, "km")
  4349. }
  4350. ]
  4351. ))
  4352. characterMakers.push(() => makeCharacter(
  4353. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4354. {
  4355. front: {
  4356. height: math.unit(6, "feet"),
  4357. weight: math.unit(175, "lb"),
  4358. name: "Front",
  4359. image: {
  4360. source: "./media/characters/mountain/front.svg",
  4361. extra: 972 / 955,
  4362. bottom: 64 / 1036.6
  4363. }
  4364. },
  4365. back: {
  4366. height: math.unit(6, "feet"),
  4367. weight: math.unit(175, "lb"),
  4368. name: "Back",
  4369. image: {
  4370. source: "./media/characters/mountain/back.svg",
  4371. extra: 970 / 950,
  4372. bottom: 28.25 / 999
  4373. }
  4374. },
  4375. },
  4376. [
  4377. {
  4378. name: "Large",
  4379. height: math.unit(20, "meters")
  4380. },
  4381. {
  4382. name: "Macro",
  4383. height: math.unit(300, "meters")
  4384. },
  4385. {
  4386. name: "Gigamacro",
  4387. height: math.unit(10000, "km"),
  4388. default: true
  4389. },
  4390. {
  4391. name: "Examacro",
  4392. height: math.unit(10e9, "lightyears")
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4398. {
  4399. front: {
  4400. height: math.unit(8, "feet"),
  4401. weight: math.unit(500, "lb"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/rick/front.svg"
  4405. }
  4406. }
  4407. },
  4408. [
  4409. {
  4410. name: "Normal",
  4411. height: math.unit(8, "feet"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Macro",
  4416. height: math.unit(5, "km")
  4417. }
  4418. ]
  4419. ))
  4420. characterMakers.push(() => makeCharacter(
  4421. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4422. {
  4423. front: {
  4424. height: math.unit(8, "feet"),
  4425. weight: math.unit(120, "lb"),
  4426. name: "Front",
  4427. image: {
  4428. source: "./media/characters/ona/front.svg"
  4429. }
  4430. },
  4431. frontAlt: {
  4432. height: math.unit(8, "feet"),
  4433. weight: math.unit(120, "lb"),
  4434. name: "Front (Alt)",
  4435. image: {
  4436. source: "./media/characters/ona/front-alt.svg"
  4437. }
  4438. },
  4439. back: {
  4440. height: math.unit(8, "feet"),
  4441. weight: math.unit(120, "lb"),
  4442. name: "Back",
  4443. image: {
  4444. source: "./media/characters/ona/back.svg"
  4445. }
  4446. },
  4447. foot: {
  4448. height: math.unit(1.1, "feet"),
  4449. name: "Foot",
  4450. image: {
  4451. source: "./media/characters/ona/foot.svg"
  4452. }
  4453. }
  4454. },
  4455. [
  4456. {
  4457. name: "Megamacro",
  4458. height: math.unit(70, "km"),
  4459. default: true
  4460. },
  4461. {
  4462. name: "Gigamacro",
  4463. height: math.unit(681818, "miles")
  4464. },
  4465. {
  4466. name: "Examacro",
  4467. height: math.unit(3800000, "lightyears")
  4468. },
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(12, "feet"),
  4476. weight: math.unit(3000, "lb"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/mech/front.svg",
  4480. extra: 2900 / 2770,
  4481. bottom: 110 / 3010
  4482. }
  4483. },
  4484. back: {
  4485. height: math.unit(12, "feet"),
  4486. weight: math.unit(3000, "lb"),
  4487. name: "Back",
  4488. image: {
  4489. source: "./media/characters/mech/back.svg",
  4490. extra: 3011 / 2890,
  4491. bottom: 94 / 3105
  4492. }
  4493. },
  4494. maw: {
  4495. height: math.unit(3.07, "feet"),
  4496. name: "Maw",
  4497. image: {
  4498. source: "./media/characters/mech/maw.svg"
  4499. }
  4500. },
  4501. head: {
  4502. height: math.unit(3.07, "feet"),
  4503. name: "Head",
  4504. image: {
  4505. source: "./media/characters/mech/head.svg"
  4506. }
  4507. },
  4508. dick: {
  4509. height: math.unit(1.43, "feet"),
  4510. name: "Dick",
  4511. image: {
  4512. source: "./media/characters/mech/dick.svg"
  4513. }
  4514. },
  4515. },
  4516. [
  4517. {
  4518. name: "Normal",
  4519. height: math.unit(12, "feet")
  4520. },
  4521. {
  4522. name: "Macro",
  4523. height: math.unit(300, "feet"),
  4524. default: true
  4525. },
  4526. {
  4527. name: "Macro+",
  4528. height: math.unit(1500, "feet")
  4529. },
  4530. ]
  4531. ))
  4532. characterMakers.push(() => makeCharacter(
  4533. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4534. {
  4535. front: {
  4536. height: math.unit(1.3, "meter"),
  4537. weight: math.unit(30, "kg"),
  4538. name: "Front",
  4539. image: {
  4540. source: "./media/characters/gregory/front.svg",
  4541. }
  4542. }
  4543. },
  4544. [
  4545. {
  4546. name: "Normal",
  4547. height: math.unit(1.3, "meter"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Macro",
  4552. height: math.unit(20, "meter")
  4553. }
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4558. {
  4559. front: {
  4560. height: math.unit(2.8, "meter"),
  4561. weight: math.unit(200, "kg"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/elory/front.svg",
  4565. }
  4566. }
  4567. },
  4568. [
  4569. {
  4570. name: "Normal",
  4571. height: math.unit(2.8, "meter"),
  4572. default: true
  4573. },
  4574. {
  4575. name: "Macro",
  4576. height: math.unit(38, "meter")
  4577. }
  4578. ]
  4579. ))
  4580. characterMakers.push(() => makeCharacter(
  4581. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4582. {
  4583. front: {
  4584. height: math.unit(470, "feet"),
  4585. weight: math.unit(924, "tons"),
  4586. name: "Front",
  4587. image: {
  4588. source: "./media/characters/angelpatamon/front.svg",
  4589. }
  4590. }
  4591. },
  4592. [
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(470, "feet"),
  4596. default: true
  4597. },
  4598. {
  4599. name: "Deity Size I",
  4600. height: math.unit(28651.2, "km")
  4601. },
  4602. {
  4603. name: "Deity Size II",
  4604. height: math.unit(171907.2, "km")
  4605. }
  4606. ]
  4607. ))
  4608. characterMakers.push(() => makeCharacter(
  4609. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4610. {
  4611. side: {
  4612. height: math.unit(7.2, "meter"),
  4613. weight: math.unit(8.2, "tons"),
  4614. name: "Side",
  4615. image: {
  4616. source: "./media/characters/cryae/side.svg",
  4617. extra: 3500 / 1500
  4618. }
  4619. }
  4620. },
  4621. [
  4622. {
  4623. name: "Normal",
  4624. height: math.unit(7.2, "meter"),
  4625. default: true
  4626. }
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4631. {
  4632. front: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(175, "lb"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/xera/front.svg",
  4638. extra: 2377 / 1972,
  4639. bottom: 75.5 / 2452
  4640. }
  4641. },
  4642. side: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(175, "lb"),
  4645. name: "Side",
  4646. image: {
  4647. source: "./media/characters/xera/side.svg",
  4648. extra: 2345 / 2019,
  4649. bottom: 39.7 / 2384
  4650. }
  4651. },
  4652. back: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(175, "lb"),
  4655. name: "Back",
  4656. image: {
  4657. source: "./media/characters/xera/back.svg",
  4658. extra: 2095 / 1984,
  4659. bottom: 67 / 2166
  4660. }
  4661. },
  4662. },
  4663. [
  4664. {
  4665. name: "Small",
  4666. height: math.unit(10, "feet")
  4667. },
  4668. {
  4669. name: "Macro",
  4670. height: math.unit(500, "meters"),
  4671. default: true
  4672. },
  4673. {
  4674. name: "Macro+",
  4675. height: math.unit(10, "km")
  4676. },
  4677. {
  4678. name: "Gigamacro",
  4679. height: math.unit(25000, "km")
  4680. },
  4681. {
  4682. name: "Teramacro",
  4683. height: math.unit(3e6, "km")
  4684. }
  4685. ]
  4686. ))
  4687. characterMakers.push(() => makeCharacter(
  4688. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4689. {
  4690. front: {
  4691. height: math.unit(6, "feet"),
  4692. weight: math.unit(175, "lb"),
  4693. name: "Front",
  4694. image: {
  4695. source: "./media/characters/nebula/front.svg",
  4696. extra: 2566 / 2362,
  4697. bottom: 81 / 2644
  4698. }
  4699. }
  4700. },
  4701. [
  4702. {
  4703. name: "Small",
  4704. height: math.unit(4.5, "meters")
  4705. },
  4706. {
  4707. name: "Macro",
  4708. height: math.unit(1500, "meters"),
  4709. default: true
  4710. },
  4711. {
  4712. name: "Megamacro",
  4713. height: math.unit(150, "km")
  4714. },
  4715. {
  4716. name: "Gigamacro",
  4717. height: math.unit(27000, "km")
  4718. }
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4723. {
  4724. front: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(225, "lb"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/abysgar/front.svg",
  4730. extra: 1739/1614,
  4731. bottom: 71/1810
  4732. }
  4733. },
  4734. frontNsfw: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(225, "lb"),
  4737. name: "Front (NSFW)",
  4738. image: {
  4739. source: "./media/characters/abysgar/front-nsfw.svg",
  4740. extra: 1739/1614,
  4741. bottom: 71/1810
  4742. }
  4743. },
  4744. back: {
  4745. height: math.unit(4.6, "feet"),
  4746. weight: math.unit(225, "lb"),
  4747. name: "Back",
  4748. image: {
  4749. source: "./media/characters/abysgar/back.svg",
  4750. extra: 1384/1327,
  4751. bottom: 0/1384
  4752. }
  4753. },
  4754. head: {
  4755. height: math.unit(1.25, "feet"),
  4756. name: "Head",
  4757. image: {
  4758. source: "./media/characters/abysgar/head.svg",
  4759. extra: 669/569,
  4760. bottom: 0/669
  4761. }
  4762. },
  4763. },
  4764. [
  4765. {
  4766. name: "Small",
  4767. height: math.unit(4.5, "meters")
  4768. },
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(1250, "meters"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "Megamacro",
  4776. height: math.unit(125, "km")
  4777. },
  4778. {
  4779. name: "Gigamacro",
  4780. height: math.unit(26000, "km")
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(180, "lb"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/yakuz/front.svg"
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Small",
  4799. height: math.unit(5, "meters")
  4800. },
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(1500, "meters"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Megamacro",
  4808. height: math.unit(200, "km")
  4809. },
  4810. {
  4811. name: "Gigamacro",
  4812. height: math.unit(100000, "km")
  4813. }
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(175, "lb"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/mirova/front.svg",
  4825. extra: 3334 / 3071,
  4826. bottom: 42 / 3375.6
  4827. }
  4828. }
  4829. },
  4830. [
  4831. {
  4832. name: "Small",
  4833. height: math.unit(5, "meters")
  4834. },
  4835. {
  4836. name: "Macro",
  4837. height: math.unit(900, "meters"),
  4838. default: true
  4839. },
  4840. {
  4841. name: "Megamacro",
  4842. height: math.unit(135, "km")
  4843. },
  4844. {
  4845. name: "Gigamacro",
  4846. height: math.unit(20000, "km")
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4852. {
  4853. side: {
  4854. height: math.unit(28.35, "feet"),
  4855. weight: math.unit(99.75, "tons"),
  4856. name: "Side",
  4857. image: {
  4858. source: "./media/characters/asana-mech/side.svg",
  4859. extra: 923 / 699,
  4860. bottom: 50 / 975
  4861. }
  4862. },
  4863. chaingun: {
  4864. height: math.unit(7, "feet"),
  4865. weight: math.unit(2400, "lb"),
  4866. name: "Chaingun",
  4867. image: {
  4868. source: "./media/characters/asana-mech/chaingun.svg"
  4869. }
  4870. },
  4871. laser: {
  4872. height: math.unit(7.12, "feet"),
  4873. weight: math.unit(2000, "lb"),
  4874. name: "Laser",
  4875. image: {
  4876. source: "./media/characters/asana-mech/laser.svg"
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(28.35, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(2500, "feet")
  4889. },
  4890. {
  4891. name: "Megamacro",
  4892. height: math.unit(25, "miles")
  4893. },
  4894. {
  4895. name: "Examacro",
  4896. height: math.unit(6e8, "lightyears")
  4897. },
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4902. {
  4903. front: {
  4904. height: math.unit(5, "meters"),
  4905. weight: math.unit(1000, "kg"),
  4906. name: "Front",
  4907. image: {
  4908. source: "./media/characters/asche/front.svg",
  4909. extra: 1258 / 1190,
  4910. bottom: 47 / 1305
  4911. }
  4912. },
  4913. frontUnderwear: {
  4914. height: math.unit(5, "meters"),
  4915. weight: math.unit(1000, "kg"),
  4916. name: "Front (Underwear)",
  4917. image: {
  4918. source: "./media/characters/asche/front-underwear.svg",
  4919. extra: 1258 / 1190,
  4920. bottom: 47 / 1305
  4921. }
  4922. },
  4923. frontDressed: {
  4924. height: math.unit(5, "meters"),
  4925. weight: math.unit(1000, "kg"),
  4926. name: "Front (Dressed)",
  4927. image: {
  4928. source: "./media/characters/asche/front-dressed.svg",
  4929. extra: 1258 / 1190,
  4930. bottom: 47 / 1305
  4931. }
  4932. },
  4933. frontArmor: {
  4934. height: math.unit(5, "meters"),
  4935. weight: math.unit(1000, "kg"),
  4936. name: "Front (Armored)",
  4937. image: {
  4938. source: "./media/characters/asche/front-armored.svg",
  4939. extra: 1374 / 1308,
  4940. bottom: 23 / 1397
  4941. }
  4942. },
  4943. mp724: {
  4944. height: math.unit(0.96, "meters"),
  4945. weight: math.unit(38, "kg"),
  4946. name: "H&K MP724",
  4947. image: {
  4948. source: "./media/characters/asche/h&k-mp724.svg"
  4949. }
  4950. },
  4951. side: {
  4952. height: math.unit(5, "meters"),
  4953. weight: math.unit(1000, "kg"),
  4954. name: "Side",
  4955. image: {
  4956. source: "./media/characters/asche/side.svg",
  4957. extra: 1717 / 1609,
  4958. bottom: 0.005
  4959. }
  4960. },
  4961. back: {
  4962. height: math.unit(5, "meters"),
  4963. weight: math.unit(1000, "kg"),
  4964. name: "Back",
  4965. image: {
  4966. source: "./media/characters/asche/back.svg",
  4967. extra: 1570 / 1501
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "DEFCON 5",
  4974. height: math.unit(5, "meters")
  4975. },
  4976. {
  4977. name: "DEFCON 4",
  4978. height: math.unit(500, "meters"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "DEFCON 3",
  4983. height: math.unit(5, "km")
  4984. },
  4985. {
  4986. name: "DEFCON 2",
  4987. height: math.unit(500, "km")
  4988. },
  4989. {
  4990. name: "DEFCON 1",
  4991. height: math.unit(500000, "km")
  4992. },
  4993. {
  4994. name: "DEFCON 0",
  4995. height: math.unit(3, "gigaparsecs")
  4996. },
  4997. ]
  4998. ))
  4999. characterMakers.push(() => makeCharacter(
  5000. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5001. {
  5002. front: {
  5003. height: math.unit(2, "meters"),
  5004. weight: math.unit(76, "kg"),
  5005. name: "Front",
  5006. image: {
  5007. source: "./media/characters/gale/front.svg"
  5008. }
  5009. },
  5010. frontAlt1: {
  5011. height: math.unit(2, "meters"),
  5012. weight: math.unit(76, "kg"),
  5013. name: "Front (Alt 1)",
  5014. image: {
  5015. source: "./media/characters/gale/front-alt-1.svg"
  5016. }
  5017. },
  5018. frontAlt2: {
  5019. height: math.unit(2, "meters"),
  5020. weight: math.unit(76, "kg"),
  5021. name: "Front (Alt 2)",
  5022. image: {
  5023. source: "./media/characters/gale/front-alt-2.svg"
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(7, "feet")
  5031. },
  5032. {
  5033. name: "Macro",
  5034. height: math.unit(150, "feet"),
  5035. default: true
  5036. },
  5037. {
  5038. name: "Macro+",
  5039. height: math.unit(300, "feet")
  5040. },
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5045. {
  5046. front: {
  5047. height: math.unit(5 + 10/12, "feet"),
  5048. weight: math.unit(67, "kg"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/draylen/front.svg",
  5052. extra: 832/777,
  5053. bottom: 85/917
  5054. }
  5055. }
  5056. },
  5057. [
  5058. {
  5059. name: "Normal",
  5060. height: math.unit(5 + 10/12, "feet")
  5061. },
  5062. {
  5063. name: "Macro",
  5064. height: math.unit(150, "feet"),
  5065. default: true
  5066. }
  5067. ]
  5068. ))
  5069. characterMakers.push(() => makeCharacter(
  5070. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5071. {
  5072. front: {
  5073. height: math.unit(7 + 9 / 12, "feet"),
  5074. weight: math.unit(379, "lbs"),
  5075. name: "Front",
  5076. image: {
  5077. source: "./media/characters/chez/front.svg"
  5078. }
  5079. },
  5080. side: {
  5081. height: math.unit(7 + 9 / 12, "feet"),
  5082. weight: math.unit(379, "lbs"),
  5083. name: "Side",
  5084. image: {
  5085. source: "./media/characters/chez/side.svg"
  5086. }
  5087. }
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(7 + 9 / 12, "feet"),
  5093. default: true
  5094. },
  5095. {
  5096. name: "God King",
  5097. height: math.unit(9750000, "meters")
  5098. }
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5103. {
  5104. front: {
  5105. height: math.unit(6, "feet"),
  5106. weight: math.unit(275, "lbs"),
  5107. name: "Front",
  5108. image: {
  5109. source: "./media/characters/kaylum/front.svg",
  5110. bottom: 0.01,
  5111. extra: 1166 / 1031
  5112. }
  5113. },
  5114. frontWingless: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(275, "lbs"),
  5117. name: "Front (Wingless)",
  5118. image: {
  5119. source: "./media/characters/kaylum/front-wingless.svg",
  5120. bottom: 0.01,
  5121. extra: 1117 / 1031
  5122. }
  5123. }
  5124. },
  5125. [
  5126. {
  5127. name: "Normal",
  5128. height: math.unit(3.05, "meters")
  5129. },
  5130. {
  5131. name: "Master",
  5132. height: math.unit(5.5, "meters")
  5133. },
  5134. {
  5135. name: "Rampage",
  5136. height: math.unit(19, "meters")
  5137. },
  5138. {
  5139. name: "Macro Lite",
  5140. height: math.unit(37, "meters")
  5141. },
  5142. {
  5143. name: "Hyper Predator",
  5144. height: math.unit(61, "meters")
  5145. },
  5146. {
  5147. name: "Macro",
  5148. height: math.unit(138, "meters"),
  5149. default: true
  5150. }
  5151. ]
  5152. ))
  5153. characterMakers.push(() => makeCharacter(
  5154. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5155. {
  5156. front: {
  5157. height: math.unit(5 + 5 / 12, "feet"),
  5158. weight: math.unit(120, "lbs"),
  5159. name: "Front",
  5160. image: {
  5161. source: "./media/characters/geta/front.svg",
  5162. extra: 1003/933,
  5163. bottom: 21/1024
  5164. }
  5165. },
  5166. paw: {
  5167. height: math.unit(0.35, "feet"),
  5168. name: "Paw",
  5169. image: {
  5170. source: "./media/characters/geta/paw.svg"
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Micro",
  5177. height: math.unit(3, "inches"),
  5178. default: true
  5179. },
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(5 + 5 / 12, "feet")
  5183. }
  5184. ]
  5185. ))
  5186. characterMakers.push(() => makeCharacter(
  5187. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5188. {
  5189. front: {
  5190. height: math.unit(6, "feet"),
  5191. weight: math.unit(300, "lbs"),
  5192. name: "Front",
  5193. image: {
  5194. source: "./media/characters/tyrnn/front.svg"
  5195. }
  5196. }
  5197. },
  5198. [
  5199. {
  5200. name: "Main Height",
  5201. height: math.unit(355, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Fave. Height",
  5206. height: math.unit(2400, "feet")
  5207. }
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5212. {
  5213. front: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(300, "lbs"),
  5216. name: "Front",
  5217. image: {
  5218. source: "./media/characters/appledectomy/front.svg"
  5219. }
  5220. }
  5221. },
  5222. [
  5223. {
  5224. name: "Macro",
  5225. height: math.unit(2500, "feet")
  5226. },
  5227. {
  5228. name: "Megamacro",
  5229. height: math.unit(50, "miles"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Gigamacro",
  5234. height: math.unit(5000, "miles")
  5235. },
  5236. {
  5237. name: "Teramacro",
  5238. height: math.unit(250000, "miles")
  5239. },
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5244. {
  5245. front: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(200, "lbs"),
  5248. name: "Front",
  5249. image: {
  5250. source: "./media/characters/vulpes/front.svg",
  5251. extra: 573 / 543,
  5252. bottom: 0.033
  5253. }
  5254. },
  5255. side: {
  5256. height: math.unit(6, "feet"),
  5257. weight: math.unit(200, "lbs"),
  5258. name: "Side",
  5259. image: {
  5260. source: "./media/characters/vulpes/side.svg",
  5261. extra: 577 / 549,
  5262. bottom: 11 / 588
  5263. }
  5264. },
  5265. back: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(200, "lbs"),
  5268. name: "Back",
  5269. image: {
  5270. source: "./media/characters/vulpes/back.svg",
  5271. extra: 573 / 549,
  5272. bottom: 20 / 593
  5273. }
  5274. },
  5275. feet: {
  5276. height: math.unit(1.276, "feet"),
  5277. name: "Feet",
  5278. image: {
  5279. source: "./media/characters/vulpes/feet.svg"
  5280. }
  5281. },
  5282. maw: {
  5283. height: math.unit(1.18, "feet"),
  5284. name: "Maw",
  5285. image: {
  5286. source: "./media/characters/vulpes/maw.svg"
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Micro",
  5293. height: math.unit(2, "inches")
  5294. },
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(6.3, "feet")
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(850, "feet")
  5302. },
  5303. {
  5304. name: "Megamacro",
  5305. height: math.unit(7500, "feet"),
  5306. default: true
  5307. },
  5308. {
  5309. name: "Gigamacro",
  5310. height: math.unit(570000, "miles")
  5311. }
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5316. {
  5317. front: {
  5318. height: math.unit(6, "feet"),
  5319. weight: math.unit(210, "lbs"),
  5320. name: "Front",
  5321. image: {
  5322. source: "./media/characters/rain-fallen/front.svg"
  5323. }
  5324. },
  5325. side: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(210, "lbs"),
  5328. name: "Side",
  5329. image: {
  5330. source: "./media/characters/rain-fallen/side.svg"
  5331. }
  5332. },
  5333. back: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(210, "lbs"),
  5336. name: "Back",
  5337. image: {
  5338. source: "./media/characters/rain-fallen/back.svg"
  5339. }
  5340. },
  5341. feral: {
  5342. height: math.unit(9, "feet"),
  5343. weight: math.unit(700, "lbs"),
  5344. name: "Feral",
  5345. image: {
  5346. source: "./media/characters/rain-fallen/feral.svg"
  5347. }
  5348. },
  5349. },
  5350. [
  5351. {
  5352. name: "Meddling with Mortals",
  5353. height: math.unit(8 + 8/12, "feet")
  5354. },
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(5, "meter")
  5358. },
  5359. {
  5360. name: "Macro",
  5361. height: math.unit(150, "meter"),
  5362. default: true
  5363. },
  5364. {
  5365. name: "Megamacro",
  5366. height: math.unit(278e6, "meter")
  5367. },
  5368. {
  5369. name: "Gigamacro",
  5370. height: math.unit(2e9, "meter")
  5371. },
  5372. {
  5373. name: "Teramacro",
  5374. height: math.unit(8e12, "meter")
  5375. },
  5376. {
  5377. name: "Devourer",
  5378. height: math.unit(14, "zettameters")
  5379. },
  5380. {
  5381. name: "Scarlet King",
  5382. height: math.unit(18, "yottameters")
  5383. },
  5384. {
  5385. name: "Void",
  5386. height: math.unit(1e88, "yottameters")
  5387. }
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5392. {
  5393. standing: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(180, "lbs"),
  5396. name: "Standing",
  5397. image: {
  5398. source: "./media/characters/zaakira/standing.svg",
  5399. extra: 1599/1504,
  5400. bottom: 39/1638
  5401. }
  5402. },
  5403. laying: {
  5404. height: math.unit(3.3, "feet"),
  5405. weight: math.unit(180, "lbs"),
  5406. name: "Laying",
  5407. image: {
  5408. source: "./media/characters/zaakira/laying.svg"
  5409. }
  5410. },
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(12, "feet")
  5416. },
  5417. {
  5418. name: "Macro",
  5419. height: math.unit(279, "feet"),
  5420. default: true
  5421. }
  5422. ]
  5423. ))
  5424. characterMakers.push(() => makeCharacter(
  5425. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5426. {
  5427. femSfw: {
  5428. height: math.unit(8, "feet"),
  5429. weight: math.unit(350, "lb"),
  5430. name: "Fem",
  5431. image: {
  5432. source: "./media/characters/sigvald/fem-sfw.svg",
  5433. extra: 182 / 164,
  5434. bottom: 8.7 / 190.5
  5435. }
  5436. },
  5437. femNsfw: {
  5438. height: math.unit(8, "feet"),
  5439. weight: math.unit(350, "lb"),
  5440. name: "Fem (NSFW)",
  5441. image: {
  5442. source: "./media/characters/sigvald/fem-nsfw.svg",
  5443. extra: 182 / 164,
  5444. bottom: 8.7 / 190.5
  5445. }
  5446. },
  5447. maleNsfw: {
  5448. height: math.unit(8, "feet"),
  5449. weight: math.unit(350, "lb"),
  5450. name: "Male (NSFW)",
  5451. image: {
  5452. source: "./media/characters/sigvald/male-nsfw.svg",
  5453. extra: 182 / 164,
  5454. bottom: 8.7 / 190.5
  5455. }
  5456. },
  5457. hermNsfw: {
  5458. height: math.unit(8, "feet"),
  5459. weight: math.unit(350, "lb"),
  5460. name: "Herm (NSFW)",
  5461. image: {
  5462. source: "./media/characters/sigvald/herm-nsfw.svg",
  5463. extra: 182 / 164,
  5464. bottom: 8.7 / 190.5
  5465. }
  5466. },
  5467. dick: {
  5468. height: math.unit(2.36, "feet"),
  5469. name: "Dick",
  5470. image: {
  5471. source: "./media/characters/sigvald/dick.svg"
  5472. }
  5473. },
  5474. eye: {
  5475. height: math.unit(0.31, "feet"),
  5476. name: "Eye",
  5477. image: {
  5478. source: "./media/characters/sigvald/eye.svg"
  5479. }
  5480. },
  5481. mouth: {
  5482. height: math.unit(0.92, "feet"),
  5483. name: "Mouth",
  5484. image: {
  5485. source: "./media/characters/sigvald/mouth.svg"
  5486. }
  5487. },
  5488. paws: {
  5489. height: math.unit(2.2, "feet"),
  5490. name: "Paws",
  5491. image: {
  5492. source: "./media/characters/sigvald/paws.svg"
  5493. }
  5494. }
  5495. },
  5496. [
  5497. {
  5498. name: "Normal",
  5499. height: math.unit(8, "feet")
  5500. },
  5501. {
  5502. name: "Large",
  5503. height: math.unit(12, "feet")
  5504. },
  5505. {
  5506. name: "Larger",
  5507. height: math.unit(20, "feet")
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(150, "feet")
  5512. },
  5513. {
  5514. name: "Macro+",
  5515. height: math.unit(200, "feet"),
  5516. default: true
  5517. },
  5518. ]
  5519. ))
  5520. characterMakers.push(() => makeCharacter(
  5521. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5522. {
  5523. side: {
  5524. height: math.unit(12, "feet"),
  5525. weight: math.unit(2000, "kg"),
  5526. name: "Side",
  5527. image: {
  5528. source: "./media/characters/scott/side.svg",
  5529. extra: 754 / 724,
  5530. bottom: 0.069
  5531. }
  5532. },
  5533. upright: {
  5534. height: math.unit(12, "feet"),
  5535. weight: math.unit(2000, "kg"),
  5536. name: "Upright",
  5537. image: {
  5538. source: "./media/characters/scott/upright.svg",
  5539. extra: 3881 / 3722,
  5540. bottom: 0.05
  5541. }
  5542. },
  5543. },
  5544. [
  5545. {
  5546. name: "Normal",
  5547. height: math.unit(12, "feet"),
  5548. default: true
  5549. },
  5550. ]
  5551. ))
  5552. characterMakers.push(() => makeCharacter(
  5553. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5554. {
  5555. side: {
  5556. height: math.unit(8, "meters"),
  5557. weight: math.unit(84755, "lbs"),
  5558. name: "Side",
  5559. image: {
  5560. source: "./media/characters/tobias/side.svg",
  5561. extra: 1474 / 1096,
  5562. bottom: 38.9 / 1513.1235
  5563. }
  5564. },
  5565. },
  5566. [
  5567. {
  5568. name: "Normal",
  5569. height: math.unit(8, "meters"),
  5570. default: true
  5571. },
  5572. ]
  5573. ))
  5574. characterMakers.push(() => makeCharacter(
  5575. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5576. {
  5577. front: {
  5578. height: math.unit(5.5, "feet"),
  5579. weight: math.unit(400, "lbs"),
  5580. name: "Front",
  5581. image: {
  5582. source: "./media/characters/kieran/front.svg",
  5583. extra: 2694 / 2364,
  5584. bottom: 217 / 2908
  5585. }
  5586. },
  5587. side: {
  5588. height: math.unit(5.5, "feet"),
  5589. weight: math.unit(400, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/kieran/side.svg",
  5593. extra: 875 / 777,
  5594. bottom: 84.6 / 959
  5595. }
  5596. },
  5597. },
  5598. [
  5599. {
  5600. name: "Normal",
  5601. height: math.unit(5.5, "feet"),
  5602. default: true
  5603. },
  5604. ]
  5605. ))
  5606. characterMakers.push(() => makeCharacter(
  5607. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5608. {
  5609. side: {
  5610. height: math.unit(2, "meters"),
  5611. weight: math.unit(70, "kg"),
  5612. name: "Side",
  5613. image: {
  5614. source: "./media/characters/sanya/side.svg",
  5615. bottom: 0.02,
  5616. extra: 1.02
  5617. }
  5618. },
  5619. },
  5620. [
  5621. {
  5622. name: "Small",
  5623. height: math.unit(2, "meters")
  5624. },
  5625. {
  5626. name: "Normal",
  5627. height: math.unit(3, "meters")
  5628. },
  5629. {
  5630. name: "Macro",
  5631. height: math.unit(16, "meters"),
  5632. default: true
  5633. },
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5638. {
  5639. front: {
  5640. height: math.unit(2, "meters"),
  5641. weight: math.unit(120, "kg"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/miranda/front.svg",
  5645. extra: 195 / 185,
  5646. bottom: 10.9 / 206.5
  5647. }
  5648. },
  5649. back: {
  5650. height: math.unit(2, "meters"),
  5651. weight: math.unit(120, "kg"),
  5652. name: "Back",
  5653. image: {
  5654. source: "./media/characters/miranda/back.svg",
  5655. extra: 201 / 193,
  5656. bottom: 2.3 / 203.7
  5657. }
  5658. },
  5659. },
  5660. [
  5661. {
  5662. name: "Normal",
  5663. height: math.unit(10, "feet"),
  5664. default: true
  5665. }
  5666. ]
  5667. ))
  5668. characterMakers.push(() => makeCharacter(
  5669. { name: "James", species: ["deer"], tags: ["anthro"] },
  5670. {
  5671. side: {
  5672. height: math.unit(2, "meters"),
  5673. weight: math.unit(100, "kg"),
  5674. name: "Front",
  5675. image: {
  5676. source: "./media/characters/james/front.svg",
  5677. extra: 10 / 8.5
  5678. }
  5679. },
  5680. },
  5681. [
  5682. {
  5683. name: "Normal",
  5684. height: math.unit(8.5, "feet"),
  5685. default: true
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5691. {
  5692. side: {
  5693. height: math.unit(9.5, "feet"),
  5694. weight: math.unit(2500, "lbs"),
  5695. name: "Side",
  5696. image: {
  5697. source: "./media/characters/heather/side.svg"
  5698. }
  5699. },
  5700. },
  5701. [
  5702. {
  5703. name: "Normal",
  5704. height: math.unit(9.5, "feet"),
  5705. default: true
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5711. {
  5712. side: {
  5713. height: math.unit(6.5, "feet"),
  5714. weight: math.unit(400, "lbs"),
  5715. name: "Side",
  5716. image: {
  5717. source: "./media/characters/lukas/side.svg",
  5718. extra: 7.25 / 6.5
  5719. }
  5720. },
  5721. },
  5722. [
  5723. {
  5724. name: "Normal",
  5725. height: math.unit(6.5, "feet"),
  5726. default: true
  5727. }
  5728. ]
  5729. ))
  5730. characterMakers.push(() => makeCharacter(
  5731. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5732. {
  5733. side: {
  5734. height: math.unit(5, "feet"),
  5735. weight: math.unit(3000, "lbs"),
  5736. name: "Side",
  5737. image: {
  5738. source: "./media/characters/louise/side.svg"
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(5, "feet"),
  5746. default: true
  5747. }
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5752. {
  5753. side: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(150, "lbs"),
  5756. name: "Side",
  5757. image: {
  5758. source: "./media/characters/ramona/side.svg",
  5759. extra: 871/854,
  5760. bottom: 41/912
  5761. }
  5762. },
  5763. },
  5764. [
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(6 + 4/12, "feet")
  5768. },
  5769. {
  5770. name: "Minimacro",
  5771. height: math.unit(5.3, "meters"),
  5772. default: true
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(20, "stories")
  5777. },
  5778. {
  5779. name: "Macro+",
  5780. height: math.unit(50, "stories")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5786. {
  5787. standing: {
  5788. height: math.unit(5.75, "feet"),
  5789. weight: math.unit(160, "lbs"),
  5790. name: "Standing",
  5791. image: {
  5792. source: "./media/characters/deerpuff/standing.svg",
  5793. extra: 682 / 624
  5794. }
  5795. },
  5796. sitting: {
  5797. height: math.unit(5.75 / 1.79, "feet"),
  5798. weight: math.unit(160, "lbs"),
  5799. name: "Sitting",
  5800. image: {
  5801. source: "./media/characters/deerpuff/sitting.svg",
  5802. bottom: 44 / 400,
  5803. extra: 1
  5804. }
  5805. },
  5806. taurLaying: {
  5807. height: math.unit(6, "feet"),
  5808. weight: math.unit(400, "lbs"),
  5809. name: "Taur (Laying)",
  5810. image: {
  5811. source: "./media/characters/deerpuff/taur-laying.svg"
  5812. }
  5813. },
  5814. },
  5815. [
  5816. {
  5817. name: "Puffball",
  5818. height: math.unit(6, "inches")
  5819. },
  5820. {
  5821. name: "Normalpuff",
  5822. height: math.unit(5.75, "feet")
  5823. },
  5824. {
  5825. name: "Macropuff",
  5826. height: math.unit(1500, "feet"),
  5827. default: true
  5828. },
  5829. {
  5830. name: "Megapuff",
  5831. height: math.unit(500, "miles")
  5832. },
  5833. {
  5834. name: "Gigapuff",
  5835. height: math.unit(250000, "miles")
  5836. },
  5837. {
  5838. name: "Omegapuff",
  5839. height: math.unit(1000, "lightyears")
  5840. },
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5845. {
  5846. stomping: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(170, "lbs"),
  5849. name: "Stomping",
  5850. image: {
  5851. source: "./media/characters/vivian/stomping.svg"
  5852. }
  5853. },
  5854. sitting: {
  5855. height: math.unit(6 / 1.75, "feet"),
  5856. weight: math.unit(170, "lbs"),
  5857. name: "Sitting",
  5858. image: {
  5859. source: "./media/characters/vivian/sitting.svg",
  5860. bottom: 1 / 6.4,
  5861. extra: 1,
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(7, "feet"),
  5869. default: true
  5870. },
  5871. {
  5872. name: "Macro",
  5873. height: math.unit(10, "stories")
  5874. },
  5875. {
  5876. name: "Macro+",
  5877. height: math.unit(30, "stories")
  5878. },
  5879. {
  5880. name: "Megamacro",
  5881. height: math.unit(10, "miles")
  5882. },
  5883. {
  5884. name: "Megamacro+",
  5885. height: math.unit(2750000, "meters")
  5886. },
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5891. {
  5892. front: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(160, "lbs"),
  5895. name: "Front",
  5896. image: {
  5897. source: "./media/characters/prince/front.svg",
  5898. extra: 3400 / 3000
  5899. }
  5900. },
  5901. jumping: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(160, "lbs"),
  5904. name: "Jumping",
  5905. image: {
  5906. source: "./media/characters/prince/jump.svg",
  5907. extra: 2555 / 2134
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(7.75, "feet"),
  5915. default: true
  5916. },
  5917. {
  5918. name: "Not cute",
  5919. height: math.unit(17, "feet")
  5920. },
  5921. {
  5922. name: "I said NOT",
  5923. height: math.unit(91, "feet")
  5924. },
  5925. {
  5926. name: "Please stop",
  5927. height: math.unit(560, "feet")
  5928. },
  5929. {
  5930. name: "What have you done",
  5931. height: math.unit(2200, "feet")
  5932. },
  5933. {
  5934. name: "Deer God",
  5935. height: math.unit(3.6, "miles")
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5941. {
  5942. standing: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(300, "lbs"),
  5945. name: "Standing",
  5946. image: {
  5947. source: "./media/characters/psymon/standing.svg",
  5948. extra: 1888 / 1810,
  5949. bottom: 0.05
  5950. }
  5951. },
  5952. slithering: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(300, "lbs"),
  5955. name: "Slithering",
  5956. image: {
  5957. source: "./media/characters/psymon/slithering.svg",
  5958. extra: 1330 / 1224
  5959. }
  5960. },
  5961. slitheringAlt: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(300, "lbs"),
  5964. name: "Slithering (Alt)",
  5965. image: {
  5966. source: "./media/characters/psymon/slithering-alt.svg",
  5967. extra: 1330 / 1224
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(11.25, "feet"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Large",
  5979. height: math.unit(27, "feet")
  5980. },
  5981. {
  5982. name: "Giant",
  5983. height: math.unit(87, "feet")
  5984. },
  5985. {
  5986. name: "Macro",
  5987. height: math.unit(365, "feet")
  5988. },
  5989. {
  5990. name: "Megamacro",
  5991. height: math.unit(3, "miles")
  5992. },
  5993. {
  5994. name: "World Serpent",
  5995. height: math.unit(8000, "miles")
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(6, "feet"),
  6004. weight: math.unit(180, "lbs"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/daimos/front.svg",
  6008. extra: 4160 / 3897,
  6009. bottom: 0.021
  6010. }
  6011. }
  6012. },
  6013. [
  6014. {
  6015. name: "Normal",
  6016. height: math.unit(8, "feet"),
  6017. default: true
  6018. },
  6019. {
  6020. name: "Big Dog",
  6021. height: math.unit(22, "feet")
  6022. },
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(127, "feet")
  6026. },
  6027. {
  6028. name: "Megamacro",
  6029. height: math.unit(3600, "feet")
  6030. },
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6035. {
  6036. side: {
  6037. height: math.unit(6, "feet"),
  6038. weight: math.unit(180, "lbs"),
  6039. name: "Side",
  6040. image: {
  6041. source: "./media/characters/blake/side.svg",
  6042. extra: 1212 / 1120,
  6043. bottom: 0.05
  6044. }
  6045. },
  6046. crouched: {
  6047. height: math.unit(6 * 0.57, "feet"),
  6048. weight: math.unit(180, "lbs"),
  6049. name: "Crouched",
  6050. image: {
  6051. source: "./media/characters/blake/crouched.svg",
  6052. extra: 840 / 587,
  6053. bottom: 0.04
  6054. }
  6055. },
  6056. bent: {
  6057. height: math.unit(6 * 0.75, "feet"),
  6058. weight: math.unit(180, "lbs"),
  6059. name: "Bent",
  6060. image: {
  6061. source: "./media/characters/blake/bent.svg",
  6062. extra: 592 / 544,
  6063. bottom: 0.035
  6064. }
  6065. },
  6066. },
  6067. [
  6068. {
  6069. name: "Normal",
  6070. height: math.unit(8 + 1 / 6, "feet"),
  6071. default: true
  6072. },
  6073. {
  6074. name: "Big Backside",
  6075. height: math.unit(37, "feet")
  6076. },
  6077. {
  6078. name: "Subway Shredder",
  6079. height: math.unit(72, "feet")
  6080. },
  6081. {
  6082. name: "City Carver",
  6083. height: math.unit(1675, "feet")
  6084. },
  6085. {
  6086. name: "Tectonic Tweaker",
  6087. height: math.unit(2300, "miles")
  6088. },
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6093. {
  6094. front: {
  6095. height: math.unit(6, "feet"),
  6096. weight: math.unit(180, "lbs"),
  6097. name: "Front",
  6098. image: {
  6099. source: "./media/characters/guisetto/front.svg",
  6100. extra: 856 / 817,
  6101. bottom: 0.06
  6102. }
  6103. },
  6104. airborne: {
  6105. height: math.unit(6, "feet"),
  6106. weight: math.unit(180, "lbs"),
  6107. name: "Airborne",
  6108. image: {
  6109. source: "./media/characters/guisetto/airborne.svg",
  6110. extra: 584 / 525
  6111. }
  6112. },
  6113. },
  6114. [
  6115. {
  6116. name: "Normal",
  6117. height: math.unit(10 + 11 / 12, "feet"),
  6118. default: true
  6119. },
  6120. {
  6121. name: "Large",
  6122. height: math.unit(35, "feet")
  6123. },
  6124. {
  6125. name: "Macro",
  6126. height: math.unit(475, "feet")
  6127. },
  6128. ]
  6129. ))
  6130. characterMakers.push(() => makeCharacter(
  6131. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6132. {
  6133. front: {
  6134. height: math.unit(6, "feet"),
  6135. weight: math.unit(180, "lbs"),
  6136. name: "Front",
  6137. image: {
  6138. source: "./media/characters/luxor/front.svg",
  6139. extra: 2940 / 2152
  6140. }
  6141. },
  6142. back: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(180, "lbs"),
  6145. name: "Back",
  6146. image: {
  6147. source: "./media/characters/luxor/back.svg",
  6148. extra: 1083 / 960
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(5 + 5 / 6, "feet"),
  6156. default: true
  6157. },
  6158. {
  6159. name: "Lamp",
  6160. height: math.unit(50, "feet")
  6161. },
  6162. {
  6163. name: "Lämp",
  6164. height: math.unit(300, "feet")
  6165. },
  6166. {
  6167. name: "The sun is a lamp",
  6168. height: math.unit(250000, "miles")
  6169. },
  6170. ]
  6171. ))
  6172. characterMakers.push(() => makeCharacter(
  6173. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6174. {
  6175. front: {
  6176. height: math.unit(6, "feet"),
  6177. weight: math.unit(50, "lbs"),
  6178. name: "Front",
  6179. image: {
  6180. source: "./media/characters/huoyan/front.svg"
  6181. }
  6182. },
  6183. side: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(180, "lbs"),
  6186. name: "Side",
  6187. image: {
  6188. source: "./media/characters/huoyan/side.svg"
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Chef",
  6195. height: math.unit(9, "feet")
  6196. },
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(65, "feet"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Macro",
  6204. height: math.unit(780, "feet")
  6205. },
  6206. {
  6207. name: "Flaming Mountain",
  6208. height: math.unit(4.8, "miles")
  6209. },
  6210. {
  6211. name: "Celestial",
  6212. height: math.unit(765000, "miles")
  6213. },
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6218. {
  6219. front: {
  6220. height: math.unit(5 + 3 / 4, "feet"),
  6221. weight: math.unit(120, "lbs"),
  6222. name: "Front",
  6223. image: {
  6224. source: "./media/characters/tails/front.svg"
  6225. }
  6226. }
  6227. },
  6228. [
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(5 + 3 / 4, "feet"),
  6232. default: true
  6233. }
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(4, "feet"),
  6241. weight: math.unit(50, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/rainy/front.svg"
  6245. }
  6246. }
  6247. },
  6248. [
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(800, "feet"),
  6252. default: true
  6253. }
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(6, "feet"),
  6261. weight: math.unit(150, "lbs"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/rainier/front.svg"
  6265. }
  6266. }
  6267. },
  6268. [
  6269. {
  6270. name: "Micro",
  6271. height: math.unit(2, "mm"),
  6272. default: true
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6278. {
  6279. front: {
  6280. height: math.unit(8 + 4/12, "feet"),
  6281. weight: math.unit(450, "kilograms"),
  6282. volume: math.unit(5, "cups"),
  6283. name: "Front",
  6284. image: {
  6285. source: "./media/characters/andy-renard/front.svg",
  6286. extra: 1839/1726,
  6287. bottom: 134/1973
  6288. }
  6289. },
  6290. back: {
  6291. height: math.unit(8 + 4/12, "feet"),
  6292. weight: math.unit(450, "kilograms"),
  6293. volume: math.unit(5, "cups"),
  6294. name: "Back",
  6295. image: {
  6296. source: "./media/characters/andy-renard/back.svg",
  6297. extra: 1838/1710,
  6298. bottom: 105/1943
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Tall",
  6305. height: math.unit(8 + 4/12, "feet")
  6306. },
  6307. {
  6308. name: "Mini Macro",
  6309. height: math.unit(15, "feet"),
  6310. default: true
  6311. },
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(100, "feet")
  6315. },
  6316. {
  6317. name: "Mega Macro",
  6318. height: math.unit(1000, "feet")
  6319. },
  6320. {
  6321. name: "Giga Macro",
  6322. height: math.unit(10, "miles")
  6323. },
  6324. {
  6325. name: "God Macro",
  6326. height: math.unit(1, "multiverse")
  6327. },
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6332. {
  6333. front: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(210, "lbs"),
  6336. name: "Front",
  6337. image: {
  6338. source: "./media/characters/cimmaron/front-sfw.svg",
  6339. extra: 701 / 676,
  6340. bottom: 0.046
  6341. }
  6342. },
  6343. back: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(210, "lbs"),
  6346. name: "Back",
  6347. image: {
  6348. source: "./media/characters/cimmaron/back-sfw.svg",
  6349. extra: 701 / 676,
  6350. bottom: 0.046
  6351. }
  6352. },
  6353. frontNsfw: {
  6354. height: math.unit(6, "feet"),
  6355. weight: math.unit(210, "lbs"),
  6356. name: "Front (NSFW)",
  6357. image: {
  6358. source: "./media/characters/cimmaron/front-nsfw.svg",
  6359. extra: 701 / 676,
  6360. bottom: 0.046
  6361. }
  6362. },
  6363. backNsfw: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(210, "lbs"),
  6366. name: "Back (NSFW)",
  6367. image: {
  6368. source: "./media/characters/cimmaron/back-nsfw.svg",
  6369. extra: 701 / 676,
  6370. bottom: 0.046
  6371. }
  6372. },
  6373. dick: {
  6374. height: math.unit(1.714, "feet"),
  6375. name: "Dick",
  6376. image: {
  6377. source: "./media/characters/cimmaron/dick.svg"
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(6, "feet"),
  6385. default: true
  6386. },
  6387. {
  6388. name: "Macro Mayor",
  6389. height: math.unit(350, "meters")
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6395. {
  6396. front: {
  6397. height: math.unit(6, "feet"),
  6398. weight: math.unit(200, "lbs"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/akari/front.svg",
  6402. extra: 962 / 901,
  6403. bottom: 0.04
  6404. }
  6405. }
  6406. },
  6407. [
  6408. {
  6409. name: "Micro",
  6410. height: math.unit(5, "inches"),
  6411. default: true
  6412. },
  6413. {
  6414. name: "Normal",
  6415. height: math.unit(7, "feet")
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6421. {
  6422. front: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(140, "lbs"),
  6425. name: "Front",
  6426. image: {
  6427. source: "./media/characters/cynosura/front.svg",
  6428. extra: 896 / 847
  6429. }
  6430. },
  6431. back: {
  6432. height: math.unit(6, "feet"),
  6433. weight: math.unit(140, "lbs"),
  6434. name: "Back",
  6435. image: {
  6436. source: "./media/characters/cynosura/back.svg",
  6437. extra: 1365 / 1250
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Micro",
  6444. height: math.unit(4, "inches")
  6445. },
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(5.75, "feet"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Tall",
  6453. height: math.unit(10, "feet")
  6454. },
  6455. {
  6456. name: "Big",
  6457. height: math.unit(20, "feet")
  6458. },
  6459. {
  6460. name: "Macro",
  6461. height: math.unit(50, "feet")
  6462. },
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(13 + 2/12, "feet"),
  6470. weight: math.unit(800, "kg"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/gin/front.svg",
  6474. extra: 1312/1191,
  6475. bottom: 45/1357
  6476. }
  6477. },
  6478. mouth: {
  6479. height: math.unit(2.39 * 1.8, "feet"),
  6480. name: "Mouth",
  6481. image: {
  6482. source: "./media/characters/gin/mouth.svg"
  6483. }
  6484. },
  6485. hand: {
  6486. height: math.unit(1.57 * 2.19, "feet"),
  6487. name: "Hand",
  6488. image: {
  6489. source: "./media/characters/gin/hand.svg"
  6490. }
  6491. },
  6492. foot: {
  6493. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6494. name: "Foot",
  6495. image: {
  6496. source: "./media/characters/gin/foot.svg"
  6497. }
  6498. },
  6499. sole: {
  6500. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6501. name: "Sole",
  6502. image: {
  6503. source: "./media/characters/gin/sole.svg"
  6504. }
  6505. },
  6506. },
  6507. [
  6508. {
  6509. name: "Very Small",
  6510. height: math.unit(13 + 2 / 12, "feet")
  6511. },
  6512. {
  6513. name: "Micro",
  6514. height: math.unit(600, "miles")
  6515. },
  6516. {
  6517. name: "Regular",
  6518. height: math.unit(20, "earths"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Macro",
  6523. height: math.unit(2.2, "solarradii")
  6524. },
  6525. {
  6526. name: "Teramacro",
  6527. height: math.unit(1.2, "galaxies")
  6528. },
  6529. {
  6530. name: "Omegamacro",
  6531. height: math.unit(200, "universes")
  6532. },
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6537. {
  6538. front: {
  6539. height: math.unit(6 + 1 / 6, "feet"),
  6540. weight: math.unit(178, "lbs"),
  6541. name: "Front",
  6542. image: {
  6543. source: "./media/characters/guy/front.svg"
  6544. }
  6545. }
  6546. },
  6547. [
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(6 + 1 / 6, "feet"),
  6551. default: true
  6552. },
  6553. {
  6554. name: "Large",
  6555. height: math.unit(25 + 7 / 12, "feet")
  6556. },
  6557. {
  6558. name: "Macro",
  6559. height: math.unit(60 + 9 / 12, "feet")
  6560. },
  6561. {
  6562. name: "Macro+",
  6563. height: math.unit(246, "feet")
  6564. },
  6565. {
  6566. name: "Macro++",
  6567. height: math.unit(878, "feet")
  6568. }
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(9, "feet"),
  6576. weight: math.unit(800, "lbs"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/tiberius/front.svg",
  6580. extra: 2295 / 2071
  6581. }
  6582. },
  6583. back: {
  6584. height: math.unit(9, "feet"),
  6585. weight: math.unit(800, "lbs"),
  6586. name: "Back",
  6587. image: {
  6588. source: "./media/characters/tiberius/back.svg",
  6589. extra: 2373 / 2160
  6590. }
  6591. },
  6592. },
  6593. [
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(9, "feet"),
  6597. default: true
  6598. }
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6603. {
  6604. front: {
  6605. height: math.unit(6, "feet"),
  6606. weight: math.unit(600, "lbs"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/surgo/front.svg",
  6610. extra: 3591 / 2227
  6611. }
  6612. },
  6613. back: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(600, "lbs"),
  6616. name: "Back",
  6617. image: {
  6618. source: "./media/characters/surgo/back.svg",
  6619. extra: 3557 / 2228
  6620. }
  6621. },
  6622. laying: {
  6623. height: math.unit(6 * 0.85, "feet"),
  6624. weight: math.unit(600, "lbs"),
  6625. name: "Laying",
  6626. image: {
  6627. source: "./media/characters/surgo/laying.svg"
  6628. }
  6629. },
  6630. },
  6631. [
  6632. {
  6633. name: "Normal",
  6634. height: math.unit(6, "feet"),
  6635. default: true
  6636. }
  6637. ]
  6638. ))
  6639. characterMakers.push(() => makeCharacter(
  6640. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6641. {
  6642. side: {
  6643. height: math.unit(6, "feet"),
  6644. weight: math.unit(150, "lbs"),
  6645. name: "Side",
  6646. image: {
  6647. source: "./media/characters/cibus/side.svg",
  6648. extra: 800 / 400
  6649. }
  6650. },
  6651. },
  6652. [
  6653. {
  6654. name: "Normal",
  6655. height: math.unit(6, "feet"),
  6656. default: true
  6657. }
  6658. ]
  6659. ))
  6660. characterMakers.push(() => makeCharacter(
  6661. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6662. {
  6663. front: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(240, "lbs"),
  6666. name: "Front",
  6667. image: {
  6668. source: "./media/characters/nibbles/front.svg"
  6669. }
  6670. },
  6671. side: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(240, "lbs"),
  6674. name: "Side",
  6675. image: {
  6676. source: "./media/characters/nibbles/side.svg"
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(9, "feet"),
  6684. default: true
  6685. }
  6686. ]
  6687. ))
  6688. characterMakers.push(() => makeCharacter(
  6689. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6690. {
  6691. side: {
  6692. height: math.unit(5 + 1 / 6, "feet"),
  6693. weight: math.unit(130, "lbs"),
  6694. name: "Side",
  6695. image: {
  6696. source: "./media/characters/rikky/side.svg",
  6697. extra: 851 / 801
  6698. }
  6699. },
  6700. },
  6701. [
  6702. {
  6703. name: "Normal",
  6704. height: math.unit(5 + 1 / 6, "feet")
  6705. },
  6706. {
  6707. name: "Macro",
  6708. height: math.unit(152, "feet"),
  6709. default: true
  6710. },
  6711. {
  6712. name: "Megamacro",
  6713. height: math.unit(7, "miles")
  6714. }
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6719. {
  6720. side: {
  6721. height: math.unit(370, "cm"),
  6722. weight: math.unit(350, "lbs"),
  6723. name: "Side",
  6724. image: {
  6725. source: "./media/characters/malfressa/side.svg"
  6726. }
  6727. },
  6728. walking: {
  6729. height: math.unit(370, "cm"),
  6730. weight: math.unit(350, "lbs"),
  6731. name: "Walking",
  6732. image: {
  6733. source: "./media/characters/malfressa/walking.svg"
  6734. }
  6735. },
  6736. feral: {
  6737. height: math.unit(2500, "cm"),
  6738. weight: math.unit(100000, "lbs"),
  6739. name: "Feral",
  6740. image: {
  6741. source: "./media/characters/malfressa/feral.svg",
  6742. extra: 2108 / 837,
  6743. bottom: 0.02
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(370, "cm")
  6751. },
  6752. {
  6753. name: "Macro",
  6754. height: math.unit(300, "meters"),
  6755. default: true
  6756. }
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(6, "feet"),
  6764. weight: math.unit(60, "kg"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/jaro/front.svg",
  6768. extra: 845/817,
  6769. bottom: 45/890
  6770. }
  6771. },
  6772. back: {
  6773. height: math.unit(6, "feet"),
  6774. weight: math.unit(60, "kg"),
  6775. name: "Back",
  6776. image: {
  6777. source: "./media/characters/jaro/back.svg",
  6778. extra: 847/817,
  6779. bottom: 34/881
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Micro",
  6786. height: math.unit(7, "inches")
  6787. },
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(5.5, "feet"),
  6791. default: true
  6792. },
  6793. {
  6794. name: "Minimacro",
  6795. height: math.unit(20, "feet")
  6796. },
  6797. {
  6798. name: "Macro",
  6799. height: math.unit(200, "meters")
  6800. }
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(6, "feet"),
  6808. weight: math.unit(195, "lb"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/rogue/front.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(90, "feet"),
  6819. default: true
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6825. {
  6826. standing: {
  6827. height: math.unit(5 + 8 / 12, "feet"),
  6828. weight: math.unit(140, "lb"),
  6829. name: "Standing",
  6830. image: {
  6831. source: "./media/characters/piper/standing.svg",
  6832. extra: 1440/1284,
  6833. bottom: 66/1506
  6834. }
  6835. },
  6836. running: {
  6837. height: math.unit(5 + 8 / 12, "feet"),
  6838. weight: math.unit(140, "lb"),
  6839. name: "Running",
  6840. image: {
  6841. source: "./media/characters/piper/running.svg",
  6842. extra: 3948/3655,
  6843. bottom: 0/3948
  6844. }
  6845. },
  6846. sole: {
  6847. height: math.unit(0.81, "feet"),
  6848. weight: math.unit(2, "kg"),
  6849. name: "Sole",
  6850. image: {
  6851. source: "./media/characters/piper/sole.svg"
  6852. }
  6853. },
  6854. nipple: {
  6855. height: math.unit(0.25, "feet"),
  6856. weight: math.unit(1.5, "lb"),
  6857. name: "Nipple",
  6858. image: {
  6859. source: "./media/characters/piper/nipple.svg"
  6860. }
  6861. },
  6862. head: {
  6863. height: math.unit(1.1, "feet"),
  6864. name: "Head",
  6865. image: {
  6866. source: "./media/characters/piper/head.svg"
  6867. }
  6868. },
  6869. },
  6870. [
  6871. {
  6872. name: "Micro",
  6873. height: math.unit(2, "inches")
  6874. },
  6875. {
  6876. name: "Normal",
  6877. height: math.unit(5 + 8 / 12, "feet")
  6878. },
  6879. {
  6880. name: "Macro",
  6881. height: math.unit(250, "feet"),
  6882. default: true
  6883. },
  6884. {
  6885. name: "Megamacro",
  6886. height: math.unit(7, "miles")
  6887. },
  6888. ]
  6889. ))
  6890. characterMakers.push(() => makeCharacter(
  6891. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6892. {
  6893. front: {
  6894. height: math.unit(6, "feet"),
  6895. weight: math.unit(220, "lb"),
  6896. name: "Front",
  6897. image: {
  6898. source: "./media/characters/gemini/front.svg"
  6899. }
  6900. },
  6901. back: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(220, "lb"),
  6904. name: "Back",
  6905. image: {
  6906. source: "./media/characters/gemini/back.svg"
  6907. }
  6908. },
  6909. kneeling: {
  6910. height: math.unit(6 / 1.5, "feet"),
  6911. weight: math.unit(220, "lb"),
  6912. name: "Kneeling",
  6913. image: {
  6914. source: "./media/characters/gemini/kneeling.svg",
  6915. bottom: 0.02
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Macro",
  6922. height: math.unit(300, "meters"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Megamacro",
  6927. height: math.unit(6900, "meters")
  6928. },
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6933. {
  6934. anthro: {
  6935. height: math.unit(2.35, "meters"),
  6936. weight: math.unit(73, "kg"),
  6937. name: "Anthro",
  6938. image: {
  6939. source: "./media/characters/alicia/anthro.svg",
  6940. extra: 2571 / 2385,
  6941. bottom: 75 / 2648
  6942. }
  6943. },
  6944. paw: {
  6945. height: math.unit(1.32, "feet"),
  6946. name: "Paw",
  6947. image: {
  6948. source: "./media/characters/alicia/paw.svg"
  6949. }
  6950. },
  6951. feral: {
  6952. height: math.unit(1.69, "meters"),
  6953. weight: math.unit(73, "kg"),
  6954. name: "Feral",
  6955. image: {
  6956. source: "./media/characters/alicia/feral.svg",
  6957. extra: 2123 / 1715,
  6958. bottom: 222 / 2349
  6959. }
  6960. },
  6961. },
  6962. [
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(2.35, "meters")
  6966. },
  6967. {
  6968. name: "Macro",
  6969. height: math.unit(60, "meters"),
  6970. default: true
  6971. },
  6972. {
  6973. name: "Megamacro",
  6974. height: math.unit(10000, "kilometers")
  6975. },
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6980. {
  6981. front: {
  6982. height: math.unit(7, "feet"),
  6983. weight: math.unit(250, "lbs"),
  6984. name: "Front",
  6985. image: {
  6986. source: "./media/characters/archy/front.svg"
  6987. }
  6988. }
  6989. },
  6990. [
  6991. {
  6992. name: "Micro",
  6993. height: math.unit(1, "inch")
  6994. },
  6995. {
  6996. name: "Shorty",
  6997. height: math.unit(5, "feet")
  6998. },
  6999. {
  7000. name: "Normal",
  7001. height: math.unit(7, "feet")
  7002. },
  7003. {
  7004. name: "Macro",
  7005. height: math.unit(600, "meters"),
  7006. default: true
  7007. },
  7008. {
  7009. name: "Megamacro",
  7010. height: math.unit(1, "mile")
  7011. },
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7016. {
  7017. front: {
  7018. height: math.unit(1.65, "meters"),
  7019. weight: math.unit(74, "kg"),
  7020. name: "Front",
  7021. image: {
  7022. source: "./media/characters/berri/front.svg",
  7023. extra: 857 / 837,
  7024. bottom: 18 / 877
  7025. }
  7026. },
  7027. bum: {
  7028. height: math.unit(1.46, "feet"),
  7029. name: "Bum",
  7030. image: {
  7031. source: "./media/characters/berri/bum.svg"
  7032. }
  7033. },
  7034. mouth: {
  7035. height: math.unit(0.44, "feet"),
  7036. name: "Mouth",
  7037. image: {
  7038. source: "./media/characters/berri/mouth.svg"
  7039. }
  7040. },
  7041. paw: {
  7042. height: math.unit(0.826, "feet"),
  7043. name: "Paw",
  7044. image: {
  7045. source: "./media/characters/berri/paw.svg"
  7046. }
  7047. },
  7048. },
  7049. [
  7050. {
  7051. name: "Normal",
  7052. height: math.unit(1.65, "meters")
  7053. },
  7054. {
  7055. name: "Macro",
  7056. height: math.unit(60, "m"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Megamacro",
  7061. height: math.unit(9.213, "km")
  7062. },
  7063. {
  7064. name: "Planet Eater",
  7065. height: math.unit(489, "megameters")
  7066. },
  7067. {
  7068. name: "Teramacro",
  7069. height: math.unit(2471635000000, "meters")
  7070. },
  7071. {
  7072. name: "Examacro",
  7073. height: math.unit(8.0624e+26, "meters")
  7074. }
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(1.72, "meters"),
  7082. weight: math.unit(68, "kg"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/lexi/front.svg"
  7086. }
  7087. }
  7088. },
  7089. [
  7090. {
  7091. name: "Very Smol",
  7092. height: math.unit(10, "mm")
  7093. },
  7094. {
  7095. name: "Micro",
  7096. height: math.unit(6.8, "cm"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(1.72, "m")
  7102. }
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(1.69, "meters"),
  7110. weight: math.unit(68, "kg"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/martin/front.svg",
  7114. extra: 596 / 581
  7115. }
  7116. }
  7117. },
  7118. [
  7119. {
  7120. name: "Micro",
  7121. height: math.unit(6.85, "cm"),
  7122. default: true
  7123. },
  7124. {
  7125. name: "Normal",
  7126. height: math.unit(1.69, "m")
  7127. }
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7132. {
  7133. front: {
  7134. height: math.unit(1.69, "meters"),
  7135. weight: math.unit(68, "kg"),
  7136. name: "Front",
  7137. image: {
  7138. source: "./media/characters/juno/front.svg"
  7139. }
  7140. }
  7141. },
  7142. [
  7143. {
  7144. name: "Micro",
  7145. height: math.unit(7, "cm")
  7146. },
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(1.89, "m")
  7150. },
  7151. {
  7152. name: "Macro",
  7153. height: math.unit(353, "meters"),
  7154. default: true
  7155. }
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(1.93, "meters"),
  7163. weight: math.unit(83, "kg"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/samantha/front.svg"
  7167. }
  7168. },
  7169. frontClothed: {
  7170. height: math.unit(1.93, "meters"),
  7171. weight: math.unit(83, "kg"),
  7172. name: "Front (Clothed)",
  7173. image: {
  7174. source: "./media/characters/samantha/front-clothed.svg"
  7175. }
  7176. },
  7177. back: {
  7178. height: math.unit(1.93, "meters"),
  7179. weight: math.unit(83, "kg"),
  7180. name: "Back",
  7181. image: {
  7182. source: "./media/characters/samantha/back.svg"
  7183. }
  7184. },
  7185. },
  7186. [
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(1.93, "m")
  7190. },
  7191. {
  7192. name: "Macro",
  7193. height: math.unit(74, "meters"),
  7194. default: true
  7195. },
  7196. {
  7197. name: "Macro+",
  7198. height: math.unit(223, "meters"),
  7199. },
  7200. {
  7201. name: "Megamacro",
  7202. height: math.unit(8381, "meters"),
  7203. },
  7204. {
  7205. name: "Megamacro+",
  7206. height: math.unit(12000, "kilometers")
  7207. },
  7208. ]
  7209. ))
  7210. characterMakers.push(() => makeCharacter(
  7211. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7212. {
  7213. front: {
  7214. height: math.unit(1.92, "meters"),
  7215. weight: math.unit(80, "kg"),
  7216. name: "Front",
  7217. image: {
  7218. source: "./media/characters/dr-clay/front.svg"
  7219. }
  7220. },
  7221. frontClothed: {
  7222. height: math.unit(1.92, "meters"),
  7223. weight: math.unit(80, "kg"),
  7224. name: "Front (Clothed)",
  7225. image: {
  7226. source: "./media/characters/dr-clay/front-clothed.svg"
  7227. }
  7228. }
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(1.92, "m")
  7234. },
  7235. {
  7236. name: "Macro",
  7237. height: math.unit(214, "meters"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Macro+",
  7242. height: math.unit(12.237, "meters"),
  7243. },
  7244. {
  7245. name: "Megamacro",
  7246. height: math.unit(557, "megameters"),
  7247. },
  7248. {
  7249. name: "Unimaginable",
  7250. height: math.unit(120e9, "lightyears")
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(2, "meters"),
  7259. weight: math.unit(80, "kg"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7263. }
  7264. }
  7265. },
  7266. [
  7267. {
  7268. name: "Teramacro",
  7269. height: math.unit(500000, "lightyears"),
  7270. default: true
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7276. {
  7277. crux: {
  7278. height: math.unit(2, "meters"),
  7279. weight: math.unit(150, "kg"),
  7280. name: "Crux",
  7281. image: {
  7282. source: "./media/characters/vemus/crux.svg",
  7283. extra: 1074/936,
  7284. bottom: 23/1097
  7285. }
  7286. },
  7287. skunkTanuki: {
  7288. height: math.unit(2, "meters"),
  7289. weight: math.unit(150, "kg"),
  7290. name: "Skunk-Tanuki",
  7291. image: {
  7292. source: "./media/characters/vemus/skunk-tanuki.svg",
  7293. extra: 926/893,
  7294. bottom: 20/946
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(4, "meters"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Big",
  7306. height: math.unit(8, "meters")
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(100, "meters")
  7311. },
  7312. {
  7313. name: "Macro+",
  7314. height: math.unit(1500, "meters")
  7315. },
  7316. {
  7317. name: "Stellar",
  7318. height: math.unit(14e8, "meters")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(2, "meters"),
  7327. weight: math.unit(70, "kg"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/beherit/front.svg",
  7331. extra: 1234/1109,
  7332. bottom: 55/1289
  7333. }
  7334. }
  7335. },
  7336. [
  7337. {
  7338. name: "Normal",
  7339. height: math.unit(6, "feet")
  7340. },
  7341. {
  7342. name: "Lorg",
  7343. height: math.unit(25, "feet"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Lorger",
  7348. height: math.unit(75, "feet")
  7349. },
  7350. {
  7351. name: "Macro",
  7352. height: math.unit(200, "meters")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(2, "meters"),
  7361. weight: math.unit(150, "kg"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/everett/front.svg",
  7365. extra: 1017/866,
  7366. bottom: 86/1103
  7367. }
  7368. },
  7369. paw: {
  7370. height: math.unit(2 / 3.6, "meters"),
  7371. name: "Paw",
  7372. image: {
  7373. source: "./media/characters/everett/paw.svg"
  7374. }
  7375. },
  7376. },
  7377. [
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(15, "feet"),
  7381. default: true
  7382. },
  7383. {
  7384. name: "Lorg",
  7385. height: math.unit(70, "feet"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Lorger",
  7390. height: math.unit(250, "feet")
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(500, "meters")
  7395. },
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7400. {
  7401. front: {
  7402. height: math.unit(2, "meters"),
  7403. weight: math.unit(86, "kg"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/rose/front.svg",
  7407. extra: 1785/1636,
  7408. bottom: 30/1815
  7409. },
  7410. form: "liom",
  7411. default: true
  7412. },
  7413. frontSporty: {
  7414. height: math.unit(2, "meters"),
  7415. weight: math.unit(86, "kg"),
  7416. name: "Front (Sporty)",
  7417. image: {
  7418. source: "./media/characters/rose/front-sporty.svg",
  7419. extra: 350/335,
  7420. bottom: 10/360
  7421. },
  7422. form: "liom"
  7423. },
  7424. frontAlt: {
  7425. height: math.unit(1.6, "meters"),
  7426. weight: math.unit(86, "kg"),
  7427. name: "Front (Alt)",
  7428. image: {
  7429. source: "./media/characters/rose/front-alt.svg",
  7430. extra: 299/283,
  7431. bottom: 3/302
  7432. },
  7433. form: "liom"
  7434. },
  7435. plush: {
  7436. height: math.unit(2, "meters"),
  7437. weight: math.unit(86/3, "kg"),
  7438. name: "Plush",
  7439. image: {
  7440. source: "./media/characters/rose/plush.svg",
  7441. extra: 361/337,
  7442. bottom: 11/372
  7443. },
  7444. form: "plush",
  7445. default: true
  7446. },
  7447. faeStanding: {
  7448. height: math.unit(10, "cm"),
  7449. weight: math.unit(10, "grams"),
  7450. name: "Standing",
  7451. image: {
  7452. source: "./media/characters/rose/fae-standing.svg",
  7453. extra: 1189/1060,
  7454. bottom: 27/1216
  7455. },
  7456. form: "fae",
  7457. default: true
  7458. },
  7459. faeSitting: {
  7460. height: math.unit(5, "cm"),
  7461. weight: math.unit(10, "grams"),
  7462. name: "Sitting",
  7463. image: {
  7464. source: "./media/characters/rose/fae-sitting.svg",
  7465. extra: 737/577,
  7466. bottom: 356/1093
  7467. },
  7468. form: "fae"
  7469. },
  7470. faePaw: {
  7471. height: math.unit(1.35, "cm"),
  7472. name: "Paw",
  7473. image: {
  7474. source: "./media/characters/rose/fae-paw.svg"
  7475. },
  7476. form: "fae"
  7477. },
  7478. },
  7479. [
  7480. {
  7481. name: "True Micro",
  7482. height: math.unit(9, "cm"),
  7483. form: "liom"
  7484. },
  7485. {
  7486. name: "Micro",
  7487. height: math.unit(16, "cm"),
  7488. form: "liom"
  7489. },
  7490. {
  7491. name: "Normal",
  7492. height: math.unit(1.85, "meters"),
  7493. default: true,
  7494. form: "liom"
  7495. },
  7496. {
  7497. name: "Mini-Macro",
  7498. height: math.unit(5, "meters"),
  7499. form: "liom"
  7500. },
  7501. {
  7502. name: "Macro",
  7503. height: math.unit(15, "meters"),
  7504. form: "liom"
  7505. },
  7506. {
  7507. name: "True Macro",
  7508. height: math.unit(40, "meters"),
  7509. form: "liom"
  7510. },
  7511. {
  7512. name: "City Scale",
  7513. height: math.unit(1, "km"),
  7514. form: "liom"
  7515. },
  7516. {
  7517. name: "Plushie",
  7518. height: math.unit(9, "cm"),
  7519. form: "plush",
  7520. default: true
  7521. },
  7522. {
  7523. name: "Fae",
  7524. height: math.unit(10, "cm"),
  7525. form: "fae",
  7526. default: true
  7527. },
  7528. ],
  7529. {
  7530. "liom": {
  7531. name: "Liom"
  7532. },
  7533. "plush": {
  7534. name: "Plush"
  7535. },
  7536. "fae": {
  7537. name: "Fae Fox",
  7538. default: true
  7539. }
  7540. }
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(2, "meters"),
  7547. weight: math.unit(350, "lbs"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/regal/front.svg"
  7551. }
  7552. },
  7553. back: {
  7554. height: math.unit(2, "meters"),
  7555. weight: math.unit(350, "lbs"),
  7556. name: "Back",
  7557. image: {
  7558. source: "./media/characters/regal/back.svg"
  7559. }
  7560. },
  7561. },
  7562. [
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(350, "feet"),
  7566. default: true
  7567. }
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(4 + 11 / 12, "feet"),
  7575. weight: math.unit(100, "lbs"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/opal/front.svg"
  7579. }
  7580. },
  7581. frontAlt: {
  7582. height: math.unit(4 + 11 / 12, "feet"),
  7583. weight: math.unit(100, "lbs"),
  7584. name: "Front (Alt)",
  7585. image: {
  7586. source: "./media/characters/opal/front-alt.svg"
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Small",
  7593. height: math.unit(4 + 11 / 12, "feet")
  7594. },
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(20, "feet"),
  7598. default: true
  7599. },
  7600. {
  7601. name: "Macro",
  7602. height: math.unit(120, "feet")
  7603. },
  7604. {
  7605. name: "Megamacro",
  7606. height: math.unit(80, "miles")
  7607. },
  7608. {
  7609. name: "True Size",
  7610. height: math.unit(100000, "lightyears")
  7611. },
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7616. {
  7617. front: {
  7618. height: math.unit(6, "feet"),
  7619. weight: math.unit(200, "lbs"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/vector-wuff/front.svg"
  7623. }
  7624. }
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(2.8, "meters")
  7630. },
  7631. {
  7632. name: "Macro",
  7633. height: math.unit(450, "meters"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Megamacro",
  7638. height: math.unit(15, "kilometers")
  7639. }
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(256, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/dannik/front.svg"
  7651. }
  7652. }
  7653. },
  7654. [
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(69.57, "meters"),
  7658. default: true
  7659. },
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(120, "lbs"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/azura-saharah/front.svg"
  7671. }
  7672. },
  7673. back: {
  7674. height: math.unit(6, "feet"),
  7675. weight: math.unit(120, "lbs"),
  7676. name: "Back",
  7677. image: {
  7678. source: "./media/characters/azura-saharah/back.svg"
  7679. }
  7680. },
  7681. },
  7682. [
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(100, "feet"),
  7686. default: true
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7692. {
  7693. side: {
  7694. height: math.unit(5 + 4 / 12, "feet"),
  7695. weight: math.unit(163, "lbs"),
  7696. name: "Side",
  7697. image: {
  7698. source: "./media/characters/kennedy/side.svg"
  7699. }
  7700. }
  7701. },
  7702. [
  7703. {
  7704. name: "Standard Doggo",
  7705. height: math.unit(5 + 4 / 12, "feet")
  7706. },
  7707. {
  7708. name: "Big Doggo",
  7709. height: math.unit(25 + 3 / 12, "feet"),
  7710. default: true
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(5 + 5/12, "feet"),
  7719. weight: math.unit(100, "lbs"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/odios-de-lunar/front.svg",
  7723. extra: 1468/1323,
  7724. bottom: 22/1490
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Micro",
  7731. height: math.unit(3, "inches")
  7732. },
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(5.5, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(100, "feet")
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7746. {
  7747. back: {
  7748. height: math.unit(6, "feet"),
  7749. weight: math.unit(220, "lbs"),
  7750. name: "Back",
  7751. image: {
  7752. source: "./media/characters/mandake/back.svg"
  7753. }
  7754. }
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(7, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(78, "feet")
  7765. },
  7766. {
  7767. name: "Macro+",
  7768. height: math.unit(300, "meters")
  7769. },
  7770. {
  7771. name: "Macro++",
  7772. height: math.unit(2400, "feet")
  7773. },
  7774. {
  7775. name: "Megamacro",
  7776. height: math.unit(5167, "meters")
  7777. },
  7778. {
  7779. name: "Gigamacro",
  7780. height: math.unit(41769, "miles")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(120, "lbs"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/yozey/front.svg"
  7793. }
  7794. },
  7795. frontAlt: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(120, "lbs"),
  7798. name: "Front (Alt)",
  7799. image: {
  7800. source: "./media/characters/yozey/front-alt.svg"
  7801. }
  7802. },
  7803. side: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(120, "lbs"),
  7806. name: "Side",
  7807. image: {
  7808. source: "./media/characters/yozey/side.svg"
  7809. }
  7810. },
  7811. },
  7812. [
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(3, "inches"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(6, "feet")
  7821. }
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(103, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/valeska-voss/front.svg"
  7833. }
  7834. }
  7835. },
  7836. [
  7837. {
  7838. name: "Mini-Sized Sub",
  7839. height: math.unit(3.1, "inches")
  7840. },
  7841. {
  7842. name: "Mid-Sized Sub",
  7843. height: math.unit(6.2, "inches")
  7844. },
  7845. {
  7846. name: "Full-Sized Sub",
  7847. height: math.unit(9.3, "inches")
  7848. },
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(5 + 2 / 12, "foot"),
  7852. default: true
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(6, "feet"),
  7861. weight: math.unit(160, "lbs"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/gene-zeta/front.svg",
  7865. extra: 3006 / 2826,
  7866. bottom: 182 / 3188
  7867. }
  7868. }
  7869. },
  7870. [
  7871. {
  7872. name: "Micro",
  7873. height: math.unit(6, "inches")
  7874. },
  7875. {
  7876. name: "Normal",
  7877. height: math.unit(5 + 11 / 12, "foot"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Macro",
  7882. height: math.unit(140, "feet")
  7883. },
  7884. {
  7885. name: "Supercharged",
  7886. height: math.unit(2500, "feet")
  7887. },
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(6, "feet"),
  7895. weight: math.unit(350, "lbs"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/razinox/front.svg",
  7899. extra: 1686 / 1548,
  7900. bottom: 28.2 / 1868
  7901. }
  7902. },
  7903. back: {
  7904. height: math.unit(6, "feet"),
  7905. weight: math.unit(350, "lbs"),
  7906. name: "Back",
  7907. image: {
  7908. source: "./media/characters/razinox/back.svg",
  7909. extra: 1660 / 1590,
  7910. bottom: 15 / 1665
  7911. }
  7912. },
  7913. },
  7914. [
  7915. {
  7916. name: "Normal",
  7917. height: math.unit(10 + 8 / 12, "foot")
  7918. },
  7919. {
  7920. name: "Minimacro",
  7921. height: math.unit(15, "foot")
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(60, "foot"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Megamacro",
  7930. height: math.unit(5, "miles")
  7931. },
  7932. {
  7933. name: "Gigamacro",
  7934. height: math.unit(6000, "miles")
  7935. },
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7940. {
  7941. front: {
  7942. height: math.unit(6, "feet"),
  7943. weight: math.unit(150, "lbs"),
  7944. name: "Front",
  7945. image: {
  7946. source: "./media/characters/cobalt/front.svg"
  7947. }
  7948. }
  7949. },
  7950. [
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(8 + 1 / 12, "foot")
  7954. },
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(111, "foot"),
  7958. default: true
  7959. },
  7960. {
  7961. name: "Supracosmic",
  7962. height: math.unit(1e42, "feet")
  7963. },
  7964. ]
  7965. ))
  7966. characterMakers.push(() => makeCharacter(
  7967. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7968. {
  7969. front: {
  7970. height: math.unit(5, "inches"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/amanda/front.svg",
  7974. extra: 926/791,
  7975. bottom: 38/964
  7976. }
  7977. },
  7978. back: {
  7979. height: math.unit(5, "inches"),
  7980. name: "Back",
  7981. image: {
  7982. source: "./media/characters/amanda/back.svg",
  7983. extra: 909/805,
  7984. bottom: 43/952
  7985. }
  7986. },
  7987. },
  7988. [
  7989. {
  7990. name: "Micro",
  7991. height: math.unit(5, "inches"),
  7992. default: true
  7993. },
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7998. {
  7999. front: {
  8000. height: math.unit(2.75, "meters"),
  8001. weight: math.unit(1200, "lb"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/teal/front.svg",
  8005. extra: 2463 / 2320,
  8006. bottom: 166 / 2629
  8007. }
  8008. },
  8009. back: {
  8010. height: math.unit(2.75, "meters"),
  8011. weight: math.unit(1200, "lb"),
  8012. name: "Back",
  8013. image: {
  8014. source: "./media/characters/teal/back.svg",
  8015. extra: 2580 / 2489,
  8016. bottom: 151 / 2731
  8017. }
  8018. },
  8019. sitting: {
  8020. height: math.unit(1.9, "meters"),
  8021. weight: math.unit(1200, "lb"),
  8022. name: "Sitting",
  8023. image: {
  8024. source: "./media/characters/teal/sitting.svg",
  8025. extra: 623 / 590,
  8026. bottom: 121 / 744
  8027. }
  8028. },
  8029. standing: {
  8030. height: math.unit(2.75, "meters"),
  8031. weight: math.unit(1200, "lb"),
  8032. name: "Standing",
  8033. image: {
  8034. source: "./media/characters/teal/standing.svg",
  8035. extra: 923 / 893,
  8036. bottom: 60 / 983
  8037. }
  8038. },
  8039. stretching: {
  8040. height: math.unit(3.65, "meters"),
  8041. weight: math.unit(1200, "lb"),
  8042. name: "Stretching",
  8043. image: {
  8044. source: "./media/characters/teal/stretching.svg",
  8045. extra: 1276 / 1244,
  8046. bottom: 0 / 1276
  8047. }
  8048. },
  8049. legged: {
  8050. height: math.unit(1.3, "meters"),
  8051. weight: math.unit(100, "lb"),
  8052. name: "Legged",
  8053. image: {
  8054. source: "./media/characters/teal/legged.svg",
  8055. extra: 462 / 437,
  8056. bottom: 24 / 486
  8057. }
  8058. },
  8059. naga: {
  8060. height: math.unit(5.4, "meters"),
  8061. weight: math.unit(4000, "lb"),
  8062. name: "Naga",
  8063. image: {
  8064. source: "./media/characters/teal/naga.svg",
  8065. extra: 1902 / 1858,
  8066. bottom: 0 / 1902
  8067. }
  8068. },
  8069. hand: {
  8070. height: math.unit(0.52, "meters"),
  8071. name: "Hand",
  8072. image: {
  8073. source: "./media/characters/teal/hand.svg"
  8074. }
  8075. },
  8076. maw: {
  8077. height: math.unit(0.43, "meters"),
  8078. name: "Maw",
  8079. image: {
  8080. source: "./media/characters/teal/maw.svg"
  8081. }
  8082. },
  8083. slit: {
  8084. height: math.unit(0.25, "meters"),
  8085. name: "Slit",
  8086. image: {
  8087. source: "./media/characters/teal/slit.svg"
  8088. }
  8089. },
  8090. },
  8091. [
  8092. {
  8093. name: "Normal",
  8094. height: math.unit(2.75, "meters"),
  8095. default: true
  8096. },
  8097. {
  8098. name: "Macro",
  8099. height: math.unit(300, "feet")
  8100. },
  8101. {
  8102. name: "Macro+",
  8103. height: math.unit(2000, "feet")
  8104. },
  8105. ]
  8106. ))
  8107. characterMakers.push(() => makeCharacter(
  8108. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8109. {
  8110. frontCat: {
  8111. height: math.unit(6, "feet"),
  8112. weight: math.unit(180, "lbs"),
  8113. name: "Front (Cat)",
  8114. image: {
  8115. source: "./media/characters/ravin-amulet/front-cat.svg"
  8116. }
  8117. },
  8118. frontCatAlt: {
  8119. height: math.unit(6, "feet"),
  8120. weight: math.unit(180, "lbs"),
  8121. name: "Front (Alt, Cat)",
  8122. image: {
  8123. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8124. }
  8125. },
  8126. frontWerewolf: {
  8127. height: math.unit(6 * 1.2, "feet"),
  8128. weight: math.unit(225, "lbs"),
  8129. name: "Front (Werewolf)",
  8130. image: {
  8131. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8132. }
  8133. },
  8134. backWerewolf: {
  8135. height: math.unit(6 * 1.2, "feet"),
  8136. weight: math.unit(225, "lbs"),
  8137. name: "Back (Werewolf)",
  8138. image: {
  8139. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Nano",
  8146. height: math.unit(1, "micrometer")
  8147. },
  8148. {
  8149. name: "Micro",
  8150. height: math.unit(1, "inch")
  8151. },
  8152. {
  8153. name: "Normal",
  8154. height: math.unit(6, "feet"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Macro",
  8159. height: math.unit(60, "feet")
  8160. }
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8165. {
  8166. front: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(165, "lbs"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/fluoresce/front.svg"
  8172. }
  8173. }
  8174. },
  8175. [
  8176. {
  8177. name: "Micro",
  8178. height: math.unit(6, "cm")
  8179. },
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(5 + 7 / 12, "feet"),
  8183. default: true
  8184. },
  8185. {
  8186. name: "Macro",
  8187. height: math.unit(56, "feet")
  8188. },
  8189. {
  8190. name: "Megamacro",
  8191. height: math.unit(1.9, "miles")
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(9 + 6 / 12, "feet"),
  8200. weight: math.unit(523, "lbs"),
  8201. name: "Side",
  8202. image: {
  8203. source: "./media/characters/aurora/side.svg"
  8204. }
  8205. }
  8206. },
  8207. [
  8208. {
  8209. name: "Normal",
  8210. height: math.unit(9 + 6 / 12, "feet")
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(96, "feet"),
  8215. default: true
  8216. },
  8217. {
  8218. name: "Macro+",
  8219. height: math.unit(243, "feet")
  8220. },
  8221. ]
  8222. ))
  8223. characterMakers.push(() => makeCharacter(
  8224. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8225. {
  8226. front: {
  8227. height: math.unit(194, "cm"),
  8228. weight: math.unit(90, "kg"),
  8229. name: "Front",
  8230. image: {
  8231. source: "./media/characters/ranek/front.svg",
  8232. extra: 1862/1791,
  8233. bottom: 80/1942
  8234. }
  8235. },
  8236. back: {
  8237. height: math.unit(194, "cm"),
  8238. weight: math.unit(90, "kg"),
  8239. name: "Back",
  8240. image: {
  8241. source: "./media/characters/ranek/back.svg",
  8242. extra: 1853/1787,
  8243. bottom: 74/1927
  8244. }
  8245. },
  8246. feral: {
  8247. height: math.unit(30, "cm"),
  8248. weight: math.unit(1.6, "lbs"),
  8249. name: "Feral",
  8250. image: {
  8251. source: "./media/characters/ranek/feral.svg",
  8252. extra: 990/631,
  8253. bottom: 29/1019
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Normal",
  8260. height: math.unit(194, "cm"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Macro",
  8265. height: math.unit(100, "meters")
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(5 + 6 / 12, "feet"),
  8274. weight: math.unit(153, "lbs"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/andrew-cooper/front.svg"
  8278. }
  8279. },
  8280. },
  8281. [
  8282. {
  8283. name: "Nano",
  8284. height: math.unit(1, "mm")
  8285. },
  8286. {
  8287. name: "Micro",
  8288. height: math.unit(2, "inches")
  8289. },
  8290. {
  8291. name: "Normal",
  8292. height: math.unit(5 + 6 / 12, "feet"),
  8293. default: true
  8294. }
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8299. {
  8300. front: {
  8301. height: math.unit(6, "feet"),
  8302. weight: math.unit(180, "lbs"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/akane-sato/front.svg",
  8306. extra: 1219 / 1140
  8307. }
  8308. },
  8309. back: {
  8310. height: math.unit(6, "feet"),
  8311. weight: math.unit(180, "lbs"),
  8312. name: "Back",
  8313. image: {
  8314. source: "./media/characters/akane-sato/back.svg",
  8315. extra: 1219 / 1170
  8316. }
  8317. },
  8318. },
  8319. [
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(2.5, "meters")
  8323. },
  8324. {
  8325. name: "Macro",
  8326. height: math.unit(250, "meters"),
  8327. default: true
  8328. },
  8329. {
  8330. name: "Megamacro",
  8331. height: math.unit(25, "km")
  8332. },
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(6, "feet"),
  8340. weight: math.unit(65, "kg"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/rook/front.svg",
  8344. extra: 960 / 950
  8345. }
  8346. }
  8347. },
  8348. [
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(8.8, "feet")
  8352. },
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(88, "feet"),
  8356. default: true
  8357. },
  8358. {
  8359. name: "Megamacro",
  8360. height: math.unit(8, "miles")
  8361. },
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8366. {
  8367. front: {
  8368. height: math.unit(12 + 2 / 12, "feet"),
  8369. weight: math.unit(808, "lbs"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/prodigy/front.svg"
  8373. }
  8374. }
  8375. },
  8376. [
  8377. {
  8378. name: "Normal",
  8379. height: math.unit(12 + 2 / 12, "feet"),
  8380. default: true
  8381. },
  8382. {
  8383. name: "Macro",
  8384. height: math.unit(143, "feet")
  8385. },
  8386. {
  8387. name: "Macro+",
  8388. height: math.unit(400, "feet")
  8389. },
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(225, "lbs"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/daniel/front.svg"
  8401. }
  8402. },
  8403. leaning: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(225, "lbs"),
  8406. name: "Leaning",
  8407. image: {
  8408. source: "./media/characters/daniel/leaning.svg"
  8409. }
  8410. },
  8411. },
  8412. [
  8413. {
  8414. name: "Macro",
  8415. height: math.unit(1000, "feet"),
  8416. default: true
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8422. {
  8423. front: {
  8424. height: math.unit(6, "feet"),
  8425. weight: math.unit(88, "lbs"),
  8426. name: "Front",
  8427. image: {
  8428. source: "./media/characters/chiros/front.svg",
  8429. extra: 306 / 226
  8430. }
  8431. },
  8432. side: {
  8433. height: math.unit(6, "feet"),
  8434. weight: math.unit(88, "lbs"),
  8435. name: "Side",
  8436. image: {
  8437. source: "./media/characters/chiros/side.svg",
  8438. extra: 306 / 226
  8439. }
  8440. },
  8441. },
  8442. [
  8443. {
  8444. name: "Normal",
  8445. height: math.unit(6, "cm"),
  8446. default: true
  8447. },
  8448. ]
  8449. ))
  8450. characterMakers.push(() => makeCharacter(
  8451. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8452. {
  8453. front: {
  8454. height: math.unit(6, "feet"),
  8455. weight: math.unit(100, "lbs"),
  8456. name: "Front",
  8457. image: {
  8458. source: "./media/characters/selka/front.svg",
  8459. extra: 947 / 887
  8460. }
  8461. }
  8462. },
  8463. [
  8464. {
  8465. name: "Normal",
  8466. height: math.unit(5, "cm"),
  8467. default: true
  8468. },
  8469. ]
  8470. ))
  8471. characterMakers.push(() => makeCharacter(
  8472. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8473. {
  8474. front: {
  8475. height: math.unit(8 + 3 / 12, "feet"),
  8476. weight: math.unit(424, "lbs"),
  8477. name: "Front",
  8478. image: {
  8479. source: "./media/characters/verin/front.svg",
  8480. extra: 1845 / 1550
  8481. }
  8482. },
  8483. frontArmored: {
  8484. height: math.unit(8 + 3 / 12, "feet"),
  8485. weight: math.unit(424, "lbs"),
  8486. name: "Front (Armored)",
  8487. image: {
  8488. source: "./media/characters/verin/front-armor.svg",
  8489. extra: 1845 / 1550,
  8490. bottom: 0.01
  8491. }
  8492. },
  8493. back: {
  8494. height: math.unit(8 + 3 / 12, "feet"),
  8495. weight: math.unit(424, "lbs"),
  8496. name: "Back",
  8497. image: {
  8498. source: "./media/characters/verin/back.svg",
  8499. bottom: 0.1,
  8500. extra: 1
  8501. }
  8502. },
  8503. foot: {
  8504. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8505. name: "Foot",
  8506. image: {
  8507. source: "./media/characters/verin/foot.svg"
  8508. }
  8509. },
  8510. },
  8511. [
  8512. {
  8513. name: "Normal",
  8514. height: math.unit(8 + 3 / 12, "feet")
  8515. },
  8516. {
  8517. name: "Minimacro",
  8518. height: math.unit(21, "feet"),
  8519. default: true
  8520. },
  8521. {
  8522. name: "Macro",
  8523. height: math.unit(626, "feet")
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8529. {
  8530. front: {
  8531. height: math.unit(2.718, "meters"),
  8532. weight: math.unit(150, "lbs"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/sovrim-terraquian/front.svg",
  8536. extra: 1752/1689,
  8537. bottom: 36/1788
  8538. }
  8539. },
  8540. back: {
  8541. height: math.unit(2.718, "meters"),
  8542. weight: math.unit(150, "lbs"),
  8543. name: "Back",
  8544. image: {
  8545. source: "./media/characters/sovrim-terraquian/back.svg",
  8546. extra: 1698/1657,
  8547. bottom: 58/1756
  8548. }
  8549. },
  8550. tongue: {
  8551. height: math.unit(2.865, "feet"),
  8552. name: "Tongue",
  8553. image: {
  8554. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8555. }
  8556. },
  8557. hand: {
  8558. height: math.unit(1.61, "feet"),
  8559. name: "Hand",
  8560. image: {
  8561. source: "./media/characters/sovrim-terraquian/hand.svg"
  8562. }
  8563. },
  8564. foot: {
  8565. height: math.unit(1.05, "feet"),
  8566. name: "Foot",
  8567. image: {
  8568. source: "./media/characters/sovrim-terraquian/foot.svg"
  8569. }
  8570. },
  8571. footAlt: {
  8572. height: math.unit(0.88, "feet"),
  8573. name: "Foot (Alt)",
  8574. image: {
  8575. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Micro",
  8582. height: math.unit(2, "inches")
  8583. },
  8584. {
  8585. name: "Small",
  8586. height: math.unit(1, "meter")
  8587. },
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(Math.E, "meters"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(20, "meters")
  8596. },
  8597. {
  8598. name: "Macro+",
  8599. height: math.unit(400, "meters")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8605. {
  8606. front: {
  8607. height: math.unit(7, "feet"),
  8608. weight: math.unit(489, "lbs"),
  8609. name: "Front",
  8610. image: {
  8611. source: "./media/characters/reece-silvermane/front.svg",
  8612. bottom: 0.02,
  8613. extra: 1
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(1.5, "miles"),
  8621. default: true
  8622. },
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8627. {
  8628. front: {
  8629. height: math.unit(6, "feet"),
  8630. weight: math.unit(78, "kg"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/kane/front.svg",
  8634. extra: 978 / 899
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(2.1, "m"),
  8642. },
  8643. {
  8644. name: "Macro",
  8645. height: math.unit(1, "km"),
  8646. default: true
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(6, "feet"),
  8655. weight: math.unit(200, "kg"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/tegon/front.svg",
  8659. bottom: 0.01,
  8660. extra: 1
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(1, "inch")
  8668. },
  8669. {
  8670. name: "Normal",
  8671. height: math.unit(6 + 3 / 12, "feet"),
  8672. default: true
  8673. },
  8674. {
  8675. name: "Macro",
  8676. height: math.unit(300, "feet")
  8677. },
  8678. {
  8679. name: "Megamacro",
  8680. height: math.unit(69, "miles")
  8681. },
  8682. ]
  8683. ))
  8684. characterMakers.push(() => makeCharacter(
  8685. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8686. {
  8687. side: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(2304, "lbs"),
  8690. name: "Side",
  8691. image: {
  8692. source: "./media/characters/arcturax/side.svg",
  8693. extra: 790 / 376,
  8694. bottom: 0.01
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Micro",
  8701. height: math.unit(2, "inch")
  8702. },
  8703. {
  8704. name: "Normal",
  8705. height: math.unit(6, "feet")
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(39, "feet"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Megamacro",
  8714. height: math.unit(7, "miles")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(6, "feet"),
  8723. weight: math.unit(50, "lbs"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/sentri/front.svg",
  8727. extra: 1750 / 1570,
  8728. bottom: 0.025
  8729. }
  8730. },
  8731. frontAlt: {
  8732. height: math.unit(6, "feet"),
  8733. weight: math.unit(50, "lbs"),
  8734. name: "Front (Alt)",
  8735. image: {
  8736. source: "./media/characters/sentri/front-alt.svg",
  8737. extra: 1750 / 1570,
  8738. bottom: 0.025
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(15, "feet"),
  8746. default: true
  8747. },
  8748. {
  8749. name: "Macro",
  8750. height: math.unit(2500, "feet")
  8751. }
  8752. ]
  8753. ))
  8754. characterMakers.push(() => makeCharacter(
  8755. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8756. {
  8757. front: {
  8758. height: math.unit(5 + 8 / 12, "feet"),
  8759. weight: math.unit(130, "lbs"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/corvin/front.svg",
  8763. extra: 1803 / 1629
  8764. }
  8765. },
  8766. frontShirt: {
  8767. height: math.unit(5 + 8 / 12, "feet"),
  8768. weight: math.unit(130, "lbs"),
  8769. name: "Front (Shirt)",
  8770. image: {
  8771. source: "./media/characters/corvin/front-shirt.svg",
  8772. extra: 1803 / 1629
  8773. }
  8774. },
  8775. frontPoncho: {
  8776. height: math.unit(5 + 8 / 12, "feet"),
  8777. weight: math.unit(130, "lbs"),
  8778. name: "Front (Poncho)",
  8779. image: {
  8780. source: "./media/characters/corvin/front-poncho.svg",
  8781. extra: 1803 / 1629
  8782. }
  8783. },
  8784. side: {
  8785. height: math.unit(5 + 8 / 12, "feet"),
  8786. weight: math.unit(130, "lbs"),
  8787. name: "Side",
  8788. image: {
  8789. source: "./media/characters/corvin/side.svg",
  8790. extra: 1012 / 945
  8791. }
  8792. },
  8793. back: {
  8794. height: math.unit(5 + 8 / 12, "feet"),
  8795. weight: math.unit(130, "lbs"),
  8796. name: "Back",
  8797. image: {
  8798. source: "./media/characters/corvin/back.svg",
  8799. extra: 1803 / 1629
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Micro",
  8806. height: math.unit(3, "inches")
  8807. },
  8808. {
  8809. name: "Normal",
  8810. height: math.unit(5 + 8 / 12, "feet")
  8811. },
  8812. {
  8813. name: "Macro",
  8814. height: math.unit(300, "feet"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Megamacro",
  8819. height: math.unit(500, "miles")
  8820. }
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8825. {
  8826. front: {
  8827. height: math.unit(6, "feet"),
  8828. weight: math.unit(135, "lbs"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/q/front.svg",
  8832. extra: 854 / 752,
  8833. bottom: 0.005
  8834. }
  8835. },
  8836. back: {
  8837. height: math.unit(6, "feet"),
  8838. weight: math.unit(130, "lbs"),
  8839. name: "Back",
  8840. image: {
  8841. source: "./media/characters/q/back.svg",
  8842. extra: 854 / 752
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Macro",
  8849. height: math.unit(90, "feet"),
  8850. default: true
  8851. },
  8852. {
  8853. name: "Extra Macro",
  8854. height: math.unit(300, "feet"),
  8855. },
  8856. {
  8857. name: "BIG WALF",
  8858. height: math.unit(750, "feet"),
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(3, "feet"),
  8867. weight: math.unit(28, "lbs"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/citrine/front.svg"
  8871. }
  8872. }
  8873. },
  8874. [
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(3, "feet"),
  8878. default: true
  8879. }
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8884. {
  8885. front: {
  8886. height: math.unit(14, "feet"),
  8887. weight: math.unit(1450, "kg"),
  8888. preyCapacity: math.unit(15, "people"),
  8889. name: "Front",
  8890. image: {
  8891. source: "./media/characters/aura-starwind/front.svg",
  8892. extra: 1440/1327,
  8893. bottom: 11/1451
  8894. }
  8895. },
  8896. side: {
  8897. height: math.unit(14, "feet"),
  8898. weight: math.unit(1450, "kg"),
  8899. preyCapacity: math.unit(15, "people"),
  8900. name: "Side",
  8901. image: {
  8902. source: "./media/characters/aura-starwind/side.svg",
  8903. extra: 1654 / 1497
  8904. }
  8905. },
  8906. taur: {
  8907. height: math.unit(18, "feet"),
  8908. weight: math.unit(5500, "kg"),
  8909. preyCapacity: math.unit(50, "people"),
  8910. name: "Taur",
  8911. image: {
  8912. source: "./media/characters/aura-starwind/taur.svg",
  8913. extra: 1760 / 1650
  8914. }
  8915. },
  8916. feral: {
  8917. height: math.unit(46, "feet"),
  8918. weight: math.unit(25000, "kg"),
  8919. preyCapacity: math.unit(120, "people"),
  8920. name: "Feral",
  8921. image: {
  8922. source: "./media/characters/aura-starwind/feral.svg"
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Normal",
  8929. height: math.unit(14, "feet"),
  8930. default: true
  8931. },
  8932. {
  8933. name: "Macro",
  8934. height: math.unit(50, "meters")
  8935. },
  8936. {
  8937. name: "Megamacro",
  8938. height: math.unit(5000, "meters")
  8939. },
  8940. {
  8941. name: "Gigamacro",
  8942. height: math.unit(100000, "kilometers")
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(2 + 7 / 12, "feet"),
  8951. weight: math.unit(32, "lbs"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/rivet/front.svg",
  8955. extra: 1716 / 1658,
  8956. bottom: 0.03
  8957. }
  8958. },
  8959. foot: {
  8960. height: math.unit(0.551, "feet"),
  8961. name: "Rivet's Foot",
  8962. image: {
  8963. source: "./media/characters/rivet/foot.svg"
  8964. },
  8965. rename: true
  8966. }
  8967. },
  8968. [
  8969. {
  8970. name: "Micro",
  8971. height: math.unit(1.5, "inches"),
  8972. },
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(2 + 7 / 12, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(85, "feet")
  8981. },
  8982. {
  8983. name: "Megamacro",
  8984. height: math.unit(2.2, "km")
  8985. }
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(5 + 9 / 12, "feet"),
  8993. weight: math.unit(150, "lbs"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/coffee/front.svg",
  8997. extra: 3666 / 3032,
  8998. bottom: 0.04
  8999. }
  9000. },
  9001. foot: {
  9002. height: math.unit(1.29, "feet"),
  9003. name: "Foot",
  9004. image: {
  9005. source: "./media/characters/coffee/foot.svg"
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Micro",
  9012. height: math.unit(2, "inches"),
  9013. },
  9014. {
  9015. name: "Normal",
  9016. height: math.unit(5 + 9 / 12, "feet"),
  9017. default: true
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(800, "feet")
  9022. },
  9023. {
  9024. name: "Megamacro",
  9025. height: math.unit(25, "miles")
  9026. }
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(200, "lbs"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/chari-gal/front.svg",
  9038. extra: 1568 / 1385,
  9039. bottom: 0.047
  9040. }
  9041. },
  9042. gigantamax: {
  9043. height: math.unit(6 * 16, "feet"),
  9044. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9045. name: "Gigantamax",
  9046. image: {
  9047. source: "./media/characters/chari-gal/gigantamax.svg",
  9048. extra: 1124 / 888,
  9049. bottom: 0.03
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(5 + 7 / 12, "feet")
  9057. },
  9058. {
  9059. name: "Macro",
  9060. height: math.unit(200, "feet"),
  9061. default: true
  9062. }
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9067. {
  9068. front: {
  9069. height: math.unit(6, "feet"),
  9070. weight: math.unit(150, "lbs"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/nova/front.svg",
  9074. extra: 5000 / 4722,
  9075. bottom: 0.02
  9076. }
  9077. }
  9078. },
  9079. [
  9080. {
  9081. name: "Micro-",
  9082. height: math.unit(0.8, "inches")
  9083. },
  9084. {
  9085. name: "Micro",
  9086. height: math.unit(2, "inches"),
  9087. default: true
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(3 + 1 / 12, "feet"),
  9096. weight: math.unit(21.7, "lbs"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/argent/front.svg",
  9100. extra: 1471 / 1331,
  9101. bottom: 100.8 / 1575.5
  9102. }
  9103. }
  9104. },
  9105. [
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(2, "inches")
  9109. },
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(3 + 1 / 12, "feet"),
  9113. default: true
  9114. },
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(120, "feet")
  9118. },
  9119. ]
  9120. ))
  9121. characterMakers.push(() => makeCharacter(
  9122. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9123. {
  9124. lamp: {
  9125. height: math.unit(7 * 1559 / 989, "feet"),
  9126. name: "Magic Lamp",
  9127. image: {
  9128. source: "./media/characters/mira-al-cul/lamp.svg",
  9129. extra: 1617 / 1559
  9130. }
  9131. },
  9132. front: {
  9133. height: math.unit(7, "feet"),
  9134. name: "Front",
  9135. image: {
  9136. source: "./media/characters/mira-al-cul/front.svg",
  9137. extra: 1044 / 990
  9138. }
  9139. },
  9140. },
  9141. [
  9142. {
  9143. name: "Heavily Restricted",
  9144. height: math.unit(7 * 1559 / 989, "feet")
  9145. },
  9146. {
  9147. name: "Freshly Freed",
  9148. height: math.unit(50 * 1559 / 989, "feet")
  9149. },
  9150. {
  9151. name: "World Encompassing",
  9152. height: math.unit(10000 * 1559 / 989, "miles")
  9153. },
  9154. {
  9155. name: "Galactic",
  9156. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9157. },
  9158. {
  9159. name: "Palmed Universe",
  9160. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "Multiversal Matriarch",
  9165. height: math.unit(8.87e10, "yottameters")
  9166. },
  9167. {
  9168. name: "Void Mother",
  9169. height: math.unit(3.14e110, "yottaparsecs")
  9170. },
  9171. {
  9172. name: "Toying with Transcendence",
  9173. height: math.unit(1e307, "meters")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9179. {
  9180. front: {
  9181. height: math.unit(17 + 1 / 12, "feet"),
  9182. weight: math.unit(476.2 * 5, "lbs"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/kuro-shi-uchū/front.svg",
  9186. extra: 2329 / 1835,
  9187. bottom: 0.02
  9188. }
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Micro",
  9194. height: math.unit(2, "inches")
  9195. },
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(12, "meters")
  9199. },
  9200. {
  9201. name: "Planetary",
  9202. height: math.unit(0.00929, "AU"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Universal",
  9207. height: math.unit(20, "gigaparsecs")
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(5 + 2 / 12, "feet"),
  9216. weight: math.unit(120, "lbs"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/katherine/front.svg",
  9220. extra: 2075 / 1969
  9221. }
  9222. },
  9223. dress: {
  9224. height: math.unit(5 + 2 / 12, "feet"),
  9225. weight: math.unit(120, "lbs"),
  9226. name: "Dress",
  9227. image: {
  9228. source: "./media/characters/katherine/dress.svg",
  9229. extra: 2258 / 2064
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Micro",
  9236. height: math.unit(1, "inches"),
  9237. default: true
  9238. },
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(5 + 2 / 12, "feet")
  9242. },
  9243. {
  9244. name: "Macro",
  9245. height: math.unit(100, "meters")
  9246. },
  9247. {
  9248. name: "Megamacro",
  9249. height: math.unit(80, "miles")
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9255. {
  9256. front: {
  9257. height: math.unit(7 + 8 / 12, "feet"),
  9258. weight: math.unit(250, "lbs"),
  9259. name: "Front",
  9260. image: {
  9261. source: "./media/characters/yevis/front.svg",
  9262. extra: 1938 / 1755
  9263. }
  9264. }
  9265. },
  9266. [
  9267. {
  9268. name: "Mortal",
  9269. height: math.unit(7 + 8 / 12, "feet")
  9270. },
  9271. {
  9272. name: "Battle",
  9273. height: math.unit(25 + 11 / 12, "feet")
  9274. },
  9275. {
  9276. name: "Wrath",
  9277. height: math.unit(1654 + 11 / 12, "feet")
  9278. },
  9279. {
  9280. name: "Planet Destroyer",
  9281. height: math.unit(12000, "miles")
  9282. },
  9283. {
  9284. name: "Galaxy Conqueror",
  9285. height: math.unit(1.45, "zettameters"),
  9286. default: true
  9287. },
  9288. {
  9289. name: "Universal War",
  9290. height: math.unit(184, "gigaparsecs")
  9291. },
  9292. {
  9293. name: "Eternity War",
  9294. height: math.unit(1.98e55, "yottaparsecs")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(5 + 8 / 12, "feet"),
  9303. weight: math.unit(63, "kg"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/xavier/front.svg",
  9307. extra: 944 / 883
  9308. }
  9309. },
  9310. frontStretch: {
  9311. height: math.unit(5 + 8 / 12, "feet"),
  9312. weight: math.unit(63, "kg"),
  9313. name: "Stretching",
  9314. image: {
  9315. source: "./media/characters/xavier/front-stretch.svg",
  9316. extra: 962 / 820
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(5 + 8 / 12, "feet")
  9324. },
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(100, "meters"),
  9328. default: true
  9329. },
  9330. {
  9331. name: "McLargeHuge",
  9332. height: math.unit(10, "miles")
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(5 + 5 / 12, "feet"),
  9341. weight: math.unit(150, "lb"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/joshii/front.svg",
  9345. extra: 765 / 653,
  9346. bottom: 51 / 816
  9347. }
  9348. },
  9349. foot: {
  9350. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9351. name: "Foot",
  9352. image: {
  9353. source: "./media/characters/joshii/foot.svg"
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Micro",
  9360. height: math.unit(2, "inches"),
  9361. default: true
  9362. },
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(5 + 5 / 12, "feet")
  9366. },
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(785, "feet")
  9370. },
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(24.5, "miles")
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(6, "feet"),
  9382. weight: math.unit(150, "lb"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/goddess-elizabeth/front.svg",
  9386. extra: 1800 / 1525,
  9387. bottom: 0.005
  9388. }
  9389. },
  9390. foot: {
  9391. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9392. name: "Foot",
  9393. image: {
  9394. source: "./media/characters/goddess-elizabeth/foot.svg"
  9395. }
  9396. },
  9397. mouth: {
  9398. height: math.unit(6, "feet"),
  9399. name: "Mouth",
  9400. image: {
  9401. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Micro",
  9408. height: math.unit(12, "feet")
  9409. },
  9410. {
  9411. name: "Normal",
  9412. height: math.unit(80, "miles"),
  9413. default: true
  9414. },
  9415. {
  9416. name: "Macro",
  9417. height: math.unit(15000, "parsecs")
  9418. },
  9419. ]
  9420. ))
  9421. characterMakers.push(() => makeCharacter(
  9422. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9423. {
  9424. front: {
  9425. height: math.unit(5 + 9 / 12, "feet"),
  9426. weight: math.unit(144, "lb"),
  9427. name: "Front",
  9428. image: {
  9429. source: "./media/characters/kara/front.svg"
  9430. }
  9431. },
  9432. feet: {
  9433. height: math.unit(6 / 6.765, "feet"),
  9434. name: "Kara's Feet",
  9435. rename: true,
  9436. image: {
  9437. source: "./media/characters/kara/feet.svg"
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Normal",
  9444. height: math.unit(5 + 9 / 12, "feet")
  9445. },
  9446. {
  9447. name: "Macro",
  9448. height: math.unit(174, "feet"),
  9449. default: true
  9450. },
  9451. ]
  9452. ))
  9453. characterMakers.push(() => makeCharacter(
  9454. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9455. {
  9456. front: {
  9457. height: math.unit(18, "feet"),
  9458. weight: math.unit(4050, "lb"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/tyrone/front.svg",
  9462. extra: 2405 / 2270,
  9463. bottom: 182 / 2587
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(18, "feet"),
  9471. default: true
  9472. },
  9473. {
  9474. name: "Macro",
  9475. height: math.unit(300, "feet")
  9476. },
  9477. {
  9478. name: "Megamacro",
  9479. height: math.unit(15, "km")
  9480. },
  9481. {
  9482. name: "Gigamacro",
  9483. height: math.unit(500, "km")
  9484. },
  9485. {
  9486. name: "Teramacro",
  9487. height: math.unit(0.5, "gigameters")
  9488. },
  9489. {
  9490. name: "Omnimacro",
  9491. height: math.unit(1e252, "yottauniverse")
  9492. },
  9493. ]
  9494. ))
  9495. characterMakers.push(() => makeCharacter(
  9496. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9497. {
  9498. front: {
  9499. height: math.unit(7 + 8 / 12, "feet"),
  9500. weight: math.unit(120, "lb"),
  9501. name: "Front",
  9502. image: {
  9503. source: "./media/characters/danny/front.svg",
  9504. extra: 1490 / 1350
  9505. }
  9506. },
  9507. back: {
  9508. height: math.unit(7 + 8 / 12, "feet"),
  9509. weight: math.unit(120, "lb"),
  9510. name: "Back",
  9511. image: {
  9512. source: "./media/characters/danny/back.svg",
  9513. extra: 1490 / 1350
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(7 + 8 / 12, "feet"),
  9521. default: true
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(3.5, "inches"),
  9530. weight: math.unit(19, "grams"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/mallow/front.svg",
  9534. extra: 471 / 431
  9535. }
  9536. },
  9537. back: {
  9538. height: math.unit(3.5, "inches"),
  9539. weight: math.unit(19, "grams"),
  9540. name: "Back",
  9541. image: {
  9542. source: "./media/characters/mallow/back.svg",
  9543. extra: 471 / 431
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(3.5, "inches"),
  9551. default: true
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(9, "feet"),
  9560. weight: math.unit(230, "kg"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/starry-aqua/front.svg"
  9564. }
  9565. },
  9566. back: {
  9567. height: math.unit(9, "feet"),
  9568. weight: math.unit(230, "kg"),
  9569. name: "Back",
  9570. image: {
  9571. source: "./media/characters/starry-aqua/back.svg"
  9572. }
  9573. },
  9574. hand: {
  9575. height: math.unit(9 * 0.1168, "feet"),
  9576. name: "Hand",
  9577. image: {
  9578. source: "./media/characters/starry-aqua/hand.svg"
  9579. }
  9580. },
  9581. foot: {
  9582. height: math.unit(9 * 0.18, "feet"),
  9583. name: "Foot",
  9584. image: {
  9585. source: "./media/characters/starry-aqua/foot.svg"
  9586. }
  9587. }
  9588. },
  9589. [
  9590. {
  9591. name: "Micro",
  9592. height: math.unit(3, "inches")
  9593. },
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(9, "feet")
  9597. },
  9598. {
  9599. name: "Macro",
  9600. height: math.unit(300, "feet"),
  9601. default: true
  9602. },
  9603. {
  9604. name: "Megamacro",
  9605. height: math.unit(3200, "feet")
  9606. }
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(15, "feet"),
  9614. weight: math.unit(5026, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/luka-towers/front.svg",
  9618. extra: 1269/1133,
  9619. bottom: 51/1320
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(15, "feet"),
  9627. default: true
  9628. },
  9629. {
  9630. name: "Minimacro",
  9631. height: math.unit(25, "feet")
  9632. },
  9633. {
  9634. name: "Macro",
  9635. height: math.unit(320, "feet")
  9636. },
  9637. {
  9638. name: "Megamacro",
  9639. height: math.unit(35000, "feet")
  9640. },
  9641. {
  9642. name: "Gigamacro",
  9643. height: math.unit(4000, "miles")
  9644. },
  9645. {
  9646. name: "Teramacro",
  9647. height: math.unit(15000, "miles")
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(150, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/natalie-nightring/front.svg",
  9660. extra: 1,
  9661. bottom: 0.06
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Uh Oh",
  9668. height: math.unit(0.1, "mm")
  9669. },
  9670. {
  9671. name: "Small",
  9672. height: math.unit(3, "inches")
  9673. },
  9674. {
  9675. name: "Human Scale",
  9676. height: math.unit(6, "feet")
  9677. },
  9678. {
  9679. name: "Librarian",
  9680. height: math.unit(50, "feet"),
  9681. default: true
  9682. },
  9683. {
  9684. name: "Immense",
  9685. height: math.unit(200, "miles")
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(6, "feet"),
  9694. weight: math.unit(180, "lbs"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/danni-rosie/front.svg",
  9698. extra: 1260 / 1128,
  9699. bottom: 0.022
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Micro",
  9706. height: math.unit(2, "inches"),
  9707. default: true
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(5 + 9 / 12, "feet"),
  9716. weight: math.unit(220, "lb"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/samantha-kruse/front.svg",
  9720. extra: (985 / 935),
  9721. bottom: 0.03
  9722. }
  9723. },
  9724. frontUndressed: {
  9725. height: math.unit(5 + 9 / 12, "feet"),
  9726. weight: math.unit(220, "lb"),
  9727. name: "Front (Undressed)",
  9728. image: {
  9729. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9730. extra: (973 / 923),
  9731. bottom: 0.025
  9732. }
  9733. },
  9734. fat: {
  9735. height: math.unit(5 + 9 / 12, "feet"),
  9736. weight: math.unit(900, "lb"),
  9737. name: "Front (Fat)",
  9738. image: {
  9739. source: "./media/characters/samantha-kruse/fat.svg",
  9740. extra: 2688 / 2561
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(5 + 9 / 12, "feet"),
  9748. default: true
  9749. }
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9754. {
  9755. back: {
  9756. height: math.unit(5 + 4 / 12, "feet"),
  9757. weight: math.unit(4963, "lb"),
  9758. name: "Back",
  9759. image: {
  9760. source: "./media/characters/amelia-rosie/back.svg",
  9761. extra: 1113 / 963,
  9762. bottom: 0.01
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Level 0",
  9769. height: math.unit(5 + 4 / 12, "feet")
  9770. },
  9771. {
  9772. name: "Level 1",
  9773. height: math.unit(164597, "feet"),
  9774. default: true
  9775. },
  9776. {
  9777. name: "Level 2",
  9778. height: math.unit(956243, "miles")
  9779. },
  9780. {
  9781. name: "Level 3",
  9782. height: math.unit(29421709423, "miles")
  9783. },
  9784. {
  9785. name: "Level 4",
  9786. height: math.unit(154, "lightyears")
  9787. },
  9788. {
  9789. name: "Level 5",
  9790. height: math.unit(4738272, "lightyears")
  9791. },
  9792. {
  9793. name: "Level 6",
  9794. height: math.unit(145787152896, "lightyears")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(5 + 11 / 12, "feet"),
  9803. weight: math.unit(65, "kg"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/rook-kitara/front.svg",
  9807. extra: 1347 / 1274,
  9808. bottom: 0.005
  9809. }
  9810. },
  9811. },
  9812. [
  9813. {
  9814. name: "Totally Unfair",
  9815. height: math.unit(1.8, "mm")
  9816. },
  9817. {
  9818. name: "Lap Rookie",
  9819. height: math.unit(1.4, "feet")
  9820. },
  9821. {
  9822. name: "Normal",
  9823. height: math.unit(5 + 11 / 12, "feet"),
  9824. default: true
  9825. },
  9826. {
  9827. name: "How Did This Happen",
  9828. height: math.unit(80, "miles")
  9829. }
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9834. {
  9835. front: {
  9836. height: math.unit(7, "feet"),
  9837. weight: math.unit(300, "lb"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/pisces/front.svg",
  9841. extra: 2255 / 2115,
  9842. bottom: 0.03
  9843. }
  9844. },
  9845. back: {
  9846. height: math.unit(7, "feet"),
  9847. weight: math.unit(300, "lb"),
  9848. name: "Back",
  9849. image: {
  9850. source: "./media/characters/pisces/back.svg",
  9851. extra: 2146 / 2055,
  9852. bottom: 0.04
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Normal",
  9859. height: math.unit(7, "feet"),
  9860. default: true
  9861. },
  9862. {
  9863. name: "Swimming Pool",
  9864. height: math.unit(12.2, "meters")
  9865. },
  9866. {
  9867. name: "Olympic Swimming Pool",
  9868. height: math.unit(56.3, "meters")
  9869. },
  9870. {
  9871. name: "Lake Superior",
  9872. height: math.unit(93900, "meters")
  9873. },
  9874. {
  9875. name: "Mediterranean Sea",
  9876. height: math.unit(644457, "meters")
  9877. },
  9878. {
  9879. name: "World's Oceans",
  9880. height: math.unit(4567491, "meters")
  9881. },
  9882. ]
  9883. ))
  9884. characterMakers.push(() => makeCharacter(
  9885. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9886. {
  9887. front: {
  9888. height: math.unit(2.3, "meters"),
  9889. weight: math.unit(120, "kg"),
  9890. name: "Front",
  9891. image: {
  9892. source: "./media/characters/zelas/front.svg"
  9893. }
  9894. },
  9895. side: {
  9896. height: math.unit(2.3, "meters"),
  9897. weight: math.unit(120, "kg"),
  9898. name: "Side",
  9899. image: {
  9900. source: "./media/characters/zelas/side.svg"
  9901. }
  9902. },
  9903. back: {
  9904. height: math.unit(2.3, "meters"),
  9905. weight: math.unit(120, "kg"),
  9906. name: "Back",
  9907. image: {
  9908. source: "./media/characters/zelas/back.svg"
  9909. }
  9910. },
  9911. foot: {
  9912. height: math.unit(1.116, "feet"),
  9913. name: "Foot",
  9914. image: {
  9915. source: "./media/characters/zelas/foot.svg"
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(2.3, "meters")
  9923. },
  9924. {
  9925. name: "Macro",
  9926. height: math.unit(30, "meters"),
  9927. default: true
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9933. {
  9934. front: {
  9935. height: math.unit(1, "inch"),
  9936. weight: math.unit(0.21, "grams"),
  9937. name: "Front",
  9938. image: {
  9939. source: "./media/characters/talbot/front.svg",
  9940. extra: 594 / 544
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Micro",
  9947. height: math.unit(1, "inch"),
  9948. default: true
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9954. {
  9955. front: {
  9956. height: math.unit(3 + 3 / 12, "feet"),
  9957. weight: math.unit(51.8, "lb"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/fliss/front.svg",
  9961. extra: 840 / 640
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Teeny Tiny",
  9968. height: math.unit(1, "mm")
  9969. },
  9970. {
  9971. name: "Small",
  9972. height: math.unit(1, "inch"),
  9973. default: true
  9974. },
  9975. {
  9976. name: "Standard Sylveon",
  9977. height: math.unit(3 + 3 / 12, "feet")
  9978. },
  9979. {
  9980. name: "Large Nuisance",
  9981. height: math.unit(33, "feet")
  9982. },
  9983. {
  9984. name: "City Filler",
  9985. height: math.unit(3000, "feet")
  9986. },
  9987. {
  9988. name: "New Horizon",
  9989. height: math.unit(6000, "miles")
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(5, "cm"),
  9998. weight: math.unit(1.94, "g"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/fleta/front.svg",
  10002. extra: 835 / 803
  10003. }
  10004. },
  10005. back: {
  10006. height: math.unit(5, "cm"),
  10007. weight: math.unit(1.94, "g"),
  10008. name: "Back",
  10009. image: {
  10010. source: "./media/characters/fleta/back.svg",
  10011. extra: 835 / 803
  10012. }
  10013. },
  10014. },
  10015. [
  10016. {
  10017. name: "Micro",
  10018. height: math.unit(5, "cm"),
  10019. default: true
  10020. },
  10021. ]
  10022. ))
  10023. characterMakers.push(() => makeCharacter(
  10024. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10025. {
  10026. front: {
  10027. height: math.unit(6, "feet"),
  10028. weight: math.unit(225, "lb"),
  10029. name: "Front",
  10030. image: {
  10031. source: "./media/characters/dominic/front.svg",
  10032. extra: 1770 / 1620,
  10033. bottom: 0.025
  10034. }
  10035. },
  10036. back: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(225, "lb"),
  10039. name: "Back",
  10040. image: {
  10041. source: "./media/characters/dominic/back.svg",
  10042. extra: 1745 / 1620,
  10043. bottom: 0.065
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Nano",
  10050. height: math.unit(0.1, "mm")
  10051. },
  10052. {
  10053. name: "Micro-",
  10054. height: math.unit(1, "mm")
  10055. },
  10056. {
  10057. name: "Micro",
  10058. height: math.unit(4, "inches")
  10059. },
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(6 + 4 / 12, "feet"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "Macro",
  10067. height: math.unit(115, "feet")
  10068. },
  10069. {
  10070. name: "Macro+",
  10071. height: math.unit(955, "feet")
  10072. },
  10073. {
  10074. name: "Megamacro",
  10075. height: math.unit(8990, "feet")
  10076. },
  10077. {
  10078. name: "Gigmacro",
  10079. height: math.unit(9310, "miles")
  10080. },
  10081. {
  10082. name: "Teramacro",
  10083. height: math.unit(1567005010, "miles")
  10084. },
  10085. {
  10086. name: "Examacro",
  10087. height: math.unit(1425, "parsecs")
  10088. },
  10089. ]
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10093. {
  10094. front: {
  10095. height: math.unit(400, "feet"),
  10096. weight: math.unit(44444444, "lb"),
  10097. name: "Front",
  10098. image: {
  10099. source: "./media/characters/major-colonel/front.svg"
  10100. }
  10101. },
  10102. back: {
  10103. height: math.unit(400, "feet"),
  10104. weight: math.unit(44444444, "lb"),
  10105. name: "Back",
  10106. image: {
  10107. source: "./media/characters/major-colonel/back.svg"
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Macro",
  10114. height: math.unit(400, "feet"),
  10115. default: true
  10116. },
  10117. ]
  10118. ))
  10119. characterMakers.push(() => makeCharacter(
  10120. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10121. {
  10122. catFront: {
  10123. height: math.unit(6, "feet"),
  10124. weight: math.unit(120, "lb"),
  10125. name: "Front (Cat Side)",
  10126. image: {
  10127. source: "./media/characters/axel-lycan/cat-front.svg",
  10128. extra: 430 / 402,
  10129. bottom: 43 / 472.35
  10130. }
  10131. },
  10132. catBack: {
  10133. height: math.unit(6, "feet"),
  10134. weight: math.unit(120, "lb"),
  10135. name: "Back (Cat Side)",
  10136. image: {
  10137. source: "./media/characters/axel-lycan/cat-back.svg",
  10138. extra: 447 / 419,
  10139. bottom: 23.3 / 469
  10140. }
  10141. },
  10142. wolfFront: {
  10143. height: math.unit(6, "feet"),
  10144. weight: math.unit(120, "lb"),
  10145. name: "Front (Wolf Side)",
  10146. image: {
  10147. source: "./media/characters/axel-lycan/wolf-front.svg",
  10148. extra: 485 / 456,
  10149. bottom: 19 / 504
  10150. }
  10151. },
  10152. wolfBack: {
  10153. height: math.unit(6, "feet"),
  10154. weight: math.unit(120, "lb"),
  10155. name: "Back (Wolf Side)",
  10156. image: {
  10157. source: "./media/characters/axel-lycan/wolf-back.svg",
  10158. extra: 475 / 438,
  10159. bottom: 39.2 / 514
  10160. }
  10161. },
  10162. },
  10163. [
  10164. {
  10165. name: "Macro",
  10166. height: math.unit(1, "km"),
  10167. default: true
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10173. {
  10174. front: {
  10175. height: math.unit(5 + 9 / 12, "feet"),
  10176. weight: math.unit(175, "lb"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/vanrel-hyena/front.svg",
  10180. extra: 1086 / 1010,
  10181. bottom: 0.04
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Normal",
  10188. height: math.unit(5 + 9 / 12, "feet"),
  10189. default: true
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10195. {
  10196. front: {
  10197. height: math.unit(6, "feet"),
  10198. weight: math.unit(103, "lb"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/abbott-absol/front.svg",
  10202. extra: 2010 / 1842
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Megamicro",
  10209. height: math.unit(0.1, "mm")
  10210. },
  10211. {
  10212. name: "Micro",
  10213. height: math.unit(1, "inch")
  10214. },
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(6, "feet"),
  10218. default: true
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(264, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/hector/front.svg",
  10231. extra: 2280 / 2130,
  10232. bottom: 0.07
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(12.25, "foot"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Macro",
  10244. height: math.unit(160, "feet")
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(150, "lb"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/sal/front.svg",
  10257. extra: 1846 / 1699,
  10258. bottom: 0.04
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Megamacro",
  10265. height: math.unit(10, "miles"),
  10266. default: true
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10272. {
  10273. front: {
  10274. height: math.unit(3, "meters"),
  10275. weight: math.unit(450, "kg"),
  10276. name: "front",
  10277. image: {
  10278. source: "./media/characters/ranger/front.svg",
  10279. extra: 2401 / 2243,
  10280. bottom: 0.05
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(3, "meters"),
  10288. default: true
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(14, "feet"),
  10297. weight: math.unit(800, "kg"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/theresa/front.svg",
  10301. extra: 3575 / 3346,
  10302. bottom: 0.03
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Normal",
  10309. height: math.unit(14, "feet"),
  10310. default: true
  10311. },
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10316. {
  10317. front: {
  10318. height: math.unit(6, "feet"),
  10319. weight: math.unit(3, "kg"),
  10320. name: "Front",
  10321. image: {
  10322. source: "./media/characters/ine/front.svg",
  10323. extra: 678 / 539,
  10324. bottom: 0.023
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(2.265, "feet"),
  10332. default: true
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(5, "feet"),
  10341. weight: math.unit(30, "kg"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/vial/front.svg",
  10345. extra: 1365 / 1277,
  10346. bottom: 0.04
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(5, "feet"),
  10354. default: true
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10360. {
  10361. side: {
  10362. height: math.unit(3.4, "meters"),
  10363. weight: math.unit(1000, "lb"),
  10364. name: "Side",
  10365. image: {
  10366. source: "./media/characters/rovoska/side.svg",
  10367. extra: 4403 / 1515
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Normal",
  10374. height: math.unit(3.4, "meters"),
  10375. default: true
  10376. },
  10377. ]
  10378. ))
  10379. characterMakers.push(() => makeCharacter(
  10380. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10381. {
  10382. front: {
  10383. height: math.unit(8, "feet"),
  10384. weight: math.unit(315, "lb"),
  10385. name: "Front",
  10386. image: {
  10387. source: "./media/characters/gunner-rotthbauer/front.svg"
  10388. }
  10389. },
  10390. back: {
  10391. height: math.unit(8, "feet"),
  10392. weight: math.unit(315, "lb"),
  10393. name: "Back",
  10394. image: {
  10395. source: "./media/characters/gunner-rotthbauer/back.svg"
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Micro",
  10402. height: math.unit(3.5, "inches")
  10403. },
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(8, "feet"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Macro",
  10411. height: math.unit(250, "feet")
  10412. },
  10413. {
  10414. name: "Megamacro",
  10415. height: math.unit(1, "AU")
  10416. },
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(5 + 5 / 12, "feet"),
  10424. weight: math.unit(140, "lb"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/allatia/front.svg",
  10428. extra: 1227 / 1180,
  10429. bottom: 0.027
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(5 + 5 / 12, "feet")
  10437. },
  10438. {
  10439. name: "Macro",
  10440. height: math.unit(250, "feet"),
  10441. default: true
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(8, "miles")
  10446. }
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(6, "feet"),
  10454. weight: math.unit(120, "lb"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/tene/front.svg",
  10458. extra: 814/750,
  10459. bottom: 36/850
  10460. }
  10461. },
  10462. stomping: {
  10463. height: math.unit(2.025, "meters"),
  10464. weight: math.unit(120, "lb"),
  10465. name: "Stomping",
  10466. image: {
  10467. source: "./media/characters/tene/stomping.svg",
  10468. extra: 885/821,
  10469. bottom: 15/900
  10470. }
  10471. },
  10472. sitting: {
  10473. height: math.unit(1, "meter"),
  10474. weight: math.unit(120, "lb"),
  10475. name: "Sitting",
  10476. image: {
  10477. source: "./media/characters/tene/sitting.svg",
  10478. extra: 396/366,
  10479. bottom: 79/475
  10480. }
  10481. },
  10482. smiling: {
  10483. height: math.unit(1.2, "feet"),
  10484. name: "Smiling",
  10485. image: {
  10486. source: "./media/characters/tene/smiling.svg",
  10487. extra: 1364/1071,
  10488. bottom: 0/1364
  10489. }
  10490. },
  10491. smug: {
  10492. height: math.unit(1.3, "feet"),
  10493. name: "Smug",
  10494. image: {
  10495. source: "./media/characters/tene/smug.svg",
  10496. extra: 1323/1082,
  10497. bottom: 0/1323
  10498. }
  10499. },
  10500. feral: {
  10501. height: math.unit(3.9, "feet"),
  10502. weight: math.unit(250, "lb"),
  10503. name: "Feral",
  10504. image: {
  10505. source: "./media/characters/tene/feral.svg",
  10506. extra: 717 / 458,
  10507. bottom: 0.179
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Normal",
  10514. height: math.unit(6, "feet")
  10515. },
  10516. {
  10517. name: "Macro",
  10518. height: math.unit(300, "feet"),
  10519. default: true
  10520. },
  10521. {
  10522. name: "Megamacro",
  10523. height: math.unit(5, "miles")
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10529. {
  10530. side: {
  10531. height: math.unit(6, "feet"),
  10532. name: "Side",
  10533. image: {
  10534. source: "./media/characters/evander/side.svg",
  10535. extra: 877 / 477
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Normal",
  10542. height: math.unit(0.83, "meters"),
  10543. default: true
  10544. },
  10545. ]
  10546. ))
  10547. characterMakers.push(() => makeCharacter(
  10548. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10549. {
  10550. front: {
  10551. height: math.unit(12, "feet"),
  10552. weight: math.unit(1000, "lb"),
  10553. name: "Front",
  10554. image: {
  10555. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10556. extra: 1762 / 1611
  10557. }
  10558. },
  10559. back: {
  10560. height: math.unit(12, "feet"),
  10561. weight: math.unit(1000, "lb"),
  10562. name: "Back",
  10563. image: {
  10564. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10565. extra: 1762 / 1611
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Normal",
  10572. height: math.unit(12, "feet"),
  10573. default: true
  10574. },
  10575. {
  10576. name: "Kaiju",
  10577. height: math.unit(150, "feet")
  10578. },
  10579. ]
  10580. ))
  10581. characterMakers.push(() => makeCharacter(
  10582. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10583. {
  10584. front: {
  10585. height: math.unit(6, "feet"),
  10586. weight: math.unit(150, "lb"),
  10587. name: "Front",
  10588. image: {
  10589. source: "./media/characters/zero-alurus/front.svg"
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(6, "feet"),
  10594. weight: math.unit(150, "lb"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/zero-alurus/back.svg"
  10598. }
  10599. },
  10600. },
  10601. [
  10602. {
  10603. name: "Normal",
  10604. height: math.unit(5 + 10 / 12, "feet")
  10605. },
  10606. {
  10607. name: "Macro",
  10608. height: math.unit(60, "feet"),
  10609. default: true
  10610. },
  10611. {
  10612. name: "Macro+",
  10613. height: math.unit(450, "feet")
  10614. },
  10615. ]
  10616. ))
  10617. characterMakers.push(() => makeCharacter(
  10618. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10619. {
  10620. front: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(200, "lb"),
  10623. name: "Front",
  10624. image: {
  10625. source: "./media/characters/mega-shi/front.svg",
  10626. extra: 1279 / 1250,
  10627. bottom: 0.02
  10628. }
  10629. },
  10630. back: {
  10631. height: math.unit(6, "feet"),
  10632. weight: math.unit(200, "lb"),
  10633. name: "Back",
  10634. image: {
  10635. source: "./media/characters/mega-shi/back.svg",
  10636. extra: 1279 / 1250,
  10637. bottom: 0.02
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Micro",
  10644. height: math.unit(16 + 6 / 12, "feet")
  10645. },
  10646. {
  10647. name: "Third Dimension",
  10648. height: math.unit(40, "meters")
  10649. },
  10650. {
  10651. name: "Normal",
  10652. height: math.unit(660, "feet"),
  10653. default: true
  10654. },
  10655. {
  10656. name: "Megamacro",
  10657. height: math.unit(10, "miles")
  10658. },
  10659. {
  10660. name: "Planetary Launch",
  10661. height: math.unit(500, "miles")
  10662. },
  10663. {
  10664. name: "Interstellar",
  10665. height: math.unit(1e9, "miles")
  10666. },
  10667. {
  10668. name: "Leaving the Universe",
  10669. height: math.unit(1, "gigaparsec")
  10670. },
  10671. {
  10672. name: "Travelling Universes",
  10673. height: math.unit(30e15, "parsecs")
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(5 + 4/12, "feet"),
  10682. weight: math.unit(120, "lb"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/odyssey/front.svg",
  10686. extra: 1747/1571,
  10687. bottom: 47/1794
  10688. }
  10689. },
  10690. side: {
  10691. height: math.unit(5.1, "feet"),
  10692. weight: math.unit(120, "lb"),
  10693. name: "Side",
  10694. image: {
  10695. source: "./media/characters/odyssey/side.svg",
  10696. extra: 1847/1619,
  10697. bottom: 47/1894
  10698. }
  10699. },
  10700. lounging: {
  10701. height: math.unit(1.464, "feet"),
  10702. weight: math.unit(120, "lb"),
  10703. name: "Lounging",
  10704. image: {
  10705. source: "./media/characters/odyssey/lounging.svg",
  10706. extra: 1235/837,
  10707. bottom: 551/1786
  10708. }
  10709. },
  10710. },
  10711. [
  10712. {
  10713. name: "Normal",
  10714. height: math.unit(5 + 4 / 12, "feet")
  10715. },
  10716. {
  10717. name: "Macro",
  10718. height: math.unit(1, "km")
  10719. },
  10720. {
  10721. name: "Megamacro",
  10722. height: math.unit(3000, "km")
  10723. },
  10724. {
  10725. name: "Gigamacro",
  10726. height: math.unit(1, "AU"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "Omniversal",
  10731. height: math.unit(100e14, "lightyears")
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(6, "feet"),
  10740. weight: math.unit(300, "lb"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/mekuto/front.svg",
  10744. extra: 921 / 832,
  10745. bottom: 0.03
  10746. }
  10747. },
  10748. hand: {
  10749. height: math.unit(6 / 10.24, "feet"),
  10750. name: "Hand",
  10751. image: {
  10752. source: "./media/characters/mekuto/hand.svg"
  10753. }
  10754. },
  10755. foot: {
  10756. height: math.unit(6 / 5.05, "feet"),
  10757. name: "Foot",
  10758. image: {
  10759. source: "./media/characters/mekuto/foot.svg"
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Minimicro",
  10766. height: math.unit(0.2, "inches")
  10767. },
  10768. {
  10769. name: "Micro",
  10770. height: math.unit(1.5, "inches")
  10771. },
  10772. {
  10773. name: "Normal",
  10774. height: math.unit(5 + 11 / 12, "feet"),
  10775. default: true
  10776. },
  10777. {
  10778. name: "Minimacro",
  10779. height: math.unit(17 + 9 / 12, "feet")
  10780. },
  10781. {
  10782. name: "Macro",
  10783. height: math.unit(177.5, "feet")
  10784. },
  10785. {
  10786. name: "Megamacro",
  10787. height: math.unit(152, "miles")
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(6.5, "inches"),
  10796. weight: math.unit(13, "oz"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/dafydd-tomos/front.svg",
  10800. extra: 2990 / 2603,
  10801. bottom: 0.03
  10802. }
  10803. },
  10804. },
  10805. [
  10806. {
  10807. name: "Micro",
  10808. height: math.unit(6.5, "inches"),
  10809. default: true
  10810. },
  10811. ]
  10812. ))
  10813. characterMakers.push(() => makeCharacter(
  10814. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10815. {
  10816. front: {
  10817. height: math.unit(6, "feet"),
  10818. weight: math.unit(150, "lb"),
  10819. name: "Front",
  10820. image: {
  10821. source: "./media/characters/splinter/front.svg",
  10822. extra: 2990 / 2882,
  10823. bottom: 0.04
  10824. }
  10825. },
  10826. back: {
  10827. height: math.unit(6, "feet"),
  10828. weight: math.unit(150, "lb"),
  10829. name: "Back",
  10830. image: {
  10831. source: "./media/characters/splinter/back.svg",
  10832. extra: 2990 / 2882,
  10833. bottom: 0.04
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Normal",
  10840. height: math.unit(6, "feet")
  10841. },
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(230, "meters"),
  10845. default: true
  10846. },
  10847. ]
  10848. ))
  10849. characterMakers.push(() => makeCharacter(
  10850. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10851. {
  10852. front: {
  10853. height: math.unit(4 + 10 / 12, "feet"),
  10854. weight: math.unit(480, "lb"),
  10855. name: "Front",
  10856. image: {
  10857. source: "./media/characters/snow-gabumon/front.svg",
  10858. extra: 1140 / 963,
  10859. bottom: 0.058
  10860. }
  10861. },
  10862. back: {
  10863. height: math.unit(4 + 10 / 12, "feet"),
  10864. weight: math.unit(480, "lb"),
  10865. name: "Back",
  10866. image: {
  10867. source: "./media/characters/snow-gabumon/back.svg",
  10868. extra: 1115 / 962,
  10869. bottom: 0.041
  10870. }
  10871. },
  10872. frontUndresed: {
  10873. height: math.unit(4 + 10 / 12, "feet"),
  10874. weight: math.unit(480, "lb"),
  10875. name: "Front (Undressed)",
  10876. image: {
  10877. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10878. extra: 1061 / 960,
  10879. bottom: 0.045
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(1, "inch")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(4 + 10 / 12, "feet"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(200, "feet")
  10896. },
  10897. {
  10898. name: "Megamacro",
  10899. height: math.unit(120, "miles")
  10900. },
  10901. {
  10902. name: "Gigamacro",
  10903. height: math.unit(9800, "miles")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10909. {
  10910. front: {
  10911. height: math.unit(1.7, "meters"),
  10912. weight: math.unit(140, "lb"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/moody/front.svg",
  10916. extra: 3226 / 3007,
  10917. bottom: 0.087
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Micro",
  10924. height: math.unit(1, "mm")
  10925. },
  10926. {
  10927. name: "Normal",
  10928. height: math.unit(1.7, "meters"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(80, "meters")
  10934. },
  10935. {
  10936. name: "Macro+",
  10937. height: math.unit(500, "meters")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10943. {
  10944. front: {
  10945. height: math.unit(6, "feet"),
  10946. weight: math.unit(150, "lb"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/zyas/front.svg",
  10950. extra: 1180 / 1120,
  10951. bottom: 0.045
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(10, "feet"),
  10959. default: true
  10960. },
  10961. {
  10962. name: "Macro",
  10963. height: math.unit(500, "feet")
  10964. },
  10965. {
  10966. name: "Megamacro",
  10967. height: math.unit(5, "miles")
  10968. },
  10969. {
  10970. name: "Teramacro",
  10971. height: math.unit(150000, "miles")
  10972. },
  10973. ]
  10974. ))
  10975. characterMakers.push(() => makeCharacter(
  10976. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10977. {
  10978. front: {
  10979. height: math.unit(6, "feet"),
  10980. weight: math.unit(150, "lb"),
  10981. name: "Front",
  10982. image: {
  10983. source: "./media/characters/cuon/front.svg",
  10984. extra: 1390 / 1320,
  10985. bottom: 0.008
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Micro",
  10992. height: math.unit(3, "inches")
  10993. },
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(18 + 9 / 12, "feet"),
  10997. default: true
  10998. },
  10999. {
  11000. name: "Macro",
  11001. height: math.unit(360, "feet")
  11002. },
  11003. {
  11004. name: "Megamacro",
  11005. height: math.unit(360, "miles")
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11011. {
  11012. front: {
  11013. height: math.unit(2.4, "meters"),
  11014. weight: math.unit(70, "kg"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/nyanuxk/front.svg",
  11018. extra: 1172 / 1084,
  11019. bottom: 0.065
  11020. }
  11021. },
  11022. side: {
  11023. height: math.unit(2.4, "meters"),
  11024. weight: math.unit(70, "kg"),
  11025. name: "Side",
  11026. image: {
  11027. source: "./media/characters/nyanuxk/side.svg",
  11028. extra: 1190 / 1132,
  11029. bottom: 0.007
  11030. }
  11031. },
  11032. back: {
  11033. height: math.unit(2.4, "meters"),
  11034. weight: math.unit(70, "kg"),
  11035. name: "Back",
  11036. image: {
  11037. source: "./media/characters/nyanuxk/back.svg",
  11038. extra: 1200 / 1141,
  11039. bottom: 0.015
  11040. }
  11041. },
  11042. foot: {
  11043. height: math.unit(0.52, "meters"),
  11044. name: "Foot",
  11045. image: {
  11046. source: "./media/characters/nyanuxk/foot.svg"
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Micro",
  11053. height: math.unit(2, "cm")
  11054. },
  11055. {
  11056. name: "Normal",
  11057. height: math.unit(2.4, "meters"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Smaller Macro",
  11062. height: math.unit(120, "meters")
  11063. },
  11064. {
  11065. name: "Bigger Macro",
  11066. height: math.unit(1.2, "km")
  11067. },
  11068. {
  11069. name: "Megamacro",
  11070. height: math.unit(15, "kilometers")
  11071. },
  11072. {
  11073. name: "Gigamacro",
  11074. height: math.unit(2000, "km")
  11075. },
  11076. {
  11077. name: "Teramacro",
  11078. height: math.unit(500000, "km")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11084. {
  11085. side: {
  11086. height: math.unit(6, "feet"),
  11087. name: "Side",
  11088. image: {
  11089. source: "./media/characters/ailbhe/side.svg",
  11090. extra: 757 / 464,
  11091. bottom: 0.041
  11092. }
  11093. },
  11094. },
  11095. [
  11096. {
  11097. name: "Normal",
  11098. height: math.unit(1.07, "meters"),
  11099. default: true
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(120, "kg"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/zevulfius/front.svg",
  11112. extra: 965 / 903
  11113. }
  11114. },
  11115. side: {
  11116. height: math.unit(6, "feet"),
  11117. weight: math.unit(120, "kg"),
  11118. name: "Side",
  11119. image: {
  11120. source: "./media/characters/zevulfius/side.svg",
  11121. extra: 939 / 900
  11122. }
  11123. },
  11124. back: {
  11125. height: math.unit(6, "feet"),
  11126. weight: math.unit(120, "kg"),
  11127. name: "Back",
  11128. image: {
  11129. source: "./media/characters/zevulfius/back.svg",
  11130. extra: 918 / 854,
  11131. bottom: 0.005
  11132. }
  11133. },
  11134. foot: {
  11135. height: math.unit(6 / 3.72, "feet"),
  11136. name: "Foot",
  11137. image: {
  11138. source: "./media/characters/zevulfius/foot.svg"
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Macro",
  11145. height: math.unit(750, "meters")
  11146. },
  11147. {
  11148. name: "Megamacro",
  11149. height: math.unit(20, "km"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Gigamacro",
  11154. height: math.unit(2000, "km")
  11155. },
  11156. {
  11157. name: "Teramacro",
  11158. height: math.unit(250000, "km")
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11164. {
  11165. front: {
  11166. height: math.unit(100, "feet"),
  11167. weight: math.unit(350, "kg"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/rikes/front.svg",
  11171. extra: 1565 / 1483,
  11172. bottom: 0.017
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Macro",
  11179. height: math.unit(100, "feet"),
  11180. default: true
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11186. {
  11187. front: {
  11188. height: math.unit(8, "feet"),
  11189. weight: math.unit(356, "lb"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/adam-silver-mane/front.svg",
  11193. extra: 1036/937,
  11194. bottom: 63/1099
  11195. }
  11196. },
  11197. side: {
  11198. height: math.unit(8, "feet"),
  11199. weight: math.unit(356, "lb"),
  11200. name: "Side",
  11201. image: {
  11202. source: "./media/characters/adam-silver-mane/side.svg",
  11203. extra: 997/901,
  11204. bottom: 59/1056
  11205. }
  11206. },
  11207. frontNsfw: {
  11208. height: math.unit(8, "feet"),
  11209. weight: math.unit(356, "lb"),
  11210. name: "Front (NSFW)",
  11211. image: {
  11212. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11213. extra: 1036/937,
  11214. bottom: 63/1099
  11215. }
  11216. },
  11217. sideNsfw: {
  11218. height: math.unit(8, "feet"),
  11219. weight: math.unit(356, "lb"),
  11220. name: "Side (NSFW)",
  11221. image: {
  11222. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11223. extra: 997/901,
  11224. bottom: 59/1056
  11225. }
  11226. },
  11227. dick: {
  11228. height: math.unit(2.1, "feet"),
  11229. name: "Dick",
  11230. image: {
  11231. source: "./media/characters/adam-silver-mane/dick.svg"
  11232. }
  11233. },
  11234. taur: {
  11235. height: math.unit(16, "feet"),
  11236. weight: math.unit(1500, "kg"),
  11237. name: "Taur",
  11238. image: {
  11239. source: "./media/characters/adam-silver-mane/taur.svg",
  11240. extra: 1713 / 1571,
  11241. bottom: 0.01
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Normal",
  11248. height: math.unit(8, "feet")
  11249. },
  11250. {
  11251. name: "Minimacro",
  11252. height: math.unit(80, "feet")
  11253. },
  11254. {
  11255. name: "MDA",
  11256. height: math.unit(80, "meters")
  11257. },
  11258. {
  11259. name: "Macro",
  11260. height: math.unit(800, "feet"),
  11261. default: true
  11262. },
  11263. {
  11264. name: "Megamacro",
  11265. height: math.unit(8000, "feet")
  11266. },
  11267. {
  11268. name: "Gigamacro",
  11269. height: math.unit(800, "miles")
  11270. },
  11271. {
  11272. name: "Teramacro",
  11273. height: math.unit(80000, "miles")
  11274. },
  11275. {
  11276. name: "Celestial",
  11277. height: math.unit(8e6, "miles")
  11278. },
  11279. {
  11280. name: "Star Dragon",
  11281. height: math.unit(800000, "parsecs")
  11282. },
  11283. {
  11284. name: "Godly",
  11285. height: math.unit(800, "teraparsecs")
  11286. },
  11287. ]
  11288. ))
  11289. characterMakers.push(() => makeCharacter(
  11290. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11291. {
  11292. front: {
  11293. height: math.unit(6, "feet"),
  11294. weight: math.unit(150, "lb"),
  11295. name: "Front",
  11296. image: {
  11297. source: "./media/characters/ky'owin/front.svg",
  11298. extra: 3888 / 3068,
  11299. bottom: 0.015
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Normal",
  11306. height: math.unit(6 + 8 / 12, "feet")
  11307. },
  11308. {
  11309. name: "Large",
  11310. height: math.unit(68, "feet")
  11311. },
  11312. {
  11313. name: "Macro",
  11314. height: math.unit(132, "feet")
  11315. },
  11316. {
  11317. name: "Macro+",
  11318. height: math.unit(340, "feet")
  11319. },
  11320. {
  11321. name: "Macro++",
  11322. height: math.unit(680, "feet"),
  11323. default: true
  11324. },
  11325. {
  11326. name: "Megamacro",
  11327. height: math.unit(1, "mile")
  11328. },
  11329. {
  11330. name: "Megamacro+",
  11331. height: math.unit(10, "miles")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(4, "feet"),
  11340. weight: math.unit(50, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/mal/front.svg",
  11344. extra: 785 / 724,
  11345. bottom: 0.07
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Micro",
  11352. height: math.unit(4, "inches")
  11353. },
  11354. {
  11355. name: "Normal",
  11356. height: math.unit(4, "feet"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Macro",
  11361. height: math.unit(200, "feet")
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(6, "feet"),
  11370. weight: math.unit(150, "lb"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/jordan-deware/front.svg",
  11374. extra: 1191 / 1012
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Nano",
  11381. height: math.unit(0.01, "mm")
  11382. },
  11383. {
  11384. name: "Minimicro",
  11385. height: math.unit(1, "mm")
  11386. },
  11387. {
  11388. name: "Micro",
  11389. height: math.unit(0.5, "inches")
  11390. },
  11391. {
  11392. name: "Normal",
  11393. height: math.unit(4, "feet"),
  11394. default: true
  11395. },
  11396. {
  11397. name: "Minimacro",
  11398. height: math.unit(40, "meters")
  11399. },
  11400. {
  11401. name: "Small Macro",
  11402. height: math.unit(400, "meters")
  11403. },
  11404. {
  11405. name: "Macro",
  11406. height: math.unit(4, "miles")
  11407. },
  11408. {
  11409. name: "Megamacro",
  11410. height: math.unit(40, "miles")
  11411. },
  11412. {
  11413. name: "Megamacro+",
  11414. height: math.unit(400, "miles")
  11415. },
  11416. {
  11417. name: "Gigamacro",
  11418. height: math.unit(400000, "miles")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11424. {
  11425. side: {
  11426. height: math.unit(6, "feet"),
  11427. weight: math.unit(150, "lb"),
  11428. name: "Side",
  11429. image: {
  11430. source: "./media/characters/kimiko/side.svg",
  11431. extra: 600 / 358
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Normal",
  11438. height: math.unit(15, "feet"),
  11439. default: true
  11440. },
  11441. {
  11442. name: "Macro",
  11443. height: math.unit(220, "feet")
  11444. },
  11445. {
  11446. name: "Macro+",
  11447. height: math.unit(1450, "feet")
  11448. },
  11449. {
  11450. name: "Megamacro",
  11451. height: math.unit(11500, "feet")
  11452. },
  11453. {
  11454. name: "Gigamacro",
  11455. height: math.unit(9500, "miles")
  11456. },
  11457. {
  11458. name: "Teramacro",
  11459. height: math.unit(2208005005, "miles")
  11460. },
  11461. {
  11462. name: "Examacro",
  11463. height: math.unit(2750, "parsecs")
  11464. },
  11465. {
  11466. name: "Zettamacro",
  11467. height: math.unit(101500, "parsecs")
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(70, "kg"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/andrew-sleepy/front.svg"
  11480. }
  11481. },
  11482. side: {
  11483. height: math.unit(6, "feet"),
  11484. weight: math.unit(70, "kg"),
  11485. name: "Side",
  11486. image: {
  11487. source: "./media/characters/andrew-sleepy/side.svg"
  11488. }
  11489. },
  11490. },
  11491. [
  11492. {
  11493. name: "Micro",
  11494. height: math.unit(1, "mm"),
  11495. default: true
  11496. },
  11497. ]
  11498. ))
  11499. characterMakers.push(() => makeCharacter(
  11500. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11501. {
  11502. front: {
  11503. height: math.unit(6, "feet"),
  11504. weight: math.unit(150, "lb"),
  11505. name: "Front",
  11506. image: {
  11507. source: "./media/characters/judio/front.svg",
  11508. extra: 1258 / 1110
  11509. }
  11510. },
  11511. },
  11512. [
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(5 + 6 / 12, "feet")
  11516. },
  11517. {
  11518. name: "Macro",
  11519. height: math.unit(1000, "feet"),
  11520. default: true
  11521. },
  11522. {
  11523. name: "Megamacro",
  11524. height: math.unit(10, "miles")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11530. {
  11531. frontDressed: {
  11532. height: math.unit(6, "feet"),
  11533. weight: math.unit(68, "kg"),
  11534. name: "Front (Dressed)",
  11535. image: {
  11536. source: "./media/characters/nomaxice/front-dressed.svg",
  11537. extra: 1137/824,
  11538. bottom: 74/1211
  11539. }
  11540. },
  11541. frontShorts: {
  11542. height: math.unit(6, "feet"),
  11543. weight: math.unit(68, "kg"),
  11544. name: "Front (Shorts)",
  11545. image: {
  11546. source: "./media/characters/nomaxice/front-shorts.svg",
  11547. extra: 1137/824,
  11548. bottom: 74/1211
  11549. }
  11550. },
  11551. back: {
  11552. height: math.unit(6, "feet"),
  11553. weight: math.unit(68, "kg"),
  11554. name: "Back",
  11555. image: {
  11556. source: "./media/characters/nomaxice/back.svg",
  11557. extra: 822/786,
  11558. bottom: 39/861
  11559. }
  11560. },
  11561. hand: {
  11562. height: math.unit(0.565, "feet"),
  11563. name: "Hand",
  11564. image: {
  11565. source: "./media/characters/nomaxice/hand.svg"
  11566. }
  11567. },
  11568. foot: {
  11569. height: math.unit(1, "feet"),
  11570. name: "Foot",
  11571. image: {
  11572. source: "./media/characters/nomaxice/foot.svg"
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Micro",
  11579. height: math.unit(8, "cm")
  11580. },
  11581. {
  11582. name: "Norm",
  11583. height: math.unit(1.82, "m")
  11584. },
  11585. {
  11586. name: "Norm+",
  11587. height: math.unit(8.8, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Big",
  11592. height: math.unit(8, "meters")
  11593. },
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(18, "meters")
  11597. },
  11598. {
  11599. name: "Macro+",
  11600. height: math.unit(88, "meters")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(12, "feet"),
  11609. weight: math.unit(1.5, "tons"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/dydros/front.svg",
  11613. extra: 863 / 800,
  11614. bottom: 0.015
  11615. }
  11616. },
  11617. back: {
  11618. height: math.unit(12, "feet"),
  11619. weight: math.unit(1.5, "tons"),
  11620. name: "Back",
  11621. image: {
  11622. source: "./media/characters/dydros/back.svg",
  11623. extra: 900 / 843,
  11624. bottom: 0.005
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(12, "feet"),
  11632. default: true
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11638. {
  11639. front: {
  11640. height: math.unit(6, "feet"),
  11641. weight: math.unit(100, "kg"),
  11642. name: "Front",
  11643. image: {
  11644. source: "./media/characters/riggi/front.svg",
  11645. extra: 5787 / 5303
  11646. }
  11647. },
  11648. hyper: {
  11649. height: math.unit(6 * 5 / 3, "feet"),
  11650. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11651. name: "Hyper",
  11652. image: {
  11653. source: "./media/characters/riggi/hyper.svg",
  11654. extra: 3595 / 3485
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Small Macro",
  11661. height: math.unit(50, "feet")
  11662. },
  11663. {
  11664. name: "Default",
  11665. height: math.unit(200, "feet"),
  11666. default: true
  11667. },
  11668. {
  11669. name: "Loom",
  11670. height: math.unit(10000, "feet")
  11671. },
  11672. {
  11673. name: "Cruising Altitude",
  11674. height: math.unit(30000, "feet")
  11675. },
  11676. {
  11677. name: "Megamacro",
  11678. height: math.unit(100, "miles")
  11679. },
  11680. {
  11681. name: "Continent Sized",
  11682. height: math.unit(2800, "miles")
  11683. },
  11684. {
  11685. name: "Earth Sized",
  11686. height: math.unit(8000, "miles")
  11687. },
  11688. ]
  11689. ))
  11690. characterMakers.push(() => makeCharacter(
  11691. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11692. {
  11693. front: {
  11694. height: math.unit(6, "feet"),
  11695. weight: math.unit(250, "lb"),
  11696. name: "Front",
  11697. image: {
  11698. source: "./media/characters/alexi/front.svg",
  11699. extra: 3483 / 3291,
  11700. bottom: 0.04
  11701. }
  11702. },
  11703. back: {
  11704. height: math.unit(6, "feet"),
  11705. weight: math.unit(250, "lb"),
  11706. name: "Back",
  11707. image: {
  11708. source: "./media/characters/alexi/back.svg",
  11709. extra: 3533 / 3356,
  11710. bottom: 0.021
  11711. }
  11712. },
  11713. frontTransforming: {
  11714. height: math.unit(8.58, "feet"),
  11715. weight: math.unit(1300, "lb"),
  11716. name: "Transforming",
  11717. image: {
  11718. source: "./media/characters/alexi/front-transforming.svg",
  11719. extra: 437 / 409,
  11720. bottom: 19 / 458.66
  11721. }
  11722. },
  11723. frontTransformed: {
  11724. height: math.unit(12.5, "feet"),
  11725. weight: math.unit(4000, "lb"),
  11726. name: "Transformed",
  11727. image: {
  11728. source: "./media/characters/alexi/front-transformed.svg",
  11729. extra: 639 / 614,
  11730. bottom: 30.55 / 671
  11731. }
  11732. },
  11733. },
  11734. [
  11735. {
  11736. name: "Normal",
  11737. height: math.unit(14, "feet"),
  11738. default: true
  11739. },
  11740. {
  11741. name: "Minimacro",
  11742. height: math.unit(30, "meters")
  11743. },
  11744. {
  11745. name: "Macro",
  11746. height: math.unit(500, "meters")
  11747. },
  11748. {
  11749. name: "Megamacro",
  11750. height: math.unit(9000, "km")
  11751. },
  11752. {
  11753. name: "Teramacro",
  11754. height: math.unit(384000, "km")
  11755. },
  11756. ]
  11757. ))
  11758. characterMakers.push(() => makeCharacter(
  11759. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11760. {
  11761. front: {
  11762. height: math.unit(6, "feet"),
  11763. weight: math.unit(150, "lb"),
  11764. name: "Front",
  11765. image: {
  11766. source: "./media/characters/kayroo/front.svg",
  11767. extra: 1153 / 1038,
  11768. bottom: 0.06
  11769. }
  11770. },
  11771. foot: {
  11772. height: math.unit(6, "feet"),
  11773. weight: math.unit(150, "lb"),
  11774. name: "Foot",
  11775. image: {
  11776. source: "./media/characters/kayroo/foot.svg"
  11777. }
  11778. },
  11779. },
  11780. [
  11781. {
  11782. name: "Normal",
  11783. height: math.unit(8, "feet"),
  11784. default: true
  11785. },
  11786. {
  11787. name: "Minimacro",
  11788. height: math.unit(250, "feet")
  11789. },
  11790. {
  11791. name: "Macro",
  11792. height: math.unit(2800, "feet")
  11793. },
  11794. {
  11795. name: "Megamacro",
  11796. height: math.unit(5200, "feet")
  11797. },
  11798. {
  11799. name: "Gigamacro",
  11800. height: math.unit(27000, "feet")
  11801. },
  11802. {
  11803. name: "Omega",
  11804. height: math.unit(45000, "feet")
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11810. {
  11811. front: {
  11812. height: math.unit(18, "feet"),
  11813. weight: math.unit(5800, "lb"),
  11814. name: "Front",
  11815. image: {
  11816. source: "./media/characters/rhys/front.svg",
  11817. extra: 3386 / 3090,
  11818. bottom: 0.07
  11819. }
  11820. },
  11821. },
  11822. [
  11823. {
  11824. name: "Normal",
  11825. height: math.unit(18, "feet"),
  11826. default: true
  11827. },
  11828. {
  11829. name: "Working Size",
  11830. height: math.unit(200, "feet")
  11831. },
  11832. {
  11833. name: "Demolition Size",
  11834. height: math.unit(2000, "feet")
  11835. },
  11836. {
  11837. name: "Maximum Licensed Size",
  11838. height: math.unit(5, "miles")
  11839. },
  11840. {
  11841. name: "Maximum Observed Size",
  11842. height: math.unit(10, "yottameters")
  11843. },
  11844. ]
  11845. ))
  11846. characterMakers.push(() => makeCharacter(
  11847. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11848. {
  11849. front: {
  11850. height: math.unit(6, "feet"),
  11851. weight: math.unit(250, "lb"),
  11852. name: "Front",
  11853. image: {
  11854. source: "./media/characters/toto/front.svg",
  11855. extra: 527 / 479,
  11856. bottom: 0.05
  11857. }
  11858. },
  11859. },
  11860. [
  11861. {
  11862. name: "Micro",
  11863. height: math.unit(3, "feet")
  11864. },
  11865. {
  11866. name: "Normal",
  11867. height: math.unit(10, "feet")
  11868. },
  11869. {
  11870. name: "Macro",
  11871. height: math.unit(150, "feet"),
  11872. default: true
  11873. },
  11874. {
  11875. name: "Megamacro",
  11876. height: math.unit(1200, "feet")
  11877. },
  11878. ]
  11879. ))
  11880. characterMakers.push(() => makeCharacter(
  11881. { name: "King", species: ["lion"], tags: ["anthro"] },
  11882. {
  11883. back: {
  11884. height: math.unit(6, "feet"),
  11885. weight: math.unit(150, "lb"),
  11886. name: "Back",
  11887. image: {
  11888. source: "./media/characters/king/back.svg"
  11889. }
  11890. },
  11891. },
  11892. [
  11893. {
  11894. name: "Micro",
  11895. height: math.unit(2, "inches")
  11896. },
  11897. {
  11898. name: "Normal",
  11899. height: math.unit(8, "feet")
  11900. },
  11901. {
  11902. name: "Macro",
  11903. height: math.unit(200, "feet"),
  11904. default: true
  11905. },
  11906. {
  11907. name: "Megamacro",
  11908. height: math.unit(50, "miles")
  11909. },
  11910. ]
  11911. ))
  11912. characterMakers.push(() => makeCharacter(
  11913. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11914. {
  11915. front: {
  11916. height: math.unit(11, "feet"),
  11917. weight: math.unit(1400, "lb"),
  11918. name: "Front",
  11919. image: {
  11920. source: "./media/characters/cordite/front.svg",
  11921. extra: 1919/1827,
  11922. bottom: 40/1959
  11923. }
  11924. },
  11925. side: {
  11926. height: math.unit(11, "feet"),
  11927. weight: math.unit(1400, "lb"),
  11928. name: "Side",
  11929. image: {
  11930. source: "./media/characters/cordite/side.svg",
  11931. extra: 1908/1793,
  11932. bottom: 38/1946
  11933. }
  11934. },
  11935. back: {
  11936. height: math.unit(11, "feet"),
  11937. weight: math.unit(1400, "lb"),
  11938. name: "Back",
  11939. image: {
  11940. source: "./media/characters/cordite/back.svg",
  11941. extra: 1938/1837,
  11942. bottom: 10/1948
  11943. }
  11944. },
  11945. feral: {
  11946. height: math.unit(2, "feet"),
  11947. weight: math.unit(90, "lb"),
  11948. name: "Feral",
  11949. image: {
  11950. source: "./media/characters/cordite/feral.svg",
  11951. extra: 1260 / 755,
  11952. bottom: 0.05
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(11, "feet"),
  11960. default: true
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(6, "feet"),
  11969. weight: math.unit(150, "lb"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/pianostrong/front.svg",
  11973. extra: 6577 / 6254,
  11974. bottom: 0.02
  11975. }
  11976. },
  11977. side: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(150, "lb"),
  11980. name: "Side",
  11981. image: {
  11982. source: "./media/characters/pianostrong/side.svg",
  11983. extra: 6106 / 5730
  11984. }
  11985. },
  11986. back: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(150, "lb"),
  11989. name: "Back",
  11990. image: {
  11991. source: "./media/characters/pianostrong/back.svg",
  11992. extra: 6085 / 5733,
  11993. bottom: 0.01
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(100, "feet")
  12001. },
  12002. {
  12003. name: "Macro+",
  12004. height: math.unit(300, "feet"),
  12005. default: true
  12006. },
  12007. {
  12008. name: "Macro++",
  12009. height: math.unit(1000, "feet")
  12010. },
  12011. ]
  12012. ))
  12013. characterMakers.push(() => makeCharacter(
  12014. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12015. {
  12016. front: {
  12017. height: math.unit(6, "feet"),
  12018. weight: math.unit(150, "lb"),
  12019. name: "Front",
  12020. image: {
  12021. source: "./media/characters/kona/front.svg",
  12022. extra: 2960 / 2629,
  12023. bottom: 0.005
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Normal",
  12030. height: math.unit(11 + 8 / 12, "feet")
  12031. },
  12032. {
  12033. name: "Macro",
  12034. height: math.unit(850, "feet"),
  12035. default: true
  12036. },
  12037. {
  12038. name: "Macro+",
  12039. height: math.unit(1.5, "km"),
  12040. default: true
  12041. },
  12042. {
  12043. name: "Megamacro",
  12044. height: math.unit(80, "miles")
  12045. },
  12046. {
  12047. name: "Gigamacro",
  12048. height: math.unit(3500, "miles")
  12049. },
  12050. ]
  12051. ))
  12052. characterMakers.push(() => makeCharacter(
  12053. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12054. {
  12055. side: {
  12056. height: math.unit(1.9, "meters"),
  12057. weight: math.unit(326, "kg"),
  12058. name: "Side",
  12059. image: {
  12060. source: "./media/characters/levi/side.svg",
  12061. extra: 1704 / 1334,
  12062. bottom: 0.02
  12063. }
  12064. },
  12065. },
  12066. [
  12067. {
  12068. name: "Normal",
  12069. height: math.unit(1.9, "meters"),
  12070. default: true
  12071. },
  12072. {
  12073. name: "Macro",
  12074. height: math.unit(20, "meters")
  12075. },
  12076. {
  12077. name: "Macro+",
  12078. height: math.unit(200, "meters")
  12079. },
  12080. {
  12081. name: "Megamacro",
  12082. height: math.unit(2, "km")
  12083. },
  12084. {
  12085. name: "Megamacro+",
  12086. height: math.unit(20, "km")
  12087. },
  12088. {
  12089. name: "Gigamacro",
  12090. height: math.unit(2500, "km")
  12091. },
  12092. {
  12093. name: "Gigamacro+",
  12094. height: math.unit(120000, "km")
  12095. },
  12096. {
  12097. name: "Teramacro",
  12098. height: math.unit(7.77e6, "km")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(6 + 4/12, "feet"),
  12107. weight: math.unit(190, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/bmc/front.svg",
  12111. extra: 1626/1472,
  12112. bottom: 79/1705
  12113. }
  12114. },
  12115. back: {
  12116. height: math.unit(6 + 4/12, "feet"),
  12117. weight: math.unit(190, "lb"),
  12118. name: "Back",
  12119. image: {
  12120. source: "./media/characters/bmc/back.svg",
  12121. extra: 1640/1479,
  12122. bottom: 45/1685
  12123. }
  12124. },
  12125. frontArmor: {
  12126. height: math.unit(6 + 4/12, "feet"),
  12127. weight: math.unit(190, "lb"),
  12128. name: "Front-armor",
  12129. image: {
  12130. source: "./media/characters/bmc/front-armor.svg",
  12131. extra: 1538/1468,
  12132. bottom: 79/1617
  12133. }
  12134. },
  12135. },
  12136. [
  12137. {
  12138. name: "Human-sized",
  12139. height: math.unit(6 + 4 / 12, "feet")
  12140. },
  12141. {
  12142. name: "Interactive Size",
  12143. height: math.unit(25, "feet")
  12144. },
  12145. {
  12146. name: "Small",
  12147. height: math.unit(250, "feet")
  12148. },
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(1250, "feet"),
  12152. default: true
  12153. },
  12154. {
  12155. name: "Good Day",
  12156. height: math.unit(88, "miles")
  12157. },
  12158. {
  12159. name: "Largest Measured Size",
  12160. height: math.unit(105.960, "galaxies")
  12161. },
  12162. ]
  12163. ))
  12164. characterMakers.push(() => makeCharacter(
  12165. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12166. {
  12167. front: {
  12168. height: math.unit(20, "feet"),
  12169. weight: math.unit(2016, "kg"),
  12170. name: "Front",
  12171. image: {
  12172. source: "./media/characters/sven-the-kaiju/front.svg",
  12173. extra: 1277/1250,
  12174. bottom: 35/1312
  12175. }
  12176. },
  12177. mouth: {
  12178. height: math.unit(1.85, "feet"),
  12179. name: "Mouth",
  12180. image: {
  12181. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Fairy",
  12188. height: math.unit(6, "inches")
  12189. },
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(20, "feet"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Rampage",
  12197. height: math.unit(200, "feet")
  12198. },
  12199. {
  12200. name: "Archfey Forest Guardian",
  12201. height: math.unit(1, "mile")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12207. {
  12208. front: {
  12209. height: math.unit(4, "meters"),
  12210. weight: math.unit(2, "tons"),
  12211. name: "Front",
  12212. image: {
  12213. source: "./media/characters/marik/front.svg",
  12214. extra: 1057 / 1003,
  12215. bottom: 0.08
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Normal",
  12222. height: math.unit(4, "meters"),
  12223. default: true
  12224. },
  12225. {
  12226. name: "Macro",
  12227. height: math.unit(20, "meters")
  12228. },
  12229. {
  12230. name: "Megamacro",
  12231. height: math.unit(50, "km")
  12232. },
  12233. {
  12234. name: "Gigamacro",
  12235. height: math.unit(100, "km")
  12236. },
  12237. {
  12238. name: "Alpha Macro",
  12239. height: math.unit(7.88e7, "yottameters")
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12245. {
  12246. front: {
  12247. height: math.unit(6, "feet"),
  12248. weight: math.unit(110, "lb"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/mel/front.svg",
  12252. extra: 736 / 617,
  12253. bottom: 0.017
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Pico",
  12260. height: math.unit(3, "pm")
  12261. },
  12262. {
  12263. name: "Nano",
  12264. height: math.unit(3, "nm")
  12265. },
  12266. {
  12267. name: "Micro",
  12268. height: math.unit(0.3, "mm"),
  12269. default: true
  12270. },
  12271. {
  12272. name: "Micro+",
  12273. height: math.unit(3, "mm")
  12274. },
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(5 + 10.5 / 12, "feet")
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12283. {
  12284. kaiju: {
  12285. height: math.unit(1.75, "meters"),
  12286. weight: math.unit(55, "kg"),
  12287. name: "Kaiju",
  12288. image: {
  12289. source: "./media/characters/lykonous/kaiju.svg",
  12290. extra: 1055 / 946,
  12291. bottom: 0.135
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Normal",
  12298. height: math.unit(2.5, "meters"),
  12299. default: true
  12300. },
  12301. {
  12302. name: "Kaiju Dragon",
  12303. height: math.unit(60, "meters")
  12304. },
  12305. {
  12306. name: "Mega Kaiju",
  12307. height: math.unit(120, "km")
  12308. },
  12309. {
  12310. name: "Giga Kaiju",
  12311. height: math.unit(200, "megameters")
  12312. },
  12313. {
  12314. name: "Terra Kaiju",
  12315. height: math.unit(400, "gigameters")
  12316. },
  12317. {
  12318. name: "Kaiju Dragon God",
  12319. height: math.unit(13000, "exaparsecs")
  12320. },
  12321. ]
  12322. ))
  12323. characterMakers.push(() => makeCharacter(
  12324. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12325. {
  12326. front: {
  12327. height: math.unit(6, "feet"),
  12328. weight: math.unit(150, "lb"),
  12329. name: "Front",
  12330. image: {
  12331. source: "./media/characters/blü/front.svg",
  12332. extra: 1883 / 1564,
  12333. bottom: 0.031
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(13, "feet"),
  12341. default: true
  12342. },
  12343. {
  12344. name: "Big Boi",
  12345. height: math.unit(150, "meters")
  12346. },
  12347. {
  12348. name: "Mini Stomper",
  12349. height: math.unit(300, "meters")
  12350. },
  12351. {
  12352. name: "Macro",
  12353. height: math.unit(1000, "meters")
  12354. },
  12355. {
  12356. name: "Megamacro",
  12357. height: math.unit(11000, "meters")
  12358. },
  12359. {
  12360. name: "Gigamacro",
  12361. height: math.unit(11000, "km")
  12362. },
  12363. {
  12364. name: "Teramacro",
  12365. height: math.unit(420000, "km")
  12366. },
  12367. {
  12368. name: "Examacro",
  12369. height: math.unit(120, "parsecs")
  12370. },
  12371. {
  12372. name: "God Tho",
  12373. height: math.unit(98000000000, "parsecs")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12379. {
  12380. taurFront: {
  12381. height: math.unit(6, "feet"),
  12382. weight: math.unit(200, "lb"),
  12383. name: "Taur (Front)",
  12384. image: {
  12385. source: "./media/characters/scales/taur-front.svg",
  12386. extra: 1,
  12387. bottom: 0.05
  12388. }
  12389. },
  12390. taurBack: {
  12391. height: math.unit(6, "feet"),
  12392. weight: math.unit(200, "lb"),
  12393. name: "Taur (Back)",
  12394. image: {
  12395. source: "./media/characters/scales/taur-back.svg",
  12396. extra: 1,
  12397. bottom: 0.08
  12398. }
  12399. },
  12400. anthro: {
  12401. height: math.unit(6 * 7 / 12, "feet"),
  12402. weight: math.unit(100, "lb"),
  12403. name: "Anthro",
  12404. image: {
  12405. source: "./media/characters/scales/anthro.svg",
  12406. extra: 1,
  12407. bottom: 0.06
  12408. }
  12409. },
  12410. },
  12411. [
  12412. {
  12413. name: "Normal",
  12414. height: math.unit(12, "feet"),
  12415. default: true
  12416. },
  12417. ]
  12418. ))
  12419. characterMakers.push(() => makeCharacter(
  12420. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12421. {
  12422. front: {
  12423. height: math.unit(6, "feet"),
  12424. weight: math.unit(150, "lb"),
  12425. name: "Front",
  12426. image: {
  12427. source: "./media/characters/koragos/front.svg",
  12428. extra: 841 / 794,
  12429. bottom: 0.035
  12430. }
  12431. },
  12432. back: {
  12433. height: math.unit(6, "feet"),
  12434. weight: math.unit(150, "lb"),
  12435. name: "Back",
  12436. image: {
  12437. source: "./media/characters/koragos/back.svg",
  12438. extra: 841 / 810,
  12439. bottom: 0.022
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(6 + 11 / 12, "feet"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Macro",
  12451. height: math.unit(490, "feet")
  12452. },
  12453. {
  12454. name: "Megamacro",
  12455. height: math.unit(10, "miles")
  12456. },
  12457. {
  12458. name: "Gigamacro",
  12459. height: math.unit(50, "miles")
  12460. },
  12461. ]
  12462. ))
  12463. characterMakers.push(() => makeCharacter(
  12464. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12465. {
  12466. front: {
  12467. height: math.unit(6, "feet"),
  12468. weight: math.unit(250, "lb"),
  12469. name: "Front",
  12470. image: {
  12471. source: "./media/characters/xylrem/front.svg",
  12472. extra: 3323 / 3050,
  12473. bottom: 0.065
  12474. }
  12475. },
  12476. },
  12477. [
  12478. {
  12479. name: "Micro",
  12480. height: math.unit(4, "feet")
  12481. },
  12482. {
  12483. name: "Normal",
  12484. height: math.unit(16, "feet"),
  12485. default: true
  12486. },
  12487. {
  12488. name: "Macro",
  12489. height: math.unit(2720, "feet")
  12490. },
  12491. {
  12492. name: "Megamacro",
  12493. height: math.unit(25000, "miles")
  12494. },
  12495. ]
  12496. ))
  12497. characterMakers.push(() => makeCharacter(
  12498. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12499. {
  12500. front: {
  12501. height: math.unit(8, "feet"),
  12502. weight: math.unit(250, "kg"),
  12503. name: "Front",
  12504. image: {
  12505. source: "./media/characters/ikideru/front.svg",
  12506. extra: 930 / 870,
  12507. bottom: 0.087
  12508. }
  12509. },
  12510. back: {
  12511. height: math.unit(8, "feet"),
  12512. weight: math.unit(250, "kg"),
  12513. name: "Back",
  12514. image: {
  12515. source: "./media/characters/ikideru/back.svg",
  12516. extra: 919 / 852,
  12517. bottom: 0.055
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Rare",
  12524. height: math.unit(8, "feet"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Playful Loom",
  12529. height: math.unit(80, "feet")
  12530. },
  12531. {
  12532. name: "City Leaner",
  12533. height: math.unit(230, "feet")
  12534. },
  12535. {
  12536. name: "Megamacro",
  12537. height: math.unit(2500, "feet")
  12538. },
  12539. {
  12540. name: "Gigamacro",
  12541. height: math.unit(26400, "feet")
  12542. },
  12543. {
  12544. name: "Tectonic Shifter",
  12545. height: math.unit(1.7, "megameters")
  12546. },
  12547. {
  12548. name: "Planet Carer",
  12549. height: math.unit(21, "megameters")
  12550. },
  12551. {
  12552. name: "God",
  12553. height: math.unit(11157.22, "parsecs")
  12554. },
  12555. ]
  12556. ))
  12557. characterMakers.push(() => makeCharacter(
  12558. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12559. {
  12560. front: {
  12561. height: math.unit(6, "feet"),
  12562. weight: math.unit(120, "lb"),
  12563. name: "Front",
  12564. image: {
  12565. source: "./media/characters/neo/front.svg"
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Micro",
  12572. height: math.unit(2, "inches"),
  12573. default: true
  12574. },
  12575. {
  12576. name: "Human Size",
  12577. height: math.unit(5 + 8 / 12, "feet")
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12583. {
  12584. front: {
  12585. height: math.unit(13 + 10 / 12, "feet"),
  12586. weight: math.unit(5320, "lb"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/chauncey-chantz/front.svg",
  12590. extra: 1587 / 1435,
  12591. bottom: 0.02
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(13 + 10 / 12, "feet"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Macro",
  12603. height: math.unit(45, "feet")
  12604. },
  12605. {
  12606. name: "Megamacro",
  12607. height: math.unit(250, "miles")
  12608. },
  12609. {
  12610. name: "Planetary",
  12611. height: math.unit(10000, "miles")
  12612. },
  12613. {
  12614. name: "Galactic",
  12615. height: math.unit(40000, "parsecs")
  12616. },
  12617. {
  12618. name: "Universal",
  12619. height: math.unit(1, "yottameter")
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12625. {
  12626. front: {
  12627. height: math.unit(6, "feet"),
  12628. weight: math.unit(150, "lb"),
  12629. name: "Front",
  12630. image: {
  12631. source: "./media/characters/epifox/front.svg",
  12632. extra: 1,
  12633. bottom: 0.075
  12634. }
  12635. },
  12636. },
  12637. [
  12638. {
  12639. name: "Micro",
  12640. height: math.unit(6, "inches")
  12641. },
  12642. {
  12643. name: "Normal",
  12644. height: math.unit(12, "feet"),
  12645. default: true
  12646. },
  12647. {
  12648. name: "Macro",
  12649. height: math.unit(3810, "feet")
  12650. },
  12651. {
  12652. name: "Megamacro",
  12653. height: math.unit(500, "miles")
  12654. },
  12655. ]
  12656. ))
  12657. characterMakers.push(() => makeCharacter(
  12658. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12659. {
  12660. front: {
  12661. height: math.unit(1.8796, "m"),
  12662. weight: math.unit(230, "lb"),
  12663. name: "Front",
  12664. image: {
  12665. source: "./media/characters/colin-t/front.svg",
  12666. extra: 1272 / 1193,
  12667. bottom: 0.07
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Micro",
  12674. height: math.unit(0.571, "meters")
  12675. },
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(1.8796, "meters"),
  12679. default: true
  12680. },
  12681. {
  12682. name: "Tall",
  12683. height: math.unit(4, "meters")
  12684. },
  12685. {
  12686. name: "Macro",
  12687. height: math.unit(67.241, "meters")
  12688. },
  12689. {
  12690. name: "Megamacro",
  12691. height: math.unit(371.856, "meters")
  12692. },
  12693. {
  12694. name: "Planetary",
  12695. height: math.unit(12631.5689, "km")
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(1.85, "meters"),
  12704. weight: math.unit(80, "kg"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/matvei/front.svg",
  12708. extra: 614 / 594,
  12709. bottom: 0.01
  12710. }
  12711. },
  12712. },
  12713. [
  12714. {
  12715. name: "Normal",
  12716. height: math.unit(1.85, "meters"),
  12717. default: true
  12718. },
  12719. ]
  12720. ))
  12721. characterMakers.push(() => makeCharacter(
  12722. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12723. {
  12724. front: {
  12725. height: math.unit(5 + 9 / 12, "feet"),
  12726. weight: math.unit(70, "lb"),
  12727. name: "Front",
  12728. image: {
  12729. source: "./media/characters/quincy/front.svg",
  12730. extra: 3041 / 2751
  12731. }
  12732. },
  12733. back: {
  12734. height: math.unit(5 + 9 / 12, "feet"),
  12735. weight: math.unit(70, "lb"),
  12736. name: "Back",
  12737. image: {
  12738. source: "./media/characters/quincy/back.svg",
  12739. extra: 3041 / 2751
  12740. }
  12741. },
  12742. flying: {
  12743. height: math.unit(5 + 4 / 12, "feet"),
  12744. weight: math.unit(70, "lb"),
  12745. name: "Flying",
  12746. image: {
  12747. source: "./media/characters/quincy/flying.svg",
  12748. extra: 1044 / 930
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Micro",
  12755. height: math.unit(3, "cm")
  12756. },
  12757. {
  12758. name: "Normal",
  12759. height: math.unit(5 + 9 / 12, "feet")
  12760. },
  12761. {
  12762. name: "Macro",
  12763. height: math.unit(200, "meters"),
  12764. default: true
  12765. },
  12766. {
  12767. name: "Megamacro",
  12768. height: math.unit(1000, "meters")
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12774. {
  12775. front: {
  12776. height: math.unit(3 + 11/12, "feet"),
  12777. weight: math.unit(50, "lb"),
  12778. name: "Front",
  12779. image: {
  12780. source: "./media/characters/vanrel/front.svg",
  12781. extra: 1104/949,
  12782. bottom: 52/1156
  12783. }
  12784. },
  12785. back: {
  12786. height: math.unit(3 + 11/12, "feet"),
  12787. weight: math.unit(50, "lb"),
  12788. name: "Back",
  12789. image: {
  12790. source: "./media/characters/vanrel/back.svg",
  12791. extra: 1119/976,
  12792. bottom: 37/1156
  12793. }
  12794. },
  12795. tome: {
  12796. height: math.unit(1.35, "feet"),
  12797. weight: math.unit(10, "lb"),
  12798. name: "Vanrel's Tome",
  12799. rename: true,
  12800. image: {
  12801. source: "./media/characters/vanrel/tome.svg"
  12802. }
  12803. },
  12804. beans: {
  12805. height: math.unit(0.89, "feet"),
  12806. name: "Beans",
  12807. image: {
  12808. source: "./media/characters/vanrel/beans.svg"
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(3 + 11/12, "feet"),
  12816. default: true
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12822. {
  12823. front: {
  12824. height: math.unit(7 + 5 / 12, "feet"),
  12825. name: "Front",
  12826. image: {
  12827. source: "./media/characters/kuiper-vanrel/front.svg",
  12828. extra: 1219/1169,
  12829. bottom: 69/1288
  12830. }
  12831. },
  12832. back: {
  12833. height: math.unit(7 + 5 / 12, "feet"),
  12834. name: "Back",
  12835. image: {
  12836. source: "./media/characters/kuiper-vanrel/back.svg",
  12837. extra: 1236/1193,
  12838. bottom: 27/1263
  12839. }
  12840. },
  12841. foot: {
  12842. height: math.unit(0.55, "meters"),
  12843. name: "Foot",
  12844. image: {
  12845. source: "./media/characters/kuiper-vanrel/foot.svg",
  12846. }
  12847. },
  12848. battle: {
  12849. height: math.unit(6.824, "feet"),
  12850. name: "Battle",
  12851. image: {
  12852. source: "./media/characters/kuiper-vanrel/battle.svg",
  12853. extra: 1466 / 1327,
  12854. bottom: 29 / 1492.5
  12855. }
  12856. },
  12857. meerkui: {
  12858. height: math.unit(18, "inches"),
  12859. name: "Meerkui",
  12860. image: {
  12861. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12862. extra: 1354/1289,
  12863. bottom: 69/1423
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(7 + 5 / 12, "feet"),
  12871. default: true
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(8 + 5 / 12, "feet"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/keset-vanrel/front.svg",
  12883. extra: 1231/1148,
  12884. bottom: 82/1313
  12885. }
  12886. },
  12887. back: {
  12888. height: math.unit(8 + 5 / 12, "feet"),
  12889. name: "Back",
  12890. image: {
  12891. source: "./media/characters/keset-vanrel/back.svg",
  12892. extra: 1240/1174,
  12893. bottom: 33/1273
  12894. }
  12895. },
  12896. hand: {
  12897. height: math.unit(0.6, "meters"),
  12898. name: "Hand",
  12899. image: {
  12900. source: "./media/characters/keset-vanrel/hand.svg"
  12901. }
  12902. },
  12903. foot: {
  12904. height: math.unit(0.94978, "meters"),
  12905. name: "Foot",
  12906. image: {
  12907. source: "./media/characters/keset-vanrel/foot.svg"
  12908. }
  12909. },
  12910. battle: {
  12911. height: math.unit(7.408, "feet"),
  12912. name: "Battle",
  12913. image: {
  12914. source: "./media/characters/keset-vanrel/battle.svg",
  12915. extra: 1890 / 1386,
  12916. bottom: 73.28 / 1970
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(8 + 5 / 12, "feet"),
  12924. default: true
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12930. {
  12931. front: {
  12932. height: math.unit(6, "feet"),
  12933. weight: math.unit(150, "lb"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/neos/front.svg",
  12937. extra: 1696 / 992,
  12938. bottom: 0.14
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Normal",
  12945. height: math.unit(54, "cm"),
  12946. default: true
  12947. },
  12948. {
  12949. name: "Macro",
  12950. height: math.unit(100, "m")
  12951. },
  12952. {
  12953. name: "Megamacro",
  12954. height: math.unit(10, "km")
  12955. },
  12956. {
  12957. name: "Megamacro+",
  12958. height: math.unit(100, "km")
  12959. },
  12960. {
  12961. name: "Gigamacro",
  12962. height: math.unit(100, "Mm")
  12963. },
  12964. {
  12965. name: "Teramacro",
  12966. height: math.unit(100, "Gm")
  12967. },
  12968. {
  12969. name: "Examacro",
  12970. height: math.unit(100, "Em")
  12971. },
  12972. {
  12973. name: "Godly",
  12974. height: math.unit(10000, "Ym")
  12975. },
  12976. {
  12977. name: "Beyond Godly",
  12978. height: math.unit(25, "multiverses")
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12984. {
  12985. feminine: {
  12986. height: math.unit(5, "feet"),
  12987. weight: math.unit(100, "lb"),
  12988. name: "Feminine",
  12989. image: {
  12990. source: "./media/characters/sammy-mouse/feminine.svg",
  12991. extra: 2526 / 2425,
  12992. bottom: 0.123
  12993. }
  12994. },
  12995. masculine: {
  12996. height: math.unit(5, "feet"),
  12997. weight: math.unit(100, "lb"),
  12998. name: "Masculine",
  12999. image: {
  13000. source: "./media/characters/sammy-mouse/masculine.svg",
  13001. extra: 2526 / 2425,
  13002. bottom: 0.123
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Micro",
  13009. height: math.unit(5, "inches")
  13010. },
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(5, "feet"),
  13014. default: true
  13015. },
  13016. {
  13017. name: "Macro",
  13018. height: math.unit(60, "feet")
  13019. },
  13020. ]
  13021. ))
  13022. characterMakers.push(() => makeCharacter(
  13023. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13024. {
  13025. front: {
  13026. height: math.unit(4, "feet"),
  13027. weight: math.unit(50, "lb"),
  13028. name: "Front",
  13029. image: {
  13030. source: "./media/characters/kole/front.svg",
  13031. extra: 1423 / 1303,
  13032. bottom: 0.025
  13033. }
  13034. },
  13035. back: {
  13036. height: math.unit(4, "feet"),
  13037. weight: math.unit(50, "lb"),
  13038. name: "Back",
  13039. image: {
  13040. source: "./media/characters/kole/back.svg",
  13041. extra: 1426 / 1280,
  13042. bottom: 0.02
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Normal",
  13049. height: math.unit(4, "feet"),
  13050. default: true
  13051. },
  13052. ]
  13053. ))
  13054. characterMakers.push(() => makeCharacter(
  13055. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13056. {
  13057. front: {
  13058. height: math.unit(2.5, "feet"),
  13059. weight: math.unit(32, "lb"),
  13060. name: "Front",
  13061. image: {
  13062. source: "./media/characters/rufran/front.svg",
  13063. extra: 1313/885,
  13064. bottom: 94/1407
  13065. }
  13066. },
  13067. side: {
  13068. height: math.unit(2.5, "feet"),
  13069. weight: math.unit(32, "lb"),
  13070. name: "Side",
  13071. image: {
  13072. source: "./media/characters/rufran/side.svg",
  13073. extra: 1109/852,
  13074. bottom: 118/1227
  13075. }
  13076. },
  13077. back: {
  13078. height: math.unit(2.5, "feet"),
  13079. weight: math.unit(32, "lb"),
  13080. name: "Back",
  13081. image: {
  13082. source: "./media/characters/rufran/back.svg",
  13083. extra: 1280/878,
  13084. bottom: 131/1411
  13085. }
  13086. },
  13087. mouth: {
  13088. height: math.unit(1.13, "feet"),
  13089. name: "Mouth",
  13090. image: {
  13091. source: "./media/characters/rufran/mouth.svg"
  13092. }
  13093. },
  13094. foot: {
  13095. height: math.unit(1.33, "feet"),
  13096. name: "Foot",
  13097. image: {
  13098. source: "./media/characters/rufran/foot.svg"
  13099. }
  13100. },
  13101. koboldFront: {
  13102. height: math.unit(2 + 6 / 12, "feet"),
  13103. weight: math.unit(20, "lb"),
  13104. name: "Front (Kobold)",
  13105. image: {
  13106. source: "./media/characters/rufran/kobold-front.svg",
  13107. extra: 2041 / 1839,
  13108. bottom: 0.055
  13109. }
  13110. },
  13111. koboldBack: {
  13112. height: math.unit(2 + 6 / 12, "feet"),
  13113. weight: math.unit(20, "lb"),
  13114. name: "Back (Kobold)",
  13115. image: {
  13116. source: "./media/characters/rufran/kobold-back.svg",
  13117. extra: 2054 / 1839,
  13118. bottom: 0.01
  13119. }
  13120. },
  13121. koboldHand: {
  13122. height: math.unit(0.2166, "meters"),
  13123. name: "Hand (Kobold)",
  13124. image: {
  13125. source: "./media/characters/rufran/kobold-hand.svg"
  13126. }
  13127. },
  13128. koboldFoot: {
  13129. height: math.unit(0.185, "meters"),
  13130. name: "Foot (Kobold)",
  13131. image: {
  13132. source: "./media/characters/rufran/kobold-foot.svg"
  13133. }
  13134. },
  13135. },
  13136. [
  13137. {
  13138. name: "Micro",
  13139. height: math.unit(1, "inch")
  13140. },
  13141. {
  13142. name: "Normal",
  13143. height: math.unit(2 + 6 / 12, "feet"),
  13144. default: true
  13145. },
  13146. {
  13147. name: "Big",
  13148. height: math.unit(60, "feet")
  13149. },
  13150. {
  13151. name: "Macro",
  13152. height: math.unit(325, "feet")
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13158. {
  13159. front: {
  13160. height: math.unit(0.3, "meters"),
  13161. weight: math.unit(3.5, "kg"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/chip/front.svg",
  13165. extra: 748 / 674
  13166. }
  13167. },
  13168. },
  13169. [
  13170. {
  13171. name: "Micro",
  13172. height: math.unit(1, "inch"),
  13173. default: true
  13174. },
  13175. ]
  13176. ))
  13177. characterMakers.push(() => makeCharacter(
  13178. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13179. {
  13180. side: {
  13181. height: math.unit(2.3, "meters"),
  13182. weight: math.unit(3500, "lb"),
  13183. name: "Side",
  13184. image: {
  13185. source: "./media/characters/torvid/side.svg",
  13186. extra: 1972 / 722,
  13187. bottom: 0.035
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Normal",
  13194. height: math.unit(2.3, "meters"),
  13195. default: true
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(2, "meters"),
  13204. weight: math.unit(150.5, "kg"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/susan/front.svg",
  13208. extra: 693 / 635,
  13209. bottom: 0.05
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Megamacro",
  13216. height: math.unit(505, "miles"),
  13217. default: true
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(150, "lb"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/raindrops/front.svg",
  13230. extra: 2655 / 2461,
  13231. bottom: 49 / 2705
  13232. }
  13233. },
  13234. back: {
  13235. height: math.unit(6, "feet"),
  13236. weight: math.unit(150, "lb"),
  13237. name: "Back",
  13238. image: {
  13239. source: "./media/characters/raindrops/back.svg",
  13240. extra: 2574 / 2400,
  13241. bottom: 65 / 2634
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Micro",
  13248. height: math.unit(6, "inches")
  13249. },
  13250. {
  13251. name: "Normal",
  13252. height: math.unit(6 + 2 / 12, "feet")
  13253. },
  13254. {
  13255. name: "Macro",
  13256. height: math.unit(131, "feet"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Megamacro",
  13261. height: math.unit(15, "miles")
  13262. },
  13263. {
  13264. name: "Gigamacro",
  13265. height: math.unit(4000, "miles")
  13266. },
  13267. {
  13268. name: "Teramacro",
  13269. height: math.unit(315000, "miles")
  13270. },
  13271. ]
  13272. ))
  13273. characterMakers.push(() => makeCharacter(
  13274. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13275. {
  13276. front: {
  13277. height: math.unit(2.794, "meters"),
  13278. weight: math.unit(325, "kg"),
  13279. name: "Front",
  13280. image: {
  13281. source: "./media/characters/tezwa/front.svg",
  13282. extra: 2083 / 1906,
  13283. bottom: 0.031
  13284. }
  13285. },
  13286. foot: {
  13287. height: math.unit(0.687, "meters"),
  13288. name: "Foot",
  13289. image: {
  13290. source: "./media/characters/tezwa/foot.svg"
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Normal",
  13297. height: math.unit(9 + 2 / 12, "feet"),
  13298. default: true
  13299. },
  13300. ]
  13301. ))
  13302. characterMakers.push(() => makeCharacter(
  13303. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13304. {
  13305. front: {
  13306. height: math.unit(58, "feet"),
  13307. weight: math.unit(89000, "lb"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/typhus/front.svg",
  13311. extra: 816 / 800,
  13312. bottom: 0.065
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Macro",
  13319. height: math.unit(58, "feet"),
  13320. default: true
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(12, "feet"),
  13329. weight: math.unit(6, "tonnes"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/lyra-von-wulf/front.svg",
  13333. extra: 1,
  13334. bottom: 0.10
  13335. }
  13336. },
  13337. frontMecha: {
  13338. height: math.unit(12, "feet"),
  13339. weight: math.unit(12, "tonnes"),
  13340. name: "Front (Mecha)",
  13341. image: {
  13342. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13343. extra: 1,
  13344. bottom: 0.042
  13345. }
  13346. },
  13347. maw: {
  13348. height: math.unit(2.2, "feet"),
  13349. name: "Maw",
  13350. image: {
  13351. source: "./media/characters/lyra-von-wulf/maw.svg"
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(12, "feet"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Classic",
  13363. height: math.unit(50, "feet")
  13364. },
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(500, "feet")
  13368. },
  13369. {
  13370. name: "Megamacro",
  13371. height: math.unit(1, "mile")
  13372. },
  13373. {
  13374. name: "Gigamacro",
  13375. height: math.unit(400, "miles")
  13376. },
  13377. {
  13378. name: "Teramacro",
  13379. height: math.unit(22000, "miles")
  13380. },
  13381. {
  13382. name: "Solarmacro",
  13383. height: math.unit(8600000, "miles")
  13384. },
  13385. {
  13386. name: "Galactic",
  13387. height: math.unit(1057000, "lightyears")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13393. {
  13394. front: {
  13395. height: math.unit(6 + 10 / 12, "feet"),
  13396. weight: math.unit(150, "lb"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/dixon/front.svg",
  13400. extra: 3361 / 3209,
  13401. bottom: 0.01
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(6 + 10 / 12, "feet"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Big",
  13413. height: math.unit(12, "meters")
  13414. },
  13415. {
  13416. name: "Macro",
  13417. height: math.unit(500, "meters")
  13418. },
  13419. {
  13420. name: "Megamacro",
  13421. height: math.unit(2, "km")
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(185, "cm"),
  13430. weight: math.unit(68, "kg"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/kauko/front.svg",
  13434. extra: 1455 / 1421,
  13435. bottom: 0.03
  13436. }
  13437. },
  13438. back: {
  13439. height: math.unit(185, "cm"),
  13440. weight: math.unit(68, "kg"),
  13441. name: "Back",
  13442. image: {
  13443. source: "./media/characters/kauko/back.svg",
  13444. extra: 1455 / 1421,
  13445. bottom: 0.004
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(185, "cm"),
  13453. default: true
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13459. {
  13460. front: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(150, "kg"),
  13463. name: "Front",
  13464. image: {
  13465. source: "./media/characters/varg/front.svg",
  13466. extra: 1108 / 1018,
  13467. bottom: 0.0375
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(5, "meters")
  13475. },
  13476. {
  13477. name: "Macro",
  13478. height: math.unit(200, "meters")
  13479. },
  13480. {
  13481. name: "Megamacro",
  13482. height: math.unit(20, "kilometers")
  13483. },
  13484. {
  13485. name: "True Size",
  13486. height: math.unit(211, "km"),
  13487. default: true
  13488. },
  13489. {
  13490. name: "Gigamacro",
  13491. height: math.unit(1000, "km")
  13492. },
  13493. {
  13494. name: "Gigamacro+",
  13495. height: math.unit(8000, "km")
  13496. },
  13497. {
  13498. name: "Teramacro",
  13499. height: math.unit(1000000, "km")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13505. {
  13506. front: {
  13507. height: math.unit(7 + 7 / 12, "feet"),
  13508. weight: math.unit(267, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/dayza/front.svg",
  13512. extra: 1262 / 1200,
  13513. bottom: 0.035
  13514. }
  13515. },
  13516. side: {
  13517. height: math.unit(7 + 7 / 12, "feet"),
  13518. weight: math.unit(267, "lb"),
  13519. name: "Side",
  13520. image: {
  13521. source: "./media/characters/dayza/side.svg",
  13522. extra: 1295 / 1245,
  13523. bottom: 0.05
  13524. }
  13525. },
  13526. back: {
  13527. height: math.unit(7 + 7 / 12, "feet"),
  13528. weight: math.unit(267, "lb"),
  13529. name: "Back",
  13530. image: {
  13531. source: "./media/characters/dayza/back.svg",
  13532. extra: 1241 / 1170
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Normal",
  13539. height: math.unit(7 + 7 / 12, "feet"),
  13540. default: true
  13541. },
  13542. {
  13543. name: "Macro",
  13544. height: math.unit(155, "feet")
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13550. {
  13551. front: {
  13552. height: math.unit(6 + 5 / 12, "feet"),
  13553. weight: math.unit(160, "lb"),
  13554. name: "Front",
  13555. image: {
  13556. source: "./media/characters/xanthos/front.svg",
  13557. extra: 1,
  13558. bottom: 0.04
  13559. }
  13560. },
  13561. back: {
  13562. height: math.unit(6 + 5 / 12, "feet"),
  13563. weight: math.unit(160, "lb"),
  13564. name: "Back",
  13565. image: {
  13566. source: "./media/characters/xanthos/back.svg",
  13567. extra: 1,
  13568. bottom: 0.03
  13569. }
  13570. },
  13571. hand: {
  13572. height: math.unit(0.928, "feet"),
  13573. name: "Hand",
  13574. image: {
  13575. source: "./media/characters/xanthos/hand.svg"
  13576. }
  13577. },
  13578. foot: {
  13579. height: math.unit(1.286, "feet"),
  13580. name: "Foot",
  13581. image: {
  13582. source: "./media/characters/xanthos/foot.svg"
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Normal",
  13589. height: math.unit(6 + 5 / 12, "feet"),
  13590. default: true
  13591. },
  13592. {
  13593. name: "Normal+",
  13594. height: math.unit(6, "meters")
  13595. },
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(40, "feet")
  13599. },
  13600. {
  13601. name: "Macro+",
  13602. height: math.unit(200, "meters")
  13603. },
  13604. {
  13605. name: "Megamacro",
  13606. height: math.unit(20, "km")
  13607. },
  13608. {
  13609. name: "Megamacro+",
  13610. height: math.unit(100, "km")
  13611. },
  13612. {
  13613. name: "Gigamacro",
  13614. height: math.unit(200, "megameters")
  13615. },
  13616. {
  13617. name: "Gigamacro+",
  13618. height: math.unit(1.5, "gigameters")
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13624. {
  13625. front: {
  13626. height: math.unit(6 + 3 / 12, "feet"),
  13627. weight: math.unit(215, "lb"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/grynn/front.svg",
  13631. extra: 4627 / 4209,
  13632. bottom: 0.047
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Micro",
  13639. height: math.unit(6, "inches")
  13640. },
  13641. {
  13642. name: "Normal",
  13643. height: math.unit(6 + 3 / 12, "feet"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Big",
  13648. height: math.unit(104, "feet")
  13649. },
  13650. {
  13651. name: "Macro",
  13652. height: math.unit(944, "feet")
  13653. },
  13654. {
  13655. name: "Macro+",
  13656. height: math.unit(9480, "feet")
  13657. },
  13658. {
  13659. name: "Megamacro",
  13660. height: math.unit(78752, "feet")
  13661. },
  13662. {
  13663. name: "Megamacro+",
  13664. height: math.unit(630128, "feet")
  13665. },
  13666. {
  13667. name: "Megamacro++",
  13668. height: math.unit(3150695, "feet")
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(7 + 5 / 12, "feet"),
  13677. weight: math.unit(450, "lb"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/mocha-aura/front.svg",
  13681. extra: 1907 / 1817,
  13682. bottom: 0.04
  13683. }
  13684. },
  13685. back: {
  13686. height: math.unit(7 + 5 / 12, "feet"),
  13687. weight: math.unit(450, "lb"),
  13688. name: "Back",
  13689. image: {
  13690. source: "./media/characters/mocha-aura/back.svg",
  13691. extra: 1900 / 1825,
  13692. bottom: 0.045
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Nano",
  13699. height: math.unit(1, "nm")
  13700. },
  13701. {
  13702. name: "Megamicro",
  13703. height: math.unit(1, "mm")
  13704. },
  13705. {
  13706. name: "Micro",
  13707. height: math.unit(3, "inches")
  13708. },
  13709. {
  13710. name: "Normal",
  13711. height: math.unit(7 + 5 / 12, "feet"),
  13712. default: true
  13713. },
  13714. {
  13715. name: "Macro",
  13716. height: math.unit(30, "feet")
  13717. },
  13718. {
  13719. name: "Megamacro",
  13720. height: math.unit(3500, "feet")
  13721. },
  13722. {
  13723. name: "Teramacro",
  13724. height: math.unit(500000, "miles")
  13725. },
  13726. {
  13727. name: "Petamacro",
  13728. height: math.unit(50000000000000000, "parsecs")
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(6, "feet"),
  13737. weight: math.unit(150, "lb"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/ilisha-devya/front.svg",
  13741. extra: 1053/1049,
  13742. bottom: 270/1323
  13743. }
  13744. },
  13745. back: {
  13746. height: math.unit(6, "feet"),
  13747. weight: math.unit(150, "lb"),
  13748. name: "Back",
  13749. image: {
  13750. source: "./media/characters/ilisha-devya/back.svg",
  13751. extra: 1131/1128,
  13752. bottom: 39/1170
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Macro",
  13759. height: math.unit(500, "feet"),
  13760. default: true
  13761. },
  13762. {
  13763. name: "Megamacro",
  13764. height: math.unit(10, "miles")
  13765. },
  13766. {
  13767. name: "Gigamacro",
  13768. height: math.unit(100000, "miles")
  13769. },
  13770. {
  13771. name: "Examacro",
  13772. height: math.unit(1e9, "lightyears")
  13773. },
  13774. {
  13775. name: "Omniversal",
  13776. height: math.unit(1e33, "lightyears")
  13777. },
  13778. {
  13779. name: "Beyond Infinite",
  13780. height: math.unit(1e100, "lightyears")
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13786. {
  13787. Side: {
  13788. height: math.unit(6, "feet"),
  13789. weight: math.unit(150, "lb"),
  13790. name: "Side",
  13791. image: {
  13792. source: "./media/characters/mira/side.svg",
  13793. extra: 900 / 799,
  13794. bottom: 0.02
  13795. }
  13796. },
  13797. },
  13798. [
  13799. {
  13800. name: "Human Size",
  13801. height: math.unit(6, "feet")
  13802. },
  13803. {
  13804. name: "Macro",
  13805. height: math.unit(100, "feet"),
  13806. default: true
  13807. },
  13808. {
  13809. name: "Megamacro",
  13810. height: math.unit(10, "miles")
  13811. },
  13812. {
  13813. name: "Gigamacro",
  13814. height: math.unit(25000, "miles")
  13815. },
  13816. {
  13817. name: "Teramacro",
  13818. height: math.unit(300, "AU")
  13819. },
  13820. {
  13821. name: "Full Size",
  13822. height: math.unit(4.5e10, "lightyears")
  13823. },
  13824. ]
  13825. ))
  13826. characterMakers.push(() => makeCharacter(
  13827. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13828. {
  13829. front: {
  13830. height: math.unit(6, "feet"),
  13831. weight: math.unit(150, "lb"),
  13832. name: "Front",
  13833. image: {
  13834. source: "./media/characters/holly/front.svg",
  13835. extra: 639 / 606
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(6, "feet"),
  13840. weight: math.unit(150, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/holly/back.svg",
  13844. extra: 623 / 598
  13845. }
  13846. },
  13847. frontWorking: {
  13848. height: math.unit(6, "feet"),
  13849. weight: math.unit(150, "lb"),
  13850. name: "Front (Working)",
  13851. image: {
  13852. source: "./media/characters/holly/front-working.svg",
  13853. extra: 607 / 577,
  13854. bottom: 0.048
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "Normal",
  13861. height: math.unit(12 + 3 / 12, "feet"),
  13862. default: true
  13863. },
  13864. ]
  13865. ))
  13866. characterMakers.push(() => makeCharacter(
  13867. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13868. {
  13869. front: {
  13870. height: math.unit(6, "feet"),
  13871. weight: math.unit(150, "lb"),
  13872. name: "Front",
  13873. image: {
  13874. source: "./media/characters/porter/front.svg",
  13875. extra: 1,
  13876. bottom: 0.01
  13877. }
  13878. },
  13879. frontRobes: {
  13880. height: math.unit(6, "feet"),
  13881. weight: math.unit(150, "lb"),
  13882. name: "Front (Robes)",
  13883. image: {
  13884. source: "./media/characters/porter/front-robes.svg",
  13885. extra: 1.01,
  13886. bottom: 0.01
  13887. }
  13888. },
  13889. },
  13890. [
  13891. {
  13892. name: "Normal",
  13893. height: math.unit(11 + 9 / 12, "feet"),
  13894. default: true
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13900. {
  13901. legendary: {
  13902. height: math.unit(6, "feet"),
  13903. weight: math.unit(150, "lb"),
  13904. name: "Legendary",
  13905. image: {
  13906. source: "./media/characters/lucy/legendary.svg",
  13907. extra: 1355 / 1100,
  13908. bottom: 0.045
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Legendary",
  13915. height: math.unit(86882 * 2, "miles"),
  13916. default: true
  13917. },
  13918. ]
  13919. ))
  13920. characterMakers.push(() => makeCharacter(
  13921. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13922. {
  13923. front: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(150, "lb"),
  13926. name: "Front",
  13927. image: {
  13928. source: "./media/characters/drusilla/front.svg",
  13929. extra: 678 / 635,
  13930. bottom: 0.03
  13931. }
  13932. },
  13933. back: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(150, "lb"),
  13936. name: "Back",
  13937. image: {
  13938. source: "./media/characters/drusilla/back.svg",
  13939. extra: 678 / 635,
  13940. bottom: 0.005
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Macro",
  13947. height: math.unit(100, "feet")
  13948. },
  13949. {
  13950. name: "Canon Height",
  13951. height: math.unit(2000, "feet"),
  13952. default: true
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(6, "feet"),
  13961. weight: math.unit(180, "lb"),
  13962. name: "Front",
  13963. image: {
  13964. source: "./media/characters/renard-thatch/front.svg",
  13965. extra: 2411 / 2275,
  13966. bottom: 0.01
  13967. }
  13968. },
  13969. frontPosing: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(180, "lb"),
  13972. name: "Front (Posing)",
  13973. image: {
  13974. source: "./media/characters/renard-thatch/front-posing.svg",
  13975. extra: 2381 / 2261,
  13976. bottom: 0.01
  13977. }
  13978. },
  13979. back: {
  13980. height: math.unit(6, "feet"),
  13981. weight: math.unit(180, "lb"),
  13982. name: "Back",
  13983. image: {
  13984. source: "./media/characters/renard-thatch/back.svg",
  13985. extra: 2428 / 2288
  13986. }
  13987. },
  13988. },
  13989. [
  13990. {
  13991. name: "Micro",
  13992. height: math.unit(3, "inches")
  13993. },
  13994. {
  13995. name: "Default",
  13996. height: math.unit(6, "feet"),
  13997. default: true
  13998. },
  13999. {
  14000. name: "Macro",
  14001. height: math.unit(75, "feet")
  14002. },
  14003. ]
  14004. ))
  14005. characterMakers.push(() => makeCharacter(
  14006. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14007. {
  14008. front: {
  14009. height: math.unit(1450, "feet"),
  14010. weight: math.unit(1.21e6, "tons"),
  14011. name: "Front",
  14012. image: {
  14013. source: "./media/characters/sekvra/front.svg",
  14014. extra: 1193/1190,
  14015. bottom: 78/1271
  14016. }
  14017. },
  14018. side: {
  14019. height: math.unit(1450, "feet"),
  14020. weight: math.unit(1.21e6, "tons"),
  14021. name: "Side",
  14022. image: {
  14023. source: "./media/characters/sekvra/side.svg",
  14024. extra: 1193/1190,
  14025. bottom: 52/1245
  14026. }
  14027. },
  14028. back: {
  14029. height: math.unit(1450, "feet"),
  14030. weight: math.unit(1.21e6, "tons"),
  14031. name: "Back",
  14032. image: {
  14033. source: "./media/characters/sekvra/back.svg",
  14034. extra: 1219/1216,
  14035. bottom: 21/1240
  14036. }
  14037. },
  14038. frontClothed: {
  14039. height: math.unit(1450, "feet"),
  14040. weight: math.unit(1.21e6, "tons"),
  14041. name: "Front (Clothed)",
  14042. image: {
  14043. source: "./media/characters/sekvra/front-clothed.svg",
  14044. extra: 1192/1189,
  14045. bottom: 79/1271
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Macro",
  14052. height: math.unit(1450, "feet"),
  14053. default: true
  14054. },
  14055. {
  14056. name: "Megamacro",
  14057. height: math.unit(15000, "feet")
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14063. {
  14064. front: {
  14065. height: math.unit(6, "feet"),
  14066. weight: math.unit(150, "lb"),
  14067. name: "Front",
  14068. image: {
  14069. source: "./media/characters/carmine/front.svg",
  14070. extra: 1,
  14071. bottom: 0.035
  14072. }
  14073. },
  14074. frontArmor: {
  14075. height: math.unit(6, "feet"),
  14076. weight: math.unit(150, "lb"),
  14077. name: "Front (Armor)",
  14078. image: {
  14079. source: "./media/characters/carmine/front-armor.svg",
  14080. extra: 1,
  14081. bottom: 0.035
  14082. }
  14083. },
  14084. },
  14085. [
  14086. {
  14087. name: "Large",
  14088. height: math.unit(1, "mile")
  14089. },
  14090. {
  14091. name: "Huge",
  14092. height: math.unit(40, "miles"),
  14093. default: true
  14094. },
  14095. {
  14096. name: "Colossal",
  14097. height: math.unit(2500, "miles")
  14098. },
  14099. ]
  14100. ))
  14101. characterMakers.push(() => makeCharacter(
  14102. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14103. {
  14104. front: {
  14105. height: math.unit(6, "feet"),
  14106. weight: math.unit(150, "lb"),
  14107. name: "Front",
  14108. image: {
  14109. source: "./media/characters/elyssia/front.svg",
  14110. extra: 2201 / 2035,
  14111. bottom: 0.05
  14112. }
  14113. },
  14114. frontClothed: {
  14115. height: math.unit(6, "feet"),
  14116. weight: math.unit(150, "lb"),
  14117. name: "Front (Clothed)",
  14118. image: {
  14119. source: "./media/characters/elyssia/front-clothed.svg",
  14120. extra: 2201 / 2035,
  14121. bottom: 0.05
  14122. }
  14123. },
  14124. back: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(150, "lb"),
  14127. name: "Back",
  14128. image: {
  14129. source: "./media/characters/elyssia/back.svg",
  14130. extra: 2201 / 2035,
  14131. bottom: 0.013
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Smaller",
  14138. height: math.unit(150, "feet")
  14139. },
  14140. {
  14141. name: "Standard",
  14142. height: math.unit(1400, "feet"),
  14143. default: true
  14144. },
  14145. {
  14146. name: "Distracted",
  14147. height: math.unit(15000, "feet")
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14153. {
  14154. front: {
  14155. height: math.unit(7 + 4/12, "feet"),
  14156. weight: math.unit(690, "lb"),
  14157. name: "Front",
  14158. image: {
  14159. source: "./media/characters/geno-maxwell/front.svg",
  14160. extra: 984/856,
  14161. bottom: 87/1071
  14162. }
  14163. },
  14164. back: {
  14165. height: math.unit(7 + 4/12, "feet"),
  14166. weight: math.unit(690, "lb"),
  14167. name: "Back",
  14168. image: {
  14169. source: "./media/characters/geno-maxwell/back.svg",
  14170. extra: 981/854,
  14171. bottom: 57/1038
  14172. }
  14173. },
  14174. frontCostume: {
  14175. height: math.unit(7 + 4/12, "feet"),
  14176. weight: math.unit(690, "lb"),
  14177. name: "Front (Costume)",
  14178. image: {
  14179. source: "./media/characters/geno-maxwell/front-costume.svg",
  14180. extra: 984/856,
  14181. bottom: 87/1071
  14182. }
  14183. },
  14184. backcostume: {
  14185. height: math.unit(7 + 4/12, "feet"),
  14186. weight: math.unit(690, "lb"),
  14187. name: "Back (Costume)",
  14188. image: {
  14189. source: "./media/characters/geno-maxwell/back-costume.svg",
  14190. extra: 981/854,
  14191. bottom: 57/1038
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Micro",
  14198. height: math.unit(3, "inches")
  14199. },
  14200. {
  14201. name: "Normal",
  14202. height: math.unit(7 + 4 / 12, "feet"),
  14203. default: true
  14204. },
  14205. {
  14206. name: "Macro",
  14207. height: math.unit(220, "feet")
  14208. },
  14209. {
  14210. name: "Megamacro",
  14211. height: math.unit(11, "miles")
  14212. },
  14213. ]
  14214. ))
  14215. characterMakers.push(() => makeCharacter(
  14216. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14217. {
  14218. front: {
  14219. height: math.unit(7 + 4/12, "feet"),
  14220. weight: math.unit(750, "lb"),
  14221. name: "Front",
  14222. image: {
  14223. source: "./media/characters/regena-maxwell/front.svg",
  14224. extra: 984/856,
  14225. bottom: 87/1071
  14226. }
  14227. },
  14228. back: {
  14229. height: math.unit(7 + 4/12, "feet"),
  14230. weight: math.unit(750, "lb"),
  14231. name: "Back",
  14232. image: {
  14233. source: "./media/characters/regena-maxwell/back.svg",
  14234. extra: 981/854,
  14235. bottom: 57/1038
  14236. }
  14237. },
  14238. frontCostume: {
  14239. height: math.unit(7 + 4/12, "feet"),
  14240. weight: math.unit(750, "lb"),
  14241. name: "Front (Costume)",
  14242. image: {
  14243. source: "./media/characters/regena-maxwell/front-costume.svg",
  14244. extra: 984/856,
  14245. bottom: 87/1071
  14246. }
  14247. },
  14248. backcostume: {
  14249. height: math.unit(7 + 4/12, "feet"),
  14250. weight: math.unit(750, "lb"),
  14251. name: "Back (Costume)",
  14252. image: {
  14253. source: "./media/characters/regena-maxwell/back-costume.svg",
  14254. extra: 981/854,
  14255. bottom: 57/1038
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(7 + 4 / 12, "feet"),
  14263. default: true
  14264. },
  14265. {
  14266. name: "Macro",
  14267. height: math.unit(220, "feet")
  14268. },
  14269. {
  14270. name: "Megamacro",
  14271. height: math.unit(11, "miles")
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14277. {
  14278. front: {
  14279. height: math.unit(6, "feet"),
  14280. weight: math.unit(150, "lb"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14284. extra: 860 / 690,
  14285. bottom: 0.03
  14286. }
  14287. },
  14288. },
  14289. [
  14290. {
  14291. name: "Normal",
  14292. height: math.unit(1.7, "meters"),
  14293. default: true
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14299. {
  14300. front: {
  14301. height: math.unit(6, "feet"),
  14302. weight: math.unit(150, "lb"),
  14303. name: "Front",
  14304. image: {
  14305. source: "./media/characters/quilly/front.svg",
  14306. extra: 890 / 776
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Gigamacro",
  14313. height: math.unit(404090, "miles"),
  14314. default: true
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14320. {
  14321. front: {
  14322. height: math.unit(7 + 8 / 12, "feet"),
  14323. weight: math.unit(350, "lb"),
  14324. name: "Front",
  14325. image: {
  14326. source: "./media/characters/tempest/front.svg",
  14327. extra: 1175 / 1086,
  14328. bottom: 0.02
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Normal",
  14335. height: math.unit(7 + 8 / 12, "feet"),
  14336. default: true
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14342. {
  14343. side: {
  14344. height: math.unit(4 + 5 / 12, "feet"),
  14345. weight: math.unit(80, "lb"),
  14346. name: "Side",
  14347. image: {
  14348. source: "./media/characters/rodger/side.svg",
  14349. extra: 1235 / 1118
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Micro",
  14356. height: math.unit(1, "inch")
  14357. },
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(4 + 5 / 12, "feet"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Macro",
  14365. height: math.unit(120, "feet")
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(6, "feet"),
  14374. weight: math.unit(150, "lb"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/danyel/front.svg",
  14378. extra: 1185 / 1123,
  14379. bottom: 0.05
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Shrunken",
  14386. height: math.unit(0.5, "mm")
  14387. },
  14388. {
  14389. name: "Micro",
  14390. height: math.unit(1, "mm"),
  14391. default: true
  14392. },
  14393. {
  14394. name: "Upsized",
  14395. height: math.unit(5 + 5 / 12, "feet")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(5 + 6 / 12, "feet"),
  14404. weight: math.unit(200, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/vivian-bijoux/front.svg",
  14408. extra: 1217/1209,
  14409. bottom: 76/1293
  14410. }
  14411. },
  14412. back: {
  14413. height: math.unit(5 + 6 / 12, "feet"),
  14414. weight: math.unit(200, "lb"),
  14415. name: "Back",
  14416. image: {
  14417. source: "./media/characters/vivian-bijoux/back.svg",
  14418. extra: 1214/1208,
  14419. bottom: 51/1265
  14420. }
  14421. },
  14422. dressed: {
  14423. height: math.unit(5 + 6 / 12, "feet"),
  14424. weight: math.unit(200, "lb"),
  14425. name: "Dressed",
  14426. image: {
  14427. source: "./media/characters/vivian-bijoux/dressed.svg",
  14428. extra: 1217/1209,
  14429. bottom: 76/1293
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(5 + 6 / 12, "feet"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Bad Dream",
  14441. height: math.unit(500, "feet")
  14442. },
  14443. {
  14444. name: "Nightmare",
  14445. height: math.unit(500, "miles")
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(6 + 1 / 12, "feet"),
  14454. weight: math.unit(260, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/zeta/front.svg",
  14458. extra: 1968 / 1889,
  14459. bottom: 0.06
  14460. }
  14461. },
  14462. back: {
  14463. height: math.unit(6 + 1 / 12, "feet"),
  14464. weight: math.unit(260, "lb"),
  14465. name: "Back",
  14466. image: {
  14467. source: "./media/characters/zeta/back.svg",
  14468. extra: 1944 / 1858,
  14469. bottom: 0.03
  14470. }
  14471. },
  14472. hand: {
  14473. height: math.unit(1.112, "feet"),
  14474. name: "Hand",
  14475. image: {
  14476. source: "./media/characters/zeta/hand.svg"
  14477. }
  14478. },
  14479. foot: {
  14480. height: math.unit(1.48, "feet"),
  14481. name: "Foot",
  14482. image: {
  14483. source: "./media/characters/zeta/foot.svg"
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Micro",
  14490. height: math.unit(6, "inches")
  14491. },
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(6 + 1 / 12, "feet"),
  14495. default: true
  14496. },
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(20, "feet")
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(6, "feet"),
  14508. weight: math.unit(150, "lb"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/jamie-larsen/front.svg",
  14512. extra: 962 / 933,
  14513. bottom: 0.02
  14514. }
  14515. },
  14516. back: {
  14517. height: math.unit(6, "feet"),
  14518. weight: math.unit(150, "lb"),
  14519. name: "Back",
  14520. image: {
  14521. source: "./media/characters/jamie-larsen/back.svg",
  14522. extra: 997 / 946
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Macro",
  14529. height: math.unit(28 + 7 / 12, "feet"),
  14530. default: true
  14531. },
  14532. {
  14533. name: "Macro+",
  14534. height: math.unit(180, "feet")
  14535. },
  14536. {
  14537. name: "Megamacro",
  14538. height: math.unit(10, "miles")
  14539. },
  14540. {
  14541. name: "Gigamacro",
  14542. height: math.unit(200000, "miles")
  14543. },
  14544. ]
  14545. ))
  14546. characterMakers.push(() => makeCharacter(
  14547. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14548. {
  14549. front: {
  14550. height: math.unit(6, "feet"),
  14551. weight: math.unit(120, "lb"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/vance/front.svg",
  14555. extra: 1980 / 1890,
  14556. bottom: 0.09
  14557. }
  14558. },
  14559. back: {
  14560. height: math.unit(6, "feet"),
  14561. weight: math.unit(120, "lb"),
  14562. name: "Back",
  14563. image: {
  14564. source: "./media/characters/vance/back.svg",
  14565. extra: 2081 / 1994,
  14566. bottom: 0.014
  14567. }
  14568. },
  14569. hand: {
  14570. height: math.unit(0.88, "feet"),
  14571. name: "Hand",
  14572. image: {
  14573. source: "./media/characters/vance/hand.svg"
  14574. }
  14575. },
  14576. foot: {
  14577. height: math.unit(0.64, "feet"),
  14578. name: "Foot",
  14579. image: {
  14580. source: "./media/characters/vance/foot.svg"
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Small",
  14587. height: math.unit(90, "feet"),
  14588. default: true
  14589. },
  14590. {
  14591. name: "Macro",
  14592. height: math.unit(100, "meters")
  14593. },
  14594. {
  14595. name: "Megamacro",
  14596. height: math.unit(15, "miles")
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(6, "feet"),
  14605. weight: math.unit(180, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/xochitl/front.svg",
  14609. extra: 2297 / 2261,
  14610. bottom: 0.065
  14611. }
  14612. },
  14613. back: {
  14614. height: math.unit(6, "feet"),
  14615. weight: math.unit(180, "lb"),
  14616. name: "Back",
  14617. image: {
  14618. source: "./media/characters/xochitl/back.svg",
  14619. extra: 2386 / 2354,
  14620. bottom: 0.01
  14621. }
  14622. },
  14623. foot: {
  14624. height: math.unit(6 / 5 * 1.15, "feet"),
  14625. weight: math.unit(150, "lb"),
  14626. name: "Foot",
  14627. image: {
  14628. source: "./media/characters/xochitl/foot.svg"
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Macro",
  14635. height: math.unit(80, "feet")
  14636. },
  14637. {
  14638. name: "Macro+",
  14639. height: math.unit(400, "feet"),
  14640. default: true
  14641. },
  14642. {
  14643. name: "Gigamacro",
  14644. height: math.unit(80000, "miles")
  14645. },
  14646. {
  14647. name: "Gigamacro+",
  14648. height: math.unit(400000, "miles")
  14649. },
  14650. {
  14651. name: "Teramacro",
  14652. height: math.unit(300, "AU")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Vincent", species: ["egyptian-vulture"], 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/vincent/front.svg",
  14665. extra: 1130 / 1080,
  14666. bottom: 0.055
  14667. }
  14668. },
  14669. beak: {
  14670. height: math.unit(6 * 0.1, "feet"),
  14671. name: "Beak",
  14672. image: {
  14673. source: "./media/characters/vincent/beak.svg"
  14674. }
  14675. },
  14676. hand: {
  14677. height: math.unit(6 * 0.85, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Hand",
  14680. image: {
  14681. source: "./media/characters/vincent/hand.svg"
  14682. }
  14683. },
  14684. foot: {
  14685. height: math.unit(6 * 0.19, "feet"),
  14686. weight: math.unit(150, "lb"),
  14687. name: "Foot",
  14688. image: {
  14689. source: "./media/characters/vincent/foot.svg"
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Base",
  14696. height: math.unit(6 + 5 / 12, "feet"),
  14697. default: true
  14698. },
  14699. {
  14700. name: "Macro",
  14701. height: math.unit(300, "feet")
  14702. },
  14703. {
  14704. name: "Megamacro",
  14705. height: math.unit(2, "miles")
  14706. },
  14707. {
  14708. name: "Gigamacro",
  14709. height: math.unit(1000, "miles")
  14710. },
  14711. ]
  14712. ))
  14713. characterMakers.push(() => makeCharacter(
  14714. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14715. {
  14716. front: {
  14717. height: math.unit(2, "meters"),
  14718. weight: math.unit(500, "kg"),
  14719. name: "Front",
  14720. image: {
  14721. source: "./media/characters/coatl/front.svg",
  14722. extra: 3948 / 3500,
  14723. bottom: 0.082
  14724. }
  14725. },
  14726. },
  14727. [
  14728. {
  14729. name: "Normal",
  14730. height: math.unit(4, "meters")
  14731. },
  14732. {
  14733. name: "Macro",
  14734. height: math.unit(100, "meters"),
  14735. default: true
  14736. },
  14737. {
  14738. name: "Macro+",
  14739. height: math.unit(300, "meters")
  14740. },
  14741. {
  14742. name: "Megamacro",
  14743. height: math.unit(3, "gigameters")
  14744. },
  14745. {
  14746. name: "Megamacro+",
  14747. height: math.unit(300, "terameters")
  14748. },
  14749. {
  14750. name: "Megamacro++",
  14751. height: math.unit(3, "lightyears")
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(6, "feet"),
  14760. weight: math.unit(50, "kg"),
  14761. name: "front",
  14762. image: {
  14763. source: "./media/characters/shiroryu/front.svg",
  14764. extra: 1990 / 1935
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Mortal Mingling",
  14771. height: math.unit(3, "meters")
  14772. },
  14773. {
  14774. name: "Kaiju-ish",
  14775. height: math.unit(250, "meters")
  14776. },
  14777. {
  14778. name: "Somewhat Godly",
  14779. height: math.unit(400, "km"),
  14780. default: true
  14781. },
  14782. {
  14783. name: "Planetary",
  14784. height: math.unit(300, "megameters")
  14785. },
  14786. {
  14787. name: "Galaxy-dwarfing",
  14788. height: math.unit(450, "kiloparsecs")
  14789. },
  14790. {
  14791. name: "Universe Eater",
  14792. height: math.unit(150, "gigaparsecs")
  14793. },
  14794. {
  14795. name: "Almost Immeasurable",
  14796. height: math.unit(1.3e266, "yottaparsecs")
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14802. {
  14803. front: {
  14804. height: math.unit(6, "feet"),
  14805. weight: math.unit(150, "lb"),
  14806. name: "Front",
  14807. image: {
  14808. source: "./media/characters/umeko/front.svg",
  14809. extra: 1,
  14810. bottom: 0.019
  14811. }
  14812. },
  14813. frontArmored: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Front (Armored)",
  14817. image: {
  14818. source: "./media/characters/umeko/front-armored.svg",
  14819. extra: 1,
  14820. bottom: 0.021
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Macro",
  14827. height: math.unit(220, "feet"),
  14828. default: true
  14829. },
  14830. {
  14831. name: "Guardian Dragon",
  14832. height: math.unit(50, "miles")
  14833. },
  14834. {
  14835. name: "Cosmic",
  14836. height: math.unit(800000, "miles")
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(6, "feet"),
  14845. weight: math.unit(150, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/cassidy/front.svg",
  14849. extra: 810/808,
  14850. bottom: 41/851
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Canon Height",
  14857. height: math.unit(120, "feet"),
  14858. default: true
  14859. },
  14860. {
  14861. name: "Macro+",
  14862. height: math.unit(400, "feet")
  14863. },
  14864. {
  14865. name: "Macro++",
  14866. height: math.unit(4000, "feet")
  14867. },
  14868. {
  14869. name: "Megamacro",
  14870. height: math.unit(3, "miles")
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(150, "lb"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/isaac/front.svg",
  14883. extra: 896 / 815,
  14884. bottom: 0.11
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Human Size",
  14891. height: math.unit(8, "feet"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Macro",
  14896. height: math.unit(400, "feet")
  14897. },
  14898. {
  14899. name: "Megamacro",
  14900. height: math.unit(50, "miles")
  14901. },
  14902. {
  14903. name: "Canon Height",
  14904. height: math.unit(200, "AU")
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(72, "kg"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/sleekit/front.svg",
  14917. extra: 4693 / 4487,
  14918. bottom: 0.012
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Minimum Height",
  14925. height: math.unit(10, "meters")
  14926. },
  14927. {
  14928. name: "Smaller",
  14929. height: math.unit(25, "meters")
  14930. },
  14931. {
  14932. name: "Larger",
  14933. height: math.unit(38, "meters"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "Maximum height",
  14938. height: math.unit(100, "meters")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(150, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/nillia/front.svg",
  14951. extra: 2195 / 2037,
  14952. bottom: 0.005
  14953. }
  14954. },
  14955. back: {
  14956. height: math.unit(6, "feet"),
  14957. weight: math.unit(150, "lb"),
  14958. name: "Back",
  14959. image: {
  14960. source: "./media/characters/nillia/back.svg",
  14961. extra: 2195 / 2037,
  14962. bottom: 0.005
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Canon Height",
  14969. height: math.unit(489, "feet"),
  14970. default: true
  14971. }
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(6, "feet"),
  14979. weight: math.unit(150, "lb"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/mesmyriza/front.svg",
  14983. extra: 2067 / 1784,
  14984. bottom: 0.035
  14985. }
  14986. },
  14987. foot: {
  14988. height: math.unit(6 / (250 / 35), "feet"),
  14989. name: "Foot",
  14990. image: {
  14991. source: "./media/characters/mesmyriza/foot.svg"
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Macro",
  14998. height: math.unit(457, "meters"),
  14999. default: true
  15000. },
  15001. {
  15002. name: "Megamacro",
  15003. height: math.unit(8, "megameters")
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(6, "feet"),
  15012. weight: math.unit(250, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/saudade/front.svg",
  15016. extra: 1172 / 1139,
  15017. bottom: 0.035
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Micro",
  15024. height: math.unit(3, "inches")
  15025. },
  15026. {
  15027. name: "Normal",
  15028. height: math.unit(6, "feet"),
  15029. default: true
  15030. },
  15031. {
  15032. name: "Macro",
  15033. height: math.unit(50, "feet")
  15034. },
  15035. {
  15036. name: "Megamacro",
  15037. height: math.unit(2800, "feet")
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15043. {
  15044. front: {
  15045. height: math.unit(5 + 4 / 12, "feet"),
  15046. weight: math.unit(100, "lb"),
  15047. name: "Front",
  15048. image: {
  15049. source: "./media/characters/keireer/front.svg",
  15050. extra: 716 / 666,
  15051. bottom: 0.05
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Normal",
  15058. height: math.unit(5 + 4 / 12, "feet"),
  15059. default: true
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15065. {
  15066. front: {
  15067. height: math.unit(6, "feet"),
  15068. weight: math.unit(90, "kg"),
  15069. name: "Front",
  15070. image: {
  15071. source: "./media/characters/mirja/front.svg",
  15072. extra: 1789 / 1683,
  15073. bottom: 0.05
  15074. }
  15075. },
  15076. frontDressed: {
  15077. height: math.unit(6, "feet"),
  15078. weight: math.unit(90, "lb"),
  15079. name: "Front (Dressed)",
  15080. image: {
  15081. source: "./media/characters/mirja/front-dressed.svg",
  15082. extra: 1789 / 1683,
  15083. bottom: 0.05
  15084. }
  15085. },
  15086. back: {
  15087. height: math.unit(6, "feet"),
  15088. weight: math.unit(90, "lb"),
  15089. name: "Back",
  15090. image: {
  15091. source: "./media/characters/mirja/back.svg",
  15092. extra: 953 / 917,
  15093. bottom: 0.017
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "\"Incognito\"",
  15100. height: math.unit(3, "meters")
  15101. },
  15102. {
  15103. name: "Strolling Size",
  15104. height: math.unit(15, "km")
  15105. },
  15106. {
  15107. name: "Larger Strolling Size",
  15108. height: math.unit(400, "km")
  15109. },
  15110. {
  15111. name: "Preferred Size",
  15112. height: math.unit(5000, "km")
  15113. },
  15114. {
  15115. name: "True Size",
  15116. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(15, "feet"),
  15126. weight: math.unit(880, "kg"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/nightraver/front.svg",
  15130. extra: 2444 / 2160,
  15131. bottom: 0.027
  15132. }
  15133. },
  15134. back: {
  15135. height: math.unit(15, "feet"),
  15136. weight: math.unit(880, "kg"),
  15137. name: "Back",
  15138. image: {
  15139. source: "./media/characters/nightraver/back.svg",
  15140. extra: 2309 / 2180,
  15141. bottom: 0.005
  15142. }
  15143. },
  15144. sole: {
  15145. height: math.unit(2.878, "feet"),
  15146. name: "Sole",
  15147. image: {
  15148. source: "./media/characters/nightraver/sole.svg"
  15149. }
  15150. },
  15151. foot: {
  15152. height: math.unit(2.285, "feet"),
  15153. name: "Foot",
  15154. image: {
  15155. source: "./media/characters/nightraver/foot.svg"
  15156. }
  15157. },
  15158. maw: {
  15159. height: math.unit(2.67, "feet"),
  15160. name: "Maw",
  15161. image: {
  15162. source: "./media/characters/nightraver/maw.svg"
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Micro",
  15169. height: math.unit(1, "cm")
  15170. },
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(15, "feet"),
  15174. default: true
  15175. },
  15176. {
  15177. name: "Macro",
  15178. height: math.unit(300, "feet")
  15179. },
  15180. {
  15181. name: "Megamacro",
  15182. height: math.unit(300, "miles")
  15183. },
  15184. {
  15185. name: "Gigamacro",
  15186. height: math.unit(10000, "miles")
  15187. },
  15188. ]
  15189. ))
  15190. characterMakers.push(() => makeCharacter(
  15191. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15192. {
  15193. side: {
  15194. height: math.unit(2, "inches"),
  15195. weight: math.unit(5, "grams"),
  15196. name: "Side",
  15197. image: {
  15198. source: "./media/characters/arc/side.svg"
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Micro",
  15205. height: math.unit(2, "inches"),
  15206. default: true
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15212. {
  15213. front: {
  15214. height: math.unit(1.1938, "meters"),
  15215. weight: math.unit(54, "kg"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/nebula-shahar/front.svg",
  15219. extra: 1642 / 1436,
  15220. bottom: 0.06
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Megamicro",
  15227. height: math.unit(0.3, "mm")
  15228. },
  15229. {
  15230. name: "Micro",
  15231. height: math.unit(3, "cm")
  15232. },
  15233. {
  15234. name: "Normal",
  15235. height: math.unit(138, "cm"),
  15236. default: true
  15237. },
  15238. {
  15239. name: "Macro",
  15240. height: math.unit(30, "m")
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(5.24, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/shayla/front.svg",
  15253. extra: 1512 / 1414,
  15254. bottom: 0.01
  15255. }
  15256. },
  15257. back: {
  15258. height: math.unit(5.24, "feet"),
  15259. weight: math.unit(150, "lb"),
  15260. name: "Back",
  15261. image: {
  15262. source: "./media/characters/shayla/back.svg",
  15263. extra: 1512 / 1414
  15264. }
  15265. },
  15266. hand: {
  15267. height: math.unit(0.7781496062992126, "feet"),
  15268. name: "Hand",
  15269. image: {
  15270. source: "./media/characters/shayla/hand.svg"
  15271. }
  15272. },
  15273. foot: {
  15274. height: math.unit(1.4206036745406823, "feet"),
  15275. name: "Foot",
  15276. image: {
  15277. source: "./media/characters/shayla/foot.svg"
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Micro",
  15284. height: math.unit(0.32, "feet")
  15285. },
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(5.24, "feet"),
  15289. default: true
  15290. },
  15291. {
  15292. name: "Macro",
  15293. height: math.unit(492.12, "feet")
  15294. },
  15295. {
  15296. name: "Megamacro",
  15297. height: math.unit(186.41, "miles")
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(2.2, "m"),
  15306. weight: math.unit(120, "kg"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/pia-jr/front.svg",
  15310. extra: 1000 / 970,
  15311. bottom: 0.035
  15312. }
  15313. },
  15314. hand: {
  15315. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15316. name: "Hand",
  15317. image: {
  15318. source: "./media/characters/pia-jr/hand.svg"
  15319. }
  15320. },
  15321. paw: {
  15322. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15323. name: "Paw",
  15324. image: {
  15325. source: "./media/characters/pia-jr/paw.svg"
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Micro",
  15332. height: math.unit(1.2, "cm")
  15333. },
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(2.2, "m"),
  15337. default: true
  15338. },
  15339. {
  15340. name: "Macro",
  15341. height: math.unit(180, "m")
  15342. },
  15343. {
  15344. name: "Megamacro",
  15345. height: math.unit(420, "km")
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(2, "m"),
  15354. weight: math.unit(115, "kg"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/pia-sr/front.svg",
  15358. extra: 760 / 730,
  15359. bottom: 0.015
  15360. }
  15361. },
  15362. back: {
  15363. height: math.unit(2, "m"),
  15364. weight: math.unit(115, "kg"),
  15365. name: "Back",
  15366. image: {
  15367. source: "./media/characters/pia-sr/back.svg",
  15368. extra: 760 / 730,
  15369. bottom: 0.01
  15370. }
  15371. },
  15372. hand: {
  15373. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15374. name: "Hand",
  15375. image: {
  15376. source: "./media/characters/pia-sr/hand.svg"
  15377. }
  15378. },
  15379. foot: {
  15380. height: math.unit(1.83, "feet"),
  15381. name: "Foot",
  15382. image: {
  15383. source: "./media/characters/pia-sr/foot.svg"
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Micro",
  15390. height: math.unit(88, "mm")
  15391. },
  15392. {
  15393. name: "Normal",
  15394. height: math.unit(2, "m"),
  15395. default: true
  15396. },
  15397. {
  15398. name: "Macro",
  15399. height: math.unit(200, "m")
  15400. },
  15401. {
  15402. name: "Megamacro",
  15403. height: math.unit(420, "km")
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(8 + 2 / 12, "feet"),
  15412. weight: math.unit(300, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/kibibyte/front.svg",
  15416. extra: 2221 / 2098,
  15417. bottom: 0.04
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(8 + 2 / 12, "feet"),
  15425. default: true
  15426. },
  15427. {
  15428. name: "Socialable Macro",
  15429. height: math.unit(50, "feet")
  15430. },
  15431. {
  15432. name: "Macro",
  15433. height: math.unit(300, "feet")
  15434. },
  15435. {
  15436. name: "Megamacro",
  15437. height: math.unit(500, "miles")
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15443. {
  15444. front: {
  15445. height: math.unit(6, "feet"),
  15446. weight: math.unit(150, "lb"),
  15447. name: "Front",
  15448. image: {
  15449. source: "./media/characters/felix/front.svg",
  15450. extra: 762 / 722,
  15451. bottom: 0.02
  15452. }
  15453. },
  15454. frontClothed: {
  15455. height: math.unit(6, "feet"),
  15456. weight: math.unit(150, "lb"),
  15457. name: "Front (Clothed)",
  15458. image: {
  15459. source: "./media/characters/felix/front-clothed.svg",
  15460. extra: 762 / 722,
  15461. bottom: 0.02
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(6 + 8 / 12, "feet"),
  15469. default: true
  15470. },
  15471. {
  15472. name: "Macro",
  15473. height: math.unit(2600, "feet")
  15474. },
  15475. {
  15476. name: "Megamacro",
  15477. height: math.unit(450, "miles")
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(6 + 1 / 12, "feet"),
  15486. weight: math.unit(250, "lb"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/tobo/front.svg",
  15490. extra: 608 / 586,
  15491. bottom: 0.023
  15492. }
  15493. },
  15494. back: {
  15495. height: math.unit(6 + 1 / 12, "feet"),
  15496. weight: math.unit(250, "lb"),
  15497. name: "Back",
  15498. image: {
  15499. source: "./media/characters/tobo/back.svg",
  15500. extra: 608 / 586
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Nano",
  15507. height: math.unit(2, "nm")
  15508. },
  15509. {
  15510. name: "Megamicro",
  15511. height: math.unit(0.1, "mm")
  15512. },
  15513. {
  15514. name: "Micro",
  15515. height: math.unit(1, "inch"),
  15516. default: true
  15517. },
  15518. {
  15519. name: "Human-sized",
  15520. height: math.unit(6 + 1 / 12, "feet")
  15521. },
  15522. {
  15523. name: "Macro",
  15524. height: math.unit(250, "feet")
  15525. },
  15526. {
  15527. name: "Megamacro",
  15528. height: math.unit(75, "miles")
  15529. },
  15530. {
  15531. name: "Texas-sized",
  15532. height: math.unit(750, "miles")
  15533. },
  15534. {
  15535. name: "Teramacro",
  15536. height: math.unit(50000, "miles")
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(269, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/danny-kapowsky/front.svg",
  15549. extra: 766 / 736,
  15550. bottom: 0.044
  15551. }
  15552. },
  15553. back: {
  15554. height: math.unit(6, "feet"),
  15555. weight: math.unit(269, "lb"),
  15556. name: "Back",
  15557. image: {
  15558. source: "./media/characters/danny-kapowsky/back.svg",
  15559. extra: 797 / 760,
  15560. bottom: 0.025
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Macro",
  15567. height: math.unit(150, "feet"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Macro+",
  15572. height: math.unit(200, "feet")
  15573. },
  15574. {
  15575. name: "Macro++",
  15576. height: math.unit(300, "feet")
  15577. },
  15578. {
  15579. name: "Macro+++",
  15580. height: math.unit(400, "feet")
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15586. {
  15587. side: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(170, "lb"),
  15590. name: "Side",
  15591. image: {
  15592. source: "./media/characters/finn/side.svg",
  15593. extra: 1953 / 1807,
  15594. bottom: 0.057
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Megamacro",
  15601. height: math.unit(14445, "feet"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(5 + 6 / 12, "feet"),
  15611. weight: math.unit(125, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/roy/front.svg",
  15615. extra: 1,
  15616. bottom: 0.11
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Micro",
  15623. height: math.unit(3, "inches"),
  15624. default: true
  15625. },
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(5 + 6 / 12, "feet")
  15629. },
  15630. {
  15631. name: "Lesser Macro",
  15632. height: math.unit(60, "feet")
  15633. },
  15634. {
  15635. name: "Greater Macro",
  15636. height: math.unit(120, "feet")
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(6, "feet"),
  15645. weight: math.unit(100, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/aevsivs/front.svg",
  15649. extra: 1,
  15650. bottom: 0.03
  15651. }
  15652. },
  15653. back: {
  15654. height: math.unit(6, "feet"),
  15655. weight: math.unit(100, "lb"),
  15656. name: "Back",
  15657. image: {
  15658. source: "./media/characters/aevsivs/back.svg"
  15659. }
  15660. },
  15661. },
  15662. [
  15663. {
  15664. name: "Micro",
  15665. height: math.unit(2, "inches"),
  15666. default: true
  15667. },
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(5, "feet")
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15676. {
  15677. front: {
  15678. height: math.unit(5 + 7 / 12, "feet"),
  15679. weight: math.unit(159, "lb"),
  15680. name: "Front",
  15681. image: {
  15682. source: "./media/characters/hildegard/front.svg",
  15683. extra: 289 / 269,
  15684. bottom: 7.63 / 297.8
  15685. }
  15686. },
  15687. back: {
  15688. height: math.unit(5 + 7 / 12, "feet"),
  15689. weight: math.unit(159, "lb"),
  15690. name: "Back",
  15691. image: {
  15692. source: "./media/characters/hildegard/back.svg",
  15693. extra: 280 / 260,
  15694. bottom: 2.3 / 282
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(5 + 7 / 12, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15708. {
  15709. bernard: {
  15710. height: math.unit(2 + 7 / 12, "feet"),
  15711. weight: math.unit(66, "lb"),
  15712. name: "Bernard",
  15713. rename: true,
  15714. image: {
  15715. source: "./media/characters/bernard-wilder/bernard.svg",
  15716. extra: 192 / 128,
  15717. bottom: 0.05
  15718. }
  15719. },
  15720. wilder: {
  15721. height: math.unit(5 + 8 / 12, "feet"),
  15722. weight: math.unit(143, "lb"),
  15723. name: "Wilder",
  15724. rename: true,
  15725. image: {
  15726. source: "./media/characters/bernard-wilder/wilder.svg",
  15727. extra: 361 / 312,
  15728. bottom: 0.02
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(2 + 7 / 12, "feet"),
  15736. default: true
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15742. {
  15743. anthro: {
  15744. height: math.unit(6 + 1 / 12, "feet"),
  15745. weight: math.unit(155, "lb"),
  15746. name: "Anthro",
  15747. image: {
  15748. source: "./media/characters/hearth/anthro.svg",
  15749. extra: 1178/1136,
  15750. bottom: 28/1206
  15751. }
  15752. },
  15753. feral: {
  15754. height: math.unit(3.78, "feet"),
  15755. weight: math.unit(35, "kg"),
  15756. name: "Feral",
  15757. image: {
  15758. source: "./media/characters/hearth/feral.svg",
  15759. extra: 153 / 135,
  15760. bottom: 0.03
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(6 + 1 / 12, "feet"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(6, "feet"),
  15777. weight: math.unit(182, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/ingrid/front.svg",
  15781. extra: 294 / 268,
  15782. bottom: 0.027
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(6, "feet"),
  15790. default: true
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15796. {
  15797. eevee: {
  15798. height: math.unit(2 + 10 / 12, "feet"),
  15799. weight: math.unit(86, "lb"),
  15800. name: "Malgam",
  15801. image: {
  15802. source: "./media/characters/malgam/eevee.svg",
  15803. extra: 952/784,
  15804. bottom: 38/990
  15805. }
  15806. },
  15807. sylveon: {
  15808. height: math.unit(4, "feet"),
  15809. weight: math.unit(101, "lb"),
  15810. name: "Future Malgam",
  15811. rename: true,
  15812. image: {
  15813. source: "./media/characters/malgam/sylveon.svg",
  15814. extra: 371 / 325,
  15815. bottom: 0.015
  15816. }
  15817. },
  15818. gigantamax: {
  15819. height: math.unit(50, "feet"),
  15820. name: "Gigantamax Malgam",
  15821. rename: true,
  15822. image: {
  15823. source: "./media/characters/malgam/gigantamax.svg"
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(2 + 10 / 12, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(5 + 11 / 12, "feet"),
  15840. weight: math.unit(188, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/fleur/front.svg",
  15844. extra: 309 / 283,
  15845. bottom: 0.007
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(5 + 11 / 12, "feet"),
  15853. default: true
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(5 + 4 / 12, "feet"),
  15862. weight: math.unit(122, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/jude/front.svg",
  15866. extra: 288 / 273,
  15867. bottom: 0.03
  15868. }
  15869. },
  15870. },
  15871. [
  15872. {
  15873. name: "Normal",
  15874. height: math.unit(5 + 4 / 12, "feet"),
  15875. default: true
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(5 + 11 / 12, "feet"),
  15884. weight: math.unit(190, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/seara/front.svg",
  15888. extra: 1,
  15889. bottom: 0.05
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(5 + 11 / 12, "feet"),
  15897. default: true
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15903. {
  15904. front: {
  15905. height: math.unit(16 + 5 / 12, "feet"),
  15906. weight: math.unit(524, "lb"),
  15907. name: "Front",
  15908. image: {
  15909. source: "./media/characters/caspian-lugia/front.svg",
  15910. extra: 1,
  15911. bottom: 0.04
  15912. }
  15913. },
  15914. },
  15915. [
  15916. {
  15917. name: "Normal",
  15918. height: math.unit(16 + 5 / 12, "feet"),
  15919. default: true
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(5 + 7 / 12, "feet"),
  15928. weight: math.unit(170, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/mika/front.svg",
  15932. extra: 1,
  15933. bottom: 0.016
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Normal",
  15940. height: math.unit(5 + 7 / 12, "feet"),
  15941. default: true
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15947. {
  15948. front: {
  15949. height: math.unit(6 + 2 / 12, "feet"),
  15950. weight: math.unit(268, "lb"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/sol/front.svg",
  15954. extra: 247 / 231,
  15955. bottom: 0.05
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(6 + 2 / 12, "feet"),
  15963. default: true
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15969. {
  15970. buizel: {
  15971. height: math.unit(2 + 5 / 12, "feet"),
  15972. weight: math.unit(87, "lb"),
  15973. name: "Front",
  15974. image: {
  15975. source: "./media/characters/umiko/buizel.svg",
  15976. extra: 172 / 157,
  15977. bottom: 0.01
  15978. },
  15979. form: "buizel",
  15980. default: true
  15981. },
  15982. floatzel: {
  15983. height: math.unit(5 + 9 / 12, "feet"),
  15984. weight: math.unit(250, "lb"),
  15985. name: "Front",
  15986. image: {
  15987. source: "./media/characters/umiko/floatzel.svg",
  15988. extra: 1076/1006,
  15989. bottom: 15/1091
  15990. },
  15991. form: "floatzel",
  15992. default: true
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(2 + 5 / 12, "feet"),
  15999. form: "buizel",
  16000. default: true
  16001. },
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(5 + 9 / 12, "feet"),
  16005. form: "floatzel",
  16006. default: true
  16007. },
  16008. ],
  16009. {
  16010. "buizel": {
  16011. name: "Buizel"
  16012. },
  16013. "floatzel": {
  16014. name: "Floatzel",
  16015. default: true
  16016. }
  16017. }
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16021. {
  16022. front: {
  16023. height: math.unit(6 + 2 / 12, "feet"),
  16024. weight: math.unit(146, "lb"),
  16025. name: "Front",
  16026. image: {
  16027. source: "./media/characters/iliac/front.svg",
  16028. extra: 389 / 365,
  16029. bottom: 0.035
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Normal",
  16036. height: math.unit(6 + 2 / 12, "feet"),
  16037. default: true
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16043. {
  16044. front: {
  16045. height: math.unit(6, "feet"),
  16046. weight: math.unit(170, "lb"),
  16047. name: "Front",
  16048. image: {
  16049. source: "./media/characters/topaz/front.svg",
  16050. extra: 317 / 303,
  16051. bottom: 0.055
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(6, "feet"),
  16059. default: true
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(5 + 11 / 12, "feet"),
  16068. weight: math.unit(144, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/gabriel/front.svg",
  16072. extra: 285 / 262,
  16073. bottom: 0.004
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(5 + 11 / 12, "feet"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16087. {
  16088. side: {
  16089. height: math.unit(6 + 5 / 12, "feet"),
  16090. weight: math.unit(300, "lb"),
  16091. name: "Side",
  16092. image: {
  16093. source: "./media/characters/tempest-suicune/side.svg",
  16094. extra: 195 / 154,
  16095. bottom: 0.04
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(6 + 5 / 12, "feet"),
  16103. default: true
  16104. },
  16105. ]
  16106. ))
  16107. characterMakers.push(() => makeCharacter(
  16108. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16109. {
  16110. front: {
  16111. height: math.unit(7 + 2 / 12, "feet"),
  16112. weight: math.unit(322, "lb"),
  16113. name: "Front",
  16114. image: {
  16115. source: "./media/characters/vulcan/front.svg",
  16116. extra: 154 / 147,
  16117. bottom: 0.04
  16118. }
  16119. },
  16120. },
  16121. [
  16122. {
  16123. name: "Normal",
  16124. height: math.unit(7 + 2 / 12, "feet"),
  16125. default: true
  16126. },
  16127. ]
  16128. ))
  16129. characterMakers.push(() => makeCharacter(
  16130. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16131. {
  16132. front: {
  16133. height: math.unit(5 + 10 / 12, "feet"),
  16134. weight: math.unit(264, "lb"),
  16135. name: "Front",
  16136. image: {
  16137. source: "./media/characters/gault/front.svg",
  16138. extra: 161 / 140,
  16139. bottom: 0.028
  16140. }
  16141. },
  16142. },
  16143. [
  16144. {
  16145. name: "Normal",
  16146. height: math.unit(5 + 10 / 12, "feet"),
  16147. default: true
  16148. },
  16149. ]
  16150. ))
  16151. characterMakers.push(() => makeCharacter(
  16152. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16153. {
  16154. front: {
  16155. height: math.unit(6, "feet"),
  16156. weight: math.unit(150, "lb"),
  16157. name: "Front",
  16158. image: {
  16159. source: "./media/characters/shard/front.svg",
  16160. extra: 273 / 238,
  16161. bottom: 0.02
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(3 + 6 / 12, "feet"),
  16169. default: true
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(5 + 11 / 12, "feet"),
  16178. weight: math.unit(146, "lb"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/ashe/front.svg",
  16182. extra: 400 / 373,
  16183. bottom: 0.01
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Normal",
  16190. height: math.unit(5 + 11 / 12, "feet"),
  16191. default: true
  16192. },
  16193. ]
  16194. ))
  16195. characterMakers.push(() => makeCharacter(
  16196. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16197. {
  16198. front: {
  16199. height: math.unit(5 + 5 / 12, "feet"),
  16200. weight: math.unit(135, "lb"),
  16201. name: "Front",
  16202. image: {
  16203. source: "./media/characters/beatrix/front.svg",
  16204. extra: 392 / 379,
  16205. bottom: 0.01
  16206. }
  16207. },
  16208. },
  16209. [
  16210. {
  16211. name: "Normal",
  16212. height: math.unit(6, "feet"),
  16213. default: true
  16214. },
  16215. ]
  16216. ))
  16217. characterMakers.push(() => makeCharacter(
  16218. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16219. {
  16220. front: {
  16221. height: math.unit(6 + 2/12, "feet"),
  16222. weight: math.unit(135, "lb"),
  16223. name: "Front",
  16224. image: {
  16225. source: "./media/characters/ignatius/front.svg",
  16226. extra: 1380/1259,
  16227. bottom: 27/1407
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Normal",
  16234. height: math.unit(6 + 2/12, "feet"),
  16235. default: true
  16236. },
  16237. ]
  16238. ))
  16239. characterMakers.push(() => makeCharacter(
  16240. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16241. {
  16242. front: {
  16243. height: math.unit(6 + 2 / 12, "feet"),
  16244. weight: math.unit(138, "lb"),
  16245. name: "Front",
  16246. image: {
  16247. source: "./media/characters/mei-li/front.svg",
  16248. extra: 237 / 229,
  16249. bottom: 0.03
  16250. }
  16251. },
  16252. },
  16253. [
  16254. {
  16255. name: "Normal",
  16256. height: math.unit(6 + 2 / 12, "feet"),
  16257. default: true
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16263. {
  16264. front: {
  16265. height: math.unit(2 + 4 / 12, "feet"),
  16266. weight: math.unit(62, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/puru/front.svg",
  16270. extra: 206 / 149,
  16271. bottom: 0.06
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(2 + 4 / 12, "feet"),
  16279. default: true
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16285. {
  16286. anthro: {
  16287. height: math.unit(5 + 8/12, "feet"),
  16288. weight: math.unit(200, "lb"),
  16289. energyNeed: math.unit(2000, "kcal"),
  16290. name: "Anthro",
  16291. image: {
  16292. source: "./media/characters/kee/anthro.svg",
  16293. extra: 3251/3184,
  16294. bottom: 250/3501
  16295. }
  16296. },
  16297. taur: {
  16298. height: math.unit(11, "feet"),
  16299. weight: math.unit(500, "lb"),
  16300. energyNeed: math.unit(5000, "kcal"),
  16301. name: "Taur",
  16302. image: {
  16303. source: "./media/characters/kee/taur.svg",
  16304. extra: 1362/1320,
  16305. bottom: 83/1445
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Normal",
  16312. height: math.unit(5 + 8/12, "feet"),
  16313. default: true
  16314. },
  16315. {
  16316. name: "Macro",
  16317. height: math.unit(35, "feet")
  16318. },
  16319. ]
  16320. ))
  16321. characterMakers.push(() => makeCharacter(
  16322. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16323. {
  16324. anthro: {
  16325. height: math.unit(7, "feet"),
  16326. weight: math.unit(190, "lb"),
  16327. name: "Anthro",
  16328. image: {
  16329. source: "./media/characters/cobalt-dracha/anthro.svg",
  16330. extra: 231 / 225,
  16331. bottom: 0.04
  16332. }
  16333. },
  16334. feral: {
  16335. height: math.unit(9 + 7 / 12, "feet"),
  16336. weight: math.unit(294, "lb"),
  16337. name: "Feral",
  16338. image: {
  16339. source: "./media/characters/cobalt-dracha/feral.svg",
  16340. extra: 692 / 633,
  16341. bottom: 0.05
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Normal",
  16348. height: math.unit(7, "feet"),
  16349. default: true
  16350. },
  16351. ]
  16352. ))
  16353. characterMakers.push(() => makeCharacter(
  16354. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16355. {
  16356. fallen: {
  16357. height: math.unit(11 + 8 / 12, "feet"),
  16358. weight: math.unit(485, "lb"),
  16359. name: "Java (Fallen)",
  16360. rename: true,
  16361. image: {
  16362. source: "./media/characters/java/fallen.svg",
  16363. extra: 226 / 208,
  16364. bottom: 0.005
  16365. }
  16366. },
  16367. godkin: {
  16368. height: math.unit(10 + 6 / 12, "feet"),
  16369. weight: math.unit(328, "lb"),
  16370. name: "Java (Godkin)",
  16371. rename: true,
  16372. image: {
  16373. source: "./media/characters/java/godkin.svg",
  16374. extra: 1104/1068,
  16375. bottom: 36/1140
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(11 + 8 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(5 + 9 / 12, "feet"),
  16392. weight: math.unit(170, "lb"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/purna/front.svg",
  16396. extra: 239 / 229,
  16397. bottom: 0.01
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(5 + 9 / 12, "feet"),
  16405. default: true
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16411. {
  16412. front: {
  16413. height: math.unit(5 + 9 / 12, "feet"),
  16414. weight: math.unit(142, "lb"),
  16415. name: "Front",
  16416. image: {
  16417. source: "./media/characters/kuva/front.svg",
  16418. extra: 281 / 271,
  16419. bottom: 0.006
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Normal",
  16426. height: math.unit(5 + 9 / 12, "feet"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16433. {
  16434. anthro: {
  16435. height: math.unit(9 + 2 / 12, "feet"),
  16436. weight: math.unit(270, "lb"),
  16437. name: "Anthro",
  16438. image: {
  16439. source: "./media/characters/embra/anthro.svg",
  16440. extra: 200 / 187,
  16441. bottom: 0.02
  16442. }
  16443. },
  16444. feral: {
  16445. height: math.unit(18 + 8 / 12, "feet"),
  16446. weight: math.unit(576, "lb"),
  16447. name: "Feral",
  16448. image: {
  16449. source: "./media/characters/embra/feral.svg",
  16450. extra: 152 / 137,
  16451. bottom: 0.037
  16452. }
  16453. },
  16454. },
  16455. [
  16456. {
  16457. name: "Normal",
  16458. height: math.unit(9 + 2 / 12, "feet"),
  16459. default: true
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16465. {
  16466. anthro: {
  16467. height: math.unit(10 + 9 / 12, "feet"),
  16468. weight: math.unit(224, "lb"),
  16469. name: "Anthro",
  16470. image: {
  16471. source: "./media/characters/grottos/anthro.svg",
  16472. extra: 350 / 332,
  16473. bottom: 0.045
  16474. }
  16475. },
  16476. feral: {
  16477. height: math.unit(20 + 7 / 12, "feet"),
  16478. weight: math.unit(629, "lb"),
  16479. name: "Feral",
  16480. image: {
  16481. source: "./media/characters/grottos/feral.svg",
  16482. extra: 207 / 190,
  16483. bottom: 0.05
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(10 + 9 / 12, "feet"),
  16491. default: true
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16497. {
  16498. anthro: {
  16499. height: math.unit(9 + 6 / 12, "feet"),
  16500. weight: math.unit(298, "lb"),
  16501. name: "Anthro",
  16502. image: {
  16503. source: "./media/characters/frifna/anthro.svg",
  16504. extra: 282 / 269,
  16505. bottom: 0.015
  16506. }
  16507. },
  16508. feral: {
  16509. height: math.unit(16 + 2 / 12, "feet"),
  16510. weight: math.unit(624, "lb"),
  16511. name: "Feral",
  16512. image: {
  16513. source: "./media/characters/frifna/feral.svg"
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(9 + 6 / 12, "feet"),
  16521. default: true
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(6 + 2 / 12, "feet"),
  16530. weight: math.unit(168, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/elise/front.svg",
  16534. extra: 276 / 271
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(6 + 2 / 12, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(5 + 10 / 12, "feet"),
  16551. weight: math.unit(210, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/glade/front.svg",
  16555. extra: 258 / 247,
  16556. bottom: 0.008
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(5 + 10 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(5 + 10 / 12, "feet"),
  16573. weight: math.unit(129, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/rina/front.svg",
  16577. extra: 266 / 255,
  16578. bottom: 0.005
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(5 + 10 / 12, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16592. {
  16593. front: {
  16594. height: math.unit(6 + 1 / 12, "feet"),
  16595. weight: math.unit(192, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/veronica/front.svg",
  16599. extra: 319 / 309,
  16600. bottom: 0.005
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(6 + 1 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16614. {
  16615. front: {
  16616. height: math.unit(9 + 3 / 12, "feet"),
  16617. weight: math.unit(1100, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/braxton/front.svg",
  16621. extra: 1057 / 984,
  16622. bottom: 0.05
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(9 + 3 / 12, "feet")
  16630. },
  16631. {
  16632. name: "Giant",
  16633. height: math.unit(300, "feet"),
  16634. default: true
  16635. },
  16636. {
  16637. name: "Macro",
  16638. height: math.unit(700, "feet")
  16639. },
  16640. {
  16641. name: "Megamacro",
  16642. height: math.unit(6000, "feet")
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16648. {
  16649. front: {
  16650. height: math.unit(6 + 7 / 12, "feet"),
  16651. weight: math.unit(150, "lb"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/blue-feyonics/front.svg",
  16655. extra: 1403 / 1306,
  16656. bottom: 0.047
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(6 + 7 / 12, "feet"),
  16664. default: true
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16670. {
  16671. front: {
  16672. height: math.unit(1.8, "meters"),
  16673. weight: math.unit(60, "kg"),
  16674. name: "Front",
  16675. image: {
  16676. source: "./media/characters/maxwell/front.svg",
  16677. extra: 2060 / 1873
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Micro",
  16684. height: math.unit(1, "mm")
  16685. },
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(1.8, "meter"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Macro",
  16693. height: math.unit(30, "meters")
  16694. },
  16695. {
  16696. name: "Megamacro",
  16697. height: math.unit(10, "km")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(6, "feet"),
  16706. weight: math.unit(150, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/jack/front.svg",
  16710. extra: 1754 / 1640,
  16711. bottom: 0.01
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Normal",
  16718. height: math.unit(80000, "feet"),
  16719. default: true
  16720. },
  16721. {
  16722. name: "Max size",
  16723. height: math.unit(10, "lightyears")
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16729. {
  16730. urban: {
  16731. height: math.unit(5, "feet"),
  16732. weight: math.unit(240, "lb"),
  16733. name: "Urban",
  16734. image: {
  16735. source: "./media/characters/cafat/urban.svg",
  16736. extra: 1223/1126,
  16737. bottom: 205/1428
  16738. }
  16739. },
  16740. summer: {
  16741. height: math.unit(5, "feet"),
  16742. weight: math.unit(240, "lb"),
  16743. name: "Summer",
  16744. image: {
  16745. source: "./media/characters/cafat/summer.svg",
  16746. extra: 1223/1126,
  16747. bottom: 205/1428
  16748. }
  16749. },
  16750. winter: {
  16751. height: math.unit(5, "feet"),
  16752. weight: math.unit(240, "lb"),
  16753. name: "Winter",
  16754. image: {
  16755. source: "./media/characters/cafat/winter.svg",
  16756. extra: 1223/1126,
  16757. bottom: 205/1428
  16758. }
  16759. },
  16760. lingerie: {
  16761. height: math.unit(5, "feet"),
  16762. weight: math.unit(240, "lb"),
  16763. name: "Lingerie",
  16764. image: {
  16765. source: "./media/characters/cafat/lingerie.svg",
  16766. extra: 1223/1126,
  16767. bottom: 205/1428
  16768. }
  16769. },
  16770. upright: {
  16771. height: math.unit(6.3, "feet"),
  16772. weight: math.unit(240, "lb"),
  16773. name: "Upright",
  16774. image: {
  16775. source: "./media/characters/cafat/upright.svg",
  16776. bottom: 0.01
  16777. }
  16778. },
  16779. uprightFull: {
  16780. height: math.unit(6.3, "feet"),
  16781. weight: math.unit(240, "lb"),
  16782. name: "Upright (Full)",
  16783. image: {
  16784. source: "./media/characters/cafat/upright-full.svg",
  16785. bottom: 0.01
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Small",
  16792. height: math.unit(5, "feet"),
  16793. default: true
  16794. },
  16795. {
  16796. name: "Large",
  16797. height: math.unit(13, "feet")
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(6, "feet"),
  16806. weight: math.unit(150, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/verin-raharra/front.svg",
  16810. extra: 5019 / 4835,
  16811. bottom: 0.023
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(7 + 5 / 12, "feet"),
  16819. default: true
  16820. },
  16821. {
  16822. name: "Upsized",
  16823. height: math.unit(20, "feet")
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(7, "feet"),
  16832. weight: math.unit(230, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/nakata/front.svg",
  16836. extra: 1.005,
  16837. bottom: 0.01
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(7, "feet"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Big",
  16849. height: math.unit(14, "feet")
  16850. },
  16851. {
  16852. name: "Macro",
  16853. height: math.unit(400, "feet")
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16859. {
  16860. front: {
  16861. height: math.unit(4.91, "feet"),
  16862. weight: math.unit(100, "lb"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/lily/front.svg",
  16866. extra: 1585 / 1415,
  16867. bottom: 0.02
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(4.91, "feet"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16881. {
  16882. laying: {
  16883. height: math.unit(4 + 4 / 12, "feet"),
  16884. weight: math.unit(600, "lb"),
  16885. name: "Laying",
  16886. image: {
  16887. source: "./media/characters/sheila/laying.svg",
  16888. extra: 1333 / 1265,
  16889. bottom: 0.16
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(4 + 4 / 12, "feet"),
  16897. default: true
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16903. {
  16904. front: {
  16905. height: math.unit(6, "feet"),
  16906. weight: math.unit(190, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/sax/front.svg",
  16910. extra: 1187 / 973,
  16911. bottom: 0.042
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Micro",
  16918. height: math.unit(4, "inches"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(6, "feet"),
  16928. weight: math.unit(150, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/pandora/front.svg",
  16932. extra: 2720 / 2556,
  16933. bottom: 0.015
  16934. }
  16935. },
  16936. back: {
  16937. height: math.unit(6, "feet"),
  16938. weight: math.unit(150, "lb"),
  16939. name: "Back",
  16940. image: {
  16941. source: "./media/characters/pandora/back.svg",
  16942. extra: 2720 / 2556,
  16943. bottom: 0.01
  16944. }
  16945. },
  16946. beans: {
  16947. height: math.unit(6 / 8, "feet"),
  16948. name: "Beans",
  16949. image: {
  16950. source: "./media/characters/pandora/beans.svg"
  16951. }
  16952. },
  16953. collar: {
  16954. height: math.unit(0.31, "feet"),
  16955. name: "Collar",
  16956. image: {
  16957. source: "./media/characters/pandora/collar.svg"
  16958. }
  16959. },
  16960. skirt: {
  16961. height: math.unit(6, "feet"),
  16962. weight: math.unit(150, "lb"),
  16963. name: "Skirt",
  16964. image: {
  16965. source: "./media/characters/pandora/skirt.svg",
  16966. extra: 1622 / 1525,
  16967. bottom: 0.015
  16968. }
  16969. },
  16970. hoodie: {
  16971. height: math.unit(6, "feet"),
  16972. weight: math.unit(150, "lb"),
  16973. name: "Hoodie",
  16974. image: {
  16975. source: "./media/characters/pandora/hoodie.svg",
  16976. extra: 1622 / 1525,
  16977. bottom: 0.015
  16978. }
  16979. },
  16980. casual: {
  16981. height: math.unit(6, "feet"),
  16982. weight: math.unit(150, "lb"),
  16983. name: "Casual",
  16984. image: {
  16985. source: "./media/characters/pandora/casual.svg",
  16986. extra: 1622 / 1525,
  16987. bottom: 0.015
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Normal",
  16994. height: math.unit(6, "feet")
  16995. },
  16996. {
  16997. name: "Big Steppy",
  16998. height: math.unit(1, "km"),
  16999. default: true
  17000. },
  17001. {
  17002. name: "Galactic Steppy",
  17003. height: math.unit(2, "gigameters")
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17009. {
  17010. side: {
  17011. height: math.unit(10, "feet"),
  17012. weight: math.unit(800, "kg"),
  17013. name: "Side",
  17014. image: {
  17015. source: "./media/characters/venio-darcony/side.svg",
  17016. extra: 1373 / 1003,
  17017. bottom: 0.037
  17018. }
  17019. },
  17020. front: {
  17021. height: math.unit(19, "feet"),
  17022. weight: math.unit(800, "kg"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/venio-darcony/front.svg"
  17026. }
  17027. },
  17028. back: {
  17029. height: math.unit(19, "feet"),
  17030. weight: math.unit(800, "kg"),
  17031. name: "Back",
  17032. image: {
  17033. source: "./media/characters/venio-darcony/back.svg"
  17034. }
  17035. },
  17036. sideNsfw: {
  17037. height: math.unit(10, "feet"),
  17038. weight: math.unit(800, "kg"),
  17039. name: "Side (NSFW)",
  17040. image: {
  17041. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17042. extra: 1373 / 1003,
  17043. bottom: 0.037
  17044. }
  17045. },
  17046. frontNsfw: {
  17047. height: math.unit(19, "feet"),
  17048. weight: math.unit(800, "kg"),
  17049. name: "Front (NSFW)",
  17050. image: {
  17051. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17052. }
  17053. },
  17054. backNsfw: {
  17055. height: math.unit(19, "feet"),
  17056. weight: math.unit(800, "kg"),
  17057. name: "Back (NSFW)",
  17058. image: {
  17059. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17060. }
  17061. },
  17062. sideArmored: {
  17063. height: math.unit(10, "feet"),
  17064. weight: math.unit(800, "kg"),
  17065. name: "Side (Armored)",
  17066. image: {
  17067. source: "./media/characters/venio-darcony/side-armored.svg",
  17068. extra: 1373 / 1003,
  17069. bottom: 0.037
  17070. }
  17071. },
  17072. frontArmored: {
  17073. height: math.unit(19, "feet"),
  17074. weight: math.unit(900, "kg"),
  17075. name: "Front (Armored)",
  17076. image: {
  17077. source: "./media/characters/venio-darcony/front-armored.svg"
  17078. }
  17079. },
  17080. backArmored: {
  17081. height: math.unit(19, "feet"),
  17082. weight: math.unit(900, "kg"),
  17083. name: "Back (Armored)",
  17084. image: {
  17085. source: "./media/characters/venio-darcony/back-armored.svg"
  17086. }
  17087. },
  17088. sword: {
  17089. height: math.unit(10, "feet"),
  17090. weight: math.unit(50, "lb"),
  17091. name: "Sword",
  17092. image: {
  17093. source: "./media/characters/venio-darcony/sword.svg"
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(10, "feet")
  17101. },
  17102. {
  17103. name: "Macro",
  17104. height: math.unit(130, "feet"),
  17105. default: true
  17106. },
  17107. {
  17108. name: "Macro+",
  17109. height: math.unit(240, "feet")
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17115. {
  17116. front: {
  17117. height: math.unit(6, "feet"),
  17118. weight: math.unit(150, "lb"),
  17119. name: "Front",
  17120. image: {
  17121. source: "./media/characters/veski/front.svg",
  17122. extra: 1299 / 1225,
  17123. bottom: 0.04
  17124. }
  17125. },
  17126. back: {
  17127. height: math.unit(6, "feet"),
  17128. weight: math.unit(150, "lb"),
  17129. name: "Back",
  17130. image: {
  17131. source: "./media/characters/veski/back.svg",
  17132. extra: 1299 / 1225,
  17133. bottom: 0.008
  17134. }
  17135. },
  17136. maw: {
  17137. height: math.unit(1.5 * 1.21, "feet"),
  17138. name: "Maw",
  17139. image: {
  17140. source: "./media/characters/veski/maw.svg"
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Macro",
  17147. height: math.unit(2, "km"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(5 + 7 / 12, "feet"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/isabelle/front.svg",
  17160. extra: 2130 / 1976,
  17161. bottom: 0.05
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Supermicro",
  17168. height: math.unit(10, "micrometers")
  17169. },
  17170. {
  17171. name: "Micro",
  17172. height: math.unit(1, "inch")
  17173. },
  17174. {
  17175. name: "Tiny",
  17176. height: math.unit(5, "inches")
  17177. },
  17178. {
  17179. name: "Standard",
  17180. height: math.unit(5 + 7 / 12, "inches")
  17181. },
  17182. {
  17183. name: "Macro",
  17184. height: math.unit(80, "meters"),
  17185. default: true
  17186. },
  17187. {
  17188. name: "Megamacro",
  17189. height: math.unit(250, "meters")
  17190. },
  17191. {
  17192. name: "Gigamacro",
  17193. height: math.unit(5, "km")
  17194. },
  17195. {
  17196. name: "Cosmic",
  17197. height: math.unit(2.5e6, "miles")
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(6, "feet"),
  17206. weight: math.unit(150, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/hanzo/front.svg",
  17210. extra: 374 / 344,
  17211. bottom: 0.02
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(8, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(7, "feet"),
  17228. weight: math.unit(130, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/anna/front.svg",
  17232. extra: 169 / 145,
  17233. bottom: 0.06
  17234. }
  17235. },
  17236. full: {
  17237. height: math.unit(4.96, "feet"),
  17238. weight: math.unit(220, "lb"),
  17239. name: "Full",
  17240. image: {
  17241. source: "./media/characters/anna/full.svg",
  17242. extra: 138 / 114,
  17243. bottom: 0.15
  17244. }
  17245. },
  17246. tongue: {
  17247. height: math.unit(2.53, "feet"),
  17248. name: "Tongue",
  17249. image: {
  17250. source: "./media/characters/anna/tongue.svg"
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(7, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17264. {
  17265. front: {
  17266. height: math.unit(7, "feet"),
  17267. weight: math.unit(150, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/ian-corvid/front.svg",
  17271. extra: 150 / 142,
  17272. bottom: 0.02
  17273. }
  17274. },
  17275. back: {
  17276. height: math.unit(7, "feet"),
  17277. weight: math.unit(150, "lb"),
  17278. name: "Back",
  17279. image: {
  17280. source: "./media/characters/ian-corvid/back.svg",
  17281. extra: 150 / 143,
  17282. bottom: 0.01
  17283. }
  17284. },
  17285. stomping: {
  17286. height: math.unit(7, "feet"),
  17287. weight: math.unit(150, "lb"),
  17288. name: "Stomping",
  17289. image: {
  17290. source: "./media/characters/ian-corvid/stomping.svg",
  17291. extra: 76 / 72
  17292. }
  17293. },
  17294. sitting: {
  17295. height: math.unit(7 / 1.8, "feet"),
  17296. weight: math.unit(150, "lb"),
  17297. name: "Sitting",
  17298. image: {
  17299. source: "./media/characters/ian-corvid/sitting.svg",
  17300. extra: 1400 / 1269,
  17301. bottom: 0.15
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Tiny Microw",
  17308. height: math.unit(1, "inch")
  17309. },
  17310. {
  17311. name: "Microw",
  17312. height: math.unit(6, "inches")
  17313. },
  17314. {
  17315. name: "Crow",
  17316. height: math.unit(7 + 1 / 12, "feet"),
  17317. default: true
  17318. },
  17319. {
  17320. name: "Macrow",
  17321. height: math.unit(176, "feet")
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17327. {
  17328. front: {
  17329. height: math.unit(5 + 7 / 12, "feet"),
  17330. weight: math.unit(147, "lb"),
  17331. name: "Front",
  17332. image: {
  17333. source: "./media/characters/natalie-kellon/front.svg",
  17334. extra: 1214 / 1141,
  17335. bottom: 0.02
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Micro",
  17342. height: math.unit(1 / 16, "inch")
  17343. },
  17344. {
  17345. name: "Tiny",
  17346. height: math.unit(4, "inches")
  17347. },
  17348. {
  17349. name: "Normal",
  17350. height: math.unit(5 + 7 / 12, "feet"),
  17351. default: true
  17352. },
  17353. {
  17354. name: "Amazon",
  17355. height: math.unit(12, "feet")
  17356. },
  17357. {
  17358. name: "Giantess",
  17359. height: math.unit(160, "meters")
  17360. },
  17361. {
  17362. name: "Titaness",
  17363. height: math.unit(800, "meters")
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(6, "feet"),
  17372. weight: math.unit(150, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/alluria/front.svg",
  17376. extra: 806 / 738,
  17377. bottom: 0.01
  17378. }
  17379. },
  17380. side: {
  17381. height: math.unit(6, "feet"),
  17382. weight: math.unit(150, "lb"),
  17383. name: "Side",
  17384. image: {
  17385. source: "./media/characters/alluria/side.svg",
  17386. extra: 800 / 750,
  17387. }
  17388. },
  17389. back: {
  17390. height: math.unit(6, "feet"),
  17391. weight: math.unit(150, "lb"),
  17392. name: "Back",
  17393. image: {
  17394. source: "./media/characters/alluria/back.svg",
  17395. extra: 806 / 738,
  17396. }
  17397. },
  17398. frontMaid: {
  17399. height: math.unit(6, "feet"),
  17400. weight: math.unit(150, "lb"),
  17401. name: "Front (Maid)",
  17402. image: {
  17403. source: "./media/characters/alluria/front-maid.svg",
  17404. extra: 806 / 738,
  17405. bottom: 0.01
  17406. }
  17407. },
  17408. sideMaid: {
  17409. height: math.unit(6, "feet"),
  17410. weight: math.unit(150, "lb"),
  17411. name: "Side (Maid)",
  17412. image: {
  17413. source: "./media/characters/alluria/side-maid.svg",
  17414. extra: 800 / 750,
  17415. bottom: 0.005
  17416. }
  17417. },
  17418. backMaid: {
  17419. height: math.unit(6, "feet"),
  17420. weight: math.unit(150, "lb"),
  17421. name: "Back (Maid)",
  17422. image: {
  17423. source: "./media/characters/alluria/back-maid.svg",
  17424. extra: 806 / 738,
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Micro",
  17431. height: math.unit(6, "inches"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(6, "feet"),
  17441. weight: math.unit(150, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/kyle/front.svg",
  17445. extra: 1069 / 962,
  17446. bottom: 77.228 / 1727.45
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Macro",
  17453. height: math.unit(150, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(6, "feet"),
  17463. weight: math.unit(300, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/duncan/front.svg",
  17467. extra: 1650 / 1482,
  17468. bottom: 0.05
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Macro",
  17475. height: math.unit(100, "feet"),
  17476. default: true
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17482. {
  17483. front: {
  17484. height: math.unit(5 + 4 / 12, "feet"),
  17485. weight: math.unit(220, "lb"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/memory/front.svg",
  17489. extra: 3641 / 3545,
  17490. bottom: 0.03
  17491. }
  17492. },
  17493. back: {
  17494. height: math.unit(5 + 4 / 12, "feet"),
  17495. weight: math.unit(220, "lb"),
  17496. name: "Back",
  17497. image: {
  17498. source: "./media/characters/memory/back.svg",
  17499. extra: 3641 / 3545,
  17500. bottom: 0.025
  17501. }
  17502. },
  17503. frontSkirt: {
  17504. height: math.unit(5 + 4 / 12, "feet"),
  17505. weight: math.unit(220, "lb"),
  17506. name: "Front (Skirt)",
  17507. image: {
  17508. source: "./media/characters/memory/front-skirt.svg",
  17509. extra: 3641 / 3545,
  17510. bottom: 0.03
  17511. }
  17512. },
  17513. frontDress: {
  17514. height: math.unit(5 + 4 / 12, "feet"),
  17515. weight: math.unit(220, "lb"),
  17516. name: "Front (Dress)",
  17517. image: {
  17518. source: "./media/characters/memory/front-dress.svg",
  17519. extra: 3641 / 3545,
  17520. bottom: 0.03
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Micro",
  17527. height: math.unit(6, "inches"),
  17528. default: true
  17529. },
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(5 + 4 / 12, "feet")
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(4 + 11 / 12, "feet"),
  17541. weight: math.unit(100, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/luno/front.svg",
  17545. extra: 1535 / 1487,
  17546. bottom: 0.03
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Micro",
  17553. height: math.unit(3, "inches")
  17554. },
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(4 + 11 / 12, "feet"),
  17558. default: true
  17559. },
  17560. {
  17561. name: "Macro",
  17562. height: math.unit(300, "feet")
  17563. },
  17564. {
  17565. name: "Megamacro",
  17566. height: math.unit(700, "miles")
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(6 + 2 / 12, "feet"),
  17575. weight: math.unit(170, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/jamesy/front.svg",
  17579. extra: 440 / 382,
  17580. bottom: 0.005
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Micro",
  17587. height: math.unit(3, "inches")
  17588. },
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(6 + 2 / 12, "feet"),
  17592. default: true
  17593. },
  17594. {
  17595. name: "Macro",
  17596. height: math.unit(300, "feet")
  17597. },
  17598. {
  17599. name: "Megamacro",
  17600. height: math.unit(700, "miles")
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(6, "feet"),
  17609. weight: math.unit(160, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/mark/front.svg",
  17613. extra: 3300 / 3100,
  17614. bottom: 136.42 / 3440.47
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(120, "meters")
  17622. },
  17623. {
  17624. name: "Bigger Macro",
  17625. height: math.unit(350, "meters")
  17626. },
  17627. {
  17628. name: "Megamacro",
  17629. height: math.unit(8, "km"),
  17630. default: true
  17631. },
  17632. {
  17633. name: "Continental",
  17634. height: math.unit(4550, "km")
  17635. },
  17636. {
  17637. name: "Planetary",
  17638. height: math.unit(65000, "km")
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17644. {
  17645. front: {
  17646. height: math.unit(6, "feet"),
  17647. weight: math.unit(400, "lb"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/mac/front.svg",
  17651. extra: 1048 / 987.7,
  17652. bottom: 60 / 1107.6,
  17653. }
  17654. },
  17655. },
  17656. [
  17657. {
  17658. name: "Macro",
  17659. height: math.unit(500, "feet"),
  17660. default: true
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(5 + 2 / 12, "feet"),
  17669. weight: math.unit(190, "lb"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/bari/front.svg",
  17673. extra: 3156 / 2880,
  17674. bottom: 0.03
  17675. }
  17676. },
  17677. back: {
  17678. height: math.unit(5 + 2 / 12, "feet"),
  17679. weight: math.unit(190, "lb"),
  17680. name: "Back",
  17681. image: {
  17682. source: "./media/characters/bari/back.svg",
  17683. extra: 3260 / 2834,
  17684. bottom: 0.025
  17685. }
  17686. },
  17687. frontPlush: {
  17688. height: math.unit(5 + 2 / 12, "feet"),
  17689. weight: math.unit(190, "lb"),
  17690. name: "Front (Plush)",
  17691. image: {
  17692. source: "./media/characters/bari/front-plush.svg",
  17693. extra: 1112 / 1061,
  17694. bottom: 0.002
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Micro",
  17701. height: math.unit(3, "inches")
  17702. },
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(5 + 2 / 12, "feet"),
  17706. default: true
  17707. },
  17708. {
  17709. name: "Macro",
  17710. height: math.unit(20, "feet")
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17716. {
  17717. front: {
  17718. height: math.unit(6 + 1 / 12, "feet"),
  17719. weight: math.unit(275, "lb"),
  17720. name: "Front",
  17721. image: {
  17722. source: "./media/characters/hunter-misha-raven/front.svg"
  17723. }
  17724. },
  17725. },
  17726. [
  17727. {
  17728. name: "Mortal",
  17729. height: math.unit(6 + 1 / 12, "feet")
  17730. },
  17731. {
  17732. name: "Divine",
  17733. height: math.unit(1.12134e34, "parsecs"),
  17734. default: true
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17740. {
  17741. front: {
  17742. height: math.unit(6 + 3 / 12, "feet"),
  17743. weight: math.unit(220, "lb"),
  17744. name: "Front",
  17745. image: {
  17746. source: "./media/characters/max-calore/front.svg",
  17747. extra: 1700 / 1648,
  17748. bottom: 0.01
  17749. }
  17750. },
  17751. back: {
  17752. height: math.unit(6 + 3 / 12, "feet"),
  17753. weight: math.unit(220, "lb"),
  17754. name: "Back",
  17755. image: {
  17756. source: "./media/characters/max-calore/back.svg",
  17757. extra: 1700 / 1648,
  17758. bottom: 0.01
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(6 + 3 / 12, "feet"),
  17766. default: true
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17772. {
  17773. side: {
  17774. height: math.unit(2 + 8 / 12, "feet"),
  17775. weight: math.unit(99, "lb"),
  17776. name: "Side",
  17777. image: {
  17778. source: "./media/characters/aspen/side.svg",
  17779. extra: 152 / 138,
  17780. bottom: 0.032
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(2 + 8 / 12, "feet"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17794. {
  17795. side: {
  17796. height: math.unit(3 + 2 / 12, "feet"),
  17797. weight: math.unit(224, "lb"),
  17798. name: "Side",
  17799. image: {
  17800. source: "./media/characters/sheila-feral-wolf/side.svg",
  17801. extra: 179 / 166,
  17802. bottom: 0.03
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(3 + 2 / 12, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17816. {
  17817. side: {
  17818. height: math.unit(1 + 9 / 12, "feet"),
  17819. weight: math.unit(38, "lb"),
  17820. name: "Side",
  17821. image: {
  17822. source: "./media/characters/michelle/side.svg",
  17823. extra: 147 / 136.7,
  17824. bottom: 0.03
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(1 + 9 / 12, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17838. {
  17839. front: {
  17840. height: math.unit(1.54, "feet"),
  17841. weight: math.unit(50, "lb"),
  17842. name: "Front",
  17843. image: {
  17844. source: "./media/characters/nino/front.svg"
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Normal",
  17851. height: math.unit(1.54, "feet"),
  17852. default: true
  17853. },
  17854. ]
  17855. ))
  17856. characterMakers.push(() => makeCharacter(
  17857. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17858. {
  17859. front: {
  17860. height: math.unit(1.49, "feet"),
  17861. weight: math.unit(45, "lb"),
  17862. name: "Front",
  17863. image: {
  17864. source: "./media/characters/viola/front.svg"
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(1.49, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(6 + 5 / 12, "feet"),
  17881. weight: math.unit(580, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/atlas/front.svg",
  17885. extra: 298.5 / 290,
  17886. bottom: 0.015
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(6 + 5 / 12, "feet"),
  17894. default: true
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17900. {
  17901. side: {
  17902. height: math.unit(15.6, "inches"),
  17903. weight: math.unit(10, "lb"),
  17904. name: "Side",
  17905. image: {
  17906. source: "./media/characters/davy/side.svg",
  17907. extra: 200 / 170,
  17908. bottom: 0.01
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(15.6, "inches"),
  17916. default: true
  17917. },
  17918. ]
  17919. ))
  17920. characterMakers.push(() => makeCharacter(
  17921. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17922. {
  17923. side: {
  17924. height: math.unit(4 + 8 / 12, "feet"),
  17925. weight: math.unit(166, "lb"),
  17926. name: "Side",
  17927. image: {
  17928. source: "./media/characters/fiona/side.svg",
  17929. extra: 232 / 220,
  17930. bottom: 0.03
  17931. }
  17932. },
  17933. },
  17934. [
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(4 + 8 / 12, "feet"),
  17938. default: true
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17944. {
  17945. front: {
  17946. height: math.unit(26, "inches"),
  17947. weight: math.unit(35, "lb"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/lyla/front.svg",
  17951. bottom: 0.1
  17952. }
  17953. },
  17954. },
  17955. [
  17956. {
  17957. name: "Normal",
  17958. height: math.unit(3, "feet"),
  17959. default: true
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17965. {
  17966. side: {
  17967. height: math.unit(1.8, "feet"),
  17968. weight: math.unit(44, "lb"),
  17969. name: "Side",
  17970. image: {
  17971. source: "./media/characters/perseus/side.svg",
  17972. bottom: 0.21
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(1.8, "feet"),
  17980. default: true
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17986. {
  17987. side: {
  17988. height: math.unit(4 + 2 / 12, "feet"),
  17989. weight: math.unit(20, "lb"),
  17990. name: "Side",
  17991. image: {
  17992. source: "./media/characters/remus/side.svg"
  17993. }
  17994. },
  17995. },
  17996. [
  17997. {
  17998. name: "Normal",
  17999. height: math.unit(4 + 2 / 12, "feet"),
  18000. default: true
  18001. },
  18002. ]
  18003. ))
  18004. characterMakers.push(() => makeCharacter(
  18005. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18006. {
  18007. front: {
  18008. height: math.unit(4 + 11 / 12, "feet"),
  18009. weight: math.unit(114, "lb"),
  18010. name: "Front",
  18011. image: {
  18012. source: "./media/characters/raf/front.svg",
  18013. extra: 1504/1339,
  18014. bottom: 26/1530
  18015. }
  18016. },
  18017. side: {
  18018. height: math.unit(4 + 11 / 12, "feet"),
  18019. weight: math.unit(114, "lb"),
  18020. name: "Side",
  18021. image: {
  18022. source: "./media/characters/raf/side.svg",
  18023. extra: 1466/1316,
  18024. bottom: 29/1495
  18025. }
  18026. },
  18027. paw: {
  18028. height: math.unit(1.45, "feet"),
  18029. name: "Paw",
  18030. image: {
  18031. source: "./media/characters/raf/paw.svg"
  18032. },
  18033. extraAttributes: {
  18034. "toeSize": {
  18035. name: "Toe Size",
  18036. power: 2,
  18037. type: "area",
  18038. base: math.unit(0.004, "m^2")
  18039. },
  18040. "padSize": {
  18041. name: "Pad Size",
  18042. power: 2,
  18043. type: "area",
  18044. base: math.unit(0.04, "m^2")
  18045. },
  18046. "footSize": {
  18047. name: "Foot Size",
  18048. power: 2,
  18049. type: "area",
  18050. base: math.unit(0.08, "m^2")
  18051. },
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Micro",
  18058. height: math.unit(2, "inches")
  18059. },
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(4 + 11 / 12, "feet"),
  18063. default: true
  18064. },
  18065. {
  18066. name: "Macro",
  18067. height: math.unit(70, "feet")
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18073. {
  18074. front: {
  18075. height: math.unit(1.5, "meters"),
  18076. weight: math.unit(68, "kg"),
  18077. name: "Front",
  18078. image: {
  18079. source: "./media/characters/liam-einarr/front.svg",
  18080. extra: 2822 / 2666
  18081. }
  18082. },
  18083. back: {
  18084. height: math.unit(1.5, "meters"),
  18085. weight: math.unit(68, "kg"),
  18086. name: "Back",
  18087. image: {
  18088. source: "./media/characters/liam-einarr/back.svg",
  18089. extra: 2822 / 2666,
  18090. bottom: 0.015
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(1.5, "meters"),
  18098. default: true
  18099. },
  18100. {
  18101. name: "Macro",
  18102. height: math.unit(150, "meters")
  18103. },
  18104. {
  18105. name: "Megamacro",
  18106. height: math.unit(35, "km")
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(6, "feet"),
  18115. weight: math.unit(75, "kg"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/linda/front.svg",
  18119. extra: 930 / 874,
  18120. bottom: 0.004
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(6, "feet"),
  18128. default: true
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(6 + 8 / 12, "feet"),
  18137. weight: math.unit(220, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/caylex/front.svg",
  18141. extra: 821 / 772,
  18142. bottom: 0.07
  18143. }
  18144. },
  18145. back: {
  18146. height: math.unit(6 + 8 / 12, "feet"),
  18147. weight: math.unit(220, "lb"),
  18148. name: "Back",
  18149. image: {
  18150. source: "./media/characters/caylex/back.svg",
  18151. extra: 821 / 772,
  18152. bottom: 0.022
  18153. }
  18154. },
  18155. hand: {
  18156. height: math.unit(1.25, "feet"),
  18157. name: "Hand",
  18158. image: {
  18159. source: "./media/characters/caylex/hand.svg"
  18160. }
  18161. },
  18162. foot: {
  18163. height: math.unit(1.6, "feet"),
  18164. name: "Foot",
  18165. image: {
  18166. source: "./media/characters/caylex/foot.svg"
  18167. }
  18168. },
  18169. armored: {
  18170. height: math.unit(6 + 8 / 12, "feet"),
  18171. weight: math.unit(250, "lb"),
  18172. name: "Armored",
  18173. image: {
  18174. source: "./media/characters/caylex/armored.svg",
  18175. extra: 1420 / 1310,
  18176. bottom: 0.045
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(6 + 8 / 12, "feet"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "Normal+",
  18188. height: math.unit(12, "feet")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(7 + 6 / 12, "feet"),
  18197. weight: math.unit(288, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/alana/front.svg",
  18201. extra: 679 / 653,
  18202. bottom: 22.5 / 701
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(7 + 6 / 12, "feet")
  18210. },
  18211. {
  18212. name: "Large",
  18213. height: math.unit(50, "feet")
  18214. },
  18215. {
  18216. name: "Macro",
  18217. height: math.unit(100, "feet"),
  18218. default: true
  18219. },
  18220. {
  18221. name: "Macro+",
  18222. height: math.unit(200, "feet")
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(6 + 1 / 12, "feet"),
  18231. weight: math.unit(210, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/hasani/front.svg",
  18235. extra: 244 / 232,
  18236. bottom: 0.01
  18237. }
  18238. },
  18239. back: {
  18240. height: math.unit(6 + 1 / 12, "feet"),
  18241. weight: math.unit(210, "lb"),
  18242. name: "Back",
  18243. image: {
  18244. source: "./media/characters/hasani/back.svg",
  18245. extra: 244 / 232,
  18246. bottom: 0.01
  18247. }
  18248. },
  18249. },
  18250. [
  18251. {
  18252. name: "Normal",
  18253. height: math.unit(6 + 1 / 12, "feet")
  18254. },
  18255. {
  18256. name: "Macro",
  18257. height: math.unit(175, "feet"),
  18258. default: true
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(1.82, "meters"),
  18267. weight: math.unit(140, "lb"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/nita/front.svg",
  18271. extra: 2473 / 2363,
  18272. bottom: 0.01
  18273. }
  18274. },
  18275. },
  18276. [
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(1.82, "m")
  18280. },
  18281. {
  18282. name: "Macro",
  18283. height: math.unit(300, "m")
  18284. },
  18285. {
  18286. name: "Mistake Canon",
  18287. height: math.unit(0.5, "miles"),
  18288. default: true
  18289. },
  18290. {
  18291. name: "Big Mistake",
  18292. height: math.unit(13, "miles")
  18293. },
  18294. {
  18295. name: "Playing God",
  18296. height: math.unit(2450, "miles")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(4, "feet"),
  18305. weight: math.unit(120, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/shiriko/front.svg",
  18309. extra: 970/934,
  18310. bottom: 5/975
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(4, "feet"),
  18318. default: true
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(6, "feet"),
  18327. name: "front",
  18328. image: {
  18329. source: "./media/characters/deja/front.svg",
  18330. extra: 926 / 840,
  18331. bottom: 0.07
  18332. }
  18333. },
  18334. },
  18335. [
  18336. {
  18337. name: "Planck Length",
  18338. height: math.unit(1.6e-35, "meters")
  18339. },
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(30.48, "meters"),
  18343. default: true
  18344. },
  18345. {
  18346. name: "Universal",
  18347. height: math.unit(8.8e26, "meters")
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18353. {
  18354. side: {
  18355. height: math.unit(8, "feet"),
  18356. weight: math.unit(6300, "lb"),
  18357. name: "Side",
  18358. image: {
  18359. source: "./media/characters/anima/side.svg",
  18360. bottom: 0.035
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(8, "feet"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(8, "feet"),
  18377. weight: math.unit(350, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/bianca/front.svg",
  18381. extra: 234 / 225,
  18382. bottom: 0.03
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(8, "feet"),
  18390. default: true
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18396. {
  18397. front: {
  18398. height: math.unit(11 + 5/12, "feet"),
  18399. weight: math.unit(1200, "lb"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/adinia/front.svg",
  18403. extra: 1767/1641,
  18404. bottom: 44/1811
  18405. },
  18406. extraAttributes: {
  18407. "energyIntake": {
  18408. name: "Energy Intake",
  18409. power: 3,
  18410. type: "energy",
  18411. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18412. },
  18413. }
  18414. },
  18415. back: {
  18416. height: math.unit(11 + 5/12, "feet"),
  18417. weight: math.unit(1200, "lb"),
  18418. name: "Back",
  18419. image: {
  18420. source: "./media/characters/adinia/back.svg",
  18421. extra: 1834/1684,
  18422. bottom: 14/1848
  18423. },
  18424. extraAttributes: {
  18425. "energyIntake": {
  18426. name: "Energy Intake",
  18427. power: 3,
  18428. type: "energy",
  18429. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18430. },
  18431. }
  18432. },
  18433. maw: {
  18434. height: math.unit(3.79, "feet"),
  18435. name: "Maw",
  18436. image: {
  18437. source: "./media/characters/adinia/maw.svg"
  18438. }
  18439. },
  18440. rump: {
  18441. height: math.unit(4.6, "feet"),
  18442. name: "Rump",
  18443. image: {
  18444. source: "./media/characters/adinia/rump.svg"
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(11 + 5 / 12, "feet"),
  18452. default: true
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18458. {
  18459. front: {
  18460. height: math.unit(3, "meters"),
  18461. weight: math.unit(200, "kg"),
  18462. name: "Front",
  18463. image: {
  18464. source: "./media/characters/lykasa/front.svg",
  18465. extra: 1076 / 976,
  18466. bottom: 0.06
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(3, "meters")
  18474. },
  18475. {
  18476. name: "Kaiju",
  18477. height: math.unit(120, "meters"),
  18478. default: true
  18479. },
  18480. {
  18481. name: "Mega Kaiju",
  18482. height: math.unit(240, "km")
  18483. },
  18484. {
  18485. name: "Giga Kaiju",
  18486. height: math.unit(400, "megameters")
  18487. },
  18488. {
  18489. name: "Tera Kaiju",
  18490. height: math.unit(800, "gigameters")
  18491. },
  18492. {
  18493. name: "Kaiju Dragon Goddess",
  18494. height: math.unit(26, "zettaparsecs")
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18500. {
  18501. side: {
  18502. height: math.unit(283 / 124 * 6, "feet"),
  18503. weight: math.unit(35000, "lb"),
  18504. name: "Side",
  18505. image: {
  18506. source: "./media/characters/malfaren/side.svg",
  18507. extra: 1310/529,
  18508. bottom: 24/1334
  18509. }
  18510. },
  18511. front: {
  18512. height: math.unit(22.36, "feet"),
  18513. weight: math.unit(35000, "lb"),
  18514. name: "Front",
  18515. image: {
  18516. source: "./media/characters/malfaren/front.svg",
  18517. extra: 1237/1115,
  18518. bottom: 32/1269
  18519. }
  18520. },
  18521. maw: {
  18522. height: math.unit(6.9, "feet"),
  18523. name: "Maw",
  18524. image: {
  18525. source: "./media/characters/malfaren/maw.svg"
  18526. }
  18527. },
  18528. dick: {
  18529. height: math.unit(6.19, "feet"),
  18530. name: "Dick",
  18531. image: {
  18532. source: "./media/characters/malfaren/dick.svg"
  18533. }
  18534. },
  18535. eye: {
  18536. height: math.unit(0.69, "feet"),
  18537. name: "Eye",
  18538. image: {
  18539. source: "./media/characters/malfaren/eye.svg"
  18540. }
  18541. },
  18542. },
  18543. [
  18544. {
  18545. name: "Big",
  18546. height: math.unit(283 / 162 * 6, "feet"),
  18547. },
  18548. {
  18549. name: "Bigger",
  18550. height: math.unit(283 / 124 * 6, "feet")
  18551. },
  18552. {
  18553. name: "Massive",
  18554. height: math.unit(283 / 92 * 6, "feet"),
  18555. default: true
  18556. },
  18557. {
  18558. name: "👀💦",
  18559. height: math.unit(283 / 73 * 6, "feet"),
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18565. {
  18566. front: {
  18567. height: math.unit(1.7, "m"),
  18568. weight: math.unit(70, "kg"),
  18569. name: "Front",
  18570. image: {
  18571. source: "./media/characters/kernel/front.svg",
  18572. extra: 222 / 210,
  18573. bottom: 0.007
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Nano",
  18580. height: math.unit(17, "micrometers")
  18581. },
  18582. {
  18583. name: "Micro",
  18584. height: math.unit(1.7, "mm")
  18585. },
  18586. {
  18587. name: "Small",
  18588. height: math.unit(1.7, "cm")
  18589. },
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(1.7, "m"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18599. {
  18600. front: {
  18601. height: math.unit(1.75, "meters"),
  18602. weight: math.unit(65, "kg"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/jayne-folest/front.svg",
  18606. extra: 2115 / 2007,
  18607. bottom: 0.02
  18608. }
  18609. },
  18610. back: {
  18611. height: math.unit(1.75, "meters"),
  18612. weight: math.unit(65, "kg"),
  18613. name: "Back",
  18614. image: {
  18615. source: "./media/characters/jayne-folest/back.svg",
  18616. extra: 2115 / 2007,
  18617. bottom: 0.005
  18618. }
  18619. },
  18620. frontClothed: {
  18621. height: math.unit(1.75, "meters"),
  18622. weight: math.unit(65, "kg"),
  18623. name: "Front (Clothed)",
  18624. image: {
  18625. source: "./media/characters/jayne-folest/front-clothed.svg",
  18626. extra: 2115 / 2007,
  18627. bottom: 0.035
  18628. }
  18629. },
  18630. hand: {
  18631. height: math.unit(1 / 1.260, "feet"),
  18632. name: "Hand",
  18633. image: {
  18634. source: "./media/characters/jayne-folest/hand.svg"
  18635. }
  18636. },
  18637. foot: {
  18638. height: math.unit(1 / 0.918, "feet"),
  18639. name: "Foot",
  18640. image: {
  18641. source: "./media/characters/jayne-folest/foot.svg"
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Micro",
  18648. height: math.unit(4, "cm")
  18649. },
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(1.75, "meters")
  18653. },
  18654. {
  18655. name: "Macro",
  18656. height: math.unit(47.5, "meters"),
  18657. default: true
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18663. {
  18664. front: {
  18665. height: math.unit(180, "cm"),
  18666. weight: math.unit(70, "kg"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/algier/front.svg",
  18670. extra: 596 / 572,
  18671. bottom: 0.04
  18672. }
  18673. },
  18674. back: {
  18675. height: math.unit(180, "cm"),
  18676. weight: math.unit(70, "kg"),
  18677. name: "Back",
  18678. image: {
  18679. source: "./media/characters/algier/back.svg",
  18680. extra: 596 / 572,
  18681. bottom: 0.025
  18682. }
  18683. },
  18684. frontdressed: {
  18685. height: math.unit(180, "cm"),
  18686. weight: math.unit(150, "kg"),
  18687. name: "Front-dressed",
  18688. image: {
  18689. source: "./media/characters/algier/front-dressed.svg",
  18690. extra: 596 / 572,
  18691. bottom: 0.038
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Micro",
  18698. height: math.unit(5, "cm")
  18699. },
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(180, "cm"),
  18703. default: true
  18704. },
  18705. {
  18706. name: "Macro",
  18707. height: math.unit(64, "m")
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18713. {
  18714. upright: {
  18715. height: math.unit(7, "feet"),
  18716. weight: math.unit(300, "lb"),
  18717. name: "Upright",
  18718. image: {
  18719. source: "./media/characters/pretzel/upright.svg",
  18720. extra: 534 / 522,
  18721. bottom: 0.065
  18722. }
  18723. },
  18724. sprawling: {
  18725. height: math.unit(3.75, "feet"),
  18726. weight: math.unit(300, "lb"),
  18727. name: "Sprawling",
  18728. image: {
  18729. source: "./media/characters/pretzel/sprawling.svg",
  18730. extra: 314 / 281,
  18731. bottom: 0.1
  18732. }
  18733. },
  18734. tongue: {
  18735. height: math.unit(2, "feet"),
  18736. name: "Tongue",
  18737. image: {
  18738. source: "./media/characters/pretzel/tongue.svg"
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(7, "feet"),
  18746. default: true
  18747. },
  18748. {
  18749. name: "Oversized",
  18750. height: math.unit(15, "feet")
  18751. },
  18752. {
  18753. name: "Huge",
  18754. height: math.unit(30, "feet")
  18755. },
  18756. {
  18757. name: "Macro",
  18758. height: math.unit(250, "feet")
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18764. {
  18765. sideFront: {
  18766. height: math.unit(5 + 2 / 12, "feet"),
  18767. weight: math.unit(120, "lb"),
  18768. name: "Front Side",
  18769. image: {
  18770. source: "./media/characters/roxi/side-front.svg",
  18771. extra: 2924 / 2717,
  18772. bottom: 0.08
  18773. }
  18774. },
  18775. sideBack: {
  18776. height: math.unit(5 + 2 / 12, "feet"),
  18777. weight: math.unit(120, "lb"),
  18778. name: "Back Side",
  18779. image: {
  18780. source: "./media/characters/roxi/side-back.svg",
  18781. extra: 2904 / 2693,
  18782. bottom: 0.06
  18783. }
  18784. },
  18785. front: {
  18786. height: math.unit(5 + 2 / 12, "feet"),
  18787. weight: math.unit(120, "lb"),
  18788. name: "Front",
  18789. image: {
  18790. source: "./media/characters/roxi/front.svg",
  18791. extra: 2028 / 1907,
  18792. bottom: 0.01
  18793. }
  18794. },
  18795. frontAlt: {
  18796. height: math.unit(5 + 2 / 12, "feet"),
  18797. weight: math.unit(120, "lb"),
  18798. name: "Front (Alt)",
  18799. image: {
  18800. source: "./media/characters/roxi/front-alt.svg",
  18801. extra: 1828 / 1798,
  18802. bottom: 0.01
  18803. }
  18804. },
  18805. sitting: {
  18806. height: math.unit(2.8, "feet"),
  18807. weight: math.unit(120, "lb"),
  18808. name: "Sitting",
  18809. image: {
  18810. source: "./media/characters/roxi/sitting.svg",
  18811. extra: 2660 / 2462,
  18812. bottom: 0.1
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(5 + 2 / 12, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18826. {
  18827. side: {
  18828. height: math.unit(55, "feet"),
  18829. weight: math.unit(153, "tons"),
  18830. name: "Side",
  18831. image: {
  18832. source: "./media/characters/shadow/side.svg",
  18833. extra: 701 / 628,
  18834. bottom: 0.02
  18835. }
  18836. },
  18837. flying: {
  18838. height: math.unit(145, "feet"),
  18839. weight: math.unit(153, "tons"),
  18840. name: "Flying",
  18841. image: {
  18842. source: "./media/characters/shadow/flying.svg"
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(55, "feet"),
  18850. default: true
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(6, "feet"),
  18859. weight: math.unit(200, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/marcie/front.svg",
  18863. extra: 960 / 876,
  18864. bottom: 58 / 1017.87
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Macro",
  18871. height: math.unit(1, "mile"),
  18872. default: true
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(7, "feet"),
  18881. weight: math.unit(200, "lb"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/kachina/front.svg",
  18885. extra: 1290.68 / 1119,
  18886. bottom: 36.5 / 1327.18
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(7, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18900. {
  18901. looking: {
  18902. height: math.unit(2, "meters"),
  18903. weight: math.unit(300, "kg"),
  18904. name: "Looking",
  18905. image: {
  18906. source: "./media/characters/kash/looking.svg",
  18907. extra: 474 / 344,
  18908. bottom: 0.03
  18909. }
  18910. },
  18911. side: {
  18912. height: math.unit(2, "meters"),
  18913. weight: math.unit(300, "kg"),
  18914. name: "Side",
  18915. image: {
  18916. source: "./media/characters/kash/side.svg",
  18917. extra: 302 / 251,
  18918. bottom: 0.03
  18919. }
  18920. },
  18921. front: {
  18922. height: math.unit(2, "meters"),
  18923. weight: math.unit(300, "kg"),
  18924. name: "Front",
  18925. image: {
  18926. source: "./media/characters/kash/front.svg",
  18927. extra: 495 / 360,
  18928. bottom: 0.015
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(2, "meters"),
  18936. default: true
  18937. },
  18938. {
  18939. name: "Big",
  18940. height: math.unit(3, "meters")
  18941. },
  18942. {
  18943. name: "Large",
  18944. height: math.unit(5, "meters")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18950. {
  18951. feeding: {
  18952. height: math.unit(6.7, "feet"),
  18953. weight: math.unit(350, "lb"),
  18954. name: "Feeding",
  18955. image: {
  18956. source: "./media/characters/lalim/feeding.svg",
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Normal",
  18963. height: math.unit(6.7, "feet"),
  18964. default: true
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(9.5, "feet"),
  18973. weight: math.unit(600, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/de'vout/front.svg",
  18977. extra: 1443 / 1328,
  18978. bottom: 0.025
  18979. }
  18980. },
  18981. back: {
  18982. height: math.unit(9.5, "feet"),
  18983. weight: math.unit(600, "lb"),
  18984. name: "Back",
  18985. image: {
  18986. source: "./media/characters/de'vout/back.svg",
  18987. extra: 1443 / 1328
  18988. }
  18989. },
  18990. frontDressed: {
  18991. height: math.unit(9.5, "feet"),
  18992. weight: math.unit(600, "lb"),
  18993. name: "Front (Dressed",
  18994. image: {
  18995. source: "./media/characters/de'vout/front-dressed.svg",
  18996. extra: 1443 / 1328,
  18997. bottom: 0.025
  18998. }
  18999. },
  19000. backDressed: {
  19001. height: math.unit(9.5, "feet"),
  19002. weight: math.unit(600, "lb"),
  19003. name: "Back (Dressed",
  19004. image: {
  19005. source: "./media/characters/de'vout/back-dressed.svg",
  19006. extra: 1443 / 1328
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(9.5, "feet"),
  19014. default: true
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(8, "feet"),
  19023. weight: math.unit(225, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/talana/front.svg",
  19027. extra: 1410 / 1300,
  19028. bottom: 0.015
  19029. }
  19030. },
  19031. frontDressed: {
  19032. height: math.unit(8, "feet"),
  19033. weight: math.unit(225, "lb"),
  19034. name: "Front (Dressed",
  19035. image: {
  19036. source: "./media/characters/talana/front-dressed.svg",
  19037. extra: 1410 / 1300,
  19038. bottom: 0.015
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(8, "feet"),
  19046. default: true
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19052. {
  19053. side: {
  19054. height: math.unit(7.2, "feet"),
  19055. weight: math.unit(150, "lb"),
  19056. name: "Side",
  19057. image: {
  19058. source: "./media/characters/xeauvok/side.svg",
  19059. extra: 1975 / 1523,
  19060. bottom: 0.07
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(7.2, "feet"),
  19068. default: true
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19074. {
  19075. side: {
  19076. height: math.unit(4, "meters"),
  19077. weight: math.unit(2200, "kg"),
  19078. name: "Side",
  19079. image: {
  19080. source: "./media/characters/zara/side.svg",
  19081. extra: 765/744,
  19082. bottom: 156/921
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(4, "meters"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19096. {
  19097. side: {
  19098. height: math.unit(6, "feet"),
  19099. weight: math.unit(150, "lb"),
  19100. name: "Side",
  19101. image: {
  19102. source: "./media/characters/richard-dragon/side.svg",
  19103. extra: 845 / 340,
  19104. bottom: 0.017
  19105. }
  19106. },
  19107. maw: {
  19108. height: math.unit(2.97, "feet"),
  19109. name: "Maw",
  19110. image: {
  19111. source: "./media/characters/richard-dragon/maw.svg"
  19112. }
  19113. },
  19114. },
  19115. [
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(4, "feet"),
  19123. weight: math.unit(100, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/richard-smeargle/front.svg",
  19127. extra: 2952 / 2820,
  19128. bottom: 0.028
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(4, "feet"),
  19136. default: true
  19137. },
  19138. {
  19139. name: "Dynamax",
  19140. height: math.unit(20, "meters")
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(6, "feet"),
  19149. weight: math.unit(110, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/klay/front.svg",
  19153. extra: 962 / 883,
  19154. bottom: 0.04
  19155. }
  19156. },
  19157. back: {
  19158. height: math.unit(6, "feet"),
  19159. weight: math.unit(110, "lb"),
  19160. name: "Back",
  19161. image: {
  19162. source: "./media/characters/klay/back.svg",
  19163. extra: 962 / 883
  19164. }
  19165. },
  19166. beans: {
  19167. height: math.unit(1.15, "feet"),
  19168. name: "Beans",
  19169. image: {
  19170. source: "./media/characters/klay/beans.svg"
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Micro",
  19177. height: math.unit(6, "inches")
  19178. },
  19179. {
  19180. name: "Mini",
  19181. height: math.unit(3, "feet")
  19182. },
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(6, "feet"),
  19186. default: true
  19187. },
  19188. {
  19189. name: "Big",
  19190. height: math.unit(25, "feet")
  19191. },
  19192. {
  19193. name: "Macro",
  19194. height: math.unit(100, "feet")
  19195. },
  19196. {
  19197. name: "Megamacro",
  19198. height: math.unit(400, "feet")
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19204. {
  19205. front: {
  19206. height: math.unit(6, "feet"),
  19207. weight: math.unit(160, "lb"),
  19208. name: "Front",
  19209. image: {
  19210. source: "./media/characters/marcus/front.svg",
  19211. extra: 734 / 676,
  19212. bottom: 0.03
  19213. }
  19214. },
  19215. },
  19216. [
  19217. {
  19218. name: "Little",
  19219. height: math.unit(6, "feet")
  19220. },
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(110, "feet"),
  19224. default: true
  19225. },
  19226. {
  19227. name: "Macro",
  19228. height: math.unit(250, "feet")
  19229. },
  19230. {
  19231. name: "Megamacro",
  19232. height: math.unit(1000, "feet")
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19238. {
  19239. front: {
  19240. height: math.unit(7, "feet"),
  19241. weight: math.unit(275, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/claude-delroute/front.svg",
  19245. extra: 902/827,
  19246. bottom: 26/928
  19247. }
  19248. },
  19249. side: {
  19250. height: math.unit(7, "feet"),
  19251. weight: math.unit(275, "lb"),
  19252. name: "Side",
  19253. image: {
  19254. source: "./media/characters/claude-delroute/side.svg",
  19255. extra: 908/853,
  19256. bottom: 16/924
  19257. }
  19258. },
  19259. back: {
  19260. height: math.unit(7, "feet"),
  19261. weight: math.unit(275, "lb"),
  19262. name: "Back",
  19263. image: {
  19264. source: "./media/characters/claude-delroute/back.svg",
  19265. extra: 911/829,
  19266. bottom: 18/929
  19267. }
  19268. },
  19269. maw: {
  19270. height: math.unit(0.6407, "meters"),
  19271. name: "Maw",
  19272. image: {
  19273. source: "./media/characters/claude-delroute/maw.svg"
  19274. }
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Normal",
  19280. height: math.unit(7, "feet"),
  19281. default: true
  19282. },
  19283. {
  19284. name: "Lorge",
  19285. height: math.unit(20, "feet")
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19291. {
  19292. front: {
  19293. height: math.unit(8 + 4 / 12, "feet"),
  19294. weight: math.unit(600, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/dragonien/front.svg",
  19298. extra: 100 / 94,
  19299. bottom: 3.3 / 103.3445
  19300. }
  19301. },
  19302. back: {
  19303. height: math.unit(8 + 4 / 12, "feet"),
  19304. weight: math.unit(600, "lb"),
  19305. name: "Back",
  19306. image: {
  19307. source: "./media/characters/dragonien/back.svg",
  19308. extra: 776 / 746,
  19309. bottom: 6.4 / 782.0616
  19310. }
  19311. },
  19312. foot: {
  19313. height: math.unit(1.54, "feet"),
  19314. name: "Foot",
  19315. image: {
  19316. source: "./media/characters/dragonien/foot.svg",
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(8 + 4 / 12, "feet"),
  19324. default: true
  19325. },
  19326. {
  19327. name: "Macro",
  19328. height: math.unit(200, "feet")
  19329. },
  19330. {
  19331. name: "Megamacro",
  19332. height: math.unit(1, "mile")
  19333. },
  19334. {
  19335. name: "Gigamacro",
  19336. height: math.unit(1000, "miles")
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19342. {
  19343. front: {
  19344. height: math.unit(5 + 2 / 12, "feet"),
  19345. weight: math.unit(110, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/desta/front.svg",
  19349. extra: 767 / 726,
  19350. bottom: 11.7 / 779
  19351. }
  19352. },
  19353. back: {
  19354. height: math.unit(5 + 2 / 12, "feet"),
  19355. weight: math.unit(110, "lb"),
  19356. name: "Back",
  19357. image: {
  19358. source: "./media/characters/desta/back.svg",
  19359. extra: 777 / 728,
  19360. bottom: 6 / 784
  19361. }
  19362. },
  19363. frontAlt: {
  19364. height: math.unit(5 + 2 / 12, "feet"),
  19365. weight: math.unit(110, "lb"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/desta/front-alt.svg",
  19369. extra: 1482 / 1417
  19370. }
  19371. },
  19372. side: {
  19373. height: math.unit(5 + 2 / 12, "feet"),
  19374. weight: math.unit(110, "lb"),
  19375. name: "Side",
  19376. image: {
  19377. source: "./media/characters/desta/side.svg",
  19378. extra: 2579 / 2491,
  19379. bottom: 0.053
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Micro",
  19386. height: math.unit(6, "inches")
  19387. },
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(5 + 2 / 12, "feet"),
  19391. default: true
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(62, "feet")
  19396. },
  19397. {
  19398. name: "Megamacro",
  19399. height: math.unit(1800, "feet")
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(10, "feet"),
  19408. weight: math.unit(700, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/storm-alystar/front.svg",
  19412. extra: 2112 / 1898,
  19413. bottom: 0.034
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Micro",
  19420. height: math.unit(3.5, "inches")
  19421. },
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(10, "feet"),
  19425. default: true
  19426. },
  19427. {
  19428. name: "Macro",
  19429. height: math.unit(400, "feet")
  19430. },
  19431. {
  19432. name: "Deific",
  19433. height: math.unit(60, "miles")
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(2.35, "meters"),
  19442. weight: math.unit(119, "kg"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/ilia/front.svg",
  19446. extra: 1285 / 1255,
  19447. bottom: 0.06
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(2.35, "meters")
  19455. },
  19456. {
  19457. name: "Macro",
  19458. height: math.unit(140, "meters"),
  19459. default: true
  19460. },
  19461. {
  19462. name: "Megamacro",
  19463. height: math.unit(100, "miles")
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(6 + 5 / 12, "feet"),
  19472. weight: math.unit(190, "lb"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/kingdead/front.svg",
  19476. extra: 1228 / 1177
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Micro",
  19483. height: math.unit(7, "inches")
  19484. },
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(6 + 5 / 12, "feet")
  19488. },
  19489. {
  19490. name: "Macro",
  19491. height: math.unit(150, "feet"),
  19492. default: true
  19493. },
  19494. {
  19495. name: "Megamacro",
  19496. height: math.unit(200, "miles")
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(8, "feet"),
  19505. weight: math.unit(600, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/kyrehx/front.svg",
  19509. extra: 1195 / 1095,
  19510. bottom: 0.034
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Micro",
  19517. height: math.unit(2, "inches")
  19518. },
  19519. {
  19520. name: "Normal",
  19521. height: math.unit(8, "feet"),
  19522. default: true
  19523. },
  19524. {
  19525. name: "Macro",
  19526. height: math.unit(255, "feet")
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19532. {
  19533. front: {
  19534. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19535. weight: math.unit(184, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/xang/front.svg",
  19539. extra: 845 / 755
  19540. }
  19541. },
  19542. },
  19543. [
  19544. {
  19545. name: "Normal",
  19546. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19547. default: true
  19548. },
  19549. {
  19550. name: "Macro",
  19551. height: math.unit(0.935 * 146, "feet")
  19552. },
  19553. {
  19554. name: "Megamacro",
  19555. height: math.unit(0.935 * 3, "miles")
  19556. },
  19557. ]
  19558. ))
  19559. characterMakers.push(() => makeCharacter(
  19560. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19561. {
  19562. frontDressed: {
  19563. height: math.unit(5 + 7 / 12, "feet"),
  19564. weight: math.unit(140, "lb"),
  19565. name: "Front (Dressed)",
  19566. image: {
  19567. source: "./media/characters/doc-weardno/front-dressed.svg",
  19568. extra: 263 / 234
  19569. }
  19570. },
  19571. backDressed: {
  19572. height: math.unit(5 + 7 / 12, "feet"),
  19573. weight: math.unit(140, "lb"),
  19574. name: "Back (Dressed)",
  19575. image: {
  19576. source: "./media/characters/doc-weardno/back-dressed.svg",
  19577. extra: 266 / 238
  19578. }
  19579. },
  19580. front: {
  19581. height: math.unit(5 + 7 / 12, "feet"),
  19582. weight: math.unit(140, "lb"),
  19583. name: "Front",
  19584. image: {
  19585. source: "./media/characters/doc-weardno/front.svg",
  19586. extra: 254 / 233
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Micro",
  19593. height: math.unit(3, "inches")
  19594. },
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(5 + 7 / 12, "feet"),
  19598. default: true
  19599. },
  19600. {
  19601. name: "Macro",
  19602. height: math.unit(25, "feet")
  19603. },
  19604. {
  19605. name: "Megamacro",
  19606. height: math.unit(2, "miles")
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19612. {
  19613. front: {
  19614. height: math.unit(6 + 2 / 12, "feet"),
  19615. weight: math.unit(153, "lb"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/seth-whilst/front.svg",
  19619. bottom: 0.07
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Micro",
  19626. height: math.unit(5, "inches")
  19627. },
  19628. {
  19629. name: "Normal",
  19630. height: math.unit(6 + 2 / 12, "feet"),
  19631. default: true
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19637. {
  19638. front: {
  19639. height: math.unit(3, "inches"),
  19640. weight: math.unit(8, "grams"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/pocket-jabari/front.svg",
  19644. extra: 1024 / 974,
  19645. bottom: 0.039
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Minimicro",
  19652. height: math.unit(8, "mm")
  19653. },
  19654. {
  19655. name: "Micro",
  19656. height: math.unit(3, "inches"),
  19657. default: true
  19658. },
  19659. {
  19660. name: "Normal",
  19661. height: math.unit(3, "feet")
  19662. },
  19663. ]
  19664. ))
  19665. characterMakers.push(() => makeCharacter(
  19666. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19667. {
  19668. frontDressed: {
  19669. height: math.unit(15, "feet"),
  19670. weight: math.unit(3280, "lb"),
  19671. name: "Front (Dressed)",
  19672. image: {
  19673. source: "./media/characters/sapphy/front-dressed.svg",
  19674. extra: 1951/1654,
  19675. bottom: 194/2145
  19676. },
  19677. form: "anthro",
  19678. default: true
  19679. },
  19680. backDressed: {
  19681. height: math.unit(15, "feet"),
  19682. weight: math.unit(3280, "lb"),
  19683. name: "Back (Dressed)",
  19684. image: {
  19685. source: "./media/characters/sapphy/back-dressed.svg",
  19686. extra: 2058/1918,
  19687. bottom: 125/2183
  19688. },
  19689. form: "anthro"
  19690. },
  19691. frontNude: {
  19692. height: math.unit(15, "feet"),
  19693. weight: math.unit(3280, "lb"),
  19694. name: "Front (Nude)",
  19695. image: {
  19696. source: "./media/characters/sapphy/front-nude.svg",
  19697. extra: 1951/1654,
  19698. bottom: 194/2145
  19699. },
  19700. form: "anthro"
  19701. },
  19702. backNude: {
  19703. height: math.unit(15, "feet"),
  19704. weight: math.unit(3280, "lb"),
  19705. name: "Back (Nude)",
  19706. image: {
  19707. source: "./media/characters/sapphy/back-nude.svg",
  19708. extra: 2058/1918,
  19709. bottom: 125/2183
  19710. },
  19711. form: "anthro"
  19712. },
  19713. full: {
  19714. height: math.unit(15, "feet"),
  19715. weight: math.unit(3280, "lb"),
  19716. name: "Full",
  19717. image: {
  19718. source: "./media/characters/sapphy/full.svg",
  19719. extra: 1396/1317,
  19720. bottom: 44/1440
  19721. },
  19722. form: "anthro"
  19723. },
  19724. dick: {
  19725. height: math.unit(3.8, "feet"),
  19726. name: "Dick",
  19727. image: {
  19728. source: "./media/characters/sapphy/dick.svg"
  19729. },
  19730. form: "anthro"
  19731. },
  19732. feral: {
  19733. height: math.unit(35, "feet"),
  19734. weight: math.unit(160, "tons"),
  19735. name: "Feral",
  19736. image: {
  19737. source: "./media/characters/sapphy/feral.svg",
  19738. extra: 1050/573,
  19739. bottom: 60/1110
  19740. },
  19741. form: "feral",
  19742. default: true
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(15, "feet"),
  19749. form: "anthro"
  19750. },
  19751. {
  19752. name: "Casual Macro",
  19753. height: math.unit(120, "feet"),
  19754. form: "anthro"
  19755. },
  19756. {
  19757. name: "Macro",
  19758. height: math.unit(2150, "feet"),
  19759. default: true,
  19760. form: "anthro"
  19761. },
  19762. {
  19763. name: "Megamacro",
  19764. height: math.unit(8, "miles"),
  19765. form: "anthro"
  19766. },
  19767. {
  19768. name: "Galaxy Mom",
  19769. height: math.unit(6, "megalightyears"),
  19770. form: "anthro"
  19771. },
  19772. {
  19773. name: "Normal",
  19774. height: math.unit(35, "feet"),
  19775. form: "feral",
  19776. default: true
  19777. },
  19778. {
  19779. name: "Macro",
  19780. height: math.unit(300, "feet"),
  19781. form: "feral"
  19782. },
  19783. {
  19784. name: "Galaxy Mom",
  19785. height: math.unit(10, "megalightyears"),
  19786. form: "feral"
  19787. },
  19788. ],
  19789. {
  19790. "anthro": {
  19791. name: "Anthro",
  19792. default: true
  19793. },
  19794. "feral": {
  19795. name: "Feral"
  19796. }
  19797. }
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19801. {
  19802. front: {
  19803. height: math.unit(6, "feet"),
  19804. weight: math.unit(170, "lb"),
  19805. name: "Front",
  19806. image: {
  19807. source: "./media/characters/kiro/front.svg",
  19808. extra: 1064 / 1012,
  19809. bottom: 0.052
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Micro",
  19816. height: math.unit(6, "inches")
  19817. },
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(6, "feet"),
  19821. default: true
  19822. },
  19823. {
  19824. name: "Macro",
  19825. height: math.unit(72, "feet")
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(5 + 9 / 12, "feet"),
  19834. weight: math.unit(175, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/irishfox/front.svg",
  19838. extra: 1912 / 1680,
  19839. bottom: 0.02
  19840. }
  19841. },
  19842. },
  19843. [
  19844. {
  19845. name: "Nano",
  19846. height: math.unit(1, "mm")
  19847. },
  19848. {
  19849. name: "Micro",
  19850. height: math.unit(2, "inches")
  19851. },
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(5 + 9 / 12, "feet"),
  19855. default: true
  19856. },
  19857. {
  19858. name: "Macro",
  19859. height: math.unit(45, "feet")
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(6 + 1 / 12, "feet"),
  19868. weight: math.unit(75, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/aronai-sieyes/front.svg",
  19872. extra: 1532/1450,
  19873. bottom: 42/1574
  19874. }
  19875. },
  19876. side: {
  19877. height: math.unit(6 + 1 / 12, "feet"),
  19878. weight: math.unit(75, "lb"),
  19879. name: "Side",
  19880. image: {
  19881. source: "./media/characters/aronai-sieyes/side.svg",
  19882. extra: 1422/1365,
  19883. bottom: 148/1570
  19884. }
  19885. },
  19886. back: {
  19887. height: math.unit(6 + 1 / 12, "feet"),
  19888. weight: math.unit(75, "lb"),
  19889. name: "Back",
  19890. image: {
  19891. source: "./media/characters/aronai-sieyes/back.svg",
  19892. extra: 1526/1464,
  19893. bottom: 51/1577
  19894. }
  19895. },
  19896. dressed: {
  19897. height: math.unit(6 + 1 / 12, "feet"),
  19898. weight: math.unit(75, "lb"),
  19899. name: "Dressed",
  19900. image: {
  19901. source: "./media/characters/aronai-sieyes/dressed.svg",
  19902. extra: 1559/1483,
  19903. bottom: 39/1598
  19904. }
  19905. },
  19906. slit: {
  19907. height: math.unit(1.3, "feet"),
  19908. name: "Slit",
  19909. image: {
  19910. source: "./media/characters/aronai-sieyes/slit.svg"
  19911. }
  19912. },
  19913. slitSpread: {
  19914. height: math.unit(0.9, "feet"),
  19915. name: "Slit (Spread)",
  19916. image: {
  19917. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19918. }
  19919. },
  19920. rump: {
  19921. height: math.unit(1.3, "feet"),
  19922. name: "Rump",
  19923. image: {
  19924. source: "./media/characters/aronai-sieyes/rump.svg"
  19925. }
  19926. },
  19927. maw: {
  19928. height: math.unit(1.25, "feet"),
  19929. name: "Maw",
  19930. image: {
  19931. source: "./media/characters/aronai-sieyes/maw.svg"
  19932. }
  19933. },
  19934. feral: {
  19935. height: math.unit(18, "feet"),
  19936. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19937. name: "Feral",
  19938. image: {
  19939. source: "./media/characters/aronai-sieyes/feral.svg",
  19940. extra: 1530 / 1240,
  19941. bottom: 0.035
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Micro",
  19948. height: math.unit(2, "inches")
  19949. },
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(6 + 1 / 12, "feet"),
  19953. default: true
  19954. }
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(12, "feet"),
  19962. weight: math.unit(410, "kg"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/xuna/front.svg",
  19966. extra: 2184 / 1980
  19967. }
  19968. },
  19969. side: {
  19970. height: math.unit(12, "feet"),
  19971. weight: math.unit(410, "kg"),
  19972. name: "Side",
  19973. image: {
  19974. source: "./media/characters/xuna/side.svg",
  19975. extra: 2184 / 1980
  19976. }
  19977. },
  19978. back: {
  19979. height: math.unit(12, "feet"),
  19980. weight: math.unit(410, "kg"),
  19981. name: "Back",
  19982. image: {
  19983. source: "./media/characters/xuna/back.svg",
  19984. extra: 2184 / 1980
  19985. }
  19986. },
  19987. },
  19988. [
  19989. {
  19990. name: "Nano glow",
  19991. height: math.unit(10, "nm")
  19992. },
  19993. {
  19994. name: "Micro floof",
  19995. height: math.unit(0.3, "m")
  19996. },
  19997. {
  19998. name: "Huggable softy boi",
  19999. height: math.unit(3.6576, "m"),
  20000. default: true
  20001. },
  20002. {
  20003. name: "Admirable floof",
  20004. height: math.unit(80, "meters")
  20005. },
  20006. {
  20007. name: "Gentle macro",
  20008. height: math.unit(300, "meters")
  20009. },
  20010. {
  20011. name: "Very careful floof",
  20012. height: math.unit(3200, "meters")
  20013. },
  20014. {
  20015. name: "The mega floof",
  20016. height: math.unit(36000, "meters")
  20017. },
  20018. {
  20019. name: "Giga-fur-Wicker",
  20020. height: math.unit(4800000, "meters")
  20021. },
  20022. {
  20023. name: "Licky world",
  20024. height: math.unit(20000000, "meters")
  20025. },
  20026. {
  20027. name: "Floofy cyan sun",
  20028. height: math.unit(1500000000, "meters")
  20029. },
  20030. {
  20031. name: "Milky Wicker",
  20032. height: math.unit(1000000000000000000000, "meters")
  20033. },
  20034. {
  20035. name: "The observing Wicker",
  20036. height: math.unit(999999999999999999999999999, "meters")
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20042. {
  20043. front: {
  20044. height: math.unit(5 + 9 / 12, "feet"),
  20045. weight: math.unit(150, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/arokha-sieyes/front.svg",
  20049. extra: 1425 / 1284,
  20050. bottom: 0.05
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Normal",
  20057. height: math.unit(5 + 9 / 12, "feet")
  20058. },
  20059. {
  20060. name: "Macro",
  20061. height: math.unit(30, "meters"),
  20062. default: true
  20063. },
  20064. ]
  20065. ))
  20066. characterMakers.push(() => makeCharacter(
  20067. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20068. {
  20069. front: {
  20070. height: math.unit(6, "feet"),
  20071. weight: math.unit(180, "lb"),
  20072. name: "Front",
  20073. image: {
  20074. source: "./media/characters/arokh-sieyes/front.svg",
  20075. extra: 1830 / 1769,
  20076. bottom: 0.01
  20077. }
  20078. },
  20079. },
  20080. [
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(6, "feet")
  20084. },
  20085. {
  20086. name: "Macro",
  20087. height: math.unit(30, "meters"),
  20088. default: true
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20094. {
  20095. side: {
  20096. height: math.unit(13 + 1 / 12, "feet"),
  20097. weight: math.unit(8.5, "tonnes"),
  20098. name: "Side",
  20099. image: {
  20100. source: "./media/characters/goldeneye/side.svg",
  20101. extra: 1182 / 778,
  20102. bottom: 0.067
  20103. }
  20104. },
  20105. paw: {
  20106. height: math.unit(3.4, "feet"),
  20107. name: "Paw",
  20108. image: {
  20109. source: "./media/characters/goldeneye/paw.svg"
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(13 + 1 / 12, "feet"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20123. {
  20124. front: {
  20125. height: math.unit(6 + 1 / 12, "feet"),
  20126. weight: math.unit(210, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/leonardo-lycheborne/front.svg",
  20130. extra: 776/723,
  20131. bottom: 34/810
  20132. }
  20133. },
  20134. side: {
  20135. height: math.unit(6 + 1 / 12, "feet"),
  20136. weight: math.unit(210, "lb"),
  20137. name: "Side",
  20138. image: {
  20139. source: "./media/characters/leonardo-lycheborne/side.svg",
  20140. extra: 780/728,
  20141. bottom: 12/792
  20142. }
  20143. },
  20144. back: {
  20145. height: math.unit(6 + 1 / 12, "feet"),
  20146. weight: math.unit(210, "lb"),
  20147. name: "Back",
  20148. image: {
  20149. source: "./media/characters/leonardo-lycheborne/back.svg",
  20150. extra: 775/721,
  20151. bottom: 17/792
  20152. }
  20153. },
  20154. hand: {
  20155. height: math.unit(1.08, "feet"),
  20156. name: "Hand",
  20157. image: {
  20158. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20159. }
  20160. },
  20161. foot: {
  20162. height: math.unit(1.32, "feet"),
  20163. name: "Foot",
  20164. image: {
  20165. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20166. }
  20167. },
  20168. maw: {
  20169. height: math.unit(1, "feet"),
  20170. name: "Maw",
  20171. image: {
  20172. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20173. }
  20174. },
  20175. were: {
  20176. height: math.unit(20, "feet"),
  20177. weight: math.unit(7800, "lb"),
  20178. name: "Were",
  20179. image: {
  20180. source: "./media/characters/leonardo-lycheborne/were.svg",
  20181. extra: 1224/1165,
  20182. bottom: 72/1296
  20183. }
  20184. },
  20185. feral: {
  20186. height: math.unit(7.5, "feet"),
  20187. weight: math.unit(600, "lb"),
  20188. name: "Feral",
  20189. image: {
  20190. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20191. extra: 797/702,
  20192. bottom: 139/936
  20193. }
  20194. },
  20195. taur: {
  20196. height: math.unit(11, "feet"),
  20197. weight: math.unit(3300, "lb"),
  20198. name: "Taur",
  20199. image: {
  20200. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20201. extra: 1271/1197,
  20202. bottom: 47/1318
  20203. }
  20204. },
  20205. barghest: {
  20206. height: math.unit(11, "feet"),
  20207. weight: math.unit(1300, "lb"),
  20208. name: "Barghest",
  20209. image: {
  20210. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20211. extra: 1291/1204,
  20212. bottom: 37/1328
  20213. }
  20214. },
  20215. dick: {
  20216. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20217. name: "Dick",
  20218. image: {
  20219. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20220. }
  20221. },
  20222. dickWere: {
  20223. height: math.unit((20) / 3.8, "feet"),
  20224. name: "Dick (Were)",
  20225. image: {
  20226. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Normal",
  20233. height: math.unit(6 + 1 / 12, "feet"),
  20234. default: true
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20240. {
  20241. front: {
  20242. height: math.unit(10, "feet"),
  20243. weight: math.unit(350, "lb"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/jet/front.svg",
  20247. extra: 2050 / 1980,
  20248. bottom: 0.013
  20249. }
  20250. },
  20251. back: {
  20252. height: math.unit(10, "feet"),
  20253. weight: math.unit(350, "lb"),
  20254. name: "Back",
  20255. image: {
  20256. source: "./media/characters/jet/back.svg",
  20257. extra: 2050 / 1980,
  20258. bottom: 0.013
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Micro",
  20265. height: math.unit(6, "inches")
  20266. },
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(10, "feet"),
  20270. default: true
  20271. },
  20272. {
  20273. name: "Macro",
  20274. height: math.unit(100, "feet")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(15, "feet"),
  20283. weight: math.unit(2800, "lb"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/tanarath/front.svg",
  20287. extra: 2392 / 2220,
  20288. bottom: 0.03
  20289. }
  20290. },
  20291. back: {
  20292. height: math.unit(15, "feet"),
  20293. weight: math.unit(2800, "lb"),
  20294. name: "Back",
  20295. image: {
  20296. source: "./media/characters/tanarath/back.svg",
  20297. extra: 2392 / 2220,
  20298. bottom: 0.03
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(15, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20312. {
  20313. front: {
  20314. height: math.unit(7 + 1 / 12, "feet"),
  20315. weight: math.unit(175, "lb"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/patty-cattybatty/front.svg",
  20319. extra: 908 / 874,
  20320. bottom: 0.025
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Micro",
  20327. height: math.unit(1, "inch")
  20328. },
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(7 + 1 / 12, "feet")
  20332. },
  20333. {
  20334. name: "Mini Macro",
  20335. height: math.unit(155, "feet")
  20336. },
  20337. {
  20338. name: "Macro",
  20339. height: math.unit(1077, "feet")
  20340. },
  20341. {
  20342. name: "Mega Macro",
  20343. height: math.unit(47650, "feet"),
  20344. default: true
  20345. },
  20346. {
  20347. name: "Giga Macro",
  20348. height: math.unit(440, "miles")
  20349. },
  20350. {
  20351. name: "Tera Macro",
  20352. height: math.unit(8700, "miles")
  20353. },
  20354. {
  20355. name: "Planetary Macro",
  20356. height: math.unit(32700, "miles")
  20357. },
  20358. {
  20359. name: "Solar Macro",
  20360. height: math.unit(550000, "miles")
  20361. },
  20362. {
  20363. name: "Celestial Macro",
  20364. height: math.unit(2.5, "AU")
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20370. {
  20371. front: {
  20372. height: math.unit(4 + 5 / 12, "feet"),
  20373. weight: math.unit(90, "lb"),
  20374. name: "Front",
  20375. image: {
  20376. source: "./media/characters/cappu/front.svg",
  20377. extra: 1247 / 1152,
  20378. bottom: 0.012
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Normal",
  20385. height: math.unit(4 + 5 / 12, "feet"),
  20386. default: true
  20387. },
  20388. ]
  20389. ))
  20390. characterMakers.push(() => makeCharacter(
  20391. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20392. {
  20393. frontDressed: {
  20394. height: math.unit(70, "cm"),
  20395. weight: math.unit(6, "kg"),
  20396. name: "Front (Dressed)",
  20397. image: {
  20398. source: "./media/characters/sebi/front-dressed.svg",
  20399. extra: 713.5 / 686.5,
  20400. bottom: 0.003
  20401. }
  20402. },
  20403. front: {
  20404. height: math.unit(70, "cm"),
  20405. weight: math.unit(5, "kg"),
  20406. name: "Front",
  20407. image: {
  20408. source: "./media/characters/sebi/front.svg",
  20409. extra: 713.5 / 686.5,
  20410. bottom: 0.003
  20411. }
  20412. }
  20413. },
  20414. [
  20415. {
  20416. name: "Normal",
  20417. height: math.unit(70, "cm"),
  20418. default: true
  20419. },
  20420. {
  20421. name: "Macro",
  20422. height: math.unit(8, "meters")
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20428. {
  20429. front: {
  20430. height: math.unit(6, "feet"),
  20431. weight: math.unit(150, "lb"),
  20432. name: "Front",
  20433. image: {
  20434. source: "./media/characters/typhek/front.svg",
  20435. extra: 1948 / 1929,
  20436. bottom: 0.025
  20437. }
  20438. },
  20439. side: {
  20440. height: math.unit(6, "feet"),
  20441. weight: math.unit(150, "lb"),
  20442. name: "Side",
  20443. image: {
  20444. source: "./media/characters/typhek/side.svg",
  20445. extra: 2034 / 2010,
  20446. bottom: 0.003
  20447. }
  20448. },
  20449. back: {
  20450. height: math.unit(6, "feet"),
  20451. weight: math.unit(150, "lb"),
  20452. name: "Back",
  20453. image: {
  20454. source: "./media/characters/typhek/back.svg",
  20455. extra: 2005 / 1978,
  20456. bottom: 0.004
  20457. }
  20458. },
  20459. palm: {
  20460. height: math.unit(1.2, "feet"),
  20461. name: "Palm",
  20462. image: {
  20463. source: "./media/characters/typhek/palm.svg"
  20464. }
  20465. },
  20466. fist: {
  20467. height: math.unit(1.1, "feet"),
  20468. name: "Fist",
  20469. image: {
  20470. source: "./media/characters/typhek/fist.svg"
  20471. }
  20472. },
  20473. foot: {
  20474. height: math.unit(1.57, "feet"),
  20475. name: "Foot",
  20476. image: {
  20477. source: "./media/characters/typhek/foot.svg"
  20478. }
  20479. },
  20480. sole: {
  20481. height: math.unit(2.05, "feet"),
  20482. name: "Sole",
  20483. image: {
  20484. source: "./media/characters/typhek/sole.svg"
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Macro",
  20491. height: math.unit(40, "stories"),
  20492. default: true
  20493. },
  20494. {
  20495. name: "Megamacro",
  20496. height: math.unit(1, "mile")
  20497. },
  20498. {
  20499. name: "Gigamacro",
  20500. height: math.unit(4000, "solarradii")
  20501. },
  20502. {
  20503. name: "Universal",
  20504. height: math.unit(1.1, "universes")
  20505. }
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20510. {
  20511. side: {
  20512. height: math.unit(5 + 7 / 12, "feet"),
  20513. weight: math.unit(150, "lb"),
  20514. name: "Side",
  20515. image: {
  20516. source: "./media/characters/kassy/side.svg",
  20517. extra: 1280 / 1225,
  20518. bottom: 0.002
  20519. }
  20520. },
  20521. front: {
  20522. height: math.unit(5 + 7 / 12, "feet"),
  20523. weight: math.unit(150, "lb"),
  20524. name: "Front",
  20525. image: {
  20526. source: "./media/characters/kassy/front.svg",
  20527. extra: 1280 / 1225,
  20528. bottom: 0.025
  20529. }
  20530. },
  20531. back: {
  20532. height: math.unit(5 + 7 / 12, "feet"),
  20533. weight: math.unit(150, "lb"),
  20534. name: "Back",
  20535. image: {
  20536. source: "./media/characters/kassy/back.svg",
  20537. extra: 1280 / 1225,
  20538. bottom: 0.002
  20539. }
  20540. },
  20541. foot: {
  20542. height: math.unit(1.266, "feet"),
  20543. name: "Foot",
  20544. image: {
  20545. source: "./media/characters/kassy/foot.svg"
  20546. }
  20547. },
  20548. },
  20549. [
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(5 + 7 / 12, "feet")
  20553. },
  20554. {
  20555. name: "Macro",
  20556. height: math.unit(137, "feet"),
  20557. default: true
  20558. },
  20559. {
  20560. name: "Megamacro",
  20561. height: math.unit(1, "mile")
  20562. },
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(6 + 1 / 12, "feet"),
  20570. weight: math.unit(200, "lb"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/neil/front.svg",
  20574. extra: 1326 / 1250,
  20575. bottom: 0.023
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(6 + 1 / 12, "feet"),
  20583. default: true
  20584. },
  20585. {
  20586. name: "Macro",
  20587. height: math.unit(200, "feet")
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(5 + 9 / 12, "feet"),
  20596. weight: math.unit(190, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/atticus/front.svg",
  20600. extra: 2934 / 2785,
  20601. bottom: 0.025
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(5 + 9 / 12, "feet"),
  20609. default: true
  20610. },
  20611. {
  20612. name: "Macro",
  20613. height: math.unit(180, "feet")
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20619. {
  20620. side: {
  20621. height: math.unit(9, "feet"),
  20622. weight: math.unit(650, "lb"),
  20623. name: "Side",
  20624. image: {
  20625. source: "./media/characters/milo/side.svg",
  20626. extra: 2644 / 2310,
  20627. bottom: 0.032
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(9, "feet"),
  20635. default: true
  20636. },
  20637. {
  20638. name: "Macro",
  20639. height: math.unit(300, "feet")
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20645. {
  20646. side: {
  20647. height: math.unit(8, "meters"),
  20648. weight: math.unit(90000, "kg"),
  20649. name: "Side",
  20650. image: {
  20651. source: "./media/characters/ijzer/side.svg",
  20652. extra: 2756 / 1600,
  20653. bottom: 0.01
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Small",
  20660. height: math.unit(3, "meters")
  20661. },
  20662. {
  20663. name: "Normal",
  20664. height: math.unit(8, "meters"),
  20665. default: true
  20666. },
  20667. {
  20668. name: "Normal+",
  20669. height: math.unit(10, "meters")
  20670. },
  20671. {
  20672. name: "Bigger",
  20673. height: math.unit(24, "meters")
  20674. },
  20675. {
  20676. name: "Huge",
  20677. height: math.unit(80, "meters")
  20678. },
  20679. ]
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20683. {
  20684. front: {
  20685. height: math.unit(6 + 2 / 12, "feet"),
  20686. weight: math.unit(153, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/luca-cervicum/front.svg",
  20690. extra: 370 / 327,
  20691. bottom: 0.015
  20692. }
  20693. },
  20694. back: {
  20695. height: math.unit(6 + 2 / 12, "feet"),
  20696. weight: math.unit(153, "lb"),
  20697. name: "Back",
  20698. image: {
  20699. source: "./media/characters/luca-cervicum/back.svg",
  20700. extra: 367 / 333,
  20701. bottom: 0.005
  20702. }
  20703. },
  20704. frontGear: {
  20705. height: math.unit(6 + 2 / 12, "feet"),
  20706. weight: math.unit(173, "lb"),
  20707. name: "Front (Gear)",
  20708. image: {
  20709. source: "./media/characters/luca-cervicum/front-gear.svg",
  20710. extra: 377 / 333,
  20711. bottom: 0.006
  20712. }
  20713. },
  20714. },
  20715. [
  20716. {
  20717. name: "Normal",
  20718. height: math.unit(6 + 2 / 12, "feet"),
  20719. default: true
  20720. },
  20721. ]
  20722. ))
  20723. characterMakers.push(() => makeCharacter(
  20724. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20725. {
  20726. front: {
  20727. height: math.unit(6 + 1 / 12, "feet"),
  20728. weight: math.unit(304, "lb"),
  20729. name: "Front",
  20730. image: {
  20731. source: "./media/characters/oliver/front.svg",
  20732. extra: 157 / 143,
  20733. bottom: 0.08
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(6 + 1 / 12, "feet"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20747. {
  20748. front: {
  20749. height: math.unit(5 + 7 / 12, "feet"),
  20750. weight: math.unit(140, "lb"),
  20751. name: "Front",
  20752. image: {
  20753. source: "./media/characters/shane/front.svg",
  20754. extra: 304 / 289,
  20755. bottom: 0.005
  20756. }
  20757. },
  20758. },
  20759. [
  20760. {
  20761. name: "Normal",
  20762. height: math.unit(5 + 7 / 12, "feet"),
  20763. default: true
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20769. {
  20770. front: {
  20771. height: math.unit(5 + 9 / 12, "feet"),
  20772. weight: math.unit(178, "lb"),
  20773. name: "Front",
  20774. image: {
  20775. source: "./media/characters/shin/front.svg",
  20776. extra: 159 / 151,
  20777. bottom: 0.015
  20778. }
  20779. },
  20780. },
  20781. [
  20782. {
  20783. name: "Normal",
  20784. height: math.unit(5 + 9 / 12, "feet"),
  20785. default: true
  20786. },
  20787. ]
  20788. ))
  20789. characterMakers.push(() => makeCharacter(
  20790. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20791. {
  20792. front: {
  20793. height: math.unit(5 + 10 / 12, "feet"),
  20794. weight: math.unit(168, "lb"),
  20795. name: "Front",
  20796. image: {
  20797. source: "./media/characters/xerxes/front.svg",
  20798. extra: 282 / 260,
  20799. bottom: 0.045
  20800. }
  20801. },
  20802. },
  20803. [
  20804. {
  20805. name: "Normal",
  20806. height: math.unit(5 + 10 / 12, "feet"),
  20807. default: true
  20808. },
  20809. ]
  20810. ))
  20811. characterMakers.push(() => makeCharacter(
  20812. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20813. {
  20814. front: {
  20815. height: math.unit(6 + 7 / 12, "feet"),
  20816. weight: math.unit(208, "lb"),
  20817. name: "Front",
  20818. image: {
  20819. source: "./media/characters/chaska/front.svg",
  20820. extra: 332 / 319,
  20821. bottom: 0.015
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(6 + 7 / 12, "feet"),
  20829. default: true
  20830. },
  20831. ]
  20832. ))
  20833. characterMakers.push(() => makeCharacter(
  20834. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20835. {
  20836. front: {
  20837. height: math.unit(5 + 8 / 12, "feet"),
  20838. weight: math.unit(208, "lb"),
  20839. name: "Front",
  20840. image: {
  20841. source: "./media/characters/enuk/front.svg",
  20842. extra: 437 / 406,
  20843. bottom: 0.02
  20844. }
  20845. },
  20846. },
  20847. [
  20848. {
  20849. name: "Normal",
  20850. height: math.unit(5 + 8 / 12, "feet"),
  20851. default: true
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20857. {
  20858. front: {
  20859. height: math.unit(5 + 10 / 12, "feet"),
  20860. weight: math.unit(252, "lb"),
  20861. name: "Front",
  20862. image: {
  20863. source: "./media/characters/bruun/front.svg",
  20864. extra: 197 / 187,
  20865. bottom: 0.012
  20866. }
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(5 + 10 / 12, "feet"),
  20873. default: true
  20874. },
  20875. ]
  20876. ))
  20877. characterMakers.push(() => makeCharacter(
  20878. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20879. {
  20880. front: {
  20881. height: math.unit(6 + 10 / 12, "feet"),
  20882. weight: math.unit(255, "lb"),
  20883. name: "Front",
  20884. image: {
  20885. source: "./media/characters/alexeev/front.svg",
  20886. extra: 213 / 200,
  20887. bottom: 0.05
  20888. }
  20889. },
  20890. },
  20891. [
  20892. {
  20893. name: "Normal",
  20894. height: math.unit(6 + 10 / 12, "feet"),
  20895. default: true
  20896. },
  20897. ]
  20898. ))
  20899. characterMakers.push(() => makeCharacter(
  20900. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20901. {
  20902. front: {
  20903. height: math.unit(2 + 8 / 12, "feet"),
  20904. weight: math.unit(22, "lb"),
  20905. name: "Front",
  20906. image: {
  20907. source: "./media/characters/evelyn/front.svg",
  20908. extra: 208 / 180
  20909. }
  20910. },
  20911. },
  20912. [
  20913. {
  20914. name: "Normal",
  20915. height: math.unit(2 + 8 / 12, "feet"),
  20916. default: true
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(5 + 9 / 12, "feet"),
  20925. weight: math.unit(139, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/inca/front.svg",
  20929. extra: 294 / 291,
  20930. bottom: 0.03
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(5 + 9 / 12, "feet"),
  20938. default: true
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20944. {
  20945. front: {
  20946. height: math.unit(6 + 3 / 12, "feet"),
  20947. weight: math.unit(185, "lb"),
  20948. name: "Front",
  20949. image: {
  20950. source: "./media/characters/mera/front.svg",
  20951. extra: 291 / 277,
  20952. bottom: 0.03
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(6 + 3 / 12, "feet"),
  20960. default: true
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20966. {
  20967. front: {
  20968. height: math.unit(6 + 7 / 12, "feet"),
  20969. weight: math.unit(160, "lb"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/ceres/front.svg",
  20973. extra: 1023 / 950,
  20974. bottom: 0.027
  20975. }
  20976. },
  20977. back: {
  20978. height: math.unit(6 + 7 / 12, "feet"),
  20979. weight: math.unit(160, "lb"),
  20980. name: "Back",
  20981. image: {
  20982. source: "./media/characters/ceres/back.svg",
  20983. extra: 1023 / 950
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Normal",
  20990. height: math.unit(6 + 7 / 12, "feet"),
  20991. default: true
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20997. {
  20998. front: {
  20999. height: math.unit(5 + 10 / 12, "feet"),
  21000. weight: math.unit(150, "lb"),
  21001. name: "Front",
  21002. image: {
  21003. source: "./media/characters/kris/front.svg",
  21004. extra: 885 / 803,
  21005. bottom: 0.03
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(5 + 10 / 12, "feet"),
  21013. default: true
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(7, "feet"),
  21022. weight: math.unit(120, "kg"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/taluthus/front.svg",
  21026. extra: 903 / 833,
  21027. bottom: 0.015
  21028. }
  21029. },
  21030. },
  21031. [
  21032. {
  21033. name: "Normal",
  21034. height: math.unit(7, "feet"),
  21035. default: true
  21036. },
  21037. {
  21038. name: "Macro",
  21039. height: math.unit(300, "feet")
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21045. {
  21046. front: {
  21047. height: math.unit(5 + 9 / 12, "feet"),
  21048. weight: math.unit(145, "lb"),
  21049. name: "Front",
  21050. image: {
  21051. source: "./media/characters/dawn/front.svg",
  21052. extra: 2094 / 2016,
  21053. bottom: 0.025
  21054. }
  21055. },
  21056. back: {
  21057. height: math.unit(5 + 9 / 12, "feet"),
  21058. weight: math.unit(160, "lb"),
  21059. name: "Back",
  21060. image: {
  21061. source: "./media/characters/dawn/back.svg",
  21062. extra: 2112 / 2080,
  21063. bottom: 0.005
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(6 + 7 / 12, "feet"),
  21071. default: true
  21072. },
  21073. ]
  21074. ))
  21075. characterMakers.push(() => makeCharacter(
  21076. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21077. {
  21078. anthro: {
  21079. height: math.unit(8 + 3 / 12, "feet"),
  21080. weight: math.unit(450, "lb"),
  21081. name: "Anthro",
  21082. image: {
  21083. source: "./media/characters/arador/anthro.svg",
  21084. extra: 1835 / 1718,
  21085. bottom: 0.025
  21086. }
  21087. },
  21088. feral: {
  21089. height: math.unit(4, "feet"),
  21090. weight: math.unit(200, "lb"),
  21091. name: "Feral",
  21092. image: {
  21093. source: "./media/characters/arador/feral.svg",
  21094. extra: 1683 / 1514,
  21095. bottom: 0.07
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Normal",
  21102. height: math.unit(8 + 3 / 12, "feet")
  21103. },
  21104. {
  21105. name: "Macro",
  21106. height: math.unit(82.5, "feet"),
  21107. default: true
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(5 + 10 / 12, "feet"),
  21116. weight: math.unit(125, "lb"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/dharsi/front.svg",
  21120. extra: 716 / 630,
  21121. bottom: 0.035
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Nano",
  21128. height: math.unit(100, "nm")
  21129. },
  21130. {
  21131. name: "Micro",
  21132. height: math.unit(2, "inches")
  21133. },
  21134. {
  21135. name: "Normal",
  21136. height: math.unit(5 + 10 / 12, "feet"),
  21137. default: true
  21138. },
  21139. {
  21140. name: "Macro",
  21141. height: math.unit(1000, "feet")
  21142. },
  21143. {
  21144. name: "Megamacro",
  21145. height: math.unit(10, "miles")
  21146. },
  21147. {
  21148. name: "Gigamacro",
  21149. height: math.unit(3000, "miles")
  21150. },
  21151. {
  21152. name: "Teramacro",
  21153. height: math.unit(500000, "miles")
  21154. },
  21155. {
  21156. name: "Teramacro+",
  21157. height: math.unit(30, "galaxies")
  21158. },
  21159. ]
  21160. ))
  21161. characterMakers.push(() => makeCharacter(
  21162. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21163. {
  21164. front: {
  21165. height: math.unit(6, "feet"),
  21166. weight: math.unit(150, "lb"),
  21167. name: "Front",
  21168. image: {
  21169. source: "./media/characters/deathy/front.svg",
  21170. extra: 1552 / 1463,
  21171. bottom: 0.025
  21172. }
  21173. },
  21174. side: {
  21175. height: math.unit(6, "feet"),
  21176. weight: math.unit(150, "lb"),
  21177. name: "Side",
  21178. image: {
  21179. source: "./media/characters/deathy/side.svg",
  21180. extra: 1604 / 1455,
  21181. bottom: 0.025
  21182. }
  21183. },
  21184. back: {
  21185. height: math.unit(6, "feet"),
  21186. weight: math.unit(150, "lb"),
  21187. name: "Back",
  21188. image: {
  21189. source: "./media/characters/deathy/back.svg",
  21190. extra: 1580 / 1463,
  21191. bottom: 0.005
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Micro",
  21198. height: math.unit(5, "millimeters")
  21199. },
  21200. {
  21201. name: "Normal",
  21202. height: math.unit(6 + 5 / 12, "feet"),
  21203. default: true
  21204. },
  21205. ]
  21206. ))
  21207. characterMakers.push(() => makeCharacter(
  21208. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21209. {
  21210. front: {
  21211. height: math.unit(16, "feet"),
  21212. weight: math.unit(4000, "lb"),
  21213. name: "Front",
  21214. image: {
  21215. source: "./media/characters/juniper/front.svg",
  21216. bottom: 0.04
  21217. }
  21218. },
  21219. },
  21220. [
  21221. {
  21222. name: "Normal",
  21223. height: math.unit(16, "feet"),
  21224. default: true
  21225. },
  21226. ]
  21227. ))
  21228. characterMakers.push(() => makeCharacter(
  21229. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21230. {
  21231. front: {
  21232. height: math.unit(6, "feet"),
  21233. weight: math.unit(150, "lb"),
  21234. name: "Front",
  21235. image: {
  21236. source: "./media/characters/hipster/front.svg",
  21237. extra: 1312 / 1209,
  21238. bottom: 0.025
  21239. }
  21240. },
  21241. back: {
  21242. height: math.unit(6, "feet"),
  21243. weight: math.unit(150, "lb"),
  21244. name: "Back",
  21245. image: {
  21246. source: "./media/characters/hipster/back.svg",
  21247. extra: 1281 / 1196,
  21248. bottom: 0.01
  21249. }
  21250. },
  21251. },
  21252. [
  21253. {
  21254. name: "Micro",
  21255. height: math.unit(1, "mm")
  21256. },
  21257. {
  21258. name: "Normal",
  21259. height: math.unit(4, "inches"),
  21260. default: true
  21261. },
  21262. {
  21263. name: "Macro",
  21264. height: math.unit(500, "feet")
  21265. },
  21266. {
  21267. name: "Megamacro",
  21268. height: math.unit(1000, "miles")
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21274. {
  21275. front: {
  21276. height: math.unit(6, "feet"),
  21277. weight: math.unit(150, "lb"),
  21278. name: "Front",
  21279. image: {
  21280. source: "./media/characters/tendirmuldr/front.svg",
  21281. extra: 1878 / 1772,
  21282. bottom: 0.015
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Megamacro",
  21289. height: math.unit(1500, "miles"),
  21290. default: true
  21291. },
  21292. ]
  21293. ))
  21294. characterMakers.push(() => makeCharacter(
  21295. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21296. {
  21297. front: {
  21298. height: math.unit(14, "feet"),
  21299. weight: math.unit(12000, "lb"),
  21300. name: "Front",
  21301. image: {
  21302. source: "./media/characters/mort/front.svg",
  21303. extra: 365 / 318,
  21304. bottom: 0.01
  21305. }
  21306. },
  21307. side: {
  21308. height: math.unit(14, "feet"),
  21309. weight: math.unit(12000, "lb"),
  21310. name: "Side",
  21311. image: {
  21312. source: "./media/characters/mort/side.svg",
  21313. extra: 365 / 318,
  21314. bottom: 0.052
  21315. },
  21316. default: true
  21317. },
  21318. back: {
  21319. height: math.unit(14, "feet"),
  21320. weight: math.unit(12000, "lb"),
  21321. name: "Back",
  21322. image: {
  21323. source: "./media/characters/mort/back.svg",
  21324. extra: 371 / 332,
  21325. bottom: 0.18
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(14, "feet"),
  21333. default: true
  21334. },
  21335. ]
  21336. ))
  21337. characterMakers.push(() => makeCharacter(
  21338. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21339. {
  21340. front: {
  21341. height: math.unit(8, "feet"),
  21342. weight: math.unit(1, "ton"),
  21343. name: "Front",
  21344. image: {
  21345. source: "./media/characters/lycoa/front.svg",
  21346. extra: 1836/1728,
  21347. bottom: 81/1917
  21348. }
  21349. },
  21350. back: {
  21351. height: math.unit(8, "feet"),
  21352. weight: math.unit(1, "ton"),
  21353. name: "Back",
  21354. image: {
  21355. source: "./media/characters/lycoa/back.svg",
  21356. extra: 1785/1720,
  21357. bottom: 91/1876
  21358. }
  21359. },
  21360. head: {
  21361. height: math.unit(1.6243, "feet"),
  21362. name: "Head",
  21363. image: {
  21364. source: "./media/characters/lycoa/head.svg",
  21365. extra: 1011/782,
  21366. bottom: 0/1011
  21367. }
  21368. },
  21369. tailmaw: {
  21370. height: math.unit(1.9, "feet"),
  21371. name: "Tailmaw",
  21372. image: {
  21373. source: "./media/characters/lycoa/tailmaw.svg"
  21374. }
  21375. },
  21376. tentacles: {
  21377. height: math.unit(2.1, "feet"),
  21378. name: "Tentacles",
  21379. image: {
  21380. source: "./media/characters/lycoa/tentacles.svg"
  21381. }
  21382. },
  21383. dick: {
  21384. height: math.unit(1.73, "feet"),
  21385. name: "Dick",
  21386. image: {
  21387. source: "./media/characters/lycoa/dick.svg"
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(8, "feet"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Macro",
  21399. height: math.unit(30, "feet")
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21405. {
  21406. front: {
  21407. height: math.unit(4 + 2 / 12, "feet"),
  21408. weight: math.unit(70, "lb"),
  21409. name: "Front",
  21410. image: {
  21411. source: "./media/characters/naldara/front.svg",
  21412. extra: 1664/1387,
  21413. bottom: 81/1745
  21414. },
  21415. form: "anthro",
  21416. default: true
  21417. },
  21418. naga: {
  21419. height: math.unit(20, "feet"),
  21420. weight: math.unit(15000, "kg"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/naldara/naga.svg",
  21424. extra: 1590/1396,
  21425. bottom: 285/1875
  21426. },
  21427. form: "naga",
  21428. default: true
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(4 + 2 / 12, "feet"),
  21435. form: "anthro",
  21436. default: true
  21437. },
  21438. {
  21439. name: "Normal",
  21440. height: math.unit(20, "feet"),
  21441. form: "naga",
  21442. default: true
  21443. },
  21444. ],
  21445. {
  21446. "anthro": {
  21447. name: "Anthro",
  21448. default: true
  21449. },
  21450. "naga": {
  21451. name: "Naga"
  21452. }
  21453. }
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21457. {
  21458. front: {
  21459. height: math.unit(13 + 7 / 12, "feet"),
  21460. weight: math.unit(1500, "lb"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/briar/front.svg",
  21464. extra: 1223/1157,
  21465. bottom: 123/1346
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Normal",
  21472. height: math.unit(13 + 7 / 12, "feet"),
  21473. default: true
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21479. {
  21480. side: {
  21481. height: math.unit(16, "feet"),
  21482. weight: math.unit(500, "lb"),
  21483. name: "Side",
  21484. image: {
  21485. source: "./media/characters/vanguard/side.svg",
  21486. extra: 1022/914,
  21487. bottom: 30/1052
  21488. }
  21489. },
  21490. sideAlt: {
  21491. height: math.unit(10, "feet"),
  21492. weight: math.unit(500, "lb"),
  21493. name: "Side (Alt)",
  21494. image: {
  21495. source: "./media/characters/vanguard/side-alt.svg",
  21496. extra: 502 / 425,
  21497. bottom: 0.087
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(17.71, "feet"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(7.5, "feet"),
  21514. weight: math.unit(2, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/artemis/work-safe-front.svg",
  21518. extra: 1192 / 1075,
  21519. bottom: 0.07
  21520. },
  21521. form: "work-safe",
  21522. default: true
  21523. },
  21524. frontNsfw: {
  21525. height: math.unit(7.5, "feet"),
  21526. weight: math.unit(2, "lb"),
  21527. name: "Front",
  21528. image: {
  21529. source: "./media/characters/artemis/calibrating-front.svg",
  21530. extra: 1192 / 1075,
  21531. bottom: 0.07
  21532. },
  21533. form: "calibrating",
  21534. default: true
  21535. },
  21536. frontNsfwer: {
  21537. height: math.unit(7.5, "feet"),
  21538. weight: math.unit(2, "lb"),
  21539. name: "Front",
  21540. image: {
  21541. source: "./media/characters/artemis/oversize-load-front.svg",
  21542. extra: 1192 / 1075,
  21543. bottom: 0.07
  21544. },
  21545. form: "oversize-load",
  21546. default: true
  21547. },
  21548. side: {
  21549. height: math.unit(7.5, "feet"),
  21550. weight: math.unit(2, "lb"),
  21551. name: "Side",
  21552. image: {
  21553. source: "./media/characters/artemis/work-safe-side.svg",
  21554. extra: 1192 / 1075,
  21555. bottom: 0.07
  21556. },
  21557. form: "work-safe"
  21558. },
  21559. sideNsfw: {
  21560. height: math.unit(7.5, "feet"),
  21561. weight: math.unit(2, "lb"),
  21562. name: "Side",
  21563. image: {
  21564. source: "./media/characters/artemis/calibrating-side.svg",
  21565. extra: 1192 / 1075,
  21566. bottom: 0.07
  21567. },
  21568. form: "calibrating"
  21569. },
  21570. sideNsfwer: {
  21571. height: math.unit(7.5, "feet"),
  21572. weight: math.unit(2, "lb"),
  21573. name: "Side",
  21574. image: {
  21575. source: "./media/characters/artemis/oversize-load-side.svg",
  21576. extra: 1192 / 1075,
  21577. bottom: 0.07
  21578. },
  21579. form: "oversize-load"
  21580. },
  21581. maw: {
  21582. height: math.unit(1.1, "feet"),
  21583. name: "Maw",
  21584. image: {
  21585. source: "./media/characters/artemis/maw.svg"
  21586. },
  21587. form: "work-safe"
  21588. },
  21589. stomach: {
  21590. height: math.unit(0.95, "feet"),
  21591. name: "Stomach",
  21592. image: {
  21593. source: "./media/characters/artemis/stomach.svg"
  21594. },
  21595. form: "work-safe"
  21596. },
  21597. dickCanine: {
  21598. height: math.unit(1, "feet"),
  21599. name: "Dick (Canine)",
  21600. image: {
  21601. source: "./media/characters/artemis/dick-canine.svg"
  21602. },
  21603. form: "calibrating"
  21604. },
  21605. dickEquine: {
  21606. height: math.unit(0.85, "feet"),
  21607. name: "Dick (Equine)",
  21608. image: {
  21609. source: "./media/characters/artemis/dick-equine.svg"
  21610. },
  21611. form: "calibrating"
  21612. },
  21613. dickExotic: {
  21614. height: math.unit(0.85, "feet"),
  21615. name: "Dick (Exotic)",
  21616. image: {
  21617. source: "./media/characters/artemis/dick-exotic.svg"
  21618. },
  21619. form: "calibrating"
  21620. },
  21621. dickCanineBigger: {
  21622. height: math.unit(1 * 1.33, "feet"),
  21623. name: "Dick (Canine)",
  21624. image: {
  21625. source: "./media/characters/artemis/dick-canine.svg"
  21626. },
  21627. form: "oversize-load"
  21628. },
  21629. dickEquineBigger: {
  21630. height: math.unit(0.85 * 1.33, "feet"),
  21631. name: "Dick (Equine)",
  21632. image: {
  21633. source: "./media/characters/artemis/dick-equine.svg"
  21634. },
  21635. form: "oversize-load"
  21636. },
  21637. dickExoticBigger: {
  21638. height: math.unit(0.85 * 1.33, "feet"),
  21639. name: "Dick (Exotic)",
  21640. image: {
  21641. source: "./media/characters/artemis/dick-exotic.svg"
  21642. },
  21643. form: "oversize-load"
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(7.5, "feet"),
  21650. form: "work-safe",
  21651. default: true
  21652. },
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(7.5, "feet"),
  21656. form: "calibrating",
  21657. default: true
  21658. },
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(7.5, "feet"),
  21662. form: "oversize-load",
  21663. default: true
  21664. },
  21665. {
  21666. name: "Enlarged",
  21667. height: math.unit(12, "feet"),
  21668. form: "work-safe",
  21669. },
  21670. {
  21671. name: "Enlarged",
  21672. height: math.unit(12, "feet"),
  21673. form: "calibrating",
  21674. },
  21675. {
  21676. name: "Enlarged",
  21677. height: math.unit(12, "feet"),
  21678. form: "oversize-load",
  21679. },
  21680. ],
  21681. {
  21682. "work-safe": {
  21683. name: "Work-Safe",
  21684. default: true
  21685. },
  21686. "calibrating": {
  21687. name: "Calibrating"
  21688. },
  21689. "oversize-load": {
  21690. name: "Oversize Load"
  21691. }
  21692. }
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21696. {
  21697. front: {
  21698. height: math.unit(5 + 3 / 12, "feet"),
  21699. weight: math.unit(160, "lb"),
  21700. name: "Front",
  21701. image: {
  21702. source: "./media/characters/kira/front.svg",
  21703. extra: 906 / 786,
  21704. bottom: 0.01
  21705. }
  21706. },
  21707. back: {
  21708. height: math.unit(5 + 3 / 12, "feet"),
  21709. weight: math.unit(160, "lb"),
  21710. name: "Back",
  21711. image: {
  21712. source: "./media/characters/kira/back.svg",
  21713. extra: 882 / 757,
  21714. bottom: 0.005
  21715. }
  21716. },
  21717. frontDressed: {
  21718. height: math.unit(5 + 3 / 12, "feet"),
  21719. weight: math.unit(160, "lb"),
  21720. name: "Front (Dressed)",
  21721. image: {
  21722. source: "./media/characters/kira/front-dressed.svg",
  21723. extra: 906 / 786,
  21724. bottom: 0.01
  21725. }
  21726. },
  21727. beans: {
  21728. height: math.unit(0.92, "feet"),
  21729. name: "Beans",
  21730. image: {
  21731. source: "./media/characters/kira/beans.svg"
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(5 + 3 / 12, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21745. {
  21746. front: {
  21747. height: math.unit(5 + 4 / 12, "feet"),
  21748. weight: math.unit(145, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/scramble/front.svg",
  21752. extra: 763 / 727,
  21753. bottom: 0.05
  21754. }
  21755. },
  21756. back: {
  21757. height: math.unit(5 + 4 / 12, "feet"),
  21758. weight: math.unit(145, "lb"),
  21759. name: "Back",
  21760. image: {
  21761. source: "./media/characters/scramble/back.svg",
  21762. extra: 826 / 737,
  21763. bottom: 0.002
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(5 + 4 / 12, "feet"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21777. {
  21778. side: {
  21779. height: math.unit(6 + 2 / 12, "feet"),
  21780. weight: math.unit(190, "lb"),
  21781. name: "Side",
  21782. image: {
  21783. source: "./media/characters/biscuit/side.svg",
  21784. extra: 858 / 791,
  21785. bottom: 0.044
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(6 + 2 / 12, "feet"),
  21793. default: true
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21799. {
  21800. front: {
  21801. height: math.unit(5 + 2 / 12, "feet"),
  21802. weight: math.unit(120, "lb"),
  21803. name: "Front",
  21804. image: {
  21805. source: "./media/characters/poffin/front.svg",
  21806. extra: 786 / 680,
  21807. bottom: 0.005
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(5 + 2 / 12, "feet"),
  21815. default: true
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21821. {
  21822. front: {
  21823. height: math.unit(6 + 3 / 12, "feet"),
  21824. weight: math.unit(519, "lb"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/dhari/front.svg",
  21828. extra: 1048 / 946,
  21829. bottom: 0.015
  21830. }
  21831. },
  21832. back: {
  21833. height: math.unit(6 + 3 / 12, "feet"),
  21834. weight: math.unit(519, "lb"),
  21835. name: "Back",
  21836. image: {
  21837. source: "./media/characters/dhari/back.svg",
  21838. extra: 1048 / 931,
  21839. bottom: 0.005
  21840. }
  21841. },
  21842. frontDressed: {
  21843. height: math.unit(6 + 3 / 12, "feet"),
  21844. weight: math.unit(519, "lb"),
  21845. name: "Front (Dressed)",
  21846. image: {
  21847. source: "./media/characters/dhari/front-dressed.svg",
  21848. extra: 1713 / 1546,
  21849. bottom: 0.02
  21850. }
  21851. },
  21852. backDressed: {
  21853. height: math.unit(6 + 3 / 12, "feet"),
  21854. weight: math.unit(519, "lb"),
  21855. name: "Back (Dressed)",
  21856. image: {
  21857. source: "./media/characters/dhari/back-dressed.svg",
  21858. extra: 1699 / 1537,
  21859. bottom: 0.01
  21860. }
  21861. },
  21862. maw: {
  21863. height: math.unit(0.95, "feet"),
  21864. name: "Maw",
  21865. image: {
  21866. source: "./media/characters/dhari/maw.svg"
  21867. }
  21868. },
  21869. wereFront: {
  21870. height: math.unit(12 + 8 / 12, "feet"),
  21871. weight: math.unit(4000, "lb"),
  21872. name: "Front (Were)",
  21873. image: {
  21874. source: "./media/characters/dhari/were-front.svg",
  21875. extra: 1065 / 969,
  21876. bottom: 0.015
  21877. }
  21878. },
  21879. wereBack: {
  21880. height: math.unit(12 + 8 / 12, "feet"),
  21881. weight: math.unit(4000, "lb"),
  21882. name: "Back (Were)",
  21883. image: {
  21884. source: "./media/characters/dhari/were-back.svg",
  21885. extra: 1065 / 969,
  21886. bottom: 0.012
  21887. }
  21888. },
  21889. wereMaw: {
  21890. height: math.unit(0.625, "meters"),
  21891. name: "Maw (Were)",
  21892. image: {
  21893. source: "./media/characters/dhari/were-maw.svg"
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(6 + 3 / 12, "feet"),
  21901. default: true
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21907. {
  21908. anthro: {
  21909. height: math.unit(5 + 7 / 12, "feet"),
  21910. weight: math.unit(175, "lb"),
  21911. name: "Anthro",
  21912. image: {
  21913. source: "./media/characters/rena-dyne/anthro.svg",
  21914. extra: 1849 / 1785,
  21915. bottom: 0.005
  21916. }
  21917. },
  21918. taur: {
  21919. height: math.unit(15 + 6 / 12, "feet"),
  21920. weight: math.unit(8000, "lb"),
  21921. name: "Taur",
  21922. image: {
  21923. source: "./media/characters/rena-dyne/taur.svg",
  21924. extra: 2315 / 2234,
  21925. bottom: 0.033
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(5 + 7 / 12, "feet"),
  21933. default: true
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(8, "feet"),
  21942. weight: math.unit(600, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/weremeep/front.svg",
  21946. extra: 970/849,
  21947. bottom: 7/977
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(8, "feet"),
  21955. default: true
  21956. },
  21957. {
  21958. name: "Lorg",
  21959. height: math.unit(12, "feet")
  21960. },
  21961. {
  21962. name: "Oh Lawd She Comin'",
  21963. height: math.unit(20, "feet")
  21964. },
  21965. ]
  21966. ))
  21967. characterMakers.push(() => makeCharacter(
  21968. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21969. {
  21970. front: {
  21971. height: math.unit(4, "feet"),
  21972. weight: math.unit(90, "lb"),
  21973. name: "Front",
  21974. image: {
  21975. source: "./media/characters/reza/front.svg",
  21976. extra: 1183 / 1111,
  21977. bottom: 0.017
  21978. }
  21979. },
  21980. back: {
  21981. height: math.unit(4, "feet"),
  21982. weight: math.unit(90, "lb"),
  21983. name: "Back",
  21984. image: {
  21985. source: "./media/characters/reza/back.svg",
  21986. extra: 1183 / 1111,
  21987. bottom: 0.01
  21988. }
  21989. },
  21990. drake: {
  21991. height: math.unit(30, "feet"),
  21992. weight: math.unit(246960, "lb"),
  21993. name: "Drake",
  21994. image: {
  21995. source: "./media/characters/reza/drake.svg",
  21996. extra: 2350 / 2024,
  21997. bottom: 60.7 / 2403
  21998. }
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Normal",
  22004. height: math.unit(4, "feet"),
  22005. default: true
  22006. },
  22007. ]
  22008. ))
  22009. characterMakers.push(() => makeCharacter(
  22010. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22011. {
  22012. side: {
  22013. height: math.unit(15, "feet"),
  22014. weight: math.unit(14, "tons"),
  22015. name: "Side",
  22016. image: {
  22017. source: "./media/characters/athea/side.svg",
  22018. extra: 960 / 540,
  22019. bottom: 0.003
  22020. }
  22021. },
  22022. sitting: {
  22023. height: math.unit(6 * 2.85, "feet"),
  22024. weight: math.unit(14, "tons"),
  22025. name: "Sitting",
  22026. image: {
  22027. source: "./media/characters/athea/sitting.svg",
  22028. extra: 621 / 581,
  22029. bottom: 0.075
  22030. }
  22031. },
  22032. maw: {
  22033. height: math.unit(7.59498031496063, "feet"),
  22034. name: "Maw",
  22035. image: {
  22036. source: "./media/characters/athea/maw.svg"
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Lap Cat",
  22043. height: math.unit(2.5, "feet")
  22044. },
  22045. {
  22046. name: "Minimacro",
  22047. height: math.unit(15, "feet"),
  22048. default: true
  22049. },
  22050. {
  22051. name: "Macro",
  22052. height: math.unit(120, "feet")
  22053. },
  22054. {
  22055. name: "Macro+",
  22056. height: math.unit(640, "feet")
  22057. },
  22058. {
  22059. name: "Colossus",
  22060. height: math.unit(2.2, "miles")
  22061. },
  22062. ]
  22063. ))
  22064. characterMakers.push(() => makeCharacter(
  22065. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22066. {
  22067. front: {
  22068. height: math.unit(8 + 8 / 12, "feet"),
  22069. weight: math.unit(130, "kg"),
  22070. name: "Front",
  22071. image: {
  22072. source: "./media/characters/seroko/front.svg",
  22073. extra: 1385 / 1280,
  22074. bottom: 0.025
  22075. }
  22076. },
  22077. back: {
  22078. height: math.unit(8 + 8 / 12, "feet"),
  22079. weight: math.unit(130, "kg"),
  22080. name: "Back",
  22081. image: {
  22082. source: "./media/characters/seroko/back.svg",
  22083. extra: 1369 / 1238,
  22084. bottom: 0.018
  22085. }
  22086. },
  22087. frontDressed: {
  22088. height: math.unit(8 + 8 / 12, "feet"),
  22089. weight: math.unit(130, "kg"),
  22090. name: "Front (Dressed)",
  22091. image: {
  22092. source: "./media/characters/seroko/front-dressed.svg",
  22093. extra: 1366 / 1275,
  22094. bottom: 0.03
  22095. }
  22096. },
  22097. },
  22098. [
  22099. {
  22100. name: "Normal",
  22101. height: math.unit(8 + 8 / 12, "feet"),
  22102. default: true
  22103. },
  22104. ]
  22105. ))
  22106. characterMakers.push(() => makeCharacter(
  22107. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22108. {
  22109. front: {
  22110. height: math.unit(5.5, "feet"),
  22111. weight: math.unit(160, "lb"),
  22112. name: "Front",
  22113. image: {
  22114. source: "./media/characters/quatzi/front.svg",
  22115. extra: 2346 / 2242,
  22116. bottom: 0.015
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(5.5, "feet"),
  22124. default: true
  22125. },
  22126. {
  22127. name: "Big",
  22128. height: math.unit(7.7, "feet")
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(5 + 11 / 12, "feet"),
  22137. weight: math.unit(180, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/sen/front.svg",
  22141. extra: 1321 / 1254,
  22142. bottom: 0.015
  22143. }
  22144. },
  22145. side: {
  22146. height: math.unit(5 + 11 / 12, "feet"),
  22147. weight: math.unit(180, "lb"),
  22148. name: "Side",
  22149. image: {
  22150. source: "./media/characters/sen/side.svg",
  22151. extra: 1321 / 1254,
  22152. bottom: 0.007
  22153. }
  22154. },
  22155. back: {
  22156. height: math.unit(5 + 11 / 12, "feet"),
  22157. weight: math.unit(180, "lb"),
  22158. name: "Back",
  22159. image: {
  22160. source: "./media/characters/sen/back.svg",
  22161. extra: 1321 / 1254
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(5 + 11 / 12, "feet"),
  22169. default: true
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(166.6, "cm"),
  22178. weight: math.unit(66.6, "kg"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/fruity/front.svg",
  22182. extra: 1510 / 1386,
  22183. bottom: 0.04
  22184. }
  22185. },
  22186. back: {
  22187. height: math.unit(166.6, "cm"),
  22188. weight: math.unit(66.6, "lb"),
  22189. name: "Back",
  22190. image: {
  22191. source: "./media/characters/fruity/back.svg",
  22192. extra: 1563 / 1435,
  22193. bottom: 0.005
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Normal",
  22200. height: math.unit(166.6, "cm"),
  22201. default: true
  22202. },
  22203. {
  22204. name: "Demonic",
  22205. height: math.unit(166.6, "feet")
  22206. },
  22207. ]
  22208. ))
  22209. characterMakers.push(() => makeCharacter(
  22210. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22211. {
  22212. side: {
  22213. height: math.unit(10, "feet"),
  22214. weight: math.unit(500, "lb"),
  22215. name: "Side",
  22216. image: {
  22217. source: "./media/characters/zost/side.svg",
  22218. extra: 2870/2533,
  22219. bottom: 252/3122
  22220. }
  22221. },
  22222. mawFront: {
  22223. height: math.unit(1.08, "meters"),
  22224. name: "Maw (Front)",
  22225. image: {
  22226. source: "./media/characters/zost/maw-front.svg"
  22227. }
  22228. },
  22229. mawSide: {
  22230. height: math.unit(2.66, "feet"),
  22231. name: "Maw (Side)",
  22232. image: {
  22233. source: "./media/characters/zost/maw-side.svg"
  22234. }
  22235. },
  22236. wingspan: {
  22237. height: math.unit(7.4, "feet"),
  22238. name: "Wingspan",
  22239. image: {
  22240. source: "./media/characters/zost/wingspan.svg"
  22241. }
  22242. },
  22243. },
  22244. [
  22245. {
  22246. name: "Normal",
  22247. height: math.unit(10, "feet"),
  22248. default: true
  22249. },
  22250. ]
  22251. ))
  22252. characterMakers.push(() => makeCharacter(
  22253. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22254. {
  22255. front: {
  22256. height: math.unit(5 + 4 / 12, "feet"),
  22257. weight: math.unit(120, "lb"),
  22258. name: "Front",
  22259. image: {
  22260. source: "./media/characters/luci/front.svg",
  22261. extra: 1985 / 1884,
  22262. bottom: 0.04
  22263. }
  22264. },
  22265. back: {
  22266. height: math.unit(5 + 4 / 12, "feet"),
  22267. weight: math.unit(120, "lb"),
  22268. name: "Back",
  22269. image: {
  22270. source: "./media/characters/luci/back.svg",
  22271. extra: 1892 / 1791,
  22272. bottom: 0.002
  22273. }
  22274. },
  22275. },
  22276. [
  22277. {
  22278. name: "Normal",
  22279. height: math.unit(5 + 4 / 12, "feet"),
  22280. default: true
  22281. },
  22282. ]
  22283. ))
  22284. characterMakers.push(() => makeCharacter(
  22285. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22286. {
  22287. front: {
  22288. height: math.unit(1500, "feet"),
  22289. weight: math.unit(3.8e6, "tons"),
  22290. name: "Front",
  22291. image: {
  22292. source: "./media/characters/2th/front.svg",
  22293. extra: 3489 / 3350,
  22294. bottom: 0.1
  22295. }
  22296. },
  22297. foot: {
  22298. height: math.unit(461, "feet"),
  22299. name: "Foot",
  22300. image: {
  22301. source: "./media/characters/2th/foot.svg"
  22302. }
  22303. },
  22304. },
  22305. [
  22306. {
  22307. name: "\"Micro\"",
  22308. height: math.unit(15 + 7 / 12, "feet")
  22309. },
  22310. {
  22311. name: "Normal",
  22312. height: math.unit(1500, "feet"),
  22313. default: true
  22314. },
  22315. {
  22316. name: "Macro",
  22317. height: math.unit(5000, "feet")
  22318. },
  22319. {
  22320. name: "Megamacro",
  22321. height: math.unit(15, "miles")
  22322. },
  22323. {
  22324. name: "Gigamacro",
  22325. height: math.unit(4000, "miles")
  22326. },
  22327. {
  22328. name: "Galactic",
  22329. height: math.unit(50, "AU")
  22330. },
  22331. ]
  22332. ))
  22333. characterMakers.push(() => makeCharacter(
  22334. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22335. {
  22336. front: {
  22337. height: math.unit(5 + 6 / 12, "feet"),
  22338. weight: math.unit(220, "lb"),
  22339. name: "Front",
  22340. image: {
  22341. source: "./media/characters/amethyst/front.svg",
  22342. extra: 2078 / 2040,
  22343. bottom: 0.045
  22344. }
  22345. },
  22346. back: {
  22347. height: math.unit(5 + 6 / 12, "feet"),
  22348. weight: math.unit(220, "lb"),
  22349. name: "Back",
  22350. image: {
  22351. source: "./media/characters/amethyst/back.svg",
  22352. extra: 2021 / 1989,
  22353. bottom: 0.02
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Normal",
  22360. height: math.unit(5 + 6 / 12, "feet"),
  22361. default: true
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(4 + 11 / 12, "feet"),
  22370. weight: math.unit(120, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/yumi-akiyama/front.svg",
  22374. extra: 1327 / 1235,
  22375. bottom: 0.02
  22376. }
  22377. },
  22378. back: {
  22379. height: math.unit(4 + 11 / 12, "feet"),
  22380. weight: math.unit(120, "lb"),
  22381. name: "Back",
  22382. image: {
  22383. source: "./media/characters/yumi-akiyama/back.svg",
  22384. extra: 1287 / 1245,
  22385. bottom: 0.002
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Galactic",
  22392. height: math.unit(50, "galaxies"),
  22393. default: true
  22394. },
  22395. {
  22396. name: "Universal",
  22397. height: math.unit(100, "universes")
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22403. {
  22404. front: {
  22405. height: math.unit(8, "feet"),
  22406. weight: math.unit(500, "lb"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/rifter-yrmori/front.svg",
  22410. extra: 1180 / 1125,
  22411. bottom: 0.02
  22412. }
  22413. },
  22414. back: {
  22415. height: math.unit(8, "feet"),
  22416. weight: math.unit(500, "lb"),
  22417. name: "Back",
  22418. image: {
  22419. source: "./media/characters/rifter-yrmori/back.svg",
  22420. extra: 1190 / 1145,
  22421. bottom: 0.001
  22422. }
  22423. },
  22424. wings: {
  22425. height: math.unit(7.75, "feet"),
  22426. weight: math.unit(500, "lb"),
  22427. name: "Wings",
  22428. image: {
  22429. source: "./media/characters/rifter-yrmori/wings.svg",
  22430. extra: 1357 / 1285
  22431. }
  22432. },
  22433. maw: {
  22434. height: math.unit(0.8, "feet"),
  22435. name: "Maw",
  22436. image: {
  22437. source: "./media/characters/rifter-yrmori/maw.svg"
  22438. }
  22439. },
  22440. mawfront: {
  22441. height: math.unit(1.45, "feet"),
  22442. name: "Maw (Front)",
  22443. image: {
  22444. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Normal",
  22451. height: math.unit(8, "feet"),
  22452. default: true
  22453. },
  22454. {
  22455. name: "Macro",
  22456. height: math.unit(42, "meters")
  22457. },
  22458. ]
  22459. ))
  22460. characterMakers.push(() => makeCharacter(
  22461. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22462. {
  22463. were: {
  22464. height: math.unit(25 + 6 / 12, "feet"),
  22465. weight: math.unit(10000, "lb"),
  22466. name: "Were",
  22467. image: {
  22468. source: "./media/characters/tahajin/were.svg",
  22469. extra: 801 / 770,
  22470. bottom: 0.042
  22471. }
  22472. },
  22473. aquatic: {
  22474. height: math.unit(6 + 4 / 12, "feet"),
  22475. weight: math.unit(160, "lb"),
  22476. name: "Aquatic",
  22477. image: {
  22478. source: "./media/characters/tahajin/aquatic.svg",
  22479. extra: 572 / 542,
  22480. bottom: 0.04
  22481. }
  22482. },
  22483. chow: {
  22484. height: math.unit(8 + 11 / 12, "feet"),
  22485. weight: math.unit(450, "lb"),
  22486. name: "Chow",
  22487. image: {
  22488. source: "./media/characters/tahajin/chow.svg",
  22489. extra: 660 / 640,
  22490. bottom: 0.015
  22491. }
  22492. },
  22493. demiNaga: {
  22494. height: math.unit(6 + 8 / 12, "feet"),
  22495. weight: math.unit(300, "lb"),
  22496. name: "Demi Naga",
  22497. image: {
  22498. source: "./media/characters/tahajin/demi-naga.svg",
  22499. extra: 643 / 615,
  22500. bottom: 0.1
  22501. }
  22502. },
  22503. data: {
  22504. height: math.unit(5, "inches"),
  22505. weight: math.unit(0.1, "lb"),
  22506. name: "Data",
  22507. image: {
  22508. source: "./media/characters/tahajin/data.svg"
  22509. }
  22510. },
  22511. fluu: {
  22512. height: math.unit(5 + 7 / 12, "feet"),
  22513. weight: math.unit(140, "lb"),
  22514. name: "Fluu",
  22515. image: {
  22516. source: "./media/characters/tahajin/fluu.svg",
  22517. extra: 628 / 592,
  22518. bottom: 0.02
  22519. }
  22520. },
  22521. starWarrior: {
  22522. height: math.unit(4 + 5 / 12, "feet"),
  22523. weight: math.unit(50, "lb"),
  22524. name: "Star Warrior",
  22525. image: {
  22526. source: "./media/characters/tahajin/star-warrior.svg"
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Normal",
  22533. height: math.unit(25 + 6 / 12, "feet"),
  22534. default: true
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22540. {
  22541. front: {
  22542. height: math.unit(8, "feet"),
  22543. weight: math.unit(350, "lb"),
  22544. name: "Front",
  22545. image: {
  22546. source: "./media/characters/gabira/front.svg",
  22547. extra: 1261/1154,
  22548. bottom: 51/1312
  22549. }
  22550. },
  22551. back: {
  22552. height: math.unit(8, "feet"),
  22553. weight: math.unit(350, "lb"),
  22554. name: "Back",
  22555. image: {
  22556. source: "./media/characters/gabira/back.svg",
  22557. extra: 1265/1163,
  22558. bottom: 46/1311
  22559. }
  22560. },
  22561. head: {
  22562. height: math.unit(2.85, "feet"),
  22563. name: "Head",
  22564. image: {
  22565. source: "./media/characters/gabira/head.svg"
  22566. }
  22567. },
  22568. },
  22569. [
  22570. {
  22571. name: "Normal",
  22572. height: math.unit(8, "feet"),
  22573. default: true
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22579. {
  22580. front: {
  22581. height: math.unit(5 + 3 / 12, "feet"),
  22582. weight: math.unit(137, "lb"),
  22583. name: "Front",
  22584. image: {
  22585. source: "./media/characters/sasha-katraine/front.svg",
  22586. extra: 1745/1694,
  22587. bottom: 37/1782
  22588. }
  22589. },
  22590. back: {
  22591. height: math.unit(5 + 3 / 12, "feet"),
  22592. weight: math.unit(137, "lb"),
  22593. name: "Back",
  22594. image: {
  22595. source: "./media/characters/sasha-katraine/back.svg",
  22596. extra: 1776/1699,
  22597. bottom: 26/1802
  22598. }
  22599. },
  22600. },
  22601. [
  22602. {
  22603. name: "Micro",
  22604. height: math.unit(5, "inches")
  22605. },
  22606. {
  22607. name: "Normal",
  22608. height: math.unit(5 + 3 / 12, "feet"),
  22609. default: true
  22610. },
  22611. ]
  22612. ))
  22613. characterMakers.push(() => makeCharacter(
  22614. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22615. {
  22616. side: {
  22617. height: math.unit(4, "inches"),
  22618. weight: math.unit(200, "grams"),
  22619. name: "Side",
  22620. image: {
  22621. source: "./media/characters/der/side.svg",
  22622. extra: 719 / 400,
  22623. bottom: 30.6 / 749.9187
  22624. }
  22625. },
  22626. },
  22627. [
  22628. {
  22629. name: "Micro",
  22630. height: math.unit(4, "inches"),
  22631. default: true
  22632. },
  22633. ]
  22634. ))
  22635. characterMakers.push(() => makeCharacter(
  22636. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22637. {
  22638. side: {
  22639. height: math.unit(30, "meters"),
  22640. weight: math.unit(700, "tonnes"),
  22641. name: "Side",
  22642. image: {
  22643. source: "./media/characters/fixerdragon/side.svg",
  22644. extra: (1293.0514 - 116.03) / 1106.86,
  22645. bottom: 116.03 / 1293.0514
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Planck",
  22652. height: math.unit(1.6e-35, "meters")
  22653. },
  22654. {
  22655. name: "Micro",
  22656. height: math.unit(0.4, "meters")
  22657. },
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(30, "meters"),
  22661. default: true
  22662. },
  22663. {
  22664. name: "Megamacro",
  22665. height: math.unit(1.2, "megameters")
  22666. },
  22667. {
  22668. name: "Teramacro",
  22669. height: math.unit(130, "terameters")
  22670. },
  22671. {
  22672. name: "Yottamacro",
  22673. height: math.unit(6200, "yottameters")
  22674. },
  22675. ]
  22676. ));
  22677. characterMakers.push(() => makeCharacter(
  22678. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22679. {
  22680. front: {
  22681. height: math.unit(8, "feet"),
  22682. weight: math.unit(250, "lb"),
  22683. name: "Front",
  22684. image: {
  22685. source: "./media/characters/kite/front.svg",
  22686. extra: 2796 / 2659,
  22687. bottom: 0.002
  22688. }
  22689. },
  22690. },
  22691. [
  22692. {
  22693. name: "Normal",
  22694. height: math.unit(8, "feet"),
  22695. default: true
  22696. },
  22697. {
  22698. name: "Macro",
  22699. height: math.unit(360, "feet")
  22700. },
  22701. {
  22702. name: "Megamacro",
  22703. height: math.unit(1500, "feet")
  22704. },
  22705. ]
  22706. ))
  22707. characterMakers.push(() => makeCharacter(
  22708. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22709. {
  22710. front: {
  22711. height: math.unit(5 + 11/12, "feet"),
  22712. weight: math.unit(170, "lb"),
  22713. name: "Front",
  22714. image: {
  22715. source: "./media/characters/poojawa-vynar/front.svg",
  22716. extra: 1735/1585,
  22717. bottom: 96/1831
  22718. }
  22719. },
  22720. back: {
  22721. height: math.unit(5 + 11/12, "feet"),
  22722. weight: math.unit(170, "lb"),
  22723. name: "Back",
  22724. image: {
  22725. source: "./media/characters/poojawa-vynar/back.svg",
  22726. extra: 1749/1607,
  22727. bottom: 28/1777
  22728. }
  22729. },
  22730. male: {
  22731. height: math.unit(5 + 11/12, "feet"),
  22732. weight: math.unit(170, "lb"),
  22733. name: "Male",
  22734. image: {
  22735. source: "./media/characters/poojawa-vynar/male.svg",
  22736. extra: 1855/1713,
  22737. bottom: 63/1918
  22738. }
  22739. },
  22740. taur: {
  22741. height: math.unit(5 + 11/12, "feet"),
  22742. weight: math.unit(170, "lb"),
  22743. name: "Taur",
  22744. image: {
  22745. source: "./media/characters/poojawa-vynar/taur.svg",
  22746. extra: 1151/1059,
  22747. bottom: 356/1507
  22748. }
  22749. },
  22750. frontDressed: {
  22751. height: math.unit(5 + 11/12, "feet"),
  22752. weight: math.unit(170, "lb"),
  22753. name: "Front (Dressed)",
  22754. image: {
  22755. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22756. extra: 1735/1585,
  22757. bottom: 96/1831
  22758. }
  22759. },
  22760. backDressed: {
  22761. height: math.unit(5 + 11/12, "feet"),
  22762. weight: math.unit(170, "lb"),
  22763. name: "Back (Dressed)",
  22764. image: {
  22765. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22766. extra: 1749/1607,
  22767. bottom: 28/1777
  22768. }
  22769. },
  22770. maleDressed: {
  22771. height: math.unit(5 + 11/12, "feet"),
  22772. weight: math.unit(170, "lb"),
  22773. name: "Male (Dressed)",
  22774. image: {
  22775. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22776. extra: 1855/1713,
  22777. bottom: 63/1918
  22778. }
  22779. },
  22780. taurDressed: {
  22781. height: math.unit(5 + 11/12, "feet"),
  22782. weight: math.unit(170, "lb"),
  22783. name: "Taur (Dressed)",
  22784. image: {
  22785. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22786. extra: 1151/1059,
  22787. bottom: 356/1507
  22788. }
  22789. },
  22790. maw: {
  22791. height: math.unit(1.46, "feet"),
  22792. name: "Maw",
  22793. image: {
  22794. source: "./media/characters/poojawa-vynar/maw.svg"
  22795. }
  22796. },
  22797. head: {
  22798. height: math.unit(2.34, "feet"),
  22799. name: "Head",
  22800. image: {
  22801. source: "./media/characters/poojawa-vynar/head.svg"
  22802. }
  22803. },
  22804. paw: {
  22805. height: math.unit(1.61, "feet"),
  22806. name: "Paw",
  22807. image: {
  22808. source: "./media/characters/poojawa-vynar/paw.svg"
  22809. }
  22810. },
  22811. pawToering: {
  22812. height: math.unit(1.72, "feet"),
  22813. name: "Paw (Toering)",
  22814. image: {
  22815. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22816. }
  22817. },
  22818. toering: {
  22819. height: math.unit(2.9, "inches"),
  22820. name: "Toering",
  22821. image: {
  22822. source: "./media/characters/poojawa-vynar/toering.svg"
  22823. }
  22824. },
  22825. shaft: {
  22826. height: math.unit(0.625, "feet"),
  22827. name: "Shaft",
  22828. image: {
  22829. source: "./media/characters/poojawa-vynar/shaft.svg"
  22830. }
  22831. },
  22832. spade: {
  22833. height: math.unit(0.42, "feet"),
  22834. name: "Spade",
  22835. image: {
  22836. source: "./media/characters/poojawa-vynar/spade.svg"
  22837. }
  22838. },
  22839. },
  22840. [
  22841. {
  22842. name: "Shortstack",
  22843. height: math.unit(4, "feet")
  22844. },
  22845. {
  22846. name: "Normal",
  22847. height: math.unit(5 + 11 / 12, "feet"),
  22848. default: true
  22849. },
  22850. {
  22851. name: "Tauric",
  22852. height: math.unit(4, "meters")
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22858. {
  22859. front: {
  22860. height: math.unit(293, "meters"),
  22861. weight: math.unit(70400, "tons"),
  22862. name: "Front",
  22863. image: {
  22864. source: "./media/characters/violette/front.svg",
  22865. extra: 1227 / 1180,
  22866. bottom: 0.005
  22867. }
  22868. },
  22869. back: {
  22870. height: math.unit(293, "meters"),
  22871. weight: math.unit(70400, "tons"),
  22872. name: "Back",
  22873. image: {
  22874. source: "./media/characters/violette/back.svg",
  22875. extra: 1227 / 1180,
  22876. bottom: 0.005
  22877. }
  22878. },
  22879. },
  22880. [
  22881. {
  22882. name: "Macro",
  22883. height: math.unit(293, "meters"),
  22884. default: true
  22885. },
  22886. ]
  22887. ))
  22888. characterMakers.push(() => makeCharacter(
  22889. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22890. {
  22891. front: {
  22892. height: math.unit(1050, "feet"),
  22893. weight: math.unit(200000, "tons"),
  22894. name: "Front",
  22895. image: {
  22896. source: "./media/characters/alessandra/front.svg",
  22897. extra: 960 / 912,
  22898. bottom: 0.06
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Macro",
  22905. height: math.unit(1050, "feet")
  22906. },
  22907. {
  22908. name: "Macro+",
  22909. height: math.unit(900, "meters"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(5, "feet"),
  22919. weight: math.unit(187, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/person/front.svg",
  22923. extra: 3087 / 2945,
  22924. bottom: 91 / 3181
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Micro",
  22931. height: math.unit(3, "inches")
  22932. },
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(5, "feet"),
  22936. default: true
  22937. },
  22938. {
  22939. name: "Macro",
  22940. height: math.unit(90, "feet")
  22941. },
  22942. {
  22943. name: "Max Size",
  22944. height: math.unit(280, "feet")
  22945. },
  22946. ]
  22947. ))
  22948. characterMakers.push(() => makeCharacter(
  22949. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22950. {
  22951. front: {
  22952. height: math.unit(4.5, "meters"),
  22953. weight: math.unit(3200, "lb"),
  22954. name: "Front",
  22955. image: {
  22956. source: "./media/characters/ty/front.svg",
  22957. extra: 1038 / 960,
  22958. bottom: 31.156 / 1068
  22959. }
  22960. },
  22961. back: {
  22962. height: math.unit(4.5, "meters"),
  22963. weight: math.unit(3200, "lb"),
  22964. name: "Back",
  22965. image: {
  22966. source: "./media/characters/ty/back.svg",
  22967. extra: 1044 / 966,
  22968. bottom: 7.48 / 1049
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Normal",
  22975. height: math.unit(4.5, "meters"),
  22976. default: true
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22982. {
  22983. front: {
  22984. height: math.unit(5 + 4 / 12, "feet"),
  22985. weight: math.unit(115, "lb"),
  22986. name: "Front",
  22987. image: {
  22988. source: "./media/characters/rocky/front.svg",
  22989. extra: 1012 / 975,
  22990. bottom: 54 / 1066
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Normal",
  22997. height: math.unit(5 + 4 / 12, "feet"),
  22998. default: true
  22999. },
  23000. ]
  23001. ))
  23002. characterMakers.push(() => makeCharacter(
  23003. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23004. {
  23005. upright: {
  23006. height: math.unit(6, "meters"),
  23007. weight: math.unit(4000, "kg"),
  23008. name: "Upright",
  23009. image: {
  23010. source: "./media/characters/ruin/upright.svg",
  23011. extra: 668 / 661,
  23012. bottom: 42 / 799.8396
  23013. }
  23014. },
  23015. },
  23016. [
  23017. {
  23018. name: "Normal",
  23019. height: math.unit(6, "meters"),
  23020. default: true
  23021. },
  23022. ]
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23026. {
  23027. front: {
  23028. height: math.unit(5, "feet"),
  23029. weight: math.unit(106, "lb"),
  23030. name: "Front",
  23031. image: {
  23032. source: "./media/characters/robin/front.svg",
  23033. extra: 862 / 799,
  23034. bottom: 42.4 / 914.8856
  23035. }
  23036. },
  23037. },
  23038. [
  23039. {
  23040. name: "Normal",
  23041. height: math.unit(5, "feet"),
  23042. default: true
  23043. },
  23044. ]
  23045. ))
  23046. characterMakers.push(() => makeCharacter(
  23047. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23048. {
  23049. side: {
  23050. height: math.unit(3, "feet"),
  23051. weight: math.unit(225, "lb"),
  23052. name: "Side",
  23053. image: {
  23054. source: "./media/characters/saian/side.svg",
  23055. extra: 566 / 356,
  23056. bottom: 79.7 / 643
  23057. }
  23058. },
  23059. maw: {
  23060. height: math.unit(2.85, "feet"),
  23061. name: "Maw",
  23062. image: {
  23063. source: "./media/characters/saian/maw.svg"
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(3, "feet"),
  23071. default: true
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23077. {
  23078. side: {
  23079. height: math.unit(8, "feet"),
  23080. weight: math.unit(300, "lb"),
  23081. name: "Side",
  23082. image: {
  23083. source: "./media/characters/equus-silvermane/side.svg",
  23084. extra: 2176 / 2050,
  23085. bottom: 65.7 / 2245
  23086. }
  23087. },
  23088. front: {
  23089. height: math.unit(8, "feet"),
  23090. weight: math.unit(300, "lb"),
  23091. name: "Front",
  23092. image: {
  23093. source: "./media/characters/equus-silvermane/front.svg",
  23094. extra: 4633 / 4400,
  23095. bottom: 71.3 / 4706.915
  23096. }
  23097. },
  23098. sideStepping: {
  23099. height: math.unit(8, "feet"),
  23100. weight: math.unit(300, "lb"),
  23101. name: "Side (Stepping)",
  23102. image: {
  23103. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23104. extra: 1968 / 1860,
  23105. bottom: 16.4 / 1989
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(8, "feet")
  23113. },
  23114. {
  23115. name: "Minimacro",
  23116. height: math.unit(75, "feet"),
  23117. default: true
  23118. },
  23119. {
  23120. name: "Macro",
  23121. height: math.unit(150, "feet")
  23122. },
  23123. {
  23124. name: "Macro+",
  23125. height: math.unit(1000, "feet")
  23126. },
  23127. {
  23128. name: "Megamacro",
  23129. height: math.unit(1, "mile")
  23130. },
  23131. ]
  23132. ))
  23133. characterMakers.push(() => makeCharacter(
  23134. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23135. {
  23136. side: {
  23137. height: math.unit(20, "feet"),
  23138. weight: math.unit(30000, "kg"),
  23139. name: "Side",
  23140. image: {
  23141. source: "./media/characters/windar/side.svg",
  23142. extra: 1491 / 1248,
  23143. bottom: 82.56 / 1568
  23144. }
  23145. },
  23146. },
  23147. [
  23148. {
  23149. name: "Normal",
  23150. height: math.unit(20, "feet"),
  23151. default: true
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23157. {
  23158. side: {
  23159. height: math.unit(15.66, "feet"),
  23160. weight: math.unit(150, "lb"),
  23161. name: "Side",
  23162. image: {
  23163. source: "./media/characters/melody/side.svg",
  23164. extra: 1097 / 944,
  23165. bottom: 11.8 / 1109
  23166. }
  23167. },
  23168. sideOutfit: {
  23169. height: math.unit(15.66, "feet"),
  23170. weight: math.unit(150, "lb"),
  23171. name: "Side (Outfit)",
  23172. image: {
  23173. source: "./media/characters/melody/side-outfit.svg",
  23174. extra: 1097 / 944,
  23175. bottom: 11.8 / 1109
  23176. }
  23177. },
  23178. },
  23179. [
  23180. {
  23181. name: "Normal",
  23182. height: math.unit(15.66, "feet"),
  23183. default: true
  23184. },
  23185. ]
  23186. ))
  23187. characterMakers.push(() => makeCharacter(
  23188. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23189. {
  23190. armoredFront: {
  23191. height: math.unit(8, "feet"),
  23192. weight: math.unit(325, "lb"),
  23193. name: "Front",
  23194. image: {
  23195. source: "./media/characters/windera/armored-front.svg",
  23196. extra: 1830/1598,
  23197. bottom: 151/1981
  23198. },
  23199. form: "armored",
  23200. default: true
  23201. },
  23202. macroFront: {
  23203. height: math.unit(70, "feet"),
  23204. weight: math.unit(315453, "lb"),
  23205. name: "Front",
  23206. image: {
  23207. source: "./media/characters/windera/macro-front.svg",
  23208. extra: 963/883,
  23209. bottom: 23/986
  23210. },
  23211. form: "macro",
  23212. default: true
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Normal",
  23218. height: math.unit(8, "feet"),
  23219. default: true,
  23220. form: "armored"
  23221. },
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(70, "feet"),
  23225. default: true,
  23226. form: "macro"
  23227. },
  23228. ],
  23229. {
  23230. "armored": {
  23231. name: "Armored",
  23232. default: true
  23233. },
  23234. "macro": {
  23235. name: "Macro",
  23236. },
  23237. }
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23241. {
  23242. front: {
  23243. height: math.unit(28.75, "feet"),
  23244. weight: math.unit(2000, "kg"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/sonear/front.svg",
  23248. extra: 1041.1 / 964.9,
  23249. bottom: 53.7 / 1096.6
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(28.75, "feet"),
  23257. default: true
  23258. },
  23259. ]
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23263. {
  23264. side: {
  23265. height: math.unit(25.5, "feet"),
  23266. weight: math.unit(23000, "kg"),
  23267. name: "Side",
  23268. image: {
  23269. source: "./media/characters/kanara/side.svg"
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Normal",
  23276. height: math.unit(25.5, "feet"),
  23277. default: true
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23283. {
  23284. side: {
  23285. height: math.unit(10, "feet"),
  23286. weight: math.unit(1000, "kg"),
  23287. name: "Side",
  23288. image: {
  23289. source: "./media/characters/ereus/side.svg",
  23290. extra: 1157 / 959,
  23291. bottom: 153 / 1312.5
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Normal",
  23298. height: math.unit(10, "feet"),
  23299. default: true
  23300. },
  23301. ]
  23302. ))
  23303. characterMakers.push(() => makeCharacter(
  23304. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23305. {
  23306. side: {
  23307. height: math.unit(4.5, "feet"),
  23308. weight: math.unit(500, "lb"),
  23309. name: "Side",
  23310. image: {
  23311. source: "./media/characters/e-ter/side.svg",
  23312. extra: 1550 / 1248,
  23313. bottom: 146 / 1694
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Normal",
  23320. height: math.unit(4.5, "feet"),
  23321. default: true
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23327. {
  23328. side: {
  23329. height: math.unit(9.7, "feet"),
  23330. weight: math.unit(4000, "kg"),
  23331. name: "Side",
  23332. image: {
  23333. source: "./media/characters/yamie/side.svg"
  23334. }
  23335. },
  23336. },
  23337. [
  23338. {
  23339. name: "Normal",
  23340. height: math.unit(9.7, "feet"),
  23341. default: true
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23347. {
  23348. front: {
  23349. height: math.unit(50, "feet"),
  23350. weight: math.unit(50000, "kg"),
  23351. name: "Front",
  23352. image: {
  23353. source: "./media/characters/anders/front.svg",
  23354. extra: 570 / 539,
  23355. bottom: 14.7 / 586.7
  23356. }
  23357. },
  23358. },
  23359. [
  23360. {
  23361. name: "Large",
  23362. height: math.unit(50, "feet")
  23363. },
  23364. {
  23365. name: "Macro",
  23366. height: math.unit(2000, "feet"),
  23367. default: true
  23368. },
  23369. {
  23370. name: "Megamacro",
  23371. height: math.unit(12, "miles")
  23372. },
  23373. ]
  23374. ))
  23375. characterMakers.push(() => makeCharacter(
  23376. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23377. {
  23378. front: {
  23379. height: math.unit(7 + 2 / 12, "feet"),
  23380. weight: math.unit(300, "lb"),
  23381. name: "Front",
  23382. image: {
  23383. source: "./media/characters/reban/front.svg",
  23384. extra: 1287/1212,
  23385. bottom: 148/1435
  23386. }
  23387. },
  23388. head: {
  23389. height: math.unit(1.95, "feet"),
  23390. name: "Head",
  23391. image: {
  23392. source: "./media/characters/reban/head.svg"
  23393. }
  23394. },
  23395. maw: {
  23396. height: math.unit(0.95, "feet"),
  23397. name: "Maw",
  23398. image: {
  23399. source: "./media/characters/reban/maw.svg"
  23400. }
  23401. },
  23402. foot: {
  23403. height: math.unit(1.65, "feet"),
  23404. name: "Foot",
  23405. image: {
  23406. source: "./media/characters/reban/foot.svg"
  23407. }
  23408. },
  23409. dick: {
  23410. height: math.unit(7 / 5, "feet"),
  23411. name: "Dick",
  23412. image: {
  23413. source: "./media/characters/reban/dick.svg"
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Natural Height",
  23420. height: math.unit(7 + 2 / 12, "feet")
  23421. },
  23422. {
  23423. name: "Macro",
  23424. height: math.unit(500, "feet"),
  23425. default: true
  23426. },
  23427. {
  23428. name: "Canon Height",
  23429. height: math.unit(50, "AU")
  23430. },
  23431. ]
  23432. ))
  23433. characterMakers.push(() => makeCharacter(
  23434. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23435. {
  23436. front: {
  23437. height: math.unit(6, "feet"),
  23438. weight: math.unit(150, "lb"),
  23439. name: "Front",
  23440. image: {
  23441. source: "./media/characters/terrance-keayes/front.svg",
  23442. extra: 1.005,
  23443. bottom: 151 / 1615
  23444. }
  23445. },
  23446. side: {
  23447. height: math.unit(6, "feet"),
  23448. weight: math.unit(150, "lb"),
  23449. name: "Side",
  23450. image: {
  23451. source: "./media/characters/terrance-keayes/side.svg",
  23452. extra: 1.005,
  23453. bottom: 129.4 / 1544
  23454. }
  23455. },
  23456. back: {
  23457. height: math.unit(6, "feet"),
  23458. weight: math.unit(150, "lb"),
  23459. name: "Back",
  23460. image: {
  23461. source: "./media/characters/terrance-keayes/back.svg",
  23462. extra: 1.005,
  23463. bottom: 58.4 / 1557.3
  23464. }
  23465. },
  23466. dick: {
  23467. height: math.unit(6 * 0.208, "feet"),
  23468. name: "Dick",
  23469. image: {
  23470. source: "./media/characters/terrance-keayes/dick.svg"
  23471. }
  23472. },
  23473. },
  23474. [
  23475. {
  23476. name: "Canon Height",
  23477. height: math.unit(35, "miles"),
  23478. default: true
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23484. {
  23485. front: {
  23486. height: math.unit(6, "feet"),
  23487. weight: math.unit(150, "lb"),
  23488. name: "Front",
  23489. image: {
  23490. source: "./media/characters/ofelia/front.svg",
  23491. extra: 1130/1117,
  23492. bottom: 91/1221
  23493. }
  23494. },
  23495. back: {
  23496. height: math.unit(6, "feet"),
  23497. weight: math.unit(150, "lb"),
  23498. name: "Back",
  23499. image: {
  23500. source: "./media/characters/ofelia/back.svg",
  23501. extra: 1172/1159,
  23502. bottom: 28/1200
  23503. }
  23504. },
  23505. maw: {
  23506. height: math.unit(1, "feet"),
  23507. name: "Maw",
  23508. image: {
  23509. source: "./media/characters/ofelia/maw.svg"
  23510. }
  23511. },
  23512. foot: {
  23513. height: math.unit(1.949, "feet"),
  23514. name: "Foot",
  23515. image: {
  23516. source: "./media/characters/ofelia/foot.svg"
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Canon Height",
  23523. height: math.unit(2000, "miles"),
  23524. default: true
  23525. },
  23526. ]
  23527. ))
  23528. characterMakers.push(() => makeCharacter(
  23529. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23530. {
  23531. front: {
  23532. height: math.unit(6, "feet"),
  23533. weight: math.unit(150, "lb"),
  23534. name: "Front",
  23535. image: {
  23536. source: "./media/characters/samuel/front.svg",
  23537. extra: 265 / 258,
  23538. bottom: 2 / 266.1566
  23539. }
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Macro",
  23545. height: math.unit(100, "feet"),
  23546. default: true
  23547. },
  23548. {
  23549. name: "Full Size",
  23550. height: math.unit(1000, "miles")
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23556. {
  23557. front: {
  23558. height: math.unit(6, "feet"),
  23559. weight: math.unit(300, "lb"),
  23560. name: "Front",
  23561. image: {
  23562. source: "./media/characters/beishir-kiel/front.svg",
  23563. extra: 569 / 547,
  23564. bottom: 41.9 / 609
  23565. }
  23566. },
  23567. maw: {
  23568. height: math.unit(6 * 0.202, "feet"),
  23569. name: "Maw",
  23570. image: {
  23571. source: "./media/characters/beishir-kiel/maw.svg"
  23572. }
  23573. },
  23574. },
  23575. [
  23576. {
  23577. name: "Macro",
  23578. height: math.unit(300, "feet"),
  23579. default: true
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(5 + 7/12, "feet"),
  23588. weight: math.unit(120, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/logan-grey/front.svg",
  23592. extra: 1836/1738,
  23593. bottom: 108/1944
  23594. }
  23595. },
  23596. back: {
  23597. height: math.unit(5 + 7/12, "feet"),
  23598. weight: math.unit(120, "lb"),
  23599. name: "Back",
  23600. image: {
  23601. source: "./media/characters/logan-grey/back.svg",
  23602. extra: 1880/1794,
  23603. bottom: 24/1904
  23604. }
  23605. },
  23606. frontSfw: {
  23607. height: math.unit(5 + 7/12, "feet"),
  23608. weight: math.unit(120, "lb"),
  23609. name: "Front (SFW)",
  23610. image: {
  23611. source: "./media/characters/logan-grey/front-sfw.svg",
  23612. extra: 1836/1738,
  23613. bottom: 108/1944
  23614. }
  23615. },
  23616. backSfw: {
  23617. height: math.unit(5 + 7/12, "feet"),
  23618. weight: math.unit(120, "lb"),
  23619. name: "Back (SFW)",
  23620. image: {
  23621. source: "./media/characters/logan-grey/back-sfw.svg",
  23622. extra: 1880/1794,
  23623. bottom: 24/1904
  23624. }
  23625. },
  23626. hands: {
  23627. height: math.unit(0.84, "feet"),
  23628. name: "Hands",
  23629. image: {
  23630. source: "./media/characters/logan-grey/hands.svg"
  23631. }
  23632. },
  23633. paws: {
  23634. height: math.unit(0.72, "feet"),
  23635. name: "Paws",
  23636. image: {
  23637. source: "./media/characters/logan-grey/paws.svg"
  23638. }
  23639. },
  23640. cock: {
  23641. height: math.unit(1.45, "feet"),
  23642. name: "Cock",
  23643. image: {
  23644. source: "./media/characters/logan-grey/cock.svg"
  23645. }
  23646. },
  23647. cockAlt: {
  23648. height: math.unit(1.437, "feet"),
  23649. name: "Cock (alt)",
  23650. image: {
  23651. source: "./media/characters/logan-grey/cock-alt.svg"
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(5 + 8 / 12, "feet")
  23659. },
  23660. {
  23661. name: "The 500 Foot Femboy",
  23662. height: math.unit(500, "feet"),
  23663. default: true
  23664. },
  23665. {
  23666. name: "Megmacro",
  23667. height: math.unit(20, "miles")
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(8 + 2 / 12, "feet"),
  23676. weight: math.unit(275, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/draganta/front.svg",
  23680. extra: 1177 / 1135,
  23681. bottom: 33.46 / 1212.1
  23682. }
  23683. },
  23684. },
  23685. [
  23686. {
  23687. name: "Normal",
  23688. height: math.unit(8 + 6 / 12, "feet"),
  23689. default: true
  23690. },
  23691. {
  23692. name: "Macro",
  23693. height: math.unit(150, "feet")
  23694. },
  23695. {
  23696. name: "Megamacro",
  23697. height: math.unit(1000, "miles")
  23698. },
  23699. ]
  23700. ))
  23701. characterMakers.push(() => makeCharacter(
  23702. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23703. {
  23704. front: {
  23705. height: math.unit(1.72, "m"),
  23706. weight: math.unit(80, "lb"),
  23707. name: "Front",
  23708. image: {
  23709. source: "./media/characters/voski/front.svg",
  23710. extra: 2076.22 / 2022.4,
  23711. bottom: 102.7 / 2177.3866
  23712. }
  23713. },
  23714. frontFlaccid: {
  23715. height: math.unit(1.72, "m"),
  23716. weight: math.unit(80, "lb"),
  23717. name: "Front (Flaccid)",
  23718. image: {
  23719. source: "./media/characters/voski/front-flaccid.svg",
  23720. extra: 2076.22 / 2022.4,
  23721. bottom: 102.7 / 2177.3866
  23722. }
  23723. },
  23724. frontErect: {
  23725. height: math.unit(1.72, "m"),
  23726. weight: math.unit(80, "lb"),
  23727. name: "Front (Erect)",
  23728. image: {
  23729. source: "./media/characters/voski/front-erect.svg",
  23730. extra: 2076.22 / 2022.4,
  23731. bottom: 102.7 / 2177.3866
  23732. }
  23733. },
  23734. back: {
  23735. height: math.unit(1.72, "m"),
  23736. weight: math.unit(80, "lb"),
  23737. name: "Back",
  23738. image: {
  23739. source: "./media/characters/voski/back.svg",
  23740. extra: 2104 / 2051,
  23741. bottom: 10.45 / 2113.63
  23742. }
  23743. },
  23744. },
  23745. [
  23746. {
  23747. name: "Normal",
  23748. height: math.unit(1.72, "m")
  23749. },
  23750. {
  23751. name: "Macro",
  23752. height: math.unit(55, "m"),
  23753. default: true
  23754. },
  23755. {
  23756. name: "Macro+",
  23757. height: math.unit(300, "m")
  23758. },
  23759. {
  23760. name: "Macro++",
  23761. height: math.unit(700, "m")
  23762. },
  23763. {
  23764. name: "Macro+++",
  23765. height: math.unit(4500, "m")
  23766. },
  23767. {
  23768. name: "Macro++++",
  23769. height: math.unit(45, "km")
  23770. },
  23771. {
  23772. name: "Macro+++++",
  23773. height: math.unit(1220, "km")
  23774. },
  23775. ]
  23776. ))
  23777. characterMakers.push(() => makeCharacter(
  23778. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23779. {
  23780. front: {
  23781. height: math.unit(2.3, "m"),
  23782. weight: math.unit(304, "kg"),
  23783. name: "Front",
  23784. image: {
  23785. source: "./media/characters/icowom-lee/front.svg",
  23786. extra: 985 / 955,
  23787. bottom: 25.4 / 1012
  23788. }
  23789. },
  23790. fronttentacles: {
  23791. height: math.unit(2.3, "m"),
  23792. weight: math.unit(304, "kg"),
  23793. name: "Front-tentacles",
  23794. image: {
  23795. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23796. extra: 985 / 955,
  23797. bottom: 25.4 / 1012
  23798. }
  23799. },
  23800. back: {
  23801. height: math.unit(2.3, "m"),
  23802. weight: math.unit(304, "kg"),
  23803. name: "Back",
  23804. image: {
  23805. source: "./media/characters/icowom-lee/back.svg",
  23806. extra: 975 / 954,
  23807. bottom: 9.5 / 985
  23808. }
  23809. },
  23810. backtentacles: {
  23811. height: math.unit(2.3, "m"),
  23812. weight: math.unit(304, "kg"),
  23813. name: "Back-tentacles",
  23814. image: {
  23815. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23816. extra: 975 / 954,
  23817. bottom: 9.5 / 985
  23818. }
  23819. },
  23820. frontDressed: {
  23821. height: math.unit(2.3, "m"),
  23822. weight: math.unit(304, "kg"),
  23823. name: "Front (Dressed)",
  23824. image: {
  23825. source: "./media/characters/icowom-lee/front-dressed.svg",
  23826. extra: 3076 / 2933,
  23827. bottom: 51.4 / 3125.1889
  23828. }
  23829. },
  23830. rump: {
  23831. height: math.unit(0.776, "meters"),
  23832. name: "Rump",
  23833. image: {
  23834. source: "./media/characters/icowom-lee/rump.svg"
  23835. }
  23836. },
  23837. genitals: {
  23838. height: math.unit(0.78, "meters"),
  23839. name: "Genitals",
  23840. image: {
  23841. source: "./media/characters/icowom-lee/genitals.svg"
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(2.3, "meters"),
  23849. default: true
  23850. },
  23851. {
  23852. name: "Macro",
  23853. height: math.unit(94, "meters"),
  23854. default: true
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(22, "meters"),
  23863. weight: math.unit(21000, "kg"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/shock-diamond/front.svg",
  23867. extra: 2204 / 2053,
  23868. bottom: 65 / 2239.47
  23869. }
  23870. },
  23871. frontNude: {
  23872. height: math.unit(22, "meters"),
  23873. weight: math.unit(21000, "kg"),
  23874. name: "Front (Nude)",
  23875. image: {
  23876. source: "./media/characters/shock-diamond/front-nude.svg",
  23877. extra: 2514 / 2285,
  23878. bottom: 13 / 2527.56
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "Normal",
  23885. height: math.unit(3, "meters")
  23886. },
  23887. {
  23888. name: "Macro",
  23889. height: math.unit(22, "meters"),
  23890. default: true
  23891. },
  23892. ]
  23893. ))
  23894. characterMakers.push(() => makeCharacter(
  23895. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23896. {
  23897. front: {
  23898. height: math.unit(5 + 4 / 12, "feet"),
  23899. weight: math.unit(120, "lb"),
  23900. name: "Front",
  23901. image: {
  23902. source: "./media/characters/rory/front.svg",
  23903. extra: 1318/1241,
  23904. bottom: 42/1360
  23905. }
  23906. },
  23907. back: {
  23908. height: math.unit(5 + 4 / 12, "feet"),
  23909. weight: math.unit(120, "lb"),
  23910. name: "Back",
  23911. image: {
  23912. source: "./media/characters/rory/back.svg",
  23913. extra: 1318/1241,
  23914. bottom: 42/1360
  23915. }
  23916. },
  23917. butt: {
  23918. height: math.unit(1.74, "feet"),
  23919. name: "Butt",
  23920. image: {
  23921. source: "./media/characters/rory/butt.svg"
  23922. }
  23923. },
  23924. dick: {
  23925. height: math.unit(1.02, "feet"),
  23926. name: "Dick",
  23927. image: {
  23928. source: "./media/characters/rory/dick.svg"
  23929. }
  23930. },
  23931. paws: {
  23932. height: math.unit(1, "feet"),
  23933. name: "Paws",
  23934. image: {
  23935. source: "./media/characters/rory/paws.svg"
  23936. }
  23937. },
  23938. frontAlt: {
  23939. height: math.unit(5 + 4 / 12, "feet"),
  23940. weight: math.unit(120, "lb"),
  23941. name: "Front (Alt)",
  23942. image: {
  23943. source: "./media/characters/rory/front-alt.svg",
  23944. extra: 589 / 556,
  23945. bottom: 45.7 / 635.76
  23946. }
  23947. },
  23948. frontAltNude: {
  23949. height: math.unit(5 + 4 / 12, "feet"),
  23950. weight: math.unit(120, "lb"),
  23951. name: "Front (Alt, Nude)",
  23952. image: {
  23953. source: "./media/characters/rory/front-alt-nude.svg",
  23954. extra: 589 / 556,
  23955. bottom: 45.7 / 635.76
  23956. }
  23957. },
  23958. side: {
  23959. height: math.unit(5 + 4 / 12, "feet"),
  23960. weight: math.unit(120, "lb"),
  23961. name: "Side",
  23962. image: {
  23963. source: "./media/characters/rory/side.svg",
  23964. extra: 597 / 564,
  23965. bottom: 55 / 653
  23966. }
  23967. },
  23968. backAlt: {
  23969. height: math.unit(5 + 4 / 12, "feet"),
  23970. weight: math.unit(120, "lb"),
  23971. name: "Back (Alt)",
  23972. image: {
  23973. source: "./media/characters/rory/back-alt.svg",
  23974. extra: 620 / 585,
  23975. bottom: 8.86 / 630.43
  23976. }
  23977. },
  23978. dickAlt: {
  23979. height: math.unit(0.86, "feet"),
  23980. name: "Dick (Alt)",
  23981. image: {
  23982. source: "./media/characters/rory/dick-alt.svg"
  23983. }
  23984. },
  23985. },
  23986. [
  23987. {
  23988. name: "Normal",
  23989. height: math.unit(5 + 4 / 12, "feet"),
  23990. default: true
  23991. },
  23992. {
  23993. name: "Macro",
  23994. height: math.unit(100, "feet")
  23995. },
  23996. {
  23997. name: "Macro+",
  23998. height: math.unit(140, "feet")
  23999. },
  24000. {
  24001. name: "Macro++",
  24002. height: math.unit(300, "feet")
  24003. },
  24004. ]
  24005. ))
  24006. characterMakers.push(() => makeCharacter(
  24007. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24008. {
  24009. front: {
  24010. height: math.unit(5 + 9 / 12, "feet"),
  24011. weight: math.unit(190, "lb"),
  24012. name: "Front",
  24013. image: {
  24014. source: "./media/characters/sprisk/front.svg",
  24015. extra: 1225 / 1180,
  24016. bottom: 42.7 / 1266.4
  24017. }
  24018. },
  24019. frontNsfw: {
  24020. height: math.unit(5 + 9 / 12, "feet"),
  24021. weight: math.unit(190, "lb"),
  24022. name: "Front (NSFW)",
  24023. image: {
  24024. source: "./media/characters/sprisk/front-nsfw.svg",
  24025. extra: 1225 / 1180,
  24026. bottom: 42.7 / 1266.4
  24027. }
  24028. },
  24029. back: {
  24030. height: math.unit(5 + 9 / 12, "feet"),
  24031. weight: math.unit(190, "lb"),
  24032. name: "Back",
  24033. image: {
  24034. source: "./media/characters/sprisk/back.svg",
  24035. extra: 1247 / 1200,
  24036. bottom: 5.6 / 1253.04
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Tiny",
  24043. height: math.unit(2, "inches")
  24044. },
  24045. {
  24046. name: "Normal",
  24047. height: math.unit(5 + 9 / 12, "feet"),
  24048. default: true
  24049. },
  24050. {
  24051. name: "Mini Macro",
  24052. height: math.unit(18, "feet")
  24053. },
  24054. {
  24055. name: "Macro",
  24056. height: math.unit(100, "feet")
  24057. },
  24058. {
  24059. name: "MACRO",
  24060. height: math.unit(50, "miles")
  24061. },
  24062. {
  24063. name: "M A C R O",
  24064. height: math.unit(300, "miles")
  24065. },
  24066. ]
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24070. {
  24071. side: {
  24072. height: math.unit(15.6, "meters"),
  24073. weight: math.unit(700000, "kg"),
  24074. name: "Side",
  24075. image: {
  24076. source: "./media/characters/bunsen/side.svg",
  24077. extra: 1644 / 358
  24078. }
  24079. },
  24080. foot: {
  24081. height: math.unit(1.611 * 1644 / 358, "meter"),
  24082. name: "Foot",
  24083. image: {
  24084. source: "./media/characters/bunsen/foot.svg"
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Small",
  24091. height: math.unit(10, "feet")
  24092. },
  24093. {
  24094. name: "Normal",
  24095. height: math.unit(15.6, "meters"),
  24096. default: true
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24102. {
  24103. front: {
  24104. height: math.unit(4 + 11 / 12, "feet"),
  24105. weight: math.unit(140, "lb"),
  24106. name: "Front",
  24107. image: {
  24108. source: "./media/characters/sesh/front.svg",
  24109. extra: 3420 / 3231,
  24110. bottom: 72 / 3949.5
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Normal",
  24117. height: math.unit(4 + 11 / 12, "feet")
  24118. },
  24119. {
  24120. name: "Grown",
  24121. height: math.unit(15, "feet"),
  24122. default: true
  24123. },
  24124. {
  24125. name: "Macro",
  24126. height: math.unit(1500, "feet")
  24127. },
  24128. {
  24129. name: "Megamacro",
  24130. height: math.unit(30, "miles")
  24131. },
  24132. {
  24133. name: "Continental",
  24134. height: math.unit(3000, "miles")
  24135. },
  24136. {
  24137. name: "Gravity Mass",
  24138. height: math.unit(300000, "miles")
  24139. },
  24140. {
  24141. name: "Planet Buster",
  24142. height: math.unit(30000000, "miles")
  24143. },
  24144. {
  24145. name: "Big",
  24146. height: math.unit(3000000000, "miles")
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24152. {
  24153. front: {
  24154. height: math.unit(9, "feet"),
  24155. weight: math.unit(350, "lb"),
  24156. name: "Front",
  24157. image: {
  24158. source: "./media/characters/pepper/front.svg",
  24159. extra: 1448 / 1312,
  24160. bottom: 9.4 / 1457.88
  24161. }
  24162. },
  24163. back: {
  24164. height: math.unit(9, "feet"),
  24165. weight: math.unit(350, "lb"),
  24166. name: "Back",
  24167. image: {
  24168. source: "./media/characters/pepper/back.svg",
  24169. extra: 1423 / 1300,
  24170. bottom: 4.6 / 1429
  24171. }
  24172. },
  24173. maw: {
  24174. height: math.unit(0.932, "feet"),
  24175. name: "Maw",
  24176. image: {
  24177. source: "./media/characters/pepper/maw.svg"
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Normal",
  24184. height: math.unit(9, "feet"),
  24185. default: true
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(6, "feet"),
  24194. weight: math.unit(150, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/maelstrom/front.svg",
  24198. extra: 2100 / 1883,
  24199. bottom: 94 / 2196.7
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Less Kaiju",
  24206. height: math.unit(200, "feet")
  24207. },
  24208. {
  24209. name: "Kaiju",
  24210. height: math.unit(400, "feet"),
  24211. default: true
  24212. },
  24213. {
  24214. name: "Kaiju-er",
  24215. height: math.unit(600, "feet")
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24221. {
  24222. front: {
  24223. height: math.unit(6 + 5 / 12, "feet"),
  24224. weight: math.unit(180, "lb"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/lexir/front.svg",
  24228. extra: 180 / 172,
  24229. bottom: 12 / 192
  24230. }
  24231. },
  24232. back: {
  24233. height: math.unit(6 + 5 / 12, "feet"),
  24234. weight: math.unit(180, "lb"),
  24235. name: "Back",
  24236. image: {
  24237. source: "./media/characters/lexir/back.svg",
  24238. extra: 1273/1201,
  24239. bottom: 39/1312
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "Very Smal",
  24246. height: math.unit(1, "nm")
  24247. },
  24248. {
  24249. name: "Normal",
  24250. height: math.unit(6 + 5 / 12, "feet"),
  24251. default: true
  24252. },
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(1, "mile")
  24256. },
  24257. {
  24258. name: "Megamacro",
  24259. height: math.unit(50, "miles")
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(1.5, "meters"),
  24268. weight: math.unit(100, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/maksio/front.svg",
  24272. extra: 1549 / 1531,
  24273. bottom: 123.7 / 1674.5429
  24274. }
  24275. },
  24276. back: {
  24277. height: math.unit(1.5, "meters"),
  24278. weight: math.unit(100, "lb"),
  24279. name: "Back",
  24280. image: {
  24281. source: "./media/characters/maksio/back.svg",
  24282. extra: 1541 / 1509,
  24283. bottom: 97 / 1639
  24284. }
  24285. },
  24286. hand: {
  24287. height: math.unit(0.621, "feet"),
  24288. name: "Hand",
  24289. image: {
  24290. source: "./media/characters/maksio/hand.svg"
  24291. }
  24292. },
  24293. foot: {
  24294. height: math.unit(1.611, "feet"),
  24295. name: "Foot",
  24296. image: {
  24297. source: "./media/characters/maksio/foot.svg"
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Shrunken",
  24304. height: math.unit(10, "cm")
  24305. },
  24306. {
  24307. name: "Normal",
  24308. height: math.unit(150, "cm"),
  24309. default: true
  24310. },
  24311. ]
  24312. ))
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24315. {
  24316. front: {
  24317. height: math.unit(100, "feet"),
  24318. name: "Front",
  24319. image: {
  24320. source: "./media/characters/erza-bear/front.svg",
  24321. extra: 2449 / 2390,
  24322. bottom: 46 / 2494
  24323. }
  24324. },
  24325. back: {
  24326. height: math.unit(100, "feet"),
  24327. name: "Back",
  24328. image: {
  24329. source: "./media/characters/erza-bear/back.svg",
  24330. extra: 2489 / 2430,
  24331. bottom: 85.4 / 2480
  24332. }
  24333. },
  24334. tail: {
  24335. height: math.unit(42, "feet"),
  24336. name: "Tail",
  24337. image: {
  24338. source: "./media/characters/erza-bear/tail.svg"
  24339. }
  24340. },
  24341. tongue: {
  24342. height: math.unit(8, "feet"),
  24343. name: "Tongue",
  24344. image: {
  24345. source: "./media/characters/erza-bear/tongue.svg"
  24346. }
  24347. },
  24348. dick: {
  24349. height: math.unit(10.5, "feet"),
  24350. name: "Dick",
  24351. image: {
  24352. source: "./media/characters/erza-bear/dick.svg"
  24353. }
  24354. },
  24355. dickVertical: {
  24356. height: math.unit(16.9, "feet"),
  24357. name: "Dick (Vertical)",
  24358. image: {
  24359. source: "./media/characters/erza-bear/dick-vertical.svg"
  24360. }
  24361. },
  24362. },
  24363. [
  24364. {
  24365. name: "Macro",
  24366. height: math.unit(100, "feet"),
  24367. default: true
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24373. {
  24374. front: {
  24375. height: math.unit(172, "cm"),
  24376. weight: math.unit(73, "kg"),
  24377. name: "Front",
  24378. image: {
  24379. source: "./media/characters/violet-flor/front.svg",
  24380. extra: 1530 / 1442,
  24381. bottom: 61.9 / 1588.8
  24382. }
  24383. },
  24384. back: {
  24385. height: math.unit(180, "cm"),
  24386. weight: math.unit(73, "kg"),
  24387. name: "Back",
  24388. image: {
  24389. source: "./media/characters/violet-flor/back.svg",
  24390. extra: 1692 / 1630,
  24391. bottom: 20 / 1712
  24392. }
  24393. },
  24394. },
  24395. [
  24396. {
  24397. name: "Normal",
  24398. height: math.unit(172, "cm"),
  24399. default: true
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24405. {
  24406. front: {
  24407. height: math.unit(6, "feet"),
  24408. weight: math.unit(220, "lb"),
  24409. name: "Front",
  24410. image: {
  24411. source: "./media/characters/lynn-rhea/front.svg",
  24412. extra: 310 / 273
  24413. }
  24414. },
  24415. back: {
  24416. height: math.unit(6, "feet"),
  24417. weight: math.unit(220, "lb"),
  24418. name: "Back",
  24419. image: {
  24420. source: "./media/characters/lynn-rhea/back.svg",
  24421. extra: 310 / 273
  24422. }
  24423. },
  24424. dicks: {
  24425. height: math.unit(0.9, "feet"),
  24426. name: "Dicks",
  24427. image: {
  24428. source: "./media/characters/lynn-rhea/dicks.svg"
  24429. }
  24430. },
  24431. slit: {
  24432. height: math.unit(0.4, "feet"),
  24433. name: "Slit",
  24434. image: {
  24435. source: "./media/characters/lynn-rhea/slit.svg"
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Micro",
  24442. height: math.unit(1, "inch")
  24443. },
  24444. {
  24445. name: "Macro",
  24446. height: math.unit(60, "feet"),
  24447. default: true
  24448. },
  24449. {
  24450. name: "Megamacro",
  24451. height: math.unit(2, "miles")
  24452. },
  24453. {
  24454. name: "Gigamacro",
  24455. height: math.unit(3, "earths")
  24456. },
  24457. {
  24458. name: "Galactic",
  24459. height: math.unit(0.8, "galaxies")
  24460. },
  24461. ]
  24462. ))
  24463. characterMakers.push(() => makeCharacter(
  24464. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24465. {
  24466. front: {
  24467. height: math.unit(1600, "feet"),
  24468. weight: math.unit(85758785169, "kg"),
  24469. name: "Front",
  24470. image: {
  24471. source: "./media/characters/valathos/front.svg",
  24472. extra: 1451 / 1339
  24473. }
  24474. },
  24475. },
  24476. [
  24477. {
  24478. name: "Macro",
  24479. height: math.unit(1600, "feet"),
  24480. default: true
  24481. },
  24482. ]
  24483. ))
  24484. characterMakers.push(() => makeCharacter(
  24485. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24486. {
  24487. front: {
  24488. height: math.unit(7 + 5 / 12, "feet"),
  24489. weight: math.unit(300, "lb"),
  24490. name: "Front",
  24491. image: {
  24492. source: "./media/characters/azula/front.svg",
  24493. extra: 3208 / 2880,
  24494. bottom: 80.2 / 3277
  24495. }
  24496. },
  24497. back: {
  24498. height: math.unit(7 + 5 / 12, "feet"),
  24499. weight: math.unit(300, "lb"),
  24500. name: "Back",
  24501. image: {
  24502. source: "./media/characters/azula/back.svg",
  24503. extra: 3169 / 2822,
  24504. bottom: 150.6 / 3321
  24505. }
  24506. },
  24507. },
  24508. [
  24509. {
  24510. name: "Normal",
  24511. height: math.unit(7 + 5 / 12, "feet"),
  24512. default: true
  24513. },
  24514. {
  24515. name: "Big",
  24516. height: math.unit(20, "feet")
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24522. {
  24523. front: {
  24524. height: math.unit(5 + 1 / 12, "feet"),
  24525. weight: math.unit(110, "lb"),
  24526. name: "Front",
  24527. image: {
  24528. source: "./media/characters/rupert/front.svg",
  24529. extra: 1549 / 1495,
  24530. bottom: 54.2 / 1604.4
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Normal",
  24537. height: math.unit(5 + 1 / 12, "feet"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24544. {
  24545. front: {
  24546. height: math.unit(8 + 4 / 12, "feet"),
  24547. weight: math.unit(350, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/sheera-castellar/front.svg",
  24551. extra: 1957 / 1894,
  24552. bottom: 26.97 / 1975.017
  24553. }
  24554. },
  24555. side: {
  24556. height: math.unit(8 + 4 / 12, "feet"),
  24557. weight: math.unit(350, "lb"),
  24558. name: "Side",
  24559. image: {
  24560. source: "./media/characters/sheera-castellar/side.svg",
  24561. extra: 1957 / 1894
  24562. }
  24563. },
  24564. back: {
  24565. height: math.unit(8 + 4 / 12, "feet"),
  24566. weight: math.unit(350, "lb"),
  24567. name: "Back",
  24568. image: {
  24569. source: "./media/characters/sheera-castellar/back.svg",
  24570. extra: 1957 / 1894
  24571. }
  24572. },
  24573. angled: {
  24574. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24575. weight: math.unit(350, "lb"),
  24576. name: "Angled",
  24577. image: {
  24578. source: "./media/characters/sheera-castellar/angled.svg",
  24579. extra: 1807 / 1707,
  24580. bottom: 68 / 1875
  24581. }
  24582. },
  24583. genitals: {
  24584. height: math.unit(2.2, "feet"),
  24585. name: "Genitals",
  24586. image: {
  24587. source: "./media/characters/sheera-castellar/genitals.svg"
  24588. }
  24589. },
  24590. taur: {
  24591. height: math.unit(10 + 6/12, "feet"),
  24592. name: "Taur",
  24593. image: {
  24594. source: "./media/characters/sheera-castellar/taur.svg",
  24595. extra: 2017/1909,
  24596. bottom: 185/2202
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Normal",
  24603. height: math.unit(8 + 4 / 12, "feet")
  24604. },
  24605. {
  24606. name: "Macro",
  24607. height: math.unit(150, "feet"),
  24608. default: true
  24609. },
  24610. {
  24611. name: "Macro+",
  24612. height: math.unit(800, "feet")
  24613. },
  24614. ]
  24615. ))
  24616. characterMakers.push(() => makeCharacter(
  24617. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24618. {
  24619. front: {
  24620. height: math.unit(6, "feet"),
  24621. weight: math.unit(150, "lb"),
  24622. name: "Front",
  24623. image: {
  24624. source: "./media/characters/jaipur/front.svg",
  24625. extra: 3860 / 3731,
  24626. bottom: 287 / 4140
  24627. }
  24628. },
  24629. back: {
  24630. height: math.unit(6, "feet"),
  24631. weight: math.unit(150, "lb"),
  24632. name: "Back",
  24633. image: {
  24634. source: "./media/characters/jaipur/back.svg",
  24635. extra: 1637/1561,
  24636. bottom: 154/1791
  24637. }
  24638. },
  24639. },
  24640. [
  24641. {
  24642. name: "Normal",
  24643. height: math.unit(1.85, "meters"),
  24644. default: true
  24645. },
  24646. {
  24647. name: "Macro",
  24648. height: math.unit(150, "meters")
  24649. },
  24650. {
  24651. name: "Macro+",
  24652. height: math.unit(0.5, "miles")
  24653. },
  24654. {
  24655. name: "Macro++",
  24656. height: math.unit(2.5, "miles")
  24657. },
  24658. {
  24659. name: "Macro+++",
  24660. height: math.unit(12, "miles")
  24661. },
  24662. {
  24663. name: "Macro++++",
  24664. height: math.unit(120, "miles")
  24665. },
  24666. {
  24667. name: "Macro+++++",
  24668. height: math.unit(1200, "miles")
  24669. },
  24670. ]
  24671. ))
  24672. characterMakers.push(() => makeCharacter(
  24673. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24674. {
  24675. front: {
  24676. height: math.unit(6, "feet"),
  24677. weight: math.unit(150, "lb"),
  24678. name: "Front",
  24679. image: {
  24680. source: "./media/characters/sheila-wolf/front.svg",
  24681. extra: 1931 / 1808,
  24682. bottom: 29.5 / 1960
  24683. }
  24684. },
  24685. dick: {
  24686. height: math.unit(1.464, "feet"),
  24687. name: "Dick",
  24688. image: {
  24689. source: "./media/characters/sheila-wolf/dick.svg"
  24690. }
  24691. },
  24692. muzzle: {
  24693. height: math.unit(0.513, "feet"),
  24694. name: "Muzzle",
  24695. image: {
  24696. source: "./media/characters/sheila-wolf/muzzle.svg"
  24697. }
  24698. },
  24699. },
  24700. [
  24701. {
  24702. name: "Macro",
  24703. height: math.unit(70, "feet"),
  24704. default: true
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24710. {
  24711. front: {
  24712. height: math.unit(32, "meters"),
  24713. weight: math.unit(300000, "kg"),
  24714. name: "Front",
  24715. image: {
  24716. source: "./media/characters/almor/front.svg",
  24717. extra: 1408 / 1322,
  24718. bottom: 94.6 / 1506.5
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Macro",
  24725. height: math.unit(32, "meters"),
  24726. default: true
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24732. {
  24733. front: {
  24734. height: math.unit(7, "feet"),
  24735. weight: math.unit(200, "lb"),
  24736. name: "Front",
  24737. image: {
  24738. source: "./media/characters/silver/front.svg",
  24739. extra: 472.1 / 450.5,
  24740. bottom: 26.5 / 499.424
  24741. }
  24742. },
  24743. },
  24744. [
  24745. {
  24746. name: "Normal",
  24747. height: math.unit(7, "feet"),
  24748. default: true
  24749. },
  24750. {
  24751. name: "Macro",
  24752. height: math.unit(800, "feet")
  24753. },
  24754. {
  24755. name: "Megamacro",
  24756. height: math.unit(250, "miles")
  24757. },
  24758. ]
  24759. ))
  24760. characterMakers.push(() => makeCharacter(
  24761. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24762. {
  24763. front: {
  24764. height: math.unit(6, "feet"),
  24765. weight: math.unit(150, "lb"),
  24766. name: "Front",
  24767. image: {
  24768. source: "./media/characters/pliskin/front.svg",
  24769. extra: 1469 / 1359,
  24770. bottom: 70 / 1540
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Micro",
  24777. height: math.unit(3, "inches")
  24778. },
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(5 + 11 / 12, "feet"),
  24782. default: true
  24783. },
  24784. {
  24785. name: "Macro",
  24786. height: math.unit(120, "feet")
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(6, "feet"),
  24795. weight: math.unit(150, "lb"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/sammy/front.svg",
  24799. extra: 1193 / 1089,
  24800. bottom: 30.5 / 1226
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Macro",
  24807. height: math.unit(1700, "feet"),
  24808. default: true
  24809. },
  24810. {
  24811. name: "Examacro",
  24812. height: math.unit(2.5e9, "lightyears")
  24813. },
  24814. ]
  24815. ))
  24816. characterMakers.push(() => makeCharacter(
  24817. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24818. {
  24819. front: {
  24820. height: math.unit(21, "meters"),
  24821. weight: math.unit(12, "tonnes"),
  24822. name: "Front",
  24823. image: {
  24824. source: "./media/characters/kuru/front.svg",
  24825. extra: 4301 / 3785,
  24826. bottom: 371.3 / 4691
  24827. }
  24828. },
  24829. },
  24830. [
  24831. {
  24832. name: "Macro",
  24833. height: math.unit(21, "meters"),
  24834. default: true
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24840. {
  24841. front: {
  24842. height: math.unit(23, "meters"),
  24843. weight: math.unit(12.2, "tonnes"),
  24844. name: "Front",
  24845. image: {
  24846. source: "./media/characters/rakka/front.svg",
  24847. extra: 4670 / 4169,
  24848. bottom: 301 / 4968.7
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Macro",
  24855. height: math.unit(23, "meters"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24862. {
  24863. front: {
  24864. height: math.unit(6, "feet"),
  24865. weight: math.unit(150, "lb"),
  24866. name: "Front",
  24867. image: {
  24868. source: "./media/characters/rhys-feline/front.svg",
  24869. extra: 2488 / 2308,
  24870. bottom: 35.67 / 2519.19
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Really Small",
  24877. height: math.unit(1, "nm")
  24878. },
  24879. {
  24880. name: "Micro",
  24881. height: math.unit(4, "inches")
  24882. },
  24883. {
  24884. name: "Normal",
  24885. height: math.unit(4 + 10 / 12, "feet"),
  24886. default: true
  24887. },
  24888. {
  24889. name: "Macro",
  24890. height: math.unit(100, "feet")
  24891. },
  24892. {
  24893. name: "Megamacto",
  24894. height: math.unit(50, "miles")
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24900. {
  24901. side: {
  24902. height: math.unit(30, "feet"),
  24903. weight: math.unit(35000, "kg"),
  24904. name: "Side",
  24905. image: {
  24906. source: "./media/characters/alydar/side.svg",
  24907. extra: 234 / 222,
  24908. bottom: 6.5 / 241
  24909. }
  24910. },
  24911. front: {
  24912. height: math.unit(30, "feet"),
  24913. weight: math.unit(35000, "kg"),
  24914. name: "Front",
  24915. image: {
  24916. source: "./media/characters/alydar/front.svg",
  24917. extra: 223.37 / 210.2,
  24918. bottom: 22.3 / 246.76
  24919. }
  24920. },
  24921. top: {
  24922. height: math.unit(64.54, "feet"),
  24923. weight: math.unit(35000, "kg"),
  24924. name: "Top",
  24925. image: {
  24926. source: "./media/characters/alydar/top.svg"
  24927. }
  24928. },
  24929. anthro: {
  24930. height: math.unit(30, "feet"),
  24931. weight: math.unit(9000, "kg"),
  24932. name: "Anthro",
  24933. image: {
  24934. source: "./media/characters/alydar/anthro.svg",
  24935. extra: 432 / 421,
  24936. bottom: 7.18 / 440
  24937. }
  24938. },
  24939. maw: {
  24940. height: math.unit(11.693, "feet"),
  24941. name: "Maw",
  24942. image: {
  24943. source: "./media/characters/alydar/maw.svg"
  24944. }
  24945. },
  24946. head: {
  24947. height: math.unit(11.693, "feet"),
  24948. name: "Head",
  24949. image: {
  24950. source: "./media/characters/alydar/head.svg"
  24951. }
  24952. },
  24953. headAlt: {
  24954. height: math.unit(12.861, "feet"),
  24955. name: "Head (Alt)",
  24956. image: {
  24957. source: "./media/characters/alydar/head-alt.svg"
  24958. }
  24959. },
  24960. wing: {
  24961. height: math.unit(20.712, "feet"),
  24962. name: "Wing",
  24963. image: {
  24964. source: "./media/characters/alydar/wing.svg"
  24965. }
  24966. },
  24967. wingFeather: {
  24968. height: math.unit(9.662, "feet"),
  24969. name: "Wing Feather",
  24970. image: {
  24971. source: "./media/characters/alydar/wing-feather.svg"
  24972. }
  24973. },
  24974. countourFeather: {
  24975. height: math.unit(4.154, "feet"),
  24976. name: "Contour Feather",
  24977. image: {
  24978. source: "./media/characters/alydar/contour-feather.svg"
  24979. }
  24980. },
  24981. },
  24982. [
  24983. {
  24984. name: "Diplomatic",
  24985. height: math.unit(13, "feet"),
  24986. default: true
  24987. },
  24988. {
  24989. name: "Small",
  24990. height: math.unit(30, "feet")
  24991. },
  24992. {
  24993. name: "Normal",
  24994. height: math.unit(95, "feet"),
  24995. default: true
  24996. },
  24997. {
  24998. name: "Large",
  24999. height: math.unit(285, "feet")
  25000. },
  25001. {
  25002. name: "Incomprehensible",
  25003. height: math.unit(450, "megameters")
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25009. {
  25010. side: {
  25011. height: math.unit(11, "feet"),
  25012. weight: math.unit(1750, "kg"),
  25013. name: "Side",
  25014. image: {
  25015. source: "./media/characters/selicia/side.svg",
  25016. extra: 440 / 396,
  25017. bottom: 24.8 / 465.979
  25018. }
  25019. },
  25020. maw: {
  25021. height: math.unit(4.665, "feet"),
  25022. name: "Maw",
  25023. image: {
  25024. source: "./media/characters/selicia/maw.svg"
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Normal",
  25031. height: math.unit(11, "feet"),
  25032. default: true
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25038. {
  25039. side: {
  25040. height: math.unit(2 + 6 / 12, "feet"),
  25041. weight: math.unit(30, "lb"),
  25042. name: "Side",
  25043. image: {
  25044. source: "./media/characters/layla/side.svg",
  25045. extra: 244 / 188,
  25046. bottom: 18.2 / 262.1
  25047. }
  25048. },
  25049. back: {
  25050. height: math.unit(2 + 6 / 12, "feet"),
  25051. weight: math.unit(30, "lb"),
  25052. name: "Back",
  25053. image: {
  25054. source: "./media/characters/layla/back.svg",
  25055. extra: 308 / 241.5,
  25056. bottom: 8.9 / 316.8
  25057. }
  25058. },
  25059. cumming: {
  25060. height: math.unit(2 + 6 / 12, "feet"),
  25061. weight: math.unit(30, "lb"),
  25062. name: "Cumming",
  25063. image: {
  25064. source: "./media/characters/layla/cumming.svg",
  25065. extra: 342 / 279,
  25066. bottom: 595 / 938
  25067. }
  25068. },
  25069. dickFlaccid: {
  25070. height: math.unit(2.595, "feet"),
  25071. name: "Flaccid Genitals",
  25072. image: {
  25073. source: "./media/characters/layla/dick-flaccid.svg"
  25074. }
  25075. },
  25076. dickErect: {
  25077. height: math.unit(2.359, "feet"),
  25078. name: "Erect Genitals",
  25079. image: {
  25080. source: "./media/characters/layla/dick-erect.svg"
  25081. }
  25082. },
  25083. dragon: {
  25084. height: math.unit(40, "feet"),
  25085. name: "Dragon",
  25086. image: {
  25087. source: "./media/characters/layla/dragon.svg",
  25088. extra: 610/535,
  25089. bottom: 367/977
  25090. }
  25091. },
  25092. taur: {
  25093. height: math.unit(30, "feet"),
  25094. name: "Taur",
  25095. image: {
  25096. source: "./media/characters/layla/taur.svg",
  25097. extra: 1268/1199,
  25098. bottom: 112/1380
  25099. }
  25100. },
  25101. },
  25102. [
  25103. {
  25104. name: "Micro",
  25105. height: math.unit(1, "inch")
  25106. },
  25107. {
  25108. name: "Small",
  25109. height: math.unit(1, "foot")
  25110. },
  25111. {
  25112. name: "Normal",
  25113. height: math.unit(2 + 6 / 12, "feet"),
  25114. default: true
  25115. },
  25116. {
  25117. name: "Macro",
  25118. height: math.unit(200, "feet")
  25119. },
  25120. {
  25121. name: "Megamacro",
  25122. height: math.unit(1000, "miles")
  25123. },
  25124. {
  25125. name: "Planetary",
  25126. height: math.unit(8000, "miles")
  25127. },
  25128. {
  25129. name: "True Layla",
  25130. height: math.unit(200000 * 7, "multiverses")
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25136. {
  25137. back: {
  25138. height: math.unit(10.5, "feet"),
  25139. weight: math.unit(800, "lb"),
  25140. name: "Back",
  25141. image: {
  25142. source: "./media/characters/knox/back.svg",
  25143. extra: 1486 / 1089,
  25144. bottom: 107 / 1601.4
  25145. }
  25146. },
  25147. side: {
  25148. height: math.unit(10.5, "feet"),
  25149. weight: math.unit(800, "lb"),
  25150. name: "Side",
  25151. image: {
  25152. source: "./media/characters/knox/side.svg",
  25153. extra: 244 / 218,
  25154. bottom: 14 / 260
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Compact",
  25161. height: math.unit(10.5, "feet"),
  25162. default: true
  25163. },
  25164. {
  25165. name: "Dynamax",
  25166. height: math.unit(210, "feet")
  25167. },
  25168. {
  25169. name: "Full Macro",
  25170. height: math.unit(850, "feet")
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(28, "feet"),
  25179. weight: math.unit(10500, "lb"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/kayda/front.svg",
  25183. extra: 1536 / 1428,
  25184. bottom: 68.7 / 1603
  25185. }
  25186. },
  25187. back: {
  25188. height: math.unit(28, "feet"),
  25189. weight: math.unit(10500, "lb"),
  25190. name: "Back",
  25191. image: {
  25192. source: "./media/characters/kayda/back.svg",
  25193. extra: 1557 / 1464,
  25194. bottom: 39.5 / 1597.49
  25195. }
  25196. },
  25197. dick: {
  25198. height: math.unit(3.858, "feet"),
  25199. name: "Dick",
  25200. image: {
  25201. source: "./media/characters/kayda/dick.svg"
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Macro",
  25208. height: math.unit(28, "feet"),
  25209. default: true
  25210. },
  25211. ]
  25212. ))
  25213. characterMakers.push(() => makeCharacter(
  25214. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25215. {
  25216. front: {
  25217. height: math.unit(10 + 11 / 12, "feet"),
  25218. weight: math.unit(1400, "lb"),
  25219. name: "Front",
  25220. image: {
  25221. source: "./media/characters/brian/front.svg",
  25222. extra: 737 / 692,
  25223. bottom: 55.4 / 785
  25224. }
  25225. },
  25226. },
  25227. [
  25228. {
  25229. name: "Normal",
  25230. height: math.unit(10 + 11 / 12, "feet"),
  25231. default: true
  25232. },
  25233. ]
  25234. ))
  25235. characterMakers.push(() => makeCharacter(
  25236. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25237. {
  25238. front: {
  25239. height: math.unit(5 + 8 / 12, "feet"),
  25240. weight: math.unit(140, "lb"),
  25241. name: "Front",
  25242. image: {
  25243. source: "./media/characters/khemri/front.svg",
  25244. extra: 4780 / 4059,
  25245. bottom: 80.1 / 4859.25
  25246. }
  25247. },
  25248. },
  25249. [
  25250. {
  25251. name: "Micro",
  25252. height: math.unit(6, "inches")
  25253. },
  25254. {
  25255. name: "Normal",
  25256. height: math.unit(5 + 8 / 12, "feet"),
  25257. default: true
  25258. },
  25259. ]
  25260. ))
  25261. characterMakers.push(() => makeCharacter(
  25262. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25263. {
  25264. front: {
  25265. height: math.unit(13, "feet"),
  25266. weight: math.unit(1700, "lb"),
  25267. name: "Front",
  25268. image: {
  25269. source: "./media/characters/felix-braveheart/front.svg",
  25270. extra: 1222 / 1157,
  25271. bottom: 53.2 / 1280
  25272. }
  25273. },
  25274. back: {
  25275. height: math.unit(13, "feet"),
  25276. weight: math.unit(1700, "lb"),
  25277. name: "Back",
  25278. image: {
  25279. source: "./media/characters/felix-braveheart/back.svg",
  25280. extra: 1277 / 1203,
  25281. bottom: 50.2 / 1327
  25282. }
  25283. },
  25284. feral: {
  25285. height: math.unit(6, "feet"),
  25286. weight: math.unit(400, "lb"),
  25287. name: "Feral",
  25288. image: {
  25289. source: "./media/characters/felix-braveheart/feral.svg",
  25290. extra: 682 / 625,
  25291. bottom: 6.9 / 688
  25292. }
  25293. },
  25294. },
  25295. [
  25296. {
  25297. name: "Normal",
  25298. height: math.unit(13, "feet"),
  25299. default: true
  25300. },
  25301. ]
  25302. ))
  25303. characterMakers.push(() => makeCharacter(
  25304. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25305. {
  25306. side: {
  25307. height: math.unit(5 + 11 / 12, "feet"),
  25308. weight: math.unit(1400, "lb"),
  25309. name: "Side",
  25310. image: {
  25311. source: "./media/characters/shadow-blade/side.svg",
  25312. extra: 1726 / 1267,
  25313. bottom: 58.4 / 1785
  25314. }
  25315. },
  25316. },
  25317. [
  25318. {
  25319. name: "Normal",
  25320. height: math.unit(5 + 11 / 12, "feet"),
  25321. default: true
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25327. {
  25328. front: {
  25329. height: math.unit(1 + 6 / 12, "feet"),
  25330. weight: math.unit(25, "lb"),
  25331. name: "Front",
  25332. image: {
  25333. source: "./media/characters/karla-halldor/front.svg",
  25334. extra: 1459 / 1383,
  25335. bottom: 12 / 1472
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Normal",
  25342. height: math.unit(1 + 6 / 12, "feet"),
  25343. default: true
  25344. },
  25345. ]
  25346. ))
  25347. characterMakers.push(() => makeCharacter(
  25348. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25349. {
  25350. front: {
  25351. height: math.unit(6 + 2 / 12, "feet"),
  25352. weight: math.unit(160, "lb"),
  25353. name: "Front",
  25354. image: {
  25355. source: "./media/characters/ariam/front.svg",
  25356. extra: 1073/976,
  25357. bottom: 52/1125
  25358. }
  25359. },
  25360. back: {
  25361. height: math.unit(6 + 2/12, "feet"),
  25362. weight: math.unit(160, "lb"),
  25363. name: "Back",
  25364. image: {
  25365. source: "./media/characters/ariam/back.svg",
  25366. extra: 1103/1023,
  25367. bottom: 9/1112
  25368. }
  25369. },
  25370. dressed: {
  25371. height: math.unit(6 + 2/12, "feet"),
  25372. weight: math.unit(160, "lb"),
  25373. name: "Dressed",
  25374. image: {
  25375. source: "./media/characters/ariam/dressed.svg",
  25376. extra: 1099/1009,
  25377. bottom: 25/1124
  25378. }
  25379. },
  25380. squatting: {
  25381. height: math.unit(4.1, "feet"),
  25382. weight: math.unit(160, "lb"),
  25383. name: "Squatting",
  25384. image: {
  25385. source: "./media/characters/ariam/squatting.svg",
  25386. extra: 2617 / 2112,
  25387. bottom: 61.2 / 2681,
  25388. }
  25389. },
  25390. },
  25391. [
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(6 + 2 / 12, "feet"),
  25395. default: true
  25396. },
  25397. {
  25398. name: "Normal+",
  25399. height: math.unit(4, "meters")
  25400. },
  25401. {
  25402. name: "Macro",
  25403. height: math.unit(50, "meters")
  25404. },
  25405. {
  25406. name: "Macro+",
  25407. height: math.unit(100, "meters")
  25408. },
  25409. {
  25410. name: "Megamacro",
  25411. height: math.unit(20, "km")
  25412. },
  25413. {
  25414. name: "Caretaker",
  25415. height: math.unit(444, "megameters")
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(1.67, "meters"),
  25424. weight: math.unit(140, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25428. extra: 438 / 410,
  25429. bottom: 0.75 / 439
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Shrunken",
  25436. height: math.unit(7.6, "cm")
  25437. },
  25438. {
  25439. name: "Human Scale",
  25440. height: math.unit(1.67, "meters")
  25441. },
  25442. {
  25443. name: "Wolxi Scale",
  25444. height: math.unit(36.7, "meters"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(1.73, "meters"),
  25454. weight: math.unit(240, "lb"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/izue-two-mothers/front.svg",
  25458. extra: 469 / 437,
  25459. bottom: 1.24 / 470.6
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Shrunken",
  25466. height: math.unit(7.86, "cm")
  25467. },
  25468. {
  25469. name: "Human Scale",
  25470. height: math.unit(1.73, "meters")
  25471. },
  25472. {
  25473. name: "Wolxi Scale",
  25474. height: math.unit(38, "meters"),
  25475. default: true
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(1.55, "meters"),
  25484. weight: math.unit(120, "lb"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/teeku-love-shack/front.svg",
  25488. extra: 387 / 362,
  25489. bottom: 1.51 / 388
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Shrunken",
  25496. height: math.unit(7, "cm")
  25497. },
  25498. {
  25499. name: "Human Scale",
  25500. height: math.unit(1.55, "meters")
  25501. },
  25502. {
  25503. name: "Wolxi Scale",
  25504. height: math.unit(34.1, "meters"),
  25505. default: true
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25511. {
  25512. front: {
  25513. height: math.unit(1.83, "meters"),
  25514. weight: math.unit(135, "lb"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/dejma-the-red/front.svg",
  25518. extra: 480 / 458,
  25519. bottom: 1.8 / 482
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Shrunken",
  25526. height: math.unit(8.3, "cm")
  25527. },
  25528. {
  25529. name: "Human Scale",
  25530. height: math.unit(1.83, "meters")
  25531. },
  25532. {
  25533. name: "Wolxi Scale",
  25534. height: math.unit(40, "meters"),
  25535. default: true
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(1.78, "meters"),
  25544. weight: math.unit(65, "kg"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/aki/front.svg",
  25548. extra: 452 / 415
  25549. }
  25550. },
  25551. frontNsfw: {
  25552. height: math.unit(1.78, "meters"),
  25553. weight: math.unit(65, "kg"),
  25554. name: "Front (NSFW)",
  25555. image: {
  25556. source: "./media/characters/aki/front-nsfw.svg",
  25557. extra: 452 / 415
  25558. }
  25559. },
  25560. back: {
  25561. height: math.unit(1.78, "meters"),
  25562. weight: math.unit(65, "kg"),
  25563. name: "Back",
  25564. image: {
  25565. source: "./media/characters/aki/back.svg",
  25566. extra: 452 / 415
  25567. }
  25568. },
  25569. rump: {
  25570. height: math.unit(2.05, "feet"),
  25571. name: "Rump",
  25572. image: {
  25573. source: "./media/characters/aki/rump.svg"
  25574. }
  25575. },
  25576. dick: {
  25577. height: math.unit(0.95, "feet"),
  25578. name: "Dick",
  25579. image: {
  25580. source: "./media/characters/aki/dick.svg"
  25581. }
  25582. },
  25583. },
  25584. [
  25585. {
  25586. name: "Micro",
  25587. height: math.unit(15, "cm")
  25588. },
  25589. {
  25590. name: "Normal",
  25591. height: math.unit(178, "cm"),
  25592. default: true
  25593. },
  25594. {
  25595. name: "Macro",
  25596. height: math.unit(214, "m")
  25597. },
  25598. {
  25599. name: "Macro+",
  25600. height: math.unit(534, "m")
  25601. },
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25606. {
  25607. front: {
  25608. height: math.unit(5 + 5 / 12, "feet"),
  25609. weight: math.unit(120, "lb"),
  25610. name: "Front",
  25611. image: {
  25612. source: "./media/characters/ari/front.svg",
  25613. extra: 1550/1471,
  25614. bottom: 39/1589
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(5 + 5 / 12, "feet")
  25622. },
  25623. {
  25624. name: "Macro",
  25625. height: math.unit(100, "feet"),
  25626. default: true
  25627. },
  25628. {
  25629. name: "Megamacro",
  25630. height: math.unit(100, "miles")
  25631. },
  25632. {
  25633. name: "Gigamacro",
  25634. height: math.unit(80000, "miles")
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25640. {
  25641. side: {
  25642. height: math.unit(9, "feet"),
  25643. weight: math.unit(400, "kg"),
  25644. name: "Side",
  25645. image: {
  25646. source: "./media/characters/bolt/side.svg",
  25647. extra: 1126 / 896,
  25648. bottom: 60 / 1187.3,
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Micro",
  25655. height: math.unit(5, "inches")
  25656. },
  25657. {
  25658. name: "Normal",
  25659. height: math.unit(9, "feet"),
  25660. default: true
  25661. },
  25662. {
  25663. name: "Macro",
  25664. height: math.unit(700, "feet")
  25665. },
  25666. {
  25667. name: "Max Size",
  25668. height: math.unit(1.52e22, "yottameters")
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25674. {
  25675. front: {
  25676. height: math.unit(4.3, "meters"),
  25677. weight: math.unit(3, "tons"),
  25678. name: "Front",
  25679. image: {
  25680. source: "./media/characters/draekon-sylviar/front.svg",
  25681. extra: 2072/1512,
  25682. bottom: 74/2146
  25683. }
  25684. },
  25685. back: {
  25686. height: math.unit(4.3, "meters"),
  25687. weight: math.unit(3, "tons"),
  25688. name: "Back",
  25689. image: {
  25690. source: "./media/characters/draekon-sylviar/back.svg",
  25691. extra: 1639/1483,
  25692. bottom: 41/1680
  25693. }
  25694. },
  25695. feral: {
  25696. height: math.unit(1.15, "meters"),
  25697. weight: math.unit(3, "tons"),
  25698. name: "Feral",
  25699. image: {
  25700. source: "./media/characters/draekon-sylviar/feral.svg",
  25701. extra: 1033/395,
  25702. bottom: 130/1163
  25703. }
  25704. },
  25705. maw: {
  25706. height: math.unit(1.3, "meters"),
  25707. name: "Maw",
  25708. image: {
  25709. source: "./media/characters/draekon-sylviar/maw.svg"
  25710. }
  25711. },
  25712. mawSeparated: {
  25713. height: math.unit(1.53, "meters"),
  25714. name: "Separated Maw",
  25715. image: {
  25716. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25717. }
  25718. },
  25719. tail: {
  25720. height: math.unit(1.15, "meters"),
  25721. name: "Tail",
  25722. image: {
  25723. source: "./media/characters/draekon-sylviar/tail.svg"
  25724. }
  25725. },
  25726. tailDick: {
  25727. height: math.unit(1.15, "meters"),
  25728. name: "Tail (Dick)",
  25729. image: {
  25730. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25731. }
  25732. },
  25733. tailDickSeparated: {
  25734. height: math.unit(1.19, "meters"),
  25735. name: "Tail (Separated Dick)",
  25736. image: {
  25737. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25738. }
  25739. },
  25740. slit: {
  25741. height: math.unit(1, "meters"),
  25742. name: "Slit",
  25743. image: {
  25744. source: "./media/characters/draekon-sylviar/slit.svg"
  25745. }
  25746. },
  25747. dick: {
  25748. height: math.unit(1.15, "meters"),
  25749. name: "Dick",
  25750. image: {
  25751. source: "./media/characters/draekon-sylviar/dick.svg"
  25752. }
  25753. },
  25754. dickSeparated: {
  25755. height: math.unit(1.1, "meters"),
  25756. name: "Separated Dick",
  25757. image: {
  25758. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25759. }
  25760. },
  25761. sheath: {
  25762. height: math.unit(1.15, "meters"),
  25763. name: "Sheath",
  25764. image: {
  25765. source: "./media/characters/draekon-sylviar/sheath.svg"
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Small",
  25772. height: math.unit(4.53 / 2, "meters"),
  25773. default: true
  25774. },
  25775. {
  25776. name: "Normal",
  25777. height: math.unit(4.53, "meters"),
  25778. default: true
  25779. },
  25780. {
  25781. name: "Large",
  25782. height: math.unit(4.53 * 2, "meters"),
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25788. {
  25789. front: {
  25790. height: math.unit(6 + 2 / 12, "feet"),
  25791. weight: math.unit(180, "lb"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/brawler/front.svg",
  25795. extra: 3301 / 3027,
  25796. bottom: 138 / 3439
  25797. }
  25798. },
  25799. },
  25800. [
  25801. {
  25802. name: "Normal",
  25803. height: math.unit(6 + 2 / 12, "feet"),
  25804. default: true
  25805. },
  25806. ]
  25807. ))
  25808. characterMakers.push(() => makeCharacter(
  25809. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25810. {
  25811. front: {
  25812. height: math.unit(11, "feet"),
  25813. weight: math.unit(1000, "lb"),
  25814. name: "Front",
  25815. image: {
  25816. source: "./media/characters/alex/front.svg",
  25817. bottom: 44.5 / 620
  25818. }
  25819. },
  25820. },
  25821. [
  25822. {
  25823. name: "Micro",
  25824. height: math.unit(5, "inches")
  25825. },
  25826. {
  25827. name: "Normal",
  25828. height: math.unit(11, "feet"),
  25829. default: true
  25830. },
  25831. {
  25832. name: "Macro",
  25833. height: math.unit(9.5e9, "feet")
  25834. },
  25835. {
  25836. name: "Max Size",
  25837. height: math.unit(1.4e283, "yottameters")
  25838. },
  25839. ]
  25840. ))
  25841. characterMakers.push(() => makeCharacter(
  25842. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25843. {
  25844. female: {
  25845. height: math.unit(29.9, "m"),
  25846. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25847. name: "Female",
  25848. image: {
  25849. source: "./media/characters/zenari/female.svg",
  25850. extra: 3281.6 / 3217,
  25851. bottom: 72.2 / 3353
  25852. }
  25853. },
  25854. male: {
  25855. height: math.unit(27.7, "m"),
  25856. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25857. name: "Male",
  25858. image: {
  25859. source: "./media/characters/zenari/male.svg",
  25860. extra: 3008 / 2991,
  25861. bottom: 54.6 / 3069
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Macro",
  25868. height: math.unit(29.7, "meters"),
  25869. default: true
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25875. {
  25876. female: {
  25877. height: math.unit(23.8, "m"),
  25878. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25879. name: "Female",
  25880. image: {
  25881. source: "./media/characters/mactarian/female.svg",
  25882. extra: 2662 / 2569,
  25883. bottom: 73 / 2736
  25884. }
  25885. },
  25886. male: {
  25887. height: math.unit(23.8, "m"),
  25888. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25889. name: "Male",
  25890. image: {
  25891. source: "./media/characters/mactarian/male.svg",
  25892. extra: 2673 / 2600,
  25893. bottom: 76 / 2750
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Macro",
  25900. height: math.unit(23.8, "meters"),
  25901. default: true
  25902. },
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25907. {
  25908. female: {
  25909. height: math.unit(19.3, "m"),
  25910. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25911. name: "Female",
  25912. image: {
  25913. source: "./media/characters/umok/female.svg",
  25914. extra: 2186 / 2078,
  25915. bottom: 87 / 2277
  25916. }
  25917. },
  25918. male: {
  25919. height: math.unit(19.5, "m"),
  25920. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25921. name: "Male",
  25922. image: {
  25923. source: "./media/characters/umok/male.svg",
  25924. extra: 2233 / 2140,
  25925. bottom: 24.4 / 2258
  25926. }
  25927. },
  25928. },
  25929. [
  25930. {
  25931. name: "Macro",
  25932. height: math.unit(19.3, "meters"),
  25933. default: true
  25934. },
  25935. ]
  25936. ))
  25937. characterMakers.push(() => makeCharacter(
  25938. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25939. {
  25940. female: {
  25941. height: math.unit(26.15, "m"),
  25942. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25943. name: "Female",
  25944. image: {
  25945. source: "./media/characters/joraxian/female.svg",
  25946. extra: 2912 / 2824,
  25947. bottom: 36 / 2956
  25948. }
  25949. },
  25950. male: {
  25951. height: math.unit(25.4, "m"),
  25952. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25953. name: "Male",
  25954. image: {
  25955. source: "./media/characters/joraxian/male.svg",
  25956. extra: 2877 / 2721,
  25957. bottom: 82 / 2967
  25958. }
  25959. },
  25960. },
  25961. [
  25962. {
  25963. name: "Macro",
  25964. height: math.unit(26.15, "meters"),
  25965. default: true
  25966. },
  25967. ]
  25968. ))
  25969. characterMakers.push(() => makeCharacter(
  25970. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25971. {
  25972. female: {
  25973. height: math.unit(21.6, "m"),
  25974. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25975. name: "Female",
  25976. image: {
  25977. source: "./media/characters/sthara/female.svg",
  25978. extra: 2516 / 2347,
  25979. bottom: 21.5 / 2537
  25980. }
  25981. },
  25982. male: {
  25983. height: math.unit(24, "m"),
  25984. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25985. name: "Male",
  25986. image: {
  25987. source: "./media/characters/sthara/male.svg",
  25988. extra: 2732 / 2607,
  25989. bottom: 23 / 2732
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Macro",
  25996. height: math.unit(21.6, "meters"),
  25997. default: true
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26003. {
  26004. front: {
  26005. height: math.unit(6 + 4 / 12, "feet"),
  26006. weight: math.unit(175, "lb"),
  26007. name: "Front",
  26008. image: {
  26009. source: "./media/characters/luka-bryzant/front.svg",
  26010. extra: 311 / 289,
  26011. bottom: 4 / 315
  26012. }
  26013. },
  26014. back: {
  26015. height: math.unit(6 + 4 / 12, "feet"),
  26016. weight: math.unit(175, "lb"),
  26017. name: "Back",
  26018. image: {
  26019. source: "./media/characters/luka-bryzant/back.svg",
  26020. extra: 311 / 289,
  26021. bottom: 3.8 / 313.7
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Micro",
  26028. height: math.unit(10, "inches")
  26029. },
  26030. {
  26031. name: "Normal",
  26032. height: math.unit(6 + 4 / 12, "feet"),
  26033. default: true
  26034. },
  26035. {
  26036. name: "Large",
  26037. height: math.unit(12, "feet")
  26038. },
  26039. ]
  26040. ))
  26041. characterMakers.push(() => makeCharacter(
  26042. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26043. {
  26044. front: {
  26045. height: math.unit(5 + 7 / 12, "feet"),
  26046. weight: math.unit(185, "lb"),
  26047. name: "Front",
  26048. image: {
  26049. source: "./media/characters/aman-aquila/front.svg",
  26050. extra: 1013 / 976,
  26051. bottom: 45.6 / 1057
  26052. }
  26053. },
  26054. side: {
  26055. height: math.unit(5 + 7 / 12, "feet"),
  26056. weight: math.unit(185, "lb"),
  26057. name: "Side",
  26058. image: {
  26059. source: "./media/characters/aman-aquila/side.svg",
  26060. extra: 1054 / 1011,
  26061. bottom: 15 / 1070
  26062. }
  26063. },
  26064. back: {
  26065. height: math.unit(5 + 7 / 12, "feet"),
  26066. weight: math.unit(185, "lb"),
  26067. name: "Back",
  26068. image: {
  26069. source: "./media/characters/aman-aquila/back.svg",
  26070. extra: 1026 / 970,
  26071. bottom: 12 / 1039
  26072. }
  26073. },
  26074. head: {
  26075. height: math.unit(1.211, "feet"),
  26076. name: "Head",
  26077. image: {
  26078. source: "./media/characters/aman-aquila/head.svg",
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Minimicro",
  26085. height: math.unit(0.057, "inches")
  26086. },
  26087. {
  26088. name: "Micro",
  26089. height: math.unit(7, "inches")
  26090. },
  26091. {
  26092. name: "Mini",
  26093. height: math.unit(3 + 7 / 12, "feet")
  26094. },
  26095. {
  26096. name: "Normal",
  26097. height: math.unit(5 + 7 / 12, "feet"),
  26098. default: true
  26099. },
  26100. {
  26101. name: "Macro",
  26102. height: math.unit(157 + 7 / 12, "feet")
  26103. },
  26104. {
  26105. name: "Megamacro",
  26106. height: math.unit(1557 + 7 / 12, "feet")
  26107. },
  26108. {
  26109. name: "Gigamacro",
  26110. height: math.unit(15557 + 7 / 12, "feet")
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26116. {
  26117. front: {
  26118. height: math.unit(3 + 2 / 12, "inches"),
  26119. weight: math.unit(0.3, "ounces"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/hiphae/front.svg",
  26123. extra: 1931 / 1683,
  26124. bottom: 24 / 1955
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(3 + 1 / 2, "inches"),
  26132. default: true
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26138. {
  26139. front: {
  26140. height: math.unit(5 + 10 / 12, "feet"),
  26141. weight: math.unit(165, "lb"),
  26142. name: "Front",
  26143. image: {
  26144. source: "./media/characters/nicky/front.svg",
  26145. extra: 3144 / 2886,
  26146. bottom: 45.6 / 3192
  26147. }
  26148. },
  26149. back: {
  26150. height: math.unit(5 + 10 / 12, "feet"),
  26151. weight: math.unit(165, "lb"),
  26152. name: "Back",
  26153. image: {
  26154. source: "./media/characters/nicky/back.svg",
  26155. extra: 3055 / 2804,
  26156. bottom: 28.4 / 3087
  26157. }
  26158. },
  26159. frontclothed: {
  26160. height: math.unit(5 + 10 / 12, "feet"),
  26161. weight: math.unit(165, "lb"),
  26162. name: "Front-clothed",
  26163. image: {
  26164. source: "./media/characters/nicky/front-clothed.svg",
  26165. extra: 3184.9 / 2926.9,
  26166. bottom: 86.5 / 3239.9
  26167. }
  26168. },
  26169. foot: {
  26170. height: math.unit(1.16, "feet"),
  26171. name: "Foot",
  26172. image: {
  26173. source: "./media/characters/nicky/foot.svg"
  26174. }
  26175. },
  26176. feet: {
  26177. height: math.unit(1.34, "feet"),
  26178. name: "Feet",
  26179. image: {
  26180. source: "./media/characters/nicky/feet.svg"
  26181. }
  26182. },
  26183. maw: {
  26184. height: math.unit(0.9, "feet"),
  26185. name: "Maw",
  26186. image: {
  26187. source: "./media/characters/nicky/maw.svg"
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(5 + 10 / 12, "feet"),
  26195. default: true
  26196. },
  26197. {
  26198. name: "Macro",
  26199. height: math.unit(60, "feet")
  26200. },
  26201. {
  26202. name: "Megamacro",
  26203. height: math.unit(1, "mile")
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26209. {
  26210. side: {
  26211. height: math.unit(10, "feet"),
  26212. weight: math.unit(600, "lb"),
  26213. name: "Side",
  26214. image: {
  26215. source: "./media/characters/blair/side.svg",
  26216. bottom: 16.6 / 475,
  26217. extra: 458 / 431
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Micro",
  26224. height: math.unit(8, "inches")
  26225. },
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(10, "feet"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(180, "feet")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(5 + 4 / 12, "feet"),
  26242. weight: math.unit(125, "lb"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/fisher/front.svg",
  26246. extra: 444 / 390,
  26247. bottom: 2 / 444.8
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Micro",
  26254. height: math.unit(4, "inches")
  26255. },
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(5 + 4 / 12, "feet"),
  26259. default: true
  26260. },
  26261. {
  26262. name: "Macro",
  26263. height: math.unit(100, "feet")
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(6.71, "feet"),
  26272. weight: math.unit(200, "lb"),
  26273. preyCapacity: math.unit(1000000, "people"),
  26274. name: "Front",
  26275. image: {
  26276. source: "./media/characters/gliss/front.svg",
  26277. extra: 2347 / 2231,
  26278. bottom: 113 / 2462
  26279. }
  26280. },
  26281. hammerspaceSize: {
  26282. height: math.unit(6.71 * 717, "feet"),
  26283. weight: math.unit(200, "lb"),
  26284. preyCapacity: math.unit(1000000, "people"),
  26285. name: "Hammerspace Size",
  26286. image: {
  26287. source: "./media/characters/gliss/front.svg",
  26288. extra: 2347 / 2231,
  26289. bottom: 113 / 2462
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(6.71, "feet"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26303. {
  26304. side: {
  26305. height: math.unit(1.44, "m"),
  26306. weight: math.unit(80, "kg"),
  26307. name: "Side",
  26308. image: {
  26309. source: "./media/characters/dune-anderson/side.svg",
  26310. bottom: 49 / 1426
  26311. }
  26312. },
  26313. },
  26314. [
  26315. {
  26316. name: "Wolf-sized",
  26317. height: math.unit(1.44, "meters")
  26318. },
  26319. {
  26320. name: "Normal",
  26321. height: math.unit(5.05, "meters"),
  26322. default: true
  26323. },
  26324. {
  26325. name: "Big",
  26326. height: math.unit(14.4, "meters")
  26327. },
  26328. {
  26329. name: "Huge",
  26330. height: math.unit(144, "meters")
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(7, "feet"),
  26339. weight: math.unit(425, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/hind/front.svg",
  26343. extra: 2091 / 1860,
  26344. bottom: 129 / 2220
  26345. }
  26346. },
  26347. back: {
  26348. height: math.unit(7, "feet"),
  26349. weight: math.unit(425, "lb"),
  26350. name: "Back",
  26351. image: {
  26352. source: "./media/characters/hind/back.svg",
  26353. extra: 2091 / 1860,
  26354. bottom: 24.6 / 2309
  26355. }
  26356. },
  26357. tail: {
  26358. height: math.unit(2.8, "feet"),
  26359. name: "Tail",
  26360. image: {
  26361. source: "./media/characters/hind/tail.svg"
  26362. }
  26363. },
  26364. head: {
  26365. height: math.unit(2.55, "feet"),
  26366. name: "Head",
  26367. image: {
  26368. source: "./media/characters/hind/head.svg"
  26369. }
  26370. },
  26371. },
  26372. [
  26373. {
  26374. name: "XS",
  26375. height: math.unit(0.7, "feet")
  26376. },
  26377. {
  26378. name: "Normal",
  26379. height: math.unit(7, "feet"),
  26380. default: true
  26381. },
  26382. {
  26383. name: "XL",
  26384. height: math.unit(70, "feet")
  26385. },
  26386. ]
  26387. ))
  26388. characterMakers.push(() => makeCharacter(
  26389. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26390. {
  26391. front: {
  26392. height: math.unit(2.1, "meters"),
  26393. weight: math.unit(150, "lb"),
  26394. name: "Front",
  26395. image: {
  26396. source: "./media/characters/tharquench-sizestealer/front.svg",
  26397. extra: 1605/1470,
  26398. bottom: 36/1641
  26399. }
  26400. },
  26401. frontAlt: {
  26402. height: math.unit(2.1, "meters"),
  26403. weight: math.unit(150, "lb"),
  26404. name: "Front (Alt)",
  26405. image: {
  26406. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26407. extra: 2318 / 2063,
  26408. bottom: 93.4 / 2410
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Nano",
  26415. height: math.unit(1, "mm")
  26416. },
  26417. {
  26418. name: "Micro",
  26419. height: math.unit(1, "cm")
  26420. },
  26421. {
  26422. name: "Normal",
  26423. height: math.unit(2.1, "meters"),
  26424. default: true
  26425. },
  26426. ]
  26427. ))
  26428. characterMakers.push(() => makeCharacter(
  26429. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26430. {
  26431. front: {
  26432. height: math.unit(7 + 5 / 12, "feet"),
  26433. weight: math.unit(357, "lb"),
  26434. name: "Front",
  26435. image: {
  26436. source: "./media/characters/solex-draconov/front.svg",
  26437. extra: 1993 / 1865,
  26438. bottom: 117 / 2111
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Natural Height",
  26445. height: math.unit(7 + 5 / 12, "feet"),
  26446. default: true
  26447. },
  26448. {
  26449. name: "Macro",
  26450. height: math.unit(350, "feet")
  26451. },
  26452. {
  26453. name: "Macro+",
  26454. height: math.unit(1000, "feet")
  26455. },
  26456. {
  26457. name: "Megamacro",
  26458. height: math.unit(20, "km")
  26459. },
  26460. {
  26461. name: "Megamacro+",
  26462. height: math.unit(1000, "km")
  26463. },
  26464. {
  26465. name: "Gigamacro",
  26466. height: math.unit(2.5, "Gm")
  26467. },
  26468. {
  26469. name: "Teramacro",
  26470. height: math.unit(15, "Tm")
  26471. },
  26472. {
  26473. name: "Galactic",
  26474. height: math.unit(30, "Zm")
  26475. },
  26476. {
  26477. name: "Universal",
  26478. height: math.unit(21000, "Ym")
  26479. },
  26480. {
  26481. name: "Omniversal",
  26482. height: math.unit(9.861e50, "Ym")
  26483. },
  26484. {
  26485. name: "Existential",
  26486. height: math.unit(1e300, "meters")
  26487. },
  26488. ]
  26489. ))
  26490. characterMakers.push(() => makeCharacter(
  26491. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26492. {
  26493. side: {
  26494. height: math.unit(25, "feet"),
  26495. weight: math.unit(90000, "lb"),
  26496. name: "Side",
  26497. image: {
  26498. source: "./media/characters/mandarax/side.svg",
  26499. extra: 614 / 332,
  26500. bottom: 55 / 630
  26501. }
  26502. },
  26503. lounging: {
  26504. height: math.unit(15.4, "feet"),
  26505. weight: math.unit(90000, "lb"),
  26506. name: "Lounging",
  26507. image: {
  26508. source: "./media/characters/mandarax/lounging.svg",
  26509. extra: 817/609,
  26510. bottom: 685/1502
  26511. }
  26512. },
  26513. head: {
  26514. height: math.unit(11.4, "feet"),
  26515. name: "Head",
  26516. image: {
  26517. source: "./media/characters/mandarax/head.svg"
  26518. }
  26519. },
  26520. belly: {
  26521. height: math.unit(33, "feet"),
  26522. name: "Belly",
  26523. preyCapacity: math.unit(500, "people"),
  26524. image: {
  26525. source: "./media/characters/mandarax/belly.svg"
  26526. }
  26527. },
  26528. dick: {
  26529. height: math.unit(8.46, "feet"),
  26530. name: "Dick",
  26531. image: {
  26532. source: "./media/characters/mandarax/dick.svg"
  26533. }
  26534. },
  26535. top: {
  26536. height: math.unit(28, "meters"),
  26537. name: "Top",
  26538. image: {
  26539. source: "./media/characters/mandarax/top.svg"
  26540. }
  26541. },
  26542. },
  26543. [
  26544. {
  26545. name: "Normal",
  26546. height: math.unit(25, "feet"),
  26547. default: true
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26553. {
  26554. front: {
  26555. height: math.unit(5, "feet"),
  26556. weight: math.unit(90, "lb"),
  26557. name: "Front",
  26558. image: {
  26559. source: "./media/characters/pixil/front.svg",
  26560. extra: 2000 / 1618,
  26561. bottom: 12.3 / 2011
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(5, "feet"),
  26569. default: true
  26570. },
  26571. {
  26572. name: "Megamacro",
  26573. height: math.unit(10, "miles"),
  26574. },
  26575. ]
  26576. ))
  26577. characterMakers.push(() => makeCharacter(
  26578. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26579. {
  26580. front: {
  26581. height: math.unit(7 + 2 / 12, "feet"),
  26582. weight: math.unit(200, "lb"),
  26583. name: "Front",
  26584. image: {
  26585. source: "./media/characters/angel/front.svg",
  26586. extra: 1830 / 1737,
  26587. bottom: 22.6 / 1854,
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Normal",
  26594. height: math.unit(7 + 2 / 12, "feet"),
  26595. default: true
  26596. },
  26597. {
  26598. name: "Macro",
  26599. height: math.unit(1000, "feet")
  26600. },
  26601. {
  26602. name: "Megamacro",
  26603. height: math.unit(2, "miles")
  26604. },
  26605. {
  26606. name: "Gigamacro",
  26607. height: math.unit(20, "earths")
  26608. },
  26609. ]
  26610. ))
  26611. characterMakers.push(() => makeCharacter(
  26612. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26613. {
  26614. front: {
  26615. height: math.unit(5, "feet"),
  26616. weight: math.unit(180, "lb"),
  26617. name: "Front",
  26618. image: {
  26619. source: "./media/characters/mekana/front.svg",
  26620. extra: 1671 / 1605,
  26621. bottom: 3.5 / 1691
  26622. }
  26623. },
  26624. side: {
  26625. height: math.unit(5, "feet"),
  26626. weight: math.unit(180, "lb"),
  26627. name: "Side",
  26628. image: {
  26629. source: "./media/characters/mekana/side.svg",
  26630. extra: 1671 / 1605,
  26631. bottom: 3.5 / 1691
  26632. }
  26633. },
  26634. back: {
  26635. height: math.unit(5, "feet"),
  26636. weight: math.unit(180, "lb"),
  26637. name: "Back",
  26638. image: {
  26639. source: "./media/characters/mekana/back.svg",
  26640. extra: 1671 / 1605,
  26641. bottom: 3.5 / 1691
  26642. }
  26643. },
  26644. },
  26645. [
  26646. {
  26647. name: "Normal",
  26648. height: math.unit(5, "feet"),
  26649. default: true
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(4 + 6 / 12, "feet"),
  26658. weight: math.unit(80, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/pixie/front.svg",
  26662. extra: 1924 / 1825,
  26663. bottom: 22.4 / 1946
  26664. }
  26665. },
  26666. },
  26667. [
  26668. {
  26669. name: "Normal",
  26670. height: math.unit(4 + 6 / 12, "feet"),
  26671. default: true
  26672. },
  26673. {
  26674. name: "Macro",
  26675. height: math.unit(40, "feet")
  26676. },
  26677. ]
  26678. ))
  26679. characterMakers.push(() => makeCharacter(
  26680. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26681. {
  26682. front: {
  26683. height: math.unit(2.1, "meters"),
  26684. weight: math.unit(200, "lb"),
  26685. name: "Front",
  26686. image: {
  26687. source: "./media/characters/the-lascivious/front.svg",
  26688. extra: 1 / 0.893,
  26689. bottom: 3.5 / 573.7
  26690. }
  26691. },
  26692. },
  26693. [
  26694. {
  26695. name: "Human Scale",
  26696. height: math.unit(2.1, "meters")
  26697. },
  26698. {
  26699. name: "Wolxi Scale",
  26700. height: math.unit(46.2, "m"),
  26701. default: true
  26702. },
  26703. {
  26704. name: "Boinker of Buildings",
  26705. height: math.unit(10, "km")
  26706. },
  26707. {
  26708. name: "Shagger of Skyscrapers",
  26709. height: math.unit(40, "km")
  26710. },
  26711. {
  26712. name: "Banger of Boroughs",
  26713. height: math.unit(4000, "km")
  26714. },
  26715. {
  26716. name: "Screwer of States",
  26717. height: math.unit(100000, "km")
  26718. },
  26719. {
  26720. name: "Pounder of Planets",
  26721. height: math.unit(2000000, "km")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(6, "feet"),
  26730. weight: math.unit(150, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/aj/front.svg",
  26734. extra: 2039 / 1562,
  26735. bottom: 40 / 2079
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Normal",
  26742. height: math.unit(11 + 6 / 12, "feet"),
  26743. default: true
  26744. },
  26745. {
  26746. name: "Megamacro",
  26747. height: math.unit(60, "megameters")
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26753. {
  26754. side: {
  26755. height: math.unit(31 + 8 / 12, "feet"),
  26756. weight: math.unit(75000, "kg"),
  26757. name: "Side",
  26758. image: {
  26759. source: "./media/characters/koros/side.svg",
  26760. extra: 1442 / 1297,
  26761. bottom: 122.7 / 1562
  26762. }
  26763. },
  26764. dicksKingsCrown: {
  26765. height: math.unit(6, "feet"),
  26766. name: "Dicks (King's Crown)",
  26767. image: {
  26768. source: "./media/characters/koros/dicks-kings-crown.svg"
  26769. }
  26770. },
  26771. dicksTailSet: {
  26772. height: math.unit(3, "feet"),
  26773. name: "Dicks (Tail Set)",
  26774. image: {
  26775. source: "./media/characters/koros/dicks-tail-set.svg"
  26776. }
  26777. },
  26778. dickCumming: {
  26779. height: math.unit(7.98, "feet"),
  26780. name: "Dick (Cumming)",
  26781. image: {
  26782. source: "./media/characters/koros/dick-cumming.svg"
  26783. }
  26784. },
  26785. dicksBack: {
  26786. height: math.unit(5.9, "feet"),
  26787. name: "Dicks (Back)",
  26788. image: {
  26789. source: "./media/characters/koros/dicks-back.svg"
  26790. }
  26791. },
  26792. dicksFront: {
  26793. height: math.unit(3.72, "feet"),
  26794. name: "Dicks (Front)",
  26795. image: {
  26796. source: "./media/characters/koros/dicks-front.svg"
  26797. }
  26798. },
  26799. dicksPeeking: {
  26800. height: math.unit(3.0, "feet"),
  26801. name: "Dicks (Peeking)",
  26802. image: {
  26803. source: "./media/characters/koros/dicks-peeking.svg"
  26804. }
  26805. },
  26806. eye: {
  26807. height: math.unit(1.7, "feet"),
  26808. name: "Eye",
  26809. image: {
  26810. source: "./media/characters/koros/eye.svg"
  26811. }
  26812. },
  26813. headFront: {
  26814. height: math.unit(11.69, "feet"),
  26815. name: "Head (Front)",
  26816. image: {
  26817. source: "./media/characters/koros/head-front.svg"
  26818. }
  26819. },
  26820. headSide: {
  26821. height: math.unit(14, "feet"),
  26822. name: "Head (Side)",
  26823. image: {
  26824. source: "./media/characters/koros/head-side.svg"
  26825. }
  26826. },
  26827. leg: {
  26828. height: math.unit(17, "feet"),
  26829. name: "Leg",
  26830. image: {
  26831. source: "./media/characters/koros/leg.svg"
  26832. }
  26833. },
  26834. mawSide: {
  26835. height: math.unit(12.8, "feet"),
  26836. name: "Maw (Side)",
  26837. image: {
  26838. source: "./media/characters/koros/maw-side.svg"
  26839. }
  26840. },
  26841. mawSpitting: {
  26842. height: math.unit(17, "feet"),
  26843. name: "Maw (Spitting)",
  26844. image: {
  26845. source: "./media/characters/koros/maw-spitting.svg"
  26846. }
  26847. },
  26848. slit: {
  26849. height: math.unit(2.8, "feet"),
  26850. name: "Slit",
  26851. image: {
  26852. source: "./media/characters/koros/slit.svg"
  26853. }
  26854. },
  26855. stomach: {
  26856. height: math.unit(6.8, "feet"),
  26857. preyCapacity: math.unit(20, "people"),
  26858. name: "Stomach",
  26859. image: {
  26860. source: "./media/characters/koros/stomach.svg"
  26861. }
  26862. },
  26863. wingspanBottom: {
  26864. height: math.unit(114, "feet"),
  26865. name: "Wingspan (Bottom)",
  26866. image: {
  26867. source: "./media/characters/koros/wingspan-bottom.svg"
  26868. }
  26869. },
  26870. wingspanTop: {
  26871. height: math.unit(104, "feet"),
  26872. name: "Wingspan (Top)",
  26873. image: {
  26874. source: "./media/characters/koros/wingspan-top.svg"
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(31 + 8 / 12, "feet"),
  26882. default: true
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(18 + 5 / 12, "feet"),
  26891. weight: math.unit(3750, "kg"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/vexx/front.svg",
  26895. extra: 426 / 396,
  26896. bottom: 31.5 / 458
  26897. }
  26898. },
  26899. maw: {
  26900. height: math.unit(6, "feet"),
  26901. name: "Maw",
  26902. image: {
  26903. source: "./media/characters/vexx/maw.svg"
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(18 + 5 / 12, "feet"),
  26911. default: true
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26917. {
  26918. front: {
  26919. height: math.unit(17 + 6 / 12, "feet"),
  26920. weight: math.unit(150, "lb"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/baadra/front.svg",
  26924. extra: 1694/1553,
  26925. bottom: 179/1873
  26926. }
  26927. },
  26928. frontAlt: {
  26929. height: math.unit(17 + 6 / 12, "feet"),
  26930. weight: math.unit(150, "lb"),
  26931. name: "Front (Alt)",
  26932. image: {
  26933. source: "./media/characters/baadra/front-alt.svg",
  26934. extra: 3137 / 2890,
  26935. bottom: 168.4 / 3305
  26936. }
  26937. },
  26938. back: {
  26939. height: math.unit(17 + 6 / 12, "feet"),
  26940. weight: math.unit(150, "lb"),
  26941. name: "Back",
  26942. image: {
  26943. source: "./media/characters/baadra/back.svg",
  26944. extra: 3142 / 2890,
  26945. bottom: 220 / 3371
  26946. }
  26947. },
  26948. head: {
  26949. height: math.unit(5.45, "feet"),
  26950. name: "Head",
  26951. image: {
  26952. source: "./media/characters/baadra/head.svg"
  26953. }
  26954. },
  26955. headAngry: {
  26956. height: math.unit(4.95, "feet"),
  26957. name: "Head (Angry)",
  26958. image: {
  26959. source: "./media/characters/baadra/head-angry.svg"
  26960. }
  26961. },
  26962. headOpen: {
  26963. height: math.unit(6, "feet"),
  26964. name: "Head (Open)",
  26965. image: {
  26966. source: "./media/characters/baadra/head-open.svg"
  26967. }
  26968. },
  26969. },
  26970. [
  26971. {
  26972. name: "Normal",
  26973. height: math.unit(17 + 6 / 12, "feet"),
  26974. default: true
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(7 + 3 / 12, "feet"),
  26983. weight: math.unit(180, "lb"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/juri/front.svg",
  26987. extra: 1401 / 1237,
  26988. bottom: 18.5 / 1418
  26989. }
  26990. },
  26991. side: {
  26992. height: math.unit(7 + 3 / 12, "feet"),
  26993. weight: math.unit(180, "lb"),
  26994. name: "Side",
  26995. image: {
  26996. source: "./media/characters/juri/side.svg",
  26997. extra: 1424 / 1242,
  26998. bottom: 18.5 / 1447
  26999. }
  27000. },
  27001. sitting: {
  27002. height: math.unit(6, "feet"),
  27003. weight: math.unit(180, "lb"),
  27004. name: "Sitting",
  27005. image: {
  27006. source: "./media/characters/juri/sitting.svg",
  27007. extra: 1270 / 1143,
  27008. bottom: 100 / 1343
  27009. }
  27010. },
  27011. back: {
  27012. height: math.unit(7 + 3 / 12, "feet"),
  27013. weight: math.unit(180, "lb"),
  27014. name: "Back",
  27015. image: {
  27016. source: "./media/characters/juri/back.svg",
  27017. extra: 1377 / 1240,
  27018. bottom: 23.7 / 1405
  27019. }
  27020. },
  27021. maw: {
  27022. height: math.unit(2.8, "feet"),
  27023. name: "Maw",
  27024. image: {
  27025. source: "./media/characters/juri/maw.svg"
  27026. }
  27027. },
  27028. stomach: {
  27029. height: math.unit(0.89, "feet"),
  27030. preyCapacity: math.unit(4, "liters"),
  27031. name: "Stomach",
  27032. image: {
  27033. source: "./media/characters/juri/stomach.svg"
  27034. }
  27035. },
  27036. },
  27037. [
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(7 + 3 / 12, "feet"),
  27041. default: true
  27042. },
  27043. ]
  27044. ))
  27045. characterMakers.push(() => makeCharacter(
  27046. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27047. {
  27048. fox: {
  27049. height: math.unit(5 + 6 / 12, "feet"),
  27050. weight: math.unit(140, "lb"),
  27051. name: "Fox",
  27052. image: {
  27053. source: "./media/characters/maxene-sita/fox.svg",
  27054. extra: 146 / 138,
  27055. bottom: 2.1 / 148.19
  27056. }
  27057. },
  27058. foxLaying: {
  27059. height: math.unit(1.70, "feet"),
  27060. weight: math.unit(140, "lb"),
  27061. name: "Fox (Laying)",
  27062. image: {
  27063. source: "./media/characters/maxene-sita/fox-laying.svg",
  27064. extra: 910 / 572,
  27065. bottom: 71 / 981
  27066. }
  27067. },
  27068. kitsune: {
  27069. height: math.unit(10, "feet"),
  27070. weight: math.unit(800, "lb"),
  27071. name: "Kitsune",
  27072. image: {
  27073. source: "./media/characters/maxene-sita/kitsune.svg",
  27074. extra: 185 / 176,
  27075. bottom: 4.7 / 189.9
  27076. }
  27077. },
  27078. hellhound: {
  27079. height: math.unit(10, "feet"),
  27080. weight: math.unit(700, "lb"),
  27081. name: "Hellhound",
  27082. image: {
  27083. source: "./media/characters/maxene-sita/hellhound.svg",
  27084. extra: 1600 / 1545,
  27085. bottom: 81 / 1681
  27086. }
  27087. },
  27088. },
  27089. [
  27090. {
  27091. name: "Normal",
  27092. height: math.unit(5 + 6 / 12, "feet"),
  27093. default: true
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27099. {
  27100. front: {
  27101. height: math.unit(3 + 4 / 12, "feet"),
  27102. weight: math.unit(70, "lb"),
  27103. name: "Front",
  27104. image: {
  27105. source: "./media/characters/maia/front.svg",
  27106. extra: 227 / 219.5,
  27107. bottom: 40 / 267
  27108. }
  27109. },
  27110. back: {
  27111. height: math.unit(3 + 4 / 12, "feet"),
  27112. weight: math.unit(70, "lb"),
  27113. name: "Back",
  27114. image: {
  27115. source: "./media/characters/maia/back.svg",
  27116. extra: 237 / 225
  27117. }
  27118. },
  27119. },
  27120. [
  27121. {
  27122. name: "Normal",
  27123. height: math.unit(3 + 4 / 12, "feet"),
  27124. default: true
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(5 + 10 / 12, "feet"),
  27133. weight: math.unit(197, "lb"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/jabaro/front.svg",
  27137. extra: 225 / 216,
  27138. bottom: 5.06 / 230
  27139. }
  27140. },
  27141. back: {
  27142. height: math.unit(5 + 10 / 12, "feet"),
  27143. weight: math.unit(197, "lb"),
  27144. name: "Back",
  27145. image: {
  27146. source: "./media/characters/jabaro/back.svg",
  27147. extra: 225 / 219,
  27148. bottom: 1.9 / 227
  27149. }
  27150. },
  27151. },
  27152. [
  27153. {
  27154. name: "Normal",
  27155. height: math.unit(5 + 10 / 12, "feet"),
  27156. default: true
  27157. },
  27158. ]
  27159. ))
  27160. characterMakers.push(() => makeCharacter(
  27161. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27162. {
  27163. front: {
  27164. height: math.unit(5 + 8 / 12, "feet"),
  27165. weight: math.unit(139, "lb"),
  27166. name: "Front",
  27167. image: {
  27168. source: "./media/characters/risa/front.svg",
  27169. extra: 270 / 260,
  27170. bottom: 11.2 / 282
  27171. }
  27172. },
  27173. back: {
  27174. height: math.unit(5 + 8 / 12, "feet"),
  27175. weight: math.unit(139, "lb"),
  27176. name: "Back",
  27177. image: {
  27178. source: "./media/characters/risa/back.svg",
  27179. extra: 264 / 255,
  27180. bottom: 4 / 268
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(5 + 8 / 12, "feet"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(2 + 11 / 12, "feet"),
  27197. weight: math.unit(30, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/weatley/front.svg",
  27201. bottom: 10.7 / 414,
  27202. extra: 403.5 / 362
  27203. }
  27204. },
  27205. back: {
  27206. height: math.unit(2 + 11 / 12, "feet"),
  27207. weight: math.unit(30, "lb"),
  27208. name: "Back",
  27209. image: {
  27210. source: "./media/characters/weatley/back.svg",
  27211. bottom: 10.7 / 414,
  27212. extra: 403.5 / 362
  27213. }
  27214. },
  27215. },
  27216. [
  27217. {
  27218. name: "Normal",
  27219. height: math.unit(2 + 11 / 12, "feet"),
  27220. default: true
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27226. {
  27227. front: {
  27228. height: math.unit(5 + 2 / 12, "feet"),
  27229. weight: math.unit(50, "kg"),
  27230. name: "Front",
  27231. image: {
  27232. source: "./media/characters/mercury-crescent/front.svg",
  27233. extra: 1088 / 1033,
  27234. bottom: 18.9 / 1109
  27235. }
  27236. },
  27237. },
  27238. [
  27239. {
  27240. name: "Normal",
  27241. height: math.unit(5 + 2 / 12, "feet"),
  27242. default: true
  27243. },
  27244. ]
  27245. ))
  27246. characterMakers.push(() => makeCharacter(
  27247. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27248. {
  27249. front: {
  27250. height: math.unit(2, "feet"),
  27251. weight: math.unit(15, "kg"),
  27252. name: "Front",
  27253. image: {
  27254. source: "./media/characters/diamond-jones/front.svg",
  27255. extra: 727/723,
  27256. bottom: 46/773
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Normal",
  27263. height: math.unit(2, "feet"),
  27264. default: true
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(3, "feet"),
  27273. weight: math.unit(30, "kg"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/sweet-bit/front.svg",
  27277. extra: 675 / 567,
  27278. bottom: 27.7 / 703
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(3, "feet"),
  27286. default: true
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27292. {
  27293. side: {
  27294. height: math.unit(9.178, "feet"),
  27295. weight: math.unit(500, "lb"),
  27296. name: "Side",
  27297. image: {
  27298. source: "./media/characters/umbrazen/side.svg",
  27299. extra: 1730 / 1473,
  27300. bottom: 34.6 / 1765
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(9.178, "feet"),
  27308. default: true
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27314. {
  27315. front: {
  27316. height: math.unit(10, "feet"),
  27317. weight: math.unit(750, "lb"),
  27318. name: "Front",
  27319. image: {
  27320. source: "./media/characters/arlist/front.svg",
  27321. extra: 961 / 778,
  27322. bottom: 6.2 / 986
  27323. }
  27324. },
  27325. },
  27326. [
  27327. {
  27328. name: "Normal",
  27329. height: math.unit(10, "feet"),
  27330. default: true
  27331. },
  27332. ]
  27333. ))
  27334. characterMakers.push(() => makeCharacter(
  27335. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27336. {
  27337. front: {
  27338. height: math.unit(5 + 1 / 12, "feet"),
  27339. weight: math.unit(110, "lb"),
  27340. name: "Front",
  27341. image: {
  27342. source: "./media/characters/aradel/front.svg",
  27343. extra: 324 / 303,
  27344. bottom: 3.6 / 329.4
  27345. }
  27346. },
  27347. },
  27348. [
  27349. {
  27350. name: "Normal",
  27351. height: math.unit(5 + 1 / 12, "feet"),
  27352. default: true
  27353. },
  27354. ]
  27355. ))
  27356. characterMakers.push(() => makeCharacter(
  27357. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27358. {
  27359. dressed: {
  27360. height: math.unit(3 + 8 / 12, "feet"),
  27361. weight: math.unit(50, "lb"),
  27362. name: "Dressed",
  27363. image: {
  27364. source: "./media/characters/serryn/dressed.svg",
  27365. extra: 1792 / 1656,
  27366. bottom: 43.5 / 1840
  27367. }
  27368. },
  27369. nude: {
  27370. height: math.unit(3 + 8 / 12, "feet"),
  27371. weight: math.unit(50, "lb"),
  27372. name: "Nude",
  27373. image: {
  27374. source: "./media/characters/serryn/nude.svg",
  27375. extra: 1792 / 1656,
  27376. bottom: 43.5 / 1840
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Normal",
  27383. height: math.unit(3 + 8 / 12, "feet"),
  27384. default: true
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27390. {
  27391. front: {
  27392. height: math.unit(7 + 10 / 12, "feet"),
  27393. weight: math.unit(255, "lb"),
  27394. name: "Front",
  27395. image: {
  27396. source: "./media/characters/xavier-thyme/front.svg",
  27397. extra: 3733 / 3642,
  27398. bottom: 131 / 3869
  27399. }
  27400. },
  27401. frontRaven: {
  27402. height: math.unit(7 + 10 / 12, "feet"),
  27403. weight: math.unit(255, "lb"),
  27404. name: "Front (Raven)",
  27405. image: {
  27406. source: "./media/characters/xavier-thyme/front-raven.svg",
  27407. extra: 4385 / 3642,
  27408. bottom: 131 / 4517
  27409. }
  27410. },
  27411. },
  27412. [
  27413. {
  27414. name: "Normal",
  27415. height: math.unit(7 + 10 / 12, "feet"),
  27416. default: true
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27422. {
  27423. front: {
  27424. height: math.unit(1.6, "m"),
  27425. weight: math.unit(50, "kg"),
  27426. name: "Front",
  27427. image: {
  27428. source: "./media/characters/kiki/front.svg",
  27429. extra: 4682 / 3610,
  27430. bottom: 115 / 4777
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(1.6, "meters"),
  27438. default: true
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(50, "m"),
  27447. weight: math.unit(500, "tonnes"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/ryoko/front.svg",
  27451. extra: 4632 / 3926,
  27452. bottom: 193 / 4823
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(50, "meters"),
  27460. default: true
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(30, "m"),
  27469. weight: math.unit(22, "tonnes"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/elio/front.svg",
  27473. extra: 4582 / 3720,
  27474. bottom: 236 / 4828
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Normal",
  27481. height: math.unit(30, "meters"),
  27482. default: true
  27483. },
  27484. ]
  27485. ))
  27486. characterMakers.push(() => makeCharacter(
  27487. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27488. {
  27489. front: {
  27490. height: math.unit(6 + 3 / 12, "feet"),
  27491. weight: math.unit(120, "lb"),
  27492. name: "Front",
  27493. image: {
  27494. source: "./media/characters/azura/front.svg",
  27495. extra: 1149 / 1135,
  27496. bottom: 45 / 1194
  27497. }
  27498. },
  27499. frontClothed: {
  27500. height: math.unit(6 + 3 / 12, "feet"),
  27501. weight: math.unit(120, "lb"),
  27502. name: "Front (Clothed)",
  27503. image: {
  27504. source: "./media/characters/azura/front-clothed.svg",
  27505. extra: 1149 / 1135,
  27506. bottom: 45 / 1194
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(6 + 3 / 12, "feet"),
  27514. default: true
  27515. },
  27516. {
  27517. name: "Macro",
  27518. height: math.unit(20 + 6 / 12, "feet")
  27519. },
  27520. {
  27521. name: "Megamacro",
  27522. height: math.unit(12, "miles")
  27523. },
  27524. {
  27525. name: "Gigamacro",
  27526. height: math.unit(10000, "miles")
  27527. },
  27528. {
  27529. name: "Teramacro",
  27530. height: math.unit(900000, "miles")
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(12, "feet"),
  27539. weight: math.unit(1, "ton"),
  27540. capacity: math.unit(660000, "gallons"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/zeus/front.svg",
  27544. extra: 5005 / 4717,
  27545. bottom: 363 / 5388
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(12, "feet")
  27553. },
  27554. {
  27555. name: "Preferred Size",
  27556. height: math.unit(0.5, "miles"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Giga Horse",
  27561. height: math.unit(300, "miles")
  27562. },
  27563. {
  27564. name: "Riding Planets",
  27565. height: math.unit(30, "megameters")
  27566. },
  27567. {
  27568. name: "Cosmic Giant",
  27569. height: math.unit(3, "zettameters")
  27570. },
  27571. {
  27572. name: "Breeding God",
  27573. height: math.unit(9.92e22, "yottameters")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27579. {
  27580. side: {
  27581. height: math.unit(9, "feet"),
  27582. weight: math.unit(1500, "kg"),
  27583. name: "Side",
  27584. image: {
  27585. source: "./media/characters/fang/side.svg",
  27586. extra: 924 / 866,
  27587. bottom: 47.5 / 972.3
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(9, "feet"),
  27595. default: true
  27596. },
  27597. {
  27598. name: "Macro",
  27599. height: math.unit(75 + 6 / 12, "feet")
  27600. },
  27601. {
  27602. name: "Teramacro",
  27603. height: math.unit(50000, "miles")
  27604. },
  27605. ]
  27606. ))
  27607. characterMakers.push(() => makeCharacter(
  27608. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27609. {
  27610. front: {
  27611. height: math.unit(10, "feet"),
  27612. weight: math.unit(2, "tons"),
  27613. name: "Front",
  27614. image: {
  27615. source: "./media/characters/rekhit/front.svg",
  27616. extra: 2796 / 2590,
  27617. bottom: 225 / 3022
  27618. }
  27619. },
  27620. },
  27621. [
  27622. {
  27623. name: "Normal",
  27624. height: math.unit(10, "feet"),
  27625. default: true
  27626. },
  27627. {
  27628. name: "Macro",
  27629. height: math.unit(500, "feet")
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(7 + 6.451 / 12, "feet"),
  27638. weight: math.unit(310, "lb"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/dahlia-verrick/front.svg",
  27642. extra: 1488 / 1365,
  27643. bottom: 6.2 / 1495
  27644. }
  27645. },
  27646. back: {
  27647. height: math.unit(7 + 6.451 / 12, "feet"),
  27648. weight: math.unit(310, "lb"),
  27649. name: "Back",
  27650. image: {
  27651. source: "./media/characters/dahlia-verrick/back.svg",
  27652. extra: 1472 / 1351,
  27653. bottom: 5.28 / 1477
  27654. }
  27655. },
  27656. frontBusiness: {
  27657. height: math.unit(7 + 6.451 / 12, "feet"),
  27658. weight: math.unit(200, "lb"),
  27659. name: "Front (Business)",
  27660. image: {
  27661. source: "./media/characters/dahlia-verrick/front-business.svg",
  27662. extra: 1478 / 1381,
  27663. bottom: 5.5 / 1484
  27664. }
  27665. },
  27666. frontCasual: {
  27667. height: math.unit(7 + 6.451 / 12, "feet"),
  27668. weight: math.unit(200, "lb"),
  27669. name: "Front (Casual)",
  27670. image: {
  27671. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27672. extra: 1478 / 1381,
  27673. bottom: 5.5 / 1484
  27674. }
  27675. },
  27676. },
  27677. [
  27678. {
  27679. name: "Travel-Sized",
  27680. height: math.unit(7.45, "inches")
  27681. },
  27682. {
  27683. name: "Normal",
  27684. height: math.unit(7 + 6.451 / 12, "feet"),
  27685. default: true
  27686. },
  27687. {
  27688. name: "Hitting the Town",
  27689. height: math.unit(37 + 8 / 12, "feet")
  27690. },
  27691. {
  27692. name: "Stomp in the Suburbs",
  27693. height: math.unit(964 + 9.728 / 12, "feet")
  27694. },
  27695. {
  27696. name: "Sit on the City",
  27697. height: math.unit(61747 + 10.592 / 12, "feet")
  27698. },
  27699. {
  27700. name: "Glomp the Globe",
  27701. height: math.unit(252919327 + 4.832 / 12, "feet")
  27702. },
  27703. ]
  27704. ))
  27705. characterMakers.push(() => makeCharacter(
  27706. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27707. {
  27708. front: {
  27709. height: math.unit(6 + 4 / 12, "feet"),
  27710. weight: math.unit(320, "lb"),
  27711. name: "Front",
  27712. image: {
  27713. source: "./media/characters/balina-mahigan/front.svg",
  27714. extra: 447 / 428,
  27715. bottom: 18 / 466
  27716. }
  27717. },
  27718. back: {
  27719. height: math.unit(6 + 4 / 12, "feet"),
  27720. weight: math.unit(320, "lb"),
  27721. name: "Back",
  27722. image: {
  27723. source: "./media/characters/balina-mahigan/back.svg",
  27724. extra: 445 / 428,
  27725. bottom: 4.07 / 448
  27726. }
  27727. },
  27728. arm: {
  27729. height: math.unit(1.88, "feet"),
  27730. name: "Arm",
  27731. image: {
  27732. source: "./media/characters/balina-mahigan/arm.svg"
  27733. }
  27734. },
  27735. backPort: {
  27736. height: math.unit(0.685, "feet"),
  27737. name: "Back Port",
  27738. image: {
  27739. source: "./media/characters/balina-mahigan/back-port.svg"
  27740. }
  27741. },
  27742. hoofpaw: {
  27743. height: math.unit(1.41, "feet"),
  27744. name: "Hoofpaw",
  27745. image: {
  27746. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27747. }
  27748. },
  27749. leftHandBack: {
  27750. height: math.unit(0.938, "feet"),
  27751. name: "Left Hand (Back)",
  27752. image: {
  27753. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27754. }
  27755. },
  27756. leftHandFront: {
  27757. height: math.unit(0.938, "feet"),
  27758. name: "Left Hand (Front)",
  27759. image: {
  27760. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27761. }
  27762. },
  27763. rightHandBack: {
  27764. height: math.unit(0.95, "feet"),
  27765. name: "Right Hand (Back)",
  27766. image: {
  27767. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27768. }
  27769. },
  27770. rightHandFront: {
  27771. height: math.unit(0.95, "feet"),
  27772. name: "Right Hand (Front)",
  27773. image: {
  27774. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(6 + 4 / 12, "feet"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(6, "feet"),
  27791. weight: math.unit(320, "lb"),
  27792. name: "Front",
  27793. image: {
  27794. source: "./media/characters/balina-mejeri/front.svg",
  27795. extra: 517 / 488,
  27796. bottom: 44.2 / 561
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(6 + 4 / 12, "feet")
  27804. },
  27805. {
  27806. name: "Business",
  27807. height: math.unit(155, "feet"),
  27808. default: true
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27814. {
  27815. kneeling: {
  27816. height: math.unit(6 + 4 / 12, "feet"),
  27817. weight: math.unit(300 * 20, "lb"),
  27818. name: "Kneeling",
  27819. image: {
  27820. source: "./media/characters/balbarian/kneeling.svg",
  27821. extra: 922 / 862,
  27822. bottom: 42.4 / 965
  27823. }
  27824. },
  27825. },
  27826. [
  27827. {
  27828. name: "Normal",
  27829. height: math.unit(6 + 4 / 12, "feet")
  27830. },
  27831. {
  27832. name: "Treasured",
  27833. height: math.unit(18 + 9 / 12, "feet"),
  27834. default: true
  27835. },
  27836. {
  27837. name: "Macro",
  27838. height: math.unit(900, "feet")
  27839. },
  27840. ]
  27841. ))
  27842. characterMakers.push(() => makeCharacter(
  27843. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27844. {
  27845. front: {
  27846. height: math.unit(6 + 4 / 12, "feet"),
  27847. weight: math.unit(325, "lb"),
  27848. name: "Front",
  27849. image: {
  27850. source: "./media/characters/balina-amarini/front.svg",
  27851. extra: 415 / 403,
  27852. bottom: 19 / 433.4
  27853. }
  27854. },
  27855. back: {
  27856. height: math.unit(6 + 4 / 12, "feet"),
  27857. weight: math.unit(325, "lb"),
  27858. name: "Back",
  27859. image: {
  27860. source: "./media/characters/balina-amarini/back.svg",
  27861. extra: 415 / 403,
  27862. bottom: 13.5 / 432
  27863. }
  27864. },
  27865. overdrive: {
  27866. height: math.unit(6 + 4 / 12, "feet"),
  27867. weight: math.unit(400, "lb"),
  27868. name: "Overdrive",
  27869. image: {
  27870. source: "./media/characters/balina-amarini/overdrive.svg",
  27871. extra: 269 / 259,
  27872. bottom: 12 / 282
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Boom",
  27879. height: math.unit(9 + 10 / 12, "feet"),
  27880. default: true
  27881. },
  27882. {
  27883. name: "Macro",
  27884. height: math.unit(280, "feet")
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27890. {
  27891. goddess: {
  27892. height: math.unit(600, "feet"),
  27893. weight: math.unit(2000000, "tons"),
  27894. name: "Goddess",
  27895. image: {
  27896. source: "./media/characters/lady-kubwa/goddess.svg",
  27897. extra: 1240.5 / 1223,
  27898. bottom: 22 / 1263
  27899. }
  27900. },
  27901. goddesser: {
  27902. height: math.unit(900, "feet"),
  27903. weight: math.unit(20000000, "lb"),
  27904. name: "Goddess-er",
  27905. image: {
  27906. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27907. extra: 899 / 888,
  27908. bottom: 12.6 / 912
  27909. }
  27910. },
  27911. },
  27912. [
  27913. {
  27914. name: "Macro",
  27915. height: math.unit(600, "feet"),
  27916. default: true
  27917. },
  27918. {
  27919. name: "Megamacro",
  27920. height: math.unit(250, "miles")
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(7 + 7 / 12, "feet"),
  27929. weight: math.unit(250, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/tala-grovehorn/front.svg",
  27933. extra: 2636 / 2525,
  27934. bottom: 147 / 2781
  27935. }
  27936. },
  27937. back: {
  27938. height: math.unit(7 + 7 / 12, "feet"),
  27939. weight: math.unit(250, "lb"),
  27940. name: "Back",
  27941. image: {
  27942. source: "./media/characters/tala-grovehorn/back.svg",
  27943. extra: 2635 / 2539,
  27944. bottom: 100 / 2732.8
  27945. }
  27946. },
  27947. mouth: {
  27948. height: math.unit(1.15, "feet"),
  27949. name: "Mouth",
  27950. image: {
  27951. source: "./media/characters/tala-grovehorn/mouth.svg"
  27952. }
  27953. },
  27954. dick: {
  27955. height: math.unit(2.36, "feet"),
  27956. name: "Dick",
  27957. image: {
  27958. source: "./media/characters/tala-grovehorn/dick.svg"
  27959. }
  27960. },
  27961. slit: {
  27962. height: math.unit(0.61, "feet"),
  27963. name: "Slit",
  27964. image: {
  27965. source: "./media/characters/tala-grovehorn/slit.svg"
  27966. }
  27967. },
  27968. },
  27969. [
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(7 + 7 / 12, "feet"),
  27977. weight: math.unit(225, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/epona/front.svg",
  27981. extra: 2445 / 2290,
  27982. bottom: 251 / 2696
  27983. }
  27984. },
  27985. back: {
  27986. height: math.unit(7 + 7 / 12, "feet"),
  27987. weight: math.unit(225, "lb"),
  27988. name: "Back",
  27989. image: {
  27990. source: "./media/characters/epona/back.svg",
  27991. extra: 2546 / 2408,
  27992. bottom: 44 / 2589
  27993. }
  27994. },
  27995. genitals: {
  27996. height: math.unit(1.5, "feet"),
  27997. name: "Genitals",
  27998. image: {
  27999. source: "./media/characters/epona/genitals.svg"
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Normal",
  28006. height: math.unit(7 + 7 / 12, "feet"),
  28007. default: true
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28013. {
  28014. front: {
  28015. height: math.unit(7, "feet"),
  28016. weight: math.unit(518, "lb"),
  28017. name: "Front",
  28018. image: {
  28019. source: "./media/characters/avia-bloodbourn/front.svg",
  28020. extra: 1466 / 1350,
  28021. bottom: 65 / 1527
  28022. }
  28023. },
  28024. },
  28025. [
  28026. ]
  28027. ))
  28028. characterMakers.push(() => makeCharacter(
  28029. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28030. {
  28031. front: {
  28032. height: math.unit(9.35, "feet"),
  28033. weight: math.unit(600, "lb"),
  28034. name: "Front",
  28035. image: {
  28036. source: "./media/characters/amera/front.svg",
  28037. extra: 891 / 818,
  28038. bottom: 30 / 922.7
  28039. }
  28040. },
  28041. back: {
  28042. height: math.unit(9.35, "feet"),
  28043. weight: math.unit(600, "lb"),
  28044. name: "Back",
  28045. image: {
  28046. source: "./media/characters/amera/back.svg",
  28047. extra: 876 / 824,
  28048. bottom: 6.8 / 884
  28049. }
  28050. },
  28051. dick: {
  28052. height: math.unit(2.14, "feet"),
  28053. name: "Dick",
  28054. image: {
  28055. source: "./media/characters/amera/dick.svg"
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Normal",
  28062. height: math.unit(9.35, "feet"),
  28063. default: true
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28069. {
  28070. kneeling: {
  28071. height: math.unit(3 + 4 / 12, "feet"),
  28072. weight: math.unit(90, "lb"),
  28073. name: "Kneeling",
  28074. image: {
  28075. source: "./media/characters/rosewen/kneeling.svg",
  28076. extra: 1835 / 1571,
  28077. bottom: 27.7 / 1862
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(3 + 4 / 12, "feet"),
  28085. default: true
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28091. {
  28092. front: {
  28093. height: math.unit(5 + 10 / 12, "feet"),
  28094. weight: math.unit(200, "lb"),
  28095. name: "Front",
  28096. image: {
  28097. source: "./media/characters/sabah/front.svg",
  28098. extra: 849 / 763,
  28099. bottom: 33.9 / 881
  28100. }
  28101. },
  28102. },
  28103. [
  28104. {
  28105. name: "Normal",
  28106. height: math.unit(5 + 10 / 12, "feet"),
  28107. default: true
  28108. },
  28109. ]
  28110. ))
  28111. characterMakers.push(() => makeCharacter(
  28112. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28113. {
  28114. front: {
  28115. height: math.unit(3 + 5 / 12, "feet"),
  28116. weight: math.unit(40, "kg"),
  28117. name: "Front",
  28118. image: {
  28119. source: "./media/characters/purple-flame/front.svg",
  28120. extra: 1577 / 1412,
  28121. bottom: 97 / 1694
  28122. }
  28123. },
  28124. frontDressed: {
  28125. height: math.unit(3 + 5 / 12, "feet"),
  28126. weight: math.unit(40, "kg"),
  28127. name: "Front (Dressed)",
  28128. image: {
  28129. source: "./media/characters/purple-flame/front-dressed.svg",
  28130. extra: 1577 / 1412,
  28131. bottom: 97 / 1694
  28132. }
  28133. },
  28134. headphones: {
  28135. height: math.unit(0.85, "feet"),
  28136. name: "Headphones",
  28137. image: {
  28138. source: "./media/characters/purple-flame/headphones.svg"
  28139. }
  28140. },
  28141. },
  28142. [
  28143. {
  28144. name: "Really Small",
  28145. height: math.unit(5, "cm")
  28146. },
  28147. {
  28148. name: "Micro",
  28149. height: math.unit(1 + 5 / 12, "feet")
  28150. },
  28151. {
  28152. name: "Normal",
  28153. height: math.unit(3 + 5 / 12, "feet"),
  28154. default: true
  28155. },
  28156. {
  28157. name: "Minimacro",
  28158. height: math.unit(125, "feet")
  28159. },
  28160. {
  28161. name: "Macro",
  28162. height: math.unit(0.5, "miles")
  28163. },
  28164. {
  28165. name: "Megamacro",
  28166. height: math.unit(50, "miles")
  28167. },
  28168. {
  28169. name: "Gigantic",
  28170. height: math.unit(750, "miles")
  28171. },
  28172. {
  28173. name: "Planetary",
  28174. height: math.unit(15000, "miles")
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28180. {
  28181. front: {
  28182. height: math.unit(14, "feet"),
  28183. weight: math.unit(959, "lb"),
  28184. name: "Front",
  28185. image: {
  28186. source: "./media/characters/arsenal/front.svg",
  28187. extra: 2357 / 2157,
  28188. bottom: 93 / 2458
  28189. }
  28190. },
  28191. },
  28192. [
  28193. {
  28194. name: "Normal",
  28195. height: math.unit(14, "feet"),
  28196. default: true
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28202. {
  28203. front: {
  28204. height: math.unit(6, "feet"),
  28205. weight: math.unit(150, "lb"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/adira/front.svg",
  28209. extra: 1078 / 1029,
  28210. bottom: 87 / 1166
  28211. }
  28212. },
  28213. },
  28214. [
  28215. {
  28216. name: "Micro",
  28217. height: math.unit(4, "inches"),
  28218. default: true
  28219. },
  28220. {
  28221. name: "Macro",
  28222. height: math.unit(50, "feet")
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28228. {
  28229. front: {
  28230. height: math.unit(16, "feet"),
  28231. weight: math.unit(1000, "lb"),
  28232. name: "Front",
  28233. image: {
  28234. source: "./media/characters/grim/front.svg",
  28235. extra: 622 / 614,
  28236. bottom: 18.1 / 642
  28237. }
  28238. },
  28239. back: {
  28240. height: math.unit(16, "feet"),
  28241. weight: math.unit(1000, "lb"),
  28242. name: "Back",
  28243. image: {
  28244. source: "./media/characters/grim/back.svg",
  28245. extra: 610.6 / 602,
  28246. bottom: 40.8 / 652
  28247. }
  28248. },
  28249. hunched: {
  28250. height: math.unit(9.75, "feet"),
  28251. weight: math.unit(1000, "lb"),
  28252. name: "Hunched",
  28253. image: {
  28254. source: "./media/characters/grim/hunched.svg",
  28255. extra: 304 / 297,
  28256. bottom: 35.4 / 394
  28257. }
  28258. },
  28259. },
  28260. [
  28261. {
  28262. name: "Normal",
  28263. height: math.unit(16, "feet"),
  28264. default: true
  28265. },
  28266. ]
  28267. ))
  28268. characterMakers.push(() => makeCharacter(
  28269. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28270. {
  28271. front: {
  28272. height: math.unit(2.3, "meters"),
  28273. weight: math.unit(300, "lb"),
  28274. name: "Front",
  28275. image: {
  28276. source: "./media/characters/sinja/front-sfw.svg",
  28277. extra: 1393 / 1294,
  28278. bottom: 70 / 1463
  28279. }
  28280. },
  28281. frontNsfw: {
  28282. height: math.unit(2.3, "meters"),
  28283. weight: math.unit(300, "lb"),
  28284. name: "Front (NSFW)",
  28285. image: {
  28286. source: "./media/characters/sinja/front-nsfw.svg",
  28287. extra: 1393 / 1294,
  28288. bottom: 70 / 1463
  28289. }
  28290. },
  28291. back: {
  28292. height: math.unit(2.3, "meters"),
  28293. weight: math.unit(300, "lb"),
  28294. name: "Back",
  28295. image: {
  28296. source: "./media/characters/sinja/back.svg",
  28297. extra: 1393 / 1294,
  28298. bottom: 70 / 1463
  28299. }
  28300. },
  28301. head: {
  28302. height: math.unit(1.771, "feet"),
  28303. name: "Head",
  28304. image: {
  28305. source: "./media/characters/sinja/head.svg"
  28306. }
  28307. },
  28308. slit: {
  28309. height: math.unit(0.8, "feet"),
  28310. name: "Slit",
  28311. image: {
  28312. source: "./media/characters/sinja/slit.svg"
  28313. }
  28314. },
  28315. },
  28316. [
  28317. {
  28318. name: "Normal",
  28319. height: math.unit(2.3, "meters")
  28320. },
  28321. {
  28322. name: "Macro",
  28323. height: math.unit(91, "meters"),
  28324. default: true
  28325. },
  28326. {
  28327. name: "Megamacro",
  28328. height: math.unit(91440, "meters")
  28329. },
  28330. {
  28331. name: "Gigamacro",
  28332. height: math.unit(60960000, "meters")
  28333. },
  28334. {
  28335. name: "Teramacro",
  28336. height: math.unit(9144000000, "meters")
  28337. },
  28338. ]
  28339. ))
  28340. characterMakers.push(() => makeCharacter(
  28341. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28342. {
  28343. front: {
  28344. height: math.unit(1.7, "meters"),
  28345. weight: math.unit(130, "lb"),
  28346. name: "Front",
  28347. image: {
  28348. source: "./media/characters/kyu/front.svg",
  28349. extra: 415 / 395,
  28350. bottom: 5 / 420
  28351. }
  28352. },
  28353. head: {
  28354. height: math.unit(1.75, "feet"),
  28355. name: "Head",
  28356. image: {
  28357. source: "./media/characters/kyu/head.svg"
  28358. }
  28359. },
  28360. foot: {
  28361. height: math.unit(0.81, "feet"),
  28362. name: "Foot",
  28363. image: {
  28364. source: "./media/characters/kyu/foot.svg"
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Normal",
  28371. height: math.unit(1.7, "meters")
  28372. },
  28373. {
  28374. name: "Macro",
  28375. height: math.unit(131, "feet"),
  28376. default: true
  28377. },
  28378. {
  28379. name: "Megamacro",
  28380. height: math.unit(91440, "meters")
  28381. },
  28382. {
  28383. name: "Gigamacro",
  28384. height: math.unit(60960000, "meters")
  28385. },
  28386. {
  28387. name: "Teramacro",
  28388. height: math.unit(9144000000, "meters")
  28389. },
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28394. {
  28395. front: {
  28396. height: math.unit(7 + 1 / 12, "feet"),
  28397. weight: math.unit(250, "lb"),
  28398. name: "Front",
  28399. image: {
  28400. source: "./media/characters/joey/front.svg",
  28401. extra: 1791 / 1537,
  28402. bottom: 28 / 1816
  28403. }
  28404. },
  28405. },
  28406. [
  28407. {
  28408. name: "Micro",
  28409. height: math.unit(3, "inches")
  28410. },
  28411. {
  28412. name: "Normal",
  28413. height: math.unit(7 + 1 / 12, "feet"),
  28414. default: true
  28415. },
  28416. ]
  28417. ))
  28418. characterMakers.push(() => makeCharacter(
  28419. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28420. {
  28421. front: {
  28422. height: math.unit(165, "cm"),
  28423. weight: math.unit(140, "lb"),
  28424. name: "Front",
  28425. image: {
  28426. source: "./media/characters/sam-evans/front.svg",
  28427. extra: 3417 / 3230,
  28428. bottom: 41.3 / 3417
  28429. }
  28430. },
  28431. frontSixTails: {
  28432. height: math.unit(165, "cm"),
  28433. weight: math.unit(140, "lb"),
  28434. name: "Front-six-tails",
  28435. image: {
  28436. source: "./media/characters/sam-evans/front-six-tails.svg",
  28437. extra: 3417 / 3230,
  28438. bottom: 41.3 / 3417
  28439. }
  28440. },
  28441. back: {
  28442. height: math.unit(165, "cm"),
  28443. weight: math.unit(140, "lb"),
  28444. name: "Back",
  28445. image: {
  28446. source: "./media/characters/sam-evans/back.svg",
  28447. extra: 3227 / 3032,
  28448. bottom: 6.8 / 3234
  28449. }
  28450. },
  28451. face: {
  28452. height: math.unit(0.68, "feet"),
  28453. name: "Face",
  28454. image: {
  28455. source: "./media/characters/sam-evans/face.svg"
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(165, "cm"),
  28463. default: true
  28464. },
  28465. {
  28466. name: "Macro",
  28467. height: math.unit(100, "meters")
  28468. },
  28469. {
  28470. name: "Macro+",
  28471. height: math.unit(800, "meters")
  28472. },
  28473. {
  28474. name: "Macro++",
  28475. height: math.unit(3, "km")
  28476. },
  28477. {
  28478. name: "Macro+++",
  28479. height: math.unit(30, "km")
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(10, "feet"),
  28488. weight: math.unit(750, "lb"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/juliet-a/front.svg",
  28492. extra: 1766 / 1720,
  28493. bottom: 43 / 1809
  28494. }
  28495. },
  28496. back: {
  28497. height: math.unit(10, "feet"),
  28498. weight: math.unit(750, "lb"),
  28499. name: "Back",
  28500. image: {
  28501. source: "./media/characters/juliet-a/back.svg",
  28502. extra: 1781 / 1734,
  28503. bottom: 35 / 1810,
  28504. }
  28505. },
  28506. },
  28507. [
  28508. {
  28509. name: "Normal",
  28510. height: math.unit(10, "feet"),
  28511. default: true
  28512. },
  28513. {
  28514. name: "Dragon Form",
  28515. height: math.unit(250, "feet")
  28516. },
  28517. {
  28518. name: "Macro",
  28519. height: math.unit(1000, "feet")
  28520. },
  28521. {
  28522. name: "Megamacro",
  28523. height: math.unit(10000, "feet")
  28524. }
  28525. ]
  28526. ))
  28527. characterMakers.push(() => makeCharacter(
  28528. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28529. {
  28530. regular: {
  28531. height: math.unit(7 + 3 / 12, "feet"),
  28532. weight: math.unit(260, "lb"),
  28533. name: "Regular",
  28534. image: {
  28535. source: "./media/characters/wild/regular.svg",
  28536. extra: 97.45 / 92,
  28537. bottom: 6.8 / 104.3
  28538. }
  28539. },
  28540. biggums: {
  28541. height: math.unit(8 + 6 / 12, "feet"),
  28542. weight: math.unit(425, "lb"),
  28543. name: "Biggums",
  28544. image: {
  28545. source: "./media/characters/wild/biggums.svg",
  28546. extra: 97.45 / 92,
  28547. bottom: 7.5 / 132.34
  28548. }
  28549. },
  28550. mawRegular: {
  28551. height: math.unit(1.24, "feet"),
  28552. name: "Maw (Regular)",
  28553. image: {
  28554. source: "./media/characters/wild/maw.svg"
  28555. }
  28556. },
  28557. mawBiggums: {
  28558. height: math.unit(1.47, "feet"),
  28559. name: "Maw (Biggums)",
  28560. image: {
  28561. source: "./media/characters/wild/maw.svg"
  28562. }
  28563. },
  28564. },
  28565. [
  28566. {
  28567. name: "Normal",
  28568. height: math.unit(7 + 3 / 12, "feet"),
  28569. default: true
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28575. {
  28576. front: {
  28577. height: math.unit(2.5, "meters"),
  28578. weight: math.unit(200, "kg"),
  28579. name: "Front",
  28580. image: {
  28581. source: "./media/characters/vidar/front.svg",
  28582. extra: 2994 / 2795,
  28583. bottom: 56 / 3061
  28584. }
  28585. },
  28586. back: {
  28587. height: math.unit(2.5, "meters"),
  28588. weight: math.unit(200, "kg"),
  28589. name: "Back",
  28590. image: {
  28591. source: "./media/characters/vidar/back.svg",
  28592. extra: 3131 / 2928,
  28593. bottom: 13.5 / 3141.5
  28594. }
  28595. },
  28596. feral: {
  28597. height: math.unit(2.5, "meters"),
  28598. weight: math.unit(2000, "kg"),
  28599. name: "Feral",
  28600. image: {
  28601. source: "./media/characters/vidar/feral.svg",
  28602. extra: 2790 / 1765,
  28603. bottom: 6 / 2796
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Normal",
  28610. height: math.unit(2.5, "meters"),
  28611. default: true
  28612. },
  28613. {
  28614. name: "Macro",
  28615. height: math.unit(100, "meters")
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(5 + 9 / 12, "feet"),
  28624. weight: math.unit(120, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/ash/front.svg",
  28628. extra: 2189 / 1961,
  28629. bottom: 5.2 / 2194
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(5 + 9 / 12, "feet"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(9, "feet"),
  28646. weight: math.unit(10000, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/gygabite/front.svg",
  28650. bottom: 31.7 / 537.8,
  28651. extra: 505 / 370
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Normal",
  28658. height: math.unit(9, "feet"),
  28659. default: true
  28660. },
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28665. {
  28666. front: {
  28667. height: math.unit(12, "feet"),
  28668. weight: math.unit(4000, "lb"),
  28669. name: "Front",
  28670. image: {
  28671. source: "./media/characters/p0tat0/front.svg",
  28672. extra: 1065 / 921,
  28673. bottom: 55.7 / 1121.25
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Normal",
  28680. height: math.unit(12, "feet"),
  28681. default: true
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28687. {
  28688. side: {
  28689. height: math.unit(6.5, "feet"),
  28690. weight: math.unit(800, "lb"),
  28691. name: "Side",
  28692. image: {
  28693. source: "./media/characters/dusk/side.svg",
  28694. extra: 615 / 373,
  28695. bottom: 53 / 664
  28696. }
  28697. },
  28698. sitting: {
  28699. height: math.unit(7, "feet"),
  28700. weight: math.unit(800, "lb"),
  28701. name: "Sitting",
  28702. image: {
  28703. source: "./media/characters/dusk/sitting.svg",
  28704. extra: 753 / 425,
  28705. bottom: 33 / 774
  28706. }
  28707. },
  28708. head: {
  28709. height: math.unit(6.1, "feet"),
  28710. name: "Head",
  28711. image: {
  28712. source: "./media/characters/dusk/head.svg"
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Normal",
  28719. height: math.unit(7, "feet"),
  28720. default: true
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(15, "feet"),
  28729. weight: math.unit(7000, "lb"),
  28730. name: "Front",
  28731. image: {
  28732. source: "./media/characters/jay-direwolf/front.svg",
  28733. extra: 1810 / 1732,
  28734. bottom: 66 / 1892
  28735. }
  28736. },
  28737. },
  28738. [
  28739. {
  28740. name: "Normal",
  28741. height: math.unit(15, "feet"),
  28742. default: true
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28748. {
  28749. front: {
  28750. height: math.unit(4 + 9 / 12, "feet"),
  28751. weight: math.unit(130, "lb"),
  28752. name: "Front",
  28753. image: {
  28754. source: "./media/characters/anchovie/front.svg",
  28755. extra: 382 / 350,
  28756. bottom: 25 / 409
  28757. }
  28758. },
  28759. back: {
  28760. height: math.unit(4 + 9 / 12, "feet"),
  28761. weight: math.unit(130, "lb"),
  28762. name: "Back",
  28763. image: {
  28764. source: "./media/characters/anchovie/back.svg",
  28765. extra: 385 / 352,
  28766. bottom: 16.6 / 402
  28767. }
  28768. },
  28769. frontDressed: {
  28770. height: math.unit(4 + 9 / 12, "feet"),
  28771. weight: math.unit(130, "lb"),
  28772. name: "Front (Dressed)",
  28773. image: {
  28774. source: "./media/characters/anchovie/front-dressed.svg",
  28775. extra: 382 / 350,
  28776. bottom: 25 / 409
  28777. }
  28778. },
  28779. backDressed: {
  28780. height: math.unit(4 + 9 / 12, "feet"),
  28781. weight: math.unit(130, "lb"),
  28782. name: "Back (Dressed)",
  28783. image: {
  28784. source: "./media/characters/anchovie/back-dressed.svg",
  28785. extra: 385 / 352,
  28786. bottom: 16.6 / 402
  28787. }
  28788. },
  28789. },
  28790. [
  28791. {
  28792. name: "Micro",
  28793. height: math.unit(6.4, "inches")
  28794. },
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(4 + 9 / 12, "feet"),
  28798. default: true
  28799. },
  28800. ]
  28801. ))
  28802. characterMakers.push(() => makeCharacter(
  28803. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28804. {
  28805. front: {
  28806. height: math.unit(2, "meters"),
  28807. weight: math.unit(180, "lb"),
  28808. name: "Front",
  28809. image: {
  28810. source: "./media/characters/acidrenamon/front.svg",
  28811. extra: 987 / 890,
  28812. bottom: 22.8 / 1009
  28813. }
  28814. },
  28815. back: {
  28816. height: math.unit(2, "meters"),
  28817. weight: math.unit(180, "lb"),
  28818. name: "Back",
  28819. image: {
  28820. source: "./media/characters/acidrenamon/back.svg",
  28821. extra: 983 / 891,
  28822. bottom: 8.4 / 992
  28823. }
  28824. },
  28825. head: {
  28826. height: math.unit(1.92, "feet"),
  28827. name: "Head",
  28828. image: {
  28829. source: "./media/characters/acidrenamon/head.svg"
  28830. }
  28831. },
  28832. rump: {
  28833. height: math.unit(1.72, "feet"),
  28834. name: "Rump",
  28835. image: {
  28836. source: "./media/characters/acidrenamon/rump.svg"
  28837. }
  28838. },
  28839. tail: {
  28840. height: math.unit(4.2, "feet"),
  28841. name: "Tail",
  28842. image: {
  28843. source: "./media/characters/acidrenamon/tail.svg"
  28844. }
  28845. },
  28846. },
  28847. [
  28848. {
  28849. name: "Normal",
  28850. height: math.unit(2, "meters"),
  28851. default: true
  28852. },
  28853. {
  28854. name: "Minimacro",
  28855. height: math.unit(7, "meters")
  28856. },
  28857. {
  28858. name: "Macro",
  28859. height: math.unit(200, "meters")
  28860. },
  28861. {
  28862. name: "Gigamacro",
  28863. height: math.unit(0.2, "earths")
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28869. {
  28870. front: {
  28871. height: math.unit(152, "feet"),
  28872. name: "Front",
  28873. image: {
  28874. source: "./media/characters/kenzie-lee/front.svg",
  28875. extra: 1869/1774,
  28876. bottom: 128/1997
  28877. }
  28878. },
  28879. side: {
  28880. height: math.unit(86, "feet"),
  28881. name: "Side",
  28882. image: {
  28883. source: "./media/characters/kenzie-lee/side.svg",
  28884. extra: 930/815,
  28885. bottom: 177/1107
  28886. }
  28887. },
  28888. paw: {
  28889. height: math.unit(15, "feet"),
  28890. name: "Paw",
  28891. image: {
  28892. source: "./media/characters/kenzie-lee/paw.svg"
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Kenzie Flea",
  28899. height: math.unit(2, "mm"),
  28900. default: true
  28901. },
  28902. {
  28903. name: "Micro",
  28904. height: math.unit(2, "inches")
  28905. },
  28906. {
  28907. name: "Normal",
  28908. height: math.unit(152, "feet")
  28909. },
  28910. {
  28911. name: "Megamacro",
  28912. height: math.unit(7, "miles")
  28913. },
  28914. {
  28915. name: "Gigamacro",
  28916. height: math.unit(8000, "miles")
  28917. },
  28918. ]
  28919. ))
  28920. characterMakers.push(() => makeCharacter(
  28921. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28922. {
  28923. front: {
  28924. height: math.unit(6, "feet"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/withers/front.svg",
  28928. extra: 1935/1760,
  28929. bottom: 72/2007
  28930. }
  28931. },
  28932. back: {
  28933. height: math.unit(6, "feet"),
  28934. name: "Back",
  28935. image: {
  28936. source: "./media/characters/withers/back.svg",
  28937. extra: 1944/1792,
  28938. bottom: 12/1956
  28939. }
  28940. },
  28941. dressed: {
  28942. height: math.unit(6, "feet"),
  28943. name: "Dressed",
  28944. image: {
  28945. source: "./media/characters/withers/dressed.svg",
  28946. extra: 1937/1765,
  28947. bottom: 73/2010
  28948. }
  28949. },
  28950. phase1: {
  28951. height: math.unit(1.1, "feet"),
  28952. name: "Phase 1",
  28953. image: {
  28954. source: "./media/characters/withers/phase-1.svg",
  28955. extra: 1885/1232,
  28956. bottom: 0/1885
  28957. }
  28958. },
  28959. phase2: {
  28960. height: math.unit(1.05, "feet"),
  28961. name: "Phase 2",
  28962. image: {
  28963. source: "./media/characters/withers/phase-2.svg",
  28964. extra: 1792/1090,
  28965. bottom: 0/1792
  28966. }
  28967. },
  28968. partyWipe: {
  28969. height: math.unit(1.1, "feet"),
  28970. name: "Party Wipe",
  28971. image: {
  28972. source: "./media/characters/withers/party-wipe.svg",
  28973. extra: 1864/1207,
  28974. bottom: 0/1864
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Macro",
  28981. height: math.unit(167, "feet"),
  28982. default: true
  28983. },
  28984. {
  28985. name: "Megamacro",
  28986. height: math.unit(15, "miles")
  28987. }
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(6 + 7 / 12, "feet"),
  28995. weight: math.unit(250, "lb"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/nemoskii/front.svg",
  28999. extra: 2270 / 1734,
  29000. bottom: 86 / 2354
  29001. }
  29002. },
  29003. back: {
  29004. height: math.unit(6 + 7 / 12, "feet"),
  29005. weight: math.unit(250, "lb"),
  29006. name: "Back",
  29007. image: {
  29008. source: "./media/characters/nemoskii/back.svg",
  29009. extra: 1845 / 1788,
  29010. bottom: 10.5 / 1852
  29011. }
  29012. },
  29013. head: {
  29014. height: math.unit(1.31, "feet"),
  29015. name: "Head",
  29016. image: {
  29017. source: "./media/characters/nemoskii/head.svg"
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Micro",
  29024. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29025. },
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(6 + 7 / 12, "feet"),
  29029. default: true
  29030. },
  29031. {
  29032. name: "Macro",
  29033. height: math.unit((6 + 7 / 12) * 150, "feet")
  29034. },
  29035. {
  29036. name: "Macro+",
  29037. height: math.unit((6 + 7 / 12) * 500, "feet")
  29038. },
  29039. {
  29040. name: "Megamacro",
  29041. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29042. },
  29043. ]
  29044. ))
  29045. characterMakers.push(() => makeCharacter(
  29046. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29047. {
  29048. front: {
  29049. height: math.unit(1, "mile"),
  29050. weight: math.unit(265261.9, "lb"),
  29051. name: "Front",
  29052. image: {
  29053. source: "./media/characters/shui/front.svg",
  29054. extra: 1633 / 1564,
  29055. bottom: 91.5 / 1726
  29056. }
  29057. },
  29058. },
  29059. [
  29060. {
  29061. name: "Macro",
  29062. height: math.unit(1, "mile"),
  29063. default: true
  29064. },
  29065. ]
  29066. ))
  29067. characterMakers.push(() => makeCharacter(
  29068. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29069. {
  29070. front: {
  29071. height: math.unit(12 + 6 / 12, "feet"),
  29072. weight: math.unit(1342, "lb"),
  29073. name: "Front",
  29074. image: {
  29075. source: "./media/characters/arokh-takakura/front.svg",
  29076. extra: 1089 / 1043,
  29077. bottom: 77.4 / 1176.7
  29078. }
  29079. },
  29080. back: {
  29081. height: math.unit(12 + 6 / 12, "feet"),
  29082. weight: math.unit(1342, "lb"),
  29083. name: "Back",
  29084. image: {
  29085. source: "./media/characters/arokh-takakura/back.svg",
  29086. extra: 1046 / 1019,
  29087. bottom: 102 / 1150
  29088. }
  29089. },
  29090. },
  29091. [
  29092. {
  29093. name: "Big",
  29094. height: math.unit(12 + 6 / 12, "feet"),
  29095. default: true
  29096. },
  29097. ]
  29098. ))
  29099. characterMakers.push(() => makeCharacter(
  29100. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29101. {
  29102. front: {
  29103. height: math.unit(5 + 6 / 12, "feet"),
  29104. weight: math.unit(150, "lb"),
  29105. name: "Front",
  29106. image: {
  29107. source: "./media/characters/theo/front.svg",
  29108. extra: 1184 / 1131,
  29109. bottom: 7.4 / 1191
  29110. }
  29111. },
  29112. },
  29113. [
  29114. {
  29115. name: "Micro",
  29116. height: math.unit(5, "inches")
  29117. },
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(5 + 6 / 12, "feet"),
  29121. default: true
  29122. },
  29123. ]
  29124. ))
  29125. characterMakers.push(() => makeCharacter(
  29126. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29127. {
  29128. front: {
  29129. height: math.unit(5 + 9 / 12, "feet"),
  29130. weight: math.unit(130, "lb"),
  29131. name: "Front",
  29132. image: {
  29133. source: "./media/characters/cecelia-swift/front.svg",
  29134. extra: 502 / 484,
  29135. bottom: 23 / 523
  29136. }
  29137. },
  29138. back: {
  29139. height: math.unit(5 + 9 / 12, "feet"),
  29140. weight: math.unit(130, "lb"),
  29141. name: "Back",
  29142. image: {
  29143. source: "./media/characters/cecelia-swift/back.svg",
  29144. extra: 499 / 485,
  29145. bottom: 12 / 511
  29146. }
  29147. },
  29148. head: {
  29149. height: math.unit(0.90, "feet"),
  29150. name: "Head",
  29151. image: {
  29152. source: "./media/characters/cecelia-swift/head.svg"
  29153. }
  29154. },
  29155. rump: {
  29156. height: math.unit(1.75, "feet"),
  29157. name: "Rump",
  29158. image: {
  29159. source: "./media/characters/cecelia-swift/rump.svg"
  29160. }
  29161. },
  29162. },
  29163. [
  29164. {
  29165. name: "Normal",
  29166. height: math.unit(5 + 9 / 12, "feet"),
  29167. default: true
  29168. },
  29169. {
  29170. name: "Big",
  29171. height: math.unit(50, "feet")
  29172. },
  29173. {
  29174. name: "Macro",
  29175. height: math.unit(100, "feet")
  29176. },
  29177. {
  29178. name: "Macro+",
  29179. height: math.unit(500, "feet")
  29180. },
  29181. {
  29182. name: "Macro++",
  29183. height: math.unit(1000, "feet")
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(6, "feet"),
  29192. weight: math.unit(150, "lb"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/kaunan/front.svg",
  29196. extra: 2890 / 2523,
  29197. bottom: 49 / 2939
  29198. }
  29199. },
  29200. },
  29201. [
  29202. {
  29203. name: "Macro",
  29204. height: math.unit(150, "feet"),
  29205. default: true
  29206. },
  29207. ]
  29208. ))
  29209. characterMakers.push(() => makeCharacter(
  29210. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29211. {
  29212. dressed: {
  29213. height: math.unit(175, "cm"),
  29214. weight: math.unit(60, "kg"),
  29215. name: "Dressed",
  29216. image: {
  29217. source: "./media/characters/fei/dressed.svg",
  29218. extra: 1402/1278,
  29219. bottom: 27/1429
  29220. }
  29221. },
  29222. nude: {
  29223. height: math.unit(175, "cm"),
  29224. weight: math.unit(60, "kg"),
  29225. name: "Nude",
  29226. image: {
  29227. source: "./media/characters/fei/nude.svg",
  29228. extra: 1402/1278,
  29229. bottom: 27/1429
  29230. }
  29231. },
  29232. heels: {
  29233. height: math.unit(0.466, "feet"),
  29234. name: "Heels",
  29235. image: {
  29236. source: "./media/characters/fei/heels.svg",
  29237. extra: 156/152,
  29238. bottom: 28/184
  29239. }
  29240. },
  29241. },
  29242. [
  29243. {
  29244. name: "Mortal",
  29245. height: math.unit(175, "cm")
  29246. },
  29247. {
  29248. name: "Normal",
  29249. height: math.unit(3500, "m")
  29250. },
  29251. {
  29252. name: "Stroll",
  29253. height: math.unit(18.4, "km"),
  29254. default: true
  29255. },
  29256. {
  29257. name: "Showoff",
  29258. height: math.unit(175, "km")
  29259. },
  29260. ]
  29261. ))
  29262. characterMakers.push(() => makeCharacter(
  29263. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29264. {
  29265. front: {
  29266. height: math.unit(7, "feet"),
  29267. weight: math.unit(1000, "kg"),
  29268. name: "Front",
  29269. image: {
  29270. source: "./media/characters/edrax/front.svg",
  29271. extra: 2838 / 2550,
  29272. bottom: 130 / 2968
  29273. }
  29274. },
  29275. },
  29276. [
  29277. {
  29278. name: "Small",
  29279. height: math.unit(7, "feet")
  29280. },
  29281. {
  29282. name: "Normal",
  29283. height: math.unit(1500, "meters")
  29284. },
  29285. {
  29286. name: "Mega",
  29287. height: math.unit(12000000, "km"),
  29288. default: true
  29289. },
  29290. {
  29291. name: "Megamacro",
  29292. height: math.unit(10600000, "lightyears")
  29293. },
  29294. {
  29295. name: "Hypermacro",
  29296. height: math.unit(256, "yottameters")
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29302. {
  29303. front: {
  29304. height: math.unit(10, "feet"),
  29305. weight: math.unit(750, "lb"),
  29306. name: "Front",
  29307. image: {
  29308. source: "./media/characters/clove/front.svg",
  29309. extra: 1918/1751,
  29310. bottom: 52/1970
  29311. }
  29312. },
  29313. back: {
  29314. height: math.unit(10, "feet"),
  29315. weight: math.unit(750, "lb"),
  29316. name: "Back",
  29317. image: {
  29318. source: "./media/characters/clove/back.svg",
  29319. extra: 1912/1747,
  29320. bottom: 50/1962
  29321. }
  29322. },
  29323. },
  29324. [
  29325. {
  29326. name: "Normal",
  29327. height: math.unit(10, "feet"),
  29328. default: true
  29329. },
  29330. ]
  29331. ))
  29332. characterMakers.push(() => makeCharacter(
  29333. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29334. {
  29335. front: {
  29336. height: math.unit(4, "feet"),
  29337. weight: math.unit(50, "lb"),
  29338. name: "Front",
  29339. image: {
  29340. source: "./media/characters/alex-rabbit/front.svg",
  29341. extra: 507 / 458,
  29342. bottom: 18.5 / 527
  29343. }
  29344. },
  29345. back: {
  29346. height: math.unit(4, "feet"),
  29347. weight: math.unit(50, "lb"),
  29348. name: "Back",
  29349. image: {
  29350. source: "./media/characters/alex-rabbit/back.svg",
  29351. extra: 502 / 460,
  29352. bottom: 18.9 / 521
  29353. }
  29354. },
  29355. },
  29356. [
  29357. {
  29358. name: "Normal",
  29359. height: math.unit(4, "feet"),
  29360. default: true
  29361. },
  29362. ]
  29363. ))
  29364. characterMakers.push(() => makeCharacter(
  29365. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29366. {
  29367. front: {
  29368. height: math.unit(1 + 3 / 12, "feet"),
  29369. weight: math.unit(80, "lb"),
  29370. name: "Front",
  29371. image: {
  29372. source: "./media/characters/zander-rose/front.svg",
  29373. extra: 916 / 797,
  29374. bottom: 17 / 933
  29375. }
  29376. },
  29377. back: {
  29378. height: math.unit(1 + 3 / 12, "feet"),
  29379. weight: math.unit(80, "lb"),
  29380. name: "Back",
  29381. image: {
  29382. source: "./media/characters/zander-rose/back.svg",
  29383. extra: 903 / 779,
  29384. bottom: 31 / 934
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Normal",
  29391. height: math.unit(1 + 3 / 12, "feet"),
  29392. default: true
  29393. },
  29394. ]
  29395. ))
  29396. characterMakers.push(() => makeCharacter(
  29397. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29398. {
  29399. anthro: {
  29400. height: math.unit(6, "feet"),
  29401. weight: math.unit(150, "lb"),
  29402. name: "Anthro",
  29403. image: {
  29404. source: "./media/characters/razz/anthro.svg",
  29405. extra: 1437 / 1343,
  29406. bottom: 48 / 1485
  29407. }
  29408. },
  29409. feral: {
  29410. height: math.unit(6, "feet"),
  29411. weight: math.unit(150, "lb"),
  29412. name: "Feral",
  29413. image: {
  29414. source: "./media/characters/razz/feral.svg",
  29415. extra: 2569 / 1385,
  29416. bottom: 95 / 2664
  29417. }
  29418. },
  29419. },
  29420. [
  29421. {
  29422. name: "Normal",
  29423. height: math.unit(6, "feet"),
  29424. default: true
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29430. {
  29431. front: {
  29432. height: math.unit(9 + 4 / 12, "feet"),
  29433. weight: math.unit(500, "lb"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/morrigan/front.svg",
  29437. extra: 2707 / 2579,
  29438. bottom: 156 / 2863
  29439. }
  29440. },
  29441. },
  29442. [
  29443. {
  29444. name: "Normal",
  29445. height: math.unit(9 + 4 / 12, "feet"),
  29446. default: true
  29447. },
  29448. ]
  29449. ))
  29450. characterMakers.push(() => makeCharacter(
  29451. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29452. {
  29453. front: {
  29454. height: math.unit(5, "stories"),
  29455. weight: math.unit(4000, "lb"),
  29456. name: "Front",
  29457. image: {
  29458. source: "./media/characters/jenene/front.svg",
  29459. extra: 1780 / 1710,
  29460. bottom: 57 / 1837
  29461. }
  29462. },
  29463. },
  29464. [
  29465. {
  29466. name: "Normal",
  29467. height: math.unit(5, "stories"),
  29468. default: true
  29469. },
  29470. ]
  29471. ))
  29472. characterMakers.push(() => makeCharacter(
  29473. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29474. {
  29475. taurSfw: {
  29476. height: math.unit(10, "meters"),
  29477. weight: math.unit(17500, "kg"),
  29478. name: "Taur",
  29479. image: {
  29480. source: "./media/characters/faey/taur-sfw.svg",
  29481. extra: 1200 / 968,
  29482. bottom: 41 / 1241
  29483. }
  29484. },
  29485. chestmaw: {
  29486. height: math.unit(2.01, "meters"),
  29487. name: "Chestmaw",
  29488. image: {
  29489. source: "./media/characters/faey/chestmaw.svg"
  29490. }
  29491. },
  29492. foot: {
  29493. height: math.unit(2.43, "meters"),
  29494. name: "Foot",
  29495. image: {
  29496. source: "./media/characters/faey/foot.svg"
  29497. }
  29498. },
  29499. jaws: {
  29500. height: math.unit(1.66, "meters"),
  29501. name: "Jaws",
  29502. image: {
  29503. source: "./media/characters/faey/jaws.svg"
  29504. }
  29505. },
  29506. tongues: {
  29507. height: math.unit(2.01, "meters"),
  29508. name: "Tongues",
  29509. image: {
  29510. source: "./media/characters/faey/tongues.svg"
  29511. }
  29512. },
  29513. },
  29514. [
  29515. {
  29516. name: "Small",
  29517. height: math.unit(10, "meters"),
  29518. default: true
  29519. },
  29520. {
  29521. name: "Big",
  29522. height: math.unit(500000, "km")
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(7, "feet"),
  29531. weight: math.unit(275, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/roku/front.svg",
  29535. extra: 903 / 878,
  29536. bottom: 37 / 940
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Normal",
  29543. height: math.unit(7, "feet"),
  29544. default: true
  29545. },
  29546. {
  29547. name: "Macro",
  29548. height: math.unit(500, "feet")
  29549. },
  29550. {
  29551. name: "Megamacro",
  29552. height: math.unit(200, "miles")
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29558. {
  29559. front: {
  29560. height: math.unit(6 + 2 / 12, "feet"),
  29561. weight: math.unit(150, "lb"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/lira/front.svg",
  29565. extra: 1727 / 1605,
  29566. bottom: 26 / 1753
  29567. }
  29568. },
  29569. back: {
  29570. height: math.unit(6 + 2 / 12, "feet"),
  29571. weight: math.unit(150, "lb"),
  29572. name: "Back",
  29573. image: {
  29574. source: "./media/characters/lira/back.svg",
  29575. extra: 1713/1621,
  29576. bottom: 20/1733
  29577. }
  29578. },
  29579. hand: {
  29580. height: math.unit(0.75, "feet"),
  29581. name: "Hand",
  29582. image: {
  29583. source: "./media/characters/lira/hand.svg"
  29584. }
  29585. },
  29586. maw: {
  29587. height: math.unit(0.65, "feet"),
  29588. name: "Maw",
  29589. image: {
  29590. source: "./media/characters/lira/maw.svg"
  29591. }
  29592. },
  29593. pawDigi: {
  29594. height: math.unit(1.6, "feet"),
  29595. name: "Paw Digi",
  29596. image: {
  29597. source: "./media/characters/lira/paw-digi.svg"
  29598. }
  29599. },
  29600. pawPlanti: {
  29601. height: math.unit(1.4, "feet"),
  29602. name: "Paw Planti",
  29603. image: {
  29604. source: "./media/characters/lira/paw-planti.svg"
  29605. }
  29606. },
  29607. },
  29608. [
  29609. {
  29610. name: "Normal",
  29611. height: math.unit(6 + 2 / 12, "feet"),
  29612. default: true
  29613. },
  29614. {
  29615. name: "Macro",
  29616. height: math.unit(100, "feet")
  29617. },
  29618. {
  29619. name: "Macro²",
  29620. height: math.unit(1600, "feet")
  29621. },
  29622. {
  29623. name: "Planetary",
  29624. height: math.unit(20, "earths")
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(6, "feet"),
  29633. weight: math.unit(150, "lb"),
  29634. name: "Front",
  29635. image: {
  29636. source: "./media/characters/hadjet/front.svg",
  29637. extra: 1480 / 1346,
  29638. bottom: 26 / 1506
  29639. }
  29640. },
  29641. frontNsfw: {
  29642. height: math.unit(6, "feet"),
  29643. weight: math.unit(150, "lb"),
  29644. name: "Front (NSFW)",
  29645. image: {
  29646. source: "./media/characters/hadjet/front-nsfw.svg",
  29647. extra: 1440 / 1358,
  29648. bottom: 52 / 1492
  29649. }
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Macro",
  29655. height: math.unit(10, "stories"),
  29656. default: true
  29657. },
  29658. {
  29659. name: "Megamacro",
  29660. height: math.unit(1.5, "miles")
  29661. },
  29662. {
  29663. name: "Megamacro+",
  29664. height: math.unit(5, "miles")
  29665. },
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29670. {
  29671. side: {
  29672. height: math.unit(106, "feet"),
  29673. weight: math.unit(500, "tonnes"),
  29674. name: "Side",
  29675. image: {
  29676. source: "./media/characters/kodran/side.svg",
  29677. extra: 553 / 480,
  29678. bottom: 33 / 586
  29679. }
  29680. },
  29681. front: {
  29682. height: math.unit(132, "feet"),
  29683. weight: math.unit(500, "tonnes"),
  29684. name: "Front",
  29685. image: {
  29686. source: "./media/characters/kodran/front.svg",
  29687. extra: 667 / 643,
  29688. bottom: 42 / 709
  29689. }
  29690. },
  29691. flying: {
  29692. height: math.unit(350, "feet"),
  29693. weight: math.unit(500, "tonnes"),
  29694. name: "Flying",
  29695. image: {
  29696. source: "./media/characters/kodran/flying.svg"
  29697. }
  29698. },
  29699. foot: {
  29700. height: math.unit(33, "feet"),
  29701. name: "Foot",
  29702. image: {
  29703. source: "./media/characters/kodran/foot.svg"
  29704. }
  29705. },
  29706. footFront: {
  29707. height: math.unit(19, "feet"),
  29708. name: "Foot (Front)",
  29709. image: {
  29710. source: "./media/characters/kodran/foot-front.svg",
  29711. extra: 261 / 261,
  29712. bottom: 91 / 352
  29713. }
  29714. },
  29715. headFront: {
  29716. height: math.unit(53, "feet"),
  29717. name: "Head (Front)",
  29718. image: {
  29719. source: "./media/characters/kodran/head-front.svg"
  29720. }
  29721. },
  29722. headSide: {
  29723. height: math.unit(65, "feet"),
  29724. name: "Head (Side)",
  29725. image: {
  29726. source: "./media/characters/kodran/head-side.svg"
  29727. }
  29728. },
  29729. throat: {
  29730. height: math.unit(79, "feet"),
  29731. name: "Throat",
  29732. image: {
  29733. source: "./media/characters/kodran/throat.svg"
  29734. }
  29735. },
  29736. },
  29737. [
  29738. {
  29739. name: "Large",
  29740. height: math.unit(106, "feet"),
  29741. default: true
  29742. },
  29743. ]
  29744. ))
  29745. characterMakers.push(() => makeCharacter(
  29746. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29747. {
  29748. side: {
  29749. height: math.unit(11, "feet"),
  29750. weight: math.unit(150, "lb"),
  29751. name: "Side",
  29752. image: {
  29753. source: "./media/characters/pyxaron/side.svg",
  29754. extra: 305 / 195,
  29755. bottom: 17 / 322
  29756. }
  29757. },
  29758. },
  29759. [
  29760. {
  29761. name: "Normal",
  29762. height: math.unit(11, "feet"),
  29763. default: true
  29764. },
  29765. ]
  29766. ))
  29767. characterMakers.push(() => makeCharacter(
  29768. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29769. {
  29770. front: {
  29771. height: math.unit(6, "feet"),
  29772. weight: math.unit(150, "lb"),
  29773. name: "Front",
  29774. image: {
  29775. source: "./media/characters/meep/front.svg",
  29776. extra: 88 / 80,
  29777. bottom: 6 / 94
  29778. }
  29779. },
  29780. },
  29781. [
  29782. {
  29783. name: "Fun Sized",
  29784. height: math.unit(2, "inches"),
  29785. default: true
  29786. },
  29787. {
  29788. name: "Friend Sized",
  29789. height: math.unit(8, "inches")
  29790. },
  29791. ]
  29792. ))
  29793. characterMakers.push(() => makeCharacter(
  29794. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29795. {
  29796. front: {
  29797. height: math.unit(15, "feet"),
  29798. weight: math.unit(2500, "lb"),
  29799. name: "Front",
  29800. image: {
  29801. source: "./media/characters/holly-rabbit/front.svg",
  29802. extra: 1433 / 1233,
  29803. bottom: 125 / 1558
  29804. }
  29805. },
  29806. dick: {
  29807. height: math.unit(4.6, "feet"),
  29808. name: "Dick",
  29809. image: {
  29810. source: "./media/characters/holly-rabbit/dick.svg"
  29811. }
  29812. },
  29813. },
  29814. [
  29815. {
  29816. name: "Normal",
  29817. height: math.unit(15, "feet"),
  29818. default: true
  29819. },
  29820. {
  29821. name: "Macro",
  29822. height: math.unit(250, "feet")
  29823. },
  29824. {
  29825. name: "Macro+",
  29826. height: math.unit(2500, "feet")
  29827. },
  29828. ]
  29829. ))
  29830. characterMakers.push(() => makeCharacter(
  29831. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29832. {
  29833. front: {
  29834. height: math.unit(3.02, "meters"),
  29835. weight: math.unit(500, "kg"),
  29836. name: "Front",
  29837. image: {
  29838. source: "./media/characters/drena/front.svg",
  29839. extra: 282 / 243,
  29840. bottom: 8 / 290
  29841. }
  29842. },
  29843. side: {
  29844. height: math.unit(3.02, "meters"),
  29845. weight: math.unit(500, "kg"),
  29846. name: "Side",
  29847. image: {
  29848. source: "./media/characters/drena/side.svg",
  29849. extra: 280 / 245,
  29850. bottom: 10 / 290
  29851. }
  29852. },
  29853. back: {
  29854. height: math.unit(3.02, "meters"),
  29855. weight: math.unit(500, "kg"),
  29856. name: "Back",
  29857. image: {
  29858. source: "./media/characters/drena/back.svg",
  29859. extra: 278 / 243,
  29860. bottom: 2 / 280
  29861. }
  29862. },
  29863. foot: {
  29864. height: math.unit(0.75, "meters"),
  29865. name: "Foot",
  29866. image: {
  29867. source: "./media/characters/drena/foot.svg"
  29868. }
  29869. },
  29870. maw: {
  29871. height: math.unit(0.82, "meters"),
  29872. name: "Maw",
  29873. image: {
  29874. source: "./media/characters/drena/maw.svg"
  29875. }
  29876. },
  29877. eating: {
  29878. height: math.unit(0.75, "meters"),
  29879. name: "Eating",
  29880. image: {
  29881. source: "./media/characters/drena/eating.svg"
  29882. }
  29883. },
  29884. rump: {
  29885. height: math.unit(0.93, "meters"),
  29886. name: "Rump",
  29887. image: {
  29888. source: "./media/characters/drena/rump.svg"
  29889. }
  29890. },
  29891. },
  29892. [
  29893. {
  29894. name: "Normal",
  29895. height: math.unit(3.02, "meters"),
  29896. default: true
  29897. },
  29898. ]
  29899. ))
  29900. characterMakers.push(() => makeCharacter(
  29901. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29902. {
  29903. front: {
  29904. height: math.unit(6 + 4 / 12, "feet"),
  29905. weight: math.unit(250, "lb"),
  29906. name: "Front",
  29907. image: {
  29908. source: "./media/characters/remmyzilla/front.svg",
  29909. extra: 4033 / 3588,
  29910. bottom: 123 / 4156
  29911. }
  29912. },
  29913. back: {
  29914. height: math.unit(6 + 4 / 12, "feet"),
  29915. weight: math.unit(250, "lb"),
  29916. name: "Back",
  29917. image: {
  29918. source: "./media/characters/remmyzilla/back.svg",
  29919. extra: 2687 / 2555,
  29920. bottom: 48 / 2735
  29921. }
  29922. },
  29923. paw: {
  29924. height: math.unit(1.73, "feet"),
  29925. name: "Paw",
  29926. image: {
  29927. source: "./media/characters/remmyzilla/paw.svg"
  29928. },
  29929. extraAttributes: {
  29930. "toeSize": {
  29931. name: "Toe Size",
  29932. power: 2,
  29933. type: "area",
  29934. base: math.unit(0.0035, "m^2")
  29935. },
  29936. "padSize": {
  29937. name: "Pad Size",
  29938. power: 2,
  29939. type: "area",
  29940. base: math.unit(0.015, "m^2")
  29941. },
  29942. "pawsize": {
  29943. name: "Paw Size",
  29944. power: 2,
  29945. type: "area",
  29946. base: math.unit(0.072, "m^2")
  29947. },
  29948. }
  29949. },
  29950. maw: {
  29951. height: math.unit(1.73, "feet"),
  29952. name: "Maw",
  29953. image: {
  29954. source: "./media/characters/remmyzilla/maw.svg"
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(6 + 4 / 12, "feet")
  29962. },
  29963. {
  29964. name: "Minimacro",
  29965. height: math.unit(12 + 8 / 12, "feet")
  29966. },
  29967. {
  29968. name: "Normal",
  29969. height: math.unit(640, "feet"),
  29970. default: true
  29971. },
  29972. {
  29973. name: "Megamacro",
  29974. height: math.unit(6400, "feet")
  29975. },
  29976. {
  29977. name: "Gigamacro",
  29978. height: math.unit(64000, "miles")
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29984. {
  29985. front: {
  29986. height: math.unit(2.5, "meters"),
  29987. weight: math.unit(300, "lb"),
  29988. name: "Front",
  29989. image: {
  29990. source: "./media/characters/lawrence/front.svg",
  29991. extra: 357 / 335,
  29992. bottom: 30 / 387
  29993. }
  29994. },
  29995. back: {
  29996. height: math.unit(2.5, "meters"),
  29997. weight: math.unit(300, "lb"),
  29998. name: "Back",
  29999. image: {
  30000. source: "./media/characters/lawrence/back.svg",
  30001. extra: 357 / 338,
  30002. bottom: 16 / 373
  30003. }
  30004. },
  30005. head: {
  30006. height: math.unit(0.9, "meter"),
  30007. name: "Head",
  30008. image: {
  30009. source: "./media/characters/lawrence/head.svg"
  30010. }
  30011. },
  30012. maw: {
  30013. height: math.unit(0.7, "meter"),
  30014. name: "Maw",
  30015. image: {
  30016. source: "./media/characters/lawrence/maw.svg"
  30017. }
  30018. },
  30019. footBottom: {
  30020. height: math.unit(0.5, "meter"),
  30021. name: "Foot (Bottom)",
  30022. image: {
  30023. source: "./media/characters/lawrence/foot-bottom.svg"
  30024. }
  30025. },
  30026. footTop: {
  30027. height: math.unit(0.5, "meter"),
  30028. name: "Foot (Top)",
  30029. image: {
  30030. source: "./media/characters/lawrence/foot-top.svg"
  30031. }
  30032. },
  30033. },
  30034. [
  30035. {
  30036. name: "Normal",
  30037. height: math.unit(2.5, "meters"),
  30038. default: true
  30039. },
  30040. {
  30041. name: "Macro",
  30042. height: math.unit(95, "meters")
  30043. },
  30044. {
  30045. name: "Megamacro",
  30046. height: math.unit(150, "km")
  30047. },
  30048. ]
  30049. ))
  30050. characterMakers.push(() => makeCharacter(
  30051. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30052. {
  30053. front: {
  30054. height: math.unit(4.2, "meters"),
  30055. name: "Front",
  30056. image: {
  30057. source: "./media/characters/sydney/front.svg",
  30058. extra: 1323 / 1277,
  30059. bottom: 111 / 1434
  30060. }
  30061. },
  30062. },
  30063. [
  30064. {
  30065. name: "Normal",
  30066. height: math.unit(4.2, "meters"),
  30067. default: true
  30068. },
  30069. ]
  30070. ))
  30071. characterMakers.push(() => makeCharacter(
  30072. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30073. {
  30074. back: {
  30075. height: math.unit(201, "feet"),
  30076. name: "Back",
  30077. image: {
  30078. source: "./media/characters/jessica/back.svg",
  30079. extra: 273 / 259,
  30080. bottom: 7 / 280
  30081. }
  30082. },
  30083. },
  30084. [
  30085. {
  30086. name: "Normal",
  30087. height: math.unit(201, "feet"),
  30088. default: true
  30089. },
  30090. {
  30091. name: "Megamacro",
  30092. height: math.unit(8, "miles")
  30093. },
  30094. ]
  30095. ))
  30096. characterMakers.push(() => makeCharacter(
  30097. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30098. {
  30099. side: {
  30100. height: math.unit(5.6, "m"),
  30101. weight: math.unit(8000, "kg"),
  30102. name: "Side",
  30103. image: {
  30104. source: "./media/characters/victoria/side.svg",
  30105. extra: 1542/1229,
  30106. bottom: 124/1666
  30107. }
  30108. },
  30109. maw: {
  30110. height: math.unit(7.14, "feet"),
  30111. name: "Maw",
  30112. image: {
  30113. source: "./media/characters/victoria/maw.svg"
  30114. }
  30115. },
  30116. },
  30117. [
  30118. {
  30119. name: "Normal",
  30120. height: math.unit(5.6, "m"),
  30121. default: true
  30122. },
  30123. ]
  30124. ))
  30125. characterMakers.push(() => makeCharacter(
  30126. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30127. {
  30128. front: {
  30129. height: math.unit(5 + 6 / 12, "feet"),
  30130. name: "Front",
  30131. image: {
  30132. source: "./media/characters/cat/front.svg",
  30133. extra: 1449/1295,
  30134. bottom: 34/1483
  30135. },
  30136. form: "cat",
  30137. default: true
  30138. },
  30139. back: {
  30140. height: math.unit(5 + 6 / 12, "feet"),
  30141. name: "Back",
  30142. image: {
  30143. source: "./media/characters/cat/back.svg",
  30144. extra: 1466/1301,
  30145. bottom: 19/1485
  30146. },
  30147. form: "cat"
  30148. },
  30149. taur: {
  30150. height: math.unit(7, "feet"),
  30151. name: "Taur",
  30152. image: {
  30153. source: "./media/characters/cat/taur.svg",
  30154. extra: 1389/1233,
  30155. bottom: 83/1472
  30156. },
  30157. form: "taur",
  30158. default: true
  30159. },
  30160. lucarioFront: {
  30161. height: math.unit(4, "feet"),
  30162. name: "Lucario (Front)",
  30163. image: {
  30164. source: "./media/characters/cat/lucario-front.svg",
  30165. extra: 1149/1019,
  30166. bottom: 84/1233
  30167. },
  30168. form: "lucario",
  30169. default: true
  30170. },
  30171. lucarioBack: {
  30172. height: math.unit(4, "feet"),
  30173. name: "Lucario (Back)",
  30174. image: {
  30175. source: "./media/characters/cat/lucario-back.svg",
  30176. extra: 1190/1059,
  30177. bottom: 33/1223
  30178. },
  30179. form: "lucario"
  30180. },
  30181. megaLucario: {
  30182. height: math.unit(4, "feet"),
  30183. name: "Mega Lucario",
  30184. image: {
  30185. source: "./media/characters/cat/mega-lucario.svg",
  30186. extra: 1515 / 1319,
  30187. bottom: 63 / 1578
  30188. },
  30189. form: "lucario"
  30190. },
  30191. nickit: {
  30192. height: math.unit(2, "feet"),
  30193. name: "Nickit",
  30194. image: {
  30195. source: "./media/characters/cat/nickit.svg",
  30196. extra: 1980 / 1585,
  30197. bottom: 102 / 2082
  30198. },
  30199. form: "nickit",
  30200. default: true
  30201. },
  30202. lopunnyFront: {
  30203. height: math.unit(5, "feet"),
  30204. name: "Lopunny (Front)",
  30205. image: {
  30206. source: "./media/characters/cat/lopunny-front.svg",
  30207. extra: 1782 / 1469,
  30208. bottom: 38 / 1820
  30209. },
  30210. form: "lopunny",
  30211. default: true
  30212. },
  30213. lopunnyBack: {
  30214. height: math.unit(5, "feet"),
  30215. name: "Lopunny (Back)",
  30216. image: {
  30217. source: "./media/characters/cat/lopunny-back.svg",
  30218. extra: 1660 / 1490,
  30219. bottom: 25 / 1685
  30220. },
  30221. form: "lopunny"
  30222. },
  30223. },
  30224. [
  30225. {
  30226. name: "Really small",
  30227. height: math.unit(1, "nm")
  30228. },
  30229. {
  30230. name: "Micro",
  30231. height: math.unit(5, "inches")
  30232. },
  30233. {
  30234. name: "Normal",
  30235. height: math.unit(5 + 6 / 12, "feet"),
  30236. default: true
  30237. },
  30238. {
  30239. name: "Macro",
  30240. height: math.unit(50, "feet")
  30241. },
  30242. {
  30243. name: "Macro+",
  30244. height: math.unit(150, "feet")
  30245. },
  30246. {
  30247. name: "Megamacro",
  30248. height: math.unit(100, "miles")
  30249. },
  30250. ]
  30251. ))
  30252. characterMakers.push(() => makeCharacter(
  30253. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30254. {
  30255. front: {
  30256. height: math.unit(63.4, "meters"),
  30257. weight: math.unit(3.28349e+6, "kilograms"),
  30258. name: "Front",
  30259. image: {
  30260. source: "./media/characters/kirina-violet/front.svg",
  30261. extra: 2812 / 2725,
  30262. bottom: 0 / 2812
  30263. }
  30264. },
  30265. back: {
  30266. height: math.unit(63.4, "meters"),
  30267. weight: math.unit(3.28349e+6, "kilograms"),
  30268. name: "Back",
  30269. image: {
  30270. source: "./media/characters/kirina-violet/back.svg",
  30271. extra: 2812 / 2725,
  30272. bottom: 0 / 2812
  30273. }
  30274. },
  30275. mouth: {
  30276. height: math.unit(4.35, "meters"),
  30277. name: "Mouth",
  30278. image: {
  30279. source: "./media/characters/kirina-violet/mouth.svg"
  30280. }
  30281. },
  30282. paw: {
  30283. height: math.unit(5.6, "meters"),
  30284. name: "Paw",
  30285. image: {
  30286. source: "./media/characters/kirina-violet/paw.svg"
  30287. }
  30288. },
  30289. tail: {
  30290. height: math.unit(18, "meters"),
  30291. name: "Tail",
  30292. image: {
  30293. source: "./media/characters/kirina-violet/tail.svg"
  30294. }
  30295. },
  30296. },
  30297. [
  30298. {
  30299. name: "Macro",
  30300. height: math.unit(63.4, "meters"),
  30301. default: true
  30302. },
  30303. ]
  30304. ))
  30305. characterMakers.push(() => makeCharacter(
  30306. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30307. {
  30308. front: {
  30309. height: math.unit(75, "feet"),
  30310. name: "Front",
  30311. image: {
  30312. source: "./media/characters/cat-gigachu/front.svg",
  30313. extra: 1239/1027,
  30314. bottom: 32/1271
  30315. }
  30316. },
  30317. back: {
  30318. height: math.unit(75, "feet"),
  30319. name: "Back",
  30320. image: {
  30321. source: "./media/characters/cat-gigachu/back.svg",
  30322. extra: 1229/1030,
  30323. bottom: 9/1238
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Dynamax",
  30330. height: math.unit(75, "feet"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30337. {
  30338. front: {
  30339. height: math.unit(6, "feet"),
  30340. weight: math.unit(150, "lb"),
  30341. name: "Front",
  30342. image: {
  30343. source: "./media/characters/sfaiyan/front.svg",
  30344. extra: 999 / 978,
  30345. bottom: 5 / 1004
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "Normal",
  30352. height: math.unit(1.82, "meters")
  30353. },
  30354. {
  30355. name: "Giant",
  30356. height: math.unit(2.27, "km"),
  30357. default: true
  30358. },
  30359. ]
  30360. ))
  30361. characterMakers.push(() => makeCharacter(
  30362. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30363. {
  30364. front: {
  30365. height: math.unit(179, "cm"),
  30366. weight: math.unit(100, "kg"),
  30367. name: "Front",
  30368. image: {
  30369. source: "./media/characters/raunehkeli/front.svg",
  30370. extra: 1934 / 1926,
  30371. bottom: 0 / 1934
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Normal",
  30378. height: math.unit(179, "cm")
  30379. },
  30380. {
  30381. name: "Maximum",
  30382. height: math.unit(575, "meters"),
  30383. default: true
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(6, "feet"),
  30392. weight: math.unit(150, "lb"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30396. extra: 2625 / 2518,
  30397. bottom: 60 / 2685
  30398. }
  30399. },
  30400. },
  30401. [
  30402. {
  30403. name: "Normal",
  30404. height: math.unit(6 + 2 / 12, "feet")
  30405. },
  30406. {
  30407. name: "Macro",
  30408. height: math.unit(1180, "feet"),
  30409. default: true
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30415. {
  30416. front: {
  30417. height: math.unit(5 + 6 / 12, "feet"),
  30418. weight: math.unit(108, "lb"),
  30419. name: "Front",
  30420. image: {
  30421. source: "./media/characters/lilith-zott/front.svg",
  30422. extra: 2510 / 2238,
  30423. bottom: 100 / 2610
  30424. }
  30425. },
  30426. frontDressed: {
  30427. height: math.unit(5 + 6 / 12, "feet"),
  30428. weight: math.unit(108, "lb"),
  30429. name: "Front (Dressed)",
  30430. image: {
  30431. source: "./media/characters/lilith-zott/front-dressed.svg",
  30432. extra: 2510 / 2238,
  30433. bottom: 100 / 2610
  30434. }
  30435. },
  30436. },
  30437. [
  30438. {
  30439. name: "Normal",
  30440. height: math.unit(5 + 6 / 12, "feet")
  30441. },
  30442. {
  30443. name: "Macro",
  30444. height: math.unit(1030, "feet"),
  30445. default: true
  30446. },
  30447. ]
  30448. ))
  30449. characterMakers.push(() => makeCharacter(
  30450. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30451. {
  30452. front: {
  30453. height: math.unit(6, "feet"),
  30454. weight: math.unit(150, "lb"),
  30455. name: "Front",
  30456. image: {
  30457. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30458. extra: 2567 / 2435,
  30459. bottom: 39 / 2606
  30460. }
  30461. },
  30462. frontSuper: {
  30463. height: math.unit(6, "feet"),
  30464. name: "Front (Super)",
  30465. image: {
  30466. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30467. extra: 2567 / 2435,
  30468. bottom: 39 / 2606
  30469. }
  30470. },
  30471. },
  30472. [
  30473. {
  30474. name: "Normal",
  30475. height: math.unit(5 + 10 / 12, "feet")
  30476. },
  30477. {
  30478. name: "Macro",
  30479. height: math.unit(1100, "feet"),
  30480. default: true
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(100, "miles"),
  30489. name: "Front",
  30490. image: {
  30491. source: "./media/characters/sona/front.svg",
  30492. extra: 2433 / 2201,
  30493. bottom: 53 / 2486
  30494. }
  30495. },
  30496. foot: {
  30497. height: math.unit(16.1, "miles"),
  30498. name: "Foot",
  30499. image: {
  30500. source: "./media/characters/sona/foot.svg"
  30501. }
  30502. },
  30503. },
  30504. [
  30505. {
  30506. name: "Macro",
  30507. height: math.unit(100, "miles"),
  30508. default: true
  30509. },
  30510. ]
  30511. ))
  30512. characterMakers.push(() => makeCharacter(
  30513. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30514. {
  30515. front: {
  30516. height: math.unit(6, "feet"),
  30517. weight: math.unit(150, "lb"),
  30518. name: "Front",
  30519. image: {
  30520. source: "./media/characters/bailey/front.svg",
  30521. extra: 1778 / 1724,
  30522. bottom: 30 / 1808
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Micro",
  30529. height: math.unit(4, "inches")
  30530. },
  30531. {
  30532. name: "Normal",
  30533. height: math.unit(5 + 5 / 12, "feet"),
  30534. default: true
  30535. },
  30536. {
  30537. name: "Macro",
  30538. height: math.unit(250, "feet")
  30539. },
  30540. {
  30541. name: "Megamacro",
  30542. height: math.unit(100, "miles")
  30543. },
  30544. ]
  30545. ))
  30546. characterMakers.push(() => makeCharacter(
  30547. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30548. {
  30549. front: {
  30550. height: math.unit(5 + 2 / 12, "feet"),
  30551. weight: math.unit(120, "lb"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/snaps/front.svg",
  30555. extra: 2370 / 2177,
  30556. bottom: 48 / 2418
  30557. }
  30558. },
  30559. back: {
  30560. height: math.unit(5 + 2 / 12, "feet"),
  30561. weight: math.unit(120, "lb"),
  30562. name: "Back",
  30563. image: {
  30564. source: "./media/characters/snaps/back.svg",
  30565. extra: 2408 / 2258,
  30566. bottom: 15 / 2423
  30567. }
  30568. },
  30569. },
  30570. [
  30571. {
  30572. name: "Micro",
  30573. height: math.unit(9, "inches")
  30574. },
  30575. {
  30576. name: "Normal",
  30577. height: math.unit(5 + 2 / 12, "feet"),
  30578. default: true
  30579. },
  30580. {
  30581. name: "Mini Macro",
  30582. height: math.unit(10, "feet")
  30583. },
  30584. ]
  30585. ))
  30586. characterMakers.push(() => makeCharacter(
  30587. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30588. {
  30589. front: {
  30590. height: math.unit(1.8, "meters"),
  30591. weight: math.unit(85, "kg"),
  30592. name: "Front",
  30593. image: {
  30594. source: "./media/characters/azteck/front.svg",
  30595. extra: 2815 / 2625,
  30596. bottom: 89 / 2904
  30597. }
  30598. },
  30599. back: {
  30600. height: math.unit(1.8, "meters"),
  30601. weight: math.unit(85, "kg"),
  30602. name: "Back",
  30603. image: {
  30604. source: "./media/characters/azteck/back.svg",
  30605. extra: 2856 / 2648,
  30606. bottom: 85 / 2941
  30607. }
  30608. },
  30609. frontDressed: {
  30610. height: math.unit(1.8, "meters"),
  30611. weight: math.unit(85, "kg"),
  30612. name: "Front (Dressed)",
  30613. image: {
  30614. source: "./media/characters/azteck/front-dressed.svg",
  30615. extra: 2147 / 2003,
  30616. bottom: 68 / 2215
  30617. }
  30618. },
  30619. head: {
  30620. height: math.unit(0.47, "meters"),
  30621. weight: math.unit(85, "kg"),
  30622. name: "Head",
  30623. image: {
  30624. source: "./media/characters/azteck/head.svg"
  30625. }
  30626. },
  30627. },
  30628. [
  30629. {
  30630. name: "Bite sized",
  30631. height: math.unit(16, "cm")
  30632. },
  30633. {
  30634. name: "Normal",
  30635. height: math.unit(1.8, "meters"),
  30636. default: true
  30637. },
  30638. ]
  30639. ))
  30640. characterMakers.push(() => makeCharacter(
  30641. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30642. {
  30643. front: {
  30644. height: math.unit(6, "feet"),
  30645. weight: math.unit(150, "lb"),
  30646. name: "Front",
  30647. image: {
  30648. source: "./media/characters/pidge/front.svg",
  30649. extra: 1936/1820,
  30650. bottom: 0/1936
  30651. }
  30652. },
  30653. back: {
  30654. height: math.unit(6, "feet"),
  30655. weight: math.unit(150, "lb"),
  30656. name: "Back",
  30657. image: {
  30658. source: "./media/characters/pidge/back.svg",
  30659. extra: 1938/1843,
  30660. bottom: 0/1938
  30661. }
  30662. },
  30663. casual: {
  30664. height: math.unit(6, "feet"),
  30665. weight: math.unit(150, "lb"),
  30666. name: "Casual",
  30667. image: {
  30668. source: "./media/characters/pidge/casual.svg",
  30669. extra: 1936/1820,
  30670. bottom: 0/1936
  30671. }
  30672. },
  30673. tech: {
  30674. height: math.unit(6, "feet"),
  30675. weight: math.unit(150, "lb"),
  30676. name: "Tech",
  30677. image: {
  30678. source: "./media/characters/pidge/tech.svg",
  30679. extra: 1802/1682,
  30680. bottom: 0/1802
  30681. }
  30682. },
  30683. head: {
  30684. height: math.unit(1.61, "feet"),
  30685. name: "Head",
  30686. image: {
  30687. source: "./media/characters/pidge/head.svg"
  30688. }
  30689. },
  30690. collar: {
  30691. height: math.unit(0.82, "feet"),
  30692. name: "Collar",
  30693. image: {
  30694. source: "./media/characters/pidge/collar.svg"
  30695. }
  30696. },
  30697. },
  30698. [
  30699. {
  30700. name: "Macro",
  30701. height: math.unit(2, "mile"),
  30702. default: true
  30703. },
  30704. {
  30705. name: "PUPPY",
  30706. height: math.unit(20, "miles")
  30707. },
  30708. ]
  30709. ))
  30710. characterMakers.push(() => makeCharacter(
  30711. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30712. {
  30713. front: {
  30714. height: math.unit(6, "feet"),
  30715. weight: math.unit(150, "lb"),
  30716. name: "Front",
  30717. image: {
  30718. source: "./media/characters/en/front.svg",
  30719. extra: 1697 / 1563,
  30720. bottom: 103 / 1800
  30721. }
  30722. },
  30723. back: {
  30724. height: math.unit(6, "feet"),
  30725. weight: math.unit(150, "lb"),
  30726. name: "Back",
  30727. image: {
  30728. source: "./media/characters/en/back.svg",
  30729. extra: 1700 / 1570,
  30730. bottom: 51 / 1751
  30731. }
  30732. },
  30733. frontDressed: {
  30734. height: math.unit(6, "feet"),
  30735. weight: math.unit(150, "lb"),
  30736. name: "Front (Dressed)",
  30737. image: {
  30738. source: "./media/characters/en/front-dressed.svg",
  30739. extra: 1697 / 1563,
  30740. bottom: 103 / 1800
  30741. }
  30742. },
  30743. backDressed: {
  30744. height: math.unit(6, "feet"),
  30745. weight: math.unit(150, "lb"),
  30746. name: "Back (Dressed)",
  30747. image: {
  30748. source: "./media/characters/en/back-dressed.svg",
  30749. extra: 1700 / 1570,
  30750. bottom: 51 / 1751
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Macro",
  30757. height: math.unit(210, "feet"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30764. {
  30765. front: {
  30766. height: math.unit(6, "feet"),
  30767. weight: math.unit(150, "lb"),
  30768. name: "Front",
  30769. image: {
  30770. source: "./media/characters/haze-orris/front.svg",
  30771. extra: 3975 / 3525,
  30772. bottom: 137 / 4112
  30773. }
  30774. },
  30775. },
  30776. [
  30777. {
  30778. name: "Micro",
  30779. height: math.unit(150, "mm"),
  30780. default: true
  30781. },
  30782. ]
  30783. ))
  30784. characterMakers.push(() => makeCharacter(
  30785. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30786. {
  30787. front: {
  30788. height: math.unit(6, "feet"),
  30789. weight: math.unit(150, "lb"),
  30790. name: "Front",
  30791. image: {
  30792. source: "./media/characters/casselene-yaro/front.svg",
  30793. extra: 4721 / 4541,
  30794. bottom: 82 / 4803
  30795. }
  30796. },
  30797. back: {
  30798. height: math.unit(6, "feet"),
  30799. weight: math.unit(150, "lb"),
  30800. name: "Back",
  30801. image: {
  30802. source: "./media/characters/casselene-yaro/back.svg",
  30803. extra: 4569 / 4377,
  30804. bottom: 69 / 4638
  30805. }
  30806. },
  30807. dressed: {
  30808. height: math.unit(6, "feet"),
  30809. weight: math.unit(150, "lb"),
  30810. name: "Dressed",
  30811. image: {
  30812. source: "./media/characters/casselene-yaro/dressed.svg",
  30813. extra: 4721 / 4541,
  30814. bottom: 82 / 4803
  30815. }
  30816. },
  30817. maw: {
  30818. height: math.unit(1, "feet"),
  30819. name: "Maw",
  30820. image: {
  30821. source: "./media/characters/casselene-yaro/maw.svg"
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Macro",
  30828. height: math.unit(190, "feet"),
  30829. default: true
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(10, "feet"),
  30838. weight: math.unit(15015, "lb"),
  30839. name: "Front",
  30840. image: {
  30841. source: "./media/characters/platine/front.svg",
  30842. extra: 1741/1650,
  30843. bottom: 84/1825
  30844. }
  30845. },
  30846. side: {
  30847. height: math.unit(10, "feet"),
  30848. weight: math.unit(15015, "lb"),
  30849. name: "Side",
  30850. image: {
  30851. source: "./media/characters/platine/side.svg",
  30852. extra: 1790/1705,
  30853. bottom: 29/1819
  30854. }
  30855. },
  30856. },
  30857. [
  30858. {
  30859. name: "Normal",
  30860. height: math.unit(10, "feet"),
  30861. default: true
  30862. },
  30863. {
  30864. name: "Macro",
  30865. height: math.unit(100, "feet")
  30866. },
  30867. {
  30868. name: "Megamacro",
  30869. height: math.unit(1000, "feet")
  30870. },
  30871. ]
  30872. ))
  30873. characterMakers.push(() => makeCharacter(
  30874. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30875. {
  30876. front: {
  30877. height: math.unit(15 + 5 / 12, "feet"),
  30878. weight: math.unit(4600, "lb"),
  30879. name: "Front",
  30880. image: {
  30881. source: "./media/characters/neapolitan-ananassa/front.svg",
  30882. extra: 2903 / 2736,
  30883. bottom: 0 / 2903
  30884. }
  30885. },
  30886. side: {
  30887. height: math.unit(15 + 5 / 12, "feet"),
  30888. weight: math.unit(4600, "lb"),
  30889. name: "Side",
  30890. image: {
  30891. source: "./media/characters/neapolitan-ananassa/side.svg",
  30892. extra: 2925 / 2719,
  30893. bottom: 0 / 2925
  30894. }
  30895. },
  30896. back: {
  30897. height: math.unit(15 + 5 / 12, "feet"),
  30898. weight: math.unit(4600, "lb"),
  30899. name: "Back",
  30900. image: {
  30901. source: "./media/characters/neapolitan-ananassa/back.svg",
  30902. extra: 2903 / 2736,
  30903. bottom: 0 / 2903
  30904. }
  30905. },
  30906. },
  30907. [
  30908. {
  30909. name: "Normal",
  30910. height: math.unit(15 + 5 / 12, "feet"),
  30911. default: true
  30912. },
  30913. {
  30914. name: "Post-Millenium",
  30915. height: math.unit(35 + 5 / 12, "feet")
  30916. },
  30917. {
  30918. name: "Post-Era",
  30919. height: math.unit(450 + 5 / 12, "feet")
  30920. },
  30921. ]
  30922. ))
  30923. characterMakers.push(() => makeCharacter(
  30924. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30925. {
  30926. front: {
  30927. height: math.unit(300, "meters"),
  30928. weight: math.unit(125000, "tonnes"),
  30929. name: "Front",
  30930. image: {
  30931. source: "./media/characters/pazuzu/front.svg",
  30932. extra: 877 / 794,
  30933. bottom: 47 / 924
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Macro",
  30940. height: math.unit(300, "meters"),
  30941. default: true
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30947. {
  30948. side: {
  30949. height: math.unit(10 + 7 / 12, "feet"),
  30950. weight: math.unit(2.5, "tons"),
  30951. name: "Side",
  30952. image: {
  30953. source: "./media/characters/aasha/side.svg",
  30954. extra: 1345 / 1245,
  30955. bottom: 111 / 1456
  30956. }
  30957. },
  30958. back: {
  30959. height: math.unit(10 + 7 / 12, "feet"),
  30960. weight: math.unit(2.5, "tons"),
  30961. name: "Back",
  30962. image: {
  30963. source: "./media/characters/aasha/back.svg",
  30964. extra: 1133 / 1057,
  30965. bottom: 257 / 1390
  30966. }
  30967. },
  30968. },
  30969. [
  30970. {
  30971. name: "Normal",
  30972. height: math.unit(10 + 7 / 12, "feet"),
  30973. default: true
  30974. },
  30975. ]
  30976. ))
  30977. characterMakers.push(() => makeCharacter(
  30978. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30979. {
  30980. front: {
  30981. height: math.unit(6 + 3 / 12, "feet"),
  30982. name: "Front",
  30983. image: {
  30984. source: "./media/characters/nevan/front.svg",
  30985. extra: 704 / 704,
  30986. bottom: 28 / 732
  30987. }
  30988. },
  30989. back: {
  30990. height: math.unit(6 + 3 / 12, "feet"),
  30991. name: "Back",
  30992. image: {
  30993. source: "./media/characters/nevan/back.svg",
  30994. extra: 714 / 714,
  30995. bottom: 21 / 735
  30996. }
  30997. },
  30998. frontFlaccid: {
  30999. height: math.unit(6 + 3 / 12, "feet"),
  31000. name: "Front (Flaccid)",
  31001. image: {
  31002. source: "./media/characters/nevan/front-flaccid.svg",
  31003. extra: 704 / 704,
  31004. bottom: 28 / 732
  31005. }
  31006. },
  31007. frontErect: {
  31008. height: math.unit(6 + 3 / 12, "feet"),
  31009. name: "Front (Erect)",
  31010. image: {
  31011. source: "./media/characters/nevan/front-erect.svg",
  31012. extra: 704 / 704,
  31013. bottom: 28 / 732
  31014. }
  31015. },
  31016. backFlaccid: {
  31017. height: math.unit(6 + 3 / 12, "feet"),
  31018. name: "Back (Flaccid)",
  31019. image: {
  31020. source: "./media/characters/nevan/back-flaccid.svg",
  31021. extra: 714 / 714,
  31022. bottom: 21 / 735
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(6 + 3 / 12, "feet"),
  31030. default: true
  31031. },
  31032. ]
  31033. ))
  31034. characterMakers.push(() => makeCharacter(
  31035. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31036. {
  31037. front: {
  31038. height: math.unit(4, "feet"),
  31039. name: "Front",
  31040. image: {
  31041. source: "./media/characters/arhan/front.svg",
  31042. extra: 3368 / 3133,
  31043. bottom: 0 / 3368
  31044. }
  31045. },
  31046. side: {
  31047. height: math.unit(4, "feet"),
  31048. name: "Side",
  31049. image: {
  31050. source: "./media/characters/arhan/side.svg",
  31051. extra: 3347 / 3105,
  31052. bottom: 0 / 3347
  31053. }
  31054. },
  31055. tongue: {
  31056. height: math.unit(1.42, "feet"),
  31057. name: "Tongue",
  31058. image: {
  31059. source: "./media/characters/arhan/tongue.svg"
  31060. }
  31061. },
  31062. head: {
  31063. height: math.unit(0.85, "feet"),
  31064. name: "Head",
  31065. image: {
  31066. source: "./media/characters/arhan/head.svg"
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Normal",
  31073. height: math.unit(4, "feet"),
  31074. default: true
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31080. {
  31081. front: {
  31082. height: math.unit(5 + 7.5 / 12, "feet"),
  31083. weight: math.unit(120, "lb"),
  31084. name: "Front",
  31085. image: {
  31086. source: "./media/characters/digi-duncan/front.svg",
  31087. extra: 330 / 326,
  31088. bottom: 16 / 346
  31089. }
  31090. },
  31091. side: {
  31092. height: math.unit(5 + 7.5 / 12, "feet"),
  31093. weight: math.unit(120, "lb"),
  31094. name: "Side",
  31095. image: {
  31096. source: "./media/characters/digi-duncan/side.svg",
  31097. extra: 341 / 337,
  31098. bottom: 1 / 342
  31099. }
  31100. },
  31101. back: {
  31102. height: math.unit(5 + 7.5 / 12, "feet"),
  31103. weight: math.unit(120, "lb"),
  31104. name: "Back",
  31105. image: {
  31106. source: "./media/characters/digi-duncan/back.svg",
  31107. extra: 330 / 326,
  31108. bottom: 12 / 342
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Speck",
  31115. height: math.unit(0.25, "mm")
  31116. },
  31117. {
  31118. name: "Micro",
  31119. height: math.unit(5, "mm")
  31120. },
  31121. {
  31122. name: "Tiny",
  31123. height: math.unit(0.5, "inches"),
  31124. default: true
  31125. },
  31126. {
  31127. name: "Human",
  31128. height: math.unit(5 + 7.5 / 12, "feet")
  31129. },
  31130. {
  31131. name: "Minigiant",
  31132. height: math.unit(8 + 5.25, "feet")
  31133. },
  31134. {
  31135. name: "Giant",
  31136. height: math.unit(2000, "feet")
  31137. },
  31138. {
  31139. name: "Mega",
  31140. height: math.unit(371.1, "miles")
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31146. {
  31147. front: {
  31148. height: math.unit(2, "meters"),
  31149. weight: math.unit(350, "kg"),
  31150. name: "Front",
  31151. image: {
  31152. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31153. extra: 898 / 838,
  31154. bottom: 9 / 907
  31155. }
  31156. },
  31157. },
  31158. [
  31159. {
  31160. name: "Micro",
  31161. height: math.unit(8, "meters")
  31162. },
  31163. {
  31164. name: "Normal",
  31165. height: math.unit(50, "meters"),
  31166. default: true
  31167. },
  31168. {
  31169. name: "Macro",
  31170. height: math.unit(500, "meters")
  31171. },
  31172. ]
  31173. ))
  31174. characterMakers.push(() => makeCharacter(
  31175. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31176. {
  31177. front: {
  31178. height: math.unit(6 + 6 / 12, "feet"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/khardesh/front.svg",
  31182. extra: 1788/1596,
  31183. bottom: 66/1854
  31184. }
  31185. },
  31186. back: {
  31187. height: math.unit(6 + 6 / 12, "feet"),
  31188. name: "Back",
  31189. image: {
  31190. source: "./media/characters/khardesh/back.svg",
  31191. extra: 1781/1584,
  31192. bottom: 68/1849
  31193. }
  31194. },
  31195. },
  31196. [
  31197. {
  31198. name: "Normal",
  31199. height: math.unit(6 + 6 / 12, "feet"),
  31200. default: true
  31201. },
  31202. {
  31203. name: "Normal+",
  31204. height: math.unit(4, "meters")
  31205. },
  31206. {
  31207. name: "Macro",
  31208. height: math.unit(50, "meters")
  31209. },
  31210. {
  31211. name: "Macro+",
  31212. height: math.unit(100, "meters")
  31213. },
  31214. {
  31215. name: "Megamacro",
  31216. height: math.unit(20, "km")
  31217. },
  31218. ]
  31219. ))
  31220. characterMakers.push(() => makeCharacter(
  31221. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31222. {
  31223. front: {
  31224. height: math.unit(6, "feet"),
  31225. weight: math.unit(150, "lb"),
  31226. name: "Front",
  31227. image: {
  31228. source: "./media/characters/kosho/front.svg",
  31229. extra: 1847 / 1847,
  31230. bottom: 86 / 1933
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Second-stage micro",
  31237. height: math.unit(0.5, "inches")
  31238. },
  31239. {
  31240. name: "First-stage micro",
  31241. height: math.unit(6, "inches")
  31242. },
  31243. {
  31244. name: "Normal",
  31245. height: math.unit(6, "feet"),
  31246. default: true
  31247. },
  31248. {
  31249. name: "First-stage macro",
  31250. height: math.unit(72, "feet")
  31251. },
  31252. {
  31253. name: "Second-stage macro",
  31254. height: math.unit(864, "feet")
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31260. {
  31261. normal: {
  31262. height: math.unit(4 + 6 / 12, "feet"),
  31263. name: "Normal",
  31264. image: {
  31265. source: "./media/characters/hydra/normal.svg",
  31266. extra: 2833 / 2634,
  31267. bottom: 68 / 2901
  31268. }
  31269. },
  31270. smol: {
  31271. height: math.unit(0.705, "inches"),
  31272. name: "Smol",
  31273. image: {
  31274. source: "./media/characters/hydra/smol.svg",
  31275. extra: 2715 / 2540,
  31276. bottom: 0 / 2715
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Normal",
  31283. height: math.unit(4 + 6 / 12, "feet"),
  31284. default: true
  31285. }
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(0.6, "cm"),
  31293. name: "Front",
  31294. image: {
  31295. source: "./media/characters/daz/front.svg",
  31296. extra: 1682 / 1164,
  31297. bottom: 42 / 1724
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Normal",
  31304. height: math.unit(0.6, "cm"),
  31305. default: true
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31311. {
  31312. front: {
  31313. height: math.unit(6, "feet"),
  31314. weight: math.unit(235, "lb"),
  31315. name: "Front",
  31316. image: {
  31317. source: "./media/characters/theo-pangolin/front.svg",
  31318. extra: 1996 / 1969,
  31319. bottom: 115 / 2111
  31320. }
  31321. },
  31322. back: {
  31323. height: math.unit(6, "feet"),
  31324. weight: math.unit(235, "lb"),
  31325. name: "Back",
  31326. image: {
  31327. source: "./media/characters/theo-pangolin/back.svg",
  31328. extra: 1979 / 1979,
  31329. bottom: 40 / 2019
  31330. }
  31331. },
  31332. feral: {
  31333. height: math.unit(2, "feet"),
  31334. weight: math.unit(30, "lb"),
  31335. name: "Feral",
  31336. image: {
  31337. source: "./media/characters/theo-pangolin/feral.svg",
  31338. extra: 803 / 791,
  31339. bottom: 181 / 984
  31340. }
  31341. },
  31342. footFive: {
  31343. height: math.unit(1.43, "feet"),
  31344. name: "Foot (Five Toes)",
  31345. image: {
  31346. source: "./media/characters/theo-pangolin/foot-five.svg"
  31347. }
  31348. },
  31349. footFour: {
  31350. height: math.unit(1.43, "feet"),
  31351. name: "Foot (Four Toes)",
  31352. image: {
  31353. source: "./media/characters/theo-pangolin/foot-four.svg"
  31354. }
  31355. },
  31356. handFour: {
  31357. height: math.unit(0.81, "feet"),
  31358. name: "Hand (Four Fingers)",
  31359. image: {
  31360. source: "./media/characters/theo-pangolin/hand-four.svg"
  31361. }
  31362. },
  31363. handThree: {
  31364. height: math.unit(0.81, "feet"),
  31365. name: "Hand (Three Fingers)",
  31366. image: {
  31367. source: "./media/characters/theo-pangolin/hand-three.svg"
  31368. }
  31369. },
  31370. headFront: {
  31371. height: math.unit(1.37, "feet"),
  31372. name: "Head (Front)",
  31373. image: {
  31374. source: "./media/characters/theo-pangolin/head-front.svg"
  31375. }
  31376. },
  31377. headSide: {
  31378. height: math.unit(1.43, "feet"),
  31379. name: "Head (Side)",
  31380. image: {
  31381. source: "./media/characters/theo-pangolin/head-side.svg"
  31382. }
  31383. },
  31384. tongue: {
  31385. height: math.unit(2.29, "feet"),
  31386. name: "Tongue",
  31387. image: {
  31388. source: "./media/characters/theo-pangolin/tongue.svg"
  31389. }
  31390. },
  31391. },
  31392. [
  31393. {
  31394. name: "Normal",
  31395. height: math.unit(6, "feet")
  31396. },
  31397. {
  31398. name: "Macro",
  31399. height: math.unit(400, "feet"),
  31400. default: true
  31401. },
  31402. ]
  31403. ))
  31404. characterMakers.push(() => makeCharacter(
  31405. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31406. {
  31407. front: {
  31408. height: math.unit(6, "inches"),
  31409. weight: math.unit(0.036, "kg"),
  31410. name: "Front",
  31411. image: {
  31412. source: "./media/characters/renée/front.svg",
  31413. extra: 900 / 886,
  31414. bottom: 8 / 908
  31415. }
  31416. },
  31417. },
  31418. [
  31419. {
  31420. name: "Nano",
  31421. height: math.unit(1, "nm")
  31422. },
  31423. {
  31424. name: "Micro",
  31425. height: math.unit(1, "mm")
  31426. },
  31427. {
  31428. name: "Normal",
  31429. height: math.unit(6, "inches")
  31430. },
  31431. {
  31432. name: "Macro",
  31433. height: math.unit(2000, "feet"),
  31434. default: true
  31435. },
  31436. {
  31437. name: "Megamacro",
  31438. height: math.unit(2, "km")
  31439. },
  31440. {
  31441. name: "Gigamacro",
  31442. height: math.unit(2000, "km")
  31443. },
  31444. {
  31445. name: "Teramacro",
  31446. height: math.unit(250000, "km")
  31447. },
  31448. ]
  31449. ))
  31450. characterMakers.push(() => makeCharacter(
  31451. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31452. {
  31453. front: {
  31454. height: math.unit(4, "meters"),
  31455. weight: math.unit(150, "kg"),
  31456. name: "Front",
  31457. image: {
  31458. source: "./media/characters/caledvwlch/front.svg",
  31459. extra: 1760 / 1551,
  31460. bottom: 28 / 1788
  31461. }
  31462. },
  31463. side: {
  31464. height: math.unit(4, "meters"),
  31465. weight: math.unit(150, "kg"),
  31466. name: "Side",
  31467. image: {
  31468. source: "./media/characters/caledvwlch/side.svg",
  31469. extra: 1605 / 1536,
  31470. bottom: 31 / 1636
  31471. }
  31472. },
  31473. back: {
  31474. height: math.unit(4, "meters"),
  31475. weight: math.unit(150, "kg"),
  31476. name: "Back",
  31477. image: {
  31478. source: "./media/characters/caledvwlch/back.svg",
  31479. extra: 1635 / 1565,
  31480. bottom: 27 / 1662
  31481. }
  31482. },
  31483. },
  31484. [
  31485. {
  31486. name: "\"Incognito\"",
  31487. height: math.unit(4, "meters")
  31488. },
  31489. {
  31490. name: "Small rampage",
  31491. height: math.unit(600, "meters")
  31492. },
  31493. {
  31494. name: "Mega",
  31495. height: math.unit(30, "km")
  31496. },
  31497. {
  31498. name: "Home-size",
  31499. height: math.unit(50, "km"),
  31500. default: true
  31501. },
  31502. {
  31503. name: "Giga",
  31504. height: math.unit(300, "km")
  31505. },
  31506. {
  31507. name: "Lounging",
  31508. height: math.unit(11000, "km")
  31509. },
  31510. {
  31511. name: "Planet snacking",
  31512. height: math.unit(2000000, "km")
  31513. },
  31514. ]
  31515. ))
  31516. characterMakers.push(() => makeCharacter(
  31517. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31518. {
  31519. front: {
  31520. height: math.unit(6, "feet"),
  31521. weight: math.unit(215, "lb"),
  31522. name: "Front",
  31523. image: {
  31524. source: "./media/characters/sapphire-svell/front.svg",
  31525. extra: 495 / 455,
  31526. bottom: 20 / 515
  31527. }
  31528. },
  31529. back: {
  31530. height: math.unit(6, "feet"),
  31531. weight: math.unit(216, "lb"),
  31532. name: "Back",
  31533. image: {
  31534. source: "./media/characters/sapphire-svell/back.svg",
  31535. extra: 497 / 477,
  31536. bottom: 7 / 504
  31537. }
  31538. },
  31539. maw: {
  31540. height: math.unit(1.57, "feet"),
  31541. name: "Maw",
  31542. image: {
  31543. source: "./media/characters/sapphire-svell/maw.svg"
  31544. }
  31545. },
  31546. foot: {
  31547. height: math.unit(1.07, "feet"),
  31548. name: "Foot",
  31549. image: {
  31550. source: "./media/characters/sapphire-svell/foot.svg"
  31551. }
  31552. },
  31553. toering: {
  31554. height: math.unit(1.7, "inch"),
  31555. name: "Toering",
  31556. image: {
  31557. source: "./media/characters/sapphire-svell/toering.svg"
  31558. }
  31559. },
  31560. },
  31561. [
  31562. {
  31563. name: "Normal",
  31564. height: math.unit(300, "feet"),
  31565. default: true
  31566. },
  31567. {
  31568. name: "Augmented",
  31569. height: math.unit(1250, "feet")
  31570. },
  31571. {
  31572. name: "Unleashed",
  31573. height: math.unit(3000, "feet")
  31574. },
  31575. ]
  31576. ))
  31577. characterMakers.push(() => makeCharacter(
  31578. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31579. {
  31580. side: {
  31581. height: math.unit(2 + 3 / 12, "feet"),
  31582. weight: math.unit(110, "lb"),
  31583. name: "Side",
  31584. image: {
  31585. source: "./media/characters/glitch-flux/side.svg",
  31586. extra: 997 / 805,
  31587. bottom: 20 / 1017
  31588. }
  31589. },
  31590. },
  31591. [
  31592. {
  31593. name: "Normal",
  31594. height: math.unit(2 + 3 / 12, "feet"),
  31595. default: true
  31596. },
  31597. ]
  31598. ))
  31599. characterMakers.push(() => makeCharacter(
  31600. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31601. {
  31602. front: {
  31603. height: math.unit(4, "meters"),
  31604. name: "Front",
  31605. image: {
  31606. source: "./media/characters/mid/front.svg",
  31607. extra: 507 / 476,
  31608. bottom: 17 / 524
  31609. }
  31610. },
  31611. back: {
  31612. height: math.unit(4, "meters"),
  31613. name: "Back",
  31614. image: {
  31615. source: "./media/characters/mid/back.svg",
  31616. extra: 519 / 487,
  31617. bottom: 7 / 526
  31618. }
  31619. },
  31620. stuck: {
  31621. height: math.unit(2.2, "meters"),
  31622. name: "Stuck",
  31623. image: {
  31624. source: "./media/characters/mid/stuck.svg",
  31625. extra: 1951 / 1869,
  31626. bottom: 88 / 2039
  31627. }
  31628. }
  31629. },
  31630. [
  31631. {
  31632. name: "Normal",
  31633. height: math.unit(4, "meters"),
  31634. default: true
  31635. },
  31636. {
  31637. name: "Big",
  31638. height: math.unit(10, "meters")
  31639. },
  31640. {
  31641. name: "Macro",
  31642. height: math.unit(800, "meters")
  31643. },
  31644. {
  31645. name: "Megamacro",
  31646. height: math.unit(100, "km")
  31647. },
  31648. {
  31649. name: "Overgrown",
  31650. height: math.unit(1, "parsec")
  31651. },
  31652. ]
  31653. ))
  31654. characterMakers.push(() => makeCharacter(
  31655. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31656. {
  31657. front: {
  31658. height: math.unit(2.5, "meters"),
  31659. weight: math.unit(225, "kg"),
  31660. name: "Front",
  31661. image: {
  31662. source: "./media/characters/iris/front.svg",
  31663. extra: 3348 / 3251,
  31664. bottom: 205 / 3553
  31665. }
  31666. },
  31667. maw: {
  31668. height: math.unit(0.56, "meter"),
  31669. name: "Maw",
  31670. image: {
  31671. source: "./media/characters/iris/maw.svg"
  31672. }
  31673. },
  31674. },
  31675. [
  31676. {
  31677. name: "Mewter cat",
  31678. height: math.unit(1.2, "meters")
  31679. },
  31680. {
  31681. name: "Normal",
  31682. height: math.unit(2.5, "meters"),
  31683. default: true
  31684. },
  31685. {
  31686. name: "Minimacro",
  31687. height: math.unit(18, "feet")
  31688. },
  31689. {
  31690. name: "Macro",
  31691. height: math.unit(140, "feet")
  31692. },
  31693. {
  31694. name: "Macro+",
  31695. height: math.unit(180, "meters")
  31696. },
  31697. {
  31698. name: "Megamacro",
  31699. height: math.unit(2746, "meters")
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31705. {
  31706. front: {
  31707. height: math.unit(6, "feet"),
  31708. weight: math.unit(135, "lb"),
  31709. name: "Front",
  31710. image: {
  31711. source: "./media/characters/axel/front.svg",
  31712. extra: 908 / 908,
  31713. bottom: 58 / 966
  31714. }
  31715. },
  31716. side: {
  31717. height: math.unit(6, "feet"),
  31718. weight: math.unit(135, "lb"),
  31719. name: "Side",
  31720. image: {
  31721. source: "./media/characters/axel/side.svg",
  31722. extra: 958 / 958,
  31723. bottom: 11 / 969
  31724. }
  31725. },
  31726. back: {
  31727. height: math.unit(6, "feet"),
  31728. weight: math.unit(135, "lb"),
  31729. name: "Back",
  31730. image: {
  31731. source: "./media/characters/axel/back.svg",
  31732. extra: 887 / 887,
  31733. bottom: 34 / 921
  31734. }
  31735. },
  31736. head: {
  31737. height: math.unit(1.07, "feet"),
  31738. name: "Head",
  31739. image: {
  31740. source: "./media/characters/axel/head.svg"
  31741. }
  31742. },
  31743. beak: {
  31744. height: math.unit(1.4, "feet"),
  31745. name: "Beak",
  31746. image: {
  31747. source: "./media/characters/axel/beak.svg"
  31748. }
  31749. },
  31750. beakSide: {
  31751. height: math.unit(1.4, "feet"),
  31752. name: "Beak Side",
  31753. image: {
  31754. source: "./media/characters/axel/beak-side.svg"
  31755. }
  31756. },
  31757. sheath: {
  31758. height: math.unit(0.5, "feet"),
  31759. name: "Sheath",
  31760. image: {
  31761. source: "./media/characters/axel/sheath.svg"
  31762. }
  31763. },
  31764. dick: {
  31765. height: math.unit(0.98, "feet"),
  31766. name: "Dick",
  31767. image: {
  31768. source: "./media/characters/axel/dick.svg"
  31769. }
  31770. },
  31771. },
  31772. [
  31773. {
  31774. name: "Macro",
  31775. height: math.unit(68, "meters"),
  31776. default: true
  31777. },
  31778. ]
  31779. ))
  31780. characterMakers.push(() => makeCharacter(
  31781. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31782. {
  31783. front: {
  31784. height: math.unit(3.5, "meters"),
  31785. weight: math.unit(1200, "kg"),
  31786. name: "Front",
  31787. image: {
  31788. source: "./media/characters/joanna/front.svg",
  31789. extra: 1596 / 1488,
  31790. bottom: 29 / 1625
  31791. }
  31792. },
  31793. back: {
  31794. height: math.unit(3.5, "meters"),
  31795. weight: math.unit(1200, "kg"),
  31796. name: "Back",
  31797. image: {
  31798. source: "./media/characters/joanna/back.svg",
  31799. extra: 1594 / 1495,
  31800. bottom: 26 / 1620
  31801. }
  31802. },
  31803. frontShorts: {
  31804. height: math.unit(3.5, "meters"),
  31805. weight: math.unit(1200, "kg"),
  31806. name: "Front (Shorts)",
  31807. image: {
  31808. source: "./media/characters/joanna/front-shorts.svg",
  31809. extra: 1596 / 1488,
  31810. bottom: 29 / 1625
  31811. }
  31812. },
  31813. frontBiker: {
  31814. height: math.unit(3.5, "meters"),
  31815. weight: math.unit(1200, "kg"),
  31816. name: "Front (Biker)",
  31817. image: {
  31818. source: "./media/characters/joanna/front-biker.svg",
  31819. extra: 1596 / 1488,
  31820. bottom: 29 / 1625
  31821. }
  31822. },
  31823. backBiker: {
  31824. height: math.unit(3.5, "meters"),
  31825. weight: math.unit(1200, "kg"),
  31826. name: "Back (Biker)",
  31827. image: {
  31828. source: "./media/characters/joanna/back-biker.svg",
  31829. extra: 1594 / 1495,
  31830. bottom: 88 / 1682
  31831. }
  31832. },
  31833. bikeLeft: {
  31834. height: math.unit(2.4, "meters"),
  31835. weight: math.unit(1600, "kg"),
  31836. name: "Bike (Left)",
  31837. image: {
  31838. source: "./media/characters/joanna/bike-left.svg",
  31839. extra: 720 / 720,
  31840. bottom: 8 / 728
  31841. }
  31842. },
  31843. bikeRight: {
  31844. height: math.unit(2.4, "meters"),
  31845. weight: math.unit(1600, "kg"),
  31846. name: "Bike (Right)",
  31847. image: {
  31848. source: "./media/characters/joanna/bike-right.svg",
  31849. extra: 720 / 720,
  31850. bottom: 8 / 728
  31851. }
  31852. },
  31853. },
  31854. [
  31855. {
  31856. name: "Incognito",
  31857. height: math.unit(3.5, "meters")
  31858. },
  31859. {
  31860. name: "Casual Big",
  31861. height: math.unit(200, "meters")
  31862. },
  31863. {
  31864. name: "Macro",
  31865. height: math.unit(600, "meters")
  31866. },
  31867. {
  31868. name: "Original",
  31869. height: math.unit(20, "km"),
  31870. default: true
  31871. },
  31872. {
  31873. name: "Giga",
  31874. height: math.unit(400, "km")
  31875. },
  31876. {
  31877. name: "Lounging",
  31878. height: math.unit(1500, "km")
  31879. },
  31880. {
  31881. name: "Planetary",
  31882. height: math.unit(200000, "km")
  31883. },
  31884. ]
  31885. ))
  31886. characterMakers.push(() => makeCharacter(
  31887. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31888. {
  31889. front: {
  31890. height: math.unit(6, "feet"),
  31891. weight: math.unit(150, "lb"),
  31892. name: "Front",
  31893. image: {
  31894. source: "./media/characters/hugo-sigil/front.svg",
  31895. extra: 522 / 500,
  31896. bottom: 2 / 524
  31897. }
  31898. },
  31899. back: {
  31900. height: math.unit(6, "feet"),
  31901. weight: math.unit(150, "lb"),
  31902. name: "Back",
  31903. image: {
  31904. source: "./media/characters/hugo-sigil/back.svg",
  31905. extra: 519 / 495,
  31906. bottom: 5 / 524
  31907. }
  31908. },
  31909. maw: {
  31910. height: math.unit(1.4, "feet"),
  31911. weight: math.unit(150, "lb"),
  31912. name: "Maw",
  31913. image: {
  31914. source: "./media/characters/hugo-sigil/maw.svg"
  31915. }
  31916. },
  31917. feet: {
  31918. height: math.unit(1.56, "feet"),
  31919. weight: math.unit(150, "lb"),
  31920. name: "Feet",
  31921. image: {
  31922. source: "./media/characters/hugo-sigil/feet.svg",
  31923. extra: 177 / 177,
  31924. bottom: 12 / 189
  31925. }
  31926. },
  31927. },
  31928. [
  31929. {
  31930. name: "Normal",
  31931. height: math.unit(6, "feet")
  31932. },
  31933. {
  31934. name: "Macro",
  31935. height: math.unit(200, "feet"),
  31936. default: true
  31937. },
  31938. ]
  31939. ))
  31940. characterMakers.push(() => makeCharacter(
  31941. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31942. {
  31943. front: {
  31944. height: math.unit(6, "feet"),
  31945. weight: math.unit(150, "lb"),
  31946. name: "Front",
  31947. image: {
  31948. source: "./media/characters/peri/front.svg",
  31949. extra: 2354 / 2233,
  31950. bottom: 49 / 2403
  31951. }
  31952. },
  31953. },
  31954. [
  31955. {
  31956. name: "Really Small",
  31957. height: math.unit(1, "nm")
  31958. },
  31959. {
  31960. name: "Micro",
  31961. height: math.unit(4, "inches")
  31962. },
  31963. {
  31964. name: "Normal",
  31965. height: math.unit(7, "inches"),
  31966. default: true
  31967. },
  31968. {
  31969. name: "Macro",
  31970. height: math.unit(400, "feet")
  31971. },
  31972. {
  31973. name: "Megamacro",
  31974. height: math.unit(100, "miles")
  31975. },
  31976. ]
  31977. ))
  31978. characterMakers.push(() => makeCharacter(
  31979. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31980. {
  31981. frontSlim: {
  31982. height: math.unit(7, "feet"),
  31983. name: "Front (Slim)",
  31984. image: {
  31985. source: "./media/characters/issilora/front-slim.svg",
  31986. extra: 529 / 449,
  31987. bottom: 53 / 582
  31988. }
  31989. },
  31990. sideSlim: {
  31991. height: math.unit(7, "feet"),
  31992. name: "Side (Slim)",
  31993. image: {
  31994. source: "./media/characters/issilora/side-slim.svg",
  31995. extra: 570 / 480,
  31996. bottom: 30 / 600
  31997. }
  31998. },
  31999. backSlim: {
  32000. height: math.unit(7, "feet"),
  32001. name: "Back (Slim)",
  32002. image: {
  32003. source: "./media/characters/issilora/back-slim.svg",
  32004. extra: 537 / 455,
  32005. bottom: 46 / 583
  32006. }
  32007. },
  32008. frontBuff: {
  32009. height: math.unit(7, "feet"),
  32010. name: "Front (Buff)",
  32011. image: {
  32012. source: "./media/characters/issilora/front-buff.svg",
  32013. extra: 2310 / 2035,
  32014. bottom: 335 / 2645
  32015. }
  32016. },
  32017. head: {
  32018. height: math.unit(1.94, "feet"),
  32019. name: "Head",
  32020. image: {
  32021. source: "./media/characters/issilora/head.svg"
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Minimum",
  32028. height: math.unit(7, "feet")
  32029. },
  32030. {
  32031. name: "Comfortable",
  32032. height: math.unit(17, "feet")
  32033. },
  32034. {
  32035. name: "Fun Size",
  32036. height: math.unit(47, "feet")
  32037. },
  32038. {
  32039. name: "Natural Macro",
  32040. height: math.unit(137, "feet"),
  32041. default: true
  32042. },
  32043. {
  32044. name: "Maximum Kaiju",
  32045. height: math.unit(397, "feet")
  32046. },
  32047. ]
  32048. ))
  32049. characterMakers.push(() => makeCharacter(
  32050. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32051. {
  32052. front: {
  32053. height: math.unit(50 + 9/12, "feet"),
  32054. weight: math.unit(32.8, "tons"),
  32055. name: "Front",
  32056. image: {
  32057. source: "./media/characters/irb'iiritaahn/front.svg",
  32058. extra: 1878/1826,
  32059. bottom: 326/2204
  32060. }
  32061. },
  32062. back: {
  32063. height: math.unit(50 + 9/12, "feet"),
  32064. weight: math.unit(32.8, "tons"),
  32065. name: "Back",
  32066. image: {
  32067. source: "./media/characters/irb'iiritaahn/back.svg",
  32068. extra: 2052/2018,
  32069. bottom: 152/2204
  32070. }
  32071. },
  32072. head: {
  32073. height: math.unit(12.86, "feet"),
  32074. name: "Head",
  32075. image: {
  32076. source: "./media/characters/irb'iiritaahn/head.svg"
  32077. }
  32078. },
  32079. maw: {
  32080. height: math.unit(9.66, "feet"),
  32081. name: "Maw",
  32082. image: {
  32083. source: "./media/characters/irb'iiritaahn/maw.svg"
  32084. }
  32085. },
  32086. frontDick: {
  32087. height: math.unit(8.78461, "feet"),
  32088. name: "Front Dick",
  32089. image: {
  32090. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32091. }
  32092. },
  32093. rearDick: {
  32094. height: math.unit(8.78461, "feet"),
  32095. name: "Rear Dick",
  32096. image: {
  32097. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32098. }
  32099. },
  32100. rearDickUnfolded: {
  32101. height: math.unit(8.78, "feet"),
  32102. name: "Rear Dick (Unfolded)",
  32103. image: {
  32104. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32105. }
  32106. },
  32107. wings: {
  32108. height: math.unit(43, "feet"),
  32109. name: "Wings",
  32110. image: {
  32111. source: "./media/characters/irb'iiritaahn/wings.svg"
  32112. }
  32113. },
  32114. },
  32115. [
  32116. {
  32117. name: "Macro",
  32118. height: math.unit(50 + 9/12, "feet"),
  32119. default: true
  32120. },
  32121. ]
  32122. ))
  32123. characterMakers.push(() => makeCharacter(
  32124. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32125. {
  32126. front: {
  32127. height: math.unit(205, "cm"),
  32128. weight: math.unit(102, "kg"),
  32129. name: "Front",
  32130. image: {
  32131. source: "./media/characters/irbisgreif/front.svg",
  32132. extra: 785/706,
  32133. bottom: 13/798
  32134. }
  32135. },
  32136. back: {
  32137. height: math.unit(205, "cm"),
  32138. weight: math.unit(102, "kg"),
  32139. name: "Back",
  32140. image: {
  32141. source: "./media/characters/irbisgreif/back.svg",
  32142. extra: 713/701,
  32143. bottom: 26/739
  32144. }
  32145. },
  32146. frontDressed: {
  32147. height: math.unit(216, "cm"),
  32148. weight: math.unit(102, "kg"),
  32149. name: "Front-dressed",
  32150. image: {
  32151. source: "./media/characters/irbisgreif/front-dressed.svg",
  32152. extra: 902/776,
  32153. bottom: 14/916
  32154. }
  32155. },
  32156. sideDressed: {
  32157. height: math.unit(195, "cm"),
  32158. weight: math.unit(102, "kg"),
  32159. name: "Side-dressed",
  32160. image: {
  32161. source: "./media/characters/irbisgreif/side-dressed.svg",
  32162. extra: 788/688,
  32163. bottom: 21/809
  32164. }
  32165. },
  32166. backDressed: {
  32167. height: math.unit(216, "cm"),
  32168. weight: math.unit(102, "kg"),
  32169. name: "Back-dressed",
  32170. image: {
  32171. source: "./media/characters/irbisgreif/back-dressed.svg",
  32172. extra: 901/783,
  32173. bottom: 10/911
  32174. }
  32175. },
  32176. dick: {
  32177. height: math.unit(0.49, "feet"),
  32178. name: "Dick",
  32179. image: {
  32180. source: "./media/characters/irbisgreif/dick.svg"
  32181. }
  32182. },
  32183. wingTop: {
  32184. height: math.unit(1.93 , "feet"),
  32185. name: "Wing-top",
  32186. image: {
  32187. source: "./media/characters/irbisgreif/wing-top.svg"
  32188. }
  32189. },
  32190. wingBottom: {
  32191. height: math.unit(1.93 , "feet"),
  32192. name: "Wing-bottom",
  32193. image: {
  32194. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32195. }
  32196. },
  32197. },
  32198. [
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(216, "cm"),
  32202. default: true
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32208. {
  32209. front: {
  32210. height: math.unit(6, "feet"),
  32211. weight: math.unit(150, "lb"),
  32212. name: "Front",
  32213. image: {
  32214. source: "./media/characters/pride/front.svg",
  32215. extra: 1299/1230,
  32216. bottom: 18/1317
  32217. }
  32218. },
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(7, "feet")
  32224. },
  32225. {
  32226. name: "Mini-macro",
  32227. height: math.unit(11, "feet")
  32228. },
  32229. {
  32230. name: "Macro",
  32231. height: math.unit(15, "meters"),
  32232. default: true
  32233. },
  32234. {
  32235. name: "Macro+",
  32236. height: math.unit(40, "meters")
  32237. },
  32238. ]
  32239. ))
  32240. characterMakers.push(() => makeCharacter(
  32241. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32242. {
  32243. front: {
  32244. height: math.unit(4 + 2 / 12, "feet"),
  32245. weight: math.unit(95, "lb"),
  32246. name: "Front",
  32247. image: {
  32248. source: "./media/characters/vaelophis-nyx/front.svg",
  32249. extra: 2532/2330,
  32250. bottom: 0/2532
  32251. }
  32252. },
  32253. back: {
  32254. height: math.unit(4 + 2 / 12, "feet"),
  32255. weight: math.unit(95, "lb"),
  32256. name: "Back",
  32257. image: {
  32258. source: "./media/characters/vaelophis-nyx/back.svg",
  32259. extra: 2484/2361,
  32260. bottom: 0/2484
  32261. }
  32262. },
  32263. feralSide: {
  32264. height: math.unit(2 + 1/12, "feet"),
  32265. weight: math.unit(20, "lb"),
  32266. name: "Feral (Side)",
  32267. image: {
  32268. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32269. extra: 1721/1581,
  32270. bottom: 70/1791
  32271. }
  32272. },
  32273. feralLazing: {
  32274. height: math.unit(1.08, "feet"),
  32275. weight: math.unit(20, "lb"),
  32276. name: "Feral (Lazing)",
  32277. image: {
  32278. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32279. extra: 822/822,
  32280. bottom: 248/1070
  32281. }
  32282. },
  32283. ear: {
  32284. height: math.unit(0.416, "feet"),
  32285. name: "Ear",
  32286. image: {
  32287. source: "./media/characters/vaelophis-nyx/ear.svg"
  32288. }
  32289. },
  32290. eye: {
  32291. height: math.unit(0.0748, "feet"),
  32292. name: "Eye",
  32293. image: {
  32294. source: "./media/characters/vaelophis-nyx/eye.svg"
  32295. }
  32296. },
  32297. mouth: {
  32298. height: math.unit(0.378, "feet"),
  32299. name: "Mouth",
  32300. image: {
  32301. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32302. }
  32303. },
  32304. spade: {
  32305. height: math.unit(0.55, "feet"),
  32306. name: "Spade",
  32307. image: {
  32308. source: "./media/characters/vaelophis-nyx/spade.svg"
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "Normal",
  32315. height: math.unit(4 + 2/12, "feet"),
  32316. default: true
  32317. },
  32318. ]
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32322. {
  32323. front: {
  32324. height: math.unit(7, "feet"),
  32325. weight: math.unit(231, "lb"),
  32326. name: "Front",
  32327. image: {
  32328. source: "./media/characters/flux/front.svg",
  32329. extra: 919/871,
  32330. bottom: 0/919
  32331. }
  32332. },
  32333. back: {
  32334. height: math.unit(7, "feet"),
  32335. weight: math.unit(231, "lb"),
  32336. name: "Back",
  32337. image: {
  32338. source: "./media/characters/flux/back.svg",
  32339. extra: 1040/992,
  32340. bottom: 0/1040
  32341. }
  32342. },
  32343. frontDressed: {
  32344. height: math.unit(7, "feet"),
  32345. weight: math.unit(231, "lb"),
  32346. name: "Front (Dressed)",
  32347. image: {
  32348. source: "./media/characters/flux/front-dressed.svg",
  32349. extra: 919/871,
  32350. bottom: 0/919
  32351. }
  32352. },
  32353. feralSide: {
  32354. height: math.unit(5, "feet"),
  32355. weight: math.unit(150, "lb"),
  32356. name: "Feral (Side)",
  32357. image: {
  32358. source: "./media/characters/flux/feral-side.svg",
  32359. extra: 598/528,
  32360. bottom: 28/626
  32361. }
  32362. },
  32363. head: {
  32364. height: math.unit(1.585, "feet"),
  32365. name: "Head",
  32366. image: {
  32367. source: "./media/characters/flux/head.svg"
  32368. }
  32369. },
  32370. headSide: {
  32371. height: math.unit(1.74, "feet"),
  32372. name: "Head (Side)",
  32373. image: {
  32374. source: "./media/characters/flux/head-side.svg"
  32375. }
  32376. },
  32377. headSideFire: {
  32378. height: math.unit(1.76, "feet"),
  32379. name: "Head (Side, Fire)",
  32380. image: {
  32381. source: "./media/characters/flux/head-side-fire.svg"
  32382. }
  32383. },
  32384. },
  32385. [
  32386. {
  32387. name: "Normal",
  32388. height: math.unit(7, "feet"),
  32389. default: true
  32390. },
  32391. ]
  32392. ))
  32393. characterMakers.push(() => makeCharacter(
  32394. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32395. {
  32396. front: {
  32397. height: math.unit(9, "feet"),
  32398. weight: math.unit(1012, "lb"),
  32399. name: "Front",
  32400. image: {
  32401. source: "./media/characters/ulfra-lupae/front.svg",
  32402. extra: 1083/1011,
  32403. bottom: 67/1150
  32404. }
  32405. },
  32406. },
  32407. [
  32408. {
  32409. name: "Micro",
  32410. height: math.unit(6, "inches")
  32411. },
  32412. {
  32413. name: "Socializing",
  32414. height: math.unit(6 + 5/12, "feet")
  32415. },
  32416. {
  32417. name: "Normal",
  32418. height: math.unit(9, "feet"),
  32419. default: true
  32420. },
  32421. {
  32422. name: "Macro",
  32423. height: math.unit(150, "feet")
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32429. {
  32430. front: {
  32431. height: math.unit(5 + 2/12, "feet"),
  32432. weight: math.unit(120, "lb"),
  32433. name: "Front",
  32434. image: {
  32435. source: "./media/characters/timber/front.svg",
  32436. extra: 2814/2705,
  32437. bottom: 181/2995
  32438. }
  32439. },
  32440. },
  32441. [
  32442. {
  32443. name: "Normal",
  32444. height: math.unit(5 + 2/12, "feet"),
  32445. default: true
  32446. },
  32447. ]
  32448. ))
  32449. characterMakers.push(() => makeCharacter(
  32450. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32451. {
  32452. front: {
  32453. height: math.unit(9, "feet"),
  32454. name: "Front",
  32455. image: {
  32456. source: "./media/characters/nicki/front.svg",
  32457. extra: 1240/990,
  32458. bottom: 45/1285
  32459. },
  32460. form: "anthro",
  32461. default: true
  32462. },
  32463. side: {
  32464. height: math.unit(9, "feet"),
  32465. name: "Side",
  32466. image: {
  32467. source: "./media/characters/nicki/side.svg",
  32468. extra: 1047/973,
  32469. bottom: 61/1108
  32470. },
  32471. form: "anthro"
  32472. },
  32473. back: {
  32474. height: math.unit(9, "feet"),
  32475. name: "Back",
  32476. image: {
  32477. source: "./media/characters/nicki/back.svg",
  32478. extra: 1006/965,
  32479. bottom: 39/1045
  32480. },
  32481. form: "anthro"
  32482. },
  32483. taur: {
  32484. height: math.unit(15, "feet"),
  32485. name: "Taur",
  32486. image: {
  32487. source: "./media/characters/nicki/taur.svg",
  32488. extra: 1592/1347,
  32489. bottom: 0/1592
  32490. },
  32491. form: "taur",
  32492. default: true
  32493. },
  32494. },
  32495. [
  32496. {
  32497. name: "Normal",
  32498. height: math.unit(9, "feet"),
  32499. form: "anthro",
  32500. default: true
  32501. },
  32502. {
  32503. name: "Normal",
  32504. height: math.unit(15, "feet"),
  32505. form: "taur",
  32506. default: true
  32507. }
  32508. ],
  32509. {
  32510. "anthro": {
  32511. name: "Anthro",
  32512. default: true
  32513. },
  32514. "taur": {
  32515. name: "Taur"
  32516. }
  32517. }
  32518. ))
  32519. characterMakers.push(() => makeCharacter(
  32520. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32521. {
  32522. front: {
  32523. height: math.unit(7 + 10/12, "feet"),
  32524. weight: math.unit(3.5, "tons"),
  32525. name: "Front",
  32526. image: {
  32527. source: "./media/characters/lee/front.svg",
  32528. extra: 1773/1615,
  32529. bottom: 86/1859
  32530. }
  32531. },
  32532. hand: {
  32533. height: math.unit(1.78, "feet"),
  32534. name: "Hand",
  32535. image: {
  32536. source: "./media/characters/lee/hand.svg"
  32537. }
  32538. },
  32539. maw: {
  32540. height: math.unit(1.18, "feet"),
  32541. name: "Maw",
  32542. image: {
  32543. source: "./media/characters/lee/maw.svg"
  32544. }
  32545. },
  32546. },
  32547. [
  32548. {
  32549. name: "Normal",
  32550. height: math.unit(7 + 10/12, "feet"),
  32551. default: true
  32552. },
  32553. ]
  32554. ))
  32555. characterMakers.push(() => makeCharacter(
  32556. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32557. {
  32558. front: {
  32559. height: math.unit(9, "feet"),
  32560. name: "Front",
  32561. image: {
  32562. source: "./media/characters/guti/front.svg",
  32563. extra: 4551/4355,
  32564. bottom: 123/4674
  32565. }
  32566. },
  32567. tongue: {
  32568. height: math.unit(1, "feet"),
  32569. name: "Tongue",
  32570. image: {
  32571. source: "./media/characters/guti/tongue.svg"
  32572. }
  32573. },
  32574. paw: {
  32575. height: math.unit(1.18, "feet"),
  32576. name: "Paw",
  32577. image: {
  32578. source: "./media/characters/guti/paw.svg"
  32579. }
  32580. },
  32581. },
  32582. [
  32583. {
  32584. name: "Normal",
  32585. height: math.unit(9, "feet"),
  32586. default: true
  32587. },
  32588. ]
  32589. ))
  32590. characterMakers.push(() => makeCharacter(
  32591. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32592. {
  32593. side: {
  32594. height: math.unit(5, "meters"),
  32595. name: "Side",
  32596. image: {
  32597. source: "./media/characters/vesper/side.svg",
  32598. extra: 1605/1518,
  32599. bottom: 0/1605
  32600. }
  32601. },
  32602. },
  32603. [
  32604. {
  32605. name: "Small",
  32606. height: math.unit(5, "meters")
  32607. },
  32608. {
  32609. name: "Sage",
  32610. height: math.unit(100, "meters"),
  32611. default: true
  32612. },
  32613. {
  32614. name: "Fun Size",
  32615. height: math.unit(600, "meters")
  32616. },
  32617. {
  32618. name: "Goddess",
  32619. height: math.unit(20000, "km")
  32620. },
  32621. {
  32622. name: "Maximum",
  32623. height: math.unit(5, "galaxies")
  32624. },
  32625. ]
  32626. ))
  32627. characterMakers.push(() => makeCharacter(
  32628. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32629. {
  32630. front: {
  32631. height: math.unit(6 + 3/12, "feet"),
  32632. weight: math.unit(190, "lb"),
  32633. name: "Front",
  32634. image: {
  32635. source: "./media/characters/gawain/front.svg",
  32636. extra: 2222/2139,
  32637. bottom: 90/2312
  32638. }
  32639. },
  32640. back: {
  32641. height: math.unit(6 + 3/12, "feet"),
  32642. weight: math.unit(190, "lb"),
  32643. name: "Back",
  32644. image: {
  32645. source: "./media/characters/gawain/back.svg",
  32646. extra: 2199/2111,
  32647. bottom: 73/2272
  32648. }
  32649. },
  32650. },
  32651. [
  32652. {
  32653. name: "Normal",
  32654. height: math.unit(6 + 3/12, "feet"),
  32655. default: true
  32656. },
  32657. ]
  32658. ))
  32659. characterMakers.push(() => makeCharacter(
  32660. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32661. {
  32662. side: {
  32663. height: math.unit(3.5, "meters"),
  32664. weight: math.unit(16000, "lb"),
  32665. name: "Side",
  32666. image: {
  32667. source: "./media/characters/dascalti/side.svg",
  32668. extra: 392/273,
  32669. bottom: 47/439
  32670. }
  32671. },
  32672. breath: {
  32673. height: math.unit(7.4, "feet"),
  32674. name: "Breath",
  32675. image: {
  32676. source: "./media/characters/dascalti/breath.svg"
  32677. }
  32678. },
  32679. fed: {
  32680. height: math.unit(3.6, "meters"),
  32681. weight: math.unit(16000, "lb"),
  32682. name: "Fed",
  32683. image: {
  32684. source: "./media/characters/dascalti/fed.svg",
  32685. extra: 1419/820,
  32686. bottom: 95/1514
  32687. }
  32688. },
  32689. },
  32690. [
  32691. {
  32692. name: "Normal",
  32693. height: math.unit(3.5, "meters"),
  32694. default: true
  32695. },
  32696. ]
  32697. ))
  32698. characterMakers.push(() => makeCharacter(
  32699. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32700. {
  32701. front: {
  32702. height: math.unit(3 + 5/12, "feet"),
  32703. name: "Front",
  32704. image: {
  32705. source: "./media/characters/mauve/front.svg",
  32706. extra: 1126/1033,
  32707. bottom: 65/1191
  32708. }
  32709. },
  32710. side: {
  32711. height: math.unit(3 + 5/12, "feet"),
  32712. name: "Side",
  32713. image: {
  32714. source: "./media/characters/mauve/side.svg",
  32715. extra: 1089/1001,
  32716. bottom: 29/1118
  32717. }
  32718. },
  32719. back: {
  32720. height: math.unit(3 + 5/12, "feet"),
  32721. name: "Back",
  32722. image: {
  32723. source: "./media/characters/mauve/back.svg",
  32724. extra: 1173/1053,
  32725. bottom: 109/1282
  32726. }
  32727. },
  32728. },
  32729. [
  32730. {
  32731. name: "Normal",
  32732. height: math.unit(3 + 5/12, "feet"),
  32733. default: true
  32734. },
  32735. ]
  32736. ))
  32737. characterMakers.push(() => makeCharacter(
  32738. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32739. {
  32740. front: {
  32741. height: math.unit(6 + 3/12, "feet"),
  32742. weight: math.unit(430, "lb"),
  32743. name: "Front",
  32744. image: {
  32745. source: "./media/characters/carlos/front.svg",
  32746. extra: 1964/1913,
  32747. bottom: 70/2034
  32748. }
  32749. },
  32750. },
  32751. [
  32752. {
  32753. name: "Normal",
  32754. height: math.unit(6 + 3/12, "feet"),
  32755. default: true
  32756. },
  32757. ]
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32761. {
  32762. back: {
  32763. height: math.unit(5 + 10/12, "feet"),
  32764. weight: math.unit(200, "lb"),
  32765. name: "Back",
  32766. image: {
  32767. source: "./media/characters/jax/back.svg",
  32768. extra: 764/739,
  32769. bottom: 25/789
  32770. }
  32771. },
  32772. },
  32773. [
  32774. {
  32775. name: "Normal",
  32776. height: math.unit(5 + 10/12, "feet"),
  32777. default: true
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32783. {
  32784. front: {
  32785. height: math.unit(8, "feet"),
  32786. weight: math.unit(250, "lb"),
  32787. name: "Front",
  32788. image: {
  32789. source: "./media/characters/eikthynir/front.svg",
  32790. extra: 1332/1166,
  32791. bottom: 82/1414
  32792. }
  32793. },
  32794. back: {
  32795. height: math.unit(8, "feet"),
  32796. weight: math.unit(250, "lb"),
  32797. name: "Back",
  32798. image: {
  32799. source: "./media/characters/eikthynir/back.svg",
  32800. extra: 1342/1190,
  32801. bottom: 19/1361
  32802. }
  32803. },
  32804. dick: {
  32805. height: math.unit(2.35, "feet"),
  32806. name: "Dick",
  32807. image: {
  32808. source: "./media/characters/eikthynir/dick.svg"
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Normal",
  32815. height: math.unit(8, "feet"),
  32816. default: true
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32822. {
  32823. front: {
  32824. height: math.unit(99, "meters"),
  32825. weight: math.unit(13000, "tons"),
  32826. name: "Front",
  32827. image: {
  32828. source: "./media/characters/zlmos/front.svg",
  32829. extra: 2202/1992,
  32830. bottom: 315/2517
  32831. }
  32832. },
  32833. },
  32834. [
  32835. {
  32836. name: "Macro",
  32837. height: math.unit(99, "meters"),
  32838. default: true
  32839. },
  32840. ]
  32841. ))
  32842. characterMakers.push(() => makeCharacter(
  32843. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32844. {
  32845. front: {
  32846. height: math.unit(6 + 5/12, "feet"),
  32847. name: "Front",
  32848. image: {
  32849. source: "./media/characters/purri/front.svg",
  32850. extra: 1698/1610,
  32851. bottom: 32/1730
  32852. }
  32853. },
  32854. frontAlt: {
  32855. height: math.unit(6 + 5/12, "feet"),
  32856. name: "Front (Alt)",
  32857. image: {
  32858. source: "./media/characters/purri/front-alt.svg",
  32859. extra: 450/420,
  32860. bottom: 26/476
  32861. }
  32862. },
  32863. boots: {
  32864. height: math.unit(5.5, "feet"),
  32865. name: "Boots",
  32866. image: {
  32867. source: "./media/characters/purri/boots.svg",
  32868. extra: 905/853,
  32869. bottom: 18/923
  32870. }
  32871. },
  32872. lying: {
  32873. height: math.unit(2, "feet"),
  32874. name: "Lying",
  32875. image: {
  32876. source: "./media/characters/purri/lying.svg",
  32877. extra: 940/843,
  32878. bottom: 146/1086
  32879. }
  32880. },
  32881. devious: {
  32882. height: math.unit(1.77, "feet"),
  32883. name: "Devious",
  32884. image: {
  32885. source: "./media/characters/purri/devious.svg",
  32886. extra: 1440/1155,
  32887. bottom: 147/1587
  32888. }
  32889. },
  32890. bean: {
  32891. height: math.unit(1.94, "feet"),
  32892. name: "Bean",
  32893. image: {
  32894. source: "./media/characters/purri/bean.svg"
  32895. }
  32896. },
  32897. },
  32898. [
  32899. {
  32900. name: "Micro",
  32901. height: math.unit(1, "mm")
  32902. },
  32903. {
  32904. name: "Normal",
  32905. height: math.unit(6 + 5/12, "feet"),
  32906. default: true
  32907. },
  32908. {
  32909. name: "Macro :3c",
  32910. height: math.unit(2, "miles")
  32911. },
  32912. ]
  32913. ))
  32914. characterMakers.push(() => makeCharacter(
  32915. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32916. {
  32917. front: {
  32918. height: math.unit(6 + 2/12, "feet"),
  32919. weight: math.unit(250, "lb"),
  32920. name: "Front",
  32921. image: {
  32922. source: "./media/characters/moonlight/front.svg",
  32923. extra: 1044/908,
  32924. bottom: 56/1100
  32925. }
  32926. },
  32927. feral: {
  32928. height: math.unit(3 + 1/12, "feet"),
  32929. weight: math.unit(50, "kg"),
  32930. name: "Feral",
  32931. image: {
  32932. source: "./media/characters/moonlight/feral.svg",
  32933. extra: 3705/2791,
  32934. bottom: 145/3850
  32935. }
  32936. },
  32937. paw: {
  32938. height: math.unit(1, "feet"),
  32939. name: "Paw",
  32940. image: {
  32941. source: "./media/characters/moonlight/paw.svg"
  32942. }
  32943. },
  32944. paws: {
  32945. height: math.unit(0.98, "feet"),
  32946. name: "Paws",
  32947. image: {
  32948. source: "./media/characters/moonlight/paws.svg",
  32949. extra: 939/939,
  32950. bottom: 50/989
  32951. }
  32952. },
  32953. mouth: {
  32954. height: math.unit(0.48, "feet"),
  32955. name: "Mouth",
  32956. image: {
  32957. source: "./media/characters/moonlight/mouth.svg"
  32958. }
  32959. },
  32960. dick: {
  32961. height: math.unit(1.46, "feet"),
  32962. name: "Dick",
  32963. image: {
  32964. source: "./media/characters/moonlight/dick.svg"
  32965. }
  32966. },
  32967. },
  32968. [
  32969. {
  32970. name: "Normal",
  32971. height: math.unit(6 + 2/12, "feet"),
  32972. default: true
  32973. },
  32974. {
  32975. name: "Macro",
  32976. height: math.unit(300, "feet")
  32977. },
  32978. {
  32979. name: "Macro+",
  32980. height: math.unit(1, "mile")
  32981. },
  32982. {
  32983. name: "Mt. Moon",
  32984. height: math.unit(5, "miles")
  32985. },
  32986. {
  32987. name: "Megamacro",
  32988. height: math.unit(15, "miles")
  32989. },
  32990. ]
  32991. ))
  32992. characterMakers.push(() => makeCharacter(
  32993. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32994. {
  32995. back: {
  32996. height: math.unit(6, "feet"),
  32997. weight: math.unit(150, "lb"),
  32998. name: "Back",
  32999. image: {
  33000. source: "./media/characters/sylen/back.svg",
  33001. extra: 1335/1273,
  33002. bottom: 107/1442
  33003. }
  33004. },
  33005. },
  33006. [
  33007. {
  33008. name: "Normal",
  33009. height: math.unit(5 + 5/12, "feet")
  33010. },
  33011. {
  33012. name: "Megamacro",
  33013. height: math.unit(3, "miles"),
  33014. default: true
  33015. },
  33016. ]
  33017. ))
  33018. characterMakers.push(() => makeCharacter(
  33019. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33020. {
  33021. front: {
  33022. height: math.unit(6, "feet"),
  33023. weight: math.unit(190, "lb"),
  33024. name: "Front",
  33025. image: {
  33026. source: "./media/characters/huttser/front.svg",
  33027. extra: 1152/1058,
  33028. bottom: 23/1175
  33029. }
  33030. },
  33031. side: {
  33032. height: math.unit(6, "feet"),
  33033. weight: math.unit(190, "lb"),
  33034. name: "Side",
  33035. image: {
  33036. source: "./media/characters/huttser/side.svg",
  33037. extra: 1174/1065,
  33038. bottom: 18/1192
  33039. }
  33040. },
  33041. back: {
  33042. height: math.unit(6, "feet"),
  33043. weight: math.unit(190, "lb"),
  33044. name: "Back",
  33045. image: {
  33046. source: "./media/characters/huttser/back.svg",
  33047. extra: 1158/1056,
  33048. bottom: 12/1170
  33049. }
  33050. },
  33051. },
  33052. [
  33053. ]
  33054. ))
  33055. characterMakers.push(() => makeCharacter(
  33056. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33057. {
  33058. side: {
  33059. height: math.unit(12 + 9/12, "feet"),
  33060. weight: math.unit(15000, "lb"),
  33061. name: "Side",
  33062. image: {
  33063. source: "./media/characters/faan/side.svg",
  33064. extra: 2747/2697,
  33065. bottom: 0/2747
  33066. }
  33067. },
  33068. front: {
  33069. height: math.unit(12 + 9/12, "feet"),
  33070. weight: math.unit(15000, "lb"),
  33071. name: "Front",
  33072. image: {
  33073. source: "./media/characters/faan/front.svg",
  33074. extra: 607/571,
  33075. bottom: 24/631
  33076. }
  33077. },
  33078. head: {
  33079. height: math.unit(2.85, "feet"),
  33080. name: "Head",
  33081. image: {
  33082. source: "./media/characters/faan/head.svg"
  33083. }
  33084. },
  33085. headAlt: {
  33086. height: math.unit(3.13, "feet"),
  33087. name: "Head-alt",
  33088. image: {
  33089. source: "./media/characters/faan/head-alt.svg"
  33090. }
  33091. },
  33092. },
  33093. [
  33094. {
  33095. name: "Normal",
  33096. height: math.unit(12 + 9/12, "feet"),
  33097. default: true
  33098. },
  33099. ]
  33100. ))
  33101. characterMakers.push(() => makeCharacter(
  33102. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33103. {
  33104. front: {
  33105. height: math.unit(6, "feet"),
  33106. weight: math.unit(300, "lb"),
  33107. name: "Front",
  33108. image: {
  33109. source: "./media/characters/tanio/front.svg",
  33110. extra: 711/673,
  33111. bottom: 25/736
  33112. }
  33113. },
  33114. },
  33115. [
  33116. {
  33117. name: "Normal",
  33118. height: math.unit(6, "feet"),
  33119. default: true
  33120. },
  33121. ]
  33122. ))
  33123. characterMakers.push(() => makeCharacter(
  33124. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33125. {
  33126. front: {
  33127. height: math.unit(3, "inches"),
  33128. name: "Front",
  33129. image: {
  33130. source: "./media/characters/noboru/front.svg",
  33131. extra: 1039/932,
  33132. bottom: 18/1057
  33133. }
  33134. },
  33135. },
  33136. [
  33137. {
  33138. name: "Micro",
  33139. height: math.unit(3, "inches"),
  33140. default: true
  33141. },
  33142. ]
  33143. ))
  33144. characterMakers.push(() => makeCharacter(
  33145. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33146. {
  33147. front: {
  33148. height: math.unit(1.85, "meters"),
  33149. weight: math.unit(80, "kg"),
  33150. name: "Front",
  33151. image: {
  33152. source: "./media/characters/daniel-barrett/front.svg",
  33153. extra: 355/337,
  33154. bottom: 9/364
  33155. }
  33156. },
  33157. },
  33158. [
  33159. {
  33160. name: "Pico",
  33161. height: math.unit(0.0433, "mm")
  33162. },
  33163. {
  33164. name: "Nano",
  33165. height: math.unit(1.5, "mm")
  33166. },
  33167. {
  33168. name: "Micro",
  33169. height: math.unit(5.3, "cm"),
  33170. default: true
  33171. },
  33172. {
  33173. name: "Normal",
  33174. height: math.unit(1.85, "meters")
  33175. },
  33176. {
  33177. name: "Macro",
  33178. height: math.unit(64.7, "meters")
  33179. },
  33180. {
  33181. name: "Megamacro",
  33182. height: math.unit(2.26, "km")
  33183. },
  33184. {
  33185. name: "Gigamacro",
  33186. height: math.unit(79, "km")
  33187. },
  33188. {
  33189. name: "Teramacro",
  33190. height: math.unit(2765, "km")
  33191. },
  33192. {
  33193. name: "Petamacro",
  33194. height: math.unit(96678, "km")
  33195. },
  33196. ]
  33197. ))
  33198. characterMakers.push(() => makeCharacter(
  33199. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33200. {
  33201. front: {
  33202. height: math.unit(30, "meters"),
  33203. weight: math.unit(400, "tons"),
  33204. name: "Front",
  33205. image: {
  33206. source: "./media/characters/zeel/front.svg",
  33207. extra: 2599/2599,
  33208. bottom: 226/2825
  33209. }
  33210. },
  33211. },
  33212. [
  33213. {
  33214. name: "Macro",
  33215. height: math.unit(30, "meters"),
  33216. default: true
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33222. {
  33223. front: {
  33224. height: math.unit(6 + 7/12, "feet"),
  33225. weight: math.unit(210, "lb"),
  33226. name: "Front",
  33227. image: {
  33228. source: "./media/characters/tarn/front.svg",
  33229. extra: 3517/3220,
  33230. bottom: 91/3608
  33231. }
  33232. },
  33233. back: {
  33234. height: math.unit(6 + 7/12, "feet"),
  33235. weight: math.unit(210, "lb"),
  33236. name: "Back",
  33237. image: {
  33238. source: "./media/characters/tarn/back.svg",
  33239. extra: 3566/3241,
  33240. bottom: 34/3600
  33241. }
  33242. },
  33243. dick: {
  33244. height: math.unit(1.65, "feet"),
  33245. name: "Dick",
  33246. image: {
  33247. source: "./media/characters/tarn/dick.svg"
  33248. }
  33249. },
  33250. paw: {
  33251. height: math.unit(1.80, "feet"),
  33252. name: "Paw",
  33253. image: {
  33254. source: "./media/characters/tarn/paw.svg"
  33255. }
  33256. },
  33257. tongue: {
  33258. height: math.unit(0.97, "feet"),
  33259. name: "Tongue",
  33260. image: {
  33261. source: "./media/characters/tarn/tongue.svg"
  33262. }
  33263. },
  33264. },
  33265. [
  33266. {
  33267. name: "Micro",
  33268. height: math.unit(4, "inches")
  33269. },
  33270. {
  33271. name: "Normal",
  33272. height: math.unit(6 + 7/12, "feet"),
  33273. default: true
  33274. },
  33275. {
  33276. name: "Macro",
  33277. height: math.unit(300, "feet")
  33278. },
  33279. ]
  33280. ))
  33281. characterMakers.push(() => makeCharacter(
  33282. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33283. {
  33284. front: {
  33285. height: math.unit(5 + 7/12, "feet"),
  33286. weight: math.unit(80, "kg"),
  33287. name: "Front",
  33288. image: {
  33289. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33290. extra: 3023/2865,
  33291. bottom: 33/3056
  33292. }
  33293. },
  33294. back: {
  33295. height: math.unit(5 + 7/12, "feet"),
  33296. weight: math.unit(80, "kg"),
  33297. name: "Back",
  33298. image: {
  33299. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33300. extra: 3020/2886,
  33301. bottom: 30/3050
  33302. }
  33303. },
  33304. dick: {
  33305. height: math.unit(0.98, "feet"),
  33306. name: "Dick",
  33307. image: {
  33308. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33309. }
  33310. },
  33311. anatomy: {
  33312. height: math.unit(2.86, "feet"),
  33313. name: "Anatomy",
  33314. image: {
  33315. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Really Small",
  33322. height: math.unit(2, "inches")
  33323. },
  33324. {
  33325. name: "Micro",
  33326. height: math.unit(5.583, "inches")
  33327. },
  33328. {
  33329. name: "Normal",
  33330. height: math.unit(5 + 7/12, "feet"),
  33331. default: true
  33332. },
  33333. {
  33334. name: "Macro",
  33335. height: math.unit(67, "feet")
  33336. },
  33337. {
  33338. name: "Megamacro",
  33339. height: math.unit(134, "feet")
  33340. },
  33341. ]
  33342. ))
  33343. characterMakers.push(() => makeCharacter(
  33344. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33345. {
  33346. front: {
  33347. height: math.unit(9, "feet"),
  33348. weight: math.unit(120, "lb"),
  33349. name: "Front",
  33350. image: {
  33351. source: "./media/characters/sally/front.svg",
  33352. extra: 1506/1349,
  33353. bottom: 66/1572
  33354. }
  33355. },
  33356. },
  33357. [
  33358. {
  33359. name: "Normal",
  33360. height: math.unit(9, "feet"),
  33361. default: true
  33362. },
  33363. ]
  33364. ))
  33365. characterMakers.push(() => makeCharacter(
  33366. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33367. {
  33368. front: {
  33369. height: math.unit(8, "feet"),
  33370. weight: math.unit(900, "lb"),
  33371. name: "Front",
  33372. image: {
  33373. source: "./media/characters/owen/front.svg",
  33374. extra: 1761/1657,
  33375. bottom: 74/1835
  33376. }
  33377. },
  33378. side: {
  33379. height: math.unit(8, "feet"),
  33380. weight: math.unit(900, "lb"),
  33381. name: "Side",
  33382. image: {
  33383. source: "./media/characters/owen/side.svg",
  33384. extra: 1797/1734,
  33385. bottom: 30/1827
  33386. }
  33387. },
  33388. back: {
  33389. height: math.unit(8, "feet"),
  33390. weight: math.unit(900, "lb"),
  33391. name: "Back",
  33392. image: {
  33393. source: "./media/characters/owen/back.svg",
  33394. extra: 1796/1706,
  33395. bottom: 59/1855
  33396. }
  33397. },
  33398. maw: {
  33399. height: math.unit(1.76, "feet"),
  33400. name: "Maw",
  33401. image: {
  33402. source: "./media/characters/owen/maw.svg"
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Normal",
  33409. height: math.unit(8, "feet"),
  33410. default: true
  33411. },
  33412. ]
  33413. ))
  33414. characterMakers.push(() => makeCharacter(
  33415. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33416. {
  33417. front: {
  33418. height: math.unit(4, "feet"),
  33419. weight: math.unit(400, "lb"),
  33420. name: "Front",
  33421. image: {
  33422. source: "./media/characters/ryth/front.svg",
  33423. extra: 1920/1748,
  33424. bottom: 42/1962
  33425. }
  33426. },
  33427. back: {
  33428. height: math.unit(4, "feet"),
  33429. weight: math.unit(400, "lb"),
  33430. name: "Back",
  33431. image: {
  33432. source: "./media/characters/ryth/back.svg",
  33433. extra: 1897/1690,
  33434. bottom: 89/1986
  33435. }
  33436. },
  33437. mouth: {
  33438. height: math.unit(1.39, "feet"),
  33439. name: "Mouth",
  33440. image: {
  33441. source: "./media/characters/ryth/mouth.svg"
  33442. }
  33443. },
  33444. tailmaw: {
  33445. height: math.unit(1.23, "feet"),
  33446. name: "Tailmaw",
  33447. image: {
  33448. source: "./media/characters/ryth/tailmaw.svg"
  33449. }
  33450. },
  33451. goia: {
  33452. height: math.unit(4, "meters"),
  33453. weight: math.unit(10800, "lb"),
  33454. name: "Goia",
  33455. image: {
  33456. source: "./media/characters/ryth/goia.svg",
  33457. extra: 745/640,
  33458. bottom: 107/852
  33459. }
  33460. },
  33461. goiaFront: {
  33462. height: math.unit(4, "meters"),
  33463. weight: math.unit(10800, "lb"),
  33464. name: "Goia (Front)",
  33465. image: {
  33466. source: "./media/characters/ryth/goia-front.svg",
  33467. extra: 750/586,
  33468. bottom: 114/864
  33469. }
  33470. },
  33471. goiaMaw: {
  33472. height: math.unit(5.55, "feet"),
  33473. name: "Goia Maw",
  33474. image: {
  33475. source: "./media/characters/ryth/goia-maw.svg"
  33476. }
  33477. },
  33478. goiaForepaw: {
  33479. height: math.unit(3.5, "feet"),
  33480. name: "Goia Forepaw",
  33481. image: {
  33482. source: "./media/characters/ryth/goia-forepaw.svg"
  33483. }
  33484. },
  33485. goiaHindpaw: {
  33486. height: math.unit(5.55, "feet"),
  33487. name: "Goia Hindpaw",
  33488. image: {
  33489. source: "./media/characters/ryth/goia-hindpaw.svg"
  33490. }
  33491. },
  33492. },
  33493. [
  33494. {
  33495. name: "Normal",
  33496. height: math.unit(4, "feet"),
  33497. default: true
  33498. },
  33499. ]
  33500. ))
  33501. characterMakers.push(() => makeCharacter(
  33502. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33503. {
  33504. front: {
  33505. height: math.unit(7, "feet"),
  33506. weight: math.unit(180, "lb"),
  33507. name: "Front",
  33508. image: {
  33509. source: "./media/characters/necrolance/front.svg",
  33510. extra: 1062/947,
  33511. bottom: 41/1103
  33512. }
  33513. },
  33514. back: {
  33515. height: math.unit(7, "feet"),
  33516. weight: math.unit(180, "lb"),
  33517. name: "Back",
  33518. image: {
  33519. source: "./media/characters/necrolance/back.svg",
  33520. extra: 1045/984,
  33521. bottom: 14/1059
  33522. }
  33523. },
  33524. wing: {
  33525. height: math.unit(2.67, "feet"),
  33526. name: "Wing",
  33527. image: {
  33528. source: "./media/characters/necrolance/wing.svg"
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(7, "feet"),
  33536. default: true
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33542. {
  33543. front: {
  33544. height: math.unit(76, "meters"),
  33545. weight: math.unit(30000, "tons"),
  33546. name: "Front",
  33547. image: {
  33548. source: "./media/characters/tyler/front.svg",
  33549. extra: 1640/1640,
  33550. bottom: 114/1754
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Macro",
  33557. height: math.unit(76, "meters"),
  33558. default: true
  33559. },
  33560. ]
  33561. ))
  33562. characterMakers.push(() => makeCharacter(
  33563. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33564. {
  33565. front: {
  33566. height: math.unit(4 + 11/12, "feet"),
  33567. weight: math.unit(132, "lb"),
  33568. name: "Front",
  33569. image: {
  33570. source: "./media/characters/icey/front.svg",
  33571. extra: 2750/2550,
  33572. bottom: 33/2783
  33573. }
  33574. },
  33575. back: {
  33576. height: math.unit(4 + 11/12, "feet"),
  33577. weight: math.unit(132, "lb"),
  33578. name: "Back",
  33579. image: {
  33580. source: "./media/characters/icey/back.svg",
  33581. extra: 2624/2481,
  33582. bottom: 35/2659
  33583. }
  33584. },
  33585. },
  33586. [
  33587. {
  33588. name: "Normal",
  33589. height: math.unit(4 + 11/12, "feet"),
  33590. default: true
  33591. },
  33592. ]
  33593. ))
  33594. characterMakers.push(() => makeCharacter(
  33595. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33596. {
  33597. front: {
  33598. height: math.unit(100, "feet"),
  33599. weight: math.unit(0, "lb"),
  33600. name: "Front",
  33601. image: {
  33602. source: "./media/characters/smile/front.svg",
  33603. extra: 2983/2912,
  33604. bottom: 162/3145
  33605. }
  33606. },
  33607. back: {
  33608. height: math.unit(100, "feet"),
  33609. weight: math.unit(0, "lb"),
  33610. name: "Back",
  33611. image: {
  33612. source: "./media/characters/smile/back.svg",
  33613. extra: 3143/3031,
  33614. bottom: 91/3234
  33615. }
  33616. },
  33617. head: {
  33618. height: math.unit(26.3, "feet"),
  33619. weight: math.unit(0, "lb"),
  33620. name: "Head",
  33621. image: {
  33622. source: "./media/characters/smile/head.svg"
  33623. }
  33624. },
  33625. collar: {
  33626. height: math.unit(5.3, "feet"),
  33627. weight: math.unit(0, "lb"),
  33628. name: "Collar",
  33629. image: {
  33630. source: "./media/characters/smile/collar.svg"
  33631. }
  33632. },
  33633. },
  33634. [
  33635. {
  33636. name: "Macro",
  33637. height: math.unit(100, "feet"),
  33638. default: true
  33639. },
  33640. ]
  33641. ))
  33642. characterMakers.push(() => makeCharacter(
  33643. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33644. {
  33645. dragon: {
  33646. height: math.unit(26, "feet"),
  33647. weight: math.unit(36, "tons"),
  33648. name: "Dragon",
  33649. image: {
  33650. source: "./media/characters/arimphae/dragon.svg",
  33651. extra: 1574/983,
  33652. bottom: 357/1931
  33653. }
  33654. },
  33655. drake: {
  33656. height: math.unit(9, "feet"),
  33657. weight: math.unit(1.5, "tons"),
  33658. name: "Drake",
  33659. image: {
  33660. source: "./media/characters/arimphae/drake.svg",
  33661. extra: 1120/925,
  33662. bottom: 435/1555
  33663. }
  33664. },
  33665. },
  33666. [
  33667. {
  33668. name: "Small",
  33669. height: math.unit(26*5/9, "feet")
  33670. },
  33671. {
  33672. name: "Normal",
  33673. height: math.unit(26, "feet"),
  33674. default: true
  33675. },
  33676. ]
  33677. ))
  33678. characterMakers.push(() => makeCharacter(
  33679. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33680. {
  33681. front: {
  33682. height: math.unit(8 + 9/12, "feet"),
  33683. name: "Front",
  33684. image: {
  33685. source: "./media/characters/xander/front.svg",
  33686. extra: 1237/974,
  33687. bottom: 94/1331
  33688. }
  33689. },
  33690. },
  33691. [
  33692. {
  33693. name: "Normal",
  33694. height: math.unit(8 + 9/12, "feet"),
  33695. default: true
  33696. },
  33697. {
  33698. name: "Gaze Grabber",
  33699. height: math.unit(13 + 8/12, "feet")
  33700. },
  33701. {
  33702. name: "Jaw Dropper",
  33703. height: math.unit(27, "feet")
  33704. },
  33705. {
  33706. name: "Show Stopper",
  33707. height: math.unit(136, "feet")
  33708. },
  33709. {
  33710. name: "Superstar",
  33711. height: math.unit(1.9e6, "miles")
  33712. },
  33713. ]
  33714. ))
  33715. characterMakers.push(() => makeCharacter(
  33716. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33717. {
  33718. side: {
  33719. height: math.unit(2100, "feet"),
  33720. name: "Side",
  33721. image: {
  33722. source: "./media/characters/osiris/side.svg",
  33723. extra: 1105/939,
  33724. bottom: 167/1272
  33725. }
  33726. },
  33727. },
  33728. [
  33729. {
  33730. name: "Macro",
  33731. height: math.unit(2100, "feet"),
  33732. default: true
  33733. },
  33734. ]
  33735. ))
  33736. characterMakers.push(() => makeCharacter(
  33737. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33738. {
  33739. front: {
  33740. height: math.unit(6 + 8/12, "feet"),
  33741. weight: math.unit(225, "lb"),
  33742. name: "Front",
  33743. image: {
  33744. source: "./media/characters/rhys-londe/front.svg",
  33745. extra: 2258/2141,
  33746. bottom: 188/2446
  33747. }
  33748. },
  33749. back: {
  33750. height: math.unit(6 + 8/12, "feet"),
  33751. weight: math.unit(225, "lb"),
  33752. name: "Back",
  33753. image: {
  33754. source: "./media/characters/rhys-londe/back.svg",
  33755. extra: 2237/2137,
  33756. bottom: 63/2300
  33757. }
  33758. },
  33759. frontNsfw: {
  33760. height: math.unit(6 + 8/12, "feet"),
  33761. weight: math.unit(225, "lb"),
  33762. name: "Front (NSFW)",
  33763. image: {
  33764. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33765. extra: 2258/2141,
  33766. bottom: 188/2446
  33767. }
  33768. },
  33769. backNsfw: {
  33770. height: math.unit(6 + 8/12, "feet"),
  33771. weight: math.unit(225, "lb"),
  33772. name: "Back (NSFW)",
  33773. image: {
  33774. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33775. extra: 2237/2137,
  33776. bottom: 63/2300
  33777. }
  33778. },
  33779. dick: {
  33780. height: math.unit(30, "inches"),
  33781. name: "Dick",
  33782. image: {
  33783. source: "./media/characters/rhys-londe/dick.svg"
  33784. }
  33785. },
  33786. maw: {
  33787. height: math.unit(1.6, "feet"),
  33788. name: "Maw",
  33789. image: {
  33790. source: "./media/characters/rhys-londe/maw.svg"
  33791. }
  33792. },
  33793. },
  33794. [
  33795. {
  33796. name: "Normal",
  33797. height: math.unit(6 + 8/12, "feet"),
  33798. default: true
  33799. },
  33800. ]
  33801. ))
  33802. characterMakers.push(() => makeCharacter(
  33803. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33804. {
  33805. front: {
  33806. height: math.unit(3 + 10/12, "feet"),
  33807. weight: math.unit(90, "lb"),
  33808. name: "Front",
  33809. image: {
  33810. source: "./media/characters/taivas-ensim/front.svg",
  33811. extra: 1327/1216,
  33812. bottom: 96/1423
  33813. }
  33814. },
  33815. back: {
  33816. height: math.unit(3 + 10/12, "feet"),
  33817. weight: math.unit(90, "lb"),
  33818. name: "Back",
  33819. image: {
  33820. source: "./media/characters/taivas-ensim/back.svg",
  33821. extra: 1355/1247,
  33822. bottom: 11/1366
  33823. }
  33824. },
  33825. frontNsfw: {
  33826. height: math.unit(3 + 10/12, "feet"),
  33827. weight: math.unit(90, "lb"),
  33828. name: "Front (NSFW)",
  33829. image: {
  33830. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33831. extra: 1327/1216,
  33832. bottom: 96/1423
  33833. }
  33834. },
  33835. backNsfw: {
  33836. height: math.unit(3 + 10/12, "feet"),
  33837. weight: math.unit(90, "lb"),
  33838. name: "Back (NSFW)",
  33839. image: {
  33840. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33841. extra: 1355/1247,
  33842. bottom: 11/1366
  33843. }
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(3 + 10/12, "feet"),
  33850. default: true
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33856. {
  33857. front: {
  33858. height: math.unit(9 + 6/12, "feet"),
  33859. weight: math.unit(940, "lb"),
  33860. name: "Front",
  33861. image: {
  33862. source: "./media/characters/byliss/front.svg",
  33863. extra: 1327/1290,
  33864. bottom: 82/1409
  33865. }
  33866. },
  33867. back: {
  33868. height: math.unit(9 + 6/12, "feet"),
  33869. weight: math.unit(940, "lb"),
  33870. name: "Back",
  33871. image: {
  33872. source: "./media/characters/byliss/back.svg",
  33873. extra: 1376/1349,
  33874. bottom: 9/1385
  33875. }
  33876. },
  33877. frontNsfw: {
  33878. height: math.unit(9 + 6/12, "feet"),
  33879. weight: math.unit(940, "lb"),
  33880. name: "Front (NSFW)",
  33881. image: {
  33882. source: "./media/characters/byliss/front-nsfw.svg",
  33883. extra: 1327/1290,
  33884. bottom: 82/1409
  33885. }
  33886. },
  33887. backNsfw: {
  33888. height: math.unit(9 + 6/12, "feet"),
  33889. weight: math.unit(940, "lb"),
  33890. name: "Back (NSFW)",
  33891. image: {
  33892. source: "./media/characters/byliss/back-nsfw.svg",
  33893. extra: 1376/1349,
  33894. bottom: 9/1385
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(9 + 6/12, "feet"),
  33902. default: true
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33908. {
  33909. front: {
  33910. height: math.unit(5 + 2/12, "feet"),
  33911. weight: math.unit(200, "lb"),
  33912. name: "Front",
  33913. image: {
  33914. source: "./media/characters/noraly/front.svg",
  33915. extra: 4985/4773,
  33916. bottom: 150/5135
  33917. }
  33918. },
  33919. full: {
  33920. height: math.unit(5 + 2/12, "feet"),
  33921. weight: math.unit(164, "lb"),
  33922. name: "Full",
  33923. image: {
  33924. source: "./media/characters/noraly/full.svg",
  33925. extra: 1114/1059,
  33926. bottom: 35/1149
  33927. }
  33928. },
  33929. fuller: {
  33930. height: math.unit(5 + 2/12, "feet"),
  33931. weight: math.unit(230, "lb"),
  33932. name: "Fuller",
  33933. image: {
  33934. source: "./media/characters/noraly/fuller.svg",
  33935. extra: 1114/1059,
  33936. bottom: 35/1149
  33937. }
  33938. },
  33939. fullest: {
  33940. height: math.unit(5 + 2/12, "feet"),
  33941. weight: math.unit(300, "lb"),
  33942. name: "Fullest",
  33943. image: {
  33944. source: "./media/characters/noraly/fullest.svg",
  33945. extra: 1114/1059,
  33946. bottom: 35/1149
  33947. }
  33948. },
  33949. },
  33950. [
  33951. {
  33952. name: "Normal",
  33953. height: math.unit(5 + 2/12, "feet"),
  33954. default: true
  33955. },
  33956. ]
  33957. ))
  33958. characterMakers.push(() => makeCharacter(
  33959. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33960. {
  33961. front: {
  33962. height: math.unit(5 + 2/12, "feet"),
  33963. weight: math.unit(210, "lb"),
  33964. name: "Front",
  33965. image: {
  33966. source: "./media/characters/pera/front.svg",
  33967. extra: 1560/1531,
  33968. bottom: 165/1725
  33969. }
  33970. },
  33971. back: {
  33972. height: math.unit(5 + 2/12, "feet"),
  33973. weight: math.unit(210, "lb"),
  33974. name: "Back",
  33975. image: {
  33976. source: "./media/characters/pera/back.svg",
  33977. extra: 1523/1493,
  33978. bottom: 152/1675
  33979. }
  33980. },
  33981. dick: {
  33982. height: math.unit(2.4, "feet"),
  33983. name: "Dick",
  33984. image: {
  33985. source: "./media/characters/pera/dick.svg"
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Normal",
  33992. height: math.unit(5 + 2/12, "feet"),
  33993. default: true
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33999. {
  34000. front: {
  34001. height: math.unit(12, "feet"),
  34002. weight: math.unit(3200, "lb"),
  34003. name: "Front",
  34004. image: {
  34005. source: "./media/characters/julian/front.svg",
  34006. extra: 2962/2701,
  34007. bottom: 184/3146
  34008. }
  34009. },
  34010. maw: {
  34011. height: math.unit(5.35, "feet"),
  34012. name: "Maw",
  34013. image: {
  34014. source: "./media/characters/julian/maw.svg"
  34015. }
  34016. },
  34017. paw: {
  34018. height: math.unit(3.07, "feet"),
  34019. name: "Paw",
  34020. image: {
  34021. source: "./media/characters/julian/paw.svg"
  34022. }
  34023. },
  34024. },
  34025. [
  34026. {
  34027. name: "Default",
  34028. height: math.unit(12, "feet"),
  34029. default: true
  34030. },
  34031. {
  34032. name: "Big",
  34033. height: math.unit(50, "feet")
  34034. },
  34035. {
  34036. name: "Really Big",
  34037. height: math.unit(1, "mile")
  34038. },
  34039. {
  34040. name: "Extremely Big",
  34041. height: math.unit(100, "miles")
  34042. },
  34043. {
  34044. name: "Planet Hugger",
  34045. height: math.unit(200, "megameters")
  34046. },
  34047. {
  34048. name: "Unreasonably Big",
  34049. height: math.unit(1e300, "meters")
  34050. },
  34051. ]
  34052. ))
  34053. characterMakers.push(() => makeCharacter(
  34054. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34055. {
  34056. solgooleo: {
  34057. height: math.unit(4, "meters"),
  34058. weight: math.unit(6000*1.5, "kg"),
  34059. volume: math.unit(6000, "liters"),
  34060. name: "Solgooleo",
  34061. image: {
  34062. source: "./media/characters/pi/solgooleo.svg",
  34063. extra: 388/331,
  34064. bottom: 29/417
  34065. }
  34066. },
  34067. },
  34068. [
  34069. {
  34070. name: "Normal",
  34071. height: math.unit(4, "meters"),
  34072. default: true
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34078. {
  34079. front: {
  34080. height: math.unit(8, "feet"),
  34081. weight: math.unit(4, "tons"),
  34082. name: "Front",
  34083. image: {
  34084. source: "./media/characters/shaun/front.svg",
  34085. extra: 503/495,
  34086. bottom: 20/523
  34087. }
  34088. },
  34089. back: {
  34090. height: math.unit(8, "feet"),
  34091. weight: math.unit(4, "tons"),
  34092. name: "Back",
  34093. image: {
  34094. source: "./media/characters/shaun/back.svg",
  34095. extra: 487/480,
  34096. bottom: 20/507
  34097. }
  34098. },
  34099. },
  34100. [
  34101. {
  34102. name: "Lorg",
  34103. height: math.unit(8, "feet"),
  34104. default: true
  34105. },
  34106. ]
  34107. ))
  34108. characterMakers.push(() => makeCharacter(
  34109. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34110. {
  34111. frontAnthro: {
  34112. height: math.unit(7, "feet"),
  34113. name: "Front",
  34114. image: {
  34115. source: "./media/characters/sini/front-anthro.svg",
  34116. extra: 726/678,
  34117. bottom: 35/761
  34118. },
  34119. form: "anthro",
  34120. default: true
  34121. },
  34122. backAnthro: {
  34123. height: math.unit(7, "feet"),
  34124. name: "Back",
  34125. image: {
  34126. source: "./media/characters/sini/back-anthro.svg",
  34127. extra: 743/701,
  34128. bottom: 12/755
  34129. },
  34130. form: "anthro",
  34131. },
  34132. frontAnthroNsfw: {
  34133. height: math.unit(7, "feet"),
  34134. name: "Front (NSFW)",
  34135. image: {
  34136. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34137. extra: 726/678,
  34138. bottom: 35/761
  34139. },
  34140. form: "anthro"
  34141. },
  34142. backAnthroNsfw: {
  34143. height: math.unit(7, "feet"),
  34144. name: "Back (NSFW)",
  34145. image: {
  34146. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34147. extra: 743/701,
  34148. bottom: 12/755
  34149. },
  34150. form: "anthro",
  34151. },
  34152. mawAnthro: {
  34153. height: math.unit(2.14, "feet"),
  34154. name: "Maw",
  34155. image: {
  34156. source: "./media/characters/sini/maw-anthro.svg"
  34157. },
  34158. form: "anthro"
  34159. },
  34160. dick: {
  34161. height: math.unit(1.45, "feet"),
  34162. name: "Dick",
  34163. image: {
  34164. source: "./media/characters/sini/dick-anthro.svg"
  34165. },
  34166. form: "anthro"
  34167. },
  34168. feral: {
  34169. height: math.unit(16, "feet"),
  34170. name: "Feral",
  34171. image: {
  34172. source: "./media/characters/sini/feral.svg",
  34173. extra: 814/605,
  34174. bottom: 11/825
  34175. },
  34176. form: "feral",
  34177. default: true
  34178. },
  34179. feralNsfw: {
  34180. height: math.unit(16, "feet"),
  34181. name: "Feral (NSFW)",
  34182. image: {
  34183. source: "./media/characters/sini/feral-nsfw.svg",
  34184. extra: 814/605,
  34185. bottom: 11/825
  34186. },
  34187. form: "feral"
  34188. },
  34189. mawFeral: {
  34190. height: math.unit(5.66, "feet"),
  34191. name: "Maw",
  34192. image: {
  34193. source: "./media/characters/sini/maw-feral.svg"
  34194. },
  34195. form: "feral",
  34196. },
  34197. pawFeral: {
  34198. height: math.unit(5.17, "feet"),
  34199. name: "Paw",
  34200. image: {
  34201. source: "./media/characters/sini/paw-feral.svg"
  34202. },
  34203. form: "feral",
  34204. },
  34205. rumpFeral: {
  34206. height: math.unit(13.11, "feet"),
  34207. name: "Rump",
  34208. image: {
  34209. source: "./media/characters/sini/rump-feral.svg"
  34210. },
  34211. form: "feral",
  34212. },
  34213. dickFeral: {
  34214. height: math.unit(1, "feet"),
  34215. name: "Dick",
  34216. image: {
  34217. source: "./media/characters/sini/dick-feral.svg"
  34218. },
  34219. form: "feral",
  34220. },
  34221. eyeFeral: {
  34222. height: math.unit(1.23, "feet"),
  34223. name: "Eye",
  34224. image: {
  34225. source: "./media/characters/sini/eye-feral.svg"
  34226. },
  34227. form: "feral",
  34228. },
  34229. },
  34230. [
  34231. {
  34232. name: "Normal",
  34233. height: math.unit(7, "feet"),
  34234. default: true,
  34235. form: "anthro"
  34236. },
  34237. {
  34238. name: "Normal",
  34239. height: math.unit(16, "feet"),
  34240. default: true,
  34241. form: "feral"
  34242. },
  34243. ],
  34244. {
  34245. "anthro": {
  34246. name: "Anthro",
  34247. default: true
  34248. },
  34249. "feral": {
  34250. name: "Feral",
  34251. }
  34252. }
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34256. {
  34257. side: {
  34258. height: math.unit(47.2, "meters"),
  34259. weight: math.unit(10000, "tons"),
  34260. name: "Side",
  34261. image: {
  34262. source: "./media/characters/raylldo/side.svg",
  34263. extra: 2363/642,
  34264. bottom: 221/2584
  34265. }
  34266. },
  34267. top: {
  34268. height: math.unit(240, "meters"),
  34269. weight: math.unit(10000, "tons"),
  34270. name: "Top",
  34271. image: {
  34272. source: "./media/characters/raylldo/top.svg"
  34273. }
  34274. },
  34275. bottom: {
  34276. height: math.unit(240, "meters"),
  34277. weight: math.unit(10000, "tons"),
  34278. name: "Bottom",
  34279. image: {
  34280. source: "./media/characters/raylldo/bottom.svg"
  34281. }
  34282. },
  34283. head: {
  34284. height: math.unit(38.6, "meters"),
  34285. name: "Head",
  34286. image: {
  34287. source: "./media/characters/raylldo/head.svg",
  34288. extra: 1335/1112,
  34289. bottom: 0/1335
  34290. }
  34291. },
  34292. maw: {
  34293. height: math.unit(16.37, "meters"),
  34294. name: "Maw",
  34295. image: {
  34296. source: "./media/characters/raylldo/maw.svg",
  34297. extra: 883/660,
  34298. bottom: 0/883
  34299. },
  34300. extraAttributes: {
  34301. preyCapacity: {
  34302. name: "Capacity",
  34303. power: 3,
  34304. type: "volume",
  34305. base: math.unit(1000, "people")
  34306. },
  34307. tongueSize: {
  34308. name: "Tongue Size",
  34309. power: 2,
  34310. type: "area",
  34311. base: math.unit(21, "m^2")
  34312. }
  34313. }
  34314. },
  34315. forepaw: {
  34316. height: math.unit(18, "meters"),
  34317. name: "Forepaw",
  34318. image: {
  34319. source: "./media/characters/raylldo/forepaw.svg"
  34320. }
  34321. },
  34322. hindpaw: {
  34323. height: math.unit(23, "meters"),
  34324. name: "Hindpaw",
  34325. image: {
  34326. source: "./media/characters/raylldo/hindpaw.svg"
  34327. }
  34328. },
  34329. genitals: {
  34330. height: math.unit(42, "meters"),
  34331. name: "Genitals",
  34332. image: {
  34333. source: "./media/characters/raylldo/genitals.svg"
  34334. }
  34335. },
  34336. },
  34337. [
  34338. {
  34339. name: "Normal",
  34340. height: math.unit(47.2, "meters"),
  34341. default: true
  34342. },
  34343. ]
  34344. ))
  34345. characterMakers.push(() => makeCharacter(
  34346. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34347. {
  34348. anthroFront: {
  34349. height: math.unit(9, "feet"),
  34350. weight: math.unit(600, "lb"),
  34351. name: "Anthro (Front)",
  34352. image: {
  34353. source: "./media/characters/glint/anthro-front.svg",
  34354. extra: 1097/1018,
  34355. bottom: 28/1125
  34356. }
  34357. },
  34358. anthroBack: {
  34359. height: math.unit(9, "feet"),
  34360. weight: math.unit(600, "lb"),
  34361. name: "Anthro (Back)",
  34362. image: {
  34363. source: "./media/characters/glint/anthro-back.svg",
  34364. extra: 1154/997,
  34365. bottom: 36/1190
  34366. }
  34367. },
  34368. feral: {
  34369. height: math.unit(11, "feet"),
  34370. weight: math.unit(50000, "lb"),
  34371. name: "Feral",
  34372. image: {
  34373. source: "./media/characters/glint/feral.svg",
  34374. extra: 3035/1585,
  34375. bottom: 1169/4204
  34376. }
  34377. },
  34378. dickAnthro: {
  34379. height: math.unit(0.7, "meters"),
  34380. name: "Dick (Anthro)",
  34381. image: {
  34382. source: "./media/characters/glint/dick-anthro.svg"
  34383. }
  34384. },
  34385. dickFeral: {
  34386. height: math.unit(2.65, "meters"),
  34387. name: "Dick (Feral)",
  34388. image: {
  34389. source: "./media/characters/glint/dick-feral.svg"
  34390. }
  34391. },
  34392. slitHidden: {
  34393. height: math.unit(5.85, "meters"),
  34394. name: "Slit (Hidden)",
  34395. image: {
  34396. source: "./media/characters/glint/slit-hidden.svg"
  34397. }
  34398. },
  34399. slitErect: {
  34400. height: math.unit(5.85, "meters"),
  34401. name: "Slit (Erect)",
  34402. image: {
  34403. source: "./media/characters/glint/slit-erect.svg"
  34404. }
  34405. },
  34406. mawAnthro: {
  34407. height: math.unit(0.63, "meters"),
  34408. name: "Maw (Anthro)",
  34409. image: {
  34410. source: "./media/characters/glint/maw.svg"
  34411. }
  34412. },
  34413. mawFeral: {
  34414. height: math.unit(2.89, "meters"),
  34415. name: "Maw (Feral)",
  34416. image: {
  34417. source: "./media/characters/glint/maw.svg"
  34418. }
  34419. },
  34420. },
  34421. [
  34422. {
  34423. name: "Normal",
  34424. height: math.unit(9, "feet"),
  34425. default: true
  34426. },
  34427. ]
  34428. ))
  34429. characterMakers.push(() => makeCharacter(
  34430. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34431. {
  34432. side: {
  34433. height: math.unit(15, "feet"),
  34434. weight: math.unit(5000, "kg"),
  34435. name: "Side",
  34436. image: {
  34437. source: "./media/characters/kairne/side.svg",
  34438. extra: 979/811,
  34439. bottom: 13/992
  34440. }
  34441. },
  34442. front: {
  34443. height: math.unit(15, "feet"),
  34444. weight: math.unit(5000, "kg"),
  34445. name: "Front",
  34446. image: {
  34447. source: "./media/characters/kairne/front.svg",
  34448. extra: 908/814,
  34449. bottom: 26/934
  34450. }
  34451. },
  34452. sideNsfw: {
  34453. height: math.unit(15, "feet"),
  34454. weight: math.unit(5000, "kg"),
  34455. name: "Side (NSFW)",
  34456. image: {
  34457. source: "./media/characters/kairne/side-nsfw.svg",
  34458. extra: 979/811,
  34459. bottom: 13/992
  34460. }
  34461. },
  34462. frontNsfw: {
  34463. height: math.unit(15, "feet"),
  34464. weight: math.unit(5000, "kg"),
  34465. name: "Front (NSFW)",
  34466. image: {
  34467. source: "./media/characters/kairne/front-nsfw.svg",
  34468. extra: 908/814,
  34469. bottom: 26/934
  34470. }
  34471. },
  34472. dickCaged: {
  34473. height: math.unit(0.65, "meters"),
  34474. name: "Dick-caged",
  34475. image: {
  34476. source: "./media/characters/kairne/dick-caged.svg"
  34477. }
  34478. },
  34479. dick: {
  34480. height: math.unit(0.79, "meters"),
  34481. name: "Dick",
  34482. image: {
  34483. source: "./media/characters/kairne/dick.svg"
  34484. }
  34485. },
  34486. genitals: {
  34487. height: math.unit(1.29, "meters"),
  34488. name: "Genitals",
  34489. image: {
  34490. source: "./media/characters/kairne/genitals.svg"
  34491. }
  34492. },
  34493. maw: {
  34494. height: math.unit(1.73, "meters"),
  34495. name: "Maw",
  34496. image: {
  34497. source: "./media/characters/kairne/maw.svg"
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Normal",
  34504. height: math.unit(15, "feet"),
  34505. default: true
  34506. },
  34507. ]
  34508. ))
  34509. characterMakers.push(() => makeCharacter(
  34510. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34511. {
  34512. front: {
  34513. height: math.unit(5 + 8/12, "feet"),
  34514. weight: math.unit(139, "lb"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/biscuit-jackal/front.svg",
  34518. extra: 2106/1961,
  34519. bottom: 58/2164
  34520. }
  34521. },
  34522. back: {
  34523. height: math.unit(5 + 8/12, "feet"),
  34524. weight: math.unit(139, "lb"),
  34525. name: "Back",
  34526. image: {
  34527. source: "./media/characters/biscuit-jackal/back.svg",
  34528. extra: 2132/1976,
  34529. bottom: 57/2189
  34530. }
  34531. },
  34532. werejackal: {
  34533. height: math.unit(6 + 3/12, "feet"),
  34534. weight: math.unit(188, "lb"),
  34535. name: "Werejackal",
  34536. image: {
  34537. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34538. extra: 2373/2178,
  34539. bottom: 53/2426
  34540. }
  34541. },
  34542. },
  34543. [
  34544. {
  34545. name: "Normal",
  34546. height: math.unit(5 + 8/12, "feet"),
  34547. default: true
  34548. },
  34549. ]
  34550. ))
  34551. characterMakers.push(() => makeCharacter(
  34552. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34553. {
  34554. front: {
  34555. height: math.unit(140, "cm"),
  34556. weight: math.unit(45, "kg"),
  34557. name: "Front",
  34558. image: {
  34559. source: "./media/characters/tayra-white/front.svg",
  34560. extra: 2229/2192,
  34561. bottom: 75/2304
  34562. }
  34563. },
  34564. },
  34565. [
  34566. {
  34567. name: "Normal",
  34568. height: math.unit(140, "cm"),
  34569. default: true
  34570. },
  34571. ]
  34572. ))
  34573. characterMakers.push(() => makeCharacter(
  34574. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34575. {
  34576. front: {
  34577. height: math.unit(4 + 5/12, "feet"),
  34578. name: "Front",
  34579. image: {
  34580. source: "./media/characters/scoop/front.svg",
  34581. extra: 1257/1136,
  34582. bottom: 69/1326
  34583. }
  34584. },
  34585. back: {
  34586. height: math.unit(4 + 5/12, "feet"),
  34587. name: "Back",
  34588. image: {
  34589. source: "./media/characters/scoop/back.svg",
  34590. extra: 1321/1152,
  34591. bottom: 32/1353
  34592. }
  34593. },
  34594. maw: {
  34595. height: math.unit(0.68, "feet"),
  34596. name: "Maw",
  34597. image: {
  34598. source: "./media/characters/scoop/maw.svg"
  34599. }
  34600. },
  34601. },
  34602. [
  34603. {
  34604. name: "Really Small",
  34605. height: math.unit(1, "mm")
  34606. },
  34607. {
  34608. name: "Micro",
  34609. height: math.unit(1, "inch")
  34610. },
  34611. {
  34612. name: "Normal",
  34613. height: math.unit(4 + 5/12, "feet"),
  34614. default: true
  34615. },
  34616. {
  34617. name: "Macro",
  34618. height: math.unit(200, "feet")
  34619. },
  34620. {
  34621. name: "Megamacro",
  34622. height: math.unit(3240, "feet")
  34623. },
  34624. {
  34625. name: "Teramacro",
  34626. height: math.unit(2500, "miles")
  34627. },
  34628. ]
  34629. ))
  34630. characterMakers.push(() => makeCharacter(
  34631. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34632. {
  34633. front: {
  34634. height: math.unit(15 + 7/12, "feet"),
  34635. weight: math.unit(1150, "tons"),
  34636. name: "Front",
  34637. image: {
  34638. source: "./media/characters/saphinara/front.svg",
  34639. extra: 1837/1643,
  34640. bottom: 84/1921
  34641. },
  34642. form: "normal",
  34643. default: true
  34644. },
  34645. side: {
  34646. height: math.unit(15 + 7/12, "feet"),
  34647. weight: math.unit(1150, "tons"),
  34648. name: "Side",
  34649. image: {
  34650. source: "./media/characters/saphinara/side.svg",
  34651. extra: 605/547,
  34652. bottom: 6/611
  34653. },
  34654. form: "normal"
  34655. },
  34656. back: {
  34657. height: math.unit(15 + 7/12, "feet"),
  34658. weight: math.unit(1150, "tons"),
  34659. name: "Back",
  34660. image: {
  34661. source: "./media/characters/saphinara/back.svg",
  34662. extra: 591/531,
  34663. bottom: 13/604
  34664. },
  34665. form: "normal"
  34666. },
  34667. frontTail: {
  34668. height: math.unit(15 + 7/12, "feet"),
  34669. weight: math.unit(1150, "tons"),
  34670. name: "Front (Full Tail)",
  34671. image: {
  34672. source: "./media/characters/saphinara/front-tail.svg",
  34673. extra: 2256/1630,
  34674. bottom: 261/2517
  34675. },
  34676. form: "normal"
  34677. },
  34678. insides: {
  34679. height: math.unit(11.92, "feet"),
  34680. name: "Insides",
  34681. image: {
  34682. source: "./media/characters/saphinara/insides.svg"
  34683. },
  34684. form: "normal"
  34685. },
  34686. head: {
  34687. height: math.unit(4.17, "feet"),
  34688. name: "Head",
  34689. image: {
  34690. source: "./media/characters/saphinara/head.svg"
  34691. },
  34692. form: "normal"
  34693. },
  34694. tongue: {
  34695. height: math.unit(4.60, "feet"),
  34696. name: "Tongue",
  34697. image: {
  34698. source: "./media/characters/saphinara/tongue.svg"
  34699. },
  34700. form: "normal"
  34701. },
  34702. headEnraged: {
  34703. height: math.unit(5.55, "feet"),
  34704. name: "Head (Enraged)",
  34705. image: {
  34706. source: "./media/characters/saphinara/head-enraged.svg"
  34707. },
  34708. form: "normal"
  34709. },
  34710. wings: {
  34711. height: math.unit(11.95, "feet"),
  34712. name: "Wings",
  34713. image: {
  34714. source: "./media/characters/saphinara/wings.svg"
  34715. },
  34716. form: "normal"
  34717. },
  34718. feathers: {
  34719. height: math.unit(8.92, "feet"),
  34720. name: "Feathers",
  34721. image: {
  34722. source: "./media/characters/saphinara/feathers.svg"
  34723. },
  34724. form: "normal"
  34725. },
  34726. shackles: {
  34727. height: math.unit(2, "feet"),
  34728. name: "Shackles",
  34729. image: {
  34730. source: "./media/characters/saphinara/shackles.svg"
  34731. },
  34732. form: "normal"
  34733. },
  34734. eyes: {
  34735. height: math.unit(1.331, "feet"),
  34736. name: "Eyes",
  34737. image: {
  34738. source: "./media/characters/saphinara/eyes.svg"
  34739. },
  34740. form: "normal"
  34741. },
  34742. eyesEnraged: {
  34743. height: math.unit(1.331, "feet"),
  34744. name: "Eyes (Enraged)",
  34745. image: {
  34746. source: "./media/characters/saphinara/eyes-enraged.svg"
  34747. },
  34748. form: "normal"
  34749. },
  34750. trueFormSide: {
  34751. height: math.unit(200, "feet"),
  34752. weight: math.unit(1e7, "tons"),
  34753. name: "Side",
  34754. image: {
  34755. source: "./media/characters/saphinara/true-form-side.svg",
  34756. extra: 1399/770,
  34757. bottom: 97/1496
  34758. },
  34759. form: "true-form",
  34760. default: true
  34761. },
  34762. trueFormMaw: {
  34763. height: math.unit(71.5, "feet"),
  34764. name: "Maw",
  34765. image: {
  34766. source: "./media/characters/saphinara/true-form-maw.svg",
  34767. extra: 2302/1453,
  34768. bottom: 0/2302
  34769. },
  34770. form: "true-form"
  34771. },
  34772. meowberusSide: {
  34773. height: math.unit(75, "feet"),
  34774. weight: math.unit(180000, "kg"),
  34775. preyCapacity: math.unit(50000, "people"),
  34776. name: "Side",
  34777. image: {
  34778. source: "./media/characters/saphinara/meowberus-side.svg",
  34779. extra: 1400/711,
  34780. bottom: 126/1526
  34781. },
  34782. form: "meowberus",
  34783. extraAttributes: {
  34784. "pawArea": {
  34785. name: "Paw Size",
  34786. power: 2,
  34787. type: "area",
  34788. base: math.unit(35, "m^2")
  34789. }
  34790. }
  34791. },
  34792. },
  34793. [
  34794. {
  34795. name: "Normal",
  34796. height: math.unit(15 + 7/12, "feet"),
  34797. default: true,
  34798. form: "normal"
  34799. },
  34800. {
  34801. name: "Angry",
  34802. height: math.unit(30 + 6/12, "feet"),
  34803. form: "normal"
  34804. },
  34805. {
  34806. name: "Enraged",
  34807. height: math.unit(102 + 1/12, "feet"),
  34808. form: "normal"
  34809. },
  34810. {
  34811. name: "True",
  34812. height: math.unit(200, "feet"),
  34813. default: true,
  34814. form: "true-form"
  34815. },
  34816. {
  34817. name: "Normal",
  34818. height: math.unit(75, "feet"),
  34819. default: true,
  34820. form: "meowberus"
  34821. },
  34822. ],
  34823. {
  34824. "normal": {
  34825. name: "Normal",
  34826. default: true
  34827. },
  34828. "true-form": {
  34829. name: "True Form"
  34830. },
  34831. "meowberus": {
  34832. name: "Meowberus",
  34833. },
  34834. }
  34835. ))
  34836. characterMakers.push(() => makeCharacter(
  34837. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34838. {
  34839. front: {
  34840. height: math.unit(6 + 8/12, "feet"),
  34841. weight: math.unit(300, "lb"),
  34842. name: "Front",
  34843. image: {
  34844. source: "./media/characters/jrain/front.svg",
  34845. extra: 3039/2865,
  34846. bottom: 399/3438
  34847. }
  34848. },
  34849. back: {
  34850. height: math.unit(6 + 8/12, "feet"),
  34851. weight: math.unit(300, "lb"),
  34852. name: "Back",
  34853. image: {
  34854. source: "./media/characters/jrain/back.svg",
  34855. extra: 3089/2938,
  34856. bottom: 172/3261
  34857. }
  34858. },
  34859. head: {
  34860. height: math.unit(2.14, "feet"),
  34861. name: "Head",
  34862. image: {
  34863. source: "./media/characters/jrain/head.svg"
  34864. }
  34865. },
  34866. maw: {
  34867. height: math.unit(1.77, "feet"),
  34868. name: "Maw",
  34869. image: {
  34870. source: "./media/characters/jrain/maw.svg"
  34871. }
  34872. },
  34873. leftHand: {
  34874. height: math.unit(1.1, "feet"),
  34875. name: "Left Hand",
  34876. image: {
  34877. source: "./media/characters/jrain/left-hand.svg"
  34878. }
  34879. },
  34880. rightHand: {
  34881. height: math.unit(1.1, "feet"),
  34882. name: "Right Hand",
  34883. image: {
  34884. source: "./media/characters/jrain/right-hand.svg"
  34885. }
  34886. },
  34887. eye: {
  34888. height: math.unit(0.35, "feet"),
  34889. name: "Eye",
  34890. image: {
  34891. source: "./media/characters/jrain/eye.svg"
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "Normal",
  34898. height: math.unit(6 + 8/12, "feet"),
  34899. default: true
  34900. },
  34901. {
  34902. name: "Casually Large",
  34903. height: math.unit(25, "feet")
  34904. },
  34905. {
  34906. name: "Giant",
  34907. height: math.unit(100, "feet")
  34908. },
  34909. {
  34910. name: "Kaiju",
  34911. height: math.unit(300, "feet")
  34912. },
  34913. ]
  34914. ))
  34915. characterMakers.push(() => makeCharacter(
  34916. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34917. {
  34918. dragon: {
  34919. height: math.unit(5, "meters"),
  34920. name: "Dragon",
  34921. image: {
  34922. source: "./media/characters/sabrina/dragon.svg",
  34923. extra: 3670 / 2365,
  34924. bottom: 333 / 4003
  34925. }
  34926. },
  34927. gryphon: {
  34928. height: math.unit(3, "meters"),
  34929. name: "Gryphon",
  34930. image: {
  34931. source: "./media/characters/sabrina/gryphon.svg",
  34932. extra: 1576 / 945,
  34933. bottom: 71 / 1647
  34934. }
  34935. },
  34936. snake: {
  34937. height: math.unit(12, "meters"),
  34938. name: "Snake",
  34939. image: {
  34940. source: "./media/characters/sabrina/snake.svg",
  34941. extra: 1758 / 1320,
  34942. bottom: 186 / 1944
  34943. }
  34944. },
  34945. collar: {
  34946. height: math.unit(1.86, "meters"),
  34947. name: "Collar",
  34948. image: {
  34949. source: "./media/characters/sabrina/collar.svg"
  34950. }
  34951. },
  34952. eye: {
  34953. height: math.unit(0.53, "meters"),
  34954. name: "Eye",
  34955. image: {
  34956. source: "./media/characters/sabrina/eye.svg"
  34957. }
  34958. },
  34959. foot: {
  34960. height: math.unit(1.86, "meters"),
  34961. name: "Foot",
  34962. image: {
  34963. source: "./media/characters/sabrina/foot.svg"
  34964. }
  34965. },
  34966. hand: {
  34967. height: math.unit(1.32, "meters"),
  34968. name: "Hand",
  34969. image: {
  34970. source: "./media/characters/sabrina/hand.svg"
  34971. }
  34972. },
  34973. head: {
  34974. height: math.unit(2.44, "meters"),
  34975. name: "Head",
  34976. image: {
  34977. source: "./media/characters/sabrina/head.svg"
  34978. }
  34979. },
  34980. headAngry: {
  34981. height: math.unit(2.44, "meters"),
  34982. name: "Head (Angry))",
  34983. image: {
  34984. source: "./media/characters/sabrina/head-angry.svg"
  34985. }
  34986. },
  34987. maw: {
  34988. height: math.unit(1.65, "meters"),
  34989. name: "Maw",
  34990. image: {
  34991. source: "./media/characters/sabrina/maw.svg"
  34992. }
  34993. },
  34994. spikes: {
  34995. height: math.unit(1.69, "meters"),
  34996. name: "Spikes",
  34997. image: {
  34998. source: "./media/characters/sabrina/spikes.svg"
  34999. }
  35000. },
  35001. stomach: {
  35002. height: math.unit(1.15, "meters"),
  35003. name: "Stomach",
  35004. image: {
  35005. source: "./media/characters/sabrina/stomach.svg"
  35006. }
  35007. },
  35008. tongue: {
  35009. height: math.unit(1.27, "meters"),
  35010. name: "Tongue",
  35011. image: {
  35012. source: "./media/characters/sabrina/tongue.svg"
  35013. }
  35014. },
  35015. wingDorsal: {
  35016. height: math.unit(4.85, "meters"),
  35017. name: "Wing (Dorsal)",
  35018. image: {
  35019. source: "./media/characters/sabrina/wing-dorsal.svg"
  35020. }
  35021. },
  35022. wingVentral: {
  35023. height: math.unit(4.85, "meters"),
  35024. name: "Wing (Ventral)",
  35025. image: {
  35026. source: "./media/characters/sabrina/wing-ventral.svg"
  35027. }
  35028. },
  35029. },
  35030. [
  35031. {
  35032. name: "Normal",
  35033. height: math.unit(5, "meters"),
  35034. default: true
  35035. },
  35036. ]
  35037. ))
  35038. characterMakers.push(() => makeCharacter(
  35039. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35040. {
  35041. frontMaid: {
  35042. height: math.unit(5 + 5/12, "feet"),
  35043. weight: math.unit(130, "lb"),
  35044. name: "Front (Maid)",
  35045. image: {
  35046. source: "./media/characters/midnight-tales/front-maid.svg",
  35047. extra: 489/454,
  35048. bottom: 61/550
  35049. }
  35050. },
  35051. frontFormal: {
  35052. height: math.unit(5 + 5/12, "feet"),
  35053. weight: math.unit(130, "lb"),
  35054. name: "Front (Formal)",
  35055. image: {
  35056. source: "./media/characters/midnight-tales/front-formal.svg",
  35057. extra: 489/454,
  35058. bottom: 61/550
  35059. }
  35060. },
  35061. back: {
  35062. height: math.unit(5 + 5/12, "feet"),
  35063. weight: math.unit(130, "lb"),
  35064. name: "Back",
  35065. image: {
  35066. source: "./media/characters/midnight-tales/back.svg",
  35067. extra: 498/456,
  35068. bottom: 33/531
  35069. }
  35070. },
  35071. frontBeast: {
  35072. height: math.unit(40, "feet"),
  35073. weight: math.unit(64000, "lb"),
  35074. name: "Front (Beast)",
  35075. image: {
  35076. source: "./media/characters/midnight-tales/front-beast.svg",
  35077. extra: 927/860,
  35078. bottom: 53/980
  35079. }
  35080. },
  35081. backBeast: {
  35082. height: math.unit(40, "feet"),
  35083. weight: math.unit(64000, "lb"),
  35084. name: "Back (Beast)",
  35085. image: {
  35086. source: "./media/characters/midnight-tales/back-beast.svg",
  35087. extra: 929/855,
  35088. bottom: 16/945
  35089. }
  35090. },
  35091. footBeast: {
  35092. height: math.unit(6.7, "feet"),
  35093. name: "Foot (Beast)",
  35094. image: {
  35095. source: "./media/characters/midnight-tales/foot-beast.svg"
  35096. }
  35097. },
  35098. headBeast: {
  35099. height: math.unit(8, "feet"),
  35100. name: "Head (Beast)",
  35101. image: {
  35102. source: "./media/characters/midnight-tales/head-beast.svg"
  35103. }
  35104. },
  35105. },
  35106. [
  35107. {
  35108. name: "Normal",
  35109. height: math.unit(5 + 5 / 12, "feet"),
  35110. default: true
  35111. },
  35112. {
  35113. name: "Macro",
  35114. height: math.unit(25, "feet")
  35115. },
  35116. ]
  35117. ))
  35118. characterMakers.push(() => makeCharacter(
  35119. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35120. {
  35121. front: {
  35122. height: math.unit(5 + 10/12, "feet"),
  35123. name: "Front",
  35124. image: {
  35125. source: "./media/characters/argon/front.svg",
  35126. extra: 2009/1935,
  35127. bottom: 118/2127
  35128. }
  35129. },
  35130. back: {
  35131. height: math.unit(5 + 10/12, "feet"),
  35132. name: "Back",
  35133. image: {
  35134. source: "./media/characters/argon/back.svg",
  35135. extra: 2047/1992,
  35136. bottom: 20/2067
  35137. }
  35138. },
  35139. frontDressed: {
  35140. height: math.unit(5 + 10/12, "feet"),
  35141. name: "Front (Dressed)",
  35142. image: {
  35143. source: "./media/characters/argon/front-dressed.svg",
  35144. extra: 2009/1935,
  35145. bottom: 118/2127
  35146. }
  35147. },
  35148. },
  35149. [
  35150. {
  35151. name: "Normal",
  35152. height: math.unit(5 + 10/12, "feet"),
  35153. default: true
  35154. },
  35155. ]
  35156. ))
  35157. characterMakers.push(() => makeCharacter(
  35158. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35159. {
  35160. front: {
  35161. height: math.unit(8 + 6/12, "feet"),
  35162. weight: math.unit(1150, "lb"),
  35163. name: "Front",
  35164. image: {
  35165. source: "./media/characters/kichi/front.svg",
  35166. extra: 1267/1164,
  35167. bottom: 61/1328
  35168. }
  35169. },
  35170. back: {
  35171. height: math.unit(8 + 6/12, "feet"),
  35172. weight: math.unit(1150, "lb"),
  35173. name: "Back",
  35174. image: {
  35175. source: "./media/characters/kichi/back.svg",
  35176. extra: 1273/1166,
  35177. bottom: 33/1306
  35178. }
  35179. },
  35180. },
  35181. [
  35182. {
  35183. name: "Normal",
  35184. height: math.unit(8 + 6/12, "feet"),
  35185. default: true
  35186. },
  35187. ]
  35188. ))
  35189. characterMakers.push(() => makeCharacter(
  35190. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35191. {
  35192. front: {
  35193. height: math.unit(6, "feet"),
  35194. weight: math.unit(210, "lb"),
  35195. name: "Front",
  35196. image: {
  35197. source: "./media/characters/manetel-greyscale/front.svg",
  35198. extra: 350/312,
  35199. bottom: 8/358
  35200. }
  35201. },
  35202. },
  35203. [
  35204. {
  35205. name: "Micro",
  35206. height: math.unit(2, "inches")
  35207. },
  35208. {
  35209. name: "Normal",
  35210. height: math.unit(6, "feet"),
  35211. default: true
  35212. },
  35213. {
  35214. name: "Minimacro",
  35215. height: math.unit(17, "feet")
  35216. },
  35217. {
  35218. name: "Macro",
  35219. height: math.unit(117, "feet")
  35220. },
  35221. ]
  35222. ))
  35223. characterMakers.push(() => makeCharacter(
  35224. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35225. {
  35226. side: {
  35227. height: math.unit(5 + 1/12, "feet"),
  35228. weight: math.unit(418, "lb"),
  35229. name: "Side",
  35230. image: {
  35231. source: "./media/characters/softpurr/side.svg",
  35232. extra: 1993/1945,
  35233. bottom: 134/2127
  35234. }
  35235. },
  35236. front: {
  35237. height: math.unit(5 + 1/12, "feet"),
  35238. weight: math.unit(418, "lb"),
  35239. name: "Front",
  35240. image: {
  35241. source: "./media/characters/softpurr/front.svg",
  35242. extra: 1950/1856,
  35243. bottom: 174/2124
  35244. }
  35245. },
  35246. paw: {
  35247. height: math.unit(1, "feet"),
  35248. name: "Paw",
  35249. image: {
  35250. source: "./media/characters/softpurr/paw.svg"
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(5 + 1/12, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(260, "meters"),
  35267. name: "Front",
  35268. image: {
  35269. source: "./media/characters/anahita/front.svg",
  35270. extra: 665/635,
  35271. bottom: 89/754
  35272. }
  35273. },
  35274. },
  35275. [
  35276. {
  35277. name: "Macro",
  35278. height: math.unit(260, "meters"),
  35279. default: true
  35280. },
  35281. ]
  35282. ))
  35283. characterMakers.push(() => makeCharacter(
  35284. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35285. {
  35286. front: {
  35287. height: math.unit(4 + 10/12, "feet"),
  35288. weight: math.unit(160, "lb"),
  35289. name: "Front",
  35290. image: {
  35291. source: "./media/characters/chip-mouse/front.svg",
  35292. extra: 3528/3408,
  35293. bottom: 0/3528
  35294. }
  35295. },
  35296. frontNsfw: {
  35297. height: math.unit(4 + 10/12, "feet"),
  35298. weight: math.unit(160, "lb"),
  35299. name: "Front (NSFW)",
  35300. image: {
  35301. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35302. extra: 3528/3408,
  35303. bottom: 0/3528
  35304. }
  35305. },
  35306. },
  35307. [
  35308. {
  35309. name: "Normal",
  35310. height: math.unit(4 + 10/12, "feet"),
  35311. default: true
  35312. },
  35313. ]
  35314. ))
  35315. characterMakers.push(() => makeCharacter(
  35316. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35317. {
  35318. side: {
  35319. height: math.unit(10, "feet"),
  35320. weight: math.unit(14000, "lb"),
  35321. name: "Side",
  35322. image: {
  35323. source: "./media/characters/kremm/side.svg",
  35324. extra: 1390/1053,
  35325. bottom: 90/1480
  35326. }
  35327. },
  35328. gut: {
  35329. height: math.unit(5.8, "feet"),
  35330. name: "Gut",
  35331. image: {
  35332. source: "./media/characters/kremm/gut.svg"
  35333. }
  35334. },
  35335. ass: {
  35336. height: math.unit(6.1, "feet"),
  35337. name: "Ass",
  35338. image: {
  35339. source: "./media/characters/kremm/ass.svg"
  35340. }
  35341. },
  35342. jaws: {
  35343. height: math.unit(2.2, "feet"),
  35344. name: "Jaws",
  35345. image: {
  35346. source: "./media/characters/kremm/jaws.svg"
  35347. }
  35348. },
  35349. dick: {
  35350. height: math.unit(4.26, "feet"),
  35351. name: "Dick",
  35352. image: {
  35353. source: "./media/characters/kremm/dick.svg"
  35354. }
  35355. },
  35356. },
  35357. [
  35358. {
  35359. name: "Normal",
  35360. height: math.unit(10, "feet"),
  35361. default: true
  35362. },
  35363. ]
  35364. ))
  35365. characterMakers.push(() => makeCharacter(
  35366. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35367. {
  35368. front: {
  35369. height: math.unit(30, "stories"),
  35370. name: "Front",
  35371. image: {
  35372. source: "./media/characters/kai/front.svg",
  35373. extra: 1892/1718,
  35374. bottom: 162/2054
  35375. }
  35376. },
  35377. },
  35378. [
  35379. {
  35380. name: "Macro",
  35381. height: math.unit(30, "stories"),
  35382. default: true
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35388. {
  35389. front: {
  35390. height: math.unit(6 + 4/12, "feet"),
  35391. weight: math.unit(145, "lb"),
  35392. name: "Front",
  35393. image: {
  35394. source: "./media/characters/sykes/front.svg",
  35395. extra: 1321 / 1187,
  35396. bottom: 66 / 1387
  35397. }
  35398. },
  35399. back: {
  35400. height: math.unit(6 + 4/12, "feet"),
  35401. weight: math.unit(145, "lb"),
  35402. name: "Back",
  35403. image: {
  35404. source: "./media/characters/sykes/back.svg",
  35405. extra: 1326/1181,
  35406. bottom: 31/1357
  35407. }
  35408. },
  35409. traditionalOutfit: {
  35410. height: math.unit(6 + 4/12, "feet"),
  35411. weight: math.unit(145, "lb"),
  35412. name: "Traditional Outfit",
  35413. image: {
  35414. source: "./media/characters/sykes/traditional-outfit.svg",
  35415. extra: 1321 / 1187,
  35416. bottom: 66 / 1387
  35417. }
  35418. },
  35419. adventureOutfit: {
  35420. height: math.unit(6 + 4/12, "feet"),
  35421. weight: math.unit(145, "lb"),
  35422. name: "Adventure Outfit",
  35423. image: {
  35424. source: "./media/characters/sykes/adventure-outfit.svg",
  35425. extra: 1321 / 1187,
  35426. bottom: 66 / 1387
  35427. }
  35428. },
  35429. handLeft: {
  35430. height: math.unit(0.9, "feet"),
  35431. name: "Hand (Left)",
  35432. image: {
  35433. source: "./media/characters/sykes/hand-left.svg"
  35434. }
  35435. },
  35436. handRight: {
  35437. height: math.unit(0.839, "feet"),
  35438. name: "Hand (Right)",
  35439. image: {
  35440. source: "./media/characters/sykes/hand-right.svg"
  35441. }
  35442. },
  35443. leftFoot: {
  35444. height: math.unit(1.2, "feet"),
  35445. name: "Foot (Left)",
  35446. image: {
  35447. source: "./media/characters/sykes/foot-left.svg"
  35448. }
  35449. },
  35450. rightFoot: {
  35451. height: math.unit(1.2, "feet"),
  35452. name: "Foot (Right)",
  35453. image: {
  35454. source: "./media/characters/sykes/foot-right.svg"
  35455. }
  35456. },
  35457. maw: {
  35458. height: math.unit(1.93, "feet"),
  35459. name: "Maw",
  35460. image: {
  35461. source: "./media/characters/sykes/maw.svg"
  35462. }
  35463. },
  35464. teeth: {
  35465. height: math.unit(0.51, "feet"),
  35466. name: "Teeth",
  35467. image: {
  35468. source: "./media/characters/sykes/teeth.svg"
  35469. }
  35470. },
  35471. tongue: {
  35472. height: math.unit(2.13, "feet"),
  35473. name: "Tongue",
  35474. image: {
  35475. source: "./media/characters/sykes/tongue.svg"
  35476. }
  35477. },
  35478. uvula: {
  35479. height: math.unit(0.16, "feet"),
  35480. name: "Uvula",
  35481. image: {
  35482. source: "./media/characters/sykes/uvula.svg"
  35483. }
  35484. },
  35485. collar: {
  35486. height: math.unit(0.287, "feet"),
  35487. name: "Collar",
  35488. image: {
  35489. source: "./media/characters/sykes/collar.svg"
  35490. }
  35491. },
  35492. tail: {
  35493. height: math.unit(3.8, "feet"),
  35494. name: "Tail",
  35495. image: {
  35496. source: "./media/characters/sykes/tail.svg"
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Shrunken",
  35503. height: math.unit(5, "inches")
  35504. },
  35505. {
  35506. name: "Normal",
  35507. height: math.unit(6 + 4 / 12, "feet"),
  35508. default: true
  35509. },
  35510. {
  35511. name: "Big",
  35512. height: math.unit(15, "feet")
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(5 + 8/12, "feet"),
  35521. weight: math.unit(190, "lb"),
  35522. name: "Front",
  35523. image: {
  35524. source: "./media/characters/oven-otter/front.svg",
  35525. extra: 1809/1740,
  35526. bottom: 181/1990
  35527. }
  35528. },
  35529. back: {
  35530. height: math.unit(5 + 8/12, "feet"),
  35531. weight: math.unit(190, "lb"),
  35532. name: "Back",
  35533. image: {
  35534. source: "./media/characters/oven-otter/back.svg",
  35535. extra: 1709/1635,
  35536. bottom: 118/1827
  35537. }
  35538. },
  35539. hand: {
  35540. height: math.unit(1.07, "feet"),
  35541. name: "Hand",
  35542. image: {
  35543. source: "./media/characters/oven-otter/hand.svg"
  35544. }
  35545. },
  35546. beans: {
  35547. height: math.unit(1.74, "feet"),
  35548. name: "Beans",
  35549. image: {
  35550. source: "./media/characters/oven-otter/beans.svg"
  35551. }
  35552. },
  35553. },
  35554. [
  35555. {
  35556. name: "Micro",
  35557. height: math.unit(0.5, "inches")
  35558. },
  35559. {
  35560. name: "Normal",
  35561. height: math.unit(5 + 8/12, "feet"),
  35562. default: true
  35563. },
  35564. {
  35565. name: "Macro",
  35566. height: math.unit(250, "feet")
  35567. },
  35568. {
  35569. name: "Really High",
  35570. height: math.unit(420, "feet")
  35571. },
  35572. ]
  35573. ))
  35574. characterMakers.push(() => makeCharacter(
  35575. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35576. {
  35577. front: {
  35578. height: math.unit(5, "meters"),
  35579. weight: math.unit(292000000000000, "kg"),
  35580. name: "Front",
  35581. image: {
  35582. source: "./media/characters/devourer/front.svg",
  35583. extra: 1800/1733,
  35584. bottom: 211/2011
  35585. }
  35586. },
  35587. maw: {
  35588. height: math.unit(1.1, "meter"),
  35589. name: "Maw",
  35590. image: {
  35591. source: "./media/characters/devourer/maw.svg"
  35592. }
  35593. },
  35594. },
  35595. [
  35596. {
  35597. name: "Small",
  35598. height: math.unit(3, "meters")
  35599. },
  35600. {
  35601. name: "Large",
  35602. height: math.unit(5, "meters"),
  35603. default: true
  35604. },
  35605. ]
  35606. ))
  35607. characterMakers.push(() => makeCharacter(
  35608. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35609. {
  35610. front: {
  35611. height: math.unit(6, "feet"),
  35612. weight: math.unit(400, "lb"),
  35613. name: "Front",
  35614. image: {
  35615. source: "./media/characters/ellarby/front.svg",
  35616. extra: 1909/1763,
  35617. bottom: 80/1989
  35618. }
  35619. },
  35620. back: {
  35621. height: math.unit(6, "feet"),
  35622. weight: math.unit(400, "lb"),
  35623. name: "Back",
  35624. image: {
  35625. source: "./media/characters/ellarby/back.svg",
  35626. extra: 1914/1784,
  35627. bottom: 172/2086
  35628. }
  35629. },
  35630. },
  35631. [
  35632. {
  35633. name: "Mischief",
  35634. height: math.unit(18, "inches")
  35635. },
  35636. {
  35637. name: "Trouble",
  35638. height: math.unit(12, "feet")
  35639. },
  35640. {
  35641. name: "Havoc",
  35642. height: math.unit(200, "feet"),
  35643. default: true
  35644. },
  35645. {
  35646. name: "Pandemonium",
  35647. height: math.unit(1, "mile")
  35648. },
  35649. {
  35650. name: "Catastrophe",
  35651. height: math.unit(100, "miles")
  35652. },
  35653. ]
  35654. ))
  35655. characterMakers.push(() => makeCharacter(
  35656. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35657. {
  35658. front: {
  35659. height: math.unit(4.7, "meters"),
  35660. weight: math.unit(6500, "kg"),
  35661. name: "Front",
  35662. image: {
  35663. source: "./media/characters/vex/front.svg",
  35664. extra: 1288/1140,
  35665. bottom: 100/1388
  35666. }
  35667. },
  35668. },
  35669. [
  35670. {
  35671. name: "Normal",
  35672. height: math.unit(4.7, "meters"),
  35673. default: true
  35674. },
  35675. ]
  35676. ))
  35677. characterMakers.push(() => makeCharacter(
  35678. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35679. {
  35680. normal: {
  35681. height: math.unit(6, "feet"),
  35682. weight: math.unit(350, "lb"),
  35683. name: "Normal",
  35684. image: {
  35685. source: "./media/characters/teshy/normal.svg",
  35686. extra: 1795/1735,
  35687. bottom: 16/1811
  35688. }
  35689. },
  35690. monsterFront: {
  35691. height: math.unit(12, "feet"),
  35692. weight: math.unit(4700, "lb"),
  35693. name: "Monster (Front)",
  35694. image: {
  35695. source: "./media/characters/teshy/monster-front.svg",
  35696. extra: 2042/2034,
  35697. bottom: 128/2170
  35698. }
  35699. },
  35700. monsterSide: {
  35701. height: math.unit(12, "feet"),
  35702. weight: math.unit(4700, "lb"),
  35703. name: "Monster (Side)",
  35704. image: {
  35705. source: "./media/characters/teshy/monster-side.svg",
  35706. extra: 2067/2056,
  35707. bottom: 70/2137
  35708. }
  35709. },
  35710. monsterBack: {
  35711. height: math.unit(12, "feet"),
  35712. weight: math.unit(4700, "lb"),
  35713. name: "Monster (Back)",
  35714. image: {
  35715. source: "./media/characters/teshy/monster-back.svg",
  35716. extra: 1921/1914,
  35717. bottom: 171/2092
  35718. }
  35719. },
  35720. },
  35721. [
  35722. {
  35723. name: "Normal",
  35724. height: math.unit(6, "feet"),
  35725. default: true
  35726. },
  35727. ]
  35728. ))
  35729. characterMakers.push(() => makeCharacter(
  35730. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35731. {
  35732. front: {
  35733. height: math.unit(6, "feet"),
  35734. name: "Front",
  35735. image: {
  35736. source: "./media/characters/ramey/front.svg",
  35737. extra: 790/787,
  35738. bottom: 27/817
  35739. }
  35740. },
  35741. },
  35742. [
  35743. {
  35744. name: "Normal",
  35745. height: math.unit(6, "feet"),
  35746. default: true
  35747. },
  35748. ]
  35749. ))
  35750. characterMakers.push(() => makeCharacter(
  35751. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35752. {
  35753. front: {
  35754. height: math.unit(5 + 5/12, "feet"),
  35755. weight: math.unit(120, "lb"),
  35756. name: "Front",
  35757. image: {
  35758. source: "./media/characters/phirae/front.svg",
  35759. extra: 2491/2436,
  35760. bottom: 38/2529
  35761. }
  35762. },
  35763. },
  35764. [
  35765. {
  35766. name: "Normal",
  35767. height: math.unit(5 + 5/12, "feet"),
  35768. default: true
  35769. },
  35770. ]
  35771. ))
  35772. characterMakers.push(() => makeCharacter(
  35773. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35774. {
  35775. front: {
  35776. height: math.unit(5 + 3/12, "feet"),
  35777. name: "Front",
  35778. image: {
  35779. source: "./media/characters/stagglas/front.svg",
  35780. extra: 962/882,
  35781. bottom: 53/1015
  35782. }
  35783. },
  35784. feral: {
  35785. height: math.unit(335, "cm"),
  35786. name: "Feral",
  35787. image: {
  35788. source: "./media/characters/stagglas/feral.svg",
  35789. extra: 1732/1090,
  35790. bottom: 48/1780
  35791. }
  35792. },
  35793. },
  35794. [
  35795. {
  35796. name: "Normal",
  35797. height: math.unit(5 + 3/12, "feet"),
  35798. default: true
  35799. },
  35800. ]
  35801. ))
  35802. characterMakers.push(() => makeCharacter(
  35803. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35804. {
  35805. front: {
  35806. height: math.unit(5 + 4/12, "feet"),
  35807. weight: math.unit(145, "lb"),
  35808. name: "Front",
  35809. image: {
  35810. source: "./media/characters/starra/front.svg",
  35811. extra: 1790/1691,
  35812. bottom: 91/1881
  35813. }
  35814. },
  35815. },
  35816. [
  35817. {
  35818. name: "Normal",
  35819. height: math.unit(5 + 4/12, "feet"),
  35820. default: true
  35821. },
  35822. ]
  35823. ))
  35824. characterMakers.push(() => makeCharacter(
  35825. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35826. {
  35827. front: {
  35828. height: math.unit(2.2, "meters"),
  35829. name: "Front",
  35830. image: {
  35831. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35832. extra: 1194/1005,
  35833. bottom: 25/1219
  35834. }
  35835. },
  35836. },
  35837. [
  35838. {
  35839. name: "Normal",
  35840. height: math.unit(2.2, "meters"),
  35841. default: true
  35842. },
  35843. ]
  35844. ))
  35845. characterMakers.push(() => makeCharacter(
  35846. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35847. {
  35848. side: {
  35849. height: math.unit(8 + 2/12, "feet"),
  35850. weight: math.unit(1240, "lb"),
  35851. name: "Side",
  35852. image: {
  35853. source: "./media/characters/mika-valentine/side.svg",
  35854. extra: 2670/2501,
  35855. bottom: 250/2920
  35856. }
  35857. },
  35858. },
  35859. [
  35860. {
  35861. name: "Normal",
  35862. height: math.unit(8 + 2/12, "feet"),
  35863. default: true
  35864. },
  35865. ]
  35866. ))
  35867. characterMakers.push(() => makeCharacter(
  35868. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35869. {
  35870. front: {
  35871. height: math.unit(7 + 2/12, "feet"),
  35872. name: "Front",
  35873. image: {
  35874. source: "./media/characters/xoltol/front.svg",
  35875. extra: 2212/2124,
  35876. bottom: 84/2296
  35877. }
  35878. },
  35879. side: {
  35880. height: math.unit(7 + 2/12, "feet"),
  35881. name: "Side",
  35882. image: {
  35883. source: "./media/characters/xoltol/side.svg",
  35884. extra: 2273/2197,
  35885. bottom: 26/2299
  35886. }
  35887. },
  35888. hand: {
  35889. height: math.unit(2.5, "feet"),
  35890. name: "Hand",
  35891. image: {
  35892. source: "./media/characters/xoltol/hand.svg"
  35893. }
  35894. },
  35895. },
  35896. [
  35897. {
  35898. name: "Small-ish",
  35899. height: math.unit(5 + 11/12, "feet")
  35900. },
  35901. {
  35902. name: "Normal",
  35903. height: math.unit(7 + 2/12, "feet")
  35904. },
  35905. {
  35906. name: "\"Macro\"",
  35907. height: math.unit(14 + 9/12, "feet"),
  35908. default: true
  35909. },
  35910. {
  35911. name: "Alternate Height",
  35912. height: math.unit(20, "feet")
  35913. },
  35914. {
  35915. name: "Actually Macro",
  35916. height: math.unit(100, "feet")
  35917. },
  35918. ]
  35919. ))
  35920. characterMakers.push(() => makeCharacter(
  35921. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35922. {
  35923. front: {
  35924. height: math.unit(5 + 2/12, "feet"),
  35925. name: "Front",
  35926. image: {
  35927. source: "./media/characters/kotetsu-redwood/front.svg",
  35928. extra: 1053/942,
  35929. bottom: 60/1113
  35930. }
  35931. },
  35932. },
  35933. [
  35934. {
  35935. name: "Normal",
  35936. height: math.unit(5 + 2/12, "feet"),
  35937. default: true
  35938. },
  35939. ]
  35940. ))
  35941. characterMakers.push(() => makeCharacter(
  35942. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35943. {
  35944. front: {
  35945. height: math.unit(2.4, "meters"),
  35946. weight: math.unit(125, "kg"),
  35947. name: "Front",
  35948. image: {
  35949. source: "./media/characters/lilith/front.svg",
  35950. extra: 1590/1513,
  35951. bottom: 203/1793
  35952. }
  35953. },
  35954. },
  35955. [
  35956. {
  35957. name: "Humanoid",
  35958. height: math.unit(2.4, "meters")
  35959. },
  35960. {
  35961. name: "Normal",
  35962. height: math.unit(6, "meters"),
  35963. default: true
  35964. },
  35965. {
  35966. name: "Largest",
  35967. height: math.unit(55, "meters")
  35968. },
  35969. ]
  35970. ))
  35971. characterMakers.push(() => makeCharacter(
  35972. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35973. {
  35974. front: {
  35975. height: math.unit(8 + 4/12, "feet"),
  35976. weight: math.unit(535, "lb"),
  35977. name: "Front",
  35978. image: {
  35979. source: "./media/characters/beh'kah-bolger/front.svg",
  35980. extra: 1660/1603,
  35981. bottom: 37/1697
  35982. }
  35983. },
  35984. },
  35985. [
  35986. {
  35987. name: "Normal",
  35988. height: math.unit(8 + 4/12, "feet"),
  35989. default: true
  35990. },
  35991. {
  35992. name: "Kaiju",
  35993. height: math.unit(250, "feet")
  35994. },
  35995. {
  35996. name: "Still Growing",
  35997. height: math.unit(10, "miles")
  35998. },
  35999. {
  36000. name: "Continental",
  36001. height: math.unit(5000, "miles")
  36002. },
  36003. {
  36004. name: "Final Form",
  36005. height: math.unit(2500000, "miles")
  36006. },
  36007. ]
  36008. ))
  36009. characterMakers.push(() => makeCharacter(
  36010. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36011. {
  36012. front: {
  36013. height: math.unit(7 + 2/12, "feet"),
  36014. weight: math.unit(230, "kg"),
  36015. name: "Front",
  36016. image: {
  36017. source: "./media/characters/tatyana-milewska/front.svg",
  36018. extra: 1199/1150,
  36019. bottom: 86/1285
  36020. }
  36021. },
  36022. },
  36023. [
  36024. {
  36025. name: "Normal",
  36026. height: math.unit(7 + 2/12, "feet"),
  36027. default: true
  36028. },
  36029. {
  36030. name: "Big",
  36031. height: math.unit(12, "feet")
  36032. },
  36033. {
  36034. name: "Minimacro",
  36035. height: math.unit(20, "feet")
  36036. },
  36037. {
  36038. name: "Macro",
  36039. height: math.unit(120, "feet")
  36040. },
  36041. ]
  36042. ))
  36043. characterMakers.push(() => makeCharacter(
  36044. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36045. {
  36046. front: {
  36047. height: math.unit(7 + 8/12, "feet"),
  36048. weight: math.unit(152, "kg"),
  36049. name: "Front",
  36050. image: {
  36051. source: "./media/characters/helen-arri/front.svg",
  36052. extra: 440/423,
  36053. bottom: 14/454
  36054. }
  36055. },
  36056. back: {
  36057. height: math.unit(7 + 8/12, "feet"),
  36058. weight: math.unit(152, "kg"),
  36059. name: "Back",
  36060. image: {
  36061. source: "./media/characters/helen-arri/back.svg",
  36062. extra: 443/426,
  36063. bottom: 8/451
  36064. }
  36065. },
  36066. },
  36067. [
  36068. {
  36069. name: "Normal",
  36070. height: math.unit(7 + 8/12, "feet"),
  36071. default: true
  36072. },
  36073. {
  36074. name: "Big",
  36075. height: math.unit(14, "feet")
  36076. },
  36077. {
  36078. name: "Minimacro",
  36079. height: math.unit(24, "feet")
  36080. },
  36081. {
  36082. name: "Macro",
  36083. height: math.unit(140, "feet")
  36084. },
  36085. ]
  36086. ))
  36087. characterMakers.push(() => makeCharacter(
  36088. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36089. {
  36090. front: {
  36091. height: math.unit(6, "meters"),
  36092. name: "Front",
  36093. image: {
  36094. source: "./media/characters/ehanu-rehu/front.svg",
  36095. extra: 1800/1800,
  36096. bottom: 59/1859
  36097. }
  36098. },
  36099. },
  36100. [
  36101. {
  36102. name: "Normal",
  36103. height: math.unit(6, "meters"),
  36104. default: true
  36105. },
  36106. ]
  36107. ))
  36108. characterMakers.push(() => makeCharacter(
  36109. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36110. {
  36111. front: {
  36112. height: math.unit(7 + 3/12, "feet"),
  36113. name: "Front",
  36114. image: {
  36115. source: "./media/characters/renholder/front.svg",
  36116. extra: 3096/2960,
  36117. bottom: 250/3346
  36118. }
  36119. },
  36120. },
  36121. [
  36122. {
  36123. name: "Normal Bat",
  36124. height: math.unit(7 + 3/12, "feet"),
  36125. default: true
  36126. },
  36127. {
  36128. name: "Slightly Tall Bat",
  36129. height: math.unit(100, "feet")
  36130. },
  36131. {
  36132. name: "Big Bat",
  36133. height: math.unit(1000, "feet")
  36134. },
  36135. {
  36136. name: "City-Sized Bat",
  36137. height: math.unit(200000, "feet")
  36138. },
  36139. {
  36140. name: "Bigger Bat",
  36141. height: math.unit(10000, "miles")
  36142. },
  36143. {
  36144. name: "Solar Sized Bat",
  36145. height: math.unit(100, "AU")
  36146. },
  36147. {
  36148. name: "Galactic Bat",
  36149. height: math.unit(200000, "lightyears")
  36150. },
  36151. {
  36152. name: "Universally Known Bat",
  36153. height: math.unit(1, "universe")
  36154. },
  36155. ]
  36156. ))
  36157. characterMakers.push(() => makeCharacter(
  36158. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36159. {
  36160. front: {
  36161. height: math.unit(6 + 11/12, "feet"),
  36162. weight: math.unit(250, "lb"),
  36163. name: "Front",
  36164. image: {
  36165. source: "./media/characters/cookiecat/front.svg",
  36166. extra: 893/827,
  36167. bottom: 14/907
  36168. }
  36169. },
  36170. },
  36171. [
  36172. {
  36173. name: "Micro",
  36174. height: math.unit(3, "inches")
  36175. },
  36176. {
  36177. name: "Normal",
  36178. height: math.unit(6 + 11/12, "feet"),
  36179. default: true
  36180. },
  36181. {
  36182. name: "Macro",
  36183. height: math.unit(100, "feet")
  36184. },
  36185. {
  36186. name: "Macro+",
  36187. height: math.unit(404, "feet")
  36188. },
  36189. {
  36190. name: "Megamacro",
  36191. height: math.unit(165, "miles")
  36192. },
  36193. {
  36194. name: "Planetary",
  36195. height: math.unit(4600, "miles")
  36196. },
  36197. ]
  36198. ))
  36199. characterMakers.push(() => makeCharacter(
  36200. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36201. {
  36202. front: {
  36203. height: math.unit(10 + 3/12, "feet"),
  36204. weight: math.unit(1500, "lb"),
  36205. name: "Front",
  36206. image: {
  36207. source: "./media/characters/tux-kusanagi/front.svg",
  36208. extra: 944/840,
  36209. bottom: 39/983
  36210. }
  36211. },
  36212. back: {
  36213. height: math.unit(10 + 3/12, "feet"),
  36214. weight: math.unit(1500, "lb"),
  36215. name: "Back",
  36216. image: {
  36217. source: "./media/characters/tux-kusanagi/back.svg",
  36218. extra: 941/842,
  36219. bottom: 28/969
  36220. }
  36221. },
  36222. rump: {
  36223. height: math.unit(5.25, "feet"),
  36224. name: "Rump",
  36225. image: {
  36226. source: "./media/characters/tux-kusanagi/rump.svg"
  36227. }
  36228. },
  36229. beak: {
  36230. height: math.unit(1.54, "feet"),
  36231. name: "Beak",
  36232. image: {
  36233. source: "./media/characters/tux-kusanagi/beak.svg"
  36234. }
  36235. },
  36236. },
  36237. [
  36238. {
  36239. name: "Normal",
  36240. height: math.unit(10 + 3/12, "feet"),
  36241. default: true
  36242. },
  36243. ]
  36244. ))
  36245. characterMakers.push(() => makeCharacter(
  36246. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36247. {
  36248. front: {
  36249. height: math.unit(58, "feet"),
  36250. weight: math.unit(200, "tons"),
  36251. name: "Front",
  36252. image: {
  36253. source: "./media/characters/uzarmazari/front.svg",
  36254. extra: 1575/1455,
  36255. bottom: 152/1727
  36256. }
  36257. },
  36258. back: {
  36259. height: math.unit(58, "feet"),
  36260. weight: math.unit(200, "tons"),
  36261. name: "Back",
  36262. image: {
  36263. source: "./media/characters/uzarmazari/back.svg",
  36264. extra: 1585/1510,
  36265. bottom: 157/1742
  36266. }
  36267. },
  36268. head: {
  36269. height: math.unit(26, "feet"),
  36270. name: "Head",
  36271. image: {
  36272. source: "./media/characters/uzarmazari/head.svg"
  36273. }
  36274. },
  36275. },
  36276. [
  36277. {
  36278. name: "Normal",
  36279. height: math.unit(58, "feet"),
  36280. default: true
  36281. },
  36282. ]
  36283. ))
  36284. characterMakers.push(() => makeCharacter(
  36285. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36286. {
  36287. side: {
  36288. height: math.unit(15, "feet"),
  36289. name: "Side",
  36290. image: {
  36291. source: "./media/characters/akitu/side.svg",
  36292. extra: 1421/1321,
  36293. bottom: 157/1578
  36294. }
  36295. },
  36296. front: {
  36297. height: math.unit(15, "feet"),
  36298. name: "Front",
  36299. image: {
  36300. source: "./media/characters/akitu/front.svg",
  36301. extra: 1435/1326,
  36302. bottom: 232/1667
  36303. }
  36304. },
  36305. },
  36306. [
  36307. {
  36308. name: "Normal",
  36309. height: math.unit(15, "feet"),
  36310. default: true
  36311. },
  36312. ]
  36313. ))
  36314. characterMakers.push(() => makeCharacter(
  36315. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36316. {
  36317. front: {
  36318. height: math.unit(10 + 8/12, "feet"),
  36319. name: "Front",
  36320. image: {
  36321. source: "./media/characters/azalie-croixland/front.svg",
  36322. extra: 1972/1856,
  36323. bottom: 31/2003
  36324. }
  36325. },
  36326. },
  36327. [
  36328. {
  36329. name: "Original Height",
  36330. height: math.unit(5 + 4/12, "feet")
  36331. },
  36332. {
  36333. name: "Normal Height",
  36334. height: math.unit(10 + 8/12, "feet"),
  36335. default: true
  36336. },
  36337. ]
  36338. ))
  36339. characterMakers.push(() => makeCharacter(
  36340. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36341. {
  36342. side: {
  36343. height: math.unit(7 + 1/12, "feet"),
  36344. weight: math.unit(245, "lb"),
  36345. name: "Side",
  36346. image: {
  36347. source: "./media/characters/kavus-kazian/side.svg",
  36348. extra: 349/342,
  36349. bottom: 15/364
  36350. }
  36351. },
  36352. },
  36353. [
  36354. {
  36355. name: "Normal",
  36356. height: math.unit(7 + 1/12, "feet"),
  36357. default: true
  36358. },
  36359. ]
  36360. ))
  36361. characterMakers.push(() => makeCharacter(
  36362. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36363. {
  36364. normalFront: {
  36365. height: math.unit(5 + 11/12, "feet"),
  36366. name: "Front",
  36367. image: {
  36368. source: "./media/characters/moonlight-rose/normal-front.svg",
  36369. extra: 1980/1825,
  36370. bottom: 18/1998
  36371. },
  36372. form: "normal",
  36373. default: true
  36374. },
  36375. normalBack: {
  36376. height: math.unit(5 + 11/12, "feet"),
  36377. name: "Back",
  36378. image: {
  36379. source: "./media/characters/moonlight-rose/normal-back.svg",
  36380. extra: 2010/1839,
  36381. bottom: 10/2020
  36382. },
  36383. form: "normal"
  36384. },
  36385. demonFront: {
  36386. height: math.unit(1.5, "earths"),
  36387. name: "Front",
  36388. image: {
  36389. source: "./media/characters/moonlight-rose/demon.svg",
  36390. extra: 1400/1294,
  36391. bottom: 45/1445
  36392. },
  36393. form: "demon",
  36394. default: true
  36395. },
  36396. terraFront: {
  36397. height: math.unit(1.5, "earths"),
  36398. name: "Front",
  36399. image: {
  36400. source: "./media/characters/moonlight-rose/terra.svg"
  36401. },
  36402. form: "terra",
  36403. default: true
  36404. },
  36405. jupiterFront: {
  36406. height: math.unit(69911*2, "km"),
  36407. name: "Front",
  36408. image: {
  36409. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36410. extra: 1367/1286,
  36411. bottom: 55/1422
  36412. },
  36413. form: "jupiter",
  36414. default: true
  36415. },
  36416. neptuneFront: {
  36417. height: math.unit(24622*2, "feet"),
  36418. name: "Front",
  36419. image: {
  36420. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36421. extra: 1851/1712,
  36422. bottom: 0/1851
  36423. },
  36424. form: "neptune",
  36425. default: true
  36426. },
  36427. },
  36428. [
  36429. {
  36430. name: "\"Natural\" Height",
  36431. height: math.unit(5 + 11/12, "feet"),
  36432. form: "normal"
  36433. },
  36434. {
  36435. name: "Smallest comfortable size",
  36436. height: math.unit(40, "meters"),
  36437. form: "normal"
  36438. },
  36439. {
  36440. name: "Common size",
  36441. height: math.unit(50, "km"),
  36442. form: "normal",
  36443. default: true
  36444. },
  36445. {
  36446. name: "Normal",
  36447. height: math.unit(1.5, "earths"),
  36448. form: "demon",
  36449. default: true
  36450. },
  36451. {
  36452. name: "Universal",
  36453. height: math.unit(15, "universes"),
  36454. form: "demon"
  36455. },
  36456. {
  36457. name: "Earth",
  36458. height: math.unit(1.5, "earths"),
  36459. form: "terra",
  36460. default: true
  36461. },
  36462. {
  36463. name: "Super Earth",
  36464. height: math.unit(67.5, "earths"),
  36465. form: "terra"
  36466. },
  36467. {
  36468. name: "Doesn't fit in a solar system...",
  36469. height: math.unit(1, "galaxy"),
  36470. form: "terra"
  36471. },
  36472. {
  36473. name: "Saturn",
  36474. height: math.unit(58232*2, "km"),
  36475. form: "jupiter"
  36476. },
  36477. {
  36478. name: "Jupiter",
  36479. height: math.unit(69911*2, "km"),
  36480. form: "jupiter",
  36481. default: true
  36482. },
  36483. {
  36484. name: "HD 100546 b",
  36485. height: math.unit(482938, "km"),
  36486. form: "jupiter"
  36487. },
  36488. {
  36489. name: "Enceladus",
  36490. height: math.unit(513*2, "km"),
  36491. form: "neptune"
  36492. },
  36493. {
  36494. name: "Europe",
  36495. height: math.unit(1560*2, "km"),
  36496. form: "neptune"
  36497. },
  36498. {
  36499. name: "Neptune",
  36500. height: math.unit(24622*2, "km"),
  36501. form: "neptune",
  36502. default: true
  36503. },
  36504. {
  36505. name: "CoRoT-9b",
  36506. height: math.unit(75067*2, "km"),
  36507. form: "neptune"
  36508. },
  36509. ],
  36510. {
  36511. "normal": {
  36512. name: "Normal",
  36513. default: true
  36514. },
  36515. "demon": {
  36516. name: "Demon"
  36517. },
  36518. "terra": {
  36519. name: "Terra"
  36520. },
  36521. "jupiter": {
  36522. name: "Jupiter"
  36523. },
  36524. "neptune": {
  36525. name: "Neptune"
  36526. }
  36527. }
  36528. ))
  36529. characterMakers.push(() => makeCharacter(
  36530. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36531. {
  36532. front: {
  36533. height: math.unit(16, "feet"),
  36534. weight: math.unit(610, "kg"),
  36535. name: "Front",
  36536. image: {
  36537. source: "./media/characters/huckle/front.svg",
  36538. extra: 1731/1625,
  36539. bottom: 33/1764
  36540. }
  36541. },
  36542. back: {
  36543. height: math.unit(16, "feet"),
  36544. weight: math.unit(610, "kg"),
  36545. name: "Back",
  36546. image: {
  36547. source: "./media/characters/huckle/back.svg",
  36548. extra: 1738/1651,
  36549. bottom: 37/1775
  36550. }
  36551. },
  36552. laughing: {
  36553. height: math.unit(3.75, "feet"),
  36554. name: "Laughing",
  36555. image: {
  36556. source: "./media/characters/huckle/laughing.svg"
  36557. }
  36558. },
  36559. angry: {
  36560. height: math.unit(4.15, "feet"),
  36561. name: "Angry",
  36562. image: {
  36563. source: "./media/characters/huckle/angry.svg"
  36564. }
  36565. },
  36566. },
  36567. [
  36568. {
  36569. name: "Normal",
  36570. height: math.unit(16, "feet"),
  36571. default: true
  36572. },
  36573. {
  36574. name: "Mini Macro",
  36575. height: math.unit(463, "feet")
  36576. },
  36577. {
  36578. name: "Macro",
  36579. height: math.unit(1680, "meters")
  36580. },
  36581. {
  36582. name: "Mega Macro",
  36583. height: math.unit(175, "km")
  36584. },
  36585. {
  36586. name: "Terra Macro",
  36587. height: math.unit(32, "gigameters")
  36588. },
  36589. {
  36590. name: "Multiverse+",
  36591. height: math.unit(2.56e23, "yottameters")
  36592. },
  36593. ]
  36594. ))
  36595. characterMakers.push(() => makeCharacter(
  36596. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36597. {
  36598. front: {
  36599. height: math.unit(6 + 9/12, "feet"),
  36600. weight: math.unit(280, "lb"),
  36601. name: "Front",
  36602. image: {
  36603. source: "./media/characters/candy/front.svg",
  36604. extra: 234/217,
  36605. bottom: 11/245
  36606. }
  36607. },
  36608. },
  36609. [
  36610. {
  36611. name: "Really Small",
  36612. height: math.unit(0.1, "nm")
  36613. },
  36614. {
  36615. name: "Micro",
  36616. height: math.unit(2, "inches")
  36617. },
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(6 + 9/12, "feet"),
  36621. default: true
  36622. },
  36623. {
  36624. name: "Small Macro",
  36625. height: math.unit(69, "feet")
  36626. },
  36627. {
  36628. name: "Macro",
  36629. height: math.unit(160, "feet")
  36630. },
  36631. {
  36632. name: "Megamacro",
  36633. height: math.unit(22000, "miles")
  36634. },
  36635. {
  36636. name: "Gigamacro",
  36637. height: math.unit(50000, "miles")
  36638. },
  36639. ]
  36640. ))
  36641. characterMakers.push(() => makeCharacter(
  36642. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36643. {
  36644. front: {
  36645. height: math.unit(4, "feet"),
  36646. weight: math.unit(90, "lb"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/joey-mcdonald/front.svg",
  36650. extra: 1059/852,
  36651. bottom: 33/1092
  36652. }
  36653. },
  36654. back: {
  36655. height: math.unit(4, "feet"),
  36656. weight: math.unit(90, "lb"),
  36657. name: "Back",
  36658. image: {
  36659. source: "./media/characters/joey-mcdonald/back.svg",
  36660. extra: 1077/879,
  36661. bottom: 5/1082
  36662. }
  36663. },
  36664. frontKobold: {
  36665. height: math.unit(4, "feet"),
  36666. weight: math.unit(100, "lb"),
  36667. name: "Front-kobold",
  36668. image: {
  36669. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36670. extra: 1480/1367,
  36671. bottom: 0/1480
  36672. }
  36673. },
  36674. backKobold: {
  36675. height: math.unit(4, "feet"),
  36676. weight: math.unit(100, "lb"),
  36677. name: "Back-kobold",
  36678. image: {
  36679. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36680. extra: 1449/1361,
  36681. bottom: 0/1449
  36682. }
  36683. },
  36684. },
  36685. [
  36686. {
  36687. name: "Normal",
  36688. height: math.unit(4, "feet"),
  36689. default: true
  36690. },
  36691. ]
  36692. ))
  36693. characterMakers.push(() => makeCharacter(
  36694. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36695. {
  36696. front: {
  36697. height: math.unit(12 + 6/12, "feet"),
  36698. name: "Front",
  36699. image: {
  36700. source: "./media/characters/kass-lockheed/front.svg",
  36701. extra: 354/343,
  36702. bottom: 9/363
  36703. }
  36704. },
  36705. back: {
  36706. height: math.unit(12 + 6/12, "feet"),
  36707. name: "Back",
  36708. image: {
  36709. source: "./media/characters/kass-lockheed/back.svg",
  36710. extra: 364/352,
  36711. bottom: 3/367
  36712. }
  36713. },
  36714. dick: {
  36715. height: math.unit(3.12, "feet"),
  36716. name: "Dick",
  36717. image: {
  36718. source: "./media/characters/kass-lockheed/dick.svg"
  36719. }
  36720. },
  36721. head: {
  36722. height: math.unit(2.6, "feet"),
  36723. name: "Head",
  36724. image: {
  36725. source: "./media/characters/kass-lockheed/head.svg"
  36726. }
  36727. },
  36728. bleh: {
  36729. height: math.unit(2.85, "feet"),
  36730. name: "Bleh",
  36731. image: {
  36732. source: "./media/characters/kass-lockheed/bleh.svg"
  36733. }
  36734. },
  36735. smug: {
  36736. height: math.unit(2.85, "feet"),
  36737. name: "Smug",
  36738. image: {
  36739. source: "./media/characters/kass-lockheed/smug.svg"
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(12 + 6/12, "feet"),
  36747. default: true
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36753. {
  36754. front: {
  36755. height: math.unit(6 + 2/12, "feet"),
  36756. name: "Front",
  36757. image: {
  36758. source: "./media/characters/taylor/front.svg",
  36759. extra: 639/495,
  36760. bottom: 12/651
  36761. }
  36762. },
  36763. },
  36764. [
  36765. {
  36766. name: "Normal",
  36767. height: math.unit(6 + 2/12, "feet"),
  36768. default: true
  36769. },
  36770. {
  36771. name: "Big",
  36772. height: math.unit(15, "feet")
  36773. },
  36774. {
  36775. name: "Lorg",
  36776. height: math.unit(80, "feet")
  36777. },
  36778. {
  36779. name: "Too Lorg",
  36780. height: math.unit(120, "feet")
  36781. },
  36782. ]
  36783. ))
  36784. characterMakers.push(() => makeCharacter(
  36785. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36786. {
  36787. front: {
  36788. height: math.unit(15, "feet"),
  36789. name: "Front",
  36790. image: {
  36791. source: "./media/characters/kaizer/front.svg",
  36792. extra: 1612/1436,
  36793. bottom: 43/1655
  36794. }
  36795. },
  36796. },
  36797. [
  36798. {
  36799. name: "Normal",
  36800. height: math.unit(15, "feet"),
  36801. default: true
  36802. },
  36803. ]
  36804. ))
  36805. characterMakers.push(() => makeCharacter(
  36806. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36807. {
  36808. front: {
  36809. height: math.unit(2, "feet"),
  36810. weight: math.unit(30, "lb"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/sandy/front.svg",
  36814. extra: 1439/1307,
  36815. bottom: 194/1633
  36816. }
  36817. },
  36818. },
  36819. [
  36820. {
  36821. name: "Normal",
  36822. height: math.unit(2, "feet"),
  36823. default: true
  36824. },
  36825. ]
  36826. ))
  36827. characterMakers.push(() => makeCharacter(
  36828. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36829. {
  36830. front: {
  36831. height: math.unit(3, "feet"),
  36832. name: "Front",
  36833. image: {
  36834. source: "./media/characters/mellvi/front.svg",
  36835. extra: 1831/1630,
  36836. bottom: 58/1889
  36837. }
  36838. },
  36839. },
  36840. [
  36841. {
  36842. name: "Normal",
  36843. height: math.unit(3, "feet"),
  36844. default: true
  36845. },
  36846. ]
  36847. ))
  36848. characterMakers.push(() => makeCharacter(
  36849. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36850. {
  36851. front: {
  36852. height: math.unit(5 + 11/12, "feet"),
  36853. weight: math.unit(200, "lb"),
  36854. name: "Front",
  36855. image: {
  36856. source: "./media/characters/shirou/front.svg",
  36857. extra: 2491/2383,
  36858. bottom: 189/2680
  36859. }
  36860. },
  36861. back: {
  36862. height: math.unit(5 + 11/12, "feet"),
  36863. weight: math.unit(200, "lb"),
  36864. name: "Back",
  36865. image: {
  36866. source: "./media/characters/shirou/back.svg",
  36867. extra: 2554/2450,
  36868. bottom: 76/2630
  36869. }
  36870. },
  36871. },
  36872. [
  36873. {
  36874. name: "Normal",
  36875. height: math.unit(5 + 11/12, "feet"),
  36876. default: true
  36877. },
  36878. ]
  36879. ))
  36880. characterMakers.push(() => makeCharacter(
  36881. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36882. {
  36883. front: {
  36884. height: math.unit(6 + 3/12, "feet"),
  36885. weight: math.unit(177, "lb"),
  36886. name: "Front",
  36887. image: {
  36888. source: "./media/characters/noryu/front.svg",
  36889. extra: 973/885,
  36890. bottom: 10/983
  36891. }
  36892. },
  36893. },
  36894. [
  36895. {
  36896. name: "Normal",
  36897. height: math.unit(6 + 3/12, "feet"),
  36898. default: true
  36899. },
  36900. ]
  36901. ))
  36902. characterMakers.push(() => makeCharacter(
  36903. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36904. {
  36905. front: {
  36906. height: math.unit(5 + 6/12, "feet"),
  36907. weight: math.unit(170, "lb"),
  36908. name: "Front",
  36909. image: {
  36910. source: "./media/characters/mevolas-rubenido/front.svg",
  36911. extra: 2109/1901,
  36912. bottom: 96/2205
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Normal",
  36919. height: math.unit(5 + 6/12, "feet"),
  36920. default: true
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36926. {
  36927. front: {
  36928. height: math.unit(100, "feet"),
  36929. name: "Front",
  36930. image: {
  36931. source: "./media/characters/dee/front.svg",
  36932. extra: 2153/2036,
  36933. bottom: 59/2212
  36934. }
  36935. },
  36936. back: {
  36937. height: math.unit(100, "feet"),
  36938. name: "Back",
  36939. image: {
  36940. source: "./media/characters/dee/back.svg",
  36941. extra: 2183/2058,
  36942. bottom: 75/2258
  36943. }
  36944. },
  36945. foot: {
  36946. height: math.unit(19.43, "feet"),
  36947. name: "Foot",
  36948. image: {
  36949. source: "./media/characters/dee/foot.svg"
  36950. }
  36951. },
  36952. hoof: {
  36953. height: math.unit(20.6, "feet"),
  36954. name: "Hoof",
  36955. image: {
  36956. source: "./media/characters/dee/hoof.svg"
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Macro",
  36963. height: math.unit(100, "feet"),
  36964. default: true
  36965. },
  36966. ]
  36967. ))
  36968. characterMakers.push(() => makeCharacter(
  36969. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36970. {
  36971. front: {
  36972. height: math.unit(5 + 6/12, "feet"),
  36973. name: "Front",
  36974. image: {
  36975. source: "./media/characters/teh/front.svg",
  36976. extra: 1002/847,
  36977. bottom: 62/1064
  36978. }
  36979. },
  36980. },
  36981. [
  36982. {
  36983. name: "Normal",
  36984. height: math.unit(5 + 6/12, "feet"),
  36985. default: true
  36986. },
  36987. ]
  36988. ))
  36989. characterMakers.push(() => makeCharacter(
  36990. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36991. {
  36992. side: {
  36993. height: math.unit(6 + 1/12, "feet"),
  36994. weight: math.unit(204, "lb"),
  36995. name: "Side",
  36996. image: {
  36997. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36998. extra: 974/775,
  36999. bottom: 169/1143
  37000. }
  37001. },
  37002. sitting: {
  37003. height: math.unit(6 + 2/12, "feet"),
  37004. weight: math.unit(204, "lb"),
  37005. name: "Sitting",
  37006. image: {
  37007. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37008. extra: 1175/964,
  37009. bottom: 378/1553
  37010. }
  37011. },
  37012. },
  37013. [
  37014. {
  37015. name: "Normal",
  37016. height: math.unit(6 + 1/12, "feet"),
  37017. default: true
  37018. },
  37019. ]
  37020. ))
  37021. characterMakers.push(() => makeCharacter(
  37022. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37023. {
  37024. front: {
  37025. height: math.unit(6, "inches"),
  37026. name: "Front",
  37027. image: {
  37028. source: "./media/characters/tululi/front.svg",
  37029. extra: 1997/1876,
  37030. bottom: 20/2017
  37031. }
  37032. },
  37033. },
  37034. [
  37035. {
  37036. name: "Normal",
  37037. height: math.unit(6, "inches"),
  37038. default: true
  37039. },
  37040. ]
  37041. ))
  37042. characterMakers.push(() => makeCharacter(
  37043. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37044. {
  37045. front: {
  37046. height: math.unit(4 + 1/12, "feet"),
  37047. name: "Front",
  37048. image: {
  37049. source: "./media/characters/star/front.svg",
  37050. extra: 1493/1189,
  37051. bottom: 48/1541
  37052. }
  37053. },
  37054. },
  37055. [
  37056. {
  37057. name: "Normal",
  37058. height: math.unit(4 + 1/12, "feet"),
  37059. default: true
  37060. },
  37061. ]
  37062. ))
  37063. characterMakers.push(() => makeCharacter(
  37064. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37065. {
  37066. front: {
  37067. height: math.unit(6 + 3/12, "feet"),
  37068. name: "Front",
  37069. image: {
  37070. source: "./media/characters/comet/front.svg",
  37071. extra: 1681/1462,
  37072. bottom: 26/1707
  37073. }
  37074. },
  37075. },
  37076. [
  37077. {
  37078. name: "Normal",
  37079. height: math.unit(6 + 3/12, "feet"),
  37080. default: true
  37081. },
  37082. ]
  37083. ))
  37084. characterMakers.push(() => makeCharacter(
  37085. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37086. {
  37087. front: {
  37088. height: math.unit(950, "feet"),
  37089. name: "Front",
  37090. image: {
  37091. source: "./media/characters/vortex/front.svg",
  37092. extra: 1497/1434,
  37093. bottom: 56/1553
  37094. }
  37095. },
  37096. maw: {
  37097. height: math.unit(285, "feet"),
  37098. name: "Maw",
  37099. image: {
  37100. source: "./media/characters/vortex/maw.svg"
  37101. }
  37102. },
  37103. },
  37104. [
  37105. {
  37106. name: "Macro",
  37107. height: math.unit(950, "feet"),
  37108. default: true
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37114. {
  37115. front: {
  37116. height: math.unit(600, "feet"),
  37117. weight: math.unit(0.02, "grams"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/doodle/front.svg",
  37121. extra: 1578/1413,
  37122. bottom: 37/1615
  37123. }
  37124. },
  37125. },
  37126. [
  37127. {
  37128. name: "Macro",
  37129. height: math.unit(600, "feet"),
  37130. default: true
  37131. },
  37132. ]
  37133. ))
  37134. characterMakers.push(() => makeCharacter(
  37135. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37136. {
  37137. front: {
  37138. height: math.unit(6 + 6/12, "feet"),
  37139. name: "Front",
  37140. image: {
  37141. source: "./media/characters/jai/front.svg",
  37142. extra: 1645/1534,
  37143. bottom: 115/1760
  37144. }
  37145. },
  37146. },
  37147. [
  37148. {
  37149. name: "Normal",
  37150. height: math.unit(6 + 6/12, "feet"),
  37151. default: true
  37152. },
  37153. ]
  37154. ))
  37155. characterMakers.push(() => makeCharacter(
  37156. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37157. {
  37158. front: {
  37159. height: math.unit(6 + 8/12, "feet"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/pixel/front.svg",
  37163. extra: 1900/1735,
  37164. bottom: 63/1963
  37165. }
  37166. },
  37167. },
  37168. [
  37169. {
  37170. name: "Normal",
  37171. height: math.unit(6 + 8/12, "feet"),
  37172. default: true
  37173. },
  37174. ]
  37175. ))
  37176. characterMakers.push(() => makeCharacter(
  37177. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37178. {
  37179. back: {
  37180. height: math.unit(4 + 1/12, "feet"),
  37181. weight: math.unit(75, "lb"),
  37182. name: "Back",
  37183. image: {
  37184. source: "./media/characters/rhett/back.svg",
  37185. extra: 930/878,
  37186. bottom: 25/955
  37187. }
  37188. },
  37189. front: {
  37190. height: math.unit(4 + 1/12, "feet"),
  37191. weight: math.unit(75, "lb"),
  37192. name: "Front",
  37193. image: {
  37194. source: "./media/characters/rhett/front.svg",
  37195. extra: 1682/1586,
  37196. bottom: 92/1774
  37197. }
  37198. },
  37199. },
  37200. [
  37201. {
  37202. name: "Micro",
  37203. height: math.unit(8, "inches")
  37204. },
  37205. {
  37206. name: "Tiny",
  37207. height: math.unit(2, "feet")
  37208. },
  37209. {
  37210. name: "Normal",
  37211. height: math.unit(4 + 1/12, "feet"),
  37212. default: true
  37213. },
  37214. ]
  37215. ))
  37216. characterMakers.push(() => makeCharacter(
  37217. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37218. {
  37219. front: {
  37220. height: math.unit(3 + 3/12, "feet"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/penny/front.svg",
  37224. extra: 1406/1311,
  37225. bottom: 26/1432
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(3 + 3/12, "feet"),
  37233. default: true
  37234. },
  37235. ]
  37236. ))
  37237. characterMakers.push(() => makeCharacter(
  37238. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37239. {
  37240. front: {
  37241. height: math.unit(4 + 11/12, "feet"),
  37242. name: "Front",
  37243. image: {
  37244. source: "./media/characters/monty/front.svg",
  37245. extra: 1479/1209,
  37246. bottom: 0/1479
  37247. }
  37248. },
  37249. },
  37250. [
  37251. {
  37252. name: "Normal",
  37253. height: math.unit(4 + 11/12, "feet"),
  37254. default: true
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37260. {
  37261. front: {
  37262. height: math.unit(8 + 4/12, "feet"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/sterling/front.svg",
  37266. extra: 1420/1236,
  37267. bottom: 27/1447
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Normal",
  37274. height: math.unit(8 + 4/12, "feet"),
  37275. default: true
  37276. },
  37277. ]
  37278. ))
  37279. characterMakers.push(() => makeCharacter(
  37280. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37281. {
  37282. front: {
  37283. height: math.unit(15, "feet"),
  37284. name: "Front",
  37285. image: {
  37286. source: "./media/characters/marble/front.svg",
  37287. extra: 973/937,
  37288. bottom: 32/1005
  37289. }
  37290. },
  37291. },
  37292. [
  37293. {
  37294. name: "Normal",
  37295. height: math.unit(15, "feet"),
  37296. default: true
  37297. },
  37298. ]
  37299. ))
  37300. characterMakers.push(() => makeCharacter(
  37301. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37302. {
  37303. front: {
  37304. height: math.unit(3, "inches"),
  37305. name: "Front",
  37306. image: {
  37307. source: "./media/characters/powder/front.svg",
  37308. extra: 1504/1334,
  37309. bottom: 518/2022
  37310. }
  37311. },
  37312. },
  37313. [
  37314. {
  37315. name: "Normal",
  37316. height: math.unit(3, "inches"),
  37317. default: true
  37318. },
  37319. ]
  37320. ))
  37321. characterMakers.push(() => makeCharacter(
  37322. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37323. {
  37324. front: {
  37325. height: math.unit(4 + 5/12, "feet"),
  37326. name: "Front",
  37327. image: {
  37328. source: "./media/characters/joey-raccoon/front.svg",
  37329. extra: 1273/1197,
  37330. bottom: 0/1273
  37331. }
  37332. },
  37333. },
  37334. [
  37335. {
  37336. name: "Normal",
  37337. height: math.unit(4 + 5/12, "feet"),
  37338. default: true
  37339. },
  37340. ]
  37341. ))
  37342. characterMakers.push(() => makeCharacter(
  37343. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37344. {
  37345. front: {
  37346. height: math.unit(8 + 4/12, "feet"),
  37347. name: "Front",
  37348. image: {
  37349. source: "./media/characters/vick/front.svg",
  37350. extra: 2187/2118,
  37351. bottom: 47/2234
  37352. }
  37353. },
  37354. },
  37355. [
  37356. {
  37357. name: "Normal",
  37358. height: math.unit(8 + 4/12, "feet"),
  37359. default: true
  37360. },
  37361. ]
  37362. ))
  37363. characterMakers.push(() => makeCharacter(
  37364. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37365. {
  37366. front: {
  37367. height: math.unit(5 + 5/12, "feet"),
  37368. name: "Front",
  37369. image: {
  37370. source: "./media/characters/mitsy/front.svg",
  37371. extra: 1842/1695,
  37372. bottom: 0/1842
  37373. }
  37374. },
  37375. },
  37376. [
  37377. {
  37378. name: "Normal",
  37379. height: math.unit(5 + 5/12, "feet"),
  37380. default: true
  37381. },
  37382. ]
  37383. ))
  37384. characterMakers.push(() => makeCharacter(
  37385. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37386. {
  37387. front: {
  37388. height: math.unit(6 + 3/12, "feet"),
  37389. name: "Front",
  37390. image: {
  37391. source: "./media/characters/silvy/front.svg",
  37392. extra: 1995/1836,
  37393. bottom: 225/2220
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(6 + 3/12, "feet"),
  37401. default: true
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37407. {
  37408. front: {
  37409. height: math.unit(3 + 8/12, "feet"),
  37410. name: "Front",
  37411. image: {
  37412. source: "./media/characters/rodney/front.svg",
  37413. extra: 1956/1747,
  37414. bottom: 31/1987
  37415. }
  37416. },
  37417. frontDressed: {
  37418. height: math.unit(2.9, "feet"),
  37419. name: "Front (Dressed)",
  37420. image: {
  37421. source: "./media/characters/rodney/front-dressed.svg",
  37422. extra: 1382/1241,
  37423. bottom: 385/1767
  37424. }
  37425. },
  37426. },
  37427. [
  37428. {
  37429. name: "Normal",
  37430. height: math.unit(3 + 8/12, "feet"),
  37431. default: true
  37432. },
  37433. ]
  37434. ))
  37435. characterMakers.push(() => makeCharacter(
  37436. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37437. {
  37438. front: {
  37439. height: math.unit(5 + 9/12, "feet"),
  37440. weight: math.unit(194, "lbs"),
  37441. name: "Front",
  37442. image: {
  37443. source: "./media/characters/zakail-sudekai/front.svg",
  37444. extra: 2696/2533,
  37445. bottom: 248/2944
  37446. }
  37447. },
  37448. maw: {
  37449. height: math.unit(1.35, "feet"),
  37450. name: "Maw",
  37451. image: {
  37452. source: "./media/characters/zakail-sudekai/maw.svg"
  37453. }
  37454. },
  37455. },
  37456. [
  37457. {
  37458. name: "Normal",
  37459. height: math.unit(5 + 9/12, "feet"),
  37460. default: true
  37461. },
  37462. ]
  37463. ))
  37464. characterMakers.push(() => makeCharacter(
  37465. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37466. {
  37467. front: {
  37468. height: math.unit(8 + 4/12, "feet"),
  37469. weight: math.unit(1200, "lb"),
  37470. name: "Front",
  37471. image: {
  37472. source: "./media/characters/eleanor/front.svg",
  37473. extra: 1226/1192,
  37474. bottom: 52/1278
  37475. }
  37476. },
  37477. back: {
  37478. height: math.unit(8 + 4/12, "feet"),
  37479. weight: math.unit(1200, "lb"),
  37480. name: "Back",
  37481. image: {
  37482. source: "./media/characters/eleanor/back.svg",
  37483. extra: 1242/1184,
  37484. bottom: 60/1302
  37485. }
  37486. },
  37487. head: {
  37488. height: math.unit(2.62, "feet"),
  37489. name: "Head",
  37490. image: {
  37491. source: "./media/characters/eleanor/head.svg"
  37492. }
  37493. },
  37494. },
  37495. [
  37496. {
  37497. name: "Normal",
  37498. height: math.unit(8 + 4/12, "feet"),
  37499. default: true
  37500. },
  37501. ]
  37502. ))
  37503. characterMakers.push(() => makeCharacter(
  37504. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37505. {
  37506. front: {
  37507. height: math.unit(8 + 4/12, "feet"),
  37508. weight: math.unit(750, "lb"),
  37509. name: "Front",
  37510. image: {
  37511. source: "./media/characters/tanya/front.svg",
  37512. extra: 1749/1615,
  37513. bottom: 33/1782
  37514. }
  37515. },
  37516. },
  37517. [
  37518. {
  37519. name: "Normal",
  37520. height: math.unit(8 + 4/12, "feet"),
  37521. default: true
  37522. },
  37523. ]
  37524. ))
  37525. characterMakers.push(() => makeCharacter(
  37526. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37527. {
  37528. front: {
  37529. height: math.unit(5, "feet"),
  37530. weight: math.unit(225, "lb"),
  37531. name: "Front",
  37532. image: {
  37533. source: "./media/characters/cindy/front.svg",
  37534. extra: 1320/1250,
  37535. bottom: 42/1362
  37536. }
  37537. },
  37538. frontDressed: {
  37539. height: math.unit(5, "feet"),
  37540. weight: math.unit(225, "lb"),
  37541. name: "Front (Dressed)",
  37542. image: {
  37543. source: "./media/characters/cindy/front-dressed.svg",
  37544. extra: 1320/1250,
  37545. bottom: 42/1362
  37546. }
  37547. },
  37548. back: {
  37549. height: math.unit(5, "feet"),
  37550. weight: math.unit(225, "lb"),
  37551. name: "Back",
  37552. image: {
  37553. source: "./media/characters/cindy/back.svg",
  37554. extra: 1384/1346,
  37555. bottom: 14/1398
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "Normal",
  37562. height: math.unit(5, "feet"),
  37563. default: true
  37564. },
  37565. ]
  37566. ))
  37567. characterMakers.push(() => makeCharacter(
  37568. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37569. {
  37570. front: {
  37571. height: math.unit(6 + 9/12, "feet"),
  37572. weight: math.unit(440, "lb"),
  37573. name: "Front",
  37574. image: {
  37575. source: "./media/characters/wilbur-owen/front.svg",
  37576. extra: 1575/1448,
  37577. bottom: 72/1647
  37578. }
  37579. },
  37580. back: {
  37581. height: math.unit(6 + 9/12, "feet"),
  37582. weight: math.unit(440, "lb"),
  37583. name: "Back",
  37584. image: {
  37585. source: "./media/characters/wilbur-owen/back.svg",
  37586. extra: 1578/1445,
  37587. bottom: 36/1614
  37588. }
  37589. },
  37590. },
  37591. [
  37592. {
  37593. name: "Normal",
  37594. height: math.unit(6 + 9/12, "feet"),
  37595. default: true
  37596. },
  37597. ]
  37598. ))
  37599. characterMakers.push(() => makeCharacter(
  37600. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37601. {
  37602. front: {
  37603. height: math.unit(6 + 5/12, "feet"),
  37604. weight: math.unit(650, "lb"),
  37605. name: "Front",
  37606. image: {
  37607. source: "./media/characters/keegan/front.svg",
  37608. extra: 2387/2198,
  37609. bottom: 33/2420
  37610. }
  37611. },
  37612. side: {
  37613. height: math.unit(6 + 5/12, "feet"),
  37614. weight: math.unit(650, "lb"),
  37615. name: "Side",
  37616. image: {
  37617. source: "./media/characters/keegan/side.svg",
  37618. extra: 2390/2202,
  37619. bottom: 47/2437
  37620. }
  37621. },
  37622. back: {
  37623. height: math.unit(6 + 5/12, "feet"),
  37624. weight: math.unit(650, "lb"),
  37625. name: "Back",
  37626. image: {
  37627. source: "./media/characters/keegan/back.svg",
  37628. extra: 2418/2268,
  37629. bottom: 15/2433
  37630. }
  37631. },
  37632. frontSfw: {
  37633. height: math.unit(6 + 5/12, "feet"),
  37634. weight: math.unit(650, "lb"),
  37635. name: "Front (SFW)",
  37636. image: {
  37637. source: "./media/characters/keegan/front-sfw.svg",
  37638. extra: 2387/2198,
  37639. bottom: 33/2420
  37640. }
  37641. },
  37642. beans: {
  37643. height: math.unit(1.85, "feet"),
  37644. name: "Beans",
  37645. image: {
  37646. source: "./media/characters/keegan/beans.svg"
  37647. }
  37648. },
  37649. },
  37650. [
  37651. {
  37652. name: "Normal",
  37653. height: math.unit(6 + 5/12, "feet"),
  37654. default: true
  37655. },
  37656. ]
  37657. ))
  37658. characterMakers.push(() => makeCharacter(
  37659. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37660. {
  37661. front: {
  37662. height: math.unit(9, "feet"),
  37663. name: "Front",
  37664. image: {
  37665. source: "./media/characters/colton/front.svg",
  37666. extra: 1589/1326,
  37667. bottom: 139/1728
  37668. }
  37669. },
  37670. },
  37671. [
  37672. {
  37673. name: "Normal",
  37674. height: math.unit(9, "feet"),
  37675. default: true
  37676. },
  37677. ]
  37678. ))
  37679. characterMakers.push(() => makeCharacter(
  37680. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37681. {
  37682. front: {
  37683. height: math.unit(2 + 9/12, "feet"),
  37684. name: "Front",
  37685. image: {
  37686. source: "./media/characters/bora/front.svg",
  37687. extra: 1265/1250,
  37688. bottom: 24/1289
  37689. }
  37690. },
  37691. },
  37692. [
  37693. {
  37694. name: "Normal",
  37695. height: math.unit(2 + 9/12, "feet"),
  37696. default: true
  37697. },
  37698. ]
  37699. ))
  37700. characterMakers.push(() => makeCharacter(
  37701. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37702. {
  37703. front: {
  37704. height: math.unit(8, "feet"),
  37705. name: "Front",
  37706. image: {
  37707. source: "./media/characters/myu-myu/front.svg",
  37708. extra: 1949/1857,
  37709. bottom: 90/2039
  37710. }
  37711. },
  37712. },
  37713. [
  37714. {
  37715. name: "Normal",
  37716. height: math.unit(8, "feet"),
  37717. default: true
  37718. },
  37719. {
  37720. name: "Big",
  37721. height: math.unit(15, "feet")
  37722. },
  37723. {
  37724. name: "BIG",
  37725. height: math.unit(25, "feet")
  37726. },
  37727. ]
  37728. ))
  37729. characterMakers.push(() => makeCharacter(
  37730. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37731. {
  37732. side: {
  37733. height: math.unit(7 + 5/12, "feet"),
  37734. weight: math.unit(2800, "lb"),
  37735. name: "Side",
  37736. image: {
  37737. source: "./media/characters/haloren/side.svg",
  37738. extra: 1793/409,
  37739. bottom: 59/1852
  37740. }
  37741. },
  37742. frontPaw: {
  37743. height: math.unit(2.36, "feet"),
  37744. name: "Front paw",
  37745. image: {
  37746. source: "./media/characters/haloren/front-paw.svg"
  37747. }
  37748. },
  37749. hindPaw: {
  37750. height: math.unit(3.18, "feet"),
  37751. name: "Hind paw",
  37752. image: {
  37753. source: "./media/characters/haloren/hind-paw.svg"
  37754. }
  37755. },
  37756. maw: {
  37757. height: math.unit(5.05, "feet"),
  37758. name: "Maw",
  37759. image: {
  37760. source: "./media/characters/haloren/maw.svg"
  37761. }
  37762. },
  37763. dick: {
  37764. height: math.unit(2.90, "feet"),
  37765. name: "Dick",
  37766. image: {
  37767. source: "./media/characters/haloren/dick.svg"
  37768. }
  37769. },
  37770. },
  37771. [
  37772. {
  37773. name: "Normal",
  37774. height: math.unit(7 + 5/12, "feet"),
  37775. default: true
  37776. },
  37777. {
  37778. name: "Enhanced",
  37779. height: math.unit(14 + 3/12, "feet")
  37780. },
  37781. ]
  37782. ))
  37783. characterMakers.push(() => makeCharacter(
  37784. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37785. {
  37786. front: {
  37787. height: math.unit(171, "cm"),
  37788. name: "Front",
  37789. image: {
  37790. source: "./media/characters/kimmy/front.svg",
  37791. extra: 1491/1435,
  37792. bottom: 53/1544
  37793. }
  37794. },
  37795. },
  37796. [
  37797. {
  37798. name: "Small",
  37799. height: math.unit(9, "cm")
  37800. },
  37801. {
  37802. name: "Normal",
  37803. height: math.unit(171, "cm"),
  37804. default: true
  37805. },
  37806. ]
  37807. ))
  37808. characterMakers.push(() => makeCharacter(
  37809. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37810. {
  37811. front: {
  37812. height: math.unit(8, "feet"),
  37813. weight: math.unit(300, "lb"),
  37814. name: "Front",
  37815. image: {
  37816. source: "./media/characters/galeboomer/front.svg",
  37817. extra: 4651/4415,
  37818. bottom: 162/4813
  37819. }
  37820. },
  37821. back: {
  37822. height: math.unit(8, "feet"),
  37823. weight: math.unit(300, "lb"),
  37824. name: "Back",
  37825. image: {
  37826. source: "./media/characters/galeboomer/back.svg",
  37827. extra: 4544/4314,
  37828. bottom: 16/4560
  37829. }
  37830. },
  37831. frontAlt: {
  37832. height: math.unit(8, "feet"),
  37833. weight: math.unit(300, "lb"),
  37834. name: "Front (Alt)",
  37835. image: {
  37836. source: "./media/characters/galeboomer/front-alt.svg",
  37837. extra: 4458/4228,
  37838. bottom: 68/4526
  37839. }
  37840. },
  37841. maw: {
  37842. height: math.unit(1.2, "feet"),
  37843. name: "Maw",
  37844. image: {
  37845. source: "./media/characters/galeboomer/maw.svg"
  37846. }
  37847. },
  37848. },
  37849. [
  37850. {
  37851. name: "Normal",
  37852. height: math.unit(8, "feet"),
  37853. default: true
  37854. },
  37855. ]
  37856. ))
  37857. characterMakers.push(() => makeCharacter(
  37858. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37859. {
  37860. front: {
  37861. height: math.unit(5 + 9/12, "feet"),
  37862. weight: math.unit(120, "lb"),
  37863. name: "Front",
  37864. image: {
  37865. source: "./media/characters/chyr/front.svg",
  37866. extra: 1323/1254,
  37867. bottom: 63/1386
  37868. }
  37869. },
  37870. back: {
  37871. height: math.unit(5 + 9/12, "feet"),
  37872. weight: math.unit(120, "lb"),
  37873. name: "Back",
  37874. image: {
  37875. source: "./media/characters/chyr/back.svg",
  37876. extra: 1323/1252,
  37877. bottom: 48/1371
  37878. }
  37879. },
  37880. },
  37881. [
  37882. {
  37883. name: "Normal",
  37884. height: math.unit(5 + 9/12, "feet"),
  37885. default: true
  37886. },
  37887. ]
  37888. ))
  37889. characterMakers.push(() => makeCharacter(
  37890. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37891. {
  37892. front: {
  37893. height: math.unit(7, "feet"),
  37894. weight: math.unit(310, "lb"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/solarus/front.svg",
  37898. extra: 2415/2021,
  37899. bottom: 103/2518
  37900. }
  37901. },
  37902. back: {
  37903. height: math.unit(7, "feet"),
  37904. weight: math.unit(310, "lb"),
  37905. name: "Back",
  37906. image: {
  37907. source: "./media/characters/solarus/back.svg",
  37908. extra: 2463/2089,
  37909. bottom: 79/2542
  37910. }
  37911. },
  37912. },
  37913. [
  37914. {
  37915. name: "Normal",
  37916. height: math.unit(7, "feet"),
  37917. default: true
  37918. },
  37919. ]
  37920. ))
  37921. characterMakers.push(() => makeCharacter(
  37922. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37923. {
  37924. front: {
  37925. height: math.unit(16, "feet"),
  37926. name: "Front",
  37927. image: {
  37928. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37929. extra: 1844/1780,
  37930. bottom: 58/1902
  37931. }
  37932. },
  37933. winterCoat: {
  37934. height: math.unit(16, "feet"),
  37935. name: "Winter Coat",
  37936. image: {
  37937. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37938. extra: 1807/1775,
  37939. bottom: 69/1876
  37940. }
  37941. },
  37942. },
  37943. [
  37944. {
  37945. name: "Normal",
  37946. height: math.unit(16, "feet"),
  37947. default: true
  37948. },
  37949. {
  37950. name: "Chicago Size",
  37951. height: math.unit(560, "feet")
  37952. },
  37953. ]
  37954. ))
  37955. characterMakers.push(() => makeCharacter(
  37956. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37957. {
  37958. front: {
  37959. height: math.unit(11 + 6/12, "feet"),
  37960. weight: math.unit(1366, "lb"),
  37961. name: "Front",
  37962. image: {
  37963. source: "./media/characters/lexor/front.svg",
  37964. extra: 1560/1481,
  37965. bottom: 211/1771
  37966. }
  37967. },
  37968. back: {
  37969. height: math.unit(11 + 6/12, "feet"),
  37970. weight: math.unit(1366, "lb"),
  37971. name: "Back",
  37972. image: {
  37973. source: "./media/characters/lexor/back.svg",
  37974. extra: 1614/1533,
  37975. bottom: 76/1690
  37976. }
  37977. },
  37978. maw: {
  37979. height: math.unit(3, "feet"),
  37980. name: "Maw",
  37981. image: {
  37982. source: "./media/characters/lexor/maw.svg"
  37983. }
  37984. },
  37985. dick: {
  37986. height: math.unit(2.59, "feet"),
  37987. name: "Dick",
  37988. image: {
  37989. source: "./media/characters/lexor/dick.svg"
  37990. }
  37991. },
  37992. },
  37993. [
  37994. {
  37995. name: "Normal",
  37996. height: math.unit(11 + 6/12, "feet"),
  37997. default: true
  37998. },
  37999. ]
  38000. ))
  38001. characterMakers.push(() => makeCharacter(
  38002. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38003. {
  38004. front: {
  38005. height: math.unit(5 + 8/12, "feet"),
  38006. name: "Front",
  38007. image: {
  38008. source: "./media/characters/magnum/front.svg",
  38009. extra: 942/855,
  38010. bottom: 26/968
  38011. }
  38012. },
  38013. },
  38014. [
  38015. {
  38016. name: "Normal",
  38017. height: math.unit(5 + 8/12, "feet"),
  38018. default: true
  38019. },
  38020. ]
  38021. ))
  38022. characterMakers.push(() => makeCharacter(
  38023. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38024. {
  38025. front: {
  38026. height: math.unit(18 + 4/12, "feet"),
  38027. weight: math.unit(1500, "kg"),
  38028. name: "Front",
  38029. image: {
  38030. source: "./media/characters/solas-sharpsman/front.svg",
  38031. extra: 1698/1589,
  38032. bottom: 0/1698
  38033. }
  38034. },
  38035. },
  38036. [
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(18 + 4/12, "feet"),
  38040. default: true
  38041. },
  38042. ]
  38043. ))
  38044. characterMakers.push(() => makeCharacter(
  38045. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38046. {
  38047. front: {
  38048. height: math.unit(5 + 5/12, "feet"),
  38049. weight: math.unit(180, "lb"),
  38050. name: "Front",
  38051. image: {
  38052. source: "./media/characters/october/front.svg",
  38053. extra: 1800/1650,
  38054. bottom: 0/1800
  38055. }
  38056. },
  38057. frontNsfw: {
  38058. height: math.unit(5 + 5/12, "feet"),
  38059. weight: math.unit(180, "lb"),
  38060. name: "Front (NSFW)",
  38061. image: {
  38062. source: "./media/characters/october/front-nsfw.svg",
  38063. extra: 1392/1307,
  38064. bottom: 42/1434
  38065. }
  38066. },
  38067. },
  38068. [
  38069. {
  38070. name: "Normal",
  38071. height: math.unit(5 + 5/12, "feet"),
  38072. default: true
  38073. },
  38074. ]
  38075. ))
  38076. characterMakers.push(() => makeCharacter(
  38077. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38078. {
  38079. front: {
  38080. height: math.unit(8 + 6/12, "feet"),
  38081. name: "Front",
  38082. image: {
  38083. source: "./media/characters/essynkardi/front.svg",
  38084. extra: 1914/1846,
  38085. bottom: 22/1936
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(8 + 6/12, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(6 + 6/12, "feet"),
  38102. weight: math.unit(7, "lb"),
  38103. name: "Front",
  38104. image: {
  38105. source: "./media/characters/icky/front.svg",
  38106. extra: 813/782,
  38107. bottom: 66/879
  38108. }
  38109. },
  38110. back: {
  38111. height: math.unit(6 + 6/12, "feet"),
  38112. weight: math.unit(7, "lb"),
  38113. name: "Back",
  38114. image: {
  38115. source: "./media/characters/icky/back.svg",
  38116. extra: 754/735,
  38117. bottom: 56/810
  38118. }
  38119. },
  38120. },
  38121. [
  38122. {
  38123. name: "Normal",
  38124. height: math.unit(6 + 6/12, "feet"),
  38125. default: true
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38131. {
  38132. front: {
  38133. height: math.unit(15, "feet"),
  38134. name: "Front",
  38135. image: {
  38136. source: "./media/characters/rojas/front.svg",
  38137. extra: 1462/1408,
  38138. bottom: 95/1557
  38139. }
  38140. },
  38141. back: {
  38142. height: math.unit(15, "feet"),
  38143. name: "Back",
  38144. image: {
  38145. source: "./media/characters/rojas/back.svg",
  38146. extra: 1023/954,
  38147. bottom: 28/1051
  38148. }
  38149. },
  38150. },
  38151. [
  38152. {
  38153. name: "Normal",
  38154. height: math.unit(15, "feet"),
  38155. default: true
  38156. },
  38157. ]
  38158. ))
  38159. characterMakers.push(() => makeCharacter(
  38160. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38161. {
  38162. frontHuman: {
  38163. height: math.unit(5 + 7/12, "feet"),
  38164. name: "Front (Human)",
  38165. image: {
  38166. source: "./media/characters/alek-dryagan/front-human.svg",
  38167. extra: 1687/1667,
  38168. bottom: 69/1756
  38169. }
  38170. },
  38171. backHuman: {
  38172. height: math.unit(5 + 7/12, "feet"),
  38173. name: "Back (Human)",
  38174. image: {
  38175. source: "./media/characters/alek-dryagan/back-human.svg",
  38176. extra: 1670/1649,
  38177. bottom: 65/1735
  38178. }
  38179. },
  38180. frontDemi: {
  38181. height: math.unit(65, "feet"),
  38182. name: "Front (Demi)",
  38183. image: {
  38184. source: "./media/characters/alek-dryagan/front-demi.svg",
  38185. extra: 1669/1642,
  38186. bottom: 49/1718
  38187. }
  38188. },
  38189. backDemi: {
  38190. height: math.unit(65, "feet"),
  38191. name: "Back (Demi)",
  38192. image: {
  38193. source: "./media/characters/alek-dryagan/back-demi.svg",
  38194. extra: 1658/1637,
  38195. bottom: 40/1698
  38196. }
  38197. },
  38198. mawHuman: {
  38199. height: math.unit(0.3, "feet"),
  38200. name: "Maw (Human)",
  38201. image: {
  38202. source: "./media/characters/alek-dryagan/maw-human.svg"
  38203. }
  38204. },
  38205. mawDemi: {
  38206. height: math.unit(3.8, "feet"),
  38207. name: "Maw (Demi)",
  38208. image: {
  38209. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38210. }
  38211. },
  38212. },
  38213. [
  38214. {
  38215. name: "Normal",
  38216. height: math.unit(5 + 7/12, "feet"),
  38217. default: true
  38218. },
  38219. ]
  38220. ))
  38221. characterMakers.push(() => makeCharacter(
  38222. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38223. {
  38224. frontHuman: {
  38225. height: math.unit(5 + 2/12, "feet"),
  38226. name: "Front (Human)",
  38227. image: {
  38228. source: "./media/characters/gen/front-human.svg",
  38229. extra: 1627/1538,
  38230. bottom: 71/1698
  38231. }
  38232. },
  38233. backHuman: {
  38234. height: math.unit(5 + 2/12, "feet"),
  38235. name: "Back (Human)",
  38236. image: {
  38237. source: "./media/characters/gen/back-human.svg",
  38238. extra: 1638/1548,
  38239. bottom: 69/1707
  38240. }
  38241. },
  38242. frontDemi: {
  38243. height: math.unit(5 + 2/12, "feet"),
  38244. name: "Front (Demi)",
  38245. image: {
  38246. source: "./media/characters/gen/front-demi.svg",
  38247. extra: 1627/1538,
  38248. bottom: 71/1698
  38249. }
  38250. },
  38251. backDemi: {
  38252. height: math.unit(5 + 2/12, "feet"),
  38253. name: "Back (Demi)",
  38254. image: {
  38255. source: "./media/characters/gen/back-demi.svg",
  38256. extra: 1638/1548,
  38257. bottom: 69/1707
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Normal",
  38264. height: math.unit(5 + 2/12, "feet"),
  38265. default: true
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38271. {
  38272. frontImp: {
  38273. height: math.unit(1 + 11/12, "feet"),
  38274. name: "Front (Imp)",
  38275. image: {
  38276. source: "./media/characters/max-kobold/front-imp.svg",
  38277. extra: 1238/1134,
  38278. bottom: 81/1319
  38279. }
  38280. },
  38281. backImp: {
  38282. height: math.unit(1 + 11/12, "feet"),
  38283. name: "Back (Imp)",
  38284. image: {
  38285. source: "./media/characters/max-kobold/back-imp.svg",
  38286. extra: 1334/1175,
  38287. bottom: 34/1368
  38288. }
  38289. },
  38290. frontDemi: {
  38291. height: math.unit(5 + 9/12, "feet"),
  38292. name: "Front (Demi)",
  38293. image: {
  38294. source: "./media/characters/max-kobold/front-demi.svg",
  38295. extra: 1715/1685,
  38296. bottom: 54/1769
  38297. }
  38298. },
  38299. backDemi: {
  38300. height: math.unit(5 + 9/12, "feet"),
  38301. name: "Back (Demi)",
  38302. image: {
  38303. source: "./media/characters/max-kobold/back-demi.svg",
  38304. extra: 1752/1729,
  38305. bottom: 41/1793
  38306. }
  38307. },
  38308. handImp: {
  38309. height: math.unit(0.45, "feet"),
  38310. name: "Hand (Imp)",
  38311. image: {
  38312. source: "./media/characters/max-kobold/hand.svg"
  38313. }
  38314. },
  38315. pawImp: {
  38316. height: math.unit(0.46, "feet"),
  38317. name: "Paw (Imp)",
  38318. image: {
  38319. source: "./media/characters/max-kobold/paw.svg"
  38320. }
  38321. },
  38322. handDemi: {
  38323. height: math.unit(0.80, "feet"),
  38324. name: "Hand (Demi)",
  38325. image: {
  38326. source: "./media/characters/max-kobold/hand.svg"
  38327. }
  38328. },
  38329. pawDemi: {
  38330. height: math.unit(1.1, "feet"),
  38331. name: "Paw (Demi)",
  38332. image: {
  38333. source: "./media/characters/max-kobold/paw.svg"
  38334. }
  38335. },
  38336. headImp: {
  38337. height: math.unit(1.33, "feet"),
  38338. name: "Head (Imp)",
  38339. image: {
  38340. source: "./media/characters/max-kobold/head-imp.svg"
  38341. }
  38342. },
  38343. mawImp: {
  38344. height: math.unit(0.75, "feet"),
  38345. name: "Maw (Imp)",
  38346. image: {
  38347. source: "./media/characters/max-kobold/maw-imp.svg"
  38348. }
  38349. },
  38350. mawDemi: {
  38351. height: math.unit(0.42, "feet"),
  38352. name: "Maw (Demi)",
  38353. image: {
  38354. source: "./media/characters/max-kobold/maw-demi.svg"
  38355. }
  38356. },
  38357. },
  38358. [
  38359. {
  38360. name: "Normal",
  38361. height: math.unit(1 + 11/12, "feet"),
  38362. default: true
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38368. {
  38369. front: {
  38370. height: math.unit(7 + 5/12, "feet"),
  38371. name: "Front",
  38372. image: {
  38373. source: "./media/characters/carbon/front.svg",
  38374. extra: 1754/1689,
  38375. bottom: 65/1819
  38376. }
  38377. },
  38378. back: {
  38379. height: math.unit(7 + 5/12, "feet"),
  38380. name: "Back",
  38381. image: {
  38382. source: "./media/characters/carbon/back.svg",
  38383. extra: 1762/1695,
  38384. bottom: 24/1786
  38385. }
  38386. },
  38387. frontGigantamax: {
  38388. height: math.unit(150, "feet"),
  38389. name: "Front (Gigantamax)",
  38390. image: {
  38391. source: "./media/characters/carbon/front-gigantamax.svg",
  38392. extra: 1826/1669,
  38393. bottom: 59/1885
  38394. }
  38395. },
  38396. backGigantamax: {
  38397. height: math.unit(150, "feet"),
  38398. name: "Back (Gigantamax)",
  38399. image: {
  38400. source: "./media/characters/carbon/back-gigantamax.svg",
  38401. extra: 1796/1653,
  38402. bottom: 53/1849
  38403. }
  38404. },
  38405. maw: {
  38406. height: math.unit(0.48, "feet"),
  38407. name: "Maw",
  38408. image: {
  38409. source: "./media/characters/carbon/maw.svg"
  38410. }
  38411. },
  38412. mawGigantamax: {
  38413. height: math.unit(7.5, "feet"),
  38414. name: "Maw (Gigantamax)",
  38415. image: {
  38416. source: "./media/characters/carbon/maw-gigantamax.svg"
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(7 + 5/12, "feet"),
  38424. default: true
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(6, "feet"),
  38433. name: "Front",
  38434. image: {
  38435. source: "./media/characters/maverick/front.svg",
  38436. extra: 1672/1661,
  38437. bottom: 85/1757
  38438. }
  38439. },
  38440. back: {
  38441. height: math.unit(6, "feet"),
  38442. name: "Back",
  38443. image: {
  38444. source: "./media/characters/maverick/back.svg",
  38445. extra: 1642/1631,
  38446. bottom: 38/1680
  38447. }
  38448. },
  38449. },
  38450. [
  38451. {
  38452. name: "Normal",
  38453. height: math.unit(6, "feet"),
  38454. default: true
  38455. },
  38456. ]
  38457. ))
  38458. characterMakers.push(() => makeCharacter(
  38459. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38460. {
  38461. front: {
  38462. height: math.unit(15, "feet"),
  38463. weight: math.unit(615, "lb"),
  38464. name: "Front",
  38465. image: {
  38466. source: "./media/characters/grockle/front.svg",
  38467. extra: 1535/1427,
  38468. bottom: 56/1591
  38469. }
  38470. },
  38471. },
  38472. [
  38473. {
  38474. name: "Normal",
  38475. height: math.unit(15, "feet"),
  38476. default: true
  38477. },
  38478. {
  38479. name: "Large",
  38480. height: math.unit(150, "feet")
  38481. },
  38482. {
  38483. name: "Macro",
  38484. height: math.unit(1876, "feet")
  38485. },
  38486. {
  38487. name: "Mega Macro",
  38488. height: math.unit(121940, "feet")
  38489. },
  38490. {
  38491. name: "Giga Macro",
  38492. height: math.unit(750, "km")
  38493. },
  38494. {
  38495. name: "Tera Macro",
  38496. height: math.unit(750000, "km")
  38497. },
  38498. {
  38499. name: "Galactic",
  38500. height: math.unit(1.4e5, "km")
  38501. },
  38502. {
  38503. name: "Godlike",
  38504. height: math.unit(9.8e280, "galaxies")
  38505. },
  38506. ]
  38507. ))
  38508. characterMakers.push(() => makeCharacter(
  38509. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38510. {
  38511. front: {
  38512. height: math.unit(11, "meters"),
  38513. weight: math.unit(20, "tonnes"),
  38514. name: "Front",
  38515. image: {
  38516. source: "./media/characters/alistair/front.svg",
  38517. extra: 1265/1009,
  38518. bottom: 93/1358
  38519. }
  38520. },
  38521. },
  38522. [
  38523. {
  38524. name: "Normal",
  38525. height: math.unit(11, "meters"),
  38526. default: true
  38527. },
  38528. ]
  38529. ))
  38530. characterMakers.push(() => makeCharacter(
  38531. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38532. {
  38533. front: {
  38534. height: math.unit(5 + 8/12, "feet"),
  38535. name: "Front",
  38536. image: {
  38537. source: "./media/characters/haruka/front.svg",
  38538. extra: 2012/1952,
  38539. bottom: 0/2012
  38540. }
  38541. },
  38542. },
  38543. [
  38544. {
  38545. name: "Normal",
  38546. height: math.unit(5 + 8/12, "feet"),
  38547. default: true
  38548. },
  38549. ]
  38550. ))
  38551. characterMakers.push(() => makeCharacter(
  38552. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38553. {
  38554. back: {
  38555. height: math.unit(9, "feet"),
  38556. name: "Back",
  38557. image: {
  38558. source: "./media/characters/vivian-sylveon/back.svg",
  38559. extra: 1853/1714,
  38560. bottom: 0/1853
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "Normal",
  38567. height: math.unit(9, "feet"),
  38568. default: true
  38569. },
  38570. {
  38571. name: "Macro",
  38572. height: math.unit(500, "feet")
  38573. },
  38574. {
  38575. name: "Megamacro",
  38576. height: math.unit(600, "miles")
  38577. },
  38578. {
  38579. name: "Gigamacro",
  38580. height: math.unit(30000, "miles")
  38581. },
  38582. ]
  38583. ))
  38584. characterMakers.push(() => makeCharacter(
  38585. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38586. {
  38587. anthro: {
  38588. height: math.unit(5 + 10/12, "feet"),
  38589. weight: math.unit(100, "lb"),
  38590. name: "Anthro",
  38591. image: {
  38592. source: "./media/characters/daiki/anthro.svg",
  38593. extra: 1115/1027,
  38594. bottom: 69/1184
  38595. }
  38596. },
  38597. feral: {
  38598. height: math.unit(200, "feet"),
  38599. name: "Feral",
  38600. image: {
  38601. source: "./media/characters/daiki/feral.svg",
  38602. extra: 1256/313,
  38603. bottom: 39/1295
  38604. }
  38605. },
  38606. feralHead: {
  38607. height: math.unit(171, "feet"),
  38608. name: "Feral Head",
  38609. image: {
  38610. source: "./media/characters/daiki/feral-head.svg"
  38611. }
  38612. },
  38613. manaDragon: {
  38614. height: math.unit(170, "meters"),
  38615. name: "Mana-dragon",
  38616. image: {
  38617. source: "./media/characters/daiki/mana-dragon.svg",
  38618. extra: 763/420,
  38619. bottom: 97/860
  38620. }
  38621. },
  38622. },
  38623. [
  38624. {
  38625. name: "Normal",
  38626. height: math.unit(5 + 10/12, "feet"),
  38627. default: true
  38628. },
  38629. ]
  38630. ))
  38631. characterMakers.push(() => makeCharacter(
  38632. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38633. {
  38634. fullyEquippedFront: {
  38635. height: math.unit(3 + 1/12, "feet"),
  38636. weight: math.unit(24, "lb"),
  38637. name: "Fully Equipped (Front)",
  38638. image: {
  38639. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38640. extra: 687/605,
  38641. bottom: 18/705
  38642. }
  38643. },
  38644. fullyEquippedBack: {
  38645. height: math.unit(3 + 1/12, "feet"),
  38646. weight: math.unit(24, "lb"),
  38647. name: "Fully Equipped (Back)",
  38648. image: {
  38649. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38650. extra: 689/590,
  38651. bottom: 18/707
  38652. }
  38653. },
  38654. dailyWear: {
  38655. height: math.unit(3 + 1/12, "feet"),
  38656. weight: math.unit(24, "lb"),
  38657. name: "Daily Wear",
  38658. image: {
  38659. source: "./media/characters/tea-spot/daily-wear.svg",
  38660. extra: 701/620,
  38661. bottom: 21/722
  38662. }
  38663. },
  38664. maidWork: {
  38665. height: math.unit(3 + 1/12, "feet"),
  38666. weight: math.unit(24, "lb"),
  38667. name: "Maid Work",
  38668. image: {
  38669. source: "./media/characters/tea-spot/maid-work.svg",
  38670. extra: 693/609,
  38671. bottom: 15/708
  38672. }
  38673. },
  38674. },
  38675. [
  38676. {
  38677. name: "Normal",
  38678. height: math.unit(3 + 1/12, "feet"),
  38679. default: true
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38685. {
  38686. front: {
  38687. height: math.unit(175, "cm"),
  38688. weight: math.unit(75, "kg"),
  38689. name: "Front",
  38690. image: {
  38691. source: "./media/characters/chee/front.svg",
  38692. extra: 1796/1740,
  38693. bottom: 40/1836
  38694. }
  38695. },
  38696. },
  38697. [
  38698. {
  38699. name: "Micro-Micro",
  38700. height: math.unit(1, "nm")
  38701. },
  38702. {
  38703. name: "Micro-erst",
  38704. height: math.unit(1, "micrometer")
  38705. },
  38706. {
  38707. name: "Micro-er",
  38708. height: math.unit(1, "cm")
  38709. },
  38710. {
  38711. name: "Normal",
  38712. height: math.unit(175, "cm"),
  38713. default: true
  38714. },
  38715. {
  38716. name: "Macro",
  38717. height: math.unit(100, "m")
  38718. },
  38719. {
  38720. name: "Macro-er",
  38721. height: math.unit(1, "km")
  38722. },
  38723. {
  38724. name: "Macro-erst",
  38725. height: math.unit(10, "km")
  38726. },
  38727. {
  38728. name: "Macro-Macro",
  38729. height: math.unit(100, "km")
  38730. },
  38731. ]
  38732. ))
  38733. characterMakers.push(() => makeCharacter(
  38734. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38735. {
  38736. front: {
  38737. height: math.unit(11 + 9/12, "feet"),
  38738. weight: math.unit(935, "lb"),
  38739. name: "Front",
  38740. image: {
  38741. source: "./media/characters/kingsley/front.svg",
  38742. extra: 1803/1674,
  38743. bottom: 127/1930
  38744. }
  38745. },
  38746. frontNude: {
  38747. height: math.unit(11 + 9/12, "feet"),
  38748. weight: math.unit(935, "lb"),
  38749. name: "Front (Nude)",
  38750. image: {
  38751. source: "./media/characters/kingsley/front-nude.svg",
  38752. extra: 1803/1674,
  38753. bottom: 127/1930
  38754. }
  38755. },
  38756. },
  38757. [
  38758. {
  38759. name: "Normal",
  38760. height: math.unit(11 + 9/12, "feet"),
  38761. default: true
  38762. },
  38763. ]
  38764. ))
  38765. characterMakers.push(() => makeCharacter(
  38766. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38767. {
  38768. side: {
  38769. height: math.unit(9, "feet"),
  38770. name: "Side",
  38771. image: {
  38772. source: "./media/characters/rymel/side.svg",
  38773. extra: 792/469,
  38774. bottom: 121/913
  38775. }
  38776. },
  38777. maw: {
  38778. height: math.unit(2.4, "meters"),
  38779. name: "Maw",
  38780. image: {
  38781. source: "./media/characters/rymel/maw.svg"
  38782. }
  38783. },
  38784. },
  38785. [
  38786. {
  38787. name: "House Drake",
  38788. height: math.unit(2, "feet")
  38789. },
  38790. {
  38791. name: "Reduced",
  38792. height: math.unit(4.5, "feet")
  38793. },
  38794. {
  38795. name: "Normal",
  38796. height: math.unit(9, "feet"),
  38797. default: true
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(1.74, "meters"),
  38806. weight: math.unit(55, "kg"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/rubus/front.svg",
  38810. extra: 1894/1742,
  38811. bottom: 44/1938
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Normal",
  38818. height: math.unit(1.74, "meters"),
  38819. default: true
  38820. },
  38821. ]
  38822. ))
  38823. characterMakers.push(() => makeCharacter(
  38824. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38825. {
  38826. front: {
  38827. height: math.unit(5 + 2/12, "feet"),
  38828. weight: math.unit(112, "lb"),
  38829. name: "Front",
  38830. image: {
  38831. source: "./media/characters/cassie-kingston/front.svg",
  38832. extra: 1438/1390,
  38833. bottom: 47/1485
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Normal",
  38840. height: math.unit(5 + 2/12, "feet"),
  38841. default: true
  38842. },
  38843. {
  38844. name: "Macro",
  38845. height: math.unit(128, "feet")
  38846. },
  38847. {
  38848. name: "Megamacro",
  38849. height: math.unit(2.56, "miles")
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38855. {
  38856. front: {
  38857. height: math.unit(7, "feet"),
  38858. name: "Front",
  38859. image: {
  38860. source: "./media/characters/fox/front.svg",
  38861. extra: 1798/1703,
  38862. bottom: 55/1853
  38863. }
  38864. },
  38865. back: {
  38866. height: math.unit(7, "feet"),
  38867. name: "Back",
  38868. image: {
  38869. source: "./media/characters/fox/back.svg",
  38870. extra: 1748/1649,
  38871. bottom: 32/1780
  38872. }
  38873. },
  38874. head: {
  38875. height: math.unit(1.95, "feet"),
  38876. name: "Head",
  38877. image: {
  38878. source: "./media/characters/fox/head.svg"
  38879. }
  38880. },
  38881. dick: {
  38882. height: math.unit(1.33, "feet"),
  38883. name: "Dick",
  38884. image: {
  38885. source: "./media/characters/fox/dick.svg"
  38886. }
  38887. },
  38888. foot: {
  38889. height: math.unit(1, "feet"),
  38890. name: "Foot",
  38891. image: {
  38892. source: "./media/characters/fox/foot.svg"
  38893. }
  38894. },
  38895. paw: {
  38896. height: math.unit(0.92, "feet"),
  38897. name: "Paw",
  38898. image: {
  38899. source: "./media/characters/fox/paw.svg"
  38900. }
  38901. },
  38902. },
  38903. [
  38904. {
  38905. name: "Small",
  38906. height: math.unit(3, "inches")
  38907. },
  38908. {
  38909. name: "\"Realistic\"",
  38910. height: math.unit(7, "feet")
  38911. },
  38912. {
  38913. name: "Normal",
  38914. height: math.unit(150, "feet"),
  38915. default: true
  38916. },
  38917. {
  38918. name: "BIG",
  38919. height: math.unit(1200, "feet")
  38920. },
  38921. {
  38922. name: "👀",
  38923. height: math.unit(5, "miles")
  38924. },
  38925. {
  38926. name: "👀👀👀",
  38927. height: math.unit(64, "miles")
  38928. },
  38929. ]
  38930. ))
  38931. characterMakers.push(() => makeCharacter(
  38932. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38933. {
  38934. front: {
  38935. height: math.unit(625, "feet"),
  38936. name: "Front",
  38937. image: {
  38938. source: "./media/characters/asonja-rossa/front.svg",
  38939. extra: 1833/1686,
  38940. bottom: 24/1857
  38941. }
  38942. },
  38943. back: {
  38944. height: math.unit(625, "feet"),
  38945. name: "Back",
  38946. image: {
  38947. source: "./media/characters/asonja-rossa/back.svg",
  38948. extra: 1852/1753,
  38949. bottom: 26/1878
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Macro",
  38956. height: math.unit(625, "feet"),
  38957. default: true
  38958. },
  38959. ]
  38960. ))
  38961. characterMakers.push(() => makeCharacter(
  38962. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38963. {
  38964. side: {
  38965. height: math.unit(8, "feet"),
  38966. name: "Side",
  38967. image: {
  38968. source: "./media/characters/rezukii/side.svg",
  38969. extra: 979/542,
  38970. bottom: 87/1066
  38971. }
  38972. },
  38973. sitting: {
  38974. height: math.unit(14.6, "feet"),
  38975. name: "Sitting",
  38976. image: {
  38977. source: "./media/characters/rezukii/sitting.svg",
  38978. extra: 1023/813,
  38979. bottom: 45/1068
  38980. }
  38981. },
  38982. },
  38983. [
  38984. {
  38985. name: "Tiny",
  38986. height: math.unit(2, "feet")
  38987. },
  38988. {
  38989. name: "Smol",
  38990. height: math.unit(4, "feet")
  38991. },
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(8, "feet"),
  38995. default: true
  38996. },
  38997. {
  38998. name: "Big",
  38999. height: math.unit(12, "feet")
  39000. },
  39001. {
  39002. name: "Macro",
  39003. height: math.unit(30, "feet")
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39009. {
  39010. front: {
  39011. height: math.unit(14, "feet"),
  39012. weight: math.unit(9.5, "tonnes"),
  39013. name: "Front",
  39014. image: {
  39015. source: "./media/characters/dawnheart/front.svg",
  39016. extra: 2792/2675,
  39017. bottom: 64/2856
  39018. }
  39019. },
  39020. },
  39021. [
  39022. {
  39023. name: "Normal",
  39024. height: math.unit(14, "feet"),
  39025. default: true
  39026. },
  39027. ]
  39028. ))
  39029. characterMakers.push(() => makeCharacter(
  39030. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39031. {
  39032. front: {
  39033. height: math.unit(1.7, "m"),
  39034. name: "Front",
  39035. image: {
  39036. source: "./media/characters/gladi/front.svg",
  39037. extra: 1460/1362,
  39038. bottom: 19/1479
  39039. }
  39040. },
  39041. back: {
  39042. height: math.unit(1.7, "m"),
  39043. name: "Back",
  39044. image: {
  39045. source: "./media/characters/gladi/back.svg",
  39046. extra: 1459/1357,
  39047. bottom: 12/1471
  39048. }
  39049. },
  39050. feral: {
  39051. height: math.unit(2.05, "m"),
  39052. name: "Feral",
  39053. image: {
  39054. source: "./media/characters/gladi/feral.svg",
  39055. extra: 821/557,
  39056. bottom: 91/912
  39057. }
  39058. },
  39059. },
  39060. [
  39061. {
  39062. name: "Shortest",
  39063. height: math.unit(70, "cm")
  39064. },
  39065. {
  39066. name: "Normal",
  39067. height: math.unit(1.7, "m")
  39068. },
  39069. {
  39070. name: "Macro",
  39071. height: math.unit(10, "m"),
  39072. default: true
  39073. },
  39074. {
  39075. name: "Tallest",
  39076. height: math.unit(200, "m")
  39077. },
  39078. ]
  39079. ))
  39080. characterMakers.push(() => makeCharacter(
  39081. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39082. {
  39083. front: {
  39084. height: math.unit(5 + 7/12, "feet"),
  39085. weight: math.unit(2, "tons"),
  39086. name: "Front",
  39087. image: {
  39088. source: "./media/characters/erdno/front.svg",
  39089. extra: 1234/1129,
  39090. bottom: 35/1269
  39091. }
  39092. },
  39093. angled: {
  39094. height: math.unit(5 + 7/12, "feet"),
  39095. weight: math.unit(2, "tons"),
  39096. name: "Angled",
  39097. image: {
  39098. source: "./media/characters/erdno/angled.svg",
  39099. extra: 1185/1139,
  39100. bottom: 36/1221
  39101. }
  39102. },
  39103. side: {
  39104. height: math.unit(5 + 7/12, "feet"),
  39105. weight: math.unit(2, "tons"),
  39106. name: "Side",
  39107. image: {
  39108. source: "./media/characters/erdno/side.svg",
  39109. extra: 1191/1144,
  39110. bottom: 40/1231
  39111. }
  39112. },
  39113. back: {
  39114. height: math.unit(5 + 7/12, "feet"),
  39115. weight: math.unit(2, "tons"),
  39116. name: "Back",
  39117. image: {
  39118. source: "./media/characters/erdno/back.svg",
  39119. extra: 1202/1146,
  39120. bottom: 17/1219
  39121. }
  39122. },
  39123. frontNsfw: {
  39124. height: math.unit(5 + 7/12, "feet"),
  39125. weight: math.unit(2, "tons"),
  39126. name: "Front (NSFW)",
  39127. image: {
  39128. source: "./media/characters/erdno/front-nsfw.svg",
  39129. extra: 1234/1129,
  39130. bottom: 35/1269
  39131. }
  39132. },
  39133. angledNsfw: {
  39134. height: math.unit(5 + 7/12, "feet"),
  39135. weight: math.unit(2, "tons"),
  39136. name: "Angled (NSFW)",
  39137. image: {
  39138. source: "./media/characters/erdno/angled-nsfw.svg",
  39139. extra: 1185/1139,
  39140. bottom: 36/1221
  39141. }
  39142. },
  39143. sideNsfw: {
  39144. height: math.unit(5 + 7/12, "feet"),
  39145. weight: math.unit(2, "tons"),
  39146. name: "Side (NSFW)",
  39147. image: {
  39148. source: "./media/characters/erdno/side-nsfw.svg",
  39149. extra: 1191/1144,
  39150. bottom: 40/1231
  39151. }
  39152. },
  39153. backNsfw: {
  39154. height: math.unit(5 + 7/12, "feet"),
  39155. weight: math.unit(2, "tons"),
  39156. name: "Back (NSFW)",
  39157. image: {
  39158. source: "./media/characters/erdno/back-nsfw.svg",
  39159. extra: 1202/1146,
  39160. bottom: 17/1219
  39161. }
  39162. },
  39163. frontHyper: {
  39164. height: math.unit(5 + 7/12, "feet"),
  39165. weight: math.unit(2, "tons"),
  39166. name: "Front (Hyper)",
  39167. image: {
  39168. source: "./media/characters/erdno/front-hyper.svg",
  39169. extra: 1298/1136,
  39170. bottom: 35/1333
  39171. }
  39172. },
  39173. },
  39174. [
  39175. {
  39176. name: "Normal",
  39177. height: math.unit(5 + 7/12, "feet"),
  39178. default: true
  39179. },
  39180. {
  39181. name: "Big",
  39182. height: math.unit(5.7, "meters")
  39183. },
  39184. {
  39185. name: "Macro",
  39186. height: math.unit(5.7, "kilometers")
  39187. },
  39188. {
  39189. name: "Megamacro",
  39190. height: math.unit(5.7, "earths")
  39191. },
  39192. ]
  39193. ))
  39194. characterMakers.push(() => makeCharacter(
  39195. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39196. {
  39197. front: {
  39198. height: math.unit(5 + 10/12, "feet"),
  39199. weight: math.unit(150, "lb"),
  39200. name: "Front",
  39201. image: {
  39202. source: "./media/characters/jamie/front.svg",
  39203. extra: 1908/1768,
  39204. bottom: 19/1927
  39205. }
  39206. },
  39207. },
  39208. [
  39209. {
  39210. name: "Minimum",
  39211. height: math.unit(2, "cm")
  39212. },
  39213. {
  39214. name: "Micro",
  39215. height: math.unit(3, "inches")
  39216. },
  39217. {
  39218. name: "Normal",
  39219. height: math.unit(5 + 10/12, "feet"),
  39220. default: true
  39221. },
  39222. {
  39223. name: "Macro",
  39224. height: math.unit(150, "feet")
  39225. },
  39226. {
  39227. name: "Megamacro",
  39228. height: math.unit(10000, "m")
  39229. },
  39230. ]
  39231. ))
  39232. characterMakers.push(() => makeCharacter(
  39233. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39234. {
  39235. front: {
  39236. height: math.unit(2, "meters"),
  39237. weight: math.unit(100, "kg"),
  39238. name: "Front",
  39239. image: {
  39240. source: "./media/characters/shiron/front.svg",
  39241. extra: 2103/1985,
  39242. bottom: 98/2201
  39243. }
  39244. },
  39245. back: {
  39246. height: math.unit(2, "meters"),
  39247. weight: math.unit(100, "kg"),
  39248. name: "Back",
  39249. image: {
  39250. source: "./media/characters/shiron/back.svg",
  39251. extra: 2110/2015,
  39252. bottom: 89/2199
  39253. }
  39254. },
  39255. hand: {
  39256. height: math.unit(0.96, "feet"),
  39257. name: "Hand",
  39258. image: {
  39259. source: "./media/characters/shiron/hand.svg"
  39260. }
  39261. },
  39262. foot: {
  39263. height: math.unit(1.464, "feet"),
  39264. name: "Foot",
  39265. image: {
  39266. source: "./media/characters/shiron/foot.svg"
  39267. }
  39268. },
  39269. },
  39270. [
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(2, "meters")
  39274. },
  39275. {
  39276. name: "Macro",
  39277. height: math.unit(500, "meters"),
  39278. default: true
  39279. },
  39280. {
  39281. name: "Megamacro",
  39282. height: math.unit(20, "km")
  39283. },
  39284. ]
  39285. ))
  39286. characterMakers.push(() => makeCharacter(
  39287. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39288. {
  39289. front: {
  39290. height: math.unit(6, "feet"),
  39291. name: "Front",
  39292. image: {
  39293. source: "./media/characters/sam/front.svg",
  39294. extra: 849/826,
  39295. bottom: 19/868
  39296. }
  39297. },
  39298. },
  39299. [
  39300. {
  39301. name: "Normal",
  39302. height: math.unit(6, "feet"),
  39303. default: true
  39304. },
  39305. ]
  39306. ))
  39307. characterMakers.push(() => makeCharacter(
  39308. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39309. {
  39310. front: {
  39311. height: math.unit(8 + 4/12, "feet"),
  39312. weight: math.unit(122, "kg"),
  39313. name: "Front",
  39314. image: {
  39315. source: "./media/characters/namori-kurogawa/front.svg",
  39316. extra: 1894/1576,
  39317. bottom: 34/1928
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Normal",
  39324. height: math.unit(8 + 4/12, "feet"),
  39325. default: true
  39326. },
  39327. ]
  39328. ))
  39329. characterMakers.push(() => makeCharacter(
  39330. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39331. {
  39332. front: {
  39333. height: math.unit(9, "feet"),
  39334. weight: math.unit(621, "lb"),
  39335. name: "Front",
  39336. image: {
  39337. source: "./media/characters/unmru/front.svg",
  39338. extra: 1853/1747,
  39339. bottom: 73/1926
  39340. }
  39341. },
  39342. side: {
  39343. height: math.unit(9, "feet"),
  39344. weight: math.unit(621, "lb"),
  39345. name: "Side",
  39346. image: {
  39347. source: "./media/characters/unmru/side.svg",
  39348. extra: 1781/1671,
  39349. bottom: 127/1908
  39350. }
  39351. },
  39352. back: {
  39353. height: math.unit(9, "feet"),
  39354. weight: math.unit(621, "lb"),
  39355. name: "Back",
  39356. image: {
  39357. source: "./media/characters/unmru/back.svg",
  39358. extra: 1894/1765,
  39359. bottom: 75/1969
  39360. }
  39361. },
  39362. dick: {
  39363. height: math.unit(3, "feet"),
  39364. weight: math.unit(35, "lb"),
  39365. name: "Dick",
  39366. image: {
  39367. source: "./media/characters/unmru/dick.svg"
  39368. }
  39369. },
  39370. },
  39371. [
  39372. {
  39373. name: "Normal",
  39374. height: math.unit(9, "feet")
  39375. },
  39376. {
  39377. name: "Natural",
  39378. height: math.unit(27, "feet"),
  39379. default: true
  39380. },
  39381. {
  39382. name: "Giant",
  39383. height: math.unit(90, "feet")
  39384. },
  39385. {
  39386. name: "Kaiju",
  39387. height: math.unit(270, "feet")
  39388. },
  39389. {
  39390. name: "Macro",
  39391. height: math.unit(900, "feet")
  39392. },
  39393. {
  39394. name: "Macro+",
  39395. height: math.unit(2700, "feet")
  39396. },
  39397. {
  39398. name: "Megamacro",
  39399. height: math.unit(9000, "feet")
  39400. },
  39401. {
  39402. name: "City-Crushing",
  39403. height: math.unit(27000, "feet")
  39404. },
  39405. {
  39406. name: "Mountain-Mashing",
  39407. height: math.unit(90000, "feet")
  39408. },
  39409. {
  39410. name: "Earth-Eclipsing",
  39411. height: math.unit(2.7e8, "feet")
  39412. },
  39413. {
  39414. name: "Sol-Swallowing",
  39415. height: math.unit(9e10, "feet")
  39416. },
  39417. {
  39418. name: "Majoris-Munching",
  39419. height: math.unit(2.7e13, "feet")
  39420. },
  39421. ]
  39422. ))
  39423. characterMakers.push(() => makeCharacter(
  39424. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39425. {
  39426. front: {
  39427. height: math.unit(1, "inch"),
  39428. name: "Front",
  39429. image: {
  39430. source: "./media/characters/squeaks-mouse/front.svg",
  39431. extra: 352/308,
  39432. bottom: 25/377
  39433. }
  39434. },
  39435. },
  39436. [
  39437. {
  39438. name: "Micro",
  39439. height: math.unit(1, "inch"),
  39440. default: true
  39441. },
  39442. ]
  39443. ))
  39444. characterMakers.push(() => makeCharacter(
  39445. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39446. {
  39447. side: {
  39448. height: math.unit(35, "feet"),
  39449. name: "Side",
  39450. image: {
  39451. source: "./media/characters/sayko/side.svg",
  39452. extra: 1697/1021,
  39453. bottom: 82/1779
  39454. }
  39455. },
  39456. head: {
  39457. height: math.unit(16, "feet"),
  39458. name: "Head",
  39459. image: {
  39460. source: "./media/characters/sayko/head.svg"
  39461. }
  39462. },
  39463. forepaw: {
  39464. height: math.unit(7.85, "feet"),
  39465. name: "Forepaw",
  39466. image: {
  39467. source: "./media/characters/sayko/forepaw.svg"
  39468. }
  39469. },
  39470. hindpaw: {
  39471. height: math.unit(8.8, "feet"),
  39472. name: "Hindpaw",
  39473. image: {
  39474. source: "./media/characters/sayko/hindpaw.svg"
  39475. }
  39476. },
  39477. },
  39478. [
  39479. {
  39480. name: "Normal",
  39481. height: math.unit(35, "feet"),
  39482. default: true
  39483. },
  39484. {
  39485. name: "Colossus",
  39486. height: math.unit(100, "meters")
  39487. },
  39488. {
  39489. name: "\"Small\" Deity",
  39490. height: math.unit(1, "km")
  39491. },
  39492. {
  39493. name: "\"Large\" Deity",
  39494. height: math.unit(15, "km")
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(6, "feet"),
  39503. weight: math.unit(250, "lb"),
  39504. name: "Front",
  39505. image: {
  39506. source: "./media/characters/mukiro/front.svg",
  39507. extra: 1368/1310,
  39508. bottom: 34/1402
  39509. }
  39510. },
  39511. },
  39512. [
  39513. {
  39514. name: "Normal",
  39515. height: math.unit(6, "feet"),
  39516. default: true
  39517. },
  39518. ]
  39519. ))
  39520. characterMakers.push(() => makeCharacter(
  39521. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39522. {
  39523. front: {
  39524. height: math.unit(12 + 4/12, "feet"),
  39525. name: "Front",
  39526. image: {
  39527. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39528. extra: 1346/1311,
  39529. bottom: 65/1411
  39530. }
  39531. },
  39532. },
  39533. [
  39534. {
  39535. name: "Base",
  39536. height: math.unit(12 + 4/12, "feet"),
  39537. default: true
  39538. },
  39539. {
  39540. name: "Macro",
  39541. height: math.unit(150, "feet")
  39542. },
  39543. {
  39544. name: "Mega",
  39545. height: math.unit(2, "miles")
  39546. },
  39547. {
  39548. name: "Demi God",
  39549. height: math.unit(4, "AU")
  39550. },
  39551. {
  39552. name: "God Size",
  39553. height: math.unit(1, "universe")
  39554. },
  39555. ]
  39556. ))
  39557. characterMakers.push(() => makeCharacter(
  39558. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39559. {
  39560. front: {
  39561. height: math.unit(3 + 3/12, "feet"),
  39562. weight: math.unit(88, "lb"),
  39563. name: "Front",
  39564. image: {
  39565. source: "./media/characters/trey/front.svg",
  39566. extra: 1815/1509,
  39567. bottom: 60/1875
  39568. }
  39569. },
  39570. },
  39571. [
  39572. {
  39573. name: "Normal",
  39574. height: math.unit(3 + 3/12, "feet"),
  39575. default: true
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39581. {
  39582. front: {
  39583. height: math.unit(4, "meters"),
  39584. name: "Front",
  39585. image: {
  39586. source: "./media/characters/adelonda/front.svg",
  39587. extra: 1077/982,
  39588. bottom: 39/1116
  39589. }
  39590. },
  39591. back: {
  39592. height: math.unit(4, "meters"),
  39593. name: "Back",
  39594. image: {
  39595. source: "./media/characters/adelonda/back.svg",
  39596. extra: 1105/1003,
  39597. bottom: 25/1130
  39598. }
  39599. },
  39600. feral: {
  39601. height: math.unit(40/1.5, "meters"),
  39602. name: "Feral",
  39603. image: {
  39604. source: "./media/characters/adelonda/feral.svg",
  39605. extra: 597/271,
  39606. bottom: 387/984
  39607. }
  39608. },
  39609. },
  39610. [
  39611. {
  39612. name: "Normal",
  39613. height: math.unit(4, "meters"),
  39614. default: true
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(8 + 4/12, "feet"),
  39623. weight: math.unit(670, "lb"),
  39624. name: "Front",
  39625. image: {
  39626. source: "./media/characters/acadiel/front.svg",
  39627. extra: 1901/1595,
  39628. bottom: 142/2043
  39629. }
  39630. },
  39631. },
  39632. [
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(8 + 4/12, "feet"),
  39636. default: true
  39637. },
  39638. {
  39639. name: "Macro",
  39640. height: math.unit(200, "feet")
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39646. {
  39647. front: {
  39648. height: math.unit(6 + 2/12, "feet"),
  39649. weight: math.unit(185, "lb"),
  39650. name: "Front",
  39651. image: {
  39652. source: "./media/characters/kayne-ein/front.svg",
  39653. extra: 1780/1560,
  39654. bottom: 81/1861
  39655. }
  39656. },
  39657. },
  39658. [
  39659. {
  39660. name: "Normal",
  39661. height: math.unit(6 + 2/12, "feet"),
  39662. default: true
  39663. },
  39664. {
  39665. name: "Transformation Stage",
  39666. height: math.unit(15, "feet")
  39667. },
  39668. {
  39669. name: "Macro",
  39670. height: math.unit(150, "feet")
  39671. },
  39672. {
  39673. name: "Earth's Shadow",
  39674. height: math.unit(6200, "miles")
  39675. },
  39676. {
  39677. name: "Universal Demon",
  39678. height: math.unit(28e9, "parsecs")
  39679. },
  39680. {
  39681. name: "Multiverse God",
  39682. height: math.unit(3, "multiverses")
  39683. },
  39684. ]
  39685. ))
  39686. characterMakers.push(() => makeCharacter(
  39687. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39688. {
  39689. front: {
  39690. height: math.unit(5 + 5/12, "feet"),
  39691. name: "Front",
  39692. image: {
  39693. source: "./media/characters/fawn/front.svg",
  39694. extra: 1873/1731,
  39695. bottom: 95/1968
  39696. }
  39697. },
  39698. back: {
  39699. height: math.unit(5 + 5/12, "feet"),
  39700. name: "Back",
  39701. image: {
  39702. source: "./media/characters/fawn/back.svg",
  39703. extra: 1813/1700,
  39704. bottom: 14/1827
  39705. }
  39706. },
  39707. hoof: {
  39708. height: math.unit(1.45, "feet"),
  39709. name: "Hoof",
  39710. image: {
  39711. source: "./media/characters/fawn/hoof.svg"
  39712. }
  39713. },
  39714. },
  39715. [
  39716. {
  39717. name: "Normal",
  39718. height: math.unit(5 + 5/12, "feet"),
  39719. default: true
  39720. },
  39721. ]
  39722. ))
  39723. characterMakers.push(() => makeCharacter(
  39724. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39725. {
  39726. front: {
  39727. height: math.unit(2 + 5/12, "feet"),
  39728. name: "Front",
  39729. image: {
  39730. source: "./media/characters/orion/front.svg",
  39731. extra: 1366/1304,
  39732. bottom: 43/1409
  39733. }
  39734. },
  39735. paw: {
  39736. height: math.unit(0.52, "feet"),
  39737. name: "Paw",
  39738. image: {
  39739. source: "./media/characters/orion/paw.svg"
  39740. }
  39741. },
  39742. },
  39743. [
  39744. {
  39745. name: "Normal",
  39746. height: math.unit(2 + 5/12, "feet"),
  39747. default: true
  39748. },
  39749. ]
  39750. ))
  39751. characterMakers.push(() => makeCharacter(
  39752. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39753. {
  39754. front: {
  39755. height: math.unit(5 + 10/12, "feet"),
  39756. name: "Front",
  39757. image: {
  39758. source: "./media/characters/vera/front.svg",
  39759. extra: 1680/1575,
  39760. bottom: 49/1729
  39761. }
  39762. },
  39763. back: {
  39764. height: math.unit(5 + 10/12, "feet"),
  39765. name: "Back",
  39766. image: {
  39767. source: "./media/characters/vera/back.svg",
  39768. extra: 1700/1588,
  39769. bottom: 18/1718
  39770. }
  39771. },
  39772. arcanine: {
  39773. height: math.unit(6 + 8/12, "feet"),
  39774. name: "Arcanine",
  39775. image: {
  39776. source: "./media/characters/vera/arcanine.svg",
  39777. extra: 1590/1511,
  39778. bottom: 71/1661
  39779. }
  39780. },
  39781. maw: {
  39782. height: math.unit(0.82, "feet"),
  39783. name: "Maw",
  39784. image: {
  39785. source: "./media/characters/vera/maw.svg"
  39786. }
  39787. },
  39788. mawArcanine: {
  39789. height: math.unit(0.97, "feet"),
  39790. name: "Maw (Arcanine)",
  39791. image: {
  39792. source: "./media/characters/vera/maw-arcanine.svg"
  39793. }
  39794. },
  39795. paw: {
  39796. height: math.unit(0.75, "feet"),
  39797. name: "Paw",
  39798. image: {
  39799. source: "./media/characters/vera/paw.svg"
  39800. }
  39801. },
  39802. pawprint: {
  39803. height: math.unit(0.52, "feet"),
  39804. name: "Pawprint",
  39805. image: {
  39806. source: "./media/characters/vera/pawprint.svg"
  39807. }
  39808. },
  39809. },
  39810. [
  39811. {
  39812. name: "Normal",
  39813. height: math.unit(5 + 10/12, "feet"),
  39814. default: true
  39815. },
  39816. {
  39817. name: "Macro",
  39818. height: math.unit(75, "feet")
  39819. },
  39820. ]
  39821. ))
  39822. characterMakers.push(() => makeCharacter(
  39823. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39824. {
  39825. front: {
  39826. height: math.unit(4, "feet"),
  39827. weight: math.unit(40, "lb"),
  39828. name: "Front",
  39829. image: {
  39830. source: "./media/characters/orvan-rabbit/front.svg",
  39831. extra: 1896/1642,
  39832. bottom: 29/1925
  39833. }
  39834. },
  39835. },
  39836. [
  39837. {
  39838. name: "Normal",
  39839. height: math.unit(4, "feet"),
  39840. default: true
  39841. },
  39842. ]
  39843. ))
  39844. characterMakers.push(() => makeCharacter(
  39845. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39846. {
  39847. front: {
  39848. height: math.unit(6, "feet"),
  39849. weight: math.unit(168, "lb"),
  39850. name: "Front",
  39851. image: {
  39852. source: "./media/characters/lisa/front.svg",
  39853. extra: 2065/1867,
  39854. bottom: 46/2111
  39855. }
  39856. },
  39857. back: {
  39858. height: math.unit(6, "feet"),
  39859. weight: math.unit(168, "lb"),
  39860. name: "Back",
  39861. image: {
  39862. source: "./media/characters/lisa/back.svg",
  39863. extra: 1982/1838,
  39864. bottom: 29/2011
  39865. }
  39866. },
  39867. maw: {
  39868. height: math.unit(0.81, "feet"),
  39869. name: "Maw",
  39870. image: {
  39871. source: "./media/characters/lisa/maw.svg"
  39872. }
  39873. },
  39874. paw: {
  39875. height: math.unit(0.9, "feet"),
  39876. name: "Paw",
  39877. image: {
  39878. source: "./media/characters/lisa/paw.svg"
  39879. }
  39880. },
  39881. caribousune: {
  39882. height: math.unit(7 + 2/12, "feet"),
  39883. weight: math.unit(268, "lb"),
  39884. name: "Caribousune",
  39885. image: {
  39886. source: "./media/characters/lisa/caribousune.svg",
  39887. extra: 1843/1633,
  39888. bottom: 29/1872
  39889. }
  39890. },
  39891. frontCaribousune: {
  39892. height: math.unit(7 + 2/12, "feet"),
  39893. weight: math.unit(268, "lb"),
  39894. name: "Front (Caribousune)",
  39895. image: {
  39896. source: "./media/characters/lisa/front-caribousune.svg",
  39897. extra: 1818/1638,
  39898. bottom: 52/1870
  39899. }
  39900. },
  39901. sideCaribousune: {
  39902. height: math.unit(7 + 2/12, "feet"),
  39903. weight: math.unit(268, "lb"),
  39904. name: "Side (Caribousune)",
  39905. image: {
  39906. source: "./media/characters/lisa/side-caribousune.svg",
  39907. extra: 1851/1635,
  39908. bottom: 16/1867
  39909. }
  39910. },
  39911. backCaribousune: {
  39912. height: math.unit(7 + 2/12, "feet"),
  39913. weight: math.unit(268, "lb"),
  39914. name: "Back (Caribousune)",
  39915. image: {
  39916. source: "./media/characters/lisa/back-caribousune.svg",
  39917. extra: 1801/1604,
  39918. bottom: 44/1845
  39919. }
  39920. },
  39921. caribou: {
  39922. height: math.unit(7 + 2/12, "feet"),
  39923. weight: math.unit(268, "lb"),
  39924. name: "Caribou",
  39925. image: {
  39926. source: "./media/characters/lisa/caribou.svg",
  39927. extra: 1843/1633,
  39928. bottom: 29/1872
  39929. }
  39930. },
  39931. frontCaribou: {
  39932. height: math.unit(7 + 2/12, "feet"),
  39933. weight: math.unit(268, "lb"),
  39934. name: "Front (Caribou)",
  39935. image: {
  39936. source: "./media/characters/lisa/front-caribou.svg",
  39937. extra: 1818/1638,
  39938. bottom: 52/1870
  39939. }
  39940. },
  39941. sideCaribou: {
  39942. height: math.unit(7 + 2/12, "feet"),
  39943. weight: math.unit(268, "lb"),
  39944. name: "Side (Caribou)",
  39945. image: {
  39946. source: "./media/characters/lisa/side-caribou.svg",
  39947. extra: 1851/1635,
  39948. bottom: 16/1867
  39949. }
  39950. },
  39951. backCaribou: {
  39952. height: math.unit(7 + 2/12, "feet"),
  39953. weight: math.unit(268, "lb"),
  39954. name: "Back (Caribou)",
  39955. image: {
  39956. source: "./media/characters/lisa/back-caribou.svg",
  39957. extra: 1801/1604,
  39958. bottom: 44/1845
  39959. }
  39960. },
  39961. mawCaribou: {
  39962. height: math.unit(1.45, "feet"),
  39963. name: "Maw (Caribou)",
  39964. image: {
  39965. source: "./media/characters/lisa/maw-caribou.svg"
  39966. }
  39967. },
  39968. mawCaribousune: {
  39969. height: math.unit(1.45, "feet"),
  39970. name: "Maw (Caribousune)",
  39971. image: {
  39972. source: "./media/characters/lisa/maw-caribousune.svg"
  39973. }
  39974. },
  39975. pawCaribousune: {
  39976. height: math.unit(1.61, "feet"),
  39977. name: "Paw (Caribou)",
  39978. image: {
  39979. source: "./media/characters/lisa/paw-caribousune.svg"
  39980. }
  39981. },
  39982. },
  39983. [
  39984. {
  39985. name: "Normal",
  39986. height: math.unit(6, "feet")
  39987. },
  39988. {
  39989. name: "God Size",
  39990. height: math.unit(72, "feet"),
  39991. default: true
  39992. },
  39993. {
  39994. name: "Towering",
  39995. height: math.unit(288, "feet")
  39996. },
  39997. {
  39998. name: "City Size",
  39999. height: math.unit(48384, "feet")
  40000. },
  40001. {
  40002. name: "Continental",
  40003. height: math.unit(4200, "miles")
  40004. },
  40005. {
  40006. name: "Planet Eater",
  40007. height: math.unit(42, "earths")
  40008. },
  40009. {
  40010. name: "Star Swallower",
  40011. height: math.unit(42, "solarradii")
  40012. },
  40013. {
  40014. name: "System Swallower",
  40015. height: math.unit(84000, "AU")
  40016. },
  40017. {
  40018. name: "Galaxy Gobbler",
  40019. height: math.unit(42, "galaxies")
  40020. },
  40021. {
  40022. name: "Universe Devourer",
  40023. height: math.unit(42, "universes")
  40024. },
  40025. {
  40026. name: "Multiverse Muncher",
  40027. height: math.unit(42, "multiverses")
  40028. },
  40029. ]
  40030. ))
  40031. characterMakers.push(() => makeCharacter(
  40032. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40033. {
  40034. front: {
  40035. height: math.unit(36, "feet"),
  40036. name: "Front",
  40037. image: {
  40038. source: "./media/characters/shadow-rat/front.svg",
  40039. extra: 1845/1758,
  40040. bottom: 83/1928
  40041. }
  40042. },
  40043. },
  40044. [
  40045. {
  40046. name: "Macro",
  40047. height: math.unit(36, "feet"),
  40048. default: true
  40049. },
  40050. ]
  40051. ))
  40052. characterMakers.push(() => makeCharacter(
  40053. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40054. {
  40055. side: {
  40056. height: math.unit(8, "feet"),
  40057. weight: math.unit(2630, "lb"),
  40058. name: "Side",
  40059. image: {
  40060. source: "./media/characters/torallia/side.svg",
  40061. extra: 2164/2021,
  40062. bottom: 371/2535
  40063. }
  40064. },
  40065. },
  40066. [
  40067. {
  40068. name: "Mortal Interaction",
  40069. height: math.unit(8, "feet")
  40070. },
  40071. {
  40072. name: "Natural",
  40073. height: math.unit(24, "feet"),
  40074. default: true
  40075. },
  40076. {
  40077. name: "Giant",
  40078. height: math.unit(80, "feet")
  40079. },
  40080. {
  40081. name: "Kaiju",
  40082. height: math.unit(240, "feet")
  40083. },
  40084. {
  40085. name: "Macro",
  40086. height: math.unit(800, "feet")
  40087. },
  40088. {
  40089. name: "Macro+",
  40090. height: math.unit(2400, "feet")
  40091. },
  40092. {
  40093. name: "Macro++",
  40094. height: math.unit(8000, "feet")
  40095. },
  40096. {
  40097. name: "City-Crushing",
  40098. height: math.unit(24000, "feet")
  40099. },
  40100. {
  40101. name: "Mountain-Mashing",
  40102. height: math.unit(80000, "feet")
  40103. },
  40104. {
  40105. name: "District Demolisher",
  40106. height: math.unit(240000, "feet")
  40107. },
  40108. {
  40109. name: "Tri-County Terror",
  40110. height: math.unit(800000, "feet")
  40111. },
  40112. {
  40113. name: "State Smasher",
  40114. height: math.unit(2.4e6, "feet")
  40115. },
  40116. {
  40117. name: "Nation Nemesis",
  40118. height: math.unit(8e6, "feet")
  40119. },
  40120. {
  40121. name: "Continent Cracker",
  40122. height: math.unit(2.4e7, "feet")
  40123. },
  40124. {
  40125. name: "Planet-Pillaging",
  40126. height: math.unit(8e7, "feet")
  40127. },
  40128. {
  40129. name: "Earth-Eclipsing",
  40130. height: math.unit(2.4e8, "feet")
  40131. },
  40132. {
  40133. name: "Jovian-Jostling",
  40134. height: math.unit(8e8, "feet")
  40135. },
  40136. {
  40137. name: "Gas Giant Gulper",
  40138. height: math.unit(2.4e9, "feet")
  40139. },
  40140. {
  40141. name: "Astral Annihilator",
  40142. height: math.unit(8e9, "feet")
  40143. },
  40144. {
  40145. name: "Celestial Conqueror",
  40146. height: math.unit(2.4e10, "feet")
  40147. },
  40148. {
  40149. name: "Sol-Swallowing",
  40150. height: math.unit(8e10, "feet")
  40151. },
  40152. {
  40153. name: "Hunter of the Heavens",
  40154. height: math.unit(2.4e13, "feet")
  40155. },
  40156. ]
  40157. ))
  40158. characterMakers.push(() => makeCharacter(
  40159. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40160. {
  40161. front: {
  40162. height: math.unit(6 + 8/12, "feet"),
  40163. weight: math.unit(250, "kilograms"),
  40164. volume: math.unit(28, "liters"),
  40165. name: "Front",
  40166. image: {
  40167. source: "./media/characters/rebecca-pawlson/front.svg",
  40168. extra: 1737/1596,
  40169. bottom: 107/1844
  40170. }
  40171. },
  40172. back: {
  40173. height: math.unit(6 + 8/12, "feet"),
  40174. weight: math.unit(250, "kilograms"),
  40175. volume: math.unit(28, "liters"),
  40176. name: "Back",
  40177. image: {
  40178. source: "./media/characters/rebecca-pawlson/back.svg",
  40179. extra: 1702/1523,
  40180. bottom: 86/1788
  40181. }
  40182. },
  40183. },
  40184. [
  40185. {
  40186. name: "Normal",
  40187. height: math.unit(6 + 8/12, "feet")
  40188. },
  40189. {
  40190. name: "Mini Macro",
  40191. height: math.unit(10, "feet"),
  40192. default: true
  40193. },
  40194. {
  40195. name: "Macro",
  40196. height: math.unit(100, "feet")
  40197. },
  40198. {
  40199. name: "Mega Macro",
  40200. height: math.unit(2500, "feet")
  40201. },
  40202. {
  40203. name: "Giga Macro",
  40204. height: math.unit(50, "miles")
  40205. },
  40206. ]
  40207. ))
  40208. characterMakers.push(() => makeCharacter(
  40209. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40210. {
  40211. front: {
  40212. height: math.unit(7 + 6/12, "feet"),
  40213. weight: math.unit(600, "lb"),
  40214. name: "Front",
  40215. image: {
  40216. source: "./media/characters/moxie-nova/front.svg",
  40217. extra: 1734/1652,
  40218. bottom: 41/1775
  40219. }
  40220. },
  40221. },
  40222. [
  40223. {
  40224. name: "Normal",
  40225. height: math.unit(7 + 6/12, "feet"),
  40226. default: true
  40227. },
  40228. ]
  40229. ))
  40230. characterMakers.push(() => makeCharacter(
  40231. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40232. {
  40233. goat: {
  40234. height: math.unit(4, "feet"),
  40235. weight: math.unit(180, "lb"),
  40236. name: "Goat",
  40237. image: {
  40238. source: "./media/characters/tiffany/goat.svg",
  40239. extra: 1845/1595,
  40240. bottom: 106/1951
  40241. }
  40242. },
  40243. front: {
  40244. height: math.unit(5, "feet"),
  40245. weight: math.unit(150, "lb"),
  40246. name: "Foxcoon",
  40247. image: {
  40248. source: "./media/characters/tiffany/foxcoon.svg",
  40249. extra: 1941/1845,
  40250. bottom: 58/1999
  40251. }
  40252. },
  40253. },
  40254. [
  40255. {
  40256. name: "Normal",
  40257. height: math.unit(5, "feet"),
  40258. default: true
  40259. },
  40260. ]
  40261. ))
  40262. characterMakers.push(() => makeCharacter(
  40263. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40264. {
  40265. front: {
  40266. height: math.unit(8, "feet"),
  40267. weight: math.unit(300, "lb"),
  40268. name: "Front",
  40269. image: {
  40270. source: "./media/characters/raxinath/front.svg",
  40271. extra: 1407/1309,
  40272. bottom: 39/1446
  40273. }
  40274. },
  40275. back: {
  40276. height: math.unit(8, "feet"),
  40277. weight: math.unit(300, "lb"),
  40278. name: "Back",
  40279. image: {
  40280. source: "./media/characters/raxinath/back.svg",
  40281. extra: 1405/1315,
  40282. bottom: 9/1414
  40283. }
  40284. },
  40285. },
  40286. [
  40287. {
  40288. name: "Speck",
  40289. height: math.unit(0.5, "nm")
  40290. },
  40291. {
  40292. name: "Micro",
  40293. height: math.unit(3, "inches")
  40294. },
  40295. {
  40296. name: "Kobold",
  40297. height: math.unit(3, "feet")
  40298. },
  40299. {
  40300. name: "Normal",
  40301. height: math.unit(8, "feet"),
  40302. default: true
  40303. },
  40304. {
  40305. name: "Giant",
  40306. height: math.unit(50, "feet")
  40307. },
  40308. {
  40309. name: "Macro",
  40310. height: math.unit(1000, "feet")
  40311. },
  40312. {
  40313. name: "Megamacro",
  40314. height: math.unit(1, "mile")
  40315. },
  40316. ]
  40317. ))
  40318. characterMakers.push(() => makeCharacter(
  40319. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40320. {
  40321. front: {
  40322. height: math.unit(10, "feet"),
  40323. weight: math.unit(1442, "lb"),
  40324. name: "Front",
  40325. image: {
  40326. source: "./media/characters/mal-dragon/front.svg",
  40327. extra: 1515/1444,
  40328. bottom: 113/1628
  40329. }
  40330. },
  40331. back: {
  40332. height: math.unit(10, "feet"),
  40333. weight: math.unit(1442, "lb"),
  40334. name: "Back",
  40335. image: {
  40336. source: "./media/characters/mal-dragon/back.svg",
  40337. extra: 1527/1434,
  40338. bottom: 25/1552
  40339. }
  40340. },
  40341. },
  40342. [
  40343. {
  40344. name: "Mortal Interaction",
  40345. height: math.unit(10, "feet"),
  40346. default: true
  40347. },
  40348. {
  40349. name: "Large",
  40350. height: math.unit(30, "feet")
  40351. },
  40352. {
  40353. name: "Kaiju",
  40354. height: math.unit(300, "feet")
  40355. },
  40356. {
  40357. name: "Megamacro",
  40358. height: math.unit(10000, "feet")
  40359. },
  40360. {
  40361. name: "Continent Cracker",
  40362. height: math.unit(30000000, "feet")
  40363. },
  40364. {
  40365. name: "Sol-Swallowing",
  40366. height: math.unit(1e11, "feet")
  40367. },
  40368. {
  40369. name: "Light Universal",
  40370. height: math.unit(5, "universes")
  40371. },
  40372. {
  40373. name: "Universe Atoms",
  40374. height: math.unit(1.829e9, "universes")
  40375. },
  40376. {
  40377. name: "Light Multiversal",
  40378. height: math.unit(5, "multiverses")
  40379. },
  40380. {
  40381. name: "Multiverse Atoms",
  40382. height: math.unit(1.829e9, "multiverses")
  40383. },
  40384. {
  40385. name: "Fabric of Time",
  40386. height: math.unit(1e262, "multiverses")
  40387. },
  40388. ]
  40389. ))
  40390. characterMakers.push(() => makeCharacter(
  40391. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40392. {
  40393. front: {
  40394. height: math.unit(9, "feet"),
  40395. weight: math.unit(1050, "lb"),
  40396. name: "Front",
  40397. image: {
  40398. source: "./media/characters/tabitha/front.svg",
  40399. extra: 2083/1994,
  40400. bottom: 68/2151
  40401. }
  40402. },
  40403. },
  40404. [
  40405. {
  40406. name: "Baseline",
  40407. height: math.unit(9, "feet"),
  40408. default: true
  40409. },
  40410. {
  40411. name: "Giant",
  40412. height: math.unit(90, "feet")
  40413. },
  40414. {
  40415. name: "Macro",
  40416. height: math.unit(900, "feet")
  40417. },
  40418. {
  40419. name: "Megamacro",
  40420. height: math.unit(9000, "feet")
  40421. },
  40422. {
  40423. name: "City-Crushing",
  40424. height: math.unit(27000, "feet")
  40425. },
  40426. {
  40427. name: "Mountain-Mashing",
  40428. height: math.unit(90000, "feet")
  40429. },
  40430. {
  40431. name: "Nation Nemesis",
  40432. height: math.unit(9e6, "feet")
  40433. },
  40434. {
  40435. name: "Continent Cracker",
  40436. height: math.unit(27e6, "feet")
  40437. },
  40438. {
  40439. name: "Earth-Eclipsing",
  40440. height: math.unit(2.7e8, "feet")
  40441. },
  40442. {
  40443. name: "Gas Giant Gulper",
  40444. height: math.unit(2.7e9, "feet")
  40445. },
  40446. {
  40447. name: "Sol-Swallowing",
  40448. height: math.unit(9e10, "feet")
  40449. },
  40450. {
  40451. name: "Galaxy Gulper",
  40452. height: math.unit(9, "galaxies")
  40453. },
  40454. {
  40455. name: "Cosmos Churner",
  40456. height: math.unit(9, "universes")
  40457. },
  40458. ]
  40459. ))
  40460. characterMakers.push(() => makeCharacter(
  40461. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40462. {
  40463. front: {
  40464. height: math.unit(160, "cm"),
  40465. weight: math.unit(55, "kg"),
  40466. name: "Front",
  40467. image: {
  40468. source: "./media/characters/tow/front.svg",
  40469. extra: 1751/1722,
  40470. bottom: 74/1825
  40471. }
  40472. },
  40473. },
  40474. [
  40475. {
  40476. name: "Norm",
  40477. height: math.unit(160, "cm")
  40478. },
  40479. {
  40480. name: "Casual",
  40481. height: math.unit(3200, "m"),
  40482. default: true
  40483. },
  40484. {
  40485. name: "Show-Off",
  40486. height: math.unit(160, "km")
  40487. },
  40488. ]
  40489. ))
  40490. characterMakers.push(() => makeCharacter(
  40491. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40492. {
  40493. front: {
  40494. height: math.unit(7 + 11/12, "feet"),
  40495. weight: math.unit(342.8, "lb"),
  40496. name: "Front",
  40497. image: {
  40498. source: "./media/characters/vivian-orca-dragon/front.svg",
  40499. extra: 1890/1865,
  40500. bottom: 28/1918
  40501. }
  40502. },
  40503. },
  40504. [
  40505. {
  40506. name: "Micro",
  40507. height: math.unit(5, "inches")
  40508. },
  40509. {
  40510. name: "Normal",
  40511. height: math.unit(7 + 11/12, "feet"),
  40512. default: true
  40513. },
  40514. {
  40515. name: "Macro",
  40516. height: math.unit(395 + 7/12, "feet")
  40517. },
  40518. ]
  40519. ))
  40520. characterMakers.push(() => makeCharacter(
  40521. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40522. {
  40523. side: {
  40524. height: math.unit(10, "feet"),
  40525. weight: math.unit(1442, "lb"),
  40526. name: "Side",
  40527. image: {
  40528. source: "./media/characters/lotherakon/side.svg",
  40529. extra: 1604/1497,
  40530. bottom: 89/1693
  40531. }
  40532. },
  40533. },
  40534. [
  40535. {
  40536. name: "Mortal Interaction",
  40537. height: math.unit(10, "feet")
  40538. },
  40539. {
  40540. name: "Large",
  40541. height: math.unit(30, "feet"),
  40542. default: true
  40543. },
  40544. {
  40545. name: "Giant",
  40546. height: math.unit(100, "feet")
  40547. },
  40548. {
  40549. name: "Kaiju",
  40550. height: math.unit(300, "feet")
  40551. },
  40552. {
  40553. name: "Macro",
  40554. height: math.unit(1000, "feet")
  40555. },
  40556. {
  40557. name: "Macro+",
  40558. height: math.unit(3000, "feet")
  40559. },
  40560. {
  40561. name: "Megamacro",
  40562. height: math.unit(10000, "feet")
  40563. },
  40564. {
  40565. name: "City-Crushing",
  40566. height: math.unit(30000, "feet")
  40567. },
  40568. {
  40569. name: "Continent Cracker",
  40570. height: math.unit(30e6, "feet")
  40571. },
  40572. {
  40573. name: "Earth Eclipsing",
  40574. height: math.unit(3e8, "feet")
  40575. },
  40576. {
  40577. name: "Gas Giant Gulper",
  40578. height: math.unit(3e9, "feet")
  40579. },
  40580. {
  40581. name: "Sol-Swallowing",
  40582. height: math.unit(1e11, "feet")
  40583. },
  40584. {
  40585. name: "System Swallower",
  40586. height: math.unit(3e14, "feet")
  40587. },
  40588. {
  40589. name: "Galaxy Gulper",
  40590. height: math.unit(10, "galaxies")
  40591. },
  40592. {
  40593. name: "Light Universal",
  40594. height: math.unit(5, "universes")
  40595. },
  40596. {
  40597. name: "Universe Palm",
  40598. height: math.unit(20, "universes")
  40599. },
  40600. {
  40601. name: "Light Multiversal",
  40602. height: math.unit(5, "multiverses")
  40603. },
  40604. {
  40605. name: "Multiverse Palm",
  40606. height: math.unit(20, "multiverses")
  40607. },
  40608. {
  40609. name: "Inferno Incarnate",
  40610. height: math.unit(1e7, "multiverses")
  40611. },
  40612. ]
  40613. ))
  40614. characterMakers.push(() => makeCharacter(
  40615. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40616. {
  40617. front: {
  40618. height: math.unit(8, "feet"),
  40619. weight: math.unit(1200, "lb"),
  40620. name: "Front",
  40621. image: {
  40622. source: "./media/characters/malithee/front.svg",
  40623. extra: 1675/1640,
  40624. bottom: 162/1837
  40625. }
  40626. },
  40627. },
  40628. [
  40629. {
  40630. name: "Mortal Interaction",
  40631. height: math.unit(8, "feet"),
  40632. default: true
  40633. },
  40634. {
  40635. name: "Large",
  40636. height: math.unit(24, "feet")
  40637. },
  40638. {
  40639. name: "Kaiju",
  40640. height: math.unit(240, "feet")
  40641. },
  40642. {
  40643. name: "Megamacro",
  40644. height: math.unit(8000, "feet")
  40645. },
  40646. {
  40647. name: "Continent Cracker",
  40648. height: math.unit(24e6, "feet")
  40649. },
  40650. {
  40651. name: "Earth-Eclipsing",
  40652. height: math.unit(2.4e8, "feet")
  40653. },
  40654. {
  40655. name: "Sol-Swallowing",
  40656. height: math.unit(8e10, "feet")
  40657. },
  40658. {
  40659. name: "Galaxy Gulper",
  40660. height: math.unit(8, "galaxies")
  40661. },
  40662. {
  40663. name: "Light Universal",
  40664. height: math.unit(4, "universes")
  40665. },
  40666. {
  40667. name: "Universe Atoms",
  40668. height: math.unit(1.829e9, "universes")
  40669. },
  40670. {
  40671. name: "Light Multiversal",
  40672. height: math.unit(4, "multiverses")
  40673. },
  40674. {
  40675. name: "Multiverse Atoms",
  40676. height: math.unit(1.829e9, "multiverses")
  40677. },
  40678. {
  40679. name: "Nigh-Omnipresence",
  40680. height: math.unit(8e261, "multiverses")
  40681. },
  40682. ]
  40683. ))
  40684. characterMakers.push(() => makeCharacter(
  40685. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40686. {
  40687. front: {
  40688. height: math.unit(10, "feet"),
  40689. weight: math.unit(1500, "lb"),
  40690. name: "Front",
  40691. image: {
  40692. source: "./media/characters/miles-thestia/front.svg",
  40693. extra: 1812/1727,
  40694. bottom: 86/1898
  40695. }
  40696. },
  40697. back: {
  40698. height: math.unit(10, "feet"),
  40699. weight: math.unit(1500, "lb"),
  40700. name: "Back",
  40701. image: {
  40702. source: "./media/characters/miles-thestia/back.svg",
  40703. extra: 1799/1690,
  40704. bottom: 47/1846
  40705. }
  40706. },
  40707. frontNsfw: {
  40708. height: math.unit(10, "feet"),
  40709. weight: math.unit(1500, "lb"),
  40710. name: "Front (NSFW)",
  40711. image: {
  40712. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40713. extra: 1812/1727,
  40714. bottom: 86/1898
  40715. }
  40716. },
  40717. },
  40718. [
  40719. {
  40720. name: "Mini-Macro",
  40721. height: math.unit(10, "feet"),
  40722. default: true
  40723. },
  40724. ]
  40725. ))
  40726. characterMakers.push(() => makeCharacter(
  40727. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40728. {
  40729. front: {
  40730. height: math.unit(25, "feet"),
  40731. name: "Front",
  40732. image: {
  40733. source: "./media/characters/titan-s-wulf/front.svg",
  40734. extra: 1560/1484,
  40735. bottom: 76/1636
  40736. }
  40737. },
  40738. },
  40739. [
  40740. {
  40741. name: "Smallest",
  40742. height: math.unit(25, "feet"),
  40743. default: true
  40744. },
  40745. {
  40746. name: "Normal",
  40747. height: math.unit(200, "feet")
  40748. },
  40749. {
  40750. name: "Macro",
  40751. height: math.unit(200000, "feet")
  40752. },
  40753. {
  40754. name: "Multiversal Original",
  40755. height: math.unit(10000, "multiverses")
  40756. },
  40757. ]
  40758. ))
  40759. characterMakers.push(() => makeCharacter(
  40760. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40761. {
  40762. front: {
  40763. height: math.unit(8, "feet"),
  40764. weight: math.unit(553, "lb"),
  40765. name: "Front",
  40766. image: {
  40767. source: "./media/characters/tawendeh/front.svg",
  40768. extra: 2365/2268,
  40769. bottom: 83/2448
  40770. }
  40771. },
  40772. frontClothed: {
  40773. height: math.unit(8, "feet"),
  40774. weight: math.unit(553, "lb"),
  40775. name: "Front (Clothed)",
  40776. image: {
  40777. source: "./media/characters/tawendeh/front-clothed.svg",
  40778. extra: 2365/2268,
  40779. bottom: 83/2448
  40780. }
  40781. },
  40782. back: {
  40783. height: math.unit(8, "feet"),
  40784. weight: math.unit(553, "lb"),
  40785. name: "Back",
  40786. image: {
  40787. source: "./media/characters/tawendeh/back.svg",
  40788. extra: 2397/2294,
  40789. bottom: 42/2439
  40790. }
  40791. },
  40792. },
  40793. [
  40794. {
  40795. name: "Mortal Interaction",
  40796. height: math.unit(8, "feet"),
  40797. default: true
  40798. },
  40799. {
  40800. name: "Giant",
  40801. height: math.unit(80, "feet")
  40802. },
  40803. {
  40804. name: "Macro",
  40805. height: math.unit(800, "feet")
  40806. },
  40807. {
  40808. name: "Megamacro",
  40809. height: math.unit(8000, "feet")
  40810. },
  40811. {
  40812. name: "City-Crushing",
  40813. height: math.unit(24000, "feet")
  40814. },
  40815. {
  40816. name: "Mountain-Mashing",
  40817. height: math.unit(80000, "feet")
  40818. },
  40819. {
  40820. name: "Nation Nemesis",
  40821. height: math.unit(8e6, "feet")
  40822. },
  40823. {
  40824. name: "Continent Cracker",
  40825. height: math.unit(24e6, "feet")
  40826. },
  40827. {
  40828. name: "Earth-Eclipsing",
  40829. height: math.unit(2.4e8, "feet")
  40830. },
  40831. {
  40832. name: "Gas Giant Gulper",
  40833. height: math.unit(2.4e9, "feet")
  40834. },
  40835. {
  40836. name: "Sol-Swallowing",
  40837. height: math.unit(8e10, "feet")
  40838. },
  40839. {
  40840. name: "Galaxy Gulper",
  40841. height: math.unit(8, "galaxies")
  40842. },
  40843. {
  40844. name: "Cosmos Churner",
  40845. height: math.unit(8, "universes")
  40846. },
  40847. {
  40848. name: "Omnipotent Otter",
  40849. height: math.unit(80, "universes")
  40850. },
  40851. ]
  40852. ))
  40853. characterMakers.push(() => makeCharacter(
  40854. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40855. {
  40856. front: {
  40857. height: math.unit(2.6, "meters"),
  40858. weight: math.unit(900, "kg"),
  40859. name: "Front",
  40860. image: {
  40861. source: "./media/characters/neesha/front.svg",
  40862. extra: 1803/1653,
  40863. bottom: 128/1931
  40864. }
  40865. },
  40866. },
  40867. [
  40868. {
  40869. name: "Normal",
  40870. height: math.unit(2.6, "meters"),
  40871. default: true
  40872. },
  40873. {
  40874. name: "Macro",
  40875. height: math.unit(50, "meters")
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40881. {
  40882. front: {
  40883. height: math.unit(5, "feet"),
  40884. weight: math.unit(185, "lb"),
  40885. name: "Front",
  40886. image: {
  40887. source: "./media/characters/kyera/front.svg",
  40888. extra: 1875/1790,
  40889. bottom: 96/1971
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(5, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(7 + 6/12, "feet"),
  40906. weight: math.unit(540, "lb"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/yuko/front.svg",
  40910. extra: 1282/1222,
  40911. bottom: 101/1383
  40912. }
  40913. },
  40914. frontClothed: {
  40915. height: math.unit(7 + 6/12, "feet"),
  40916. weight: math.unit(540, "lb"),
  40917. name: "Front (Clothed)",
  40918. image: {
  40919. source: "./media/characters/yuko/front-clothed.svg",
  40920. extra: 1282/1222,
  40921. bottom: 101/1383
  40922. }
  40923. },
  40924. },
  40925. [
  40926. {
  40927. name: "Normal",
  40928. height: math.unit(7 + 6/12, "feet"),
  40929. default: true
  40930. },
  40931. {
  40932. name: "Macro",
  40933. height: math.unit(26 + 9/12, "feet")
  40934. },
  40935. {
  40936. name: "Megamacro",
  40937. height: math.unit(300, "feet")
  40938. },
  40939. {
  40940. name: "Gigamacro",
  40941. height: math.unit(5000, "feet")
  40942. },
  40943. {
  40944. name: "Planetary",
  40945. height: math.unit(10000, "miles")
  40946. },
  40947. ]
  40948. ))
  40949. characterMakers.push(() => makeCharacter(
  40950. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40951. {
  40952. front: {
  40953. height: math.unit(8 + 2/12, "feet"),
  40954. weight: math.unit(600, "lb"),
  40955. name: "Front",
  40956. image: {
  40957. source: "./media/characters/deam-nitrel/front.svg",
  40958. extra: 1308/1234,
  40959. bottom: 125/1433
  40960. }
  40961. },
  40962. },
  40963. [
  40964. {
  40965. name: "Normal",
  40966. height: math.unit(8 + 2/12, "feet"),
  40967. default: true
  40968. },
  40969. ]
  40970. ))
  40971. characterMakers.push(() => makeCharacter(
  40972. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40973. {
  40974. front: {
  40975. height: math.unit(6.1, "feet"),
  40976. weight: math.unit(180, "lb"),
  40977. name: "Front",
  40978. image: {
  40979. source: "./media/characters/skyress/front.svg",
  40980. extra: 1045/915,
  40981. bottom: 28/1073
  40982. }
  40983. },
  40984. maw: {
  40985. height: math.unit(1, "feet"),
  40986. name: "Maw",
  40987. image: {
  40988. source: "./media/characters/skyress/maw.svg"
  40989. }
  40990. },
  40991. },
  40992. [
  40993. {
  40994. name: "Normal",
  40995. height: math.unit(6.1, "feet"),
  40996. default: true
  40997. },
  40998. {
  40999. name: "Macro",
  41000. height: math.unit(200, "feet")
  41001. },
  41002. ]
  41003. ))
  41004. characterMakers.push(() => makeCharacter(
  41005. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41006. {
  41007. front: {
  41008. height: math.unit(4 + 2/12, "feet"),
  41009. weight: math.unit(40, "kg"),
  41010. name: "Front",
  41011. image: {
  41012. source: "./media/characters/amethyst-jones/front.svg",
  41013. extra: 1220/1150,
  41014. bottom: 101/1321
  41015. }
  41016. },
  41017. },
  41018. [
  41019. {
  41020. name: "Normal",
  41021. height: math.unit(4 + 2/12, "feet"),
  41022. default: true
  41023. },
  41024. ]
  41025. ))
  41026. characterMakers.push(() => makeCharacter(
  41027. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41028. {
  41029. front: {
  41030. height: math.unit(1.7, "m"),
  41031. weight: math.unit(135, "lb"),
  41032. name: "Front",
  41033. image: {
  41034. source: "./media/characters/jade/front.svg",
  41035. extra: 1818/1767,
  41036. bottom: 32/1850
  41037. }
  41038. },
  41039. back: {
  41040. height: math.unit(1.7, "m"),
  41041. weight: math.unit(135, "lb"),
  41042. name: "Back",
  41043. image: {
  41044. source: "./media/characters/jade/back.svg",
  41045. extra: 1869/1809,
  41046. bottom: 35/1904
  41047. }
  41048. },
  41049. hand: {
  41050. height: math.unit(0.24, "m"),
  41051. name: "Hand",
  41052. image: {
  41053. source: "./media/characters/jade/hand.svg"
  41054. }
  41055. },
  41056. foot: {
  41057. height: math.unit(0.263, "m"),
  41058. name: "Foot",
  41059. image: {
  41060. source: "./media/characters/jade/foot.svg"
  41061. }
  41062. },
  41063. dick: {
  41064. height: math.unit(0.47, "m"),
  41065. name: "Dick",
  41066. image: {
  41067. source: "./media/characters/jade/dick.svg"
  41068. }
  41069. },
  41070. },
  41071. [
  41072. {
  41073. name: "Micro",
  41074. height: math.unit(22, "cm")
  41075. },
  41076. {
  41077. name: "Normal",
  41078. height: math.unit(1.7, "m"),
  41079. default: true
  41080. },
  41081. {
  41082. name: "Macro",
  41083. height: math.unit(152, "m")
  41084. },
  41085. ]
  41086. ))
  41087. characterMakers.push(() => makeCharacter(
  41088. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41089. {
  41090. front: {
  41091. height: math.unit(100, "miles"),
  41092. weight: math.unit(20000, "tons"),
  41093. name: "Front",
  41094. image: {
  41095. source: "./media/characters/cookie/front.svg",
  41096. extra: 1125/1070,
  41097. bottom: 30/1155
  41098. }
  41099. },
  41100. },
  41101. [
  41102. {
  41103. name: "Big",
  41104. height: math.unit(50, "feet")
  41105. },
  41106. {
  41107. name: "Macro",
  41108. height: math.unit(100, "miles"),
  41109. default: true
  41110. },
  41111. {
  41112. name: "Megamacro",
  41113. height: math.unit(90000, "miles")
  41114. },
  41115. ]
  41116. ))
  41117. characterMakers.push(() => makeCharacter(
  41118. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41119. {
  41120. front: {
  41121. height: math.unit(6, "feet"),
  41122. weight: math.unit(145, "lb"),
  41123. name: "Front",
  41124. image: {
  41125. source: "./media/characters/farzian/front.svg",
  41126. extra: 1902/1693,
  41127. bottom: 108/2010
  41128. }
  41129. },
  41130. },
  41131. [
  41132. {
  41133. name: "Macro",
  41134. height: math.unit(500, "feet"),
  41135. default: true
  41136. },
  41137. ]
  41138. ))
  41139. characterMakers.push(() => makeCharacter(
  41140. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41141. {
  41142. front: {
  41143. height: math.unit(3 + 6/12, "feet"),
  41144. weight: math.unit(50, "lb"),
  41145. name: "Front",
  41146. image: {
  41147. source: "./media/characters/kimberly-tilson/front.svg",
  41148. extra: 1400/1322,
  41149. bottom: 36/1436
  41150. }
  41151. },
  41152. back: {
  41153. height: math.unit(3 + 6/12, "feet"),
  41154. weight: math.unit(50, "lb"),
  41155. name: "Back",
  41156. image: {
  41157. source: "./media/characters/kimberly-tilson/back.svg",
  41158. extra: 1370/1307,
  41159. bottom: 20/1390
  41160. }
  41161. },
  41162. },
  41163. [
  41164. {
  41165. name: "Normal",
  41166. height: math.unit(3 + 6/12, "feet"),
  41167. default: true
  41168. },
  41169. ]
  41170. ))
  41171. characterMakers.push(() => makeCharacter(
  41172. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41173. {
  41174. front: {
  41175. height: math.unit(1148, "feet"),
  41176. weight: math.unit(34057, "lb"),
  41177. name: "Front",
  41178. image: {
  41179. source: "./media/characters/harthos/front.svg",
  41180. extra: 1391/1339,
  41181. bottom: 13/1404
  41182. }
  41183. },
  41184. },
  41185. [
  41186. {
  41187. name: "Macro",
  41188. height: math.unit(1148, "feet"),
  41189. default: true
  41190. },
  41191. ]
  41192. ))
  41193. characterMakers.push(() => makeCharacter(
  41194. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41195. {
  41196. front: {
  41197. height: math.unit(15, "feet"),
  41198. name: "Front",
  41199. image: {
  41200. source: "./media/characters/hypatia/front.svg",
  41201. extra: 1653/1591,
  41202. bottom: 79/1732
  41203. }
  41204. },
  41205. },
  41206. [
  41207. {
  41208. name: "Normal",
  41209. height: math.unit(15, "feet")
  41210. },
  41211. {
  41212. name: "Small",
  41213. height: math.unit(300, "feet")
  41214. },
  41215. {
  41216. name: "Macro",
  41217. height: math.unit(2500, "feet"),
  41218. default: true
  41219. },
  41220. {
  41221. name: "Mega Macro",
  41222. height: math.unit(1500, "miles")
  41223. },
  41224. {
  41225. name: "Giga Macro",
  41226. height: math.unit(1.5e6, "miles")
  41227. },
  41228. ]
  41229. ))
  41230. characterMakers.push(() => makeCharacter(
  41231. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41232. {
  41233. front: {
  41234. height: math.unit(6, "feet"),
  41235. weight: math.unit(200, "lb"),
  41236. name: "Front",
  41237. image: {
  41238. source: "./media/characters/wulver/front.svg",
  41239. extra: 1724/1632,
  41240. bottom: 130/1854
  41241. }
  41242. },
  41243. frontNsfw: {
  41244. height: math.unit(6, "feet"),
  41245. weight: math.unit(200, "lb"),
  41246. name: "Front (NSFW)",
  41247. image: {
  41248. source: "./media/characters/wulver/front-nsfw.svg",
  41249. extra: 1724/1632,
  41250. bottom: 130/1854
  41251. }
  41252. },
  41253. },
  41254. [
  41255. {
  41256. name: "Human-Sized",
  41257. height: math.unit(6, "feet")
  41258. },
  41259. {
  41260. name: "Normal",
  41261. height: math.unit(4, "meters"),
  41262. default: true
  41263. },
  41264. {
  41265. name: "Large",
  41266. height: math.unit(6, "m")
  41267. },
  41268. ]
  41269. ))
  41270. characterMakers.push(() => makeCharacter(
  41271. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41272. {
  41273. front: {
  41274. height: math.unit(7, "feet"),
  41275. name: "Front",
  41276. image: {
  41277. source: "./media/characters/maru/front.svg",
  41278. extra: 1595/1570,
  41279. bottom: 0/1595
  41280. }
  41281. },
  41282. },
  41283. [
  41284. {
  41285. name: "Normal",
  41286. height: math.unit(7, "feet"),
  41287. default: true
  41288. },
  41289. {
  41290. name: "Macro",
  41291. height: math.unit(700, "feet")
  41292. },
  41293. {
  41294. name: "Mega Macro",
  41295. height: math.unit(25, "miles")
  41296. },
  41297. ]
  41298. ))
  41299. characterMakers.push(() => makeCharacter(
  41300. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41301. {
  41302. front: {
  41303. height: math.unit(6, "feet"),
  41304. weight: math.unit(170, "lb"),
  41305. name: "Front",
  41306. image: {
  41307. source: "./media/characters/xenon/front.svg",
  41308. extra: 1376/1305,
  41309. bottom: 56/1432
  41310. }
  41311. },
  41312. back: {
  41313. height: math.unit(6, "feet"),
  41314. weight: math.unit(170, "lb"),
  41315. name: "Back",
  41316. image: {
  41317. source: "./media/characters/xenon/back.svg",
  41318. extra: 1328/1259,
  41319. bottom: 95/1423
  41320. }
  41321. },
  41322. maw: {
  41323. height: math.unit(0.52, "feet"),
  41324. name: "Maw",
  41325. image: {
  41326. source: "./media/characters/xenon/maw.svg"
  41327. }
  41328. },
  41329. hand: {
  41330. height: math.unit(0.82, "feet"),
  41331. name: "Hand",
  41332. image: {
  41333. source: "./media/characters/xenon/hand.svg"
  41334. }
  41335. },
  41336. foot: {
  41337. height: math.unit(1.13, "feet"),
  41338. name: "Foot",
  41339. image: {
  41340. source: "./media/characters/xenon/foot.svg"
  41341. }
  41342. },
  41343. },
  41344. [
  41345. {
  41346. name: "Micro",
  41347. height: math.unit(0.8, "inches")
  41348. },
  41349. {
  41350. name: "Normal",
  41351. height: math.unit(6, "feet")
  41352. },
  41353. {
  41354. name: "Macro",
  41355. height: math.unit(50, "feet"),
  41356. default: true
  41357. },
  41358. {
  41359. name: "Macro+",
  41360. height: math.unit(250, "feet")
  41361. },
  41362. {
  41363. name: "Megamacro",
  41364. height: math.unit(1500, "feet")
  41365. },
  41366. ]
  41367. ))
  41368. characterMakers.push(() => makeCharacter(
  41369. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41370. {
  41371. front: {
  41372. height: math.unit(7 + 5/12, "feet"),
  41373. name: "Front",
  41374. image: {
  41375. source: "./media/characters/zane/front.svg",
  41376. extra: 1260/1203,
  41377. bottom: 94/1354
  41378. }
  41379. },
  41380. back: {
  41381. height: math.unit(5.05, "feet"),
  41382. name: "Back",
  41383. image: {
  41384. source: "./media/characters/zane/back.svg",
  41385. extra: 893/829,
  41386. bottom: 30/923
  41387. }
  41388. },
  41389. werewolf: {
  41390. height: math.unit(11, "feet"),
  41391. name: "Werewolf",
  41392. image: {
  41393. source: "./media/characters/zane/werewolf.svg",
  41394. extra: 1383/1323,
  41395. bottom: 89/1472
  41396. }
  41397. },
  41398. foot: {
  41399. height: math.unit(1.46, "feet"),
  41400. name: "Foot",
  41401. image: {
  41402. source: "./media/characters/zane/foot.svg"
  41403. }
  41404. },
  41405. footFront: {
  41406. height: math.unit(0.784, "feet"),
  41407. name: "Foot (Front)",
  41408. image: {
  41409. source: "./media/characters/zane/foot-front.svg"
  41410. }
  41411. },
  41412. dick: {
  41413. height: math.unit(1.95, "feet"),
  41414. name: "Dick",
  41415. image: {
  41416. source: "./media/characters/zane/dick.svg"
  41417. }
  41418. },
  41419. dickWerewolf: {
  41420. height: math.unit(3.77, "feet"),
  41421. name: "Dick (Werewolf)",
  41422. image: {
  41423. source: "./media/characters/zane/dick.svg"
  41424. }
  41425. },
  41426. },
  41427. [
  41428. {
  41429. name: "Normal",
  41430. height: math.unit(7 + 5/12, "feet"),
  41431. default: true
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(6 + 2/12, "feet"),
  41440. weight: math.unit(284, "lb"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/benni-desparque/front.svg",
  41444. extra: 1353/1126,
  41445. bottom: 69/1422
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Civilian",
  41452. height: math.unit(6 + 2/12, "feet")
  41453. },
  41454. {
  41455. name: "Normal",
  41456. height: math.unit(98, "feet"),
  41457. default: true
  41458. },
  41459. {
  41460. name: "Kaiju Fighter",
  41461. height: math.unit(268, "feet")
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41467. {
  41468. front: {
  41469. height: math.unit(5, "feet"),
  41470. weight: math.unit(105, "lb"),
  41471. name: "Front",
  41472. image: {
  41473. source: "./media/characters/maxine/front.svg",
  41474. extra: 1386/1250,
  41475. bottom: 71/1457
  41476. }
  41477. },
  41478. },
  41479. [
  41480. {
  41481. name: "Normal",
  41482. height: math.unit(5, "feet"),
  41483. default: true
  41484. },
  41485. ]
  41486. ))
  41487. characterMakers.push(() => makeCharacter(
  41488. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41489. {
  41490. front: {
  41491. height: math.unit(11 + 7/12, "feet"),
  41492. weight: math.unit(9576, "lb"),
  41493. name: "Front",
  41494. image: {
  41495. source: "./media/characters/scaly/front.svg",
  41496. extra: 888/867,
  41497. bottom: 36/924
  41498. }
  41499. },
  41500. },
  41501. [
  41502. {
  41503. name: "Normal",
  41504. height: math.unit(11 + 7/12, "feet"),
  41505. default: true
  41506. },
  41507. ]
  41508. ))
  41509. characterMakers.push(() => makeCharacter(
  41510. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41511. {
  41512. front: {
  41513. height: math.unit(6 + 3/12, "feet"),
  41514. name: "Front",
  41515. image: {
  41516. source: "./media/characters/saelria/front.svg",
  41517. extra: 1243/1138,
  41518. bottom: 46/1289
  41519. }
  41520. },
  41521. },
  41522. [
  41523. {
  41524. name: "Micro",
  41525. height: math.unit(6, "inches"),
  41526. },
  41527. {
  41528. name: "Normal",
  41529. height: math.unit(6 + 3/12, "feet"),
  41530. default: true
  41531. },
  41532. {
  41533. name: "Macro",
  41534. height: math.unit(25, "feet")
  41535. },
  41536. ]
  41537. ))
  41538. characterMakers.push(() => makeCharacter(
  41539. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41540. {
  41541. front: {
  41542. height: math.unit(80, "meters"),
  41543. weight: math.unit(7000, "tonnes"),
  41544. name: "Front",
  41545. image: {
  41546. source: "./media/characters/tef/front.svg",
  41547. extra: 2036/1991,
  41548. bottom: 54/2090
  41549. }
  41550. },
  41551. back: {
  41552. height: math.unit(80, "meters"),
  41553. weight: math.unit(7000, "tonnes"),
  41554. name: "Back",
  41555. image: {
  41556. source: "./media/characters/tef/back.svg",
  41557. extra: 2036/1991,
  41558. bottom: 54/2090
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Macro",
  41565. height: math.unit(80, "meters"),
  41566. default: true
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41572. {
  41573. front: {
  41574. height: math.unit(13, "feet"),
  41575. weight: math.unit(6, "tons"),
  41576. name: "Front",
  41577. image: {
  41578. source: "./media/characters/rover/front.svg",
  41579. extra: 1233/1156,
  41580. bottom: 50/1283
  41581. }
  41582. },
  41583. back: {
  41584. height: math.unit(13, "feet"),
  41585. weight: math.unit(6, "tons"),
  41586. name: "Back",
  41587. image: {
  41588. source: "./media/characters/rover/back.svg",
  41589. extra: 1327/1258,
  41590. bottom: 39/1366
  41591. }
  41592. },
  41593. },
  41594. [
  41595. {
  41596. name: "Normal",
  41597. height: math.unit(13, "feet"),
  41598. default: true
  41599. },
  41600. {
  41601. name: "Macro",
  41602. height: math.unit(1300, "feet")
  41603. },
  41604. {
  41605. name: "Megamacro",
  41606. height: math.unit(1300, "miles")
  41607. },
  41608. {
  41609. name: "Gigamacro",
  41610. height: math.unit(1300000, "miles")
  41611. },
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41616. {
  41617. front: {
  41618. height: math.unit(6, "feet"),
  41619. weight: math.unit(150, "lb"),
  41620. name: "Front",
  41621. image: {
  41622. source: "./media/characters/ariz/front.svg",
  41623. extra: 1401/1346,
  41624. bottom: 5/1406
  41625. }
  41626. },
  41627. },
  41628. [
  41629. {
  41630. name: "Normal",
  41631. height: math.unit(10, "feet"),
  41632. default: true
  41633. },
  41634. ]
  41635. ))
  41636. characterMakers.push(() => makeCharacter(
  41637. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41638. {
  41639. front: {
  41640. height: math.unit(6, "feet"),
  41641. weight: math.unit(140, "lb"),
  41642. name: "Front",
  41643. image: {
  41644. source: "./media/characters/sigrun/front.svg",
  41645. extra: 1418/1359,
  41646. bottom: 27/1445
  41647. }
  41648. },
  41649. },
  41650. [
  41651. {
  41652. name: "Macro",
  41653. height: math.unit(35, "feet"),
  41654. default: true
  41655. },
  41656. ]
  41657. ))
  41658. characterMakers.push(() => makeCharacter(
  41659. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41660. {
  41661. front: {
  41662. height: math.unit(6, "feet"),
  41663. weight: math.unit(150, "lb"),
  41664. name: "Front",
  41665. image: {
  41666. source: "./media/characters/numin/front.svg",
  41667. extra: 1433/1388,
  41668. bottom: 12/1445
  41669. }
  41670. },
  41671. },
  41672. [
  41673. {
  41674. name: "Macro",
  41675. height: math.unit(21.5, "km"),
  41676. default: true
  41677. },
  41678. ]
  41679. ))
  41680. characterMakers.push(() => makeCharacter(
  41681. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41682. {
  41683. front: {
  41684. height: math.unit(6, "feet"),
  41685. weight: math.unit(463, "lb"),
  41686. name: "Front",
  41687. image: {
  41688. source: "./media/characters/melwa/front.svg",
  41689. extra: 1307/1248,
  41690. bottom: 93/1400
  41691. }
  41692. },
  41693. },
  41694. [
  41695. {
  41696. name: "Macro",
  41697. height: math.unit(50, "meters"),
  41698. default: true
  41699. },
  41700. ]
  41701. ))
  41702. characterMakers.push(() => makeCharacter(
  41703. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41704. {
  41705. front: {
  41706. height: math.unit(325, "feet"),
  41707. name: "Front",
  41708. image: {
  41709. source: "./media/characters/zorkaiju/front.svg",
  41710. extra: 1955/1814,
  41711. bottom: 40/1995
  41712. }
  41713. },
  41714. frontExtended: {
  41715. height: math.unit(325, "feet"),
  41716. name: "Front (Extended)",
  41717. image: {
  41718. source: "./media/characters/zorkaiju/front-extended.svg",
  41719. extra: 1955/1814,
  41720. bottom: 40/1995
  41721. }
  41722. },
  41723. side: {
  41724. height: math.unit(325, "feet"),
  41725. name: "Side",
  41726. image: {
  41727. source: "./media/characters/zorkaiju/side.svg",
  41728. extra: 1495/1396,
  41729. bottom: 17/1512
  41730. }
  41731. },
  41732. sideExtended: {
  41733. height: math.unit(325, "feet"),
  41734. name: "Side (Extended)",
  41735. image: {
  41736. source: "./media/characters/zorkaiju/side-extended.svg",
  41737. extra: 1495/1396,
  41738. bottom: 17/1512
  41739. }
  41740. },
  41741. back: {
  41742. height: math.unit(325, "feet"),
  41743. name: "Back",
  41744. image: {
  41745. source: "./media/characters/zorkaiju/back.svg",
  41746. extra: 1959/1821,
  41747. bottom: 31/1990
  41748. }
  41749. },
  41750. backExtended: {
  41751. height: math.unit(325, "feet"),
  41752. name: "Back (Extended)",
  41753. image: {
  41754. source: "./media/characters/zorkaiju/back-extended.svg",
  41755. extra: 1959/1821,
  41756. bottom: 31/1990
  41757. }
  41758. },
  41759. hand: {
  41760. height: math.unit(58.4, "feet"),
  41761. name: "Hand",
  41762. image: {
  41763. source: "./media/characters/zorkaiju/hand.svg"
  41764. }
  41765. },
  41766. handExtended: {
  41767. height: math.unit(61.4, "feet"),
  41768. name: "Hand (Extended)",
  41769. image: {
  41770. source: "./media/characters/zorkaiju/hand-extended.svg"
  41771. }
  41772. },
  41773. foot: {
  41774. height: math.unit(95, "feet"),
  41775. name: "Foot",
  41776. image: {
  41777. source: "./media/characters/zorkaiju/foot.svg"
  41778. }
  41779. },
  41780. leftArm: {
  41781. height: math.unit(59, "feet"),
  41782. name: "Left Arm",
  41783. image: {
  41784. source: "./media/characters/zorkaiju/left-arm.svg"
  41785. }
  41786. },
  41787. rightArm: {
  41788. height: math.unit(59, "feet"),
  41789. name: "Right Arm",
  41790. image: {
  41791. source: "./media/characters/zorkaiju/right-arm.svg"
  41792. }
  41793. },
  41794. leftArmExtended: {
  41795. height: math.unit(59 * 1.033546, "feet"),
  41796. name: "Left Arm (Extended)",
  41797. image: {
  41798. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41799. }
  41800. },
  41801. rightArmExtended: {
  41802. height: math.unit(59 * 1.0496, "feet"),
  41803. name: "Right Arm (Extended)",
  41804. image: {
  41805. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41806. }
  41807. },
  41808. tail: {
  41809. height: math.unit(104, "feet"),
  41810. name: "Tail",
  41811. image: {
  41812. source: "./media/characters/zorkaiju/tail.svg"
  41813. }
  41814. },
  41815. tailExtended: {
  41816. height: math.unit(104, "feet"),
  41817. name: "Tail (Extended)",
  41818. image: {
  41819. source: "./media/characters/zorkaiju/tail-extended.svg"
  41820. }
  41821. },
  41822. tailBottom: {
  41823. height: math.unit(104, "feet"),
  41824. name: "Tail Bottom",
  41825. image: {
  41826. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41827. }
  41828. },
  41829. crystal: {
  41830. height: math.unit(27.54, "feet"),
  41831. name: "Crystal",
  41832. image: {
  41833. source: "./media/characters/zorkaiju/crystal.svg"
  41834. }
  41835. },
  41836. },
  41837. [
  41838. {
  41839. name: "Kaiju",
  41840. height: math.unit(325, "feet"),
  41841. default: true
  41842. },
  41843. ]
  41844. ))
  41845. characterMakers.push(() => makeCharacter(
  41846. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41847. {
  41848. front: {
  41849. height: math.unit(6 + 1/12, "feet"),
  41850. weight: math.unit(115, "lb"),
  41851. name: "Front",
  41852. image: {
  41853. source: "./media/characters/bailey-belfry/front.svg",
  41854. extra: 1240/1121,
  41855. bottom: 101/1341
  41856. }
  41857. },
  41858. },
  41859. [
  41860. {
  41861. name: "Normal",
  41862. height: math.unit(6 + 1/12, "feet"),
  41863. default: true
  41864. },
  41865. ]
  41866. ))
  41867. characterMakers.push(() => makeCharacter(
  41868. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41869. {
  41870. side: {
  41871. height: math.unit(4, "meters"),
  41872. weight: math.unit(250, "kg"),
  41873. name: "Side",
  41874. image: {
  41875. source: "./media/characters/blacky/side.svg",
  41876. extra: 1027/919,
  41877. bottom: 43/1070
  41878. }
  41879. },
  41880. maw: {
  41881. height: math.unit(1, "meters"),
  41882. name: "Maw",
  41883. image: {
  41884. source: "./media/characters/blacky/maw.svg"
  41885. }
  41886. },
  41887. paw: {
  41888. height: math.unit(1, "meters"),
  41889. name: "Paw",
  41890. image: {
  41891. source: "./media/characters/blacky/paw.svg"
  41892. }
  41893. },
  41894. },
  41895. [
  41896. {
  41897. name: "Normal",
  41898. height: math.unit(4, "meters"),
  41899. default: true
  41900. },
  41901. ]
  41902. ))
  41903. characterMakers.push(() => makeCharacter(
  41904. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41905. {
  41906. front: {
  41907. height: math.unit(170, "cm"),
  41908. weight: math.unit(66, "kg"),
  41909. name: "Front",
  41910. image: {
  41911. source: "./media/characters/thux-ei/front.svg",
  41912. extra: 1109/1011,
  41913. bottom: 8/1117
  41914. }
  41915. },
  41916. },
  41917. [
  41918. {
  41919. name: "Normal",
  41920. height: math.unit(170, "cm"),
  41921. default: true
  41922. },
  41923. ]
  41924. ))
  41925. characterMakers.push(() => makeCharacter(
  41926. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41927. {
  41928. front: {
  41929. height: math.unit(5, "feet"),
  41930. weight: math.unit(120, "lb"),
  41931. name: "Front",
  41932. image: {
  41933. source: "./media/characters/roxanne-voltaire/front.svg",
  41934. extra: 1901/1779,
  41935. bottom: 53/1954
  41936. }
  41937. },
  41938. },
  41939. [
  41940. {
  41941. name: "Normal",
  41942. height: math.unit(5, "feet"),
  41943. default: true
  41944. },
  41945. {
  41946. name: "Giant",
  41947. height: math.unit(50, "feet")
  41948. },
  41949. {
  41950. name: "Titan",
  41951. height: math.unit(500, "feet")
  41952. },
  41953. {
  41954. name: "Macro",
  41955. height: math.unit(5000, "feet")
  41956. },
  41957. {
  41958. name: "Megamacro",
  41959. height: math.unit(50000, "feet")
  41960. },
  41961. {
  41962. name: "Gigamacro",
  41963. height: math.unit(500000, "feet")
  41964. },
  41965. {
  41966. name: "Teramacro",
  41967. height: math.unit(5e6, "feet")
  41968. },
  41969. ]
  41970. ))
  41971. characterMakers.push(() => makeCharacter(
  41972. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41973. {
  41974. front: {
  41975. height: math.unit(6 + 2/12, "feet"),
  41976. name: "Front",
  41977. image: {
  41978. source: "./media/characters/squeaks/front.svg",
  41979. extra: 1823/1768,
  41980. bottom: 138/1961
  41981. }
  41982. },
  41983. },
  41984. [
  41985. {
  41986. name: "Micro",
  41987. height: math.unit(0.5, "inches")
  41988. },
  41989. {
  41990. name: "Normal",
  41991. height: math.unit(6 + 2/12, "feet"),
  41992. default: true
  41993. },
  41994. {
  41995. name: "Macro",
  41996. height: math.unit(600, "feet")
  41997. },
  41998. ]
  41999. ))
  42000. characterMakers.push(() => makeCharacter(
  42001. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42002. {
  42003. front: {
  42004. height: math.unit(1.72, "meters"),
  42005. name: "Front",
  42006. image: {
  42007. source: "./media/characters/archinger/front.svg",
  42008. extra: 1861/1675,
  42009. bottom: 125/1986
  42010. }
  42011. },
  42012. back: {
  42013. height: math.unit(1.72, "meters"),
  42014. name: "Back",
  42015. image: {
  42016. source: "./media/characters/archinger/back.svg",
  42017. extra: 1844/1701,
  42018. bottom: 104/1948
  42019. }
  42020. },
  42021. cock: {
  42022. height: math.unit(0.59, "feet"),
  42023. name: "Cock",
  42024. image: {
  42025. source: "./media/characters/archinger/cock.svg"
  42026. }
  42027. },
  42028. },
  42029. [
  42030. {
  42031. name: "Normal",
  42032. height: math.unit(1.72, "meters"),
  42033. default: true
  42034. },
  42035. {
  42036. name: "Macro",
  42037. height: math.unit(84, "meters")
  42038. },
  42039. {
  42040. name: "Macro+",
  42041. height: math.unit(112, "meters")
  42042. },
  42043. {
  42044. name: "Macro++",
  42045. height: math.unit(960, "meters")
  42046. },
  42047. {
  42048. name: "Macro+++",
  42049. height: math.unit(4, "km")
  42050. },
  42051. {
  42052. name: "Macro++++",
  42053. height: math.unit(48, "km")
  42054. },
  42055. {
  42056. name: "Macro+++++",
  42057. height: math.unit(4500, "km")
  42058. },
  42059. ]
  42060. ))
  42061. characterMakers.push(() => makeCharacter(
  42062. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42063. {
  42064. front: {
  42065. height: math.unit(5 + 5/12, "feet"),
  42066. name: "Front",
  42067. image: {
  42068. source: "./media/characters/alsnapz/front.svg",
  42069. extra: 1157/1065,
  42070. bottom: 42/1199
  42071. }
  42072. },
  42073. },
  42074. [
  42075. {
  42076. name: "Normal",
  42077. height: math.unit(5 + 5/12, "feet"),
  42078. default: true
  42079. },
  42080. ]
  42081. ))
  42082. characterMakers.push(() => makeCharacter(
  42083. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42084. {
  42085. side: {
  42086. height: math.unit(3.2, "earths"),
  42087. name: "Side",
  42088. image: {
  42089. source: "./media/characters/mag/side.svg",
  42090. extra: 1331/1008,
  42091. bottom: 52/1383
  42092. }
  42093. },
  42094. wing: {
  42095. height: math.unit(1.94, "earths"),
  42096. name: "Wing",
  42097. image: {
  42098. source: "./media/characters/mag/wing.svg"
  42099. }
  42100. },
  42101. dick: {
  42102. height: math.unit(1.8, "earths"),
  42103. name: "Dick",
  42104. image: {
  42105. source: "./media/characters/mag/dick.svg"
  42106. }
  42107. },
  42108. ass: {
  42109. height: math.unit(1.33, "earths"),
  42110. name: "Ass",
  42111. image: {
  42112. source: "./media/characters/mag/ass.svg"
  42113. }
  42114. },
  42115. head: {
  42116. height: math.unit(1.1, "earths"),
  42117. name: "Head",
  42118. image: {
  42119. source: "./media/characters/mag/head.svg"
  42120. }
  42121. },
  42122. maw: {
  42123. height: math.unit(1.62, "earths"),
  42124. name: "Maw",
  42125. image: {
  42126. source: "./media/characters/mag/maw.svg"
  42127. }
  42128. },
  42129. },
  42130. [
  42131. {
  42132. name: "Small",
  42133. height: math.unit(162, "feet")
  42134. },
  42135. {
  42136. name: "Normal",
  42137. height: math.unit(3.2, "earths"),
  42138. default: true
  42139. },
  42140. ]
  42141. ))
  42142. characterMakers.push(() => makeCharacter(
  42143. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42144. {
  42145. front: {
  42146. height: math.unit(512, "feet"),
  42147. weight: math.unit(63509, "tonnes"),
  42148. name: "Front",
  42149. image: {
  42150. source: "./media/characters/vorrel-harroc/front.svg",
  42151. extra: 1075/1063,
  42152. bottom: 62/1137
  42153. }
  42154. },
  42155. },
  42156. [
  42157. {
  42158. name: "Normal",
  42159. height: math.unit(10, "feet")
  42160. },
  42161. {
  42162. name: "Macro",
  42163. height: math.unit(512, "feet"),
  42164. default: true
  42165. },
  42166. {
  42167. name: "Megamacro",
  42168. height: math.unit(256, "miles")
  42169. },
  42170. {
  42171. name: "Gigamacro",
  42172. height: math.unit(4096, "miles")
  42173. },
  42174. ]
  42175. ))
  42176. characterMakers.push(() => makeCharacter(
  42177. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42178. {
  42179. side: {
  42180. height: math.unit(50, "feet"),
  42181. name: "Side",
  42182. image: {
  42183. source: "./media/characters/froimar/side.svg",
  42184. extra: 855/638,
  42185. bottom: 99/954
  42186. }
  42187. },
  42188. },
  42189. [
  42190. {
  42191. name: "Macro",
  42192. height: math.unit(50, "feet"),
  42193. default: true
  42194. },
  42195. ]
  42196. ))
  42197. characterMakers.push(() => makeCharacter(
  42198. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42199. {
  42200. front: {
  42201. height: math.unit(210, "miles"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/timothy/front.svg",
  42205. extra: 1007/943,
  42206. bottom: 62/1069
  42207. }
  42208. },
  42209. frontSkirt: {
  42210. height: math.unit(210, "miles"),
  42211. name: "Front (Skirt)",
  42212. image: {
  42213. source: "./media/characters/timothy/front-skirt.svg",
  42214. extra: 1007/943,
  42215. bottom: 62/1069
  42216. }
  42217. },
  42218. frontCoat: {
  42219. height: math.unit(210, "miles"),
  42220. name: "Front (Coat)",
  42221. image: {
  42222. source: "./media/characters/timothy/front-coat.svg",
  42223. extra: 1007/943,
  42224. bottom: 62/1069
  42225. }
  42226. },
  42227. },
  42228. [
  42229. {
  42230. name: "Macro",
  42231. height: math.unit(210, "miles"),
  42232. default: true
  42233. },
  42234. {
  42235. name: "Megamacro",
  42236. height: math.unit(210000, "miles")
  42237. },
  42238. ]
  42239. ))
  42240. characterMakers.push(() => makeCharacter(
  42241. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42242. {
  42243. front: {
  42244. height: math.unit(188, "feet"),
  42245. name: "Front",
  42246. image: {
  42247. source: "./media/characters/pyotr/front.svg",
  42248. extra: 1912/1826,
  42249. bottom: 18/1930
  42250. }
  42251. },
  42252. },
  42253. [
  42254. {
  42255. name: "Macro",
  42256. height: math.unit(188, "feet"),
  42257. default: true
  42258. },
  42259. {
  42260. name: "Megamacro",
  42261. height: math.unit(8, "miles")
  42262. },
  42263. ]
  42264. ))
  42265. characterMakers.push(() => makeCharacter(
  42266. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42267. {
  42268. side: {
  42269. height: math.unit(10, "feet"),
  42270. weight: math.unit(4500, "lb"),
  42271. name: "Side",
  42272. image: {
  42273. source: "./media/characters/ackart/side.svg",
  42274. extra: 1776/1668,
  42275. bottom: 116/1892
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Normal",
  42282. height: math.unit(10, "feet"),
  42283. default: true
  42284. },
  42285. ]
  42286. ))
  42287. characterMakers.push(() => makeCharacter(
  42288. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42289. {
  42290. side: {
  42291. height: math.unit(21, "feet"),
  42292. name: "Side",
  42293. image: {
  42294. source: "./media/characters/nolow/side.svg",
  42295. extra: 1484/1434,
  42296. bottom: 85/1569
  42297. }
  42298. },
  42299. sideErect: {
  42300. height: math.unit(21, "feet"),
  42301. name: "Side-erect",
  42302. image: {
  42303. source: "./media/characters/nolow/side-erect.svg",
  42304. extra: 1484/1434,
  42305. bottom: 85/1569
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Regular",
  42312. height: math.unit(12, "feet")
  42313. },
  42314. {
  42315. name: "Big Chee",
  42316. height: math.unit(21, "feet"),
  42317. default: true
  42318. },
  42319. ]
  42320. ))
  42321. characterMakers.push(() => makeCharacter(
  42322. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42323. {
  42324. front: {
  42325. height: math.unit(7, "feet"),
  42326. weight: math.unit(250, "lb"),
  42327. name: "Front",
  42328. image: {
  42329. source: "./media/characters/nines/front.svg",
  42330. extra: 1741/1607,
  42331. bottom: 41/1782
  42332. }
  42333. },
  42334. side: {
  42335. height: math.unit(7, "feet"),
  42336. weight: math.unit(250, "lb"),
  42337. name: "Side",
  42338. image: {
  42339. source: "./media/characters/nines/side.svg",
  42340. extra: 1854/1735,
  42341. bottom: 93/1947
  42342. }
  42343. },
  42344. back: {
  42345. height: math.unit(7, "feet"),
  42346. weight: math.unit(250, "lb"),
  42347. name: "Back",
  42348. image: {
  42349. source: "./media/characters/nines/back.svg",
  42350. extra: 1748/1615,
  42351. bottom: 20/1768
  42352. }
  42353. },
  42354. },
  42355. [
  42356. {
  42357. name: "Megamacro",
  42358. height: math.unit(99, "km"),
  42359. default: true
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(5 + 10/12, "feet"),
  42368. weight: math.unit(210, "lb"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/zenith/front.svg",
  42372. extra: 1531/1452,
  42373. bottom: 198/1729
  42374. }
  42375. },
  42376. back: {
  42377. height: math.unit(5 + 10/12, "feet"),
  42378. weight: math.unit(210, "lb"),
  42379. name: "Back",
  42380. image: {
  42381. source: "./media/characters/zenith/back.svg",
  42382. extra: 1571/1487,
  42383. bottom: 75/1646
  42384. }
  42385. },
  42386. },
  42387. [
  42388. {
  42389. name: "Normal",
  42390. height: math.unit(5 + 10/12, "feet"),
  42391. default: true
  42392. }
  42393. ]
  42394. ))
  42395. characterMakers.push(() => makeCharacter(
  42396. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42397. {
  42398. front: {
  42399. height: math.unit(4, "feet"),
  42400. weight: math.unit(60, "lb"),
  42401. name: "Front",
  42402. image: {
  42403. source: "./media/characters/jasper/front.svg",
  42404. extra: 1450/1379,
  42405. bottom: 19/1469
  42406. }
  42407. },
  42408. },
  42409. [
  42410. {
  42411. name: "Normal",
  42412. height: math.unit(4, "feet"),
  42413. default: true
  42414. },
  42415. ]
  42416. ))
  42417. characterMakers.push(() => makeCharacter(
  42418. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42419. {
  42420. front: {
  42421. height: math.unit(6 + 5/12, "feet"),
  42422. weight: math.unit(290, "lb"),
  42423. name: "Front",
  42424. image: {
  42425. source: "./media/characters/tiberius-thyben/front.svg",
  42426. extra: 757/739,
  42427. bottom: 39/796
  42428. }
  42429. },
  42430. },
  42431. [
  42432. {
  42433. name: "Micro",
  42434. height: math.unit(1.5, "inches")
  42435. },
  42436. {
  42437. name: "Normal",
  42438. height: math.unit(6 + 5/12, "feet"),
  42439. default: true
  42440. },
  42441. {
  42442. name: "Macro",
  42443. height: math.unit(300, "feet")
  42444. },
  42445. ]
  42446. ))
  42447. characterMakers.push(() => makeCharacter(
  42448. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42449. {
  42450. front: {
  42451. height: math.unit(5 + 6/12, "feet"),
  42452. weight: math.unit(60, "kg"),
  42453. name: "Front",
  42454. image: {
  42455. source: "./media/characters/sabre/front.svg",
  42456. extra: 738/671,
  42457. bottom: 27/765
  42458. }
  42459. },
  42460. },
  42461. [
  42462. {
  42463. name: "Teeny",
  42464. height: math.unit(2, "inches")
  42465. },
  42466. {
  42467. name: "Smol",
  42468. height: math.unit(8, "inches")
  42469. },
  42470. {
  42471. name: "Normal",
  42472. height: math.unit(5 + 6/12, "feet"),
  42473. default: true
  42474. },
  42475. {
  42476. name: "Mini-Macro",
  42477. height: math.unit(15, "feet")
  42478. },
  42479. {
  42480. name: "Macro",
  42481. height: math.unit(50, "feet")
  42482. },
  42483. ]
  42484. ))
  42485. characterMakers.push(() => makeCharacter(
  42486. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42487. {
  42488. front: {
  42489. height: math.unit(6 + 4/12, "feet"),
  42490. weight: math.unit(170, "lb"),
  42491. name: "Front",
  42492. image: {
  42493. source: "./media/characters/charlie/front.svg",
  42494. extra: 1348/1228,
  42495. bottom: 15/1363
  42496. }
  42497. },
  42498. },
  42499. [
  42500. {
  42501. name: "Macro",
  42502. height: math.unit(1700, "meters"),
  42503. default: true
  42504. },
  42505. {
  42506. name: "MegaMacro",
  42507. height: math.unit(20400, "meters")
  42508. },
  42509. ]
  42510. ))
  42511. characterMakers.push(() => makeCharacter(
  42512. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42513. {
  42514. front: {
  42515. height: math.unit(6 + 3/12, "feet"),
  42516. weight: math.unit(185, "lb"),
  42517. name: "Front",
  42518. image: {
  42519. source: "./media/characters/susan-grant/front.svg",
  42520. extra: 1351/1327,
  42521. bottom: 26/1377
  42522. }
  42523. },
  42524. },
  42525. [
  42526. {
  42527. name: "Normal",
  42528. height: math.unit(6 + 3/12, "feet"),
  42529. default: true
  42530. },
  42531. {
  42532. name: "Macro",
  42533. height: math.unit(225, "feet")
  42534. },
  42535. {
  42536. name: "Macro+",
  42537. height: math.unit(900, "feet")
  42538. },
  42539. {
  42540. name: "MegaMacro",
  42541. height: math.unit(14400, "feet")
  42542. },
  42543. ]
  42544. ))
  42545. characterMakers.push(() => makeCharacter(
  42546. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42547. {
  42548. front: {
  42549. height: math.unit(5 + 4/12, "feet"),
  42550. weight: math.unit(110, "lb"),
  42551. name: "Front",
  42552. image: {
  42553. source: "./media/characters/axel-isanov/front.svg",
  42554. extra: 1096/1065,
  42555. bottom: 13/1109
  42556. }
  42557. },
  42558. },
  42559. [
  42560. {
  42561. name: "Normal",
  42562. height: math.unit(5 + 4/12, "feet"),
  42563. default: true
  42564. },
  42565. ]
  42566. ))
  42567. characterMakers.push(() => makeCharacter(
  42568. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42569. {
  42570. front: {
  42571. height: math.unit(9, "feet"),
  42572. weight: math.unit(467, "lb"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/necahual/front.svg",
  42576. extra: 920/873,
  42577. bottom: 26/946
  42578. }
  42579. },
  42580. back: {
  42581. height: math.unit(9, "feet"),
  42582. weight: math.unit(467, "lb"),
  42583. name: "Back",
  42584. image: {
  42585. source: "./media/characters/necahual/back.svg",
  42586. extra: 930/884,
  42587. bottom: 16/946
  42588. }
  42589. },
  42590. frontUnderwear: {
  42591. height: math.unit(9, "feet"),
  42592. weight: math.unit(467, "lb"),
  42593. name: "Front (Underwear)",
  42594. image: {
  42595. source: "./media/characters/necahual/front-underwear.svg",
  42596. extra: 920/873,
  42597. bottom: 26/946
  42598. }
  42599. },
  42600. frontDressed: {
  42601. height: math.unit(9, "feet"),
  42602. weight: math.unit(467, "lb"),
  42603. name: "Front (Dressed)",
  42604. image: {
  42605. source: "./media/characters/necahual/front-dressed.svg",
  42606. extra: 920/873,
  42607. bottom: 26/946
  42608. }
  42609. },
  42610. },
  42611. [
  42612. {
  42613. name: "Comprsesed",
  42614. height: math.unit(9, "feet")
  42615. },
  42616. {
  42617. name: "Natural",
  42618. height: math.unit(15, "feet"),
  42619. default: true
  42620. },
  42621. {
  42622. name: "Boosted",
  42623. height: math.unit(50, "feet")
  42624. },
  42625. {
  42626. name: "Boosted+",
  42627. height: math.unit(150, "feet")
  42628. },
  42629. {
  42630. name: "Max",
  42631. height: math.unit(500, "feet")
  42632. },
  42633. ]
  42634. ))
  42635. characterMakers.push(() => makeCharacter(
  42636. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42637. {
  42638. front: {
  42639. height: math.unit(22 + 1/12, "feet"),
  42640. weight: math.unit(3200, "lb"),
  42641. name: "Front",
  42642. image: {
  42643. source: "./media/characters/theo-acacia/front.svg",
  42644. extra: 1796/1741,
  42645. bottom: 83/1879
  42646. }
  42647. },
  42648. frontUnderwear: {
  42649. height: math.unit(22 + 1/12, "feet"),
  42650. weight: math.unit(3200, "lb"),
  42651. name: "Front (Underwear)",
  42652. image: {
  42653. source: "./media/characters/theo-acacia/front-underwear.svg",
  42654. extra: 1796/1741,
  42655. bottom: 83/1879
  42656. }
  42657. },
  42658. frontNude: {
  42659. height: math.unit(22 + 1/12, "feet"),
  42660. weight: math.unit(3200, "lb"),
  42661. name: "Front (Nude)",
  42662. image: {
  42663. source: "./media/characters/theo-acacia/front-nude.svg",
  42664. extra: 1796/1741,
  42665. bottom: 83/1879
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Normal",
  42672. height: math.unit(22 + 1/12, "feet"),
  42673. default: true
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(20, "feet"),
  42682. name: "Front",
  42683. image: {
  42684. source: "./media/characters/astra/front.svg",
  42685. extra: 1850/1714,
  42686. bottom: 106/1956
  42687. }
  42688. },
  42689. frontUndressed: {
  42690. height: math.unit(20, "feet"),
  42691. name: "Front (Undressed)",
  42692. image: {
  42693. source: "./media/characters/astra/front-undressed.svg",
  42694. extra: 1926/1749,
  42695. bottom: 0/1926
  42696. }
  42697. },
  42698. hand: {
  42699. height: math.unit(1.53, "feet"),
  42700. name: "Hand",
  42701. image: {
  42702. source: "./media/characters/astra/hand.svg"
  42703. }
  42704. },
  42705. paw: {
  42706. height: math.unit(1.53, "feet"),
  42707. name: "Paw",
  42708. image: {
  42709. source: "./media/characters/astra/paw.svg"
  42710. }
  42711. },
  42712. },
  42713. [
  42714. {
  42715. name: "Smallest",
  42716. height: math.unit(20, "feet")
  42717. },
  42718. {
  42719. name: "Normal",
  42720. height: math.unit(1e9, "miles"),
  42721. default: true
  42722. },
  42723. {
  42724. name: "Larger",
  42725. height: math.unit(5, "multiverses")
  42726. },
  42727. {
  42728. name: "Largest",
  42729. height: math.unit(1e9, "multiverses")
  42730. },
  42731. ]
  42732. ))
  42733. characterMakers.push(() => makeCharacter(
  42734. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42735. {
  42736. front: {
  42737. height: math.unit(8, "feet"),
  42738. name: "Front",
  42739. image: {
  42740. source: "./media/characters/breanna/front.svg",
  42741. extra: 1912/1632,
  42742. bottom: 33/1945
  42743. }
  42744. },
  42745. },
  42746. [
  42747. {
  42748. name: "Smallest",
  42749. height: math.unit(8, "feet")
  42750. },
  42751. {
  42752. name: "Normal",
  42753. height: math.unit(1, "mile"),
  42754. default: true
  42755. },
  42756. {
  42757. name: "Maximum",
  42758. height: math.unit(1500000000000, "lightyears")
  42759. },
  42760. ]
  42761. ))
  42762. characterMakers.push(() => makeCharacter(
  42763. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42764. {
  42765. front: {
  42766. height: math.unit(5 + 11/12, "feet"),
  42767. weight: math.unit(155, "lb"),
  42768. name: "Front",
  42769. image: {
  42770. source: "./media/characters/cai/front.svg",
  42771. extra: 1823/1702,
  42772. bottom: 32/1855
  42773. }
  42774. },
  42775. back: {
  42776. height: math.unit(5 + 11/12, "feet"),
  42777. weight: math.unit(155, "lb"),
  42778. name: "Back",
  42779. image: {
  42780. source: "./media/characters/cai/back.svg",
  42781. extra: 1809/1708,
  42782. bottom: 31/1840
  42783. }
  42784. },
  42785. },
  42786. [
  42787. {
  42788. name: "Normal",
  42789. height: math.unit(5 + 11/12, "feet"),
  42790. default: true
  42791. },
  42792. {
  42793. name: "Big",
  42794. height: math.unit(15, "feet")
  42795. },
  42796. {
  42797. name: "Macro",
  42798. height: math.unit(200, "feet")
  42799. },
  42800. ]
  42801. ))
  42802. characterMakers.push(() => makeCharacter(
  42803. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42804. {
  42805. front: {
  42806. height: math.unit(5 + 6/12, "feet"),
  42807. weight: math.unit(160, "lb"),
  42808. name: "Front",
  42809. image: {
  42810. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42811. extra: 1227/1174,
  42812. bottom: 37/1264
  42813. }
  42814. },
  42815. },
  42816. [
  42817. {
  42818. name: "Macro",
  42819. height: math.unit(444, "meters"),
  42820. default: true
  42821. },
  42822. ]
  42823. ))
  42824. characterMakers.push(() => makeCharacter(
  42825. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42826. {
  42827. front: {
  42828. height: math.unit(18 + 7/12, "feet"),
  42829. name: "Front",
  42830. image: {
  42831. source: "./media/characters/rex/front.svg",
  42832. extra: 1941/1807,
  42833. bottom: 66/2007
  42834. }
  42835. },
  42836. back: {
  42837. height: math.unit(18 + 7/12, "feet"),
  42838. name: "Back",
  42839. image: {
  42840. source: "./media/characters/rex/back.svg",
  42841. extra: 1937/1822,
  42842. bottom: 42/1979
  42843. }
  42844. },
  42845. boot: {
  42846. height: math.unit(3.45, "feet"),
  42847. name: "Boot",
  42848. image: {
  42849. source: "./media/characters/rex/boot.svg"
  42850. }
  42851. },
  42852. paw: {
  42853. height: math.unit(4.17, "feet"),
  42854. name: "Paw",
  42855. image: {
  42856. source: "./media/characters/rex/paw.svg"
  42857. }
  42858. },
  42859. head: {
  42860. height: math.unit(6.728, "feet"),
  42861. name: "Head",
  42862. image: {
  42863. source: "./media/characters/rex/head.svg"
  42864. }
  42865. },
  42866. },
  42867. [
  42868. {
  42869. name: "Nano",
  42870. height: math.unit(18 + 7/12, "feet")
  42871. },
  42872. {
  42873. name: "Micro",
  42874. height: math.unit(1.5, "megameters")
  42875. },
  42876. {
  42877. name: "Normal",
  42878. height: math.unit(440, "megameters"),
  42879. default: true
  42880. },
  42881. {
  42882. name: "Macro",
  42883. height: math.unit(2.5, "gigameters")
  42884. },
  42885. {
  42886. name: "Gigamacro",
  42887. height: math.unit(2, "galaxies")
  42888. },
  42889. ]
  42890. ))
  42891. characterMakers.push(() => makeCharacter(
  42892. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42893. {
  42894. side: {
  42895. height: math.unit(32, "feet"),
  42896. weight: math.unit(250000, "lb"),
  42897. name: "Side",
  42898. image: {
  42899. source: "./media/characters/silverwing/side.svg",
  42900. extra: 1100/1019,
  42901. bottom: 204/1304
  42902. }
  42903. },
  42904. },
  42905. [
  42906. {
  42907. name: "Normal",
  42908. height: math.unit(32, "feet"),
  42909. default: true
  42910. },
  42911. ]
  42912. ))
  42913. characterMakers.push(() => makeCharacter(
  42914. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42915. {
  42916. front: {
  42917. height: math.unit(6 + 6/12, "feet"),
  42918. weight: math.unit(350, "lb"),
  42919. name: "Front",
  42920. image: {
  42921. source: "./media/characters/tristan-hawthorne/front.svg",
  42922. extra: 1159/1124,
  42923. bottom: 37/1196
  42924. },
  42925. form: "labrador",
  42926. default: true
  42927. },
  42928. skunkFront: {
  42929. height: math.unit(4 + 6/12, "feet"),
  42930. weight: math.unit(120, "lb"),
  42931. name: "Front",
  42932. image: {
  42933. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42934. extra: 1609/1551,
  42935. bottom: 169/1778
  42936. },
  42937. form: "skunk",
  42938. default: true
  42939. },
  42940. },
  42941. [
  42942. {
  42943. name: "Normal",
  42944. height: math.unit(6 + 6/12, "feet"),
  42945. form: "labrador",
  42946. default: true
  42947. },
  42948. {
  42949. name: "Normal",
  42950. height: math.unit(4 + 6/12, "feet"),
  42951. form: "skunk",
  42952. default: true
  42953. },
  42954. ],
  42955. {
  42956. "labrador": {
  42957. name: "Labrador",
  42958. default: true
  42959. },
  42960. "skunk": {
  42961. name: "Skunk"
  42962. }
  42963. }
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42967. {
  42968. front: {
  42969. height: math.unit(5 + 11/12, "feet"),
  42970. weight: math.unit(190, "lb"),
  42971. name: "Front",
  42972. image: {
  42973. source: "./media/characters/mizu/front.svg",
  42974. extra: 1988/1788,
  42975. bottom: 14/2002
  42976. }
  42977. },
  42978. },
  42979. [
  42980. {
  42981. name: "Normal",
  42982. height: math.unit(5 + 11/12, "feet"),
  42983. default: true
  42984. },
  42985. ]
  42986. ))
  42987. characterMakers.push(() => makeCharacter(
  42988. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42989. {
  42990. front: {
  42991. height: math.unit(1.7, "feet"),
  42992. weight: math.unit(50, "lb"),
  42993. name: "Front",
  42994. image: {
  42995. source: "./media/characters/dechroma/front.svg",
  42996. extra: 1095/859,
  42997. bottom: 64/1159
  42998. }
  42999. },
  43000. },
  43001. [
  43002. {
  43003. name: "Normal",
  43004. height: math.unit(1.7, "feet"),
  43005. default: true
  43006. },
  43007. ]
  43008. ))
  43009. characterMakers.push(() => makeCharacter(
  43010. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43011. {
  43012. side: {
  43013. height: math.unit(30, "feet"),
  43014. name: "Side",
  43015. image: {
  43016. source: "./media/characters/veluren-thanazel/side.svg",
  43017. extra: 1611/633,
  43018. bottom: 118/1729
  43019. }
  43020. },
  43021. front: {
  43022. height: math.unit(30, "feet"),
  43023. name: "Front",
  43024. image: {
  43025. source: "./media/characters/veluren-thanazel/front.svg",
  43026. extra: 1486/636,
  43027. bottom: 238/1724
  43028. }
  43029. },
  43030. head: {
  43031. height: math.unit(21.4, "feet"),
  43032. name: "Head",
  43033. image: {
  43034. source: "./media/characters/veluren-thanazel/head.svg"
  43035. }
  43036. },
  43037. genitals: {
  43038. height: math.unit(19.4, "feet"),
  43039. name: "Genitals",
  43040. image: {
  43041. source: "./media/characters/veluren-thanazel/genitals.svg"
  43042. }
  43043. },
  43044. },
  43045. [
  43046. {
  43047. name: "Social",
  43048. height: math.unit(6, "feet")
  43049. },
  43050. {
  43051. name: "Play",
  43052. height: math.unit(12, "feet")
  43053. },
  43054. {
  43055. name: "True",
  43056. height: math.unit(30, "feet"),
  43057. default: true
  43058. },
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43063. {
  43064. front: {
  43065. height: math.unit(7 + 6/12, "feet"),
  43066. weight: math.unit(500, "kg"),
  43067. name: "Front",
  43068. image: {
  43069. source: "./media/characters/arcturas/front.svg",
  43070. extra: 1700/1500,
  43071. bottom: 145/1845
  43072. }
  43073. },
  43074. },
  43075. [
  43076. {
  43077. name: "Normal",
  43078. height: math.unit(7 + 6/12, "feet"),
  43079. default: true
  43080. },
  43081. ]
  43082. ))
  43083. characterMakers.push(() => makeCharacter(
  43084. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43085. {
  43086. side: {
  43087. height: math.unit(6, "feet"),
  43088. weight: math.unit(2, "tons"),
  43089. name: "Side",
  43090. image: {
  43091. source: "./media/characters/vitaen/side.svg",
  43092. extra: 1157/617,
  43093. bottom: 122/1279
  43094. }
  43095. },
  43096. },
  43097. [
  43098. {
  43099. name: "Normal",
  43100. height: math.unit(6, "feet"),
  43101. default: true
  43102. },
  43103. ]
  43104. ))
  43105. characterMakers.push(() => makeCharacter(
  43106. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43107. {
  43108. front: {
  43109. height: math.unit(19, "feet"),
  43110. name: "Front",
  43111. image: {
  43112. source: "./media/characters/fia-dreamweaver/front.svg",
  43113. extra: 1630/1504,
  43114. bottom: 25/1655
  43115. }
  43116. },
  43117. },
  43118. [
  43119. {
  43120. name: "Normal",
  43121. height: math.unit(19, "feet"),
  43122. default: true
  43123. },
  43124. ]
  43125. ))
  43126. characterMakers.push(() => makeCharacter(
  43127. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43128. {
  43129. front: {
  43130. height: math.unit(5 + 4/12, "feet"),
  43131. name: "Front",
  43132. image: {
  43133. source: "./media/characters/artan/front.svg",
  43134. extra: 1618/1535,
  43135. bottom: 46/1664
  43136. }
  43137. },
  43138. back: {
  43139. height: math.unit(5 + 4/12, "feet"),
  43140. name: "Back",
  43141. image: {
  43142. source: "./media/characters/artan/back.svg",
  43143. extra: 1618/1543,
  43144. bottom: 31/1649
  43145. }
  43146. },
  43147. },
  43148. [
  43149. {
  43150. name: "Normal",
  43151. height: math.unit(5 + 4/12, "feet"),
  43152. default: true
  43153. },
  43154. ]
  43155. ))
  43156. characterMakers.push(() => makeCharacter(
  43157. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43158. {
  43159. side: {
  43160. height: math.unit(182, "cm"),
  43161. weight: math.unit(1000, "lb"),
  43162. name: "Side",
  43163. image: {
  43164. source: "./media/characters/silver-dragon/side.svg",
  43165. extra: 710/287,
  43166. bottom: 88/798
  43167. }
  43168. },
  43169. },
  43170. [
  43171. {
  43172. name: "Normal",
  43173. height: math.unit(182, "cm"),
  43174. default: true
  43175. },
  43176. ]
  43177. ))
  43178. characterMakers.push(() => makeCharacter(
  43179. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43180. {
  43181. side: {
  43182. height: math.unit(6 + 6/12, "feet"),
  43183. weight: math.unit(1.5, "tons"),
  43184. name: "Side",
  43185. image: {
  43186. source: "./media/characters/zephyr/side.svg",
  43187. extra: 1433/586,
  43188. bottom: 109/1542
  43189. }
  43190. },
  43191. },
  43192. [
  43193. {
  43194. name: "Normal",
  43195. height: math.unit(6 + 6/12, "feet"),
  43196. default: true
  43197. },
  43198. ]
  43199. ))
  43200. characterMakers.push(() => makeCharacter(
  43201. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43202. {
  43203. side: {
  43204. height: math.unit(1, "feet"),
  43205. name: "Side",
  43206. image: {
  43207. source: "./media/characters/vixye/side.svg",
  43208. extra: 632/541,
  43209. bottom: 0/632
  43210. }
  43211. },
  43212. },
  43213. [
  43214. {
  43215. name: "Normal",
  43216. height: math.unit(1, "feet"),
  43217. default: true
  43218. },
  43219. {
  43220. name: "True",
  43221. height: math.unit(1e15, "multiverses")
  43222. },
  43223. ]
  43224. ))
  43225. characterMakers.push(() => makeCharacter(
  43226. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43227. {
  43228. front: {
  43229. height: math.unit(8 + 2/12, "feet"),
  43230. weight: math.unit(650, "lb"),
  43231. name: "Front",
  43232. image: {
  43233. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43234. extra: 1174/1137,
  43235. bottom: 82/1256
  43236. }
  43237. },
  43238. back: {
  43239. height: math.unit(8 + 2/12, "feet"),
  43240. weight: math.unit(650, "lb"),
  43241. name: "Back",
  43242. image: {
  43243. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43244. extra: 1204/1157,
  43245. bottom: 46/1250
  43246. }
  43247. },
  43248. },
  43249. [
  43250. {
  43251. name: "Wildform",
  43252. height: math.unit(8 + 2/12, "feet"),
  43253. default: true
  43254. },
  43255. ]
  43256. ))
  43257. characterMakers.push(() => makeCharacter(
  43258. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43259. {
  43260. front: {
  43261. height: math.unit(18, "feet"),
  43262. name: "Front",
  43263. image: {
  43264. source: "./media/characters/cyphin/front.svg",
  43265. extra: 970/886,
  43266. bottom: 42/1012
  43267. }
  43268. },
  43269. back: {
  43270. height: math.unit(18, "feet"),
  43271. name: "Back",
  43272. image: {
  43273. source: "./media/characters/cyphin/back.svg",
  43274. extra: 1009/894,
  43275. bottom: 24/1033
  43276. }
  43277. },
  43278. head: {
  43279. height: math.unit(5.05, "feet"),
  43280. name: "Head",
  43281. image: {
  43282. source: "./media/characters/cyphin/head.svg"
  43283. }
  43284. },
  43285. tailbud: {
  43286. height: math.unit(5, "feet"),
  43287. name: "Tailbud",
  43288. image: {
  43289. source: "./media/characters/cyphin/tailbud.svg"
  43290. }
  43291. },
  43292. },
  43293. [
  43294. ]
  43295. ))
  43296. characterMakers.push(() => makeCharacter(
  43297. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43298. {
  43299. side: {
  43300. height: math.unit(10, "feet"),
  43301. weight: math.unit(6, "tons"),
  43302. name: "Side",
  43303. image: {
  43304. source: "./media/characters/raijin/side.svg",
  43305. extra: 1529/613,
  43306. bottom: 337/1866
  43307. }
  43308. },
  43309. },
  43310. [
  43311. {
  43312. name: "Normal",
  43313. height: math.unit(10, "feet"),
  43314. default: true
  43315. },
  43316. ]
  43317. ))
  43318. characterMakers.push(() => makeCharacter(
  43319. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43320. {
  43321. side: {
  43322. height: math.unit(9, "feet"),
  43323. name: "Side",
  43324. image: {
  43325. source: "./media/characters/nilghais/side.svg",
  43326. extra: 1047/744,
  43327. bottom: 91/1138
  43328. }
  43329. },
  43330. head: {
  43331. height: math.unit(3.14, "feet"),
  43332. name: "Head",
  43333. image: {
  43334. source: "./media/characters/nilghais/head.svg"
  43335. }
  43336. },
  43337. mouth: {
  43338. height: math.unit(4.6, "feet"),
  43339. name: "Mouth",
  43340. image: {
  43341. source: "./media/characters/nilghais/mouth.svg"
  43342. }
  43343. },
  43344. wings: {
  43345. height: math.unit(24, "feet"),
  43346. name: "Wings",
  43347. image: {
  43348. source: "./media/characters/nilghais/wings.svg"
  43349. }
  43350. },
  43351. ass: {
  43352. height: math.unit(6.12, "feet"),
  43353. name: "Ass",
  43354. image: {
  43355. source: "./media/characters/nilghais/ass.svg"
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "Normal",
  43362. height: math.unit(9, "feet"),
  43363. default: true
  43364. },
  43365. ]
  43366. ))
  43367. characterMakers.push(() => makeCharacter(
  43368. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43369. {
  43370. regular: {
  43371. height: math.unit(16 + 2/12, "feet"),
  43372. weight: math.unit(2300, "lb"),
  43373. name: "Regular",
  43374. image: {
  43375. source: "./media/characters/zolgar/regular.svg",
  43376. extra: 1246/1004,
  43377. bottom: 124/1370
  43378. }
  43379. },
  43380. boxers: {
  43381. height: math.unit(16 + 2/12, "feet"),
  43382. weight: math.unit(2300, "lb"),
  43383. name: "Boxers",
  43384. image: {
  43385. source: "./media/characters/zolgar/boxers.svg",
  43386. extra: 1246/1004,
  43387. bottom: 124/1370
  43388. }
  43389. },
  43390. armored: {
  43391. height: math.unit(16 + 2/12, "feet"),
  43392. weight: math.unit(2300, "lb"),
  43393. name: "Armored",
  43394. image: {
  43395. source: "./media/characters/zolgar/armored.svg",
  43396. extra: 1246/1004,
  43397. bottom: 124/1370
  43398. }
  43399. },
  43400. goth: {
  43401. height: math.unit(16 + 2/12, "feet"),
  43402. weight: math.unit(2300, "lb"),
  43403. name: "Goth",
  43404. image: {
  43405. source: "./media/characters/zolgar/goth.svg",
  43406. extra: 1246/1004,
  43407. bottom: 124/1370
  43408. }
  43409. },
  43410. },
  43411. [
  43412. {
  43413. name: "Shrunken Down",
  43414. height: math.unit(9 + 2/12, "feet")
  43415. },
  43416. {
  43417. name: "Normal",
  43418. height: math.unit(16 + 2/12, "feet"),
  43419. default: true
  43420. },
  43421. ]
  43422. ))
  43423. characterMakers.push(() => makeCharacter(
  43424. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43425. {
  43426. front: {
  43427. height: math.unit(6, "feet"),
  43428. weight: math.unit(168, "lb"),
  43429. name: "Front",
  43430. image: {
  43431. source: "./media/characters/luca/front.svg",
  43432. extra: 841/667,
  43433. bottom: 102/943
  43434. }
  43435. },
  43436. },
  43437. [
  43438. {
  43439. name: "Normal",
  43440. height: math.unit(6, "feet"),
  43441. default: true
  43442. },
  43443. ]
  43444. ))
  43445. characterMakers.push(() => makeCharacter(
  43446. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43447. {
  43448. side: {
  43449. height: math.unit(7 + 3/12, "feet"),
  43450. weight: math.unit(312, "lb"),
  43451. name: "Side",
  43452. image: {
  43453. source: "./media/characters/zezo/side.svg",
  43454. extra: 1192/1067,
  43455. bottom: 63/1255
  43456. }
  43457. },
  43458. },
  43459. [
  43460. {
  43461. name: "Normal",
  43462. height: math.unit(7 + 3/12, "feet"),
  43463. default: true
  43464. },
  43465. ]
  43466. ))
  43467. characterMakers.push(() => makeCharacter(
  43468. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43469. {
  43470. front: {
  43471. height: math.unit(5 + 5/12, "feet"),
  43472. weight: math.unit(170, "lb"),
  43473. name: "Front",
  43474. image: {
  43475. source: "./media/characters/mayso/front.svg",
  43476. extra: 1215/1108,
  43477. bottom: 16/1231
  43478. }
  43479. },
  43480. },
  43481. [
  43482. {
  43483. name: "Normal",
  43484. height: math.unit(5 + 5/12, "feet"),
  43485. default: true
  43486. },
  43487. ]
  43488. ))
  43489. characterMakers.push(() => makeCharacter(
  43490. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43491. {
  43492. front: {
  43493. height: math.unit(4 + 3/12, "feet"),
  43494. weight: math.unit(80, "lb"),
  43495. name: "Front",
  43496. image: {
  43497. source: "./media/characters/hess/front.svg",
  43498. extra: 1200/1123,
  43499. bottom: 16/1216
  43500. }
  43501. },
  43502. },
  43503. [
  43504. {
  43505. name: "Normal",
  43506. height: math.unit(4 + 3/12, "feet"),
  43507. default: true
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43513. {
  43514. front: {
  43515. height: math.unit(1.9, "meters"),
  43516. name: "Front",
  43517. image: {
  43518. source: "./media/characters/ashgar/front.svg",
  43519. extra: 1177/1146,
  43520. bottom: 99/1276
  43521. }
  43522. },
  43523. back: {
  43524. height: math.unit(1.9, "meters"),
  43525. name: "Back",
  43526. image: {
  43527. source: "./media/characters/ashgar/back.svg",
  43528. extra: 1201/1183,
  43529. bottom: 53/1254
  43530. }
  43531. },
  43532. feral: {
  43533. height: math.unit(1.4, "meters"),
  43534. name: "Feral",
  43535. image: {
  43536. source: "./media/characters/ashgar/feral.svg",
  43537. extra: 370/345,
  43538. bottom: 45/415
  43539. }
  43540. },
  43541. },
  43542. [
  43543. {
  43544. name: "Normal",
  43545. height: math.unit(1.9, "meters"),
  43546. default: true
  43547. },
  43548. ]
  43549. ))
  43550. characterMakers.push(() => makeCharacter(
  43551. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43552. {
  43553. regular: {
  43554. height: math.unit(6, "feet"),
  43555. weight: math.unit(220, "lb"),
  43556. name: "Regular",
  43557. image: {
  43558. source: "./media/characters/phillip/regular.svg",
  43559. extra: 1373/1277,
  43560. bottom: 75/1448
  43561. }
  43562. },
  43563. dressed: {
  43564. height: math.unit(6, "feet"),
  43565. weight: math.unit(220, "lb"),
  43566. name: "Dressed",
  43567. image: {
  43568. source: "./media/characters/phillip/dressed.svg",
  43569. extra: 1373/1277,
  43570. bottom: 75/1448
  43571. }
  43572. },
  43573. paw: {
  43574. height: math.unit(1.44, "feet"),
  43575. name: "Paw",
  43576. image: {
  43577. source: "./media/characters/phillip/paw.svg"
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Normal",
  43584. height: math.unit(6, "feet"),
  43585. default: true
  43586. },
  43587. ]
  43588. ))
  43589. characterMakers.push(() => makeCharacter(
  43590. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43591. {
  43592. side: {
  43593. height: math.unit(42, "feet"),
  43594. name: "Side",
  43595. image: {
  43596. source: "./media/characters/uvula/side.svg",
  43597. extra: 683/586,
  43598. bottom: 60/743
  43599. }
  43600. },
  43601. front: {
  43602. height: math.unit(42, "feet"),
  43603. name: "Front",
  43604. image: {
  43605. source: "./media/characters/uvula/front.svg",
  43606. extra: 705/613,
  43607. bottom: 54/759
  43608. }
  43609. },
  43610. maw: {
  43611. height: math.unit(23.5, "feet"),
  43612. name: "Maw",
  43613. image: {
  43614. source: "./media/characters/uvula/maw.svg"
  43615. }
  43616. },
  43617. },
  43618. [
  43619. {
  43620. name: "Original Size",
  43621. height: math.unit(14, "inches")
  43622. },
  43623. {
  43624. name: "Human Size",
  43625. height: math.unit(6, "feet")
  43626. },
  43627. {
  43628. name: "Big",
  43629. height: math.unit(42, "feet"),
  43630. default: true
  43631. },
  43632. {
  43633. name: "Bigger",
  43634. height: math.unit(100, "feet")
  43635. },
  43636. ]
  43637. ))
  43638. characterMakers.push(() => makeCharacter(
  43639. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43640. {
  43641. front: {
  43642. height: math.unit(5 + 11/12, "feet"),
  43643. name: "Front",
  43644. image: {
  43645. source: "./media/characters/lannah/front.svg",
  43646. extra: 1208/1113,
  43647. bottom: 97/1305
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Normal",
  43654. height: math.unit(5 + 11/12, "feet"),
  43655. default: true
  43656. },
  43657. ]
  43658. ))
  43659. characterMakers.push(() => makeCharacter(
  43660. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43661. {
  43662. front: {
  43663. height: math.unit(6 + 3/12, "feet"),
  43664. weight: math.unit(3.5, "tons"),
  43665. name: "Front",
  43666. image: {
  43667. source: "./media/characters/emberflame/front.svg",
  43668. extra: 1198/672,
  43669. bottom: 82/1280
  43670. }
  43671. },
  43672. side: {
  43673. height: math.unit(6 + 3/12, "feet"),
  43674. weight: math.unit(3.5, "tons"),
  43675. name: "Side",
  43676. image: {
  43677. source: "./media/characters/emberflame/side.svg",
  43678. extra: 938/527,
  43679. bottom: 56/994
  43680. }
  43681. },
  43682. },
  43683. [
  43684. {
  43685. name: "Normal",
  43686. height: math.unit(6 + 3/12, "feet"),
  43687. default: true
  43688. },
  43689. ]
  43690. ))
  43691. characterMakers.push(() => makeCharacter(
  43692. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43693. {
  43694. side: {
  43695. height: math.unit(17.5, "feet"),
  43696. weight: math.unit(35, "tons"),
  43697. name: "Side",
  43698. image: {
  43699. source: "./media/characters/sophie-ambrose/side.svg",
  43700. extra: 1573/1242,
  43701. bottom: 71/1644
  43702. }
  43703. },
  43704. maw: {
  43705. height: math.unit(7.4, "feet"),
  43706. name: "Maw",
  43707. image: {
  43708. source: "./media/characters/sophie-ambrose/maw.svg"
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Normal",
  43715. height: math.unit(17.5, "feet"),
  43716. default: true
  43717. },
  43718. ]
  43719. ))
  43720. characterMakers.push(() => makeCharacter(
  43721. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43722. {
  43723. front: {
  43724. height: math.unit(280, "feet"),
  43725. weight: math.unit(550, "tons"),
  43726. name: "Front",
  43727. image: {
  43728. source: "./media/characters/king-mugi/front.svg",
  43729. extra: 1102/947,
  43730. bottom: 104/1206
  43731. }
  43732. },
  43733. },
  43734. [
  43735. {
  43736. name: "King Mugi",
  43737. height: math.unit(280, "feet"),
  43738. default: true
  43739. },
  43740. ]
  43741. ))
  43742. characterMakers.push(() => makeCharacter(
  43743. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43744. {
  43745. front: {
  43746. height: math.unit(64, "meters"),
  43747. name: "Front",
  43748. image: {
  43749. source: "./media/characters/nova-fox/front.svg",
  43750. extra: 1310/1246,
  43751. bottom: 65/1375
  43752. }
  43753. },
  43754. },
  43755. [
  43756. {
  43757. name: "Macro",
  43758. height: math.unit(64, "meters"),
  43759. default: true
  43760. },
  43761. ]
  43762. ))
  43763. characterMakers.push(() => makeCharacter(
  43764. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43765. {
  43766. front: {
  43767. height: math.unit(6 + 3/12, "feet"),
  43768. weight: math.unit(170, "lb"),
  43769. name: "Front",
  43770. image: {
  43771. source: "./media/characters/sam-bat/front.svg",
  43772. extra: 1601/1411,
  43773. bottom: 125/1726
  43774. }
  43775. },
  43776. back: {
  43777. height: math.unit(6 + 3/12, "feet"),
  43778. weight: math.unit(170, "lb"),
  43779. name: "Back",
  43780. image: {
  43781. source: "./media/characters/sam-bat/back.svg",
  43782. extra: 1577/1405,
  43783. bottom: 58/1635
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(6 + 3/12, "feet"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43797. {
  43798. front: {
  43799. height: math.unit(59, "feet"),
  43800. weight: math.unit(40000, "lb"),
  43801. name: "Front",
  43802. image: {
  43803. source: "./media/characters/inari/front.svg",
  43804. extra: 1884/1350,
  43805. bottom: 95/1979
  43806. }
  43807. },
  43808. },
  43809. [
  43810. {
  43811. name: "Gigantamax",
  43812. height: math.unit(59, "feet"),
  43813. default: true
  43814. },
  43815. ]
  43816. ))
  43817. characterMakers.push(() => makeCharacter(
  43818. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43819. {
  43820. front: {
  43821. height: math.unit(5 + 8/12, "feet"),
  43822. name: "Front",
  43823. image: {
  43824. source: "./media/characters/elizabeth/front.svg",
  43825. extra: 1395/1298,
  43826. bottom: 54/1449
  43827. }
  43828. },
  43829. mouth: {
  43830. height: math.unit(1.97, "feet"),
  43831. name: "Mouth",
  43832. image: {
  43833. source: "./media/characters/elizabeth/mouth.svg"
  43834. }
  43835. },
  43836. foot: {
  43837. height: math.unit(1.17, "feet"),
  43838. name: "Foot",
  43839. image: {
  43840. source: "./media/characters/elizabeth/foot.svg"
  43841. }
  43842. },
  43843. },
  43844. [
  43845. {
  43846. name: "Normal",
  43847. height: math.unit(5 + 8/12, "feet"),
  43848. default: true
  43849. },
  43850. {
  43851. name: "Minimacro",
  43852. height: math.unit(18, "feet")
  43853. },
  43854. {
  43855. name: "Macro",
  43856. height: math.unit(180, "feet")
  43857. },
  43858. ]
  43859. ))
  43860. characterMakers.push(() => makeCharacter(
  43861. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43862. {
  43863. front: {
  43864. height: math.unit(5 + 2/12, "feet"),
  43865. name: "Front",
  43866. image: {
  43867. source: "./media/characters/october-gossamer/front.svg",
  43868. extra: 505/454,
  43869. bottom: 7/512
  43870. }
  43871. },
  43872. back: {
  43873. height: math.unit(5 + 2/12, "feet"),
  43874. name: "Back",
  43875. image: {
  43876. source: "./media/characters/october-gossamer/back.svg",
  43877. extra: 501/454,
  43878. bottom: 11/512
  43879. }
  43880. },
  43881. },
  43882. [
  43883. {
  43884. name: "Normal",
  43885. height: math.unit(5 + 2/12, "feet"),
  43886. default: true
  43887. },
  43888. ]
  43889. ))
  43890. characterMakers.push(() => makeCharacter(
  43891. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43892. {
  43893. front: {
  43894. height: math.unit(5, "feet"),
  43895. name: "Front",
  43896. image: {
  43897. source: "./media/characters/epiglottis/front.svg",
  43898. extra: 923/849,
  43899. bottom: 17/940
  43900. }
  43901. },
  43902. },
  43903. [
  43904. {
  43905. name: "Original Size",
  43906. height: math.unit(10, "inches")
  43907. },
  43908. {
  43909. name: "Human Size",
  43910. height: math.unit(5, "feet"),
  43911. default: true
  43912. },
  43913. {
  43914. name: "Big",
  43915. height: math.unit(25, "feet")
  43916. },
  43917. {
  43918. name: "Bigger",
  43919. height: math.unit(50, "feet")
  43920. },
  43921. {
  43922. name: "oh lawd",
  43923. height: math.unit(75, "feet")
  43924. },
  43925. ]
  43926. ))
  43927. characterMakers.push(() => makeCharacter(
  43928. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43929. {
  43930. front: {
  43931. height: math.unit(2 + 4/12, "feet"),
  43932. weight: math.unit(60, "lb"),
  43933. name: "Front",
  43934. image: {
  43935. source: "./media/characters/lerm/front.svg",
  43936. extra: 796/790,
  43937. bottom: 79/875
  43938. }
  43939. },
  43940. },
  43941. [
  43942. {
  43943. name: "Normal",
  43944. height: math.unit(2 + 4/12, "feet"),
  43945. default: true
  43946. },
  43947. ]
  43948. ))
  43949. characterMakers.push(() => makeCharacter(
  43950. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43951. {
  43952. front: {
  43953. height: math.unit(5.5, "feet"),
  43954. weight: math.unit(130, "lb"),
  43955. name: "Front",
  43956. image: {
  43957. source: "./media/characters/xena-nebadon/front.svg",
  43958. extra: 1828/1730,
  43959. bottom: 79/1907
  43960. }
  43961. },
  43962. },
  43963. [
  43964. {
  43965. name: "Tiny Puppy",
  43966. height: math.unit(3, "inches")
  43967. },
  43968. {
  43969. name: "Normal",
  43970. height: math.unit(5.5, "feet"),
  43971. default: true
  43972. },
  43973. {
  43974. name: "Lotta Lady",
  43975. height: math.unit(12, "feet")
  43976. },
  43977. {
  43978. name: "Pretty Big",
  43979. height: math.unit(100, "feet")
  43980. },
  43981. {
  43982. name: "Big",
  43983. height: math.unit(500, "feet")
  43984. },
  43985. {
  43986. name: "Skyscraper Toys",
  43987. height: math.unit(2500, "feet")
  43988. },
  43989. {
  43990. name: "Plane Catcher",
  43991. height: math.unit(8, "miles")
  43992. },
  43993. {
  43994. name: "Planet Toys",
  43995. height: math.unit(15, "earths")
  43996. },
  43997. {
  43998. name: "Stardust",
  43999. height: math.unit(0.25, "galaxies")
  44000. },
  44001. {
  44002. name: "Snacks",
  44003. height: math.unit(70, "universes")
  44004. },
  44005. ]
  44006. ))
  44007. characterMakers.push(() => makeCharacter(
  44008. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44009. {
  44010. front: {
  44011. height: math.unit(1.6, "meters"),
  44012. weight: math.unit(60, "kg"),
  44013. name: "Front",
  44014. image: {
  44015. source: "./media/characters/bounty/front.svg",
  44016. extra: 1426/1308,
  44017. bottom: 15/1441
  44018. }
  44019. },
  44020. back: {
  44021. height: math.unit(1.6, "meters"),
  44022. weight: math.unit(60, "kg"),
  44023. name: "Back",
  44024. image: {
  44025. source: "./media/characters/bounty/back.svg",
  44026. extra: 1417/1307,
  44027. bottom: 8/1425
  44028. }
  44029. },
  44030. },
  44031. [
  44032. {
  44033. name: "Normal",
  44034. height: math.unit(1.6, "meters"),
  44035. default: true
  44036. },
  44037. {
  44038. name: "Macro",
  44039. height: math.unit(300, "meters")
  44040. },
  44041. ]
  44042. ))
  44043. characterMakers.push(() => makeCharacter(
  44044. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44045. {
  44046. front: {
  44047. height: math.unit(2 + 8/12, "feet"),
  44048. weight: math.unit(15, "lb"),
  44049. name: "Front",
  44050. image: {
  44051. source: "./media/characters/mochi/front.svg",
  44052. extra: 1022/852,
  44053. bottom: 435/1457
  44054. }
  44055. },
  44056. back: {
  44057. height: math.unit(2 + 8/12, "feet"),
  44058. weight: math.unit(15, "lb"),
  44059. name: "Back",
  44060. image: {
  44061. source: "./media/characters/mochi/back.svg",
  44062. extra: 1335/1119,
  44063. bottom: 39/1374
  44064. }
  44065. },
  44066. bird: {
  44067. height: math.unit(2 + 8/12, "feet"),
  44068. weight: math.unit(15, "lb"),
  44069. name: "Bird",
  44070. image: {
  44071. source: "./media/characters/mochi/bird.svg",
  44072. extra: 1251/1113,
  44073. bottom: 178/1429
  44074. }
  44075. },
  44076. kaiju: {
  44077. height: math.unit(154, "feet"),
  44078. weight: math.unit(1e7, "lb"),
  44079. name: "Kaiju",
  44080. image: {
  44081. source: "./media/characters/mochi/kaiju.svg",
  44082. extra: 460/324,
  44083. bottom: 40/500
  44084. }
  44085. },
  44086. head: {
  44087. height: math.unit(1.21, "feet"),
  44088. name: "Head",
  44089. image: {
  44090. source: "./media/characters/mochi/head.svg"
  44091. }
  44092. },
  44093. alternateTail: {
  44094. height: math.unit(2 + 8/12, "feet"),
  44095. weight: math.unit(45, "lb"),
  44096. name: "Alternate Tail",
  44097. image: {
  44098. source: "./media/characters/mochi/alternate-tail.svg",
  44099. extra: 139/76,
  44100. bottom: 45/184
  44101. }
  44102. },
  44103. },
  44104. [
  44105. {
  44106. name: "Micro",
  44107. height: math.unit(2, "inches")
  44108. },
  44109. {
  44110. name: "Normal",
  44111. height: math.unit(2 + 8/12, "feet"),
  44112. default: true
  44113. },
  44114. {
  44115. name: "Macro",
  44116. height: math.unit(106, "feet")
  44117. },
  44118. ]
  44119. ))
  44120. characterMakers.push(() => makeCharacter(
  44121. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44122. {
  44123. front: {
  44124. height: math.unit(5.67, "feet"),
  44125. weight: math.unit(135, "lb"),
  44126. name: "Front",
  44127. image: {
  44128. source: "./media/characters/sarel/front.svg",
  44129. extra: 865/788,
  44130. bottom: 97/962
  44131. }
  44132. },
  44133. back: {
  44134. height: math.unit(5.67, "feet"),
  44135. weight: math.unit(135, "lb"),
  44136. name: "Back",
  44137. image: {
  44138. source: "./media/characters/sarel/back.svg",
  44139. extra: 857/777,
  44140. bottom: 32/889
  44141. }
  44142. },
  44143. chozoan: {
  44144. height: math.unit(5.67, "feet"),
  44145. weight: math.unit(135, "lb"),
  44146. name: "Chozoan",
  44147. image: {
  44148. source: "./media/characters/sarel/chozoan.svg",
  44149. extra: 865/788,
  44150. bottom: 97/962
  44151. }
  44152. },
  44153. current: {
  44154. height: math.unit(5.67, "feet"),
  44155. weight: math.unit(135, "lb"),
  44156. name: "Current",
  44157. image: {
  44158. source: "./media/characters/sarel/current.svg",
  44159. extra: 865/788,
  44160. bottom: 97/962
  44161. }
  44162. },
  44163. head: {
  44164. height: math.unit(1.77, "feet"),
  44165. name: "Head",
  44166. image: {
  44167. source: "./media/characters/sarel/head.svg"
  44168. }
  44169. },
  44170. claws: {
  44171. height: math.unit(1.8, "feet"),
  44172. name: "Claws",
  44173. image: {
  44174. source: "./media/characters/sarel/claws.svg"
  44175. }
  44176. },
  44177. clawsAlt: {
  44178. height: math.unit(1.8, "feet"),
  44179. name: "Claws-alt",
  44180. image: {
  44181. source: "./media/characters/sarel/claws-alt.svg"
  44182. }
  44183. },
  44184. },
  44185. [
  44186. {
  44187. name: "Normal",
  44188. height: math.unit(5.67, "feet"),
  44189. default: true
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44195. {
  44196. front: {
  44197. height: math.unit(5500, "feet"),
  44198. name: "Front",
  44199. image: {
  44200. source: "./media/characters/alyonia/front.svg",
  44201. extra: 1200/1135,
  44202. bottom: 29/1229
  44203. }
  44204. },
  44205. back: {
  44206. height: math.unit(5500, "feet"),
  44207. name: "Back",
  44208. image: {
  44209. source: "./media/characters/alyonia/back.svg",
  44210. extra: 1205/1138,
  44211. bottom: 10/1215
  44212. }
  44213. },
  44214. },
  44215. [
  44216. {
  44217. name: "Small",
  44218. height: math.unit(10, "feet")
  44219. },
  44220. {
  44221. name: "Macro",
  44222. height: math.unit(500, "feet")
  44223. },
  44224. {
  44225. name: "Mega Macro",
  44226. height: math.unit(5500, "feet"),
  44227. default: true
  44228. },
  44229. {
  44230. name: "Mega Macro+",
  44231. height: math.unit(500000, "feet")
  44232. },
  44233. {
  44234. name: "Giga Macro",
  44235. height: math.unit(3000, "miles")
  44236. },
  44237. {
  44238. name: "Tera Macro",
  44239. height: math.unit(2.8e6, "miles")
  44240. },
  44241. {
  44242. name: "Galactic",
  44243. height: math.unit(120000, "lightyears")
  44244. },
  44245. ]
  44246. ))
  44247. characterMakers.push(() => makeCharacter(
  44248. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44249. {
  44250. werewolf: {
  44251. height: math.unit(8, "feet"),
  44252. weight: math.unit(425, "lb"),
  44253. name: "Werewolf",
  44254. image: {
  44255. source: "./media/characters/autumn/werewolf.svg",
  44256. extra: 2154/2031,
  44257. bottom: 160/2314
  44258. }
  44259. },
  44260. human: {
  44261. height: math.unit(5 + 8/12, "feet"),
  44262. weight: math.unit(150, "lb"),
  44263. name: "Human",
  44264. image: {
  44265. source: "./media/characters/autumn/human.svg",
  44266. extra: 1200/1149,
  44267. bottom: 30/1230
  44268. }
  44269. },
  44270. },
  44271. [
  44272. {
  44273. name: "Normal",
  44274. height: math.unit(8, "feet"),
  44275. default: true
  44276. },
  44277. ]
  44278. ))
  44279. characterMakers.push(() => makeCharacter(
  44280. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44281. {
  44282. front: {
  44283. height: math.unit(8 + 5/12, "feet"),
  44284. weight: math.unit(825, "lb"),
  44285. name: "Front",
  44286. image: {
  44287. source: "./media/characters/cobalt-charizard/front.svg",
  44288. extra: 1268/1155,
  44289. bottom: 122/1390
  44290. }
  44291. },
  44292. side: {
  44293. height: math.unit(8 + 5/12, "feet"),
  44294. weight: math.unit(825, "lb"),
  44295. name: "Side",
  44296. image: {
  44297. source: "./media/characters/cobalt-charizard/side.svg",
  44298. extra: 1348/1257,
  44299. bottom: 58/1406
  44300. }
  44301. },
  44302. gMax: {
  44303. height: math.unit(134 + 11/12, "feet"),
  44304. name: "G-Max",
  44305. image: {
  44306. source: "./media/characters/cobalt-charizard/g-max.svg",
  44307. extra: 1835/1541,
  44308. bottom: 151/1986
  44309. }
  44310. },
  44311. },
  44312. [
  44313. {
  44314. name: "Normal",
  44315. height: math.unit(8 + 5/12, "feet"),
  44316. default: true
  44317. },
  44318. ]
  44319. ))
  44320. characterMakers.push(() => makeCharacter(
  44321. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44322. {
  44323. front: {
  44324. height: math.unit(6 + 3/12, "feet"),
  44325. weight: math.unit(210, "lb"),
  44326. name: "Front",
  44327. image: {
  44328. source: "./media/characters/stella/front.svg",
  44329. extra: 3549/3335,
  44330. bottom: 51/3600
  44331. }
  44332. },
  44333. },
  44334. [
  44335. {
  44336. name: "Normal",
  44337. height: math.unit(6 + 3/12, "feet"),
  44338. default: true
  44339. },
  44340. ]
  44341. ))
  44342. characterMakers.push(() => makeCharacter(
  44343. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44344. {
  44345. front: {
  44346. height: math.unit(5, "feet"),
  44347. weight: math.unit(90, "lb"),
  44348. name: "Front",
  44349. image: {
  44350. source: "./media/characters/riley-bishop/front.svg",
  44351. extra: 1450/1428,
  44352. bottom: 152/1602
  44353. }
  44354. },
  44355. },
  44356. [
  44357. {
  44358. name: "Normal",
  44359. height: math.unit(5, "feet"),
  44360. default: true
  44361. },
  44362. ]
  44363. ))
  44364. characterMakers.push(() => makeCharacter(
  44365. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44366. {
  44367. side: {
  44368. height: math.unit(8 + 2/12, "feet"),
  44369. weight: math.unit(500, "kg"),
  44370. name: "Side",
  44371. image: {
  44372. source: "./media/characters/theo-arcanine/side.svg",
  44373. extra: 1342/1074,
  44374. bottom: 111/1453
  44375. }
  44376. },
  44377. },
  44378. [
  44379. {
  44380. name: "Normal",
  44381. height: math.unit(8 + 2/12, "feet"),
  44382. default: true
  44383. },
  44384. ]
  44385. ))
  44386. characterMakers.push(() => makeCharacter(
  44387. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44388. {
  44389. front: {
  44390. height: math.unit(4, "feet"),
  44391. name: "Front",
  44392. image: {
  44393. source: "./media/characters/kali/front.svg",
  44394. extra: 1921/1357,
  44395. bottom: 70/1991
  44396. }
  44397. },
  44398. },
  44399. [
  44400. {
  44401. name: "Normal",
  44402. height: math.unit(4, "feet"),
  44403. default: true
  44404. },
  44405. {
  44406. name: "Macro",
  44407. height: math.unit(32, "meters")
  44408. },
  44409. {
  44410. name: "Macro+",
  44411. height: math.unit(150, "meters")
  44412. },
  44413. {
  44414. name: "Megamacro",
  44415. height: math.unit(7500, "meters")
  44416. },
  44417. {
  44418. name: "Megamacro+",
  44419. height: math.unit(80, "kilometers")
  44420. },
  44421. ]
  44422. ))
  44423. characterMakers.push(() => makeCharacter(
  44424. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44425. {
  44426. side: {
  44427. height: math.unit(5 + 11/12, "feet"),
  44428. weight: math.unit(236, "lb"),
  44429. name: "Side",
  44430. image: {
  44431. source: "./media/characters/gapp/side.svg",
  44432. extra: 775/340,
  44433. bottom: 58/833
  44434. }
  44435. },
  44436. mouth: {
  44437. height: math.unit(2.98, "feet"),
  44438. name: "Mouth",
  44439. image: {
  44440. source: "./media/characters/gapp/mouth.svg"
  44441. }
  44442. },
  44443. },
  44444. [
  44445. {
  44446. name: "Normal",
  44447. height: math.unit(5 + 1/12, "feet"),
  44448. default: true
  44449. },
  44450. ]
  44451. ))
  44452. characterMakers.push(() => makeCharacter(
  44453. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44454. {
  44455. front: {
  44456. height: math.unit(6, "feet"),
  44457. name: "Front",
  44458. image: {
  44459. source: "./media/characters/persephone/front.svg",
  44460. extra: 1895/1717,
  44461. bottom: 96/1991
  44462. }
  44463. },
  44464. back: {
  44465. height: math.unit(6, "feet"),
  44466. name: "Back",
  44467. image: {
  44468. source: "./media/characters/persephone/back.svg",
  44469. extra: 1868/1679,
  44470. bottom: 26/1894
  44471. }
  44472. },
  44473. casual: {
  44474. height: math.unit(6, "feet"),
  44475. name: "Casual",
  44476. image: {
  44477. source: "./media/characters/persephone/casual.svg",
  44478. extra: 1713/1541,
  44479. bottom: 76/1789
  44480. }
  44481. },
  44482. },
  44483. [
  44484. {
  44485. name: "Human Size",
  44486. height: math.unit(6, "feet")
  44487. },
  44488. {
  44489. name: "Big Steppy",
  44490. height: math.unit(600, "meters"),
  44491. default: true
  44492. },
  44493. {
  44494. name: "Galaxy Brain",
  44495. height: math.unit(1, "zettameter")
  44496. },
  44497. ]
  44498. ))
  44499. characterMakers.push(() => makeCharacter(
  44500. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44501. {
  44502. front: {
  44503. height: math.unit(1.85, "meters"),
  44504. name: "Front",
  44505. image: {
  44506. source: "./media/characters/riley-foxthing/front.svg",
  44507. extra: 1495/1354,
  44508. bottom: 122/1617
  44509. }
  44510. },
  44511. frontAlt: {
  44512. height: math.unit(1.85, "meters"),
  44513. name: "Front (Alt)",
  44514. image: {
  44515. source: "./media/characters/riley-foxthing/front-alt.svg",
  44516. extra: 1572/1389,
  44517. bottom: 116/1688
  44518. }
  44519. },
  44520. },
  44521. [
  44522. {
  44523. name: "Normal Sized",
  44524. height: math.unit(1.85, "meters"),
  44525. default: true
  44526. },
  44527. {
  44528. name: "Quite Sizable",
  44529. height: math.unit(5, "meters")
  44530. },
  44531. {
  44532. name: "Rather Large",
  44533. height: math.unit(20, "meters")
  44534. },
  44535. {
  44536. name: "Macro",
  44537. height: math.unit(450, "meters")
  44538. },
  44539. {
  44540. name: "Giga",
  44541. height: math.unit(5, "km")
  44542. },
  44543. ]
  44544. ))
  44545. characterMakers.push(() => makeCharacter(
  44546. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44547. {
  44548. front: {
  44549. height: math.unit(6, "feet"),
  44550. weight: math.unit(200, "lb"),
  44551. name: "Front",
  44552. image: {
  44553. source: "./media/characters/blizzard/front.svg",
  44554. extra: 1136/990,
  44555. bottom: 136/1272
  44556. }
  44557. },
  44558. back: {
  44559. height: math.unit(6, "feet"),
  44560. weight: math.unit(200, "lb"),
  44561. name: "Back",
  44562. image: {
  44563. source: "./media/characters/blizzard/back.svg",
  44564. extra: 1175/1034,
  44565. bottom: 97/1272
  44566. }
  44567. },
  44568. sitting: {
  44569. height: math.unit(3.725, "feet"),
  44570. weight: math.unit(200, "lb"),
  44571. name: "Sitting",
  44572. image: {
  44573. source: "./media/characters/blizzard/sitting.svg",
  44574. extra: 581/485,
  44575. bottom: 90/671
  44576. }
  44577. },
  44578. frontWizard: {
  44579. height: math.unit(7.9, "feet"),
  44580. weight: math.unit(200, "lb"),
  44581. name: "Front (Wizard)",
  44582. image: {
  44583. source: "./media/characters/blizzard/front-wizard.svg"
  44584. }
  44585. },
  44586. backWizard: {
  44587. height: math.unit(7.9, "feet"),
  44588. weight: math.unit(200, "lb"),
  44589. name: "Back (Wizard)",
  44590. image: {
  44591. source: "./media/characters/blizzard/back-wizard.svg"
  44592. }
  44593. },
  44594. frontNsfw: {
  44595. height: math.unit(6, "feet"),
  44596. weight: math.unit(200, "lb"),
  44597. name: "Front (NSFW)",
  44598. image: {
  44599. source: "./media/characters/blizzard/front-nsfw.svg",
  44600. extra: 1136/990,
  44601. bottom: 136/1272
  44602. }
  44603. },
  44604. backNsfw: {
  44605. height: math.unit(6, "feet"),
  44606. weight: math.unit(200, "lb"),
  44607. name: "Back (NSFW)",
  44608. image: {
  44609. source: "./media/characters/blizzard/back-nsfw.svg",
  44610. extra: 1175/1034,
  44611. bottom: 97/1272
  44612. }
  44613. },
  44614. sittingNsfw: {
  44615. height: math.unit(3.725, "feet"),
  44616. weight: math.unit(200, "lb"),
  44617. name: "Sitting (NSFW)",
  44618. image: {
  44619. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44620. extra: 581/485,
  44621. bottom: 90/671
  44622. }
  44623. },
  44624. wizardFrontNsfw: {
  44625. height: math.unit(7.9, "feet"),
  44626. weight: math.unit(200, "lb"),
  44627. name: "Wizard (Front, NSFW)",
  44628. image: {
  44629. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44630. }
  44631. },
  44632. },
  44633. [
  44634. {
  44635. name: "Normal",
  44636. height: math.unit(6, "feet"),
  44637. default: true
  44638. },
  44639. ]
  44640. ))
  44641. characterMakers.push(() => makeCharacter(
  44642. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44643. {
  44644. front: {
  44645. height: math.unit(5 + 2/12, "feet"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/lumi/front.svg",
  44649. extra: 1328/1268,
  44650. bottom: 103/1431
  44651. }
  44652. },
  44653. back: {
  44654. height: math.unit(5 + 2/12, "feet"),
  44655. name: "Back",
  44656. image: {
  44657. source: "./media/characters/lumi/back.svg",
  44658. extra: 1381/1327,
  44659. bottom: 43/1424
  44660. }
  44661. },
  44662. },
  44663. [
  44664. {
  44665. name: "Normal",
  44666. height: math.unit(5 + 2/12, "feet"),
  44667. default: true
  44668. },
  44669. ]
  44670. ))
  44671. characterMakers.push(() => makeCharacter(
  44672. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44673. {
  44674. front: {
  44675. height: math.unit(5 + 9/12, "feet"),
  44676. name: "Front",
  44677. image: {
  44678. source: "./media/characters/aliya-cotton/front.svg",
  44679. extra: 577/564,
  44680. bottom: 29/606
  44681. }
  44682. },
  44683. },
  44684. [
  44685. {
  44686. name: "Normal",
  44687. height: math.unit(5 + 9/12, "feet"),
  44688. default: true
  44689. },
  44690. ]
  44691. ))
  44692. characterMakers.push(() => makeCharacter(
  44693. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44694. {
  44695. front: {
  44696. height: math.unit(2.7, "meters"),
  44697. weight: math.unit(25000, "lb"),
  44698. name: "Front",
  44699. image: {
  44700. source: "./media/characters/noah-luxray/front.svg",
  44701. extra: 1644/825,
  44702. bottom: 339/1983
  44703. }
  44704. },
  44705. side: {
  44706. height: math.unit(2.97, "meters"),
  44707. weight: math.unit(25000, "lb"),
  44708. name: "Side",
  44709. image: {
  44710. source: "./media/characters/noah-luxray/side.svg",
  44711. extra: 1319/650,
  44712. bottom: 163/1482
  44713. }
  44714. },
  44715. dick: {
  44716. height: math.unit(7.4, "feet"),
  44717. weight: math.unit(2500, "lb"),
  44718. name: "Dick",
  44719. image: {
  44720. source: "./media/characters/noah-luxray/dick.svg"
  44721. }
  44722. },
  44723. dickAlt: {
  44724. height: math.unit(10.83, "feet"),
  44725. weight: math.unit(2500, "lb"),
  44726. name: "Dick-alt",
  44727. image: {
  44728. source: "./media/characters/noah-luxray/dick-alt.svg"
  44729. }
  44730. },
  44731. },
  44732. [
  44733. {
  44734. name: "BIG",
  44735. height: math.unit(2.7, "meters"),
  44736. default: true
  44737. },
  44738. ]
  44739. ))
  44740. characterMakers.push(() => makeCharacter(
  44741. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44742. {
  44743. standing: {
  44744. height: math.unit(183, "cm"),
  44745. weight: math.unit(68, "kg"),
  44746. name: "Standing",
  44747. image: {
  44748. source: "./media/characters/arion/standing.svg",
  44749. extra: 1869/1807,
  44750. bottom: 93/1962
  44751. }
  44752. },
  44753. reclining: {
  44754. height: math.unit(70.5, "cm"),
  44755. weight: math.unit(68, "lb"),
  44756. name: "Reclining",
  44757. image: {
  44758. source: "./media/characters/arion/reclining.svg",
  44759. extra: 937/870,
  44760. bottom: 63/1000
  44761. }
  44762. },
  44763. },
  44764. [
  44765. {
  44766. name: "Colossus Size, Low",
  44767. height: math.unit(33, "meters"),
  44768. default: true
  44769. },
  44770. {
  44771. name: "Colossus Size, Mid",
  44772. height: math.unit(52, "meters")
  44773. },
  44774. {
  44775. name: "Colossus Size, High",
  44776. height: math.unit(60, "meters")
  44777. },
  44778. {
  44779. name: "Titan Size, Low",
  44780. height: math.unit(91, "meters"),
  44781. },
  44782. {
  44783. name: "Titan Size, Mid",
  44784. height: math.unit(122, "meters")
  44785. },
  44786. {
  44787. name: "Titan Size, High",
  44788. height: math.unit(162, "meters")
  44789. },
  44790. ]
  44791. ))
  44792. characterMakers.push(() => makeCharacter(
  44793. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44794. {
  44795. front: {
  44796. height: math.unit(53, "meters"),
  44797. name: "Front",
  44798. image: {
  44799. source: "./media/characters/stellar-marbey/front.svg",
  44800. extra: 1913/1805,
  44801. bottom: 92/2005
  44802. }
  44803. },
  44804. back: {
  44805. height: math.unit(53, "meters"),
  44806. name: "Back",
  44807. image: {
  44808. source: "./media/characters/stellar-marbey/back.svg",
  44809. extra: 1960/1851,
  44810. bottom: 28/1988
  44811. }
  44812. },
  44813. mouth: {
  44814. height: math.unit(3.5, "meters"),
  44815. name: "Mouth",
  44816. image: {
  44817. source: "./media/characters/stellar-marbey/mouth.svg"
  44818. }
  44819. },
  44820. },
  44821. [
  44822. {
  44823. name: "Macro",
  44824. height: math.unit(53, "meters"),
  44825. default: true
  44826. },
  44827. ]
  44828. ))
  44829. characterMakers.push(() => makeCharacter(
  44830. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44831. {
  44832. front: {
  44833. height: math.unit(8 + 1/12, "feet"),
  44834. weight: math.unit(233, "lb"),
  44835. name: "Front",
  44836. image: {
  44837. source: "./media/characters/matsu/front.svg",
  44838. extra: 832/772,
  44839. bottom: 40/872
  44840. }
  44841. },
  44842. back: {
  44843. height: math.unit(8 + 1/12, "feet"),
  44844. weight: math.unit(233, "lb"),
  44845. name: "Back",
  44846. image: {
  44847. source: "./media/characters/matsu/back.svg",
  44848. extra: 839/780,
  44849. bottom: 47/886
  44850. }
  44851. },
  44852. },
  44853. [
  44854. {
  44855. name: "Normal",
  44856. height: math.unit(8 + 1/12, "feet"),
  44857. default: true
  44858. },
  44859. ]
  44860. ))
  44861. characterMakers.push(() => makeCharacter(
  44862. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44863. {
  44864. front: {
  44865. height: math.unit(4, "feet"),
  44866. weight: math.unit(148, "lb"),
  44867. name: "Front",
  44868. image: {
  44869. source: "./media/characters/thiz/front.svg",
  44870. extra: 1913/1748,
  44871. bottom: 62/1975
  44872. }
  44873. },
  44874. },
  44875. [
  44876. {
  44877. name: "Normal",
  44878. height: math.unit(4, "feet"),
  44879. default: true
  44880. },
  44881. ]
  44882. ))
  44883. characterMakers.push(() => makeCharacter(
  44884. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44885. {
  44886. front: {
  44887. height: math.unit(7 + 6/12, "feet"),
  44888. weight: math.unit(267, "lb"),
  44889. name: "Front",
  44890. image: {
  44891. source: "./media/characters/marcel/front.svg",
  44892. extra: 1221/1096,
  44893. bottom: 76/1297
  44894. }
  44895. },
  44896. },
  44897. [
  44898. {
  44899. name: "Normal",
  44900. height: math.unit(7 + 6/12, "feet"),
  44901. default: true
  44902. },
  44903. ]
  44904. ))
  44905. characterMakers.push(() => makeCharacter(
  44906. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44907. {
  44908. side: {
  44909. height: math.unit(42, "meters"),
  44910. name: "Side",
  44911. image: {
  44912. source: "./media/characters/flake/side.svg",
  44913. extra: 1525/1306,
  44914. bottom: 209/1734
  44915. }
  44916. },
  44917. },
  44918. [
  44919. {
  44920. name: "Normal",
  44921. height: math.unit(42, "meters"),
  44922. default: true
  44923. },
  44924. ]
  44925. ))
  44926. characterMakers.push(() => makeCharacter(
  44927. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44928. {
  44929. dressed: {
  44930. height: math.unit(6 + 4/12, "feet"),
  44931. weight: math.unit(520, "lb"),
  44932. name: "Dressed",
  44933. image: {
  44934. source: "./media/characters/someonne/dressed.svg",
  44935. extra: 1020/1010,
  44936. bottom: 178/1198
  44937. }
  44938. },
  44939. undressed: {
  44940. height: math.unit(6 + 4/12, "feet"),
  44941. weight: math.unit(520, "lb"),
  44942. name: "Undressed",
  44943. image: {
  44944. source: "./media/characters/someonne/undressed.svg",
  44945. extra: 1019/1014,
  44946. bottom: 169/1188
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Normal",
  44953. height: math.unit(6 + 4/12, "feet"),
  44954. default: true
  44955. },
  44956. ]
  44957. ))
  44958. characterMakers.push(() => makeCharacter(
  44959. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44960. {
  44961. front: {
  44962. height: math.unit(3, "feet"),
  44963. weight: math.unit(30, "lb"),
  44964. name: "Front",
  44965. image: {
  44966. source: "./media/characters/till/front.svg",
  44967. extra: 892/823,
  44968. bottom: 55/947
  44969. }
  44970. },
  44971. },
  44972. [
  44973. {
  44974. name: "Normal",
  44975. height: math.unit(3, "feet"),
  44976. default: true
  44977. },
  44978. ]
  44979. ))
  44980. characterMakers.push(() => makeCharacter(
  44981. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44982. {
  44983. front: {
  44984. height: math.unit(9 + 8/12, "feet"),
  44985. weight: math.unit(800, "lb"),
  44986. name: "Front",
  44987. image: {
  44988. source: "./media/characters/sydney-heki/front.svg",
  44989. extra: 1360/1300,
  44990. bottom: 22/1382
  44991. }
  44992. },
  44993. back: {
  44994. height: math.unit(9 + 8/12, "feet"),
  44995. weight: math.unit(800, "lb"),
  44996. name: "Back",
  44997. image: {
  44998. source: "./media/characters/sydney-heki/back.svg",
  44999. extra: 1356/1293,
  45000. bottom: 12/1368
  45001. }
  45002. },
  45003. frontDressed: {
  45004. height: math.unit(9 + 8/12, "feet"),
  45005. weight: math.unit(800, "lb"),
  45006. name: "Front-dressed",
  45007. image: {
  45008. source: "./media/characters/sydney-heki/front-dressed.svg",
  45009. extra: 1360/1300,
  45010. bottom: 22/1382
  45011. }
  45012. },
  45013. },
  45014. [
  45015. {
  45016. name: "Normal",
  45017. height: math.unit(9 + 8/12, "feet"),
  45018. default: true
  45019. },
  45020. {
  45021. name: "Macro",
  45022. height: math.unit(500, "feet")
  45023. },
  45024. {
  45025. name: "Megamacro",
  45026. height: math.unit(3.6, "miles")
  45027. },
  45028. ]
  45029. ))
  45030. characterMakers.push(() => makeCharacter(
  45031. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45032. {
  45033. front: {
  45034. height: math.unit(200, "cm"),
  45035. weight: math.unit(250, "lb"),
  45036. name: "Front",
  45037. image: {
  45038. source: "./media/characters/fowler-karlsson/front.svg",
  45039. extra: 897/845,
  45040. bottom: 123/1020
  45041. }
  45042. },
  45043. back: {
  45044. height: math.unit(200, "cm"),
  45045. weight: math.unit(250, "lb"),
  45046. name: "Back",
  45047. image: {
  45048. source: "./media/characters/fowler-karlsson/back.svg",
  45049. extra: 999/944,
  45050. bottom: 26/1025
  45051. }
  45052. },
  45053. dick: {
  45054. height: math.unit(1.92, "feet"),
  45055. weight: math.unit(150, "lb"),
  45056. name: "Dick",
  45057. image: {
  45058. source: "./media/characters/fowler-karlsson/dick.svg"
  45059. }
  45060. },
  45061. },
  45062. [
  45063. {
  45064. name: "Normal",
  45065. height: math.unit(200, "cm"),
  45066. default: true
  45067. },
  45068. {
  45069. name: "Smaller Macro",
  45070. height: math.unit(90, "m")
  45071. },
  45072. {
  45073. name: "Macro",
  45074. height: math.unit(150, "m")
  45075. },
  45076. {
  45077. name: "Bigger Macro",
  45078. height: math.unit(300, "m")
  45079. },
  45080. ]
  45081. ))
  45082. characterMakers.push(() => makeCharacter(
  45083. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45084. {
  45085. side: {
  45086. height: math.unit(8 + 2/12, "feet"),
  45087. weight: math.unit(1, "tonne"),
  45088. name: "Side",
  45089. image: {
  45090. source: "./media/characters/rylide/side.svg",
  45091. extra: 1318/1034,
  45092. bottom: 106/1424
  45093. }
  45094. },
  45095. sitting: {
  45096. height: math.unit(303, "cm"),
  45097. weight: math.unit(1, "tonne"),
  45098. name: "Sitting",
  45099. image: {
  45100. source: "./media/characters/rylide/sitting.svg",
  45101. extra: 1303/1103,
  45102. bottom: 36/1339
  45103. }
  45104. },
  45105. },
  45106. [
  45107. {
  45108. name: "Normal",
  45109. height: math.unit(8 + 2/12, "feet"),
  45110. default: true
  45111. },
  45112. ]
  45113. ))
  45114. characterMakers.push(() => makeCharacter(
  45115. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45116. {
  45117. front: {
  45118. height: math.unit(5 + 10/12, "feet"),
  45119. weight: math.unit(160, "lb"),
  45120. name: "Front",
  45121. image: {
  45122. source: "./media/characters/pudask/front.svg",
  45123. extra: 1616/1590,
  45124. bottom: 161/1777
  45125. }
  45126. },
  45127. },
  45128. [
  45129. {
  45130. name: "Ferret Height",
  45131. height: math.unit(2 + 5/12, "feet")
  45132. },
  45133. {
  45134. name: "Canon Height",
  45135. height: math.unit(5 + 10/12, "feet"),
  45136. default: true
  45137. },
  45138. ]
  45139. ))
  45140. characterMakers.push(() => makeCharacter(
  45141. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45142. {
  45143. front: {
  45144. height: math.unit(3 + 6/12, "feet"),
  45145. weight: math.unit(60, "lb"),
  45146. name: "Front",
  45147. image: {
  45148. source: "./media/characters/ramita/front.svg",
  45149. extra: 1402/1232,
  45150. bottom: 62/1464
  45151. }
  45152. },
  45153. dressed: {
  45154. height: math.unit(3 + 6/12, "feet"),
  45155. weight: math.unit(60, "lb"),
  45156. name: "Dressed",
  45157. image: {
  45158. source: "./media/characters/ramita/dressed.svg",
  45159. extra: 1534/1249,
  45160. bottom: 50/1584
  45161. }
  45162. },
  45163. },
  45164. [
  45165. {
  45166. name: "Normal",
  45167. height: math.unit(3 + 6/12, "feet"),
  45168. default: true
  45169. },
  45170. ]
  45171. ))
  45172. characterMakers.push(() => makeCharacter(
  45173. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45174. {
  45175. front: {
  45176. height: math.unit(8, "feet"),
  45177. name: "Front",
  45178. image: {
  45179. source: "./media/characters/ark/front.svg",
  45180. extra: 772/693,
  45181. bottom: 45/817
  45182. }
  45183. },
  45184. },
  45185. [
  45186. {
  45187. name: "Normal",
  45188. height: math.unit(8, "feet"),
  45189. default: true
  45190. },
  45191. ]
  45192. ))
  45193. characterMakers.push(() => makeCharacter(
  45194. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45195. {
  45196. front: {
  45197. height: math.unit(6, "feet"),
  45198. weight: math.unit(250, "lb"),
  45199. volume: math.unit(5/8, "gallons"),
  45200. name: "Front",
  45201. image: {
  45202. source: "./media/characters/ludwig-horn/front.svg",
  45203. extra: 1782/1635,
  45204. bottom: 96/1878
  45205. }
  45206. },
  45207. back: {
  45208. height: math.unit(6, "feet"),
  45209. weight: math.unit(250, "lb"),
  45210. volume: math.unit(5/8, "gallons"),
  45211. name: "Back",
  45212. image: {
  45213. source: "./media/characters/ludwig-horn/back.svg",
  45214. extra: 1874/1729,
  45215. bottom: 27/1901
  45216. }
  45217. },
  45218. dick: {
  45219. height: math.unit(1.05, "feet"),
  45220. weight: math.unit(15, "lb"),
  45221. volume: math.unit(5/8, "gallons"),
  45222. name: "Dick",
  45223. image: {
  45224. source: "./media/characters/ludwig-horn/dick.svg"
  45225. }
  45226. },
  45227. },
  45228. [
  45229. {
  45230. name: "Small",
  45231. height: math.unit(6, "feet")
  45232. },
  45233. {
  45234. name: "Typical",
  45235. height: math.unit(12, "feet"),
  45236. default: true
  45237. },
  45238. {
  45239. name: "Building",
  45240. height: math.unit(80, "feet")
  45241. },
  45242. {
  45243. name: "Town",
  45244. height: math.unit(800, "feet")
  45245. },
  45246. {
  45247. name: "Kingdom",
  45248. height: math.unit(80000, "feet")
  45249. },
  45250. {
  45251. name: "Planet",
  45252. height: math.unit(8000000, "feet")
  45253. },
  45254. {
  45255. name: "Universe",
  45256. height: math.unit(8000000000, "feet")
  45257. },
  45258. {
  45259. name: "Transcended",
  45260. height: math.unit(8e27, "feet")
  45261. },
  45262. ]
  45263. ))
  45264. characterMakers.push(() => makeCharacter(
  45265. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45266. {
  45267. front: {
  45268. height: math.unit(5, "feet"),
  45269. weight: math.unit(50, "kg"),
  45270. name: "Front",
  45271. image: {
  45272. source: "./media/characters/biot-avery/front.svg",
  45273. extra: 1295/1232,
  45274. bottom: 86/1381
  45275. }
  45276. },
  45277. },
  45278. [
  45279. {
  45280. name: "Normal",
  45281. height: math.unit(5, "feet"),
  45282. default: true
  45283. },
  45284. ]
  45285. ))
  45286. characterMakers.push(() => makeCharacter(
  45287. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45288. {
  45289. front: {
  45290. height: math.unit(6, "feet"),
  45291. name: "Front",
  45292. image: {
  45293. source: "./media/characters/kitsune-kiro/front.svg",
  45294. extra: 1270/1158,
  45295. bottom: 42/1312
  45296. }
  45297. },
  45298. frontAlt: {
  45299. height: math.unit(6, "feet"),
  45300. name: "Front-alt",
  45301. image: {
  45302. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45303. extra: 1130/1081,
  45304. bottom: 36/1166
  45305. }
  45306. },
  45307. },
  45308. [
  45309. {
  45310. name: "Smol",
  45311. height: math.unit(3, "feet")
  45312. },
  45313. {
  45314. name: "Normal",
  45315. height: math.unit(6, "feet"),
  45316. default: true
  45317. },
  45318. ]
  45319. ))
  45320. characterMakers.push(() => makeCharacter(
  45321. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45322. {
  45323. front: {
  45324. height: math.unit(6, "feet"),
  45325. weight: math.unit(125, "lb"),
  45326. name: "Front",
  45327. image: {
  45328. source: "./media/characters/jack-thatcher/front.svg",
  45329. extra: 1474/1370,
  45330. bottom: 26/1500
  45331. }
  45332. },
  45333. back: {
  45334. height: math.unit(6, "feet"),
  45335. weight: math.unit(125, "lb"),
  45336. name: "Back",
  45337. image: {
  45338. source: "./media/characters/jack-thatcher/back.svg",
  45339. extra: 1489/1384,
  45340. bottom: 18/1507
  45341. }
  45342. },
  45343. },
  45344. [
  45345. {
  45346. name: "Normal",
  45347. height: math.unit(6, "feet"),
  45348. default: true
  45349. },
  45350. {
  45351. name: "Macro",
  45352. height: math.unit(75, "feet")
  45353. },
  45354. {
  45355. name: "Macro-er",
  45356. height: math.unit(250, "feet")
  45357. },
  45358. ]
  45359. ))
  45360. characterMakers.push(() => makeCharacter(
  45361. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45362. {
  45363. front: {
  45364. height: math.unit(7, "feet"),
  45365. weight: math.unit(110, "kg"),
  45366. name: "Front",
  45367. image: {
  45368. source: "./media/characters/max-hyper/front.svg",
  45369. extra: 1969/1881,
  45370. bottom: 49/2018
  45371. }
  45372. },
  45373. },
  45374. [
  45375. {
  45376. name: "Normal",
  45377. height: math.unit(7, "feet"),
  45378. default: true
  45379. },
  45380. ]
  45381. ))
  45382. characterMakers.push(() => makeCharacter(
  45383. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45384. {
  45385. front: {
  45386. height: math.unit(5 + 5/12, "feet"),
  45387. weight: math.unit(160, "lb"),
  45388. name: "Front",
  45389. image: {
  45390. source: "./media/characters/spook/front.svg",
  45391. extra: 794/791,
  45392. bottom: 54/848
  45393. }
  45394. },
  45395. back: {
  45396. height: math.unit(5 + 5/12, "feet"),
  45397. weight: math.unit(160, "lb"),
  45398. name: "Back",
  45399. image: {
  45400. source: "./media/characters/spook/back.svg",
  45401. extra: 812/798,
  45402. bottom: 32/844
  45403. }
  45404. },
  45405. },
  45406. [
  45407. {
  45408. name: "Normal",
  45409. height: math.unit(5 + 5/12, "feet"),
  45410. default: true
  45411. },
  45412. ]
  45413. ))
  45414. characterMakers.push(() => makeCharacter(
  45415. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45416. {
  45417. front: {
  45418. height: math.unit(18, "feet"),
  45419. name: "Front",
  45420. image: {
  45421. source: "./media/characters/xeaduulix/front.svg",
  45422. extra: 1380/1166,
  45423. bottom: 110/1490
  45424. }
  45425. },
  45426. back: {
  45427. height: math.unit(18, "feet"),
  45428. name: "Back",
  45429. image: {
  45430. source: "./media/characters/xeaduulix/back.svg",
  45431. extra: 1592/1170,
  45432. bottom: 128/1720
  45433. }
  45434. },
  45435. frontNsfw: {
  45436. height: math.unit(18, "feet"),
  45437. name: "Front (NSFW)",
  45438. image: {
  45439. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45440. extra: 1380/1166,
  45441. bottom: 110/1490
  45442. }
  45443. },
  45444. backNsfw: {
  45445. height: math.unit(18, "feet"),
  45446. name: "Back (NSFW)",
  45447. image: {
  45448. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45449. extra: 1592/1170,
  45450. bottom: 128/1720
  45451. }
  45452. },
  45453. },
  45454. [
  45455. {
  45456. name: "Normal",
  45457. height: math.unit(18, "feet"),
  45458. default: true
  45459. },
  45460. ]
  45461. ))
  45462. characterMakers.push(() => makeCharacter(
  45463. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45464. {
  45465. spreadWings: {
  45466. height: math.unit(20, "feet"),
  45467. name: "Spread Wings",
  45468. image: {
  45469. source: "./media/characters/fledge/spread-wings.svg",
  45470. extra: 693/635,
  45471. bottom: 26/719
  45472. }
  45473. },
  45474. front: {
  45475. height: math.unit(20, "feet"),
  45476. name: "Front",
  45477. image: {
  45478. source: "./media/characters/fledge/front.svg",
  45479. extra: 684/637,
  45480. bottom: 18/702
  45481. }
  45482. },
  45483. frontAlt: {
  45484. height: math.unit(20, "feet"),
  45485. name: "Front (Alt)",
  45486. image: {
  45487. source: "./media/characters/fledge/front-alt.svg",
  45488. extra: 708/664,
  45489. bottom: 13/721
  45490. }
  45491. },
  45492. back: {
  45493. height: math.unit(20, "feet"),
  45494. name: "Back",
  45495. image: {
  45496. source: "./media/characters/fledge/back.svg",
  45497. extra: 718/634,
  45498. bottom: 22/740
  45499. }
  45500. },
  45501. head: {
  45502. height: math.unit(5.55, "feet"),
  45503. name: "Head",
  45504. image: {
  45505. source: "./media/characters/fledge/head.svg"
  45506. }
  45507. },
  45508. headAlt: {
  45509. height: math.unit(5.1, "feet"),
  45510. name: "Head (Alt)",
  45511. image: {
  45512. source: "./media/characters/fledge/head-alt.svg"
  45513. }
  45514. },
  45515. },
  45516. [
  45517. {
  45518. name: "Small",
  45519. height: math.unit(6 + 2/12, "feet")
  45520. },
  45521. {
  45522. name: "Big",
  45523. height: math.unit(20, "feet"),
  45524. default: true
  45525. },
  45526. {
  45527. name: "Giant",
  45528. height: math.unit(100, "feet")
  45529. },
  45530. {
  45531. name: "Macro",
  45532. height: math.unit(200, "feet")
  45533. },
  45534. ]
  45535. ))
  45536. characterMakers.push(() => makeCharacter(
  45537. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45538. {
  45539. front: {
  45540. height: math.unit(1, "meter"),
  45541. name: "Front",
  45542. image: {
  45543. source: "./media/characters/atlas-morenai/front.svg",
  45544. extra: 1275/1043,
  45545. bottom: 19/1294
  45546. }
  45547. },
  45548. back: {
  45549. height: math.unit(1, "meter"),
  45550. name: "Back",
  45551. image: {
  45552. source: "./media/characters/atlas-morenai/back.svg",
  45553. extra: 1141/1001,
  45554. bottom: 25/1166
  45555. }
  45556. },
  45557. },
  45558. [
  45559. {
  45560. name: "Normal",
  45561. height: math.unit(1, "meter"),
  45562. default: true
  45563. },
  45564. {
  45565. name: "Magic-Infused",
  45566. height: math.unit(5, "meters")
  45567. },
  45568. ]
  45569. ))
  45570. characterMakers.push(() => makeCharacter(
  45571. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45572. {
  45573. front: {
  45574. height: math.unit(5, "meters"),
  45575. name: "Front",
  45576. image: {
  45577. source: "./media/characters/cintia/front.svg",
  45578. extra: 1312/1228,
  45579. bottom: 38/1350
  45580. }
  45581. },
  45582. back: {
  45583. height: math.unit(5, "meters"),
  45584. name: "Back",
  45585. image: {
  45586. source: "./media/characters/cintia/back.svg",
  45587. extra: 1260/1166,
  45588. bottom: 98/1358
  45589. }
  45590. },
  45591. frontDick: {
  45592. height: math.unit(5, "meters"),
  45593. name: "Front (Dick)",
  45594. image: {
  45595. source: "./media/characters/cintia/front-dick.svg",
  45596. extra: 1312/1228,
  45597. bottom: 38/1350
  45598. }
  45599. },
  45600. backDick: {
  45601. height: math.unit(5, "meters"),
  45602. name: "Back (Dick)",
  45603. image: {
  45604. source: "./media/characters/cintia/back-dick.svg",
  45605. extra: 1260/1166,
  45606. bottom: 98/1358
  45607. }
  45608. },
  45609. bust: {
  45610. height: math.unit(1.97, "meters"),
  45611. name: "Bust",
  45612. image: {
  45613. source: "./media/characters/cintia/bust.svg",
  45614. extra: 617/565,
  45615. bottom: 0/617
  45616. }
  45617. },
  45618. },
  45619. [
  45620. {
  45621. name: "Normal",
  45622. height: math.unit(5, "meters"),
  45623. default: true
  45624. },
  45625. ]
  45626. ))
  45627. characterMakers.push(() => makeCharacter(
  45628. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45629. {
  45630. side: {
  45631. height: math.unit(100, "feet"),
  45632. name: "Side",
  45633. image: {
  45634. source: "./media/characters/denora/side.svg",
  45635. extra: 875/803,
  45636. bottom: 9/884
  45637. }
  45638. },
  45639. },
  45640. [
  45641. {
  45642. name: "Standard",
  45643. height: math.unit(100, "feet"),
  45644. default: true
  45645. },
  45646. {
  45647. name: "Grand",
  45648. height: math.unit(1000, "feet")
  45649. },
  45650. {
  45651. name: "Conquering",
  45652. height: math.unit(10000, "feet")
  45653. },
  45654. ]
  45655. ))
  45656. characterMakers.push(() => makeCharacter(
  45657. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45658. {
  45659. dressed: {
  45660. height: math.unit(8 + 5/12, "feet"),
  45661. weight: math.unit(700, "lb"),
  45662. name: "Dressed",
  45663. image: {
  45664. source: "./media/characters/kiva/dressed.svg",
  45665. extra: 1102/1055,
  45666. bottom: 60/1162
  45667. }
  45668. },
  45669. nude: {
  45670. height: math.unit(8 + 5/12, "feet"),
  45671. weight: math.unit(700, "lb"),
  45672. name: "Nude",
  45673. image: {
  45674. source: "./media/characters/kiva/nude.svg",
  45675. extra: 1102/1055,
  45676. bottom: 60/1162
  45677. }
  45678. },
  45679. },
  45680. [
  45681. {
  45682. name: "Base Height",
  45683. height: math.unit(8 + 5/12, "feet"),
  45684. default: true
  45685. },
  45686. {
  45687. name: "Macro",
  45688. height: math.unit(100, "feet")
  45689. },
  45690. {
  45691. name: "Max",
  45692. height: math.unit(3280, "feet")
  45693. },
  45694. ]
  45695. ))
  45696. characterMakers.push(() => makeCharacter(
  45697. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45698. {
  45699. front: {
  45700. height: math.unit(6 + 8/12, "feet"),
  45701. weight: math.unit(250, "lb"),
  45702. name: "Front",
  45703. image: {
  45704. source: "./media/characters/ztragon/front.svg",
  45705. extra: 1825/1684,
  45706. bottom: 98/1923
  45707. }
  45708. },
  45709. },
  45710. [
  45711. {
  45712. name: "Normal",
  45713. height: math.unit(6 + 8/12, "feet"),
  45714. default: true
  45715. },
  45716. {
  45717. name: "Macro",
  45718. height: math.unit(80, "feet")
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45724. {
  45725. front: {
  45726. height: math.unit(10.4, "feet"),
  45727. weight: math.unit(2, "tons"),
  45728. name: "Front",
  45729. image: {
  45730. source: "./media/characters/yesenia/front.svg",
  45731. extra: 1479/1474,
  45732. bottom: 233/1712
  45733. }
  45734. },
  45735. },
  45736. [
  45737. {
  45738. name: "Normal",
  45739. height: math.unit(10.4, "feet"),
  45740. default: true
  45741. },
  45742. ]
  45743. ))
  45744. characterMakers.push(() => makeCharacter(
  45745. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45746. {
  45747. normal: {
  45748. height: math.unit(6 + 1/12, "feet"),
  45749. weight: math.unit(180, "lb"),
  45750. name: "Normal",
  45751. image: {
  45752. source: "./media/characters/leanne-lycheborne/normal.svg",
  45753. extra: 1748/1660,
  45754. bottom: 98/1846
  45755. }
  45756. },
  45757. were: {
  45758. height: math.unit(12, "feet"),
  45759. weight: math.unit(1600, "lb"),
  45760. name: "Were",
  45761. image: {
  45762. source: "./media/characters/leanne-lycheborne/were.svg",
  45763. extra: 1485/1432,
  45764. bottom: 66/1551
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Normal",
  45771. height: math.unit(6 + 1/12, "feet"),
  45772. default: true
  45773. },
  45774. ]
  45775. ))
  45776. characterMakers.push(() => makeCharacter(
  45777. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45778. {
  45779. side: {
  45780. height: math.unit(13, "feet"),
  45781. name: "Side",
  45782. image: {
  45783. source: "./media/characters/kira-tyler/side.svg",
  45784. extra: 693/393,
  45785. bottom: 58/751
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Normal",
  45792. height: math.unit(13, "feet"),
  45793. default: true
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45799. {
  45800. front: {
  45801. height: math.unit(10.3, "feet"),
  45802. weight: math.unit(150, "lb"),
  45803. name: "Front",
  45804. image: {
  45805. source: "./media/characters/blaze/front.svg",
  45806. extra: 1378/1286,
  45807. bottom: 172/1550
  45808. }
  45809. },
  45810. },
  45811. [
  45812. {
  45813. name: "Normal",
  45814. height: math.unit(10.3, "feet"),
  45815. default: true
  45816. },
  45817. ]
  45818. ))
  45819. characterMakers.push(() => makeCharacter(
  45820. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45821. {
  45822. side: {
  45823. height: math.unit(2, "meters"),
  45824. weight: math.unit(400, "kg"),
  45825. name: "Side",
  45826. image: {
  45827. source: "./media/characters/anu/side.svg",
  45828. extra: 506/394,
  45829. bottom: 18/524
  45830. }
  45831. },
  45832. },
  45833. [
  45834. {
  45835. name: "Humanoid",
  45836. height: math.unit(2, "meters")
  45837. },
  45838. {
  45839. name: "Normal",
  45840. height: math.unit(5, "meters"),
  45841. default: true
  45842. },
  45843. ]
  45844. ))
  45845. characterMakers.push(() => makeCharacter(
  45846. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45847. {
  45848. front: {
  45849. height: math.unit(5 + 5/12, "feet"),
  45850. weight: math.unit(170, "lb"),
  45851. name: "Front",
  45852. image: {
  45853. source: "./media/characters/synx-the-lynx/front.svg",
  45854. extra: 1893/1745,
  45855. bottom: 17/1910
  45856. }
  45857. },
  45858. side: {
  45859. height: math.unit(5 + 5/12, "feet"),
  45860. weight: math.unit(170, "lb"),
  45861. name: "Side",
  45862. image: {
  45863. source: "./media/characters/synx-the-lynx/side.svg",
  45864. extra: 1884/1740,
  45865. bottom: 39/1923
  45866. }
  45867. },
  45868. back: {
  45869. height: math.unit(5 + 5/12, "feet"),
  45870. weight: math.unit(170, "lb"),
  45871. name: "Back",
  45872. image: {
  45873. source: "./media/characters/synx-the-lynx/back.svg",
  45874. extra: 1903/1755,
  45875. bottom: 14/1917
  45876. }
  45877. },
  45878. },
  45879. [
  45880. {
  45881. name: "Normal",
  45882. height: math.unit(5 + 5/12, "feet"),
  45883. default: true
  45884. },
  45885. ]
  45886. ))
  45887. characterMakers.push(() => makeCharacter(
  45888. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45889. {
  45890. back: {
  45891. height: math.unit(15, "feet"),
  45892. name: "Back",
  45893. image: {
  45894. source: "./media/characters/nadezda-fex/back.svg",
  45895. extra: 1695/1481,
  45896. bottom: 25/1720
  45897. }
  45898. },
  45899. },
  45900. [
  45901. {
  45902. name: "Normal",
  45903. height: math.unit(15, "feet"),
  45904. default: true
  45905. },
  45906. {
  45907. name: "Macro",
  45908. height: math.unit(2.5, "miles")
  45909. },
  45910. {
  45911. name: "Goddess",
  45912. height: math.unit(2, "multiverses")
  45913. },
  45914. ]
  45915. ))
  45916. characterMakers.push(() => makeCharacter(
  45917. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45918. {
  45919. front: {
  45920. height: math.unit(216, "cm"),
  45921. name: "Front",
  45922. image: {
  45923. source: "./media/characters/lev/front.svg",
  45924. extra: 1728/1670,
  45925. bottom: 82/1810
  45926. }
  45927. },
  45928. back: {
  45929. height: math.unit(216, "cm"),
  45930. name: "Back",
  45931. image: {
  45932. source: "./media/characters/lev/back.svg",
  45933. extra: 1738/1675,
  45934. bottom: 24/1762
  45935. }
  45936. },
  45937. dressed: {
  45938. height: math.unit(216, "cm"),
  45939. name: "Dressed",
  45940. image: {
  45941. source: "./media/characters/lev/dressed.svg",
  45942. extra: 1397/1351,
  45943. bottom: 73/1470
  45944. }
  45945. },
  45946. head: {
  45947. height: math.unit(0.51, "meter"),
  45948. name: "Head",
  45949. image: {
  45950. source: "./media/characters/lev/head.svg"
  45951. }
  45952. },
  45953. },
  45954. [
  45955. {
  45956. name: "Normal",
  45957. height: math.unit(216, "cm"),
  45958. default: true
  45959. },
  45960. {
  45961. name: "Relatively Macro",
  45962. height: math.unit(80, "meters")
  45963. },
  45964. {
  45965. name: "Megamacro",
  45966. height: math.unit(21600, "meters")
  45967. },
  45968. {
  45969. name: "Megamacro+",
  45970. height: math.unit(64800, "meters")
  45971. },
  45972. ]
  45973. ))
  45974. characterMakers.push(() => makeCharacter(
  45975. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45976. {
  45977. front: {
  45978. height: math.unit(2, "meters"),
  45979. weight: math.unit(80, "kg"),
  45980. name: "Front",
  45981. image: {
  45982. source: "./media/characters/moka/front.svg",
  45983. extra: 1337/1255,
  45984. bottom: 58/1395
  45985. }
  45986. },
  45987. },
  45988. [
  45989. {
  45990. name: "Micro",
  45991. height: math.unit(15, "cm")
  45992. },
  45993. {
  45994. name: "Normal",
  45995. height: math.unit(2, "meters"),
  45996. default: true
  45997. },
  45998. {
  45999. name: "Macro",
  46000. height: math.unit(20, "meters"),
  46001. },
  46002. ]
  46003. ))
  46004. characterMakers.push(() => makeCharacter(
  46005. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46006. {
  46007. front: {
  46008. height: math.unit(9, "feet"),
  46009. weight: math.unit(240, "lb"),
  46010. name: "Front",
  46011. image: {
  46012. source: "./media/characters/kuzco/front.svg",
  46013. extra: 1593/1487,
  46014. bottom: 32/1625
  46015. }
  46016. },
  46017. side: {
  46018. height: math.unit(9, "feet"),
  46019. weight: math.unit(240, "lb"),
  46020. name: "Side",
  46021. image: {
  46022. source: "./media/characters/kuzco/side.svg",
  46023. extra: 1575/1485,
  46024. bottom: 30/1605
  46025. }
  46026. },
  46027. back: {
  46028. height: math.unit(9, "feet"),
  46029. weight: math.unit(240, "lb"),
  46030. name: "Back",
  46031. image: {
  46032. source: "./media/characters/kuzco/back.svg",
  46033. extra: 1603/1514,
  46034. bottom: 14/1617
  46035. }
  46036. },
  46037. },
  46038. [
  46039. {
  46040. name: "Normal",
  46041. height: math.unit(9, "feet"),
  46042. default: true
  46043. },
  46044. ]
  46045. ))
  46046. characterMakers.push(() => makeCharacter(
  46047. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46048. {
  46049. side: {
  46050. height: math.unit(2, "meters"),
  46051. weight: math.unit(300, "kg"),
  46052. name: "Side",
  46053. image: {
  46054. source: "./media/characters/ceruleus/side.svg",
  46055. extra: 1068/974,
  46056. bottom: 126/1194
  46057. }
  46058. },
  46059. },
  46060. [
  46061. {
  46062. name: "Normal",
  46063. height: math.unit(16, "meters"),
  46064. default: true
  46065. },
  46066. ]
  46067. ))
  46068. characterMakers.push(() => makeCharacter(
  46069. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46070. {
  46071. front: {
  46072. height: math.unit(9, "feet"),
  46073. weight: math.unit(500, "kg"),
  46074. name: "Front",
  46075. image: {
  46076. source: "./media/characters/acouya/front.svg",
  46077. extra: 1660/1473,
  46078. bottom: 28/1688
  46079. }
  46080. },
  46081. },
  46082. [
  46083. {
  46084. name: "Normal",
  46085. height: math.unit(9, "feet"),
  46086. default: true
  46087. },
  46088. ]
  46089. ))
  46090. characterMakers.push(() => makeCharacter(
  46091. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46092. {
  46093. front: {
  46094. height: math.unit(5 + 6/12, "feet"),
  46095. weight: math.unit(195, "lb"),
  46096. name: "Front",
  46097. image: {
  46098. source: "./media/characters/vant/front.svg",
  46099. extra: 1396/1320,
  46100. bottom: 20/1416
  46101. }
  46102. },
  46103. back: {
  46104. height: math.unit(5 + 6/12, "feet"),
  46105. weight: math.unit(195, "lb"),
  46106. name: "Back",
  46107. image: {
  46108. source: "./media/characters/vant/back.svg",
  46109. extra: 1396/1320,
  46110. bottom: 20/1416
  46111. }
  46112. },
  46113. maw: {
  46114. height: math.unit(0.75, "feet"),
  46115. name: "Maw",
  46116. image: {
  46117. source: "./media/characters/vant/maw.svg"
  46118. }
  46119. },
  46120. paw: {
  46121. height: math.unit(1.07, "feet"),
  46122. name: "Paw",
  46123. image: {
  46124. source: "./media/characters/vant/paw.svg"
  46125. }
  46126. },
  46127. },
  46128. [
  46129. {
  46130. name: "Micro",
  46131. height: math.unit(0.25, "inches")
  46132. },
  46133. {
  46134. name: "Normal",
  46135. height: math.unit(5 + 6/12, "feet"),
  46136. default: true
  46137. },
  46138. {
  46139. name: "Macro",
  46140. height: math.unit(75, "feet")
  46141. },
  46142. ]
  46143. ))
  46144. characterMakers.push(() => makeCharacter(
  46145. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46146. {
  46147. front: {
  46148. height: math.unit(30, "meters"),
  46149. weight: math.unit(363, "tons"),
  46150. name: "Front",
  46151. image: {
  46152. source: "./media/characters/ahra/front.svg",
  46153. extra: 1914/1814,
  46154. bottom: 46/1960
  46155. }
  46156. },
  46157. },
  46158. [
  46159. {
  46160. name: "Macro",
  46161. height: math.unit(30, "meters"),
  46162. default: true
  46163. },
  46164. ]
  46165. ))
  46166. characterMakers.push(() => makeCharacter(
  46167. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46168. {
  46169. undressed: {
  46170. height: math.unit(2, "m"),
  46171. weight: math.unit(250, "kg"),
  46172. name: "Undressed",
  46173. image: {
  46174. source: "./media/characters/coriander/undressed.svg",
  46175. extra: 1757/1606,
  46176. bottom: 107/1864
  46177. }
  46178. },
  46179. dressed: {
  46180. height: math.unit(2, "m"),
  46181. weight: math.unit(250, "kg"),
  46182. name: "Dressed",
  46183. image: {
  46184. source: "./media/characters/coriander/dressed.svg",
  46185. extra: 1757/1606,
  46186. bottom: 107/1864
  46187. }
  46188. },
  46189. },
  46190. [
  46191. {
  46192. name: "Normal",
  46193. height: math.unit(4, "meters"),
  46194. default: true
  46195. },
  46196. {
  46197. name: "XL",
  46198. height: math.unit(6, "meters")
  46199. },
  46200. {
  46201. name: "XXL",
  46202. height: math.unit(8, "meters")
  46203. },
  46204. ]
  46205. ))
  46206. characterMakers.push(() => makeCharacter(
  46207. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46208. {
  46209. front: {
  46210. height: math.unit(6, "feet"),
  46211. name: "Front",
  46212. image: {
  46213. source: "./media/characters/syrinx/front.svg",
  46214. extra: 1557/1259,
  46215. bottom: 171/1728
  46216. }
  46217. },
  46218. },
  46219. [
  46220. {
  46221. name: "Normal",
  46222. height: math.unit(6 + 3/12, "feet"),
  46223. default: true
  46224. },
  46225. ]
  46226. ))
  46227. characterMakers.push(() => makeCharacter(
  46228. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46229. {
  46230. front: {
  46231. height: math.unit(11 + 6/12, "feet"),
  46232. weight: math.unit(1.5, "tons"),
  46233. name: "Front",
  46234. image: {
  46235. source: "./media/characters/bor/front.svg",
  46236. extra: 1189/1109,
  46237. bottom: 170/1359
  46238. }
  46239. },
  46240. },
  46241. [
  46242. {
  46243. name: "Normal",
  46244. height: math.unit(11 + 6/12, "feet"),
  46245. default: true
  46246. },
  46247. {
  46248. name: "Macro",
  46249. height: math.unit(32 + 9/12, "feet")
  46250. },
  46251. ]
  46252. ))
  46253. characterMakers.push(() => makeCharacter(
  46254. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46255. {
  46256. anthro: {
  46257. height: math.unit(9, "feet"),
  46258. weight: math.unit(2076, "lb"),
  46259. name: "Anthro",
  46260. image: {
  46261. source: "./media/characters/abacus/anthro.svg",
  46262. extra: 1540/1494,
  46263. bottom: 233/1773
  46264. }
  46265. },
  46266. pigeon: {
  46267. height: math.unit(1, "feet"),
  46268. name: "Pigeon",
  46269. image: {
  46270. source: "./media/characters/abacus/pigeon.svg",
  46271. extra: 528/525,
  46272. bottom: 46/574
  46273. }
  46274. },
  46275. },
  46276. [
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(9, "feet"),
  46280. default: true
  46281. },
  46282. ]
  46283. ))
  46284. characterMakers.push(() => makeCharacter(
  46285. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46286. {
  46287. side: {
  46288. height: math.unit(6, "feet"),
  46289. name: "Side",
  46290. image: {
  46291. source: "./media/characters/delkhan/side.svg",
  46292. extra: 1884/1786,
  46293. bottom: 308/2192
  46294. }
  46295. },
  46296. head: {
  46297. height: math.unit(3.38, "feet"),
  46298. name: "Head",
  46299. image: {
  46300. source: "./media/characters/delkhan/head.svg"
  46301. }
  46302. },
  46303. },
  46304. [
  46305. {
  46306. name: "Normal",
  46307. height: math.unit(72, "feet"),
  46308. default: true
  46309. },
  46310. {
  46311. name: "Giant",
  46312. height: math.unit(172, "feet")
  46313. },
  46314. ]
  46315. ))
  46316. characterMakers.push(() => makeCharacter(
  46317. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46318. {
  46319. standing: {
  46320. height: math.unit(6, "feet"),
  46321. name: "Standing",
  46322. image: {
  46323. source: "./media/characters/euchidat/standing.svg",
  46324. extra: 1612/1553,
  46325. bottom: 116/1728
  46326. }
  46327. },
  46328. leaning: {
  46329. height: math.unit(6, "feet"),
  46330. name: "Leaning",
  46331. image: {
  46332. source: "./media/characters/euchidat/leaning.svg",
  46333. extra: 1719/1674,
  46334. bottom: 27/1746
  46335. }
  46336. },
  46337. },
  46338. [
  46339. {
  46340. name: "Normal",
  46341. height: math.unit(175, "feet"),
  46342. default: true
  46343. },
  46344. {
  46345. name: "Megamacro",
  46346. height: math.unit(190, "miles")
  46347. },
  46348. {
  46349. name: "Gigamacro",
  46350. height: math.unit(190000, "miles")
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46356. {
  46357. front: {
  46358. height: math.unit(6, "feet"),
  46359. weight: math.unit(150, "lb"),
  46360. name: "Front",
  46361. image: {
  46362. source: "./media/characters/rebecca-stack/front.svg",
  46363. extra: 1256/1201,
  46364. bottom: 18/1274
  46365. }
  46366. },
  46367. },
  46368. [
  46369. {
  46370. name: "Normal",
  46371. height: math.unit(5 + 8/12, "feet"),
  46372. default: true
  46373. },
  46374. {
  46375. name: "Demolitionist",
  46376. height: math.unit(200, "feet")
  46377. },
  46378. {
  46379. name: "Out of Control",
  46380. height: math.unit(2, "miles")
  46381. },
  46382. {
  46383. name: "Giga",
  46384. height: math.unit(7200, "miles")
  46385. },
  46386. ]
  46387. ))
  46388. characterMakers.push(() => makeCharacter(
  46389. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46390. {
  46391. front: {
  46392. height: math.unit(6, "feet"),
  46393. weight: math.unit(150, "lb"),
  46394. name: "Front",
  46395. image: {
  46396. source: "./media/characters/jenny-cartwright/front.svg",
  46397. extra: 1384/1376,
  46398. bottom: 58/1442
  46399. }
  46400. },
  46401. },
  46402. [
  46403. {
  46404. name: "Normal",
  46405. height: math.unit(6 + 7/12, "feet"),
  46406. default: true
  46407. },
  46408. {
  46409. name: "Librarian",
  46410. height: math.unit(55, "feet")
  46411. },
  46412. {
  46413. name: "Sightseer",
  46414. height: math.unit(50, "miles")
  46415. },
  46416. {
  46417. name: "Giga",
  46418. height: math.unit(30000, "miles")
  46419. },
  46420. ]
  46421. ))
  46422. characterMakers.push(() => makeCharacter(
  46423. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46424. {
  46425. nude: {
  46426. height: math.unit(8, "feet"),
  46427. weight: math.unit(225, "lb"),
  46428. name: "Nude",
  46429. image: {
  46430. source: "./media/characters/marvy/nude.svg",
  46431. extra: 1900/1683,
  46432. bottom: 89/1989
  46433. }
  46434. },
  46435. dressed: {
  46436. height: math.unit(8, "feet"),
  46437. weight: math.unit(225, "lb"),
  46438. name: "Dressed",
  46439. image: {
  46440. source: "./media/characters/marvy/dressed.svg",
  46441. extra: 1900/1683,
  46442. bottom: 89/1989
  46443. }
  46444. },
  46445. head: {
  46446. height: math.unit(2.85, "feet"),
  46447. name: "Head",
  46448. image: {
  46449. source: "./media/characters/marvy/head.svg"
  46450. }
  46451. },
  46452. },
  46453. [
  46454. {
  46455. name: "Normal",
  46456. height: math.unit(8, "feet"),
  46457. default: true
  46458. },
  46459. ]
  46460. ))
  46461. characterMakers.push(() => makeCharacter(
  46462. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46463. {
  46464. front: {
  46465. height: math.unit(8, "feet"),
  46466. weight: math.unit(250, "lb"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/leah/front.svg",
  46470. extra: 1257/1149,
  46471. bottom: 109/1366
  46472. }
  46473. },
  46474. },
  46475. [
  46476. {
  46477. name: "Normal",
  46478. height: math.unit(8, "feet"),
  46479. default: true
  46480. },
  46481. {
  46482. name: "Minimacro",
  46483. height: math.unit(40, "feet")
  46484. },
  46485. {
  46486. name: "Macro",
  46487. height: math.unit(124, "feet")
  46488. },
  46489. {
  46490. name: "Megamacro",
  46491. height: math.unit(850, "feet")
  46492. },
  46493. ]
  46494. ))
  46495. characterMakers.push(() => makeCharacter(
  46496. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46497. {
  46498. side: {
  46499. height: math.unit(13 + 6/12, "feet"),
  46500. weight: math.unit(3200, "lb"),
  46501. name: "Side",
  46502. image: {
  46503. source: "./media/characters/alvir/side.svg",
  46504. extra: 896/589,
  46505. bottom: 26/922
  46506. }
  46507. },
  46508. },
  46509. [
  46510. {
  46511. name: "Normal",
  46512. height: math.unit(13 + 6/12, "feet"),
  46513. default: true
  46514. },
  46515. ]
  46516. ))
  46517. characterMakers.push(() => makeCharacter(
  46518. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46519. {
  46520. front: {
  46521. height: math.unit(5 + 4/12, "feet"),
  46522. weight: math.unit(236, "lb"),
  46523. name: "Front",
  46524. image: {
  46525. source: "./media/characters/zaina-khalil/front.svg",
  46526. extra: 1533/1485,
  46527. bottom: 94/1627
  46528. }
  46529. },
  46530. side: {
  46531. height: math.unit(5 + 4/12, "feet"),
  46532. weight: math.unit(236, "lb"),
  46533. name: "Side",
  46534. image: {
  46535. source: "./media/characters/zaina-khalil/side.svg",
  46536. extra: 1537/1498,
  46537. bottom: 66/1603
  46538. }
  46539. },
  46540. back: {
  46541. height: math.unit(5 + 4/12, "feet"),
  46542. weight: math.unit(236, "lb"),
  46543. name: "Back",
  46544. image: {
  46545. source: "./media/characters/zaina-khalil/back.svg",
  46546. extra: 1546/1494,
  46547. bottom: 89/1635
  46548. }
  46549. },
  46550. },
  46551. [
  46552. {
  46553. name: "Normal",
  46554. height: math.unit(5 + 4/12, "feet"),
  46555. default: true
  46556. },
  46557. ]
  46558. ))
  46559. characterMakers.push(() => makeCharacter(
  46560. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46561. {
  46562. side: {
  46563. height: math.unit(12, "feet"),
  46564. weight: math.unit(4000, "lb"),
  46565. name: "Side",
  46566. image: {
  46567. source: "./media/characters/terry/side.svg",
  46568. extra: 1518/1439,
  46569. bottom: 149/1667
  46570. }
  46571. },
  46572. },
  46573. [
  46574. {
  46575. name: "Normal",
  46576. height: math.unit(12, "feet"),
  46577. default: true
  46578. },
  46579. ]
  46580. ))
  46581. characterMakers.push(() => makeCharacter(
  46582. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46583. {
  46584. front: {
  46585. height: math.unit(12, "feet"),
  46586. weight: math.unit(1500, "lb"),
  46587. name: "Front",
  46588. image: {
  46589. source: "./media/characters/kahea/front.svg",
  46590. extra: 1722/1617,
  46591. bottom: 179/1901
  46592. }
  46593. },
  46594. },
  46595. [
  46596. {
  46597. name: "Normal",
  46598. height: math.unit(12, "feet"),
  46599. default: true
  46600. },
  46601. ]
  46602. ))
  46603. characterMakers.push(() => makeCharacter(
  46604. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46605. {
  46606. demonFront: {
  46607. height: math.unit(36, "feet"),
  46608. name: "Front",
  46609. image: {
  46610. source: "./media/characters/alex-xuria/demon-front.svg",
  46611. extra: 1705/1673,
  46612. bottom: 198/1903
  46613. },
  46614. form: "demon",
  46615. default: true
  46616. },
  46617. demonBack: {
  46618. height: math.unit(36, "feet"),
  46619. name: "Back",
  46620. image: {
  46621. source: "./media/characters/alex-xuria/demon-back.svg",
  46622. extra: 1725/1693,
  46623. bottom: 70/1795
  46624. },
  46625. form: "demon"
  46626. },
  46627. demonHead: {
  46628. height: math.unit(2.14, "meters"),
  46629. name: "Head",
  46630. image: {
  46631. source: "./media/characters/alex-xuria/demon-head.svg"
  46632. },
  46633. form: "demon"
  46634. },
  46635. demonHand: {
  46636. height: math.unit(1.61, "meters"),
  46637. name: "Hand",
  46638. image: {
  46639. source: "./media/characters/alex-xuria/demon-hand.svg"
  46640. },
  46641. form: "demon"
  46642. },
  46643. demonPaw: {
  46644. height: math.unit(1.35, "meters"),
  46645. name: "Paw",
  46646. image: {
  46647. source: "./media/characters/alex-xuria/demon-paw.svg"
  46648. },
  46649. form: "demon"
  46650. },
  46651. demonFoot: {
  46652. height: math.unit(2.2, "meters"),
  46653. name: "Foot",
  46654. image: {
  46655. source: "./media/characters/alex-xuria/demon-foot.svg"
  46656. },
  46657. form: "demon"
  46658. },
  46659. demonCock: {
  46660. height: math.unit(1.74, "meters"),
  46661. name: "Cock",
  46662. image: {
  46663. source: "./media/characters/alex-xuria/demon-cock.svg"
  46664. },
  46665. form: "demon"
  46666. },
  46667. demonTailClosed: {
  46668. height: math.unit(1.47, "meters"),
  46669. name: "Tail (Closed)",
  46670. image: {
  46671. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46672. },
  46673. form: "demon"
  46674. },
  46675. demonTailOpen: {
  46676. height: math.unit(2.85, "meters"),
  46677. name: "Tail (Open)",
  46678. image: {
  46679. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46680. },
  46681. form: "demon"
  46682. },
  46683. incubusFront: {
  46684. height: math.unit(12, "feet"),
  46685. name: "Front",
  46686. image: {
  46687. source: "./media/characters/alex-xuria/incubus-front.svg",
  46688. extra: 1754/1677,
  46689. bottom: 125/1879
  46690. },
  46691. form: "incubus",
  46692. default: true
  46693. },
  46694. incubusBack: {
  46695. height: math.unit(12, "feet"),
  46696. name: "Back",
  46697. image: {
  46698. source: "./media/characters/alex-xuria/incubus-back.svg",
  46699. extra: 1702/1647,
  46700. bottom: 30/1732
  46701. },
  46702. form: "incubus"
  46703. },
  46704. incubusHead: {
  46705. height: math.unit(3.45, "feet"),
  46706. name: "Head",
  46707. image: {
  46708. source: "./media/characters/alex-xuria/incubus-head.svg"
  46709. },
  46710. form: "incubus"
  46711. },
  46712. rabbitFront: {
  46713. height: math.unit(6, "feet"),
  46714. name: "Front",
  46715. image: {
  46716. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46717. extra: 1369/1349,
  46718. bottom: 45/1414
  46719. },
  46720. form: "rabbit",
  46721. default: true
  46722. },
  46723. rabbitSide: {
  46724. height: math.unit(6, "feet"),
  46725. name: "Side",
  46726. image: {
  46727. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46728. extra: 1370/1356,
  46729. bottom: 37/1407
  46730. },
  46731. form: "rabbit"
  46732. },
  46733. rabbitBack: {
  46734. height: math.unit(6, "feet"),
  46735. name: "Back",
  46736. image: {
  46737. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46738. extra: 1375/1358,
  46739. bottom: 43/1418
  46740. },
  46741. form: "rabbit"
  46742. },
  46743. },
  46744. [
  46745. {
  46746. name: "Normal",
  46747. height: math.unit(6, "feet"),
  46748. default: true,
  46749. form: "rabbit"
  46750. },
  46751. {
  46752. name: "Incubus",
  46753. height: math.unit(12, "feet"),
  46754. default: true,
  46755. form: "incubus"
  46756. },
  46757. {
  46758. name: "Demon",
  46759. height: math.unit(36, "feet"),
  46760. default: true,
  46761. form: "demon"
  46762. }
  46763. ],
  46764. {
  46765. "demon": {
  46766. name: "Demon",
  46767. default: true
  46768. },
  46769. "incubus": {
  46770. name: "Incubus",
  46771. },
  46772. "rabbit": {
  46773. name: "Rabbit"
  46774. }
  46775. }
  46776. ))
  46777. characterMakers.push(() => makeCharacter(
  46778. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46779. {
  46780. front: {
  46781. height: math.unit(7 + 5/12, "feet"),
  46782. weight: math.unit(510, "lb"),
  46783. name: "Front",
  46784. image: {
  46785. source: "./media/characters/syrup/front.svg",
  46786. extra: 932/916,
  46787. bottom: 26/958
  46788. }
  46789. },
  46790. },
  46791. [
  46792. {
  46793. name: "Normal",
  46794. height: math.unit(7 + 5/12, "feet"),
  46795. default: true
  46796. },
  46797. {
  46798. name: "Big",
  46799. height: math.unit(50, "feet")
  46800. },
  46801. {
  46802. name: "Macro",
  46803. height: math.unit(300, "feet")
  46804. },
  46805. {
  46806. name: "Megamacro",
  46807. height: math.unit(1, "mile")
  46808. },
  46809. ]
  46810. ))
  46811. characterMakers.push(() => makeCharacter(
  46812. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46813. {
  46814. front: {
  46815. height: math.unit(6 + 9/12, "feet"),
  46816. name: "Front",
  46817. image: {
  46818. source: "./media/characters/zeimne/front.svg",
  46819. extra: 1969/1806,
  46820. bottom: 53/2022
  46821. }
  46822. },
  46823. },
  46824. [
  46825. {
  46826. name: "Normal",
  46827. height: math.unit(6 + 9/12, "feet"),
  46828. default: true
  46829. },
  46830. {
  46831. name: "Giant",
  46832. height: math.unit(550, "feet")
  46833. },
  46834. {
  46835. name: "Mega",
  46836. height: math.unit(3, "miles")
  46837. },
  46838. {
  46839. name: "Giga",
  46840. height: math.unit(250, "miles")
  46841. },
  46842. {
  46843. name: "Tera",
  46844. height: math.unit(1, "AU")
  46845. },
  46846. ]
  46847. ))
  46848. characterMakers.push(() => makeCharacter(
  46849. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46850. {
  46851. front: {
  46852. height: math.unit(5 + 2/12, "feet"),
  46853. name: "Front",
  46854. image: {
  46855. source: "./media/characters/grar/front.svg",
  46856. extra: 1331/1119,
  46857. bottom: 60/1391
  46858. }
  46859. },
  46860. back: {
  46861. height: math.unit(5 + 2/12, "feet"),
  46862. name: "Back",
  46863. image: {
  46864. source: "./media/characters/grar/back.svg",
  46865. extra: 1385/1169,
  46866. bottom: 23/1408
  46867. }
  46868. },
  46869. },
  46870. [
  46871. {
  46872. name: "Normal",
  46873. height: math.unit(5 + 2/12, "feet"),
  46874. default: true
  46875. },
  46876. ]
  46877. ))
  46878. characterMakers.push(() => makeCharacter(
  46879. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46880. {
  46881. front: {
  46882. height: math.unit(13 + 7/12, "feet"),
  46883. weight: math.unit(2200, "lb"),
  46884. name: "Front",
  46885. image: {
  46886. source: "./media/characters/endraya/front.svg",
  46887. extra: 1289/1215,
  46888. bottom: 50/1339
  46889. }
  46890. },
  46891. nude: {
  46892. height: math.unit(13 + 7/12, "feet"),
  46893. weight: math.unit(2200, "lb"),
  46894. name: "Nude",
  46895. image: {
  46896. source: "./media/characters/endraya/nude.svg",
  46897. extra: 1247/1171,
  46898. bottom: 40/1287
  46899. }
  46900. },
  46901. head: {
  46902. height: math.unit(2.6, "feet"),
  46903. name: "Head",
  46904. image: {
  46905. source: "./media/characters/endraya/head.svg"
  46906. }
  46907. },
  46908. slit: {
  46909. height: math.unit(3.4, "feet"),
  46910. name: "Slit",
  46911. image: {
  46912. source: "./media/characters/endraya/slit.svg"
  46913. }
  46914. },
  46915. },
  46916. [
  46917. {
  46918. name: "Normal",
  46919. height: math.unit(13 + 7/12, "feet"),
  46920. default: true
  46921. },
  46922. {
  46923. name: "Macro",
  46924. height: math.unit(200, "feet")
  46925. },
  46926. ]
  46927. ))
  46928. characterMakers.push(() => makeCharacter(
  46929. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46930. {
  46931. front: {
  46932. height: math.unit(1.81, "meters"),
  46933. weight: math.unit(69, "kg"),
  46934. name: "Front",
  46935. image: {
  46936. source: "./media/characters/rodryana/front.svg",
  46937. extra: 2002/1921,
  46938. bottom: 53/2055
  46939. }
  46940. },
  46941. back: {
  46942. height: math.unit(1.81, "meters"),
  46943. weight: math.unit(69, "kg"),
  46944. name: "Back",
  46945. image: {
  46946. source: "./media/characters/rodryana/back.svg",
  46947. extra: 1993/1926,
  46948. bottom: 48/2041
  46949. }
  46950. },
  46951. maw: {
  46952. height: math.unit(0.19769417475, "meters"),
  46953. name: "Maw",
  46954. image: {
  46955. source: "./media/characters/rodryana/maw.svg"
  46956. }
  46957. },
  46958. slit: {
  46959. height: math.unit(0.31631067961, "meters"),
  46960. name: "Slit",
  46961. image: {
  46962. source: "./media/characters/rodryana/slit.svg"
  46963. }
  46964. },
  46965. },
  46966. [
  46967. {
  46968. name: "Normal",
  46969. height: math.unit(1.81, "meters")
  46970. },
  46971. {
  46972. name: "Mini Macro",
  46973. height: math.unit(181, "meters")
  46974. },
  46975. {
  46976. name: "Macro",
  46977. height: math.unit(452, "meters"),
  46978. default: true
  46979. },
  46980. {
  46981. name: "Mega Macro",
  46982. height: math.unit(1.375, "km")
  46983. },
  46984. {
  46985. name: "Giga Macro",
  46986. height: math.unit(13.575, "km")
  46987. },
  46988. ]
  46989. ))
  46990. characterMakers.push(() => makeCharacter(
  46991. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46992. {
  46993. front: {
  46994. height: math.unit(6, "feet"),
  46995. weight: math.unit(1000, "lb"),
  46996. name: "Front",
  46997. image: {
  46998. source: "./media/characters/asaya/front.svg",
  46999. extra: 1460/1200,
  47000. bottom: 71/1531
  47001. }
  47002. },
  47003. },
  47004. [
  47005. {
  47006. name: "Normal",
  47007. height: math.unit(8, "km"),
  47008. default: true
  47009. },
  47010. ]
  47011. ))
  47012. characterMakers.push(() => makeCharacter(
  47013. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47014. {
  47015. front: {
  47016. height: math.unit(3.5, "meters"),
  47017. name: "Front",
  47018. image: {
  47019. source: "./media/characters/sarzu-and-israz/front.svg",
  47020. extra: 1570/1558,
  47021. bottom: 150/1720
  47022. },
  47023. },
  47024. back: {
  47025. height: math.unit(3.5, "meters"),
  47026. name: "Back",
  47027. image: {
  47028. source: "./media/characters/sarzu-and-israz/back.svg",
  47029. extra: 1523/1509,
  47030. bottom: 132/1655
  47031. },
  47032. },
  47033. frontFemale: {
  47034. height: math.unit(3.5, "meters"),
  47035. name: "Front (Female)",
  47036. image: {
  47037. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47038. extra: 1570/1558,
  47039. bottom: 150/1720
  47040. },
  47041. },
  47042. frontHerm: {
  47043. height: math.unit(3.5, "meters"),
  47044. name: "Front (Herm)",
  47045. image: {
  47046. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47047. extra: 1570/1558,
  47048. bottom: 150/1720
  47049. },
  47050. },
  47051. },
  47052. [
  47053. {
  47054. name: "Normal",
  47055. height: math.unit(3.5, "meters"),
  47056. default: true,
  47057. },
  47058. {
  47059. name: "Macro",
  47060. height: math.unit(65.5, "meters"),
  47061. },
  47062. ],
  47063. ))
  47064. characterMakers.push(() => makeCharacter(
  47065. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47066. {
  47067. front: {
  47068. height: math.unit(6, "feet"),
  47069. weight: math.unit(250, "lb"),
  47070. name: "Front",
  47071. image: {
  47072. source: "./media/characters/zenimma/front.svg",
  47073. extra: 1346/1320,
  47074. bottom: 58/1404
  47075. }
  47076. },
  47077. back: {
  47078. height: math.unit(6, "feet"),
  47079. weight: math.unit(250, "lb"),
  47080. name: "Back",
  47081. image: {
  47082. source: "./media/characters/zenimma/back.svg",
  47083. extra: 1324/1308,
  47084. bottom: 44/1368
  47085. }
  47086. },
  47087. dick: {
  47088. height: math.unit(1.44, "feet"),
  47089. name: "Dick",
  47090. image: {
  47091. source: "./media/characters/zenimma/dick.svg"
  47092. }
  47093. },
  47094. },
  47095. [
  47096. {
  47097. name: "Canon Height",
  47098. height: math.unit(66, "miles"),
  47099. default: true
  47100. },
  47101. ]
  47102. ))
  47103. characterMakers.push(() => makeCharacter(
  47104. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47105. {
  47106. nude: {
  47107. height: math.unit(6, "feet"),
  47108. weight: math.unit(150, "lb"),
  47109. name: "Nude",
  47110. image: {
  47111. source: "./media/characters/shavon/nude.svg",
  47112. extra: 1242/1096,
  47113. bottom: 98/1340
  47114. }
  47115. },
  47116. dressed: {
  47117. height: math.unit(6, "feet"),
  47118. weight: math.unit(150, "lb"),
  47119. name: "Dressed",
  47120. image: {
  47121. source: "./media/characters/shavon/dressed.svg",
  47122. extra: 1242/1096,
  47123. bottom: 98/1340
  47124. }
  47125. },
  47126. },
  47127. [
  47128. {
  47129. name: "Macro",
  47130. height: math.unit(255, "feet"),
  47131. default: true
  47132. },
  47133. ]
  47134. ))
  47135. characterMakers.push(() => makeCharacter(
  47136. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47137. {
  47138. front: {
  47139. height: math.unit(6, "feet"),
  47140. name: "Front",
  47141. image: {
  47142. source: "./media/characters/steph/front.svg",
  47143. extra: 1430/1330,
  47144. bottom: 54/1484
  47145. }
  47146. },
  47147. },
  47148. [
  47149. {
  47150. name: "Normal",
  47151. height: math.unit(6, "feet"),
  47152. default: true
  47153. },
  47154. ]
  47155. ))
  47156. characterMakers.push(() => makeCharacter(
  47157. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47158. {
  47159. front: {
  47160. height: math.unit(9, "feet"),
  47161. weight: math.unit(400, "lb"),
  47162. name: "Front",
  47163. image: {
  47164. source: "./media/characters/kil'aman/front.svg",
  47165. extra: 1210/1159,
  47166. bottom: 109/1319
  47167. }
  47168. },
  47169. head: {
  47170. height: math.unit(2.14, "feet"),
  47171. name: "Head",
  47172. image: {
  47173. source: "./media/characters/kil'aman/head.svg"
  47174. }
  47175. },
  47176. maw: {
  47177. height: math.unit(1.21, "feet"),
  47178. name: "Maw",
  47179. image: {
  47180. source: "./media/characters/kil'aman/maw.svg"
  47181. }
  47182. },
  47183. foot: {
  47184. height: math.unit(1.7, "feet"),
  47185. name: "Foot",
  47186. image: {
  47187. source: "./media/characters/kil'aman/foot.svg"
  47188. }
  47189. },
  47190. dick: {
  47191. height: math.unit(2.1, "feet"),
  47192. name: "Dick",
  47193. image: {
  47194. source: "./media/characters/kil'aman/dick.svg"
  47195. }
  47196. },
  47197. },
  47198. [
  47199. {
  47200. name: "Normal",
  47201. height: math.unit(9, "feet")
  47202. },
  47203. {
  47204. name: "Canon Height",
  47205. height: math.unit(10, "miles"),
  47206. default: true
  47207. },
  47208. {
  47209. name: "Maximum",
  47210. height: math.unit(6e9, "miles")
  47211. },
  47212. ]
  47213. ))
  47214. characterMakers.push(() => makeCharacter(
  47215. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47216. {
  47217. front: {
  47218. height: math.unit(90, "feet"),
  47219. weight: math.unit(675000, "lb"),
  47220. name: "Front",
  47221. image: {
  47222. source: "./media/characters/qadan/front.svg",
  47223. extra: 1012/1004,
  47224. bottom: 78/1090
  47225. }
  47226. },
  47227. back: {
  47228. height: math.unit(90, "feet"),
  47229. weight: math.unit(675000, "lb"),
  47230. name: "Back",
  47231. image: {
  47232. source: "./media/characters/qadan/back.svg",
  47233. extra: 1042/1031,
  47234. bottom: 55/1097
  47235. }
  47236. },
  47237. armored: {
  47238. height: math.unit(90, "feet"),
  47239. weight: math.unit(675000, "lb"),
  47240. name: "Armored",
  47241. image: {
  47242. source: "./media/characters/qadan/armored.svg",
  47243. extra: 1047/1037,
  47244. bottom: 48/1095
  47245. }
  47246. },
  47247. },
  47248. [
  47249. {
  47250. name: "Normal",
  47251. height: math.unit(90, "feet"),
  47252. default: true
  47253. },
  47254. ]
  47255. ))
  47256. characterMakers.push(() => makeCharacter(
  47257. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47258. {
  47259. front: {
  47260. height: math.unit(6, "feet"),
  47261. weight: math.unit(225, "lb"),
  47262. name: "Front",
  47263. image: {
  47264. source: "./media/characters/brooke/front.svg",
  47265. extra: 1050/1010,
  47266. bottom: 66/1116
  47267. }
  47268. },
  47269. back: {
  47270. height: math.unit(6, "feet"),
  47271. weight: math.unit(225, "lb"),
  47272. name: "Back",
  47273. image: {
  47274. source: "./media/characters/brooke/back.svg",
  47275. extra: 1053/1013,
  47276. bottom: 41/1094
  47277. }
  47278. },
  47279. dressed: {
  47280. height: math.unit(6, "feet"),
  47281. weight: math.unit(225, "lb"),
  47282. name: "Dressed",
  47283. image: {
  47284. source: "./media/characters/brooke/dressed.svg",
  47285. extra: 1050/1010,
  47286. bottom: 66/1116
  47287. }
  47288. },
  47289. },
  47290. [
  47291. {
  47292. name: "Canon Height",
  47293. height: math.unit(500, "miles"),
  47294. default: true
  47295. },
  47296. ]
  47297. ))
  47298. characterMakers.push(() => makeCharacter(
  47299. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47300. {
  47301. front: {
  47302. height: math.unit(6 + 2/12, "feet"),
  47303. weight: math.unit(210, "lb"),
  47304. name: "Front",
  47305. image: {
  47306. source: "./media/characters/wubs/front.svg",
  47307. extra: 1345/1325,
  47308. bottom: 70/1415
  47309. }
  47310. },
  47311. back: {
  47312. height: math.unit(6 + 2/12, "feet"),
  47313. weight: math.unit(210, "lb"),
  47314. name: "Back",
  47315. image: {
  47316. source: "./media/characters/wubs/back.svg",
  47317. extra: 1296/1275,
  47318. bottom: 58/1354
  47319. }
  47320. },
  47321. },
  47322. [
  47323. {
  47324. name: "Normal",
  47325. height: math.unit(6 + 2/12, "feet"),
  47326. default: true
  47327. },
  47328. {
  47329. name: "Macro",
  47330. height: math.unit(1000, "feet")
  47331. },
  47332. {
  47333. name: "Megamacro",
  47334. height: math.unit(1, "mile")
  47335. },
  47336. ]
  47337. ))
  47338. characterMakers.push(() => makeCharacter(
  47339. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47340. {
  47341. front: {
  47342. height: math.unit(4, "feet"),
  47343. weight: math.unit(120, "lb"),
  47344. name: "Front",
  47345. image: {
  47346. source: "./media/characters/blue/front.svg",
  47347. extra: 1636/1525,
  47348. bottom: 43/1679
  47349. }
  47350. },
  47351. back: {
  47352. height: math.unit(4, "feet"),
  47353. weight: math.unit(120, "lb"),
  47354. name: "Back",
  47355. image: {
  47356. source: "./media/characters/blue/back.svg",
  47357. extra: 1660/1560,
  47358. bottom: 57/1717
  47359. }
  47360. },
  47361. paws: {
  47362. height: math.unit(0.826, "feet"),
  47363. name: "Paws",
  47364. image: {
  47365. source: "./media/characters/blue/paws.svg"
  47366. }
  47367. },
  47368. },
  47369. [
  47370. {
  47371. name: "Micro",
  47372. height: math.unit(3, "inches")
  47373. },
  47374. {
  47375. name: "Normal",
  47376. height: math.unit(4, "feet"),
  47377. default: true
  47378. },
  47379. {
  47380. name: "Femenine Form",
  47381. height: math.unit(14, "feet")
  47382. },
  47383. {
  47384. name: "Werebat Form",
  47385. height: math.unit(18, "feet")
  47386. },
  47387. ]
  47388. ))
  47389. characterMakers.push(() => makeCharacter(
  47390. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47391. {
  47392. female: {
  47393. height: math.unit(7 + 4/12, "feet"),
  47394. weight: math.unit(243, "lb"),
  47395. name: "Female",
  47396. image: {
  47397. source: "./media/characters/kaya/female.svg",
  47398. extra: 975/898,
  47399. bottom: 34/1009
  47400. }
  47401. },
  47402. herm: {
  47403. height: math.unit(7 + 4/12, "feet"),
  47404. weight: math.unit(243, "lb"),
  47405. name: "Herm",
  47406. image: {
  47407. source: "./media/characters/kaya/herm.svg",
  47408. extra: 975/898,
  47409. bottom: 34/1009
  47410. }
  47411. },
  47412. },
  47413. [
  47414. {
  47415. name: "Normal",
  47416. height: math.unit(7 + 4/12, "feet"),
  47417. default: true
  47418. },
  47419. ]
  47420. ))
  47421. characterMakers.push(() => makeCharacter(
  47422. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47423. {
  47424. female: {
  47425. height: math.unit(9 + 4/12, "feet"),
  47426. weight: math.unit(398, "lb"),
  47427. name: "Female",
  47428. image: {
  47429. source: "./media/characters/kassandra/female.svg",
  47430. extra: 908/839,
  47431. bottom: 61/969
  47432. }
  47433. },
  47434. intersex: {
  47435. height: math.unit(9 + 4/12, "feet"),
  47436. weight: math.unit(398, "lb"),
  47437. name: "Intersex",
  47438. image: {
  47439. source: "./media/characters/kassandra/intersex.svg",
  47440. extra: 908/839,
  47441. bottom: 61/969
  47442. }
  47443. },
  47444. },
  47445. [
  47446. {
  47447. name: "Normal",
  47448. height: math.unit(9 + 4/12, "feet"),
  47449. default: true
  47450. },
  47451. ]
  47452. ))
  47453. characterMakers.push(() => makeCharacter(
  47454. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47455. {
  47456. front: {
  47457. height: math.unit(3, "meters"),
  47458. name: "Front",
  47459. image: {
  47460. source: "./media/characters/amy/front.svg",
  47461. extra: 1380/1343,
  47462. bottom: 70/1450
  47463. }
  47464. },
  47465. back: {
  47466. height: math.unit(3, "meters"),
  47467. name: "Back",
  47468. image: {
  47469. source: "./media/characters/amy/back.svg",
  47470. extra: 1380/1347,
  47471. bottom: 66/1446
  47472. }
  47473. },
  47474. },
  47475. [
  47476. {
  47477. name: "Normal",
  47478. height: math.unit(3, "meters"),
  47479. default: true
  47480. },
  47481. ]
  47482. ))
  47483. characterMakers.push(() => makeCharacter(
  47484. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47485. {
  47486. side: {
  47487. height: math.unit(47, "cm"),
  47488. weight: math.unit(10.8, "kg"),
  47489. name: "Side",
  47490. image: {
  47491. source: "./media/characters/alphaschakal/side.svg",
  47492. extra: 1058/568,
  47493. bottom: 62/1120
  47494. }
  47495. },
  47496. back: {
  47497. height: math.unit(78, "cm"),
  47498. weight: math.unit(10.8, "kg"),
  47499. name: "Back",
  47500. image: {
  47501. source: "./media/characters/alphaschakal/back.svg",
  47502. extra: 1102/942,
  47503. bottom: 185/1287
  47504. }
  47505. },
  47506. head: {
  47507. height: math.unit(28, "cm"),
  47508. name: "Head",
  47509. image: {
  47510. source: "./media/characters/alphaschakal/head.svg",
  47511. extra: 696/508,
  47512. bottom: 0/696
  47513. }
  47514. },
  47515. paw: {
  47516. height: math.unit(16, "cm"),
  47517. name: "Paw",
  47518. image: {
  47519. source: "./media/characters/alphaschakal/paw.svg"
  47520. }
  47521. },
  47522. },
  47523. [
  47524. {
  47525. name: "Normal",
  47526. height: math.unit(47, "cm"),
  47527. default: true
  47528. },
  47529. {
  47530. name: "Macro",
  47531. height: math.unit(340, "cm")
  47532. },
  47533. ]
  47534. ))
  47535. characterMakers.push(() => makeCharacter(
  47536. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47537. {
  47538. front: {
  47539. height: math.unit(36, "earths"),
  47540. name: "Front",
  47541. image: {
  47542. source: "./media/characters/ecobyss/front.svg",
  47543. extra: 1282/1215,
  47544. bottom: 11/1293
  47545. }
  47546. },
  47547. back: {
  47548. height: math.unit(36, "earths"),
  47549. name: "Back",
  47550. image: {
  47551. source: "./media/characters/ecobyss/back.svg",
  47552. extra: 1291/1222,
  47553. bottom: 8/1299
  47554. }
  47555. },
  47556. },
  47557. [
  47558. {
  47559. name: "Normal",
  47560. height: math.unit(36, "earths"),
  47561. default: true
  47562. },
  47563. ]
  47564. ))
  47565. characterMakers.push(() => makeCharacter(
  47566. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47567. {
  47568. front: {
  47569. height: math.unit(12, "feet"),
  47570. name: "Front",
  47571. image: {
  47572. source: "./media/characters/vasuk/front.svg",
  47573. extra: 1326/1207,
  47574. bottom: 64/1390
  47575. }
  47576. },
  47577. },
  47578. [
  47579. {
  47580. name: "Normal",
  47581. height: math.unit(12, "feet"),
  47582. default: true
  47583. },
  47584. ]
  47585. ))
  47586. characterMakers.push(() => makeCharacter(
  47587. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47588. {
  47589. side: {
  47590. height: math.unit(100, "feet"),
  47591. name: "Side",
  47592. image: {
  47593. source: "./media/characters/linneaus/side.svg",
  47594. extra: 987/807,
  47595. bottom: 47/1034
  47596. }
  47597. },
  47598. },
  47599. [
  47600. {
  47601. name: "Macro",
  47602. height: math.unit(100, "feet"),
  47603. default: true
  47604. },
  47605. ]
  47606. ))
  47607. characterMakers.push(() => makeCharacter(
  47608. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47609. {
  47610. front: {
  47611. height: math.unit(8, "feet"),
  47612. weight: math.unit(1200, "lb"),
  47613. name: "Front",
  47614. image: {
  47615. source: "./media/characters/nyterious-daligdig/front.svg",
  47616. extra: 1284/1094,
  47617. bottom: 84/1368
  47618. }
  47619. },
  47620. back: {
  47621. height: math.unit(8, "feet"),
  47622. weight: math.unit(1200, "lb"),
  47623. name: "Back",
  47624. image: {
  47625. source: "./media/characters/nyterious-daligdig/back.svg",
  47626. extra: 1301/1121,
  47627. bottom: 129/1430
  47628. }
  47629. },
  47630. mouth: {
  47631. height: math.unit(1.464, "feet"),
  47632. name: "Mouth",
  47633. image: {
  47634. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47635. }
  47636. },
  47637. },
  47638. [
  47639. {
  47640. name: "Small",
  47641. height: math.unit(8, "feet"),
  47642. default: true
  47643. },
  47644. {
  47645. name: "Normal",
  47646. height: math.unit(15, "feet")
  47647. },
  47648. {
  47649. name: "Macro",
  47650. height: math.unit(90, "feet")
  47651. },
  47652. ]
  47653. ))
  47654. characterMakers.push(() => makeCharacter(
  47655. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47656. {
  47657. front: {
  47658. height: math.unit(7 + 4/12, "feet"),
  47659. weight: math.unit(252, "lb"),
  47660. name: "Front",
  47661. image: {
  47662. source: "./media/characters/bandel/front.svg",
  47663. extra: 1946/1775,
  47664. bottom: 26/1972
  47665. }
  47666. },
  47667. back: {
  47668. height: math.unit(7 + 4/12, "feet"),
  47669. weight: math.unit(252, "lb"),
  47670. name: "Back",
  47671. image: {
  47672. source: "./media/characters/bandel/back.svg",
  47673. extra: 1940/1770,
  47674. bottom: 25/1965
  47675. }
  47676. },
  47677. maw: {
  47678. height: math.unit(2.15, "feet"),
  47679. name: "Maw",
  47680. image: {
  47681. source: "./media/characters/bandel/maw.svg"
  47682. }
  47683. },
  47684. stomach: {
  47685. height: math.unit(1.95, "feet"),
  47686. name: "Stomach",
  47687. image: {
  47688. source: "./media/characters/bandel/stomach.svg"
  47689. }
  47690. },
  47691. },
  47692. [
  47693. {
  47694. name: "Normal",
  47695. height: math.unit(7 + 4/12, "feet"),
  47696. default: true
  47697. },
  47698. ]
  47699. ))
  47700. characterMakers.push(() => makeCharacter(
  47701. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47702. {
  47703. front: {
  47704. height: math.unit(10 + 5/12, "feet"),
  47705. weight: math.unit(773.5, "kg"),
  47706. name: "Front",
  47707. image: {
  47708. source: "./media/characters/zed/front.svg",
  47709. extra: 987/941,
  47710. bottom: 52/1039
  47711. }
  47712. },
  47713. },
  47714. [
  47715. {
  47716. name: "Short",
  47717. height: math.unit(5 + 4/12, "feet")
  47718. },
  47719. {
  47720. name: "Average",
  47721. height: math.unit(10 + 5/12, "feet"),
  47722. default: true
  47723. },
  47724. {
  47725. name: "Mini-Macro",
  47726. height: math.unit(24 + 9/12, "feet")
  47727. },
  47728. {
  47729. name: "Macro",
  47730. height: math.unit(249, "feet")
  47731. },
  47732. {
  47733. name: "Mega-Macro",
  47734. height: math.unit(12490, "feet")
  47735. },
  47736. {
  47737. name: "Giga-Macro",
  47738. height: math.unit(24.9, "miles")
  47739. },
  47740. {
  47741. name: "Tera-Macro",
  47742. height: math.unit(24900, "miles")
  47743. },
  47744. {
  47745. name: "Cosmic Scale",
  47746. height: math.unit(38.9, "lightyears")
  47747. },
  47748. {
  47749. name: "Universal Scale",
  47750. height: math.unit(138e12, "lightyears")
  47751. },
  47752. ]
  47753. ))
  47754. characterMakers.push(() => makeCharacter(
  47755. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47756. {
  47757. front: {
  47758. height: math.unit(1561, "inches"),
  47759. name: "Front",
  47760. image: {
  47761. source: "./media/characters/ivan/front.svg",
  47762. extra: 1126/1071,
  47763. bottom: 26/1152
  47764. }
  47765. },
  47766. back: {
  47767. height: math.unit(1561, "inches"),
  47768. name: "Back",
  47769. image: {
  47770. source: "./media/characters/ivan/back.svg",
  47771. extra: 1134/1079,
  47772. bottom: 30/1164
  47773. }
  47774. },
  47775. },
  47776. [
  47777. {
  47778. name: "Normal",
  47779. height: math.unit(1561, "inches"),
  47780. default: true
  47781. },
  47782. ]
  47783. ))
  47784. characterMakers.push(() => makeCharacter(
  47785. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47786. {
  47787. front: {
  47788. height: math.unit(5 + 7/12, "feet"),
  47789. weight: math.unit(150, "lb"),
  47790. name: "Front",
  47791. image: {
  47792. source: "./media/characters/robin-arctic-hare/front.svg",
  47793. extra: 1148/974,
  47794. bottom: 20/1168
  47795. }
  47796. },
  47797. },
  47798. [
  47799. {
  47800. name: "Normal",
  47801. height: math.unit(5 + 7/12, "feet"),
  47802. default: true
  47803. },
  47804. ]
  47805. ))
  47806. characterMakers.push(() => makeCharacter(
  47807. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47808. {
  47809. side: {
  47810. height: math.unit(5, "feet"),
  47811. name: "Side",
  47812. image: {
  47813. source: "./media/characters/birch/side.svg",
  47814. extra: 985/796,
  47815. bottom: 111/1096
  47816. }
  47817. },
  47818. },
  47819. [
  47820. {
  47821. name: "Normal",
  47822. height: math.unit(5, "feet"),
  47823. default: true
  47824. },
  47825. ]
  47826. ))
  47827. characterMakers.push(() => makeCharacter(
  47828. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47829. {
  47830. front: {
  47831. height: math.unit(4, "feet"),
  47832. name: "Front",
  47833. image: {
  47834. source: "./media/characters/rasp/front.svg",
  47835. extra: 561/478,
  47836. bottom: 74/635
  47837. }
  47838. },
  47839. },
  47840. [
  47841. {
  47842. name: "Normal",
  47843. height: math.unit(4, "feet"),
  47844. default: true
  47845. },
  47846. ]
  47847. ))
  47848. characterMakers.push(() => makeCharacter(
  47849. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47850. {
  47851. front: {
  47852. height: math.unit(4 + 6/12, "feet"),
  47853. name: "Front",
  47854. image: {
  47855. source: "./media/characters/agatha/front.svg",
  47856. extra: 947/933,
  47857. bottom: 42/989
  47858. }
  47859. },
  47860. back: {
  47861. height: math.unit(4 + 6/12, "feet"),
  47862. name: "Back",
  47863. image: {
  47864. source: "./media/characters/agatha/back.svg",
  47865. extra: 935/922,
  47866. bottom: 48/983
  47867. }
  47868. },
  47869. },
  47870. [
  47871. {
  47872. name: "Normal",
  47873. height: math.unit(4 + 6 /12, "feet"),
  47874. default: true
  47875. },
  47876. {
  47877. name: "Max Size",
  47878. height: math.unit(500, "feet")
  47879. },
  47880. ]
  47881. ))
  47882. characterMakers.push(() => makeCharacter(
  47883. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47884. {
  47885. side: {
  47886. height: math.unit(30, "feet"),
  47887. name: "Side",
  47888. image: {
  47889. source: "./media/characters/roggy/side.svg",
  47890. extra: 909/643,
  47891. bottom: 63/972
  47892. }
  47893. },
  47894. lounging: {
  47895. height: math.unit(20, "feet"),
  47896. name: "Lounging",
  47897. image: {
  47898. source: "./media/characters/roggy/lounging.svg",
  47899. extra: 643/479,
  47900. bottom: 145/788
  47901. }
  47902. },
  47903. handpaw: {
  47904. height: math.unit(13.1, "feet"),
  47905. name: "Handpaw",
  47906. image: {
  47907. source: "./media/characters/roggy/handpaw.svg"
  47908. }
  47909. },
  47910. footpaw: {
  47911. height: math.unit(15.8, "feet"),
  47912. name: "Footpaw",
  47913. image: {
  47914. source: "./media/characters/roggy/footpaw.svg"
  47915. }
  47916. },
  47917. },
  47918. [
  47919. {
  47920. name: "Menacing",
  47921. height: math.unit(30, "feet"),
  47922. default: true
  47923. },
  47924. ]
  47925. ))
  47926. characterMakers.push(() => makeCharacter(
  47927. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47928. {
  47929. front: {
  47930. height: math.unit(5 + 7/12, "feet"),
  47931. weight: math.unit(135, "lb"),
  47932. name: "Front",
  47933. image: {
  47934. source: "./media/characters/naomi/front.svg",
  47935. extra: 1209/1154,
  47936. bottom: 129/1338
  47937. }
  47938. },
  47939. back: {
  47940. height: math.unit(5 + 7/12, "feet"),
  47941. weight: math.unit(135, "lb"),
  47942. name: "Back",
  47943. image: {
  47944. source: "./media/characters/naomi/back.svg",
  47945. extra: 1252/1190,
  47946. bottom: 23/1275
  47947. }
  47948. },
  47949. },
  47950. [
  47951. {
  47952. name: "Normal",
  47953. height: math.unit(5 + 7 /12, "feet"),
  47954. default: true
  47955. },
  47956. ]
  47957. ))
  47958. characterMakers.push(() => makeCharacter(
  47959. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47960. {
  47961. side: {
  47962. height: math.unit(35, "meters"),
  47963. name: "Side",
  47964. image: {
  47965. source: "./media/characters/kimpi/side.svg",
  47966. extra: 419/382,
  47967. bottom: 63/482
  47968. }
  47969. },
  47970. hand: {
  47971. height: math.unit(8.96, "meters"),
  47972. name: "Hand",
  47973. image: {
  47974. source: "./media/characters/kimpi/hand.svg"
  47975. }
  47976. },
  47977. },
  47978. [
  47979. {
  47980. name: "Normal",
  47981. height: math.unit(35, "meters"),
  47982. default: true
  47983. },
  47984. ]
  47985. ))
  47986. characterMakers.push(() => makeCharacter(
  47987. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47988. {
  47989. front: {
  47990. height: math.unit(4 + 4/12, "feet"),
  47991. name: "Front",
  47992. image: {
  47993. source: "./media/characters/pepper-purrloin/front.svg",
  47994. extra: 1141/1024,
  47995. bottom: 21/1162
  47996. }
  47997. },
  47998. },
  47999. [
  48000. {
  48001. name: "Normal",
  48002. height: math.unit(4 + 4/12, "feet"),
  48003. default: true
  48004. },
  48005. ]
  48006. ))
  48007. characterMakers.push(() => makeCharacter(
  48008. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48009. {
  48010. front: {
  48011. height: math.unit(6 + 2/12, "feet"),
  48012. name: "Front",
  48013. image: {
  48014. source: "./media/characters/raphael/front.svg",
  48015. extra: 1101/962,
  48016. bottom: 59/1160
  48017. }
  48018. },
  48019. },
  48020. [
  48021. {
  48022. name: "Normal",
  48023. height: math.unit(6 + 2/12, "feet"),
  48024. default: true
  48025. },
  48026. ]
  48027. ))
  48028. characterMakers.push(() => makeCharacter(
  48029. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48030. {
  48031. front: {
  48032. height: math.unit(6, "feet"),
  48033. weight: math.unit(150, "lb"),
  48034. name: "Front",
  48035. image: {
  48036. source: "./media/characters/victor-williams/front.svg",
  48037. extra: 1894/1825,
  48038. bottom: 67/1961
  48039. }
  48040. },
  48041. },
  48042. [
  48043. {
  48044. name: "Normal",
  48045. height: math.unit(6, "feet"),
  48046. default: true
  48047. },
  48048. ]
  48049. ))
  48050. characterMakers.push(() => makeCharacter(
  48051. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48052. {
  48053. front: {
  48054. height: math.unit(5 + 8/12, "feet"),
  48055. weight: math.unit(150, "lb"),
  48056. name: "Front",
  48057. image: {
  48058. source: "./media/characters/rachel/front.svg",
  48059. extra: 1902/1787,
  48060. bottom: 46/1948
  48061. }
  48062. },
  48063. },
  48064. [
  48065. {
  48066. name: "Base Height",
  48067. height: math.unit(5 + 8/12, "feet"),
  48068. default: true
  48069. },
  48070. {
  48071. name: "Macro",
  48072. height: math.unit(200, "feet")
  48073. },
  48074. {
  48075. name: "Mega Macro",
  48076. height: math.unit(1, "mile")
  48077. },
  48078. {
  48079. name: "Giga Macro",
  48080. height: math.unit(1500, "miles")
  48081. },
  48082. {
  48083. name: "Tera Macro",
  48084. height: math.unit(8000, "miles")
  48085. },
  48086. {
  48087. name: "Tera Macro+",
  48088. height: math.unit(2e5, "miles")
  48089. },
  48090. ]
  48091. ))
  48092. characterMakers.push(() => makeCharacter(
  48093. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48094. {
  48095. front: {
  48096. height: math.unit(6.5, "feet"),
  48097. name: "Front",
  48098. image: {
  48099. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48100. extra: 860/819,
  48101. bottom: 307/1167
  48102. }
  48103. },
  48104. back: {
  48105. height: math.unit(6.5, "feet"),
  48106. name: "Back",
  48107. image: {
  48108. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48109. extra: 880/837,
  48110. bottom: 395/1275
  48111. }
  48112. },
  48113. sleeping: {
  48114. height: math.unit(2.79, "feet"),
  48115. name: "Sleeping",
  48116. image: {
  48117. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48118. extra: 465/383,
  48119. bottom: 263/728
  48120. }
  48121. },
  48122. maw: {
  48123. height: math.unit(2.52, "feet"),
  48124. name: "Maw",
  48125. image: {
  48126. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48127. }
  48128. },
  48129. },
  48130. [
  48131. {
  48132. name: "Normal",
  48133. height: math.unit(6.5, "feet"),
  48134. default: true
  48135. },
  48136. ]
  48137. ))
  48138. characterMakers.push(() => makeCharacter(
  48139. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48140. {
  48141. front: {
  48142. height: math.unit(5, "feet"),
  48143. name: "Front",
  48144. image: {
  48145. source: "./media/characters/nova-nerium/front.svg",
  48146. extra: 1548/1392,
  48147. bottom: 374/1922
  48148. }
  48149. },
  48150. back: {
  48151. height: math.unit(5, "feet"),
  48152. name: "Back",
  48153. image: {
  48154. source: "./media/characters/nova-nerium/back.svg",
  48155. extra: 1658/1468,
  48156. bottom: 257/1915
  48157. }
  48158. },
  48159. },
  48160. [
  48161. {
  48162. name: "Normal",
  48163. height: math.unit(5, "feet"),
  48164. default: true
  48165. },
  48166. ]
  48167. ))
  48168. characterMakers.push(() => makeCharacter(
  48169. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48170. {
  48171. front: {
  48172. height: math.unit(5 + 4/12, "feet"),
  48173. name: "Front",
  48174. image: {
  48175. source: "./media/characters/ashe-pyriph/front.svg",
  48176. extra: 1935/1747,
  48177. bottom: 60/1995
  48178. }
  48179. },
  48180. },
  48181. [
  48182. {
  48183. name: "Normal",
  48184. height: math.unit(5 + 4/12, "feet"),
  48185. default: true
  48186. },
  48187. ]
  48188. ))
  48189. characterMakers.push(() => makeCharacter(
  48190. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48191. {
  48192. front: {
  48193. height: math.unit(8.7, "feet"),
  48194. name: "Front",
  48195. image: {
  48196. source: "./media/characters/flicker-wisp/front.svg",
  48197. extra: 1835/1613,
  48198. bottom: 449/2284
  48199. }
  48200. },
  48201. side: {
  48202. height: math.unit(8.7, "feet"),
  48203. name: "Side",
  48204. image: {
  48205. source: "./media/characters/flicker-wisp/side.svg",
  48206. extra: 1841/1642,
  48207. bottom: 336/2177
  48208. },
  48209. default: true
  48210. },
  48211. maw: {
  48212. height: math.unit(3.35, "feet"),
  48213. name: "Maw",
  48214. image: {
  48215. source: "./media/characters/flicker-wisp/maw.svg",
  48216. extra: 2338/1506,
  48217. bottom: 0/2338
  48218. }
  48219. },
  48220. ovipositor: {
  48221. height: math.unit(4.95, "feet"),
  48222. name: "Ovipositor",
  48223. image: {
  48224. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48225. }
  48226. },
  48227. egg: {
  48228. height: math.unit(0.385, "feet"),
  48229. weight: math.unit(2, "lb"),
  48230. name: "Egg",
  48231. image: {
  48232. source: "./media/characters/flicker-wisp/egg.svg"
  48233. }
  48234. },
  48235. },
  48236. [
  48237. {
  48238. name: "Normal",
  48239. height: math.unit(8.7, "feet"),
  48240. default: true
  48241. },
  48242. ]
  48243. ))
  48244. characterMakers.push(() => makeCharacter(
  48245. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48246. {
  48247. side: {
  48248. height: math.unit(11, "feet"),
  48249. name: "Side",
  48250. image: {
  48251. source: "./media/characters/faefnul/side.svg",
  48252. extra: 1100/1007,
  48253. bottom: 0/1100
  48254. }
  48255. },
  48256. },
  48257. [
  48258. {
  48259. name: "Normal",
  48260. height: math.unit(11, "feet"),
  48261. default: true
  48262. },
  48263. ]
  48264. ))
  48265. characterMakers.push(() => makeCharacter(
  48266. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48267. {
  48268. front: {
  48269. height: math.unit(6 + 2/12, "feet"),
  48270. name: "Front",
  48271. image: {
  48272. source: "./media/characters/shady/front.svg",
  48273. extra: 502/461,
  48274. bottom: 9/511
  48275. }
  48276. },
  48277. kneeling: {
  48278. height: math.unit(4.6, "feet"),
  48279. name: "Kneeling",
  48280. image: {
  48281. source: "./media/characters/shady/kneeling.svg",
  48282. extra: 1328/1219,
  48283. bottom: 117/1445
  48284. }
  48285. },
  48286. maw: {
  48287. height: math.unit(2, "feet"),
  48288. name: "Maw",
  48289. image: {
  48290. source: "./media/characters/shady/maw.svg"
  48291. }
  48292. },
  48293. },
  48294. [
  48295. {
  48296. name: "Nano",
  48297. height: math.unit(1, "mm")
  48298. },
  48299. {
  48300. name: "Micro",
  48301. height: math.unit(12, "mm")
  48302. },
  48303. {
  48304. name: "Tiny",
  48305. height: math.unit(3, "inches")
  48306. },
  48307. {
  48308. name: "Normal",
  48309. height: math.unit(6 + 2/12, "feet"),
  48310. default: true
  48311. },
  48312. {
  48313. name: "Big",
  48314. height: math.unit(15, "feet")
  48315. },
  48316. {
  48317. name: "Macro",
  48318. height: math.unit(150, "feet")
  48319. },
  48320. {
  48321. name: "Titanic",
  48322. height: math.unit(500, "feet")
  48323. },
  48324. ]
  48325. ))
  48326. characterMakers.push(() => makeCharacter(
  48327. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48328. {
  48329. front: {
  48330. height: math.unit(12, "feet"),
  48331. name: "Front",
  48332. image: {
  48333. source: "./media/characters/fenrir/front.svg",
  48334. extra: 968/875,
  48335. bottom: 22/990
  48336. }
  48337. },
  48338. },
  48339. [
  48340. {
  48341. name: "Big",
  48342. height: math.unit(12, "feet"),
  48343. default: true
  48344. },
  48345. ]
  48346. ))
  48347. characterMakers.push(() => makeCharacter(
  48348. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48349. {
  48350. front: {
  48351. height: math.unit(5 + 4/12, "feet"),
  48352. name: "Front",
  48353. image: {
  48354. source: "./media/characters/makar/front.svg",
  48355. extra: 1181/1112,
  48356. bottom: 78/1259
  48357. }
  48358. },
  48359. },
  48360. [
  48361. {
  48362. name: "Normal",
  48363. height: math.unit(5 + 4/12, "feet"),
  48364. default: true
  48365. },
  48366. ]
  48367. ))
  48368. characterMakers.push(() => makeCharacter(
  48369. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48370. {
  48371. front: {
  48372. height: math.unit(5 + 7/12, "feet"),
  48373. name: "Front",
  48374. image: {
  48375. source: "./media/characters/callow/front.svg",
  48376. extra: 1482/1304,
  48377. bottom: 23/1505
  48378. }
  48379. },
  48380. back: {
  48381. height: math.unit(5 + 7/12, "feet"),
  48382. name: "Back",
  48383. image: {
  48384. source: "./media/characters/callow/back.svg",
  48385. extra: 1484/1296,
  48386. bottom: 25/1509
  48387. }
  48388. },
  48389. },
  48390. [
  48391. {
  48392. name: "Micro",
  48393. height: math.unit(3, "inches"),
  48394. default: true
  48395. },
  48396. {
  48397. name: "Normal",
  48398. height: math.unit(5 + 7/12, "feet")
  48399. },
  48400. ]
  48401. ))
  48402. characterMakers.push(() => makeCharacter(
  48403. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48404. {
  48405. front: {
  48406. height: math.unit(6 + 2/12, "feet"),
  48407. name: "Front",
  48408. image: {
  48409. source: "./media/characters/natel/front.svg",
  48410. extra: 1833/1692,
  48411. bottom: 166/1999
  48412. }
  48413. },
  48414. },
  48415. [
  48416. {
  48417. name: "Normal",
  48418. height: math.unit(6 + 2/12, "feet"),
  48419. default: true
  48420. },
  48421. ]
  48422. ))
  48423. characterMakers.push(() => makeCharacter(
  48424. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48425. {
  48426. front: {
  48427. height: math.unit(1.75, "meters"),
  48428. name: "Front",
  48429. image: {
  48430. source: "./media/characters/misu/front.svg",
  48431. extra: 1690/1558,
  48432. bottom: 234/1924
  48433. }
  48434. },
  48435. back: {
  48436. height: math.unit(1.75, "meters"),
  48437. name: "Back",
  48438. image: {
  48439. source: "./media/characters/misu/back.svg",
  48440. extra: 1762/1618,
  48441. bottom: 146/1908
  48442. }
  48443. },
  48444. frontNude: {
  48445. height: math.unit(1.75, "meters"),
  48446. name: "Front (Nude)",
  48447. image: {
  48448. source: "./media/characters/misu/front-nude.svg",
  48449. extra: 1690/1558,
  48450. bottom: 234/1924
  48451. }
  48452. },
  48453. backNude: {
  48454. height: math.unit(1.75, "meters"),
  48455. name: "Back (Nude)",
  48456. image: {
  48457. source: "./media/characters/misu/back-nude.svg",
  48458. extra: 1762/1618,
  48459. bottom: 146/1908
  48460. }
  48461. },
  48462. frontErect: {
  48463. height: math.unit(1.75, "meters"),
  48464. name: "Front (Erect)",
  48465. image: {
  48466. source: "./media/characters/misu/front-erect.svg",
  48467. extra: 1690/1558,
  48468. bottom: 234/1924
  48469. }
  48470. },
  48471. maw: {
  48472. height: math.unit(0.47, "meters"),
  48473. name: "Maw",
  48474. image: {
  48475. source: "./media/characters/misu/maw.svg"
  48476. }
  48477. },
  48478. head: {
  48479. height: math.unit(0.35, "meters"),
  48480. name: "Head",
  48481. image: {
  48482. source: "./media/characters/misu/head.svg"
  48483. }
  48484. },
  48485. rear: {
  48486. height: math.unit(0.47, "meters"),
  48487. name: "Rear",
  48488. image: {
  48489. source: "./media/characters/misu/rear.svg"
  48490. }
  48491. },
  48492. },
  48493. [
  48494. {
  48495. name: "Normal",
  48496. height: math.unit(1.75, "meters")
  48497. },
  48498. {
  48499. name: "Not good for the people",
  48500. height: math.unit(42, "meters")
  48501. },
  48502. {
  48503. name: "Not good for the neighborhood",
  48504. height: math.unit(135, "meters")
  48505. },
  48506. {
  48507. name: "Bit bigger problem",
  48508. height: math.unit(380, "meters"),
  48509. default: true
  48510. },
  48511. {
  48512. name: "Not good for the city",
  48513. height: math.unit(1.5, "km")
  48514. },
  48515. {
  48516. name: "Not good for the county",
  48517. height: math.unit(5.5, "km")
  48518. },
  48519. {
  48520. name: "Not good for the state",
  48521. height: math.unit(25, "km")
  48522. },
  48523. {
  48524. name: "Not good for the country",
  48525. height: math.unit(125, "km")
  48526. },
  48527. {
  48528. name: "Not good for the continent",
  48529. height: math.unit(2100, "km")
  48530. },
  48531. {
  48532. name: "Not good for the planet",
  48533. height: math.unit(35000, "km")
  48534. },
  48535. {
  48536. name: "Just no",
  48537. height: math.unit(8.5e18, "km")
  48538. },
  48539. ]
  48540. ))
  48541. characterMakers.push(() => makeCharacter(
  48542. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48543. {
  48544. front: {
  48545. height: math.unit(6.5, "feet"),
  48546. name: "Front",
  48547. image: {
  48548. source: "./media/characters/poppy/front.svg",
  48549. extra: 1878/1812,
  48550. bottom: 43/1921
  48551. }
  48552. },
  48553. feet: {
  48554. height: math.unit(1.06, "feet"),
  48555. name: "Feet",
  48556. image: {
  48557. source: "./media/characters/poppy/feet.svg",
  48558. extra: 1083/1083,
  48559. bottom: 87/1170
  48560. }
  48561. },
  48562. },
  48563. [
  48564. {
  48565. name: "Human",
  48566. height: math.unit(6.5, "feet")
  48567. },
  48568. {
  48569. name: "Default",
  48570. height: math.unit(300, "feet"),
  48571. default: true
  48572. },
  48573. {
  48574. name: "Huge",
  48575. height: math.unit(850, "feet")
  48576. },
  48577. {
  48578. name: "Mega",
  48579. height: math.unit(8000, "feet")
  48580. },
  48581. {
  48582. name: "Giga",
  48583. height: math.unit(300, "miles")
  48584. },
  48585. ]
  48586. ))
  48587. characterMakers.push(() => makeCharacter(
  48588. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48589. {
  48590. bipedal: {
  48591. height: math.unit(7, "feet"),
  48592. name: "Bipedal",
  48593. image: {
  48594. source: "./media/characters/zener/bipedal.svg",
  48595. extra: 874/805,
  48596. bottom: 109/983
  48597. }
  48598. },
  48599. quadrupedal: {
  48600. height: math.unit(4.64, "feet"),
  48601. name: "Quadrupedal",
  48602. image: {
  48603. source: "./media/characters/zener/quadrupedal.svg",
  48604. extra: 638/507,
  48605. bottom: 190/828
  48606. }
  48607. },
  48608. cock: {
  48609. height: math.unit(18, "inches"),
  48610. name: "Cock",
  48611. image: {
  48612. source: "./media/characters/zener/cock.svg"
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(7, "feet"),
  48620. default: true
  48621. },
  48622. ]
  48623. ))
  48624. characterMakers.push(() => makeCharacter(
  48625. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48626. {
  48627. nude: {
  48628. height: math.unit(5 + 6/12, "feet"),
  48629. name: "Nude",
  48630. image: {
  48631. source: "./media/characters/charlie-dog/nude.svg",
  48632. extra: 768/734,
  48633. bottom: 26/794
  48634. }
  48635. },
  48636. dressed: {
  48637. height: math.unit(5 + 6/12, "feet"),
  48638. name: "Dressed",
  48639. image: {
  48640. source: "./media/characters/charlie-dog/dressed.svg",
  48641. extra: 768/734,
  48642. bottom: 26/794
  48643. }
  48644. },
  48645. },
  48646. [
  48647. {
  48648. name: "Normal",
  48649. height: math.unit(5 + 6/12, "feet"),
  48650. default: true
  48651. },
  48652. ]
  48653. ))
  48654. characterMakers.push(() => makeCharacter(
  48655. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48656. {
  48657. front: {
  48658. height: math.unit(6 + 4/12, "feet"),
  48659. name: "Front",
  48660. image: {
  48661. source: "./media/characters/ir'istrasz/front.svg",
  48662. extra: 1014/977,
  48663. bottom: 65/1079
  48664. }
  48665. },
  48666. back: {
  48667. height: math.unit(6 + 4/12, "feet"),
  48668. name: "Back",
  48669. image: {
  48670. source: "./media/characters/ir'istrasz/back.svg",
  48671. extra: 1024/992,
  48672. bottom: 34/1058
  48673. }
  48674. },
  48675. },
  48676. [
  48677. {
  48678. name: "Normal",
  48679. height: math.unit(6 + 4/12, "feet"),
  48680. default: true
  48681. },
  48682. ]
  48683. ))
  48684. characterMakers.push(() => makeCharacter(
  48685. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48686. {
  48687. front: {
  48688. height: math.unit(5 + 8/12, "feet"),
  48689. name: "Front",
  48690. image: {
  48691. source: "./media/characters/dee-ditto/front.svg",
  48692. extra: 1874/1785,
  48693. bottom: 68/1942
  48694. }
  48695. },
  48696. back: {
  48697. height: math.unit(5 + 8/12, "feet"),
  48698. name: "Back",
  48699. image: {
  48700. source: "./media/characters/dee-ditto/back.svg",
  48701. extra: 1870/1783,
  48702. bottom: 77/1947
  48703. }
  48704. },
  48705. },
  48706. [
  48707. {
  48708. name: "Normal",
  48709. height: math.unit(5 + 8/12, "feet"),
  48710. default: true
  48711. },
  48712. ]
  48713. ))
  48714. characterMakers.push(() => makeCharacter(
  48715. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48716. {
  48717. front: {
  48718. height: math.unit(7 + 6/12, "feet"),
  48719. name: "Front",
  48720. image: {
  48721. source: "./media/characters/fey/front.svg",
  48722. extra: 995/979,
  48723. bottom: 30/1025
  48724. }
  48725. },
  48726. back: {
  48727. height: math.unit(7 + 6/12, "feet"),
  48728. name: "Back",
  48729. image: {
  48730. source: "./media/characters/fey/back.svg",
  48731. extra: 1079/1008,
  48732. bottom: 5/1084
  48733. }
  48734. },
  48735. dressed: {
  48736. height: math.unit(7 + 6/12, "feet"),
  48737. name: "Dressed",
  48738. image: {
  48739. source: "./media/characters/fey/dressed.svg",
  48740. extra: 995/979,
  48741. bottom: 30/1025
  48742. }
  48743. },
  48744. },
  48745. [
  48746. {
  48747. name: "Normal",
  48748. height: math.unit(7 + 6/12, "feet"),
  48749. default: true
  48750. },
  48751. ]
  48752. ))
  48753. characterMakers.push(() => makeCharacter(
  48754. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48755. {
  48756. standing: {
  48757. height: math.unit(17, "feet"),
  48758. name: "Standing",
  48759. image: {
  48760. source: "./media/characters/aster/standing.svg",
  48761. extra: 1798/1598,
  48762. bottom: 117/1915
  48763. }
  48764. },
  48765. },
  48766. [
  48767. {
  48768. name: "Normal",
  48769. height: math.unit(17, "feet"),
  48770. default: true
  48771. },
  48772. {
  48773. name: "Homewrecker",
  48774. height: math.unit(95, "feet")
  48775. },
  48776. {
  48777. name: "Planet Devourer",
  48778. height: math.unit(1008000, "miles")
  48779. },
  48780. ]
  48781. ))
  48782. characterMakers.push(() => makeCharacter(
  48783. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48784. {
  48785. front: {
  48786. height: math.unit(6 + 5/12, "feet"),
  48787. weight: math.unit(265, "lb"),
  48788. name: "Front",
  48789. image: {
  48790. source: "./media/characters/devon-childs/front.svg",
  48791. extra: 1795/1721,
  48792. bottom: 41/1836
  48793. }
  48794. },
  48795. side: {
  48796. height: math.unit(6 + 5/12, "feet"),
  48797. weight: math.unit(265, "lb"),
  48798. name: "Side",
  48799. image: {
  48800. source: "./media/characters/devon-childs/side.svg",
  48801. extra: 1812/1738,
  48802. bottom: 30/1842
  48803. }
  48804. },
  48805. back: {
  48806. height: math.unit(6 + 5/12, "feet"),
  48807. weight: math.unit(265, "lb"),
  48808. name: "Back",
  48809. image: {
  48810. source: "./media/characters/devon-childs/back.svg",
  48811. extra: 1808/1735,
  48812. bottom: 23/1831
  48813. }
  48814. },
  48815. hand: {
  48816. height: math.unit(1.464, "feet"),
  48817. name: "Hand",
  48818. image: {
  48819. source: "./media/characters/devon-childs/hand.svg"
  48820. }
  48821. },
  48822. foot: {
  48823. height: math.unit(1.6, "feet"),
  48824. name: "Foot",
  48825. image: {
  48826. source: "./media/characters/devon-childs/foot.svg"
  48827. }
  48828. },
  48829. },
  48830. [
  48831. {
  48832. name: "Micro",
  48833. height: math.unit(7, "cm")
  48834. },
  48835. {
  48836. name: "Normal",
  48837. height: math.unit(6 + 5/12, "feet"),
  48838. default: true
  48839. },
  48840. {
  48841. name: "Macro",
  48842. height: math.unit(154, "feet")
  48843. },
  48844. ]
  48845. ))
  48846. characterMakers.push(() => makeCharacter(
  48847. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48848. {
  48849. front: {
  48850. height: math.unit(6, "feet"),
  48851. weight: math.unit(180, "lb"),
  48852. name: "Front",
  48853. image: {
  48854. source: "./media/characters/lydemox-vir/front.svg",
  48855. extra: 1632/1435,
  48856. bottom: 58/1690
  48857. }
  48858. },
  48859. frontSFW: {
  48860. height: math.unit(6, "feet"),
  48861. weight: math.unit(180, "lb"),
  48862. name: "Front (SFW)",
  48863. image: {
  48864. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48865. extra: 1632/1435,
  48866. bottom: 58/1690
  48867. }
  48868. },
  48869. back: {
  48870. height: math.unit(6, "feet"),
  48871. weight: math.unit(180, "lb"),
  48872. name: "Back",
  48873. image: {
  48874. source: "./media/characters/lydemox-vir/back.svg",
  48875. extra: 1593/1408,
  48876. bottom: 31/1624
  48877. }
  48878. },
  48879. paw: {
  48880. height: math.unit(1.85, "feet"),
  48881. name: "Paw",
  48882. image: {
  48883. source: "./media/characters/lydemox-vir/paw.svg"
  48884. }
  48885. },
  48886. dick: {
  48887. height: math.unit(1.8, "feet"),
  48888. name: "Dick",
  48889. image: {
  48890. source: "./media/characters/lydemox-vir/dick.svg"
  48891. }
  48892. },
  48893. },
  48894. [
  48895. {
  48896. name: "Macro",
  48897. height: math.unit(100, "feet"),
  48898. default: true
  48899. },
  48900. {
  48901. name: "Teramacro",
  48902. height: math.unit(1, "earth")
  48903. },
  48904. {
  48905. name: "Planetary",
  48906. height: math.unit(20, "earths")
  48907. },
  48908. ]
  48909. ))
  48910. characterMakers.push(() => makeCharacter(
  48911. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48912. {
  48913. front: {
  48914. height: math.unit(15 + 8/12, "feet"),
  48915. weight: math.unit(1237, "kg"),
  48916. name: "Front",
  48917. image: {
  48918. source: "./media/characters/mia/front.svg",
  48919. extra: 1573/1446,
  48920. bottom: 58/1631
  48921. }
  48922. },
  48923. },
  48924. [
  48925. {
  48926. name: "Small",
  48927. height: math.unit(9 + 5/12, "feet")
  48928. },
  48929. {
  48930. name: "Normal",
  48931. height: math.unit(15 + 8/12, "feet"),
  48932. default: true
  48933. },
  48934. ]
  48935. ))
  48936. characterMakers.push(() => makeCharacter(
  48937. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48938. {
  48939. front: {
  48940. height: math.unit(10 + 6/12, "feet"),
  48941. weight: math.unit(1.3, "tons"),
  48942. name: "Front",
  48943. image: {
  48944. source: "./media/characters/mr-graves/front.svg",
  48945. extra: 1779/1695,
  48946. bottom: 198/1977
  48947. }
  48948. },
  48949. },
  48950. [
  48951. {
  48952. name: "Normal",
  48953. height: math.unit(10 + 6 /12, "feet"),
  48954. default: true
  48955. },
  48956. ]
  48957. ))
  48958. characterMakers.push(() => makeCharacter(
  48959. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48960. {
  48961. dressedFront: {
  48962. height: math.unit(5 + 8/12, "feet"),
  48963. weight: math.unit(125, "lb"),
  48964. name: "Dressed (Front)",
  48965. image: {
  48966. source: "./media/characters/jess/dressed-front.svg",
  48967. extra: 1176/1152,
  48968. bottom: 42/1218
  48969. }
  48970. },
  48971. dressedSide: {
  48972. height: math.unit(5 + 8/12, "feet"),
  48973. weight: math.unit(125, "lb"),
  48974. name: "Dressed (Side)",
  48975. image: {
  48976. source: "./media/characters/jess/dressed-side.svg",
  48977. extra: 1204/1190,
  48978. bottom: 6/1210
  48979. }
  48980. },
  48981. nudeFront: {
  48982. height: math.unit(5 + 8/12, "feet"),
  48983. weight: math.unit(125, "lb"),
  48984. name: "Nude (Front)",
  48985. image: {
  48986. source: "./media/characters/jess/nude-front.svg",
  48987. extra: 1176/1152,
  48988. bottom: 42/1218
  48989. }
  48990. },
  48991. nudeSide: {
  48992. height: math.unit(5 + 8/12, "feet"),
  48993. weight: math.unit(125, "lb"),
  48994. name: "Nude (Side)",
  48995. image: {
  48996. source: "./media/characters/jess/nude-side.svg",
  48997. extra: 1204/1190,
  48998. bottom: 6/1210
  48999. }
  49000. },
  49001. organsFront: {
  49002. height: math.unit(2.83799342105, "feet"),
  49003. name: "Organs (Front)",
  49004. image: {
  49005. source: "./media/characters/jess/organs-front.svg"
  49006. }
  49007. },
  49008. organsSide: {
  49009. height: math.unit(2.64225290474, "feet"),
  49010. name: "Organs (Side)",
  49011. image: {
  49012. source: "./media/characters/jess/organs-side.svg"
  49013. }
  49014. },
  49015. digestiveTractFront: {
  49016. height: math.unit(2.8106580871, "feet"),
  49017. name: "Digestive Tract (Front)",
  49018. image: {
  49019. source: "./media/characters/jess/digestive-tract-front.svg"
  49020. }
  49021. },
  49022. digestiveTractSide: {
  49023. height: math.unit(2.54365045014, "feet"),
  49024. name: "Digestive Tract (Side)",
  49025. image: {
  49026. source: "./media/characters/jess/digestive-tract-side.svg"
  49027. }
  49028. },
  49029. respiratorySystemFront: {
  49030. height: math.unit(1.11196233456, "feet"),
  49031. name: "Respiratory System (Front)",
  49032. image: {
  49033. source: "./media/characters/jess/respiratory-system-front.svg"
  49034. }
  49035. },
  49036. respiratorySystemSide: {
  49037. height: math.unit(0.89327966297, "feet"),
  49038. name: "Respiratory System (Side)",
  49039. image: {
  49040. source: "./media/characters/jess/respiratory-system-side.svg"
  49041. }
  49042. },
  49043. urinaryTractFront: {
  49044. height: math.unit(1.16126356186, "feet"),
  49045. name: "Urinary Tract (Front)",
  49046. image: {
  49047. source: "./media/characters/jess/urinary-tract-front.svg"
  49048. }
  49049. },
  49050. urinaryTractSide: {
  49051. height: math.unit(1.20910039627, "feet"),
  49052. name: "Urinary Tract (Side)",
  49053. image: {
  49054. source: "./media/characters/jess/urinary-tract-side.svg"
  49055. }
  49056. },
  49057. reproductiveOrgansFront: {
  49058. height: math.unit(0.48422591566, "feet"),
  49059. name: "Reproductive Organs (Front)",
  49060. image: {
  49061. source: "./media/characters/jess/reproductive-organs-front.svg"
  49062. }
  49063. },
  49064. reproductiveOrgansSide: {
  49065. height: math.unit(0.61553314481, "feet"),
  49066. name: "Reproductive Organs (Side)",
  49067. image: {
  49068. source: "./media/characters/jess/reproductive-organs-side.svg"
  49069. }
  49070. },
  49071. breastsFront: {
  49072. height: math.unit(0.47690395121, "feet"),
  49073. name: "Breasts (Front)",
  49074. image: {
  49075. source: "./media/characters/jess/breasts-front.svg"
  49076. }
  49077. },
  49078. breastsSide: {
  49079. height: math.unit(0.30556998307, "feet"),
  49080. name: "Breasts (Side)",
  49081. image: {
  49082. source: "./media/characters/jess/breasts-side.svg"
  49083. }
  49084. },
  49085. heartFront: {
  49086. height: math.unit(0.53011022622, "feet"),
  49087. name: "Heart (Front)",
  49088. image: {
  49089. source: "./media/characters/jess/heart-front.svg"
  49090. }
  49091. },
  49092. heartSide: {
  49093. height: math.unit(0.51790695213, "feet"),
  49094. name: "Heart (Side)",
  49095. image: {
  49096. source: "./media/characters/jess/heart-side.svg"
  49097. }
  49098. },
  49099. earsAndNoseFront: {
  49100. height: math.unit(0.29385483995, "feet"),
  49101. name: "Ears and Nose (Front)",
  49102. image: {
  49103. source: "./media/characters/jess/ears-and-nose-front.svg"
  49104. }
  49105. },
  49106. earsAndNoseSide: {
  49107. height: math.unit(0.18109658741, "feet"),
  49108. name: "Ears and Nose (Side)",
  49109. image: {
  49110. source: "./media/characters/jess/ears-and-nose-side.svg"
  49111. }
  49112. },
  49113. },
  49114. [
  49115. {
  49116. name: "Normal",
  49117. height: math.unit(5 + 8/12, "feet"),
  49118. default: true
  49119. },
  49120. ]
  49121. ))
  49122. characterMakers.push(() => makeCharacter(
  49123. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49124. {
  49125. front: {
  49126. height: math.unit(6, "feet"),
  49127. weight: math.unit(6.64467e-7, "grams"),
  49128. name: "Front",
  49129. image: {
  49130. source: "./media/characters/wimpering/front.svg",
  49131. extra: 597/587,
  49132. bottom: 34/631
  49133. }
  49134. },
  49135. },
  49136. [
  49137. {
  49138. name: "Micro",
  49139. height: math.unit(0.4, "mm"),
  49140. default: true
  49141. },
  49142. ]
  49143. ))
  49144. characterMakers.push(() => makeCharacter(
  49145. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49146. {
  49147. front: {
  49148. height: math.unit(5 + 2/12, "feet"),
  49149. weight: math.unit(110, "lb"),
  49150. name: "Front",
  49151. image: {
  49152. source: "./media/characters/keltre/front.svg",
  49153. extra: 1099/1057,
  49154. bottom: 22/1121
  49155. }
  49156. },
  49157. back: {
  49158. height: math.unit(5 + 2/12, "feet"),
  49159. weight: math.unit(110, "lb"),
  49160. name: "Back",
  49161. image: {
  49162. source: "./media/characters/keltre/back.svg",
  49163. extra: 1095/1053,
  49164. bottom: 17/1112
  49165. }
  49166. },
  49167. dressed: {
  49168. height: math.unit(5 + 2/12, "feet"),
  49169. weight: math.unit(110, "lb"),
  49170. name: "Dressed",
  49171. image: {
  49172. source: "./media/characters/keltre/dressed.svg",
  49173. extra: 1099/1057,
  49174. bottom: 22/1121
  49175. }
  49176. },
  49177. winter: {
  49178. height: math.unit(5 + 2/12, "feet"),
  49179. weight: math.unit(110, "lb"),
  49180. name: "Winter",
  49181. image: {
  49182. source: "./media/characters/keltre/winter.svg",
  49183. extra: 1099/1057,
  49184. bottom: 22/1121
  49185. }
  49186. },
  49187. head: {
  49188. height: math.unit(1.61 * 0.86, "feet"),
  49189. name: "Head",
  49190. image: {
  49191. source: "./media/characters/keltre/head.svg",
  49192. extra: 534/421,
  49193. bottom: 0/534
  49194. }
  49195. },
  49196. hand: {
  49197. height: math.unit(1.3 * 0.86, "feet"),
  49198. name: "Hand",
  49199. image: {
  49200. source: "./media/characters/keltre/hand.svg"
  49201. }
  49202. },
  49203. foot: {
  49204. height: math.unit(1.8 * 0.86, "feet"),
  49205. name: "Foot",
  49206. image: {
  49207. source: "./media/characters/keltre/foot.svg"
  49208. }
  49209. },
  49210. },
  49211. [
  49212. {
  49213. name: "Fine",
  49214. height: math.unit(1, "inch")
  49215. },
  49216. {
  49217. name: "Dimnutive",
  49218. height: math.unit(4, "inches")
  49219. },
  49220. {
  49221. name: "Tiny",
  49222. height: math.unit(1, "foot")
  49223. },
  49224. {
  49225. name: "Small",
  49226. height: math.unit(3, "feet")
  49227. },
  49228. {
  49229. name: "Normal",
  49230. height: math.unit(5 + 2/12, "feet"),
  49231. default: true
  49232. },
  49233. ]
  49234. ))
  49235. characterMakers.push(() => makeCharacter(
  49236. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49237. {
  49238. front: {
  49239. height: math.unit(6 + 2/12, "feet"),
  49240. name: "Front",
  49241. image: {
  49242. source: "./media/characters/nox/front.svg",
  49243. extra: 1917/1830,
  49244. bottom: 74/1991
  49245. }
  49246. },
  49247. back: {
  49248. height: math.unit(6 + 2/12, "feet"),
  49249. name: "Back",
  49250. image: {
  49251. source: "./media/characters/nox/back.svg",
  49252. extra: 1896/1815,
  49253. bottom: 21/1917
  49254. }
  49255. },
  49256. head: {
  49257. height: math.unit(1.1, "feet"),
  49258. name: "Head",
  49259. image: {
  49260. source: "./media/characters/nox/head.svg",
  49261. extra: 874/704,
  49262. bottom: 0/874
  49263. }
  49264. },
  49265. tattoo: {
  49266. height: math.unit(0.729, "feet"),
  49267. name: "Tattoo",
  49268. image: {
  49269. source: "./media/characters/nox/tattoo.svg"
  49270. }
  49271. },
  49272. },
  49273. [
  49274. {
  49275. name: "Normal",
  49276. height: math.unit(6 + 2/12, "feet")
  49277. },
  49278. {
  49279. name: "Gigamacro",
  49280. height: math.unit(2, "earths"),
  49281. default: true
  49282. },
  49283. {
  49284. name: "Cosmic",
  49285. height: math.unit(867, "yottameters")
  49286. },
  49287. ]
  49288. ))
  49289. characterMakers.push(() => makeCharacter(
  49290. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49291. {
  49292. front: {
  49293. height: math.unit(6, "feet"),
  49294. weight: math.unit(150, "lb"),
  49295. name: "Front",
  49296. image: {
  49297. source: "./media/characters/caspian/front.svg",
  49298. extra: 1443/1359,
  49299. bottom: 0/1443
  49300. }
  49301. },
  49302. back: {
  49303. height: math.unit(6, "feet"),
  49304. weight: math.unit(150, "lb"),
  49305. name: "Back",
  49306. image: {
  49307. source: "./media/characters/caspian/back.svg",
  49308. extra: 1379/1309,
  49309. bottom: 0/1379
  49310. }
  49311. },
  49312. head: {
  49313. height: math.unit(0.9, "feet"),
  49314. name: "Head",
  49315. image: {
  49316. source: "./media/characters/caspian/head.svg",
  49317. extra: 692/492,
  49318. bottom: 0/692
  49319. }
  49320. },
  49321. headAlt: {
  49322. height: math.unit(0.95, "feet"),
  49323. name: "Head (Alt)",
  49324. image: {
  49325. source: "./media/characters/caspian/head-alt.svg",
  49326. extra: 668/508,
  49327. bottom: 0/668
  49328. }
  49329. },
  49330. hand: {
  49331. height: math.unit(0.8, "feet"),
  49332. name: "Hand",
  49333. image: {
  49334. source: "./media/characters/caspian/hand.svg"
  49335. }
  49336. },
  49337. paw: {
  49338. height: math.unit(0.95, "feet"),
  49339. name: "Paw",
  49340. image: {
  49341. source: "./media/characters/caspian/paw.svg"
  49342. }
  49343. },
  49344. },
  49345. [
  49346. {
  49347. name: "Normal",
  49348. height: math.unit(162, "feet"),
  49349. default: true
  49350. },
  49351. ]
  49352. ))
  49353. characterMakers.push(() => makeCharacter(
  49354. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49355. {
  49356. front: {
  49357. height: math.unit(6, "feet"),
  49358. name: "Front",
  49359. image: {
  49360. source: "./media/characters/myra-aisling/front.svg",
  49361. extra: 1268/1166,
  49362. bottom: 73/1341
  49363. }
  49364. },
  49365. back: {
  49366. height: math.unit(6, "feet"),
  49367. name: "Back",
  49368. image: {
  49369. source: "./media/characters/myra-aisling/back.svg",
  49370. extra: 1249/1149,
  49371. bottom: 79/1328
  49372. }
  49373. },
  49374. dressed: {
  49375. height: math.unit(6, "feet"),
  49376. name: "Dressed",
  49377. image: {
  49378. source: "./media/characters/myra-aisling/dressed.svg",
  49379. extra: 1290/1189,
  49380. bottom: 47/1337
  49381. }
  49382. },
  49383. hand: {
  49384. height: math.unit(1.1, "feet"),
  49385. name: "Hand",
  49386. image: {
  49387. source: "./media/characters/myra-aisling/hand.svg"
  49388. }
  49389. },
  49390. paw: {
  49391. height: math.unit(1.23, "feet"),
  49392. name: "Paw",
  49393. image: {
  49394. source: "./media/characters/myra-aisling/paw.svg"
  49395. }
  49396. },
  49397. },
  49398. [
  49399. {
  49400. name: "Normal",
  49401. height: math.unit(160, "feet"),
  49402. default: true
  49403. },
  49404. ]
  49405. ))
  49406. characterMakers.push(() => makeCharacter(
  49407. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49408. {
  49409. front: {
  49410. height: math.unit(6, "feet"),
  49411. name: "Front",
  49412. image: {
  49413. source: "./media/characters/tenley-sidero/front.svg",
  49414. extra: 1365/1276,
  49415. bottom: 47/1412
  49416. }
  49417. },
  49418. back: {
  49419. height: math.unit(6, "feet"),
  49420. name: "Back",
  49421. image: {
  49422. source: "./media/characters/tenley-sidero/back.svg",
  49423. extra: 1383/1283,
  49424. bottom: 35/1418
  49425. }
  49426. },
  49427. dressed: {
  49428. height: math.unit(6, "feet"),
  49429. name: "Dressed",
  49430. image: {
  49431. source: "./media/characters/tenley-sidero/dressed.svg",
  49432. extra: 1364/1275,
  49433. bottom: 42/1406
  49434. }
  49435. },
  49436. head: {
  49437. height: math.unit(1.47, "feet"),
  49438. name: "Head",
  49439. image: {
  49440. source: "./media/characters/tenley-sidero/head.svg",
  49441. extra: 610/490,
  49442. bottom: 0/610
  49443. }
  49444. },
  49445. },
  49446. [
  49447. {
  49448. name: "Normal",
  49449. height: math.unit(154, "feet"),
  49450. default: true
  49451. },
  49452. ]
  49453. ))
  49454. characterMakers.push(() => makeCharacter(
  49455. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49456. {
  49457. front: {
  49458. height: math.unit(5, "inches"),
  49459. name: "Front",
  49460. image: {
  49461. source: "./media/characters/mallory/front.svg",
  49462. extra: 1919/1678,
  49463. bottom: 29/1948
  49464. }
  49465. },
  49466. hand: {
  49467. height: math.unit(0.73, "inches"),
  49468. name: "Hand",
  49469. image: {
  49470. source: "./media/characters/mallory/hand.svg"
  49471. }
  49472. },
  49473. paw: {
  49474. height: math.unit(0.68, "inches"),
  49475. name: "Paw",
  49476. image: {
  49477. source: "./media/characters/mallory/paw.svg"
  49478. }
  49479. },
  49480. },
  49481. [
  49482. {
  49483. name: "Small",
  49484. height: math.unit(5, "inches"),
  49485. default: true
  49486. },
  49487. ]
  49488. ))
  49489. characterMakers.push(() => makeCharacter(
  49490. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49491. {
  49492. naked: {
  49493. height: math.unit(6, "feet"),
  49494. name: "Naked",
  49495. image: {
  49496. source: "./media/characters/mab/naked.svg",
  49497. extra: 1855/1757,
  49498. bottom: 208/2063
  49499. }
  49500. },
  49501. outside: {
  49502. height: math.unit(6, "feet"),
  49503. name: "Outside",
  49504. image: {
  49505. source: "./media/characters/mab/outside.svg",
  49506. extra: 1855/1757,
  49507. bottom: 208/2063
  49508. }
  49509. },
  49510. party: {
  49511. height: math.unit(6, "feet"),
  49512. name: "Party",
  49513. image: {
  49514. source: "./media/characters/mab/party.svg",
  49515. extra: 1855/1757,
  49516. bottom: 208/2063
  49517. }
  49518. },
  49519. },
  49520. [
  49521. {
  49522. name: "Normal",
  49523. height: math.unit(165, "feet"),
  49524. default: true
  49525. },
  49526. ]
  49527. ))
  49528. characterMakers.push(() => makeCharacter(
  49529. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49530. {
  49531. feral: {
  49532. height: math.unit(12, "feet"),
  49533. weight: math.unit(20000, "lb"),
  49534. name: "Side",
  49535. image: {
  49536. source: "./media/characters/winter/feral.svg",
  49537. extra: 1286/943,
  49538. bottom: 112/1398
  49539. },
  49540. form: "feral",
  49541. default: true
  49542. },
  49543. feralNsfw: {
  49544. height: math.unit(12, "feet"),
  49545. weight: math.unit(20000, "lb"),
  49546. name: "Side (NSFW)",
  49547. image: {
  49548. source: "./media/characters/winter/feral-nsfw.svg",
  49549. extra: 1286/943,
  49550. bottom: 112/1398
  49551. },
  49552. form: "feral"
  49553. },
  49554. dick: {
  49555. height: math.unit(3.79, "feet"),
  49556. name: "Dick",
  49557. image: {
  49558. source: "./media/characters/winter/dick.svg"
  49559. },
  49560. form: "feral"
  49561. },
  49562. anthro: {
  49563. height: math.unit(12, "feet"),
  49564. weight: math.unit(10, "tons"),
  49565. name: "Anthro",
  49566. image: {
  49567. source: "./media/characters/winter/anthro.svg",
  49568. extra: 1701/1553,
  49569. bottom: 64/1765
  49570. },
  49571. form: "anthro",
  49572. default: true
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Big",
  49578. height: math.unit(12, "feet"),
  49579. default: true,
  49580. form: "feral"
  49581. },
  49582. {
  49583. name: "Big",
  49584. height: math.unit(12, "feet"),
  49585. default: true,
  49586. form: "anthro"
  49587. },
  49588. ],
  49589. {
  49590. "feral": {
  49591. name: "Feral",
  49592. default: true
  49593. },
  49594. "anthro": {
  49595. name: "Anthro"
  49596. }
  49597. }
  49598. ))
  49599. characterMakers.push(() => makeCharacter(
  49600. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49601. {
  49602. front: {
  49603. height: math.unit(4.1, "inches"),
  49604. name: "Front",
  49605. image: {
  49606. source: "./media/characters/alto/front.svg",
  49607. extra: 736/627,
  49608. bottom: 90/826
  49609. }
  49610. },
  49611. },
  49612. [
  49613. {
  49614. name: "Normal",
  49615. height: math.unit(4.1, "inches"),
  49616. default: true
  49617. },
  49618. ]
  49619. ))
  49620. characterMakers.push(() => makeCharacter(
  49621. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49622. {
  49623. sitting: {
  49624. height: math.unit(3, "feet"),
  49625. name: "Sitting",
  49626. image: {
  49627. source: "./media/characters/ratstrid-v/sitting.svg",
  49628. extra: 355/310,
  49629. bottom: 136/491
  49630. }
  49631. },
  49632. },
  49633. [
  49634. {
  49635. name: "Normal",
  49636. height: math.unit(3, "feet"),
  49637. default: true
  49638. },
  49639. ]
  49640. ))
  49641. characterMakers.push(() => makeCharacter(
  49642. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49643. {
  49644. back: {
  49645. height: math.unit(6, "feet"),
  49646. weight: math.unit(350, "lb"),
  49647. name: "Back",
  49648. image: {
  49649. source: "./media/characters/siz/back.svg",
  49650. extra: 1449/1274,
  49651. bottom: 13/1462
  49652. }
  49653. },
  49654. },
  49655. [
  49656. {
  49657. name: "Over-Overcompressed",
  49658. height: math.unit(8, "feet")
  49659. },
  49660. {
  49661. name: "Overcompressed",
  49662. height: math.unit(32, "feet")
  49663. },
  49664. {
  49665. name: "Compressed",
  49666. height: math.unit(128, "feet"),
  49667. default: true
  49668. },
  49669. {
  49670. name: "Half-Compressed",
  49671. height: math.unit(512, "feet")
  49672. },
  49673. {
  49674. name: "Quarter-Compressed",
  49675. height: math.unit(2048, "feet")
  49676. },
  49677. {
  49678. name: "Uncompressed?",
  49679. height: math.unit(8192, "feet")
  49680. },
  49681. ]
  49682. ))
  49683. characterMakers.push(() => makeCharacter(
  49684. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49685. {
  49686. front: {
  49687. height: math.unit(5 + 9/12, "feet"),
  49688. weight: math.unit(150, "lb"),
  49689. name: "Front",
  49690. image: {
  49691. source: "./media/characters/ven/front.svg",
  49692. extra: 1372/1320,
  49693. bottom: 73/1445
  49694. }
  49695. },
  49696. side: {
  49697. height: math.unit(5 + 9/12, "feet"),
  49698. weight: math.unit(1150, "lb"),
  49699. name: "Side",
  49700. image: {
  49701. source: "./media/characters/ven/side.svg",
  49702. extra: 1119/1070,
  49703. bottom: 42/1161
  49704. },
  49705. default: true
  49706. },
  49707. },
  49708. [
  49709. {
  49710. name: "Normal",
  49711. height: math.unit(5 + 9/12, "feet"),
  49712. default: true
  49713. },
  49714. ]
  49715. ))
  49716. characterMakers.push(() => makeCharacter(
  49717. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49718. {
  49719. front: {
  49720. height: math.unit(12, "feet"),
  49721. weight: math.unit(1000, "kg"),
  49722. name: "Front",
  49723. image: {
  49724. source: "./media/characters/maple/front.svg",
  49725. extra: 1193/1081,
  49726. bottom: 22/1215
  49727. }
  49728. },
  49729. },
  49730. [
  49731. {
  49732. name: "Compressed",
  49733. height: math.unit(7, "feet")
  49734. },
  49735. {
  49736. name: "Normal",
  49737. height: math.unit(12, "feet"),
  49738. default: true
  49739. },
  49740. ]
  49741. ))
  49742. characterMakers.push(() => makeCharacter(
  49743. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49744. {
  49745. front: {
  49746. height: math.unit(9, "feet"),
  49747. weight: math.unit(1500, "lb"),
  49748. name: "Front",
  49749. image: {
  49750. source: "./media/characters/nora/front.svg",
  49751. extra: 1348/1286,
  49752. bottom: 218/1566
  49753. }
  49754. },
  49755. erect: {
  49756. height: math.unit(9, "feet"),
  49757. weight: math.unit(11500, "lb"),
  49758. name: "Erect",
  49759. image: {
  49760. source: "./media/characters/nora/erect.svg",
  49761. extra: 1488/1433,
  49762. bottom: 133/1621
  49763. }
  49764. },
  49765. },
  49766. [
  49767. {
  49768. name: "Normal",
  49769. height: math.unit(9, "feet"),
  49770. default: true
  49771. },
  49772. ]
  49773. ))
  49774. characterMakers.push(() => makeCharacter(
  49775. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49776. {
  49777. front: {
  49778. height: math.unit(25, "feet"),
  49779. weight: math.unit(27500, "lb"),
  49780. name: "Front",
  49781. image: {
  49782. source: "./media/characters/north-caudin/front.svg",
  49783. extra: 1184/1082,
  49784. bottom: 23/1207
  49785. }
  49786. },
  49787. },
  49788. [
  49789. {
  49790. name: "Compressed",
  49791. height: math.unit(10, "feet")
  49792. },
  49793. {
  49794. name: "Normal",
  49795. height: math.unit(25, "feet"),
  49796. default: true
  49797. },
  49798. ]
  49799. ))
  49800. characterMakers.push(() => makeCharacter(
  49801. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49802. {
  49803. front: {
  49804. height: math.unit(9, "feet"),
  49805. weight: math.unit(1250, "lb"),
  49806. name: "Front",
  49807. image: {
  49808. source: "./media/characters/merrian/front.svg",
  49809. extra: 2393/2304,
  49810. bottom: 40/2433
  49811. }
  49812. },
  49813. },
  49814. [
  49815. {
  49816. name: "Normal",
  49817. height: math.unit(9, "feet"),
  49818. default: true
  49819. },
  49820. ]
  49821. ))
  49822. characterMakers.push(() => makeCharacter(
  49823. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49824. {
  49825. front: {
  49826. height: math.unit(9, "feet"),
  49827. weight: math.unit(1000, "lb"),
  49828. name: "Front",
  49829. image: {
  49830. source: "./media/characters/hazel/front.svg",
  49831. extra: 2351/2298,
  49832. bottom: 38/2389
  49833. }
  49834. },
  49835. },
  49836. [
  49837. {
  49838. name: "Normal",
  49839. height: math.unit(9, "feet"),
  49840. default: true
  49841. },
  49842. ]
  49843. ))
  49844. characterMakers.push(() => makeCharacter(
  49845. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49846. {
  49847. front: {
  49848. height: math.unit(13, "feet"),
  49849. weight: math.unit(3200, "lb"),
  49850. name: "Front",
  49851. image: {
  49852. source: "./media/characters/emma/front.svg",
  49853. extra: 2263/2029,
  49854. bottom: 68/2331
  49855. }
  49856. },
  49857. },
  49858. [
  49859. {
  49860. name: "Normal",
  49861. height: math.unit(13, "feet"),
  49862. default: true
  49863. },
  49864. ]
  49865. ))
  49866. characterMakers.push(() => makeCharacter(
  49867. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49868. {
  49869. front: {
  49870. height: math.unit(11 + 9/12, "feet"),
  49871. weight: math.unit(2500, "lb"),
  49872. name: "Front",
  49873. image: {
  49874. source: "./media/characters/ilumina/front.svg",
  49875. extra: 2248/2209,
  49876. bottom: 164/2412
  49877. }
  49878. },
  49879. },
  49880. [
  49881. {
  49882. name: "Normal",
  49883. height: math.unit(11 + 9/12, "feet"),
  49884. default: true
  49885. },
  49886. ]
  49887. ))
  49888. characterMakers.push(() => makeCharacter(
  49889. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49890. {
  49891. front: {
  49892. height: math.unit(8 + 10/12, "feet"),
  49893. weight: math.unit(1350, "lb"),
  49894. name: "Front",
  49895. image: {
  49896. source: "./media/characters/moonshine/front.svg",
  49897. extra: 2395/2288,
  49898. bottom: 40/2435
  49899. }
  49900. },
  49901. },
  49902. [
  49903. {
  49904. name: "Normal",
  49905. height: math.unit(8 + 10/12, "feet"),
  49906. default: true
  49907. },
  49908. ]
  49909. ))
  49910. characterMakers.push(() => makeCharacter(
  49911. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49912. {
  49913. front: {
  49914. height: math.unit(14, "feet"),
  49915. weight: math.unit(3400, "lb"),
  49916. name: "Front",
  49917. image: {
  49918. source: "./media/characters/aletia/front.svg",
  49919. extra: 1185/1052,
  49920. bottom: 21/1206
  49921. }
  49922. },
  49923. },
  49924. [
  49925. {
  49926. name: "Compressed",
  49927. height: math.unit(8, "feet")
  49928. },
  49929. {
  49930. name: "Normal",
  49931. height: math.unit(14, "feet"),
  49932. default: true
  49933. },
  49934. ]
  49935. ))
  49936. characterMakers.push(() => makeCharacter(
  49937. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49938. {
  49939. front: {
  49940. height: math.unit(17, "feet"),
  49941. weight: math.unit(6500, "lb"),
  49942. name: "Front",
  49943. image: {
  49944. source: "./media/characters/deidra/front.svg",
  49945. extra: 1201/1081,
  49946. bottom: 16/1217
  49947. }
  49948. },
  49949. },
  49950. [
  49951. {
  49952. name: "Compressed",
  49953. height: math.unit(9 + 6/12, "feet")
  49954. },
  49955. {
  49956. name: "Normal",
  49957. height: math.unit(17, "feet"),
  49958. default: true
  49959. },
  49960. ]
  49961. ))
  49962. characterMakers.push(() => makeCharacter(
  49963. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49964. {
  49965. front: {
  49966. height: math.unit(7 + 4/12, "feet"),
  49967. weight: math.unit(280, "lb"),
  49968. name: "Front",
  49969. image: {
  49970. source: "./media/characters/freki-yrmori/front.svg",
  49971. extra: 1286/1182,
  49972. bottom: 29/1315
  49973. }
  49974. },
  49975. maw: {
  49976. height: math.unit(0.9, "feet"),
  49977. name: "Maw",
  49978. image: {
  49979. source: "./media/characters/freki-yrmori/maw.svg"
  49980. }
  49981. },
  49982. },
  49983. [
  49984. {
  49985. name: "Normal",
  49986. height: math.unit(7 + 4/12, "feet"),
  49987. default: true
  49988. },
  49989. {
  49990. name: "Macro",
  49991. height: math.unit(38.5, "meters")
  49992. },
  49993. ]
  49994. ))
  49995. characterMakers.push(() => makeCharacter(
  49996. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49997. {
  49998. side: {
  49999. height: math.unit(47.2, "meters"),
  50000. weight: math.unit(10000, "tons"),
  50001. name: "Side",
  50002. image: {
  50003. source: "./media/characters/aetherios/side.svg",
  50004. extra: 2363/642,
  50005. bottom: 221/2584
  50006. }
  50007. },
  50008. top: {
  50009. height: math.unit(240, "meters"),
  50010. weight: math.unit(10000, "tons"),
  50011. name: "Top",
  50012. image: {
  50013. source: "./media/characters/aetherios/top.svg"
  50014. }
  50015. },
  50016. bottom: {
  50017. height: math.unit(240, "meters"),
  50018. weight: math.unit(10000, "tons"),
  50019. name: "Bottom",
  50020. image: {
  50021. source: "./media/characters/aetherios/bottom.svg"
  50022. }
  50023. },
  50024. head: {
  50025. height: math.unit(38.6, "meters"),
  50026. name: "Head",
  50027. image: {
  50028. source: "./media/characters/aetherios/head.svg",
  50029. extra: 1335/1112,
  50030. bottom: 0/1335
  50031. }
  50032. },
  50033. front: {
  50034. height: math.unit(29, "meters"),
  50035. name: "Front",
  50036. image: {
  50037. source: "./media/characters/aetherios/front.svg",
  50038. extra: 1266/953,
  50039. bottom: 158/1424
  50040. }
  50041. },
  50042. maw: {
  50043. height: math.unit(16.37, "meters"),
  50044. name: "Maw",
  50045. image: {
  50046. source: "./media/characters/aetherios/maw.svg",
  50047. extra: 748/637,
  50048. bottom: 0/748
  50049. },
  50050. extraAttributes: {
  50051. preyCapacity: {
  50052. name: "Capacity",
  50053. power: 3,
  50054. type: "volume",
  50055. base: math.unit(1000, "people")
  50056. },
  50057. tongueSize: {
  50058. name: "Tongue Size",
  50059. power: 2,
  50060. type: "area",
  50061. base: math.unit(21, "m^2")
  50062. }
  50063. }
  50064. },
  50065. forepaw: {
  50066. height: math.unit(18, "meters"),
  50067. name: "Forepaw",
  50068. image: {
  50069. source: "./media/characters/aetherios/forepaw.svg"
  50070. }
  50071. },
  50072. hindpaw: {
  50073. height: math.unit(23, "meters"),
  50074. name: "Hindpaw",
  50075. image: {
  50076. source: "./media/characters/aetherios/hindpaw.svg"
  50077. }
  50078. },
  50079. genitals: {
  50080. height: math.unit(42, "meters"),
  50081. name: "Genitals",
  50082. image: {
  50083. source: "./media/characters/aetherios/genitals.svg"
  50084. }
  50085. },
  50086. },
  50087. [
  50088. {
  50089. name: "Normal",
  50090. height: math.unit(47.2, "meters"),
  50091. default: true
  50092. },
  50093. {
  50094. name: "Macro",
  50095. height: math.unit(160, "meters")
  50096. },
  50097. {
  50098. name: "Mega",
  50099. height: math.unit(1.87, "km")
  50100. },
  50101. {
  50102. name: "Giga",
  50103. height: math.unit(40000, "km")
  50104. },
  50105. {
  50106. name: "Stellar",
  50107. height: math.unit(158000000, "km")
  50108. },
  50109. {
  50110. name: "Cosmic",
  50111. height: math.unit(9.46e12, "km")
  50112. },
  50113. ]
  50114. ))
  50115. characterMakers.push(() => makeCharacter(
  50116. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50117. {
  50118. front: {
  50119. height: math.unit(5 + 4/12, "feet"),
  50120. weight: math.unit(80, "lb"),
  50121. name: "Front",
  50122. image: {
  50123. source: "./media/characters/mizu-gieeg/front.svg",
  50124. extra: 850/709,
  50125. bottom: 52/902
  50126. }
  50127. },
  50128. back: {
  50129. height: math.unit(5 + 4/12, "feet"),
  50130. weight: math.unit(80, "lb"),
  50131. name: "Back",
  50132. image: {
  50133. source: "./media/characters/mizu-gieeg/back.svg",
  50134. extra: 882/745,
  50135. bottom: 25/907
  50136. }
  50137. },
  50138. },
  50139. [
  50140. {
  50141. name: "Normal",
  50142. height: math.unit(5 + 4/12, "feet"),
  50143. default: true
  50144. },
  50145. ]
  50146. ))
  50147. characterMakers.push(() => makeCharacter(
  50148. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50149. {
  50150. front: {
  50151. height: math.unit(6, "feet"),
  50152. name: "Front",
  50153. image: {
  50154. source: "./media/characters/roselle-st-papier/front.svg",
  50155. extra: 1430/1280,
  50156. bottom: 37/1467
  50157. }
  50158. },
  50159. back: {
  50160. height: math.unit(6, "feet"),
  50161. name: "Back",
  50162. image: {
  50163. source: "./media/characters/roselle-st-papier/back.svg",
  50164. extra: 1491/1296,
  50165. bottom: 23/1514
  50166. }
  50167. },
  50168. ear: {
  50169. height: math.unit(1.26, "feet"),
  50170. name: "Ear",
  50171. image: {
  50172. source: "./media/characters/roselle-st-papier/ear.svg"
  50173. }
  50174. },
  50175. },
  50176. [
  50177. {
  50178. name: "Normal",
  50179. height: math.unit(150, "feet"),
  50180. default: true
  50181. },
  50182. ]
  50183. ))
  50184. characterMakers.push(() => makeCharacter(
  50185. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50186. {
  50187. front: {
  50188. height: math.unit(1, "inches"),
  50189. name: "Front",
  50190. image: {
  50191. source: "./media/characters/valargent/front.svg",
  50192. extra: 1825/1694,
  50193. bottom: 62/1887
  50194. }
  50195. },
  50196. back: {
  50197. height: math.unit(1, "inches"),
  50198. name: "Back",
  50199. image: {
  50200. source: "./media/characters/valargent/back.svg",
  50201. extra: 1775/1682,
  50202. bottom: 88/1863
  50203. }
  50204. },
  50205. },
  50206. [
  50207. {
  50208. name: "Micro",
  50209. height: math.unit(1, "inch"),
  50210. default: true
  50211. },
  50212. ]
  50213. ))
  50214. characterMakers.push(() => makeCharacter(
  50215. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50216. {
  50217. front: {
  50218. height: math.unit(3.4, "meters"),
  50219. name: "Front",
  50220. image: {
  50221. source: "./media/characters/zarina/front.svg",
  50222. extra: 1733/1425,
  50223. bottom: 93/1826
  50224. }
  50225. },
  50226. squatting: {
  50227. height: math.unit(2.14, "meters"),
  50228. name: "Squatting",
  50229. image: {
  50230. source: "./media/characters/zarina/squatting.svg",
  50231. extra: 1073/788,
  50232. bottom: 63/1136
  50233. }
  50234. },
  50235. back: {
  50236. height: math.unit(2.14, "meters"),
  50237. name: "Back",
  50238. image: {
  50239. source: "./media/characters/zarina/back.svg",
  50240. extra: 1128/885,
  50241. bottom: 0/1128
  50242. }
  50243. },
  50244. },
  50245. [
  50246. {
  50247. name: "Normal",
  50248. height: math.unit(3.4, "meters"),
  50249. default: true
  50250. },
  50251. {
  50252. name: "Big",
  50253. height: math.unit(5, "meters")
  50254. },
  50255. {
  50256. name: "Macro",
  50257. height: math.unit(110, "meters")
  50258. },
  50259. ]
  50260. ))
  50261. characterMakers.push(() => makeCharacter(
  50262. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50263. {
  50264. front: {
  50265. height: math.unit(7, "feet"),
  50266. name: "Front",
  50267. image: {
  50268. source: "./media/characters/ventus-astro-fox/front.svg",
  50269. extra: 1792/1623,
  50270. bottom: 28/1820
  50271. }
  50272. },
  50273. back: {
  50274. height: math.unit(7, "feet"),
  50275. name: "Back",
  50276. image: {
  50277. source: "./media/characters/ventus-astro-fox/back.svg",
  50278. extra: 1789/1620,
  50279. bottom: 31/1820
  50280. }
  50281. },
  50282. outfit: {
  50283. height: math.unit(7, "feet"),
  50284. name: "Outfit",
  50285. image: {
  50286. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50287. extra: 1054/925,
  50288. bottom: 15/1069
  50289. }
  50290. },
  50291. head: {
  50292. height: math.unit(1.12, "feet"),
  50293. name: "Head",
  50294. image: {
  50295. source: "./media/characters/ventus-astro-fox/head.svg",
  50296. extra: 866/504,
  50297. bottom: 0/866
  50298. }
  50299. },
  50300. hand: {
  50301. height: math.unit(1, "feet"),
  50302. name: "Hand",
  50303. image: {
  50304. source: "./media/characters/ventus-astro-fox/hand.svg"
  50305. }
  50306. },
  50307. paw: {
  50308. height: math.unit(1.5, "feet"),
  50309. name: "Paw",
  50310. image: {
  50311. source: "./media/characters/ventus-astro-fox/paw.svg"
  50312. }
  50313. },
  50314. },
  50315. [
  50316. {
  50317. name: "Normal",
  50318. height: math.unit(7, "feet"),
  50319. default: true
  50320. },
  50321. {
  50322. name: "Macro",
  50323. height: math.unit(200, "feet")
  50324. },
  50325. {
  50326. name: "Cosmic",
  50327. height: math.unit(3, "universes")
  50328. },
  50329. ]
  50330. ))
  50331. characterMakers.push(() => makeCharacter(
  50332. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50333. {
  50334. front: {
  50335. height: math.unit(3, "meters"),
  50336. weight: math.unit(7000, "lb"),
  50337. name: "Front",
  50338. image: {
  50339. source: "./media/characters/core-t/front.svg",
  50340. extra: 5729/4941,
  50341. bottom: 1129/6858
  50342. }
  50343. },
  50344. },
  50345. [
  50346. {
  50347. name: "Big",
  50348. height: math.unit(3, "meters"),
  50349. default: true
  50350. },
  50351. ]
  50352. ))
  50353. characterMakers.push(() => makeCharacter(
  50354. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50355. {
  50356. normal: {
  50357. height: math.unit(6 + 6/12, "feet"),
  50358. weight: math.unit(275, "lb"),
  50359. name: "Front",
  50360. image: {
  50361. source: "./media/characters/cadbunny/normal.svg",
  50362. extra: 1129/947,
  50363. bottom: 93/1222
  50364. },
  50365. default: true,
  50366. form: "normal"
  50367. },
  50368. gigantamax: {
  50369. height: math.unit(26, "feet"),
  50370. weight: math.unit(16000, "lb"),
  50371. name: "Front",
  50372. image: {
  50373. source: "./media/characters/cadbunny/gigantamax.svg",
  50374. extra: 1133/944,
  50375. bottom: 90/1223
  50376. },
  50377. default: true,
  50378. form: "gigantamax"
  50379. },
  50380. },
  50381. [
  50382. {
  50383. name: "Normal",
  50384. height: math.unit(6 + 6/12, "feet"),
  50385. default: true,
  50386. form: "normal"
  50387. },
  50388. {
  50389. name: "Small",
  50390. height: math.unit(26, "feet"),
  50391. default: true,
  50392. form: "gigantamax"
  50393. },
  50394. {
  50395. name: "Large",
  50396. height: math.unit(78, "feet"),
  50397. form: "gigantamax"
  50398. },
  50399. ],
  50400. {
  50401. "normal": {
  50402. name: "Normal",
  50403. default: true
  50404. },
  50405. "gigantamax": {
  50406. name: "Gigantamax"
  50407. }
  50408. }
  50409. ))
  50410. characterMakers.push(() => makeCharacter(
  50411. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50412. {
  50413. anthroFront: {
  50414. height: math.unit(8, "feet"),
  50415. weight: math.unit(300, "lb"),
  50416. name: "Front",
  50417. image: {
  50418. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50419. extra: 1272/1176,
  50420. bottom: 53/1325
  50421. },
  50422. form: "anthro",
  50423. default: true
  50424. },
  50425. feralSide: {
  50426. height: math.unit(4, "feet"),
  50427. weight: math.unit(250, "lb"),
  50428. name: "Side",
  50429. image: {
  50430. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50431. extra: 731/621,
  50432. bottom: 0/731
  50433. },
  50434. form: "feral",
  50435. default: true
  50436. },
  50437. },
  50438. [
  50439. {
  50440. name: "Regular",
  50441. height: math.unit(8, "feet"),
  50442. form: "anthro"
  50443. },
  50444. {
  50445. name: "Macro",
  50446. height: math.unit(250, "feet"),
  50447. form: "anthro",
  50448. default: true
  50449. },
  50450. {
  50451. name: "Regular",
  50452. height: math.unit(4, "feet"),
  50453. form: "feral"
  50454. },
  50455. {
  50456. name: "Macro",
  50457. height: math.unit(125, "feet"),
  50458. form: "feral",
  50459. default: true
  50460. },
  50461. ],
  50462. {
  50463. "anthro": {
  50464. name: "Anthro",
  50465. default: true
  50466. },
  50467. "feral": {
  50468. name: "Feral",
  50469. },
  50470. }
  50471. ))
  50472. characterMakers.push(() => makeCharacter(
  50473. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50474. {
  50475. front: {
  50476. height: math.unit(11 + 10/12, "feet"),
  50477. weight: math.unit(1587, "kg"),
  50478. name: "Front",
  50479. image: {
  50480. source: "./media/characters/maple-javira-dragon/front.svg",
  50481. extra: 1136/744,
  50482. bottom: 73/1209
  50483. }
  50484. },
  50485. side: {
  50486. height: math.unit(11 + 10/12, "feet"),
  50487. weight: math.unit(1587, "kg"),
  50488. name: "Side",
  50489. image: {
  50490. source: "./media/characters/maple-javira-dragon/side.svg",
  50491. extra: 712/505,
  50492. bottom: 17/729
  50493. }
  50494. },
  50495. head: {
  50496. height: math.unit(8.05, "feet"),
  50497. name: "Head",
  50498. image: {
  50499. source: "./media/characters/maple-javira-dragon/head.svg",
  50500. extra: 1420/1344,
  50501. bottom: 0/1420
  50502. }
  50503. },
  50504. },
  50505. [
  50506. {
  50507. name: "Normal",
  50508. height: math.unit(11 + 10/12, "feet"),
  50509. default: true
  50510. },
  50511. ]
  50512. ))
  50513. characterMakers.push(() => makeCharacter(
  50514. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50515. {
  50516. front: {
  50517. height: math.unit(117, "cm"),
  50518. weight: math.unit(50, "kg"),
  50519. name: "Front",
  50520. image: {
  50521. source: "./media/characters/sonia-wyverntail/front.svg",
  50522. extra: 708/592,
  50523. bottom: 25/733
  50524. }
  50525. },
  50526. },
  50527. [
  50528. {
  50529. name: "Normal",
  50530. height: math.unit(117, "cm"),
  50531. default: true
  50532. },
  50533. ]
  50534. ))
  50535. characterMakers.push(() => makeCharacter(
  50536. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50537. {
  50538. front: {
  50539. height: math.unit(6 + 5/12, "feet"),
  50540. name: "Front",
  50541. image: {
  50542. source: "./media/characters/micah/front.svg",
  50543. extra: 1758/1546,
  50544. bottom: 214/1972
  50545. }
  50546. },
  50547. },
  50548. [
  50549. {
  50550. name: "Normal",
  50551. height: math.unit(6 + 5/12, "feet"),
  50552. default: true
  50553. },
  50554. ]
  50555. ))
  50556. characterMakers.push(() => makeCharacter(
  50557. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50558. {
  50559. front: {
  50560. height: math.unit(5 + 10/12, "feet"),
  50561. weight: math.unit(220, "lb"),
  50562. name: "Front",
  50563. image: {
  50564. source: "./media/characters/zarya/front.svg",
  50565. extra: 593/572,
  50566. bottom: 50/643
  50567. }
  50568. },
  50569. back: {
  50570. height: math.unit(5 + 10/12, "feet"),
  50571. weight: math.unit(220, "lb"),
  50572. name: "Back",
  50573. image: {
  50574. source: "./media/characters/zarya/back.svg",
  50575. extra: 603/582,
  50576. bottom: 38/641
  50577. }
  50578. },
  50579. },
  50580. [
  50581. {
  50582. name: "Normal",
  50583. height: math.unit(5 + 10/12, "feet"),
  50584. default: true
  50585. },
  50586. ]
  50587. ))
  50588. characterMakers.push(() => makeCharacter(
  50589. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50590. {
  50591. front: {
  50592. height: math.unit(7.5, "feet"),
  50593. name: "Front",
  50594. image: {
  50595. source: "./media/characters/sven-hatisson/front.svg",
  50596. extra: 917/857,
  50597. bottom: 42/959
  50598. }
  50599. },
  50600. back: {
  50601. height: math.unit(7.5, "feet"),
  50602. name: "Back",
  50603. image: {
  50604. source: "./media/characters/sven-hatisson/back.svg",
  50605. extra: 903/856,
  50606. bottom: 15/918
  50607. }
  50608. },
  50609. },
  50610. [
  50611. {
  50612. name: "Base Height",
  50613. height: math.unit(7.5, "feet")
  50614. },
  50615. {
  50616. name: "Usual Height",
  50617. height: math.unit(13.5, "feet"),
  50618. default: true
  50619. },
  50620. {
  50621. name: "Smaller Macro",
  50622. height: math.unit(85, "feet")
  50623. },
  50624. {
  50625. name: "Moderate Macro",
  50626. height: math.unit(320, "feet")
  50627. },
  50628. {
  50629. name: "Large Macro",
  50630. height: math.unit(1000, "feet")
  50631. },
  50632. {
  50633. name: "Largest Size",
  50634. height: math.unit(2, "miles")
  50635. },
  50636. ]
  50637. ))
  50638. characterMakers.push(() => makeCharacter(
  50639. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50640. {
  50641. side: {
  50642. height: math.unit(1.8, "meters"),
  50643. weight: math.unit(275, "kg"),
  50644. name: "Side",
  50645. image: {
  50646. source: "./media/characters/terra/side.svg",
  50647. extra: 1273/1147,
  50648. bottom: 0/1273
  50649. }
  50650. },
  50651. },
  50652. [
  50653. {
  50654. name: "Normal",
  50655. height: math.unit(16.2, "meters"),
  50656. default: true
  50657. },
  50658. ]
  50659. ))
  50660. characterMakers.push(() => makeCharacter(
  50661. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50662. {
  50663. borzoiFront: {
  50664. height: math.unit(6 + 9/12, "feet"),
  50665. name: "Front",
  50666. image: {
  50667. source: "./media/characters/rae/borzoi-front.svg",
  50668. extra: 1161/1098,
  50669. bottom: 31/1192
  50670. },
  50671. form: "borzoi",
  50672. default: true
  50673. },
  50674. werewolfFront: {
  50675. height: math.unit(8 + 7/12, "feet"),
  50676. name: "Front",
  50677. image: {
  50678. source: "./media/characters/rae/werewolf-front.svg",
  50679. extra: 1411/1334,
  50680. bottom: 127/1538
  50681. },
  50682. form: "werewolf",
  50683. default: true
  50684. },
  50685. },
  50686. [
  50687. {
  50688. name: "Normal",
  50689. height: math.unit(6 + 9/12, "feet"),
  50690. default: true,
  50691. form: "borzoi"
  50692. },
  50693. {
  50694. name: "Normal",
  50695. height: math.unit(8 + 7/12, "feet"),
  50696. default: true,
  50697. form: "werewolf"
  50698. },
  50699. ],
  50700. {
  50701. "borzoi": {
  50702. name: "Borzoi",
  50703. default: true
  50704. },
  50705. "werewolf": {
  50706. name: "Werewolf",
  50707. },
  50708. }
  50709. ))
  50710. characterMakers.push(() => makeCharacter(
  50711. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50712. {
  50713. front: {
  50714. height: math.unit(8 + 7/12, "feet"),
  50715. weight: math.unit(482, "lb"),
  50716. name: "Front",
  50717. image: {
  50718. source: "./media/characters/kit/front.svg",
  50719. extra: 1247/1103,
  50720. bottom: 41/1288
  50721. }
  50722. },
  50723. back: {
  50724. height: math.unit(8 + 7/12, "feet"),
  50725. weight: math.unit(482, "lb"),
  50726. name: "Back",
  50727. image: {
  50728. source: "./media/characters/kit/back.svg",
  50729. extra: 1252/1123,
  50730. bottom: 21/1273
  50731. }
  50732. },
  50733. paw: {
  50734. height: math.unit(1.46, "feet"),
  50735. name: "Paw",
  50736. image: {
  50737. source: "./media/characters/kit/paw.svg"
  50738. }
  50739. },
  50740. },
  50741. [
  50742. {
  50743. name: "Normal",
  50744. height: math.unit(2.61, "meters"),
  50745. default: true
  50746. },
  50747. {
  50748. name: "\"Tall\"",
  50749. height: math.unit(8.21, "meters")
  50750. },
  50751. {
  50752. name: "Tall",
  50753. height: math.unit(19.6, "meters")
  50754. },
  50755. {
  50756. name: "Very Tall",
  50757. height: math.unit(57.91, "meters")
  50758. },
  50759. {
  50760. name: "Semi-Macro",
  50761. height: math.unit(138.64, "meters")
  50762. },
  50763. {
  50764. name: "Macro",
  50765. height: math.unit(831.99, "meters")
  50766. },
  50767. {
  50768. name: "EX-Macro",
  50769. height: math.unit(96451121, "meters")
  50770. },
  50771. {
  50772. name: "S1-Omnipotent",
  50773. height: math.unit(4.42074e+9, "meters")
  50774. },
  50775. {
  50776. name: "S2-Omnipotent",
  50777. height: math.unit(9.42074e+17, "meters")
  50778. },
  50779. {
  50780. name: "Omnipotent",
  50781. height: math.unit(4.23112e+24, "meters")
  50782. },
  50783. {
  50784. name: "Hypergod",
  50785. height: math.unit(5.05176e+27, "meters")
  50786. },
  50787. {
  50788. name: "Hypergod-EX",
  50789. height: math.unit(9.45532e+49, "meters")
  50790. },
  50791. {
  50792. name: "Hypergod-SP",
  50793. height: math.unit(9.45532e+195, "meters")
  50794. },
  50795. ]
  50796. ))
  50797. characterMakers.push(() => makeCharacter(
  50798. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50799. {
  50800. side: {
  50801. height: math.unit(0.6, "meters"),
  50802. weight: math.unit(24, "kg"),
  50803. name: "Side",
  50804. image: {
  50805. source: "./media/characters/celeste/side.svg",
  50806. extra: 810/517,
  50807. bottom: 53/863
  50808. }
  50809. },
  50810. },
  50811. [
  50812. {
  50813. name: "Velociraptor",
  50814. height: math.unit(0.6, "meters"),
  50815. default: true
  50816. },
  50817. {
  50818. name: "Utahraptor",
  50819. height: math.unit(1.8, "meters")
  50820. },
  50821. {
  50822. name: "Gallimimus",
  50823. height: math.unit(4.0, "meters")
  50824. },
  50825. {
  50826. name: "Large",
  50827. height: math.unit(20, "meters")
  50828. },
  50829. {
  50830. name: "Planetary",
  50831. height: math.unit(50, "megameters")
  50832. },
  50833. {
  50834. name: "Stellar",
  50835. height: math.unit(1.5, "gigameters")
  50836. },
  50837. {
  50838. name: "Galactic",
  50839. height: math.unit(100, "exameters")
  50840. },
  50841. ]
  50842. ))
  50843. characterMakers.push(() => makeCharacter(
  50844. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50845. {
  50846. front: {
  50847. height: math.unit(6, "feet"),
  50848. weight: math.unit(210, "lb"),
  50849. name: "Front",
  50850. image: {
  50851. source: "./media/characters/glacia/front.svg",
  50852. extra: 958/901,
  50853. bottom: 45/1003
  50854. }
  50855. },
  50856. },
  50857. [
  50858. {
  50859. name: "Macro",
  50860. height: math.unit(1000, "meters"),
  50861. default: true
  50862. },
  50863. ]
  50864. ))
  50865. characterMakers.push(() => makeCharacter(
  50866. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50867. {
  50868. front: {
  50869. height: math.unit(4, "meters"),
  50870. name: "Front",
  50871. image: {
  50872. source: "./media/characters/giri/front.svg",
  50873. extra: 966/894,
  50874. bottom: 21/987
  50875. }
  50876. },
  50877. },
  50878. [
  50879. {
  50880. name: "Normal",
  50881. height: math.unit(4, "meters"),
  50882. default: true
  50883. },
  50884. ]
  50885. ))
  50886. characterMakers.push(() => makeCharacter(
  50887. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50888. {
  50889. back: {
  50890. height: math.unit(4, "feet"),
  50891. weight: math.unit(37, "lb"),
  50892. name: "Back",
  50893. image: {
  50894. source: "./media/characters/tin/back.svg",
  50895. extra: 845/780,
  50896. bottom: 28/873
  50897. }
  50898. },
  50899. },
  50900. [
  50901. {
  50902. name: "Normal",
  50903. height: math.unit(4, "feet"),
  50904. default: true
  50905. },
  50906. ]
  50907. ))
  50908. characterMakers.push(() => makeCharacter(
  50909. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50910. {
  50911. front: {
  50912. height: math.unit(25, "feet"),
  50913. name: "Front",
  50914. image: {
  50915. source: "./media/characters/cadenza-vivace/front.svg",
  50916. extra: 1842/1578,
  50917. bottom: 30/1872
  50918. }
  50919. },
  50920. },
  50921. [
  50922. {
  50923. name: "Macro",
  50924. height: math.unit(25, "feet"),
  50925. default: true
  50926. },
  50927. ]
  50928. ))
  50929. characterMakers.push(() => makeCharacter(
  50930. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50931. {
  50932. front: {
  50933. height: math.unit(10, "feet"),
  50934. weight: math.unit(625, "kg"),
  50935. name: "Front",
  50936. image: {
  50937. source: "./media/characters/zain/front.svg",
  50938. extra: 1682/1498,
  50939. bottom: 223/1905
  50940. }
  50941. },
  50942. back: {
  50943. height: math.unit(10, "feet"),
  50944. weight: math.unit(625, "kg"),
  50945. name: "Back",
  50946. image: {
  50947. source: "./media/characters/zain/back.svg",
  50948. extra: 1814/1657,
  50949. bottom: 152/1966
  50950. }
  50951. },
  50952. head: {
  50953. height: math.unit(10, "feet"),
  50954. weight: math.unit(625, "kg"),
  50955. name: "Head",
  50956. image: {
  50957. source: "./media/characters/zain/head.svg",
  50958. extra: 1059/762,
  50959. bottom: 0/1059
  50960. }
  50961. },
  50962. },
  50963. [
  50964. {
  50965. name: "Normal",
  50966. height: math.unit(10, "feet"),
  50967. default: true
  50968. },
  50969. ]
  50970. ))
  50971. characterMakers.push(() => makeCharacter(
  50972. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50973. {
  50974. front: {
  50975. height: math.unit(6 + 5/12, "feet"),
  50976. weight: math.unit(750, "lb"),
  50977. name: "Front",
  50978. image: {
  50979. source: "./media/characters/ruchex/front.svg",
  50980. extra: 877/820,
  50981. bottom: 17/894
  50982. },
  50983. extraAttributes: {
  50984. "width": {
  50985. name: "Width",
  50986. power: 1,
  50987. type: "length",
  50988. base: math.unit(4.757, "feet")
  50989. },
  50990. }
  50991. },
  50992. },
  50993. [
  50994. {
  50995. name: "Normal",
  50996. height: math.unit(6 + 5/12, "feet"),
  50997. default: true
  50998. },
  50999. ]
  51000. ))
  51001. characterMakers.push(() => makeCharacter(
  51002. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51003. {
  51004. dressedFront: {
  51005. height: math.unit(191, "cm"),
  51006. weight: math.unit(80, "kg"),
  51007. name: "Front",
  51008. image: {
  51009. source: "./media/characters/buster/dressed-front.svg",
  51010. extra: 1022/973,
  51011. bottom: 69/1091
  51012. }
  51013. },
  51014. dressedBack: {
  51015. height: math.unit(191, "cm"),
  51016. weight: math.unit(80, "kg"),
  51017. name: "Back",
  51018. image: {
  51019. source: "./media/characters/buster/dressed-back.svg",
  51020. extra: 1018/970,
  51021. bottom: 55/1073
  51022. }
  51023. },
  51024. nudeFront: {
  51025. height: math.unit(191, "cm"),
  51026. weight: math.unit(80, "kg"),
  51027. name: "Front (Nude)",
  51028. image: {
  51029. source: "./media/characters/buster/nude-front.svg",
  51030. extra: 1022/973,
  51031. bottom: 69/1091
  51032. }
  51033. },
  51034. nudeBack: {
  51035. height: math.unit(191, "cm"),
  51036. weight: math.unit(80, "kg"),
  51037. name: "Back (Nude)",
  51038. image: {
  51039. source: "./media/characters/buster/nude-back.svg",
  51040. extra: 1018/970,
  51041. bottom: 55/1073
  51042. }
  51043. },
  51044. dick: {
  51045. height: math.unit(2.59, "feet"),
  51046. name: "Dick",
  51047. image: {
  51048. source: "./media/characters/buster/dick.svg"
  51049. }
  51050. },
  51051. ass: {
  51052. height: math.unit(1.2, "feet"),
  51053. name: "Ass",
  51054. image: {
  51055. source: "./media/characters/buster/ass.svg"
  51056. }
  51057. },
  51058. },
  51059. [
  51060. {
  51061. name: "Normal",
  51062. height: math.unit(191, "cm"),
  51063. default: true
  51064. },
  51065. ]
  51066. ))
  51067. characterMakers.push(() => makeCharacter(
  51068. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51069. {
  51070. side: {
  51071. height: math.unit(8.1, "feet"),
  51072. weight: math.unit(3500, "lb"),
  51073. name: "Side",
  51074. image: {
  51075. source: "./media/characters/sonya/side.svg",
  51076. extra: 1730/1317,
  51077. bottom: 86/1816
  51078. }
  51079. },
  51080. },
  51081. [
  51082. {
  51083. name: "Normal",
  51084. height: math.unit(8.1, "feet"),
  51085. default: true
  51086. },
  51087. ]
  51088. ))
  51089. characterMakers.push(() => makeCharacter(
  51090. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51091. {
  51092. front: {
  51093. height: math.unit(6, "feet"),
  51094. weight: math.unit(150, "lb"),
  51095. name: "Front",
  51096. image: {
  51097. source: "./media/characters/cadence-andrysiak/front.svg",
  51098. extra: 1164/1121,
  51099. bottom: 60/1224
  51100. }
  51101. },
  51102. back: {
  51103. height: math.unit(6, "feet"),
  51104. weight: math.unit(150, "lb"),
  51105. name: "Back",
  51106. image: {
  51107. source: "./media/characters/cadence-andrysiak/back.svg",
  51108. extra: 1200/1165,
  51109. bottom: 9/1209
  51110. }
  51111. },
  51112. dressed: {
  51113. height: math.unit(6, "feet"),
  51114. weight: math.unit(150, "lb"),
  51115. name: "Dressed",
  51116. image: {
  51117. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51118. extra: 1164/1121,
  51119. bottom: 60/1224
  51120. }
  51121. },
  51122. },
  51123. [
  51124. {
  51125. name: "Micro",
  51126. height: math.unit(1, "mm")
  51127. },
  51128. {
  51129. name: "Normal",
  51130. height: math.unit(6, "feet"),
  51131. default: true
  51132. },
  51133. ]
  51134. ))
  51135. characterMakers.push(() => makeCharacter(
  51136. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51137. {
  51138. front: {
  51139. height: math.unit(60, "inches"),
  51140. weight: math.unit(16, "lb"),
  51141. preyCapacity: math.unit(80, "liters"),
  51142. name: "Front",
  51143. image: {
  51144. source: "./media/characters/penny-lynx/front.svg",
  51145. extra: 1959/1769,
  51146. bottom: 49/2008
  51147. }
  51148. },
  51149. },
  51150. [
  51151. {
  51152. name: "Nokia",
  51153. height: math.unit(2, "inches")
  51154. },
  51155. {
  51156. name: "Desktop",
  51157. height: math.unit(24, "inches")
  51158. },
  51159. {
  51160. name: "TV",
  51161. height: math.unit(60, "inches")
  51162. },
  51163. {
  51164. name: "Jumbotron",
  51165. height: math.unit(12, "feet")
  51166. },
  51167. {
  51168. name: "Billboard",
  51169. height: math.unit(48, "feet"),
  51170. default: true
  51171. },
  51172. {
  51173. name: "IMAX",
  51174. height: math.unit(96, "feet")
  51175. },
  51176. {
  51177. name: "SINGULARITY",
  51178. height: math.unit(864938, "miles")
  51179. },
  51180. ]
  51181. ))
  51182. characterMakers.push(() => makeCharacter(
  51183. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51184. {
  51185. front: {
  51186. height: math.unit(5 + 4/12, "feet"),
  51187. weight: math.unit(230, "lb"),
  51188. name: "Front",
  51189. image: {
  51190. source: "./media/characters/sukebe/front.svg",
  51191. extra: 2130/2038,
  51192. bottom: 90/2220
  51193. }
  51194. },
  51195. back: {
  51196. height: math.unit(3.48, "feet"),
  51197. weight: math.unit(230, "lb"),
  51198. name: "Back",
  51199. image: {
  51200. source: "./media/characters/sukebe/back.svg",
  51201. extra: 1670/1604,
  51202. bottom: 0/1670
  51203. }
  51204. },
  51205. },
  51206. [
  51207. {
  51208. name: "Normal",
  51209. height: math.unit(5 + 4/12, "feet"),
  51210. default: true
  51211. },
  51212. ]
  51213. ))
  51214. characterMakers.push(() => makeCharacter(
  51215. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51216. {
  51217. front: {
  51218. height: math.unit(6, "feet"),
  51219. name: "Front",
  51220. image: {
  51221. source: "./media/characters/nylla/front.svg",
  51222. extra: 1868/1699,
  51223. bottom: 97/1965
  51224. }
  51225. },
  51226. back: {
  51227. height: math.unit(6, "feet"),
  51228. name: "Back",
  51229. image: {
  51230. source: "./media/characters/nylla/back.svg",
  51231. extra: 1889/1712,
  51232. bottom: 93/1982
  51233. }
  51234. },
  51235. frontNsfw: {
  51236. height: math.unit(6, "feet"),
  51237. name: "Front (NSFW)",
  51238. image: {
  51239. source: "./media/characters/nylla/front-nsfw.svg",
  51240. extra: 1868/1699,
  51241. bottom: 97/1965
  51242. },
  51243. extraAttributes: {
  51244. "dickLength": {
  51245. name: "Dick Length",
  51246. power: 1,
  51247. type: "length",
  51248. base: math.unit(1.4, "feet")
  51249. },
  51250. "cumVolume": {
  51251. name: "Cum Volume",
  51252. power: 3,
  51253. type: "volume",
  51254. base: math.unit(100, "mL")
  51255. },
  51256. }
  51257. },
  51258. backNsfw: {
  51259. height: math.unit(6, "feet"),
  51260. name: "Back (NSFW)",
  51261. image: {
  51262. source: "./media/characters/nylla/back-nsfw.svg",
  51263. extra: 1889/1712,
  51264. bottom: 93/1982
  51265. }
  51266. },
  51267. maw: {
  51268. height: math.unit(2.10, "feet"),
  51269. name: "Maw",
  51270. image: {
  51271. source: "./media/characters/nylla/maw.svg"
  51272. }
  51273. },
  51274. paws: {
  51275. height: math.unit(2.06, "feet"),
  51276. name: "Paws",
  51277. image: {
  51278. source: "./media/characters/nylla/paws.svg"
  51279. }
  51280. },
  51281. muzzle: {
  51282. height: math.unit(0.61, "feet"),
  51283. name: "Muzzle",
  51284. image: {
  51285. source: "./media/characters/nylla/muzzle.svg"
  51286. }
  51287. },
  51288. sheath: {
  51289. height: math.unit(1.305, "feet"),
  51290. name: "Sheath",
  51291. image: {
  51292. source: "./media/characters/nylla/sheath.svg"
  51293. }
  51294. },
  51295. },
  51296. [
  51297. {
  51298. name: "Micro",
  51299. height: math.unit(7.5, "inches")
  51300. },
  51301. {
  51302. name: "Normal",
  51303. height: math.unit(7, "feet"),
  51304. default: true
  51305. },
  51306. {
  51307. name: "Macro",
  51308. height: math.unit(60, "feet")
  51309. },
  51310. {
  51311. name: "Mega",
  51312. height: math.unit(200, "feet")
  51313. },
  51314. ]
  51315. ))
  51316. characterMakers.push(() => makeCharacter(
  51317. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51318. {
  51319. front: {
  51320. height: math.unit(10, "feet"),
  51321. weight: math.unit(2300, "lb"),
  51322. name: "Front",
  51323. image: {
  51324. source: "./media/characters/hunt3r/front.svg",
  51325. extra: 1909/1742,
  51326. bottom: 46/1955
  51327. }
  51328. },
  51329. },
  51330. [
  51331. {
  51332. name: "Normal",
  51333. height: math.unit(10, "feet"),
  51334. default: true
  51335. },
  51336. ]
  51337. ))
  51338. characterMakers.push(() => makeCharacter(
  51339. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51340. {
  51341. dressed: {
  51342. height: math.unit(11, "feet"),
  51343. weight: math.unit(18500, "lb"),
  51344. preyCapacity: math.unit(9, "people"),
  51345. name: "Dressed",
  51346. image: {
  51347. source: "./media/characters/cylphis/dressed.svg",
  51348. extra: 1028/1003,
  51349. bottom: 75/1103
  51350. },
  51351. },
  51352. undressed: {
  51353. height: math.unit(11, "feet"),
  51354. weight: math.unit(18500, "lb"),
  51355. preyCapacity: math.unit(9, "people"),
  51356. name: "Undressed",
  51357. image: {
  51358. source: "./media/characters/cylphis/undressed.svg",
  51359. extra: 1028/1003,
  51360. bottom: 75/1103
  51361. }
  51362. },
  51363. full: {
  51364. height: math.unit(11, "feet"),
  51365. weight: math.unit(18500 + 150*9, "lb"),
  51366. preyCapacity: math.unit(9, "people"),
  51367. name: "Full",
  51368. image: {
  51369. source: "./media/characters/cylphis/full.svg",
  51370. extra: 1028/1003,
  51371. bottom: 75/1103
  51372. }
  51373. },
  51374. },
  51375. [
  51376. {
  51377. name: "Small",
  51378. height: math.unit(8, "feet")
  51379. },
  51380. {
  51381. name: "Normal",
  51382. height: math.unit(11, "feet"),
  51383. default: true
  51384. },
  51385. ]
  51386. ))
  51387. characterMakers.push(() => makeCharacter(
  51388. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51389. {
  51390. front: {
  51391. height: math.unit(2 + 7/12, "feet"),
  51392. name: "Front",
  51393. image: {
  51394. source: "./media/characters/orishan/front.svg",
  51395. extra: 1058/1023,
  51396. bottom: 23/1081
  51397. }
  51398. },
  51399. back: {
  51400. height: math.unit(2 + 7/12, "feet"),
  51401. name: "Back",
  51402. image: {
  51403. source: "./media/characters/orishan/back.svg",
  51404. extra: 1058/1023,
  51405. bottom: 23/1081
  51406. }
  51407. },
  51408. },
  51409. [
  51410. {
  51411. name: "Micro",
  51412. height: math.unit(2, "cm")
  51413. },
  51414. {
  51415. name: "Normal",
  51416. height: math.unit(2 + 7/12, "feet"),
  51417. default: true
  51418. },
  51419. ]
  51420. ))
  51421. characterMakers.push(() => makeCharacter(
  51422. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51423. {
  51424. front: {
  51425. height: math.unit(3, "meters"),
  51426. weight: math.unit(508, "kg"),
  51427. name: "Front",
  51428. image: {
  51429. source: "./media/characters/seranis/front.svg",
  51430. extra: 1478/1454,
  51431. bottom: 41/1519
  51432. }
  51433. },
  51434. },
  51435. [
  51436. {
  51437. name: "Normal",
  51438. height: math.unit(3, "meters"),
  51439. default: true
  51440. },
  51441. {
  51442. name: "Macro",
  51443. height: math.unit(108, "meters")
  51444. },
  51445. {
  51446. name: "Megamacro",
  51447. height: math.unit(1250, "meters")
  51448. },
  51449. ]
  51450. ))
  51451. characterMakers.push(() => makeCharacter(
  51452. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51453. {
  51454. undressed: {
  51455. height: math.unit(5 + 3/12, "feet"),
  51456. name: "Undressed",
  51457. image: {
  51458. source: "./media/characters/ankou/undressed.svg",
  51459. extra: 1301/1213,
  51460. bottom: 87/1388
  51461. }
  51462. },
  51463. dressed: {
  51464. height: math.unit(5 + 3/12, "feet"),
  51465. name: "Dressed",
  51466. image: {
  51467. source: "./media/characters/ankou/dressed.svg",
  51468. extra: 1301/1213,
  51469. bottom: 87/1388
  51470. }
  51471. },
  51472. head: {
  51473. height: math.unit(1.61, "feet"),
  51474. name: "Head",
  51475. image: {
  51476. source: "./media/characters/ankou/head.svg"
  51477. }
  51478. },
  51479. },
  51480. [
  51481. {
  51482. name: "Normal",
  51483. height: math.unit(5 + 3/12, "feet"),
  51484. default: true
  51485. },
  51486. ]
  51487. ))
  51488. characterMakers.push(() => makeCharacter(
  51489. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51490. {
  51491. side: {
  51492. height: math.unit(6 + 3/12, "feet"),
  51493. weight: math.unit(200, "kg"),
  51494. name: "Side",
  51495. image: {
  51496. source: "./media/characters/juniper-skunktaur/side.svg",
  51497. extra: 1574/1229,
  51498. bottom: 38/1612
  51499. }
  51500. },
  51501. front: {
  51502. height: math.unit(6 + 3/12, "feet"),
  51503. weight: math.unit(200, "kg"),
  51504. name: "Front",
  51505. image: {
  51506. source: "./media/characters/juniper-skunktaur/front.svg",
  51507. extra: 1337/1278,
  51508. bottom: 22/1359
  51509. }
  51510. },
  51511. back: {
  51512. height: math.unit(6 + 3/12, "feet"),
  51513. weight: math.unit(200, "kg"),
  51514. name: "Back",
  51515. image: {
  51516. source: "./media/characters/juniper-skunktaur/back.svg",
  51517. extra: 1618/1273,
  51518. bottom: 13/1631
  51519. }
  51520. },
  51521. top: {
  51522. height: math.unit(2.62, "feet"),
  51523. weight: math.unit(200, "kg"),
  51524. name: "Top",
  51525. image: {
  51526. source: "./media/characters/juniper-skunktaur/top.svg"
  51527. }
  51528. },
  51529. },
  51530. [
  51531. {
  51532. name: "Normal",
  51533. height: math.unit(6 + 3/12, "feet"),
  51534. default: true
  51535. },
  51536. ]
  51537. ))
  51538. characterMakers.push(() => makeCharacter(
  51539. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51540. {
  51541. front: {
  51542. height: math.unit(20.5, "feet"),
  51543. name: "Front",
  51544. image: {
  51545. source: "./media/characters/rei/front.svg",
  51546. extra: 1349/1195,
  51547. bottom: 31/1380
  51548. }
  51549. },
  51550. back: {
  51551. height: math.unit(20.5, "feet"),
  51552. name: "Back",
  51553. image: {
  51554. source: "./media/characters/rei/back.svg",
  51555. extra: 1358/1204,
  51556. bottom: 22/1380
  51557. }
  51558. },
  51559. pawsDigi: {
  51560. height: math.unit(3.45, "feet"),
  51561. name: "Paws (Digi)",
  51562. image: {
  51563. source: "./media/characters/rei/paws-digi.svg"
  51564. }
  51565. },
  51566. pawsPlanti: {
  51567. height: math.unit(3.45, "feet"),
  51568. name: "Paws (Planti)",
  51569. image: {
  51570. source: "./media/characters/rei/paws-planti.svg"
  51571. }
  51572. },
  51573. },
  51574. [
  51575. {
  51576. name: "Normal",
  51577. height: math.unit(20.5, "feet"),
  51578. default: true
  51579. },
  51580. ]
  51581. ))
  51582. characterMakers.push(() => makeCharacter(
  51583. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51584. {
  51585. front: {
  51586. height: math.unit(5 + 11/12, "feet"),
  51587. name: "Front",
  51588. image: {
  51589. source: "./media/characters/carina/front.svg",
  51590. extra: 1720/1449,
  51591. bottom: 14/1734
  51592. }
  51593. },
  51594. back: {
  51595. height: math.unit(5 + 11/12, "feet"),
  51596. name: "Back",
  51597. image: {
  51598. source: "./media/characters/carina/back.svg",
  51599. extra: 1493/1445,
  51600. bottom: 17/1510
  51601. }
  51602. },
  51603. paw: {
  51604. height: math.unit(0.92, "feet"),
  51605. name: "Paw",
  51606. image: {
  51607. source: "./media/characters/carina/paw.svg"
  51608. }
  51609. },
  51610. },
  51611. [
  51612. {
  51613. name: "Normal",
  51614. height: math.unit(5 + 11/12, "feet"),
  51615. default: true
  51616. },
  51617. ]
  51618. ))
  51619. characterMakers.push(() => makeCharacter(
  51620. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51621. {
  51622. front: {
  51623. height: math.unit(4.88, "meters"),
  51624. name: "Front",
  51625. image: {
  51626. source: "./media/characters/maya/front.svg",
  51627. extra: 1222/1145,
  51628. bottom: 57/1279
  51629. }
  51630. },
  51631. },
  51632. [
  51633. {
  51634. name: "Normal",
  51635. height: math.unit(4.88, "meters"),
  51636. default: true
  51637. },
  51638. {
  51639. name: "Macro",
  51640. height: math.unit(38.1, "meters")
  51641. },
  51642. {
  51643. name: "Macro+",
  51644. height: math.unit(152.4, "meters")
  51645. },
  51646. {
  51647. name: "Macro++",
  51648. height: math.unit(16.09, "km")
  51649. },
  51650. {
  51651. name: "Mega-macro",
  51652. height: math.unit(700, "megameters")
  51653. },
  51654. ]
  51655. ))
  51656. characterMakers.push(() => makeCharacter(
  51657. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51658. {
  51659. front: {
  51660. height: math.unit(6 + 2/12, "feet"),
  51661. weight: math.unit(500, "lb"),
  51662. preyCapacity: math.unit(4, "people"),
  51663. name: "Front",
  51664. image: {
  51665. source: "./media/characters/yepir/front.svg"
  51666. }
  51667. },
  51668. side: {
  51669. height: math.unit(6 + 2/12, "feet"),
  51670. weight: math.unit(500, "lb"),
  51671. preyCapacity: math.unit(4, "people"),
  51672. name: "Side",
  51673. image: {
  51674. source: "./media/characters/yepir/side.svg"
  51675. }
  51676. },
  51677. paw: {
  51678. height: math.unit(1.05, "feet"),
  51679. name: "Paw",
  51680. image: {
  51681. source: "./media/characters/yepir/paw.svg"
  51682. }
  51683. },
  51684. },
  51685. [
  51686. {
  51687. name: "Normal",
  51688. height: math.unit(6 + 2/12, "feet"),
  51689. default: true
  51690. },
  51691. ]
  51692. ))
  51693. characterMakers.push(() => makeCharacter(
  51694. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51695. {
  51696. front: {
  51697. height: math.unit(5 + 4/12, "feet"),
  51698. name: "Front",
  51699. image: {
  51700. source: "./media/characters/russec/front.svg",
  51701. extra: 1926/1626,
  51702. bottom: 72/1998
  51703. }
  51704. },
  51705. back: {
  51706. height: math.unit(5 + 4/12, "feet"),
  51707. name: "Back",
  51708. image: {
  51709. source: "./media/characters/russec/back.svg",
  51710. extra: 1910/1591,
  51711. bottom: 48/1958
  51712. }
  51713. },
  51714. },
  51715. [
  51716. {
  51717. name: "Small",
  51718. height: math.unit(5 + 4/12, "feet")
  51719. },
  51720. {
  51721. name: "Normal",
  51722. height: math.unit(72, "feet"),
  51723. default: true
  51724. },
  51725. ]
  51726. ))
  51727. characterMakers.push(() => makeCharacter(
  51728. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51729. {
  51730. side: {
  51731. height: math.unit(12, "feet"),
  51732. name: "Side",
  51733. image: {
  51734. source: "./media/characters/cianus/side.svg",
  51735. extra: 808/526,
  51736. bottom: 61/869
  51737. }
  51738. },
  51739. },
  51740. [
  51741. {
  51742. name: "Normal",
  51743. height: math.unit(12, "feet"),
  51744. default: true
  51745. },
  51746. ]
  51747. ))
  51748. characterMakers.push(() => makeCharacter(
  51749. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51750. {
  51751. front: {
  51752. height: math.unit(9 + 6/12, "feet"),
  51753. weight: math.unit(300, "lb"),
  51754. name: "Front",
  51755. image: {
  51756. source: "./media/characters/ahab/front.svg",
  51757. extra: 1897/1868,
  51758. bottom: 121/2018
  51759. }
  51760. },
  51761. frontNsfw: {
  51762. height: math.unit(9 + 6/12, "feet"),
  51763. weight: math.unit(300, "lb"),
  51764. name: "Front-nsfw",
  51765. image: {
  51766. source: "./media/characters/ahab/front-nsfw.svg",
  51767. extra: 1897/1868,
  51768. bottom: 121/2018
  51769. }
  51770. },
  51771. },
  51772. [
  51773. {
  51774. name: "Normal",
  51775. height: math.unit(9 + 6/12, "feet")
  51776. },
  51777. {
  51778. name: "Macro",
  51779. height: math.unit(657, "feet"),
  51780. default: true
  51781. },
  51782. ]
  51783. ))
  51784. characterMakers.push(() => makeCharacter(
  51785. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51786. {
  51787. front: {
  51788. height: math.unit(2.69, "meters"),
  51789. weight: math.unit(132, "kg"),
  51790. name: "Front",
  51791. image: {
  51792. source: "./media/characters/aarkus/front.svg",
  51793. extra: 1400/1231,
  51794. bottom: 34/1434
  51795. }
  51796. },
  51797. back: {
  51798. height: math.unit(2.69, "meters"),
  51799. weight: math.unit(132, "kg"),
  51800. name: "Back",
  51801. image: {
  51802. source: "./media/characters/aarkus/back.svg",
  51803. extra: 1381/1218,
  51804. bottom: 30/1411
  51805. }
  51806. },
  51807. frontNsfw: {
  51808. height: math.unit(2.69, "meters"),
  51809. weight: math.unit(132, "kg"),
  51810. name: "Front (NSFW)",
  51811. image: {
  51812. source: "./media/characters/aarkus/front-nsfw.svg",
  51813. extra: 1400/1231,
  51814. bottom: 34/1434
  51815. }
  51816. },
  51817. foot: {
  51818. height: math.unit(1.45, "feet"),
  51819. name: "Foot",
  51820. image: {
  51821. source: "./media/characters/aarkus/foot.svg"
  51822. }
  51823. },
  51824. head: {
  51825. height: math.unit(2.85, "feet"),
  51826. name: "Head",
  51827. image: {
  51828. source: "./media/characters/aarkus/head.svg"
  51829. }
  51830. },
  51831. headAlt: {
  51832. height: math.unit(3.07, "feet"),
  51833. name: "Head (Alt)",
  51834. image: {
  51835. source: "./media/characters/aarkus/head-alt.svg"
  51836. }
  51837. },
  51838. mouth: {
  51839. height: math.unit(1.25, "feet"),
  51840. name: "Mouth",
  51841. image: {
  51842. source: "./media/characters/aarkus/mouth.svg"
  51843. }
  51844. },
  51845. dick: {
  51846. height: math.unit(1.77, "feet"),
  51847. name: "Dick",
  51848. image: {
  51849. source: "./media/characters/aarkus/dick.svg"
  51850. }
  51851. },
  51852. },
  51853. [
  51854. {
  51855. name: "Normal",
  51856. height: math.unit(2.69, "meters"),
  51857. default: true
  51858. },
  51859. {
  51860. name: "Macro",
  51861. height: math.unit(269, "meters")
  51862. },
  51863. {
  51864. name: "Macro+",
  51865. height: math.unit(672.5, "meters")
  51866. },
  51867. {
  51868. name: "Megamacro",
  51869. height: math.unit(2.017, "km")
  51870. },
  51871. ]
  51872. ))
  51873. characterMakers.push(() => makeCharacter(
  51874. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51875. {
  51876. front: {
  51877. height: math.unit(23.47, "cm"),
  51878. weight: math.unit(600, "grams"),
  51879. name: "Front",
  51880. image: {
  51881. source: "./media/characters/diode/front.svg",
  51882. extra: 1778/1396,
  51883. bottom: 95/1873
  51884. }
  51885. },
  51886. side: {
  51887. height: math.unit(23.47, "cm"),
  51888. weight: math.unit(600, "grams"),
  51889. name: "Side",
  51890. image: {
  51891. source: "./media/characters/diode/side.svg",
  51892. extra: 1831/1404,
  51893. bottom: 86/1917
  51894. }
  51895. },
  51896. wings: {
  51897. height: math.unit(0.683, "feet"),
  51898. name: "Wings",
  51899. image: {
  51900. source: "./media/characters/diode/wings.svg"
  51901. }
  51902. },
  51903. },
  51904. [
  51905. {
  51906. name: "Normal",
  51907. height: math.unit(23.47, "cm"),
  51908. default: true
  51909. },
  51910. ]
  51911. ))
  51912. characterMakers.push(() => makeCharacter(
  51913. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  51914. {
  51915. front: {
  51916. height: math.unit(6 + 3/12, "feet"),
  51917. weight: math.unit(250, "lb"),
  51918. name: "Front",
  51919. image: {
  51920. source: "./media/characters/reika/front.svg",
  51921. extra: 1120/1078,
  51922. bottom: 86/1206
  51923. }
  51924. },
  51925. },
  51926. [
  51927. {
  51928. name: "Normal",
  51929. height: math.unit(6 + 3/12, "feet"),
  51930. default: true
  51931. },
  51932. ]
  51933. ))
  51934. characterMakers.push(() => makeCharacter(
  51935. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  51936. {
  51937. front: {
  51938. height: math.unit(16 + 8/12, "feet"),
  51939. weight: math.unit(9000, "lb"),
  51940. name: "Front",
  51941. image: {
  51942. source: "./media/characters/lokuto-takama/front.svg",
  51943. extra: 1774/1632,
  51944. bottom: 147/1921
  51945. },
  51946. extraAttributes: {
  51947. "bustWidth": {
  51948. name: "Bust Width",
  51949. power: 1,
  51950. type: "length",
  51951. base: math.unit(2.4, "meters")
  51952. },
  51953. "breastWeight": {
  51954. name: "Breast Weight",
  51955. power: 3,
  51956. type: "mass",
  51957. base: math.unit(1000, "kg")
  51958. },
  51959. }
  51960. },
  51961. },
  51962. [
  51963. {
  51964. name: "Normal",
  51965. height: math.unit(16 + 8/12, "feet"),
  51966. default: true
  51967. },
  51968. ]
  51969. ))
  51970. characterMakers.push(() => makeCharacter(
  51971. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  51972. {
  51973. front: {
  51974. height: math.unit(10, "cm"),
  51975. weight: math.unit(850, "grams"),
  51976. name: "Front",
  51977. image: {
  51978. source: "./media/characters/owak-bone/front.svg",
  51979. extra: 1965/1801,
  51980. bottom: 31/1996
  51981. }
  51982. },
  51983. },
  51984. [
  51985. {
  51986. name: "Normal",
  51987. height: math.unit(10, "cm"),
  51988. default: true
  51989. },
  51990. ]
  51991. ))
  51992. characterMakers.push(() => makeCharacter(
  51993. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  51994. {
  51995. front: {
  51996. height: math.unit(2 + 6/12, "feet"),
  51997. weight: math.unit(9, "lb"),
  51998. name: "Front",
  51999. image: {
  52000. source: "./media/characters/muffin/front.svg",
  52001. extra: 1220/1195,
  52002. bottom: 84/1304
  52003. }
  52004. },
  52005. },
  52006. [
  52007. {
  52008. name: "Normal",
  52009. height: math.unit(2 + 6/12, "feet"),
  52010. default: true
  52011. },
  52012. ]
  52013. ))
  52014. characterMakers.push(() => makeCharacter(
  52015. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52016. {
  52017. front: {
  52018. height: math.unit(7, "feet"),
  52019. name: "Front",
  52020. image: {
  52021. source: "./media/characters/chimera/front.svg",
  52022. extra: 1752/1614,
  52023. bottom: 68/1820
  52024. }
  52025. },
  52026. },
  52027. [
  52028. {
  52029. name: "Normal",
  52030. height: math.unit(7, "feet")
  52031. },
  52032. {
  52033. name: "Gigamacro",
  52034. height: math.unit(2.9, "gigameters"),
  52035. default: true
  52036. },
  52037. {
  52038. name: "Universal",
  52039. height: math.unit(1.56e26, "yottameters")
  52040. },
  52041. ]
  52042. ))
  52043. characterMakers.push(() => makeCharacter(
  52044. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52045. {
  52046. front: {
  52047. height: math.unit(3, "feet"),
  52048. weight: math.unit(20, "lb"),
  52049. name: "Front",
  52050. image: {
  52051. source: "./media/characters/kit-fennec-fox/front.svg",
  52052. extra: 1027/932,
  52053. bottom: 16/1043
  52054. }
  52055. },
  52056. back: {
  52057. height: math.unit(3, "feet"),
  52058. weight: math.unit(20, "lb"),
  52059. name: "Back",
  52060. image: {
  52061. source: "./media/characters/kit-fennec-fox/back.svg",
  52062. extra: 1027/932,
  52063. bottom: 16/1043
  52064. }
  52065. },
  52066. },
  52067. [
  52068. {
  52069. name: "Normal",
  52070. height: math.unit(3, "feet"),
  52071. default: true
  52072. },
  52073. ]
  52074. ))
  52075. characterMakers.push(() => makeCharacter(
  52076. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52077. {
  52078. front: {
  52079. height: math.unit(167, "cm"),
  52080. name: "Front",
  52081. image: {
  52082. source: "./media/characters/blue-otter/front.svg",
  52083. extra: 1951/1920,
  52084. bottom: 31/1982
  52085. }
  52086. },
  52087. },
  52088. [
  52089. {
  52090. name: "Otter-Sized",
  52091. height: math.unit(100, "cm")
  52092. },
  52093. {
  52094. name: "Normal",
  52095. height: math.unit(167, "cm"),
  52096. default: true
  52097. },
  52098. ]
  52099. ))
  52100. characterMakers.push(() => makeCharacter(
  52101. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52102. {
  52103. front: {
  52104. height: math.unit(4 + 4/12, "feet"),
  52105. name: "Front",
  52106. image: {
  52107. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52108. extra: 1072/1067,
  52109. bottom: 117/1189
  52110. }
  52111. },
  52112. back: {
  52113. height: math.unit(4 + 4/12, "feet"),
  52114. name: "Back",
  52115. image: {
  52116. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52117. extra: 1135/1129,
  52118. bottom: 57/1192
  52119. }
  52120. },
  52121. head: {
  52122. height: math.unit(1.77, "feet"),
  52123. name: "Head",
  52124. image: {
  52125. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52126. }
  52127. },
  52128. },
  52129. [
  52130. {
  52131. name: "Normal",
  52132. height: math.unit(4 + 4/12, "feet"),
  52133. default: true
  52134. },
  52135. ]
  52136. ))
  52137. characterMakers.push(() => makeCharacter(
  52138. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52139. {
  52140. front: {
  52141. height: math.unit(2, "inches"),
  52142. name: "Front",
  52143. image: {
  52144. source: "./media/characters/carley-hartford/front.svg",
  52145. extra: 1035/988,
  52146. bottom: 23/1058
  52147. }
  52148. },
  52149. back: {
  52150. height: math.unit(2, "inches"),
  52151. name: "Back",
  52152. image: {
  52153. source: "./media/characters/carley-hartford/back.svg",
  52154. extra: 1035/988,
  52155. bottom: 23/1058
  52156. }
  52157. },
  52158. dressed: {
  52159. height: math.unit(2, "inches"),
  52160. name: "Dressed",
  52161. image: {
  52162. source: "./media/characters/carley-hartford/dressed.svg",
  52163. extra: 651/620,
  52164. bottom: 0/651
  52165. }
  52166. },
  52167. },
  52168. [
  52169. {
  52170. name: "Micro",
  52171. height: math.unit(2, "inches"),
  52172. default: true
  52173. },
  52174. {
  52175. name: "Macro",
  52176. height: math.unit(6 + 3/12, "feet")
  52177. },
  52178. ]
  52179. ))
  52180. characterMakers.push(() => makeCharacter(
  52181. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52182. {
  52183. front: {
  52184. height: math.unit(2 + 3/12, "feet"),
  52185. weight: math.unit(15 + 7/16, "lb"),
  52186. name: "Front",
  52187. image: {
  52188. source: "./media/characters/duke/front.svg",
  52189. extra: 910/815,
  52190. bottom: 30/940
  52191. }
  52192. },
  52193. },
  52194. [
  52195. {
  52196. name: "Normal",
  52197. height: math.unit(2 + 3/12, "feet"),
  52198. default: true
  52199. },
  52200. ]
  52201. ))
  52202. characterMakers.push(() => makeCharacter(
  52203. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52204. {
  52205. front: {
  52206. height: math.unit(5 + 4/12, "feet"),
  52207. weight: math.unit(156, "lb"),
  52208. name: "Front",
  52209. image: {
  52210. source: "./media/characters/dein/front.svg",
  52211. extra: 855/815,
  52212. bottom: 48/903
  52213. }
  52214. },
  52215. side: {
  52216. height: math.unit(5 + 4/12, "feet"),
  52217. weight: math.unit(156, "lb"),
  52218. name: "side",
  52219. image: {
  52220. source: "./media/characters/dein/side.svg",
  52221. extra: 846/803,
  52222. bottom: 25/871
  52223. }
  52224. },
  52225. maw: {
  52226. height: math.unit(1.45, "feet"),
  52227. name: "Maw",
  52228. image: {
  52229. source: "./media/characters/dein/maw.svg"
  52230. }
  52231. },
  52232. },
  52233. [
  52234. {
  52235. name: "Ferret Sized",
  52236. height: math.unit(2 + 5/12, "feet")
  52237. },
  52238. {
  52239. name: "Normal",
  52240. height: math.unit(5 + 4/12, "feet"),
  52241. default: true
  52242. },
  52243. ]
  52244. ))
  52245. characterMakers.push(() => makeCharacter(
  52246. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52247. {
  52248. front: {
  52249. height: math.unit(84 + 8/12, "feet"),
  52250. weight: math.unit(942180, "lb"),
  52251. name: "Front",
  52252. image: {
  52253. source: "./media/characters/daurine-arima/front.svg",
  52254. extra: 1989/1782,
  52255. bottom: 37/2026
  52256. }
  52257. },
  52258. side: {
  52259. height: math.unit(84 + 8/12, "feet"),
  52260. weight: math.unit(942180, "lb"),
  52261. name: "Side",
  52262. image: {
  52263. source: "./media/characters/daurine-arima/side.svg",
  52264. extra: 1997/1790,
  52265. bottom: 21/2018
  52266. }
  52267. },
  52268. back: {
  52269. height: math.unit(84 + 8/12, "feet"),
  52270. weight: math.unit(942180, "lb"),
  52271. name: "Back",
  52272. image: {
  52273. source: "./media/characters/daurine-arima/back.svg",
  52274. extra: 1992/1800,
  52275. bottom: 12/2004
  52276. }
  52277. },
  52278. head: {
  52279. height: math.unit(15.5, "feet"),
  52280. name: "Head",
  52281. image: {
  52282. source: "./media/characters/daurine-arima/head.svg"
  52283. }
  52284. },
  52285. headAlt: {
  52286. height: math.unit(19.19, "feet"),
  52287. name: "Head (Alt)",
  52288. image: {
  52289. source: "./media/characters/daurine-arima/head-alt.svg"
  52290. }
  52291. },
  52292. },
  52293. [
  52294. {
  52295. name: "Minimum height",
  52296. height: math.unit(8 + 10/12, "feet")
  52297. },
  52298. {
  52299. name: "Comfort height",
  52300. height: math.unit(19 + 6 /12, "feet")
  52301. },
  52302. {
  52303. name: "\"Normal\" height",
  52304. height: math.unit(28 + 10/12, "feet")
  52305. },
  52306. {
  52307. name: "Base height",
  52308. height: math.unit(84 + 8/12, "feet"),
  52309. default: true
  52310. },
  52311. {
  52312. name: "Mini-macro",
  52313. height: math.unit(2360, "feet")
  52314. },
  52315. {
  52316. name: "Macro",
  52317. height: math.unit(10, "miles")
  52318. },
  52319. {
  52320. name: "Goddess",
  52321. height: math.unit(9.99e40, "yottameters")
  52322. },
  52323. ]
  52324. ))
  52325. characterMakers.push(() => makeCharacter(
  52326. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52327. {
  52328. front: {
  52329. height: math.unit(2.3, "meters"),
  52330. name: "Front",
  52331. image: {
  52332. source: "./media/characters/cilenomon/front.svg",
  52333. extra: 1963/1778,
  52334. bottom: 54/2017
  52335. }
  52336. },
  52337. },
  52338. [
  52339. {
  52340. name: "Normal",
  52341. height: math.unit(2.3, "meters"),
  52342. default: true
  52343. },
  52344. {
  52345. name: "Big",
  52346. height: math.unit(5, "meters")
  52347. },
  52348. {
  52349. name: "Macro",
  52350. height: math.unit(30, "meters")
  52351. },
  52352. {
  52353. name: "True",
  52354. height: math.unit(1, "universe")
  52355. },
  52356. ]
  52357. ))
  52358. characterMakers.push(() => makeCharacter(
  52359. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52360. {
  52361. front: {
  52362. height: math.unit(5, "feet"),
  52363. name: "Front",
  52364. image: {
  52365. source: "./media/characters/sen-mink/front.svg",
  52366. extra: 1727/1675,
  52367. bottom: 35/1762
  52368. }
  52369. },
  52370. },
  52371. [
  52372. {
  52373. name: "Normal",
  52374. height: math.unit(5, "feet"),
  52375. default: true
  52376. },
  52377. ]
  52378. ))
  52379. characterMakers.push(() => makeCharacter(
  52380. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52381. {
  52382. front: {
  52383. height: math.unit(5.42999, "feet"),
  52384. weight: math.unit(100, "lb"),
  52385. name: "Front",
  52386. image: {
  52387. source: "./media/characters/ophois/front.svg",
  52388. extra: 1429/1286,
  52389. bottom: 60/1489
  52390. }
  52391. },
  52392. },
  52393. [
  52394. {
  52395. name: "Normal",
  52396. height: math.unit(5.42999, "feet"),
  52397. default: true
  52398. },
  52399. ]
  52400. ))
  52401. characterMakers.push(() => makeCharacter(
  52402. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52403. {
  52404. front: {
  52405. height: math.unit(2, "meters"),
  52406. name: "Front",
  52407. image: {
  52408. source: "./media/characters/riley/front.svg",
  52409. extra: 1779/1754,
  52410. bottom: 139/1918
  52411. }
  52412. },
  52413. },
  52414. [
  52415. {
  52416. name: "Normal",
  52417. height: math.unit(2, "meters"),
  52418. default: true
  52419. },
  52420. ]
  52421. ))
  52422. characterMakers.push(() => makeCharacter(
  52423. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52424. {
  52425. front: {
  52426. height: math.unit(6 + 2/12, "feet"),
  52427. weight: math.unit(195, "lb"),
  52428. preyCapacity: math.unit(6, "people"),
  52429. name: "Front",
  52430. image: {
  52431. source: "./media/characters/shuken-flash/front.svg",
  52432. extra: 1905/1739,
  52433. bottom: 65/1970
  52434. }
  52435. },
  52436. back: {
  52437. height: math.unit(6 + 2/12, "feet"),
  52438. weight: math.unit(195, "lb"),
  52439. preyCapacity: math.unit(6, "people"),
  52440. name: "Back",
  52441. image: {
  52442. source: "./media/characters/shuken-flash/back.svg",
  52443. extra: 1912/1751,
  52444. bottom: 13/1925
  52445. }
  52446. },
  52447. },
  52448. [
  52449. {
  52450. name: "Normal",
  52451. height: math.unit(6 + 2/12, "feet"),
  52452. default: true
  52453. },
  52454. ]
  52455. ))
  52456. characterMakers.push(() => makeCharacter(
  52457. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52458. {
  52459. front: {
  52460. height: math.unit(5 + 9/12, "feet"),
  52461. weight: math.unit(150, "lb"),
  52462. name: "Front",
  52463. image: {
  52464. source: "./media/characters/plat/front.svg",
  52465. extra: 1816/1703,
  52466. bottom: 43/1859
  52467. }
  52468. },
  52469. side: {
  52470. height: math.unit(5 + 9/12, "feet"),
  52471. weight: math.unit(300, "lb"),
  52472. name: "Side",
  52473. image: {
  52474. source: "./media/characters/plat/side.svg",
  52475. extra: 1824/1699,
  52476. bottom: 18/1842
  52477. }
  52478. },
  52479. },
  52480. [
  52481. {
  52482. name: "Normal",
  52483. height: math.unit(5 + 9/12, "feet"),
  52484. default: true
  52485. },
  52486. ]
  52487. ))
  52488. characterMakers.push(() => makeCharacter(
  52489. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52490. {
  52491. front: {
  52492. height: math.unit(9, "feet"),
  52493. weight: math.unit(1800, "lb"),
  52494. name: "Front",
  52495. image: {
  52496. source: "./media/characters/elaine/front.svg",
  52497. extra: 1833/1354,
  52498. bottom: 25/1858
  52499. }
  52500. },
  52501. back: {
  52502. height: math.unit(8.8, "feet"),
  52503. weight: math.unit(1800, "lb"),
  52504. name: "Back",
  52505. image: {
  52506. source: "./media/characters/elaine/back.svg",
  52507. extra: 1641/1233,
  52508. bottom: 53/1694
  52509. }
  52510. },
  52511. },
  52512. [
  52513. {
  52514. name: "Normal",
  52515. height: math.unit(9, "feet"),
  52516. default: true
  52517. },
  52518. ]
  52519. ))
  52520. characterMakers.push(() => makeCharacter(
  52521. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52522. {
  52523. front: {
  52524. height: math.unit(17 + 9/12, "feet"),
  52525. weight: math.unit(8000, "lb"),
  52526. name: "Front",
  52527. image: {
  52528. source: "./media/characters/vera-raven/front.svg",
  52529. extra: 1457/1412,
  52530. bottom: 121/1578
  52531. }
  52532. },
  52533. side: {
  52534. height: math.unit(17 + 9/12, "feet"),
  52535. weight: math.unit(8000, "lb"),
  52536. name: "Side",
  52537. image: {
  52538. source: "./media/characters/vera-raven/side.svg",
  52539. extra: 1510/1464,
  52540. bottom: 54/1564
  52541. }
  52542. },
  52543. },
  52544. [
  52545. {
  52546. name: "Normal",
  52547. height: math.unit(17 + 9/12, "feet"),
  52548. default: true
  52549. },
  52550. ]
  52551. ))
  52552. //characters
  52553. function makeCharacters() {
  52554. const results = [];
  52555. characterMakers.forEach(character => {
  52556. results.push(character());
  52557. });
  52558. return results;
  52559. }