less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

52954 строки
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. "avian"
  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. "avian"
  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: ["avian"]
  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: ["avian"]
  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. }
  2019. //species
  2020. function getSpeciesInfo(speciesList) {
  2021. let result = new Set();
  2022. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2023. result.add(entry)
  2024. });
  2025. return Array.from(result);
  2026. };
  2027. function getSpeciesInfoHelper(species) {
  2028. if (!speciesData[species]) {
  2029. console.warn(species + " doesn't exist");
  2030. return [];
  2031. }
  2032. if (speciesData[species].parents) {
  2033. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2034. } else {
  2035. return [species];
  2036. }
  2037. }
  2038. characterMakers.push(() => makeCharacter(
  2039. {
  2040. name: "Fen",
  2041. species: ["crux"],
  2042. description: {
  2043. title: "Bio",
  2044. text: "Very furry. Sheds on everything."
  2045. },
  2046. tags: [
  2047. "anthro",
  2048. "goo"
  2049. ]
  2050. },
  2051. {
  2052. front: {
  2053. height: math.unit(12, "feet"),
  2054. weight: math.unit(2400, "lb"),
  2055. name: "Front",
  2056. image: {
  2057. source: "./media/characters/fen/front.svg",
  2058. extra: 1804/1562,
  2059. bottom: 205/2009
  2060. },
  2061. extraAttributes: {
  2062. pawSize: {
  2063. name: "Paw Size",
  2064. power: 2,
  2065. type: "area",
  2066. base: math.unit(0.35, "m^2")
  2067. }
  2068. }
  2069. },
  2070. diving: {
  2071. height: math.unit(4.9, "meters"),
  2072. weight: math.unit(2400, "lb"),
  2073. name: "Diving",
  2074. image: {
  2075. source: "./media/characters/fen/diving.svg"
  2076. }
  2077. },
  2078. goo: {
  2079. height: math.unit(12, "feet"),
  2080. weight: math.unit(3600, "lb"),
  2081. volume: math.unit(1000, "liters"),
  2082. preyCapacity: math.unit(6, "people"),
  2083. name: "Goo",
  2084. image: {
  2085. source: "./media/characters/fen/goo.svg",
  2086. extra: 1307/1071,
  2087. bottom: 134/1441
  2088. }
  2089. },
  2090. maw: {
  2091. height: math.unit(5.03, "feet"),
  2092. name: "Maw",
  2093. image: {
  2094. source: "./media/characters/fen/maw.svg"
  2095. }
  2096. },
  2097. gooCeiling: {
  2098. height: math.unit(6.6, "feet"),
  2099. weight: math.unit(3000, "lb"),
  2100. volume: math.unit(1000, "liters"),
  2101. preyCapacity: math.unit(6, "people"),
  2102. name: "Goo (Ceiling)",
  2103. image: {
  2104. source: "./media/characters/fen/goo-ceiling.svg"
  2105. }
  2106. },
  2107. paw: {
  2108. height: math.unit(3.77, "feet"),
  2109. name: "Paw",
  2110. image: {
  2111. source: "./media/characters/fen/paw.svg"
  2112. },
  2113. extraAttributes: {
  2114. "toeSize": {
  2115. name: "Toe Size",
  2116. power: 2,
  2117. type: "area",
  2118. base: math.unit(0.02875, "m^2")
  2119. },
  2120. "pawSize": {
  2121. name: "Paw Size",
  2122. power: 2,
  2123. type: "area",
  2124. base: math.unit(0.378, "m^2")
  2125. },
  2126. }
  2127. },
  2128. tail: {
  2129. height: math.unit(12.1, "feet"),
  2130. name: "Tail",
  2131. image: {
  2132. source: "./media/characters/fen/tail.svg"
  2133. }
  2134. },
  2135. tailFull: {
  2136. height: math.unit(12.1, "feet"),
  2137. name: "Full Tail",
  2138. image: {
  2139. source: "./media/characters/fen/tail-full.svg"
  2140. }
  2141. },
  2142. back: {
  2143. height: math.unit(12, "feet"),
  2144. weight: math.unit(2400, "lb"),
  2145. name: "Back",
  2146. image: {
  2147. source: "./media/characters/fen/back.svg",
  2148. },
  2149. info: {
  2150. description: {
  2151. mode: "append",
  2152. text: "\n\nHe is not currently looking at you."
  2153. }
  2154. }
  2155. },
  2156. full: {
  2157. height: math.unit(1.85, "meter"),
  2158. weight: math.unit(3200, "lb"),
  2159. name: "Full",
  2160. image: {
  2161. source: "./media/characters/fen/full.svg",
  2162. extra: 1133/859,
  2163. bottom: 145/1278
  2164. },
  2165. info: {
  2166. description: {
  2167. mode: "append",
  2168. text: "\n\nMunch."
  2169. }
  2170. }
  2171. },
  2172. gooLounging: {
  2173. height: math.unit(4.53, "feet"),
  2174. weight: math.unit(3000, "lb"),
  2175. preyCapacity: math.unit(6, "people"),
  2176. name: "Goo (Lounging)",
  2177. image: {
  2178. source: "./media/characters/fen/goo-lounging.svg",
  2179. bottom: 116 / 613
  2180. }
  2181. },
  2182. lounging: {
  2183. height: math.unit(10.52, "feet"),
  2184. weight: math.unit(2400, "lb"),
  2185. name: "Lounging",
  2186. image: {
  2187. source: "./media/characters/fen/lounging.svg"
  2188. }
  2189. },
  2190. },
  2191. [
  2192. {
  2193. name: "Small",
  2194. height: math.unit(2.2428, "meter")
  2195. },
  2196. {
  2197. name: "Normal",
  2198. height: math.unit(12, "feet"),
  2199. default: true,
  2200. },
  2201. {
  2202. name: "Big",
  2203. height: math.unit(20, "feet")
  2204. },
  2205. {
  2206. name: "Minimacro",
  2207. height: math.unit(40, "feet"),
  2208. info: {
  2209. description: {
  2210. mode: "append",
  2211. text: "\n\nTOO DAMN BIG"
  2212. }
  2213. }
  2214. },
  2215. {
  2216. name: "Macro",
  2217. height: math.unit(100, "feet"),
  2218. info: {
  2219. description: {
  2220. mode: "append",
  2221. text: "\n\nTOO DAMN BIG"
  2222. }
  2223. }
  2224. },
  2225. {
  2226. name: "Megamacro",
  2227. height: math.unit(2, "miles")
  2228. },
  2229. {
  2230. name: "Gigamacro",
  2231. height: math.unit(10, "earths")
  2232. },
  2233. ]
  2234. ))
  2235. characterMakers.push(() => makeCharacter(
  2236. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2237. {
  2238. front: {
  2239. height: math.unit(183, "cm"),
  2240. weight: math.unit(80, "kg"),
  2241. name: "Front",
  2242. image: {
  2243. source: "./media/characters/sofia-fluttertail/front.svg",
  2244. bottom: 0.01,
  2245. extra: 2154 / 2081
  2246. }
  2247. },
  2248. frontAlt: {
  2249. height: math.unit(183, "cm"),
  2250. weight: math.unit(80, "kg"),
  2251. name: "Front (alt)",
  2252. image: {
  2253. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2254. }
  2255. },
  2256. back: {
  2257. height: math.unit(183, "cm"),
  2258. weight: math.unit(80, "kg"),
  2259. name: "Back",
  2260. image: {
  2261. source: "./media/characters/sofia-fluttertail/back.svg"
  2262. }
  2263. },
  2264. kneeling: {
  2265. height: math.unit(125, "cm"),
  2266. weight: math.unit(80, "kg"),
  2267. name: "Kneeling",
  2268. image: {
  2269. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2270. extra: 1033 / 977,
  2271. bottom: 23.7 / 1057
  2272. }
  2273. },
  2274. maw: {
  2275. height: math.unit(183 / 5, "cm"),
  2276. name: "Maw",
  2277. image: {
  2278. source: "./media/characters/sofia-fluttertail/maw.svg"
  2279. }
  2280. },
  2281. mawcloseup: {
  2282. height: math.unit(183 / 5 * 0.41, "cm"),
  2283. name: "Maw (Closeup)",
  2284. image: {
  2285. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2286. }
  2287. },
  2288. paws: {
  2289. height: math.unit(1.17, "feet"),
  2290. name: "Paws",
  2291. image: {
  2292. source: "./media/characters/sofia-fluttertail/paws.svg",
  2293. extra: 851 / 851,
  2294. bottom: 17 / 868
  2295. }
  2296. },
  2297. },
  2298. [
  2299. {
  2300. name: "Normal",
  2301. height: math.unit(1.83, "meter")
  2302. },
  2303. {
  2304. name: "Size Thief",
  2305. height: math.unit(18, "feet")
  2306. },
  2307. {
  2308. name: "50 Foot Collie",
  2309. height: math.unit(50, "feet")
  2310. },
  2311. {
  2312. name: "Macro",
  2313. height: math.unit(96, "feet"),
  2314. default: true
  2315. },
  2316. {
  2317. name: "Megamerger",
  2318. height: math.unit(650, "feet")
  2319. },
  2320. ]
  2321. ))
  2322. characterMakers.push(() => makeCharacter(
  2323. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2324. {
  2325. front: {
  2326. height: math.unit(7, "feet"),
  2327. weight: math.unit(100, "kg"),
  2328. name: "Front",
  2329. image: {
  2330. source: "./media/characters/march/front.svg",
  2331. extra: 1992/1851,
  2332. bottom: 39/2031
  2333. }
  2334. },
  2335. foot: {
  2336. height: math.unit(0.9, "feet"),
  2337. name: "Foot",
  2338. image: {
  2339. source: "./media/characters/march/foot.svg"
  2340. }
  2341. },
  2342. },
  2343. [
  2344. {
  2345. name: "Normal",
  2346. height: math.unit(7.9, "feet")
  2347. },
  2348. {
  2349. name: "Macro",
  2350. height: math.unit(220, "meters")
  2351. },
  2352. {
  2353. name: "Megamacro",
  2354. height: math.unit(2.98, "km"),
  2355. default: true
  2356. },
  2357. {
  2358. name: "Gigamacro",
  2359. height: math.unit(15963, "km")
  2360. },
  2361. {
  2362. name: "Teramacro",
  2363. height: math.unit(2980000000, "km")
  2364. },
  2365. {
  2366. name: "Examacro",
  2367. height: math.unit(250, "parsecs")
  2368. },
  2369. ]
  2370. ))
  2371. characterMakers.push(() => makeCharacter(
  2372. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2373. {
  2374. front: {
  2375. height: math.unit(6, "feet"),
  2376. weight: math.unit(60, "kg"),
  2377. name: "Front",
  2378. image: {
  2379. source: "./media/characters/noir/front.svg",
  2380. extra: 1,
  2381. bottom: 0.032
  2382. }
  2383. },
  2384. },
  2385. [
  2386. {
  2387. name: "Normal",
  2388. height: math.unit(6.6, "feet")
  2389. },
  2390. {
  2391. name: "Macro",
  2392. height: math.unit(500, "feet")
  2393. },
  2394. {
  2395. name: "Megamacro",
  2396. height: math.unit(2.5, "km"),
  2397. default: true
  2398. },
  2399. {
  2400. name: "Gigamacro",
  2401. height: math.unit(22500, "km")
  2402. },
  2403. {
  2404. name: "Teramacro",
  2405. height: math.unit(2500000000, "km")
  2406. },
  2407. {
  2408. name: "Examacro",
  2409. height: math.unit(200, "parsecs")
  2410. },
  2411. ]
  2412. ))
  2413. characterMakers.push(() => makeCharacter(
  2414. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2415. {
  2416. front: {
  2417. height: math.unit(7, "feet"),
  2418. weight: math.unit(100, "kg"),
  2419. name: "Front",
  2420. image: {
  2421. source: "./media/characters/okuri/front.svg",
  2422. extra: 739/665,
  2423. bottom: 39/778
  2424. }
  2425. },
  2426. back: {
  2427. height: math.unit(7, "feet"),
  2428. weight: math.unit(100, "kg"),
  2429. name: "Back",
  2430. image: {
  2431. source: "./media/characters/okuri/back.svg",
  2432. extra: 734/653,
  2433. bottom: 13/747
  2434. }
  2435. },
  2436. sitting: {
  2437. height: math.unit(2.95, "feet"),
  2438. weight: math.unit(100, "kg"),
  2439. name: "Sitting",
  2440. image: {
  2441. source: "./media/characters/okuri/sitting.svg",
  2442. extra: 370/318,
  2443. bottom: 99/469
  2444. }
  2445. },
  2446. },
  2447. [
  2448. {
  2449. name: "Smallest",
  2450. height: math.unit(5 + 2/12, "feet")
  2451. },
  2452. {
  2453. name: "Smaller",
  2454. height: math.unit(300, "feet")
  2455. },
  2456. {
  2457. name: "Small",
  2458. height: math.unit(1000, "feet")
  2459. },
  2460. {
  2461. name: "Macro",
  2462. height: math.unit(1, "mile")
  2463. },
  2464. {
  2465. name: "Mega Macro (Small)",
  2466. height: math.unit(20, "km")
  2467. },
  2468. {
  2469. name: "Mega Macro (Large)",
  2470. height: math.unit(600, "km")
  2471. },
  2472. {
  2473. name: "Giga Macro",
  2474. height: math.unit(10000, "km")
  2475. },
  2476. {
  2477. name: "Normal",
  2478. height: math.unit(577560, "km"),
  2479. default: true
  2480. },
  2481. {
  2482. name: "Large",
  2483. height: math.unit(4, "galaxies")
  2484. },
  2485. {
  2486. name: "Largest",
  2487. height: math.unit(15, "multiverses")
  2488. },
  2489. ]
  2490. ))
  2491. characterMakers.push(() => makeCharacter(
  2492. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2493. {
  2494. front: {
  2495. height: math.unit(7, "feet"),
  2496. weight: math.unit(100, "kg"),
  2497. name: "Front",
  2498. image: {
  2499. source: "./media/characters/manny/front.svg",
  2500. extra: 1,
  2501. bottom: 0.06
  2502. }
  2503. },
  2504. back: {
  2505. height: math.unit(7, "feet"),
  2506. weight: math.unit(100, "kg"),
  2507. name: "Back",
  2508. image: {
  2509. source: "./media/characters/manny/back.svg",
  2510. extra: 1,
  2511. bottom: 0.014
  2512. }
  2513. },
  2514. },
  2515. [
  2516. {
  2517. name: "Normal",
  2518. height: math.unit(7, "feet"),
  2519. },
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(78, "feet"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Macro+",
  2527. height: math.unit(300, "meters")
  2528. },
  2529. {
  2530. name: "Macro++",
  2531. height: math.unit(2400, "meters")
  2532. },
  2533. {
  2534. name: "Megamacro",
  2535. height: math.unit(5167, "meters")
  2536. },
  2537. {
  2538. name: "Gigamacro",
  2539. height: math.unit(41769, "miles")
  2540. },
  2541. ]
  2542. ))
  2543. characterMakers.push(() => makeCharacter(
  2544. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2545. {
  2546. front: {
  2547. height: math.unit(7, "feet"),
  2548. weight: math.unit(100, "kg"),
  2549. name: "Front",
  2550. image: {
  2551. source: "./media/characters/adake/front-1.svg"
  2552. }
  2553. },
  2554. frontAlt: {
  2555. height: math.unit(7, "feet"),
  2556. weight: math.unit(100, "kg"),
  2557. name: "Front (Alt)",
  2558. image: {
  2559. source: "./media/characters/adake/front-2.svg",
  2560. extra: 1,
  2561. bottom: 0.01
  2562. }
  2563. },
  2564. back: {
  2565. height: math.unit(7, "feet"),
  2566. weight: math.unit(100, "kg"),
  2567. name: "Back",
  2568. image: {
  2569. source: "./media/characters/adake/back.svg",
  2570. }
  2571. },
  2572. kneel: {
  2573. height: math.unit(5.385, "feet"),
  2574. weight: math.unit(100, "kg"),
  2575. name: "Kneeling",
  2576. image: {
  2577. source: "./media/characters/adake/kneel.svg",
  2578. bottom: 0.052
  2579. }
  2580. },
  2581. },
  2582. [
  2583. {
  2584. name: "Normal",
  2585. height: math.unit(7, "feet"),
  2586. },
  2587. {
  2588. name: "Macro",
  2589. height: math.unit(78, "feet"),
  2590. default: true
  2591. },
  2592. {
  2593. name: "Macro+",
  2594. height: math.unit(300, "meters")
  2595. },
  2596. {
  2597. name: "Macro++",
  2598. height: math.unit(2400, "meters")
  2599. },
  2600. {
  2601. name: "Megamacro",
  2602. height: math.unit(5167, "meters")
  2603. },
  2604. {
  2605. name: "Gigamacro",
  2606. height: math.unit(41769, "miles")
  2607. },
  2608. ]
  2609. ))
  2610. characterMakers.push(() => makeCharacter(
  2611. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2612. {
  2613. front: {
  2614. height: math.unit(1.65, "meters"),
  2615. weight: math.unit(50, "kg"),
  2616. name: "Front",
  2617. image: {
  2618. source: "./media/characters/elijah/front.svg",
  2619. extra: 858 / 830,
  2620. bottom: 95.5 / 953.8559
  2621. }
  2622. },
  2623. back: {
  2624. height: math.unit(1.65, "meters"),
  2625. weight: math.unit(50, "kg"),
  2626. name: "Back",
  2627. image: {
  2628. source: "./media/characters/elijah/back.svg",
  2629. extra: 895 / 850,
  2630. bottom: 5.3 / 897.956
  2631. }
  2632. },
  2633. frontNsfw: {
  2634. height: math.unit(1.65, "meters"),
  2635. weight: math.unit(50, "kg"),
  2636. name: "Front (NSFW)",
  2637. image: {
  2638. source: "./media/characters/elijah/front-nsfw.svg",
  2639. extra: 858 / 830,
  2640. bottom: 95.5 / 953.8559
  2641. }
  2642. },
  2643. backNsfw: {
  2644. height: math.unit(1.65, "meters"),
  2645. weight: math.unit(50, "kg"),
  2646. name: "Back (NSFW)",
  2647. image: {
  2648. source: "./media/characters/elijah/back-nsfw.svg",
  2649. extra: 895 / 850,
  2650. bottom: 5.3 / 897.956
  2651. }
  2652. },
  2653. dick: {
  2654. height: math.unit(1, "feet"),
  2655. name: "Dick",
  2656. image: {
  2657. source: "./media/characters/elijah/dick.svg"
  2658. }
  2659. },
  2660. beakOpen: {
  2661. height: math.unit(1.25, "feet"),
  2662. name: "Beak (Open)",
  2663. image: {
  2664. source: "./media/characters/elijah/beak-open.svg"
  2665. }
  2666. },
  2667. beakShut: {
  2668. height: math.unit(1.25, "feet"),
  2669. name: "Beak (Shut)",
  2670. image: {
  2671. source: "./media/characters/elijah/beak-shut.svg"
  2672. }
  2673. },
  2674. footFlexing: {
  2675. height: math.unit(1.61, "feet"),
  2676. name: "Foot (Flexing)",
  2677. image: {
  2678. source: "./media/characters/elijah/foot-flexing.svg"
  2679. }
  2680. },
  2681. footStepping: {
  2682. height: math.unit(1.44, "feet"),
  2683. name: "Foot (Stepping)",
  2684. image: {
  2685. source: "./media/characters/elijah/foot-stepping.svg"
  2686. }
  2687. },
  2688. plantigradeLeg: {
  2689. height: math.unit(2.34, "feet"),
  2690. name: "Plantigrade Leg",
  2691. image: {
  2692. source: "./media/characters/elijah/plantigrade-leg.svg"
  2693. }
  2694. },
  2695. plantigradeFootLeft: {
  2696. height: math.unit(0.9, "feet"),
  2697. name: "Plantigrade Foot (Left)",
  2698. image: {
  2699. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2700. }
  2701. },
  2702. plantigradeFootRight: {
  2703. height: math.unit(0.9, "feet"),
  2704. name: "Plantigrade Foot (Right)",
  2705. image: {
  2706. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2707. }
  2708. },
  2709. },
  2710. [
  2711. {
  2712. name: "Normal",
  2713. height: math.unit(1.65, "meters")
  2714. },
  2715. {
  2716. name: "Macro",
  2717. height: math.unit(55, "meters"),
  2718. default: true
  2719. },
  2720. {
  2721. name: "Macro+",
  2722. height: math.unit(105, "meters")
  2723. },
  2724. ]
  2725. ))
  2726. characterMakers.push(() => makeCharacter(
  2727. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2728. {
  2729. front: {
  2730. height: math.unit(7 + 2/12, "feet"),
  2731. weight: math.unit(320, "kg"),
  2732. name: "Front",
  2733. image: {
  2734. source: "./media/characters/rai/front.svg",
  2735. extra: 1802/1696,
  2736. bottom: 68/1870
  2737. }
  2738. },
  2739. frontDressed: {
  2740. height: math.unit(7 + 2/12, "feet"),
  2741. weight: math.unit(320, "kg"),
  2742. name: "Front (Dressed)",
  2743. image: {
  2744. source: "./media/characters/rai/front-dressed.svg",
  2745. extra: 1802/1696,
  2746. bottom: 68/1870
  2747. }
  2748. },
  2749. side: {
  2750. height: math.unit(7 + 2/12, "feet"),
  2751. weight: math.unit(320, "kg"),
  2752. name: "Side",
  2753. image: {
  2754. source: "./media/characters/rai/side.svg",
  2755. extra: 1789/1710,
  2756. bottom: 115/1904
  2757. }
  2758. },
  2759. back: {
  2760. height: math.unit(7 + 2/12, "feet"),
  2761. weight: math.unit(320, "kg"),
  2762. name: "Back",
  2763. image: {
  2764. source: "./media/characters/rai/back.svg",
  2765. extra: 1770/1707,
  2766. bottom: 28/1798
  2767. }
  2768. },
  2769. feral: {
  2770. height: math.unit(9.5, "feet"),
  2771. weight: math.unit(640, "kg"),
  2772. name: "Feral",
  2773. image: {
  2774. source: "./media/characters/rai/feral.svg",
  2775. extra: 945/553,
  2776. bottom: 176/1121
  2777. }
  2778. },
  2779. dragon: {
  2780. height: math.unit(23, "feet"),
  2781. weight: math.unit(50000, "lb"),
  2782. name: "Dragon",
  2783. image: {
  2784. source: "./media/characters/rai/dragon.svg",
  2785. extra: 2498 / 2030,
  2786. bottom: 85.2 / 2584
  2787. }
  2788. },
  2789. maw: {
  2790. height: math.unit(1.69, "feet"),
  2791. name: "Maw",
  2792. image: {
  2793. source: "./media/characters/rai/maw.svg"
  2794. }
  2795. },
  2796. },
  2797. [
  2798. {
  2799. name: "Normal",
  2800. height: math.unit(7 + 2/12, "feet")
  2801. },
  2802. {
  2803. name: "Big",
  2804. height: math.unit(11, "feet")
  2805. },
  2806. {
  2807. name: "Macro",
  2808. height: math.unit(302, "feet"),
  2809. default: true
  2810. },
  2811. ]
  2812. ))
  2813. characterMakers.push(() => makeCharacter(
  2814. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2815. {
  2816. frontDressed: {
  2817. height: math.unit(216, "feet"),
  2818. weight: math.unit(7000000, "lb"),
  2819. name: "Front (Dressed)",
  2820. image: {
  2821. source: "./media/characters/jazzy/front-dressed.svg",
  2822. extra: 2738 / 2651,
  2823. bottom: 41.8 / 2786
  2824. }
  2825. },
  2826. backDressed: {
  2827. height: math.unit(216, "feet"),
  2828. weight: math.unit(7000000, "lb"),
  2829. name: "Back (Dressed)",
  2830. image: {
  2831. source: "./media/characters/jazzy/back-dressed.svg",
  2832. extra: 2775 / 2673,
  2833. bottom: 36.8 / 2817
  2834. }
  2835. },
  2836. front: {
  2837. height: math.unit(216, "feet"),
  2838. weight: math.unit(7000000, "lb"),
  2839. name: "Front",
  2840. image: {
  2841. source: "./media/characters/jazzy/front.svg",
  2842. extra: 2738 / 2651,
  2843. bottom: 41.8 / 2786
  2844. }
  2845. },
  2846. back: {
  2847. height: math.unit(216, "feet"),
  2848. weight: math.unit(7000000, "lb"),
  2849. name: "Back",
  2850. image: {
  2851. source: "./media/characters/jazzy/back.svg",
  2852. extra: 2775 / 2673,
  2853. bottom: 36.8 / 2817
  2854. }
  2855. },
  2856. maw: {
  2857. height: math.unit(20, "feet"),
  2858. name: "Maw",
  2859. image: {
  2860. source: "./media/characters/jazzy/maw.svg"
  2861. }
  2862. },
  2863. paws: {
  2864. height: math.unit(27.5, "feet"),
  2865. name: "Paws",
  2866. image: {
  2867. source: "./media/characters/jazzy/paws.svg"
  2868. }
  2869. },
  2870. eye: {
  2871. height: math.unit(4.4, "feet"),
  2872. name: "Eye",
  2873. image: {
  2874. source: "./media/characters/jazzy/eye.svg"
  2875. }
  2876. },
  2877. droneOffense: {
  2878. height: math.unit(9.5, "inches"),
  2879. name: "Drone (Offense)",
  2880. image: {
  2881. source: "./media/characters/jazzy/drone-offense.svg"
  2882. }
  2883. },
  2884. droneRecon: {
  2885. height: math.unit(9.5, "inches"),
  2886. name: "Drone (Recon)",
  2887. image: {
  2888. source: "./media/characters/jazzy/drone-recon.svg"
  2889. }
  2890. },
  2891. droneDefense: {
  2892. height: math.unit(9.5, "inches"),
  2893. name: "Drone (Defense)",
  2894. image: {
  2895. source: "./media/characters/jazzy/drone-defense.svg"
  2896. }
  2897. },
  2898. },
  2899. [
  2900. {
  2901. name: "Macro",
  2902. height: math.unit(216, "feet"),
  2903. default: true
  2904. },
  2905. ]
  2906. ))
  2907. characterMakers.push(() => makeCharacter(
  2908. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2909. {
  2910. front: {
  2911. height: math.unit(9 + 6/12, "feet"),
  2912. weight: math.unit(700, "lb"),
  2913. name: "Front",
  2914. image: {
  2915. source: "./media/characters/flamm/front.svg",
  2916. extra: 1751/1632,
  2917. bottom: 46/1797
  2918. }
  2919. },
  2920. buff: {
  2921. height: math.unit(9 + 6/12, "feet"),
  2922. weight: math.unit(950, "lb"),
  2923. name: "Buff",
  2924. image: {
  2925. source: "./media/characters/flamm/buff.svg",
  2926. extra: 3018/2874,
  2927. bottom: 221/3239
  2928. }
  2929. },
  2930. },
  2931. [
  2932. {
  2933. name: "Normal",
  2934. height: math.unit(9.5, "feet")
  2935. },
  2936. {
  2937. name: "Macro",
  2938. height: math.unit(200, "feet"),
  2939. default: true
  2940. },
  2941. ]
  2942. ))
  2943. characterMakers.push(() => makeCharacter(
  2944. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2945. {
  2946. front: {
  2947. height: math.unit(5 + 3/12, "feet"),
  2948. weight: math.unit(60, "kg"),
  2949. name: "Front",
  2950. image: {
  2951. source: "./media/characters/zephiro/front.svg",
  2952. extra: 2309 / 2162,
  2953. bottom: 0.069
  2954. }
  2955. },
  2956. side: {
  2957. height: math.unit(5 + 3/12, "feet"),
  2958. weight: math.unit(60, "kg"),
  2959. name: "Side",
  2960. image: {
  2961. source: "./media/characters/zephiro/side.svg",
  2962. extra: 2403 / 2279,
  2963. bottom: 0.015
  2964. }
  2965. },
  2966. back: {
  2967. height: math.unit(5 + 3/12, "feet"),
  2968. weight: math.unit(60, "kg"),
  2969. name: "Back",
  2970. image: {
  2971. source: "./media/characters/zephiro/back.svg",
  2972. extra: 2373 / 2244,
  2973. bottom: 0.013
  2974. }
  2975. },
  2976. hand: {
  2977. height: math.unit(0.68, "feet"),
  2978. name: "Hand",
  2979. image: {
  2980. source: "./media/characters/zephiro/hand.svg"
  2981. }
  2982. },
  2983. paw: {
  2984. height: math.unit(1, "feet"),
  2985. name: "Paw",
  2986. image: {
  2987. source: "./media/characters/zephiro/paw.svg"
  2988. }
  2989. },
  2990. beans: {
  2991. height: math.unit(0.93, "feet"),
  2992. name: "Beans",
  2993. image: {
  2994. source: "./media/characters/zephiro/beans.svg"
  2995. }
  2996. },
  2997. },
  2998. [
  2999. {
  3000. name: "Micro",
  3001. height: math.unit(3, "inches")
  3002. },
  3003. {
  3004. name: "Normal",
  3005. height: math.unit(5 + 3 / 12, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Macro",
  3010. height: math.unit(118, "feet")
  3011. },
  3012. ]
  3013. ))
  3014. characterMakers.push(() => makeCharacter(
  3015. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3016. {
  3017. front: {
  3018. height: math.unit(5, "feet"),
  3019. weight: math.unit(90, "kg"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/fory/front.svg",
  3023. extra: 2862 / 2674,
  3024. bottom: 180 / 3043.8
  3025. }
  3026. },
  3027. back: {
  3028. height: math.unit(5, "feet"),
  3029. weight: math.unit(90, "kg"),
  3030. name: "Back",
  3031. image: {
  3032. source: "./media/characters/fory/back.svg",
  3033. extra: 2962 / 2791,
  3034. bottom: 106 / 3071.8
  3035. }
  3036. },
  3037. foot: {
  3038. height: math.unit(2.14, "feet"),
  3039. name: "Foot",
  3040. image: {
  3041. source: "./media/characters/fory/foot.svg"
  3042. }
  3043. },
  3044. },
  3045. [
  3046. {
  3047. name: "Normal",
  3048. height: math.unit(5, "feet")
  3049. },
  3050. {
  3051. name: "Macro",
  3052. height: math.unit(50, "feet"),
  3053. default: true
  3054. },
  3055. {
  3056. name: "Megamacro",
  3057. height: math.unit(10, "miles")
  3058. },
  3059. {
  3060. name: "Gigamacro",
  3061. height: math.unit(5, "earths")
  3062. },
  3063. ]
  3064. ))
  3065. characterMakers.push(() => makeCharacter(
  3066. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3067. {
  3068. front: {
  3069. height: math.unit(7, "feet"),
  3070. weight: math.unit(90, "kg"),
  3071. name: "Front",
  3072. image: {
  3073. source: "./media/characters/kurrikage/front.svg",
  3074. extra: 1845/1733,
  3075. bottom: 119/1964
  3076. }
  3077. },
  3078. back: {
  3079. height: math.unit(7, "feet"),
  3080. weight: math.unit(90, "kg"),
  3081. name: "Back",
  3082. image: {
  3083. source: "./media/characters/kurrikage/back.svg",
  3084. extra: 1790/1677,
  3085. bottom: 61/1851
  3086. }
  3087. },
  3088. dressed: {
  3089. height: math.unit(7, "feet"),
  3090. weight: math.unit(90, "kg"),
  3091. name: "Dressed",
  3092. image: {
  3093. source: "./media/characters/kurrikage/dressed.svg",
  3094. extra: 1845/1733,
  3095. bottom: 119/1964
  3096. }
  3097. },
  3098. foot: {
  3099. height: math.unit(1.5, "feet"),
  3100. name: "Foot",
  3101. image: {
  3102. source: "./media/characters/kurrikage/foot.svg"
  3103. }
  3104. },
  3105. staff: {
  3106. height: math.unit(6.7, "feet"),
  3107. name: "Staff",
  3108. image: {
  3109. source: "./media/characters/kurrikage/staff.svg"
  3110. }
  3111. },
  3112. peek: {
  3113. height: math.unit(1.05, "feet"),
  3114. name: "Peeking",
  3115. image: {
  3116. source: "./media/characters/kurrikage/peek.svg",
  3117. bottom: 0.08
  3118. }
  3119. },
  3120. },
  3121. [
  3122. {
  3123. name: "Normal",
  3124. height: math.unit(12, "feet"),
  3125. default: true
  3126. },
  3127. {
  3128. name: "Big",
  3129. height: math.unit(20, "feet")
  3130. },
  3131. {
  3132. name: "Macro",
  3133. height: math.unit(500, "feet")
  3134. },
  3135. {
  3136. name: "Megamacro",
  3137. height: math.unit(20, "miles")
  3138. },
  3139. ]
  3140. ))
  3141. characterMakers.push(() => makeCharacter(
  3142. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3143. {
  3144. front: {
  3145. height: math.unit(6, "feet"),
  3146. weight: math.unit(75, "kg"),
  3147. name: "Front",
  3148. image: {
  3149. source: "./media/characters/shingo/front.svg",
  3150. extra: 1900/1825,
  3151. bottom: 82/1982
  3152. }
  3153. },
  3154. side: {
  3155. height: math.unit(6, "feet"),
  3156. weight: math.unit(75, "kg"),
  3157. name: "Side",
  3158. image: {
  3159. source: "./media/characters/shingo/side.svg",
  3160. extra: 1930/1865,
  3161. bottom: 16/1946
  3162. }
  3163. },
  3164. back: {
  3165. height: math.unit(6, "feet"),
  3166. weight: math.unit(75, "kg"),
  3167. name: "Back",
  3168. image: {
  3169. source: "./media/characters/shingo/back.svg",
  3170. extra: 1922/1852,
  3171. bottom: 16/1938
  3172. }
  3173. },
  3174. frontDressed: {
  3175. height: math.unit(6, "feet"),
  3176. weight: math.unit(150, "lb"),
  3177. name: "Front-dressed",
  3178. image: {
  3179. source: "./media/characters/shingo/front-dressed.svg",
  3180. extra: 1900/1825,
  3181. bottom: 82/1982
  3182. }
  3183. },
  3184. paw: {
  3185. height: math.unit(1.29, "feet"),
  3186. name: "Paw",
  3187. image: {
  3188. source: "./media/characters/shingo/paw.svg"
  3189. }
  3190. },
  3191. hand: {
  3192. height: math.unit(1.07, "feet"),
  3193. name: "Hand",
  3194. image: {
  3195. source: "./media/characters/shingo/hand.svg"
  3196. }
  3197. },
  3198. frontAlt: {
  3199. height: math.unit(6, "feet"),
  3200. weight: math.unit(75, "kg"),
  3201. name: "Front (Alt)",
  3202. image: {
  3203. source: "./media/characters/shingo/front-alt.svg",
  3204. extra: 3511 / 3338,
  3205. bottom: 0.005
  3206. }
  3207. },
  3208. frontAlt2: {
  3209. height: math.unit(6, "feet"),
  3210. weight: math.unit(75, "kg"),
  3211. name: "Front (Alt 2)",
  3212. image: {
  3213. source: "./media/characters/shingo/front-alt-2.svg",
  3214. extra: 706/681,
  3215. bottom: 11/717
  3216. }
  3217. },
  3218. pawAlt: {
  3219. height: math.unit(1, "feet"),
  3220. name: "Paw (Alt)",
  3221. image: {
  3222. source: "./media/characters/shingo/paw-alt.svg"
  3223. }
  3224. },
  3225. },
  3226. [
  3227. {
  3228. name: "Micro",
  3229. height: math.unit(4, "inches")
  3230. },
  3231. {
  3232. name: "Normal",
  3233. height: math.unit(6, "feet"),
  3234. default: true
  3235. },
  3236. {
  3237. name: "Macro",
  3238. height: math.unit(108, "feet")
  3239. },
  3240. {
  3241. name: "Macro+",
  3242. height: math.unit(1500, "feet")
  3243. },
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3248. {
  3249. side: {
  3250. height: math.unit(6, "feet"),
  3251. weight: math.unit(75, "kg"),
  3252. name: "Side",
  3253. image: {
  3254. source: "./media/characters/aigey/side.svg"
  3255. }
  3256. },
  3257. },
  3258. [
  3259. {
  3260. name: "Macro",
  3261. height: math.unit(200, "feet"),
  3262. default: true
  3263. },
  3264. {
  3265. name: "Megamacro",
  3266. height: math.unit(100, "miles")
  3267. },
  3268. ]
  3269. )
  3270. )
  3271. characterMakers.push(() => makeCharacter(
  3272. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3273. {
  3274. front: {
  3275. height: math.unit(5 + 5 / 12, "feet"),
  3276. weight: math.unit(75, "kg"),
  3277. name: "Front",
  3278. image: {
  3279. source: "./media/characters/natasha/front.svg",
  3280. extra: 859 / 824,
  3281. bottom: 23 / 879.6
  3282. }
  3283. },
  3284. frontNsfw: {
  3285. height: math.unit(5 + 5 / 12, "feet"),
  3286. weight: math.unit(75, "kg"),
  3287. name: "Front (NSFW)",
  3288. image: {
  3289. source: "./media/characters/natasha/front-nsfw.svg",
  3290. extra: 859 / 824,
  3291. bottom: 23 / 879.6
  3292. }
  3293. },
  3294. frontErect: {
  3295. height: math.unit(5 + 5 / 12, "feet"),
  3296. weight: math.unit(75, "kg"),
  3297. name: "Front (Erect)",
  3298. image: {
  3299. source: "./media/characters/natasha/front-erect.svg",
  3300. extra: 859 / 824,
  3301. bottom: 23 / 879.6
  3302. }
  3303. },
  3304. back: {
  3305. height: math.unit(5 + 5 / 12, "feet"),
  3306. weight: math.unit(75, "kg"),
  3307. name: "Back",
  3308. image: {
  3309. source: "./media/characters/natasha/back.svg",
  3310. extra: 887.9 / 852.6,
  3311. bottom: 9.7 / 896.4
  3312. }
  3313. },
  3314. backAlt: {
  3315. height: math.unit(5 + 5 / 12, "feet"),
  3316. weight: math.unit(75, "kg"),
  3317. name: "Back (Alt)",
  3318. image: {
  3319. source: "./media/characters/natasha/back-alt.svg",
  3320. extra: 1236.7 / 1192,
  3321. bottom: 22.3 / 1258.2
  3322. }
  3323. },
  3324. dick: {
  3325. height: math.unit(1.772, "feet"),
  3326. name: "Dick",
  3327. image: {
  3328. source: "./media/characters/natasha/dick.svg"
  3329. }
  3330. },
  3331. paw: {
  3332. height: math.unit(0.250, "meters"),
  3333. name: "Paw",
  3334. image: {
  3335. source: "./media/characters/natasha/paw.svg"
  3336. },
  3337. extraAttributes: {
  3338. "toeSize": {
  3339. name: "Toe Size",
  3340. power: 2,
  3341. type: "area",
  3342. base: math.unit(0.0024, "m^2")
  3343. },
  3344. "padSize": {
  3345. name: "Pad Size",
  3346. power: 2,
  3347. type: "area",
  3348. base: math.unit(0.00889, "m^2")
  3349. },
  3350. "pawSize": {
  3351. name: "Paw Size",
  3352. power: 2,
  3353. type: "area",
  3354. base: math.unit(0.023667, "m^2")
  3355. },
  3356. }
  3357. },
  3358. },
  3359. [
  3360. {
  3361. name: "Shortstack",
  3362. height: math.unit(3, "feet"),
  3363. default: true
  3364. },
  3365. {
  3366. name: "Normal",
  3367. height: math.unit(5 + 5 / 12, "feet")
  3368. },
  3369. {
  3370. name: "Large",
  3371. height: math.unit(12, "feet")
  3372. },
  3373. {
  3374. name: "Macro",
  3375. height: math.unit(100, "feet")
  3376. },
  3377. {
  3378. name: "Macro+",
  3379. height: math.unit(260, "feet")
  3380. },
  3381. {
  3382. name: "Macro++",
  3383. height: math.unit(1, "mile")
  3384. },
  3385. ]
  3386. ))
  3387. characterMakers.push(() => makeCharacter(
  3388. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3389. {
  3390. front: {
  3391. height: math.unit(6, "feet"),
  3392. weight: math.unit(75, "kg"),
  3393. name: "Front",
  3394. image: {
  3395. source: "./media/characters/malik/front.svg",
  3396. extra: 1750/1561,
  3397. bottom: 80/1830
  3398. },
  3399. extraAttributes: {
  3400. "toeSize": {
  3401. name: "Toe Size",
  3402. power: 2,
  3403. type: "area",
  3404. base: math.unit(0.0159, "m^2")
  3405. },
  3406. "pawSize": {
  3407. name: "Paw Size",
  3408. power: 2,
  3409. type: "area",
  3410. base: math.unit(0.09834, "m^2")
  3411. },
  3412. }
  3413. },
  3414. side: {
  3415. height: math.unit(6, "feet"),
  3416. weight: math.unit(75, "kg"),
  3417. name: "Side",
  3418. image: {
  3419. source: "./media/characters/malik/side.svg",
  3420. extra: 1802/1685,
  3421. bottom: 42/1844
  3422. },
  3423. extraAttributes: {
  3424. "toeSize": {
  3425. name: "Toe Size",
  3426. power: 2,
  3427. type: "area",
  3428. base: math.unit(0.0159, "m^2")
  3429. },
  3430. "pawSize": {
  3431. name: "Paw Size",
  3432. power: 2,
  3433. type: "area",
  3434. base: math.unit(0.09834, "m^2")
  3435. },
  3436. }
  3437. },
  3438. back: {
  3439. height: math.unit(6, "feet"),
  3440. weight: math.unit(75, "kg"),
  3441. name: "Back",
  3442. image: {
  3443. source: "./media/characters/malik/back.svg",
  3444. extra: 1803/1607,
  3445. bottom: 33/1836
  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. },
  3463. [
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(156, "feet"),
  3467. default: true
  3468. },
  3469. {
  3470. name: "Macro+",
  3471. height: math.unit(1188, "feet")
  3472. },
  3473. ]
  3474. ))
  3475. characterMakers.push(() => makeCharacter(
  3476. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3477. {
  3478. front: {
  3479. height: math.unit(6, "feet"),
  3480. weight: math.unit(75, "kg"),
  3481. name: "Front",
  3482. image: {
  3483. source: "./media/characters/sefer/front.svg",
  3484. extra: 848 / 659,
  3485. bottom: 28.3 / 876.442
  3486. }
  3487. },
  3488. back: {
  3489. height: math.unit(6, "feet"),
  3490. weight: math.unit(75, "kg"),
  3491. name: "Back",
  3492. image: {
  3493. source: "./media/characters/sefer/back.svg",
  3494. extra: 864 / 695,
  3495. bottom: 10 / 871
  3496. }
  3497. },
  3498. frontDressed: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(75, "kg"),
  3501. name: "Front (Dressed)",
  3502. image: {
  3503. source: "./media/characters/sefer/front-dressed.svg",
  3504. extra: 839 / 653,
  3505. bottom: 37.6 / 878
  3506. }
  3507. },
  3508. },
  3509. [
  3510. {
  3511. name: "Normal",
  3512. height: math.unit(6, "feet"),
  3513. default: true
  3514. },
  3515. ]
  3516. ))
  3517. characterMakers.push(() => makeCharacter(
  3518. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3519. {
  3520. body: {
  3521. height: math.unit(2.2428, "meter"),
  3522. weight: math.unit(124.738, "kg"),
  3523. name: "Body",
  3524. image: {
  3525. extra: 1225 / 1050,
  3526. source: "./media/characters/north/front.svg"
  3527. }
  3528. }
  3529. },
  3530. [
  3531. {
  3532. name: "Micro",
  3533. height: math.unit(4, "inches")
  3534. },
  3535. {
  3536. name: "Macro",
  3537. height: math.unit(63, "meters")
  3538. },
  3539. {
  3540. name: "Megamacro",
  3541. height: math.unit(101, "miles"),
  3542. default: true
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3548. {
  3549. angled: {
  3550. height: math.unit(4, "meter"),
  3551. weight: math.unit(150, "kg"),
  3552. name: "Angled",
  3553. image: {
  3554. source: "./media/characters/talan/angled-sfw.svg",
  3555. bottom: 29 / 3734
  3556. }
  3557. },
  3558. angledNsfw: {
  3559. height: math.unit(4, "meter"),
  3560. weight: math.unit(150, "kg"),
  3561. name: "Angled (NSFW)",
  3562. image: {
  3563. source: "./media/characters/talan/angled-nsfw.svg",
  3564. bottom: 29 / 3734
  3565. }
  3566. },
  3567. frontNsfw: {
  3568. height: math.unit(4, "meter"),
  3569. weight: math.unit(150, "kg"),
  3570. name: "Front (NSFW)",
  3571. image: {
  3572. source: "./media/characters/talan/front-nsfw.svg",
  3573. bottom: 29 / 3734
  3574. }
  3575. },
  3576. sideNsfw: {
  3577. height: math.unit(4, "meter"),
  3578. weight: math.unit(150, "kg"),
  3579. name: "Side (NSFW)",
  3580. image: {
  3581. source: "./media/characters/talan/side-nsfw.svg",
  3582. bottom: 29 / 3734
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(4, "meter"),
  3587. weight: math.unit(150, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/talan/back.svg"
  3591. }
  3592. },
  3593. dickBottom: {
  3594. height: math.unit(0.621, "meter"),
  3595. name: "Dick (Bottom)",
  3596. image: {
  3597. source: "./media/characters/talan/dick-bottom.svg"
  3598. }
  3599. },
  3600. dickTop: {
  3601. height: math.unit(0.621, "meter"),
  3602. name: "Dick (Top)",
  3603. image: {
  3604. source: "./media/characters/talan/dick-top.svg"
  3605. }
  3606. },
  3607. dickSide: {
  3608. height: math.unit(0.305, "meter"),
  3609. name: "Dick (Side)",
  3610. image: {
  3611. source: "./media/characters/talan/dick-side.svg"
  3612. }
  3613. },
  3614. dickFront: {
  3615. height: math.unit(0.305, "meter"),
  3616. name: "Dick (Front)",
  3617. image: {
  3618. source: "./media/characters/talan/dick-front.svg"
  3619. }
  3620. },
  3621. },
  3622. [
  3623. {
  3624. name: "Normal",
  3625. height: math.unit(4, "meters")
  3626. },
  3627. {
  3628. name: "Macro",
  3629. height: math.unit(100, "meters")
  3630. },
  3631. {
  3632. name: "Megamacro",
  3633. height: math.unit(2, "miles"),
  3634. default: true
  3635. },
  3636. {
  3637. name: "Gigamacro",
  3638. height: math.unit(5000, "miles")
  3639. },
  3640. {
  3641. name: "Teramacro",
  3642. height: math.unit(100, "parsecs")
  3643. }
  3644. ]
  3645. ))
  3646. characterMakers.push(() => makeCharacter(
  3647. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3648. {
  3649. front: {
  3650. height: math.unit(2, "meter"),
  3651. weight: math.unit(90, "kg"),
  3652. name: "Front",
  3653. image: {
  3654. source: "./media/characters/gael'rathus/front.svg"
  3655. }
  3656. },
  3657. frontAlt: {
  3658. height: math.unit(2, "meter"),
  3659. weight: math.unit(90, "kg"),
  3660. name: "Front (alt)",
  3661. image: {
  3662. source: "./media/characters/gael'rathus/front-alt.svg"
  3663. }
  3664. },
  3665. frontAlt2: {
  3666. height: math.unit(2, "meter"),
  3667. weight: math.unit(90, "kg"),
  3668. name: "Front (alt 2)",
  3669. image: {
  3670. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3671. }
  3672. }
  3673. },
  3674. [
  3675. {
  3676. name: "Normal",
  3677. height: math.unit(9, "feet"),
  3678. default: true
  3679. },
  3680. {
  3681. name: "Large",
  3682. height: math.unit(25, "feet")
  3683. },
  3684. {
  3685. name: "Macro",
  3686. height: math.unit(0.25, "miles")
  3687. },
  3688. {
  3689. name: "Megamacro",
  3690. height: math.unit(10, "miles")
  3691. }
  3692. ]
  3693. ))
  3694. characterMakers.push(() => makeCharacter(
  3695. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3696. {
  3697. side: {
  3698. height: math.unit(2, "meter"),
  3699. weight: math.unit(140, "kg"),
  3700. name: "Side",
  3701. image: {
  3702. source: "./media/characters/sosha/side.svg",
  3703. extra: 1170/1006,
  3704. bottom: 94/1264
  3705. }
  3706. },
  3707. maw: {
  3708. height: math.unit(2.87, "feet"),
  3709. name: "Maw",
  3710. image: {
  3711. source: "./media/characters/sosha/maw.svg",
  3712. extra: 966/865,
  3713. bottom: 0/966
  3714. }
  3715. },
  3716. cooch: {
  3717. height: math.unit(5.6, "feet"),
  3718. name: "Cooch",
  3719. image: {
  3720. source: "./media/characters/sosha/cooch.svg"
  3721. }
  3722. },
  3723. },
  3724. [
  3725. {
  3726. name: "Normal",
  3727. height: math.unit(12, "feet"),
  3728. default: true
  3729. }
  3730. ]
  3731. ))
  3732. characterMakers.push(() => makeCharacter(
  3733. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3734. {
  3735. side: {
  3736. height: math.unit(5 + 5 / 12, "feet"),
  3737. weight: math.unit(170, "kg"),
  3738. name: "Side",
  3739. image: {
  3740. source: "./media/characters/runnola/side.svg",
  3741. extra: 741 / 448,
  3742. bottom: 0.05
  3743. }
  3744. },
  3745. },
  3746. [
  3747. {
  3748. name: "Small",
  3749. height: math.unit(3, "feet")
  3750. },
  3751. {
  3752. name: "Normal",
  3753. height: math.unit(5 + 5 / 12, "feet"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Big",
  3758. height: math.unit(10, "feet")
  3759. },
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3764. {
  3765. front: {
  3766. height: math.unit(2, "meter"),
  3767. weight: math.unit(50, "kg"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/kurribird/front.svg",
  3771. bottom: 0.015
  3772. }
  3773. },
  3774. frontAlt: {
  3775. height: math.unit(1.5, "meter"),
  3776. weight: math.unit(50, "kg"),
  3777. name: "Front (Alt)",
  3778. image: {
  3779. source: "./media/characters/kurribird/front-alt.svg",
  3780. extra: 1.45
  3781. }
  3782. },
  3783. },
  3784. [
  3785. {
  3786. name: "Normal",
  3787. height: math.unit(7, "feet")
  3788. },
  3789. {
  3790. name: "Big",
  3791. height: math.unit(12, "feet"),
  3792. default: true
  3793. },
  3794. {
  3795. name: "Macro",
  3796. height: math.unit(1500, "feet")
  3797. },
  3798. {
  3799. name: "Megamacro",
  3800. height: math.unit(2, "miles")
  3801. }
  3802. ]
  3803. ))
  3804. characterMakers.push(() => makeCharacter(
  3805. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3806. {
  3807. front: {
  3808. height: math.unit(2, "meter"),
  3809. weight: math.unit(80, "kg"),
  3810. name: "Front",
  3811. image: {
  3812. source: "./media/characters/elbial/front.svg",
  3813. extra: 1643 / 1556,
  3814. bottom: 60.2 / 1696
  3815. }
  3816. },
  3817. side: {
  3818. height: math.unit(2, "meter"),
  3819. weight: math.unit(80, "kg"),
  3820. name: "Side",
  3821. image: {
  3822. source: "./media/characters/elbial/side.svg",
  3823. extra: 1601/1528,
  3824. bottom: 97/1698
  3825. }
  3826. },
  3827. back: {
  3828. height: math.unit(2, "meter"),
  3829. weight: math.unit(80, "kg"),
  3830. name: "Back",
  3831. image: {
  3832. source: "./media/characters/elbial/back.svg",
  3833. extra: 1653/1569,
  3834. bottom: 20/1673
  3835. }
  3836. },
  3837. frontDressed: {
  3838. height: math.unit(2, "meter"),
  3839. weight: math.unit(80, "kg"),
  3840. name: "Front (Dressed)",
  3841. image: {
  3842. source: "./media/characters/elbial/front-dressed.svg",
  3843. extra: 1638/1569,
  3844. bottom: 70/1708
  3845. }
  3846. },
  3847. genitals: {
  3848. height: math.unit(2 / 3.367, "meter"),
  3849. name: "Genitals",
  3850. image: {
  3851. source: "./media/characters/elbial/genitals.svg"
  3852. }
  3853. },
  3854. },
  3855. [
  3856. {
  3857. name: "Large",
  3858. height: math.unit(100, "feet")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(500, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Megamacro",
  3867. height: math.unit(10, "miles")
  3868. },
  3869. {
  3870. name: "Gigamacro",
  3871. height: math.unit(25000, "miles")
  3872. },
  3873. {
  3874. name: "Full-Size",
  3875. height: math.unit(8000000, "gigaparsecs")
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(2, "meter"),
  3884. weight: math.unit(60, "kg"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/noah/front.svg"
  3888. }
  3889. },
  3890. talons: {
  3891. height: math.unit(0.315, "meter"),
  3892. name: "Talons",
  3893. image: {
  3894. source: "./media/characters/noah/talons.svg"
  3895. }
  3896. }
  3897. },
  3898. [
  3899. {
  3900. name: "Large",
  3901. height: math.unit(50, "feet")
  3902. },
  3903. {
  3904. name: "Macro",
  3905. height: math.unit(750, "feet"),
  3906. default: true
  3907. },
  3908. {
  3909. name: "Megamacro",
  3910. height: math.unit(50, "miles")
  3911. },
  3912. {
  3913. name: "Gigamacro",
  3914. height: math.unit(100000, "miles")
  3915. },
  3916. {
  3917. name: "Full-Size",
  3918. height: math.unit(3000000000, "miles")
  3919. }
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(2, "meter"),
  3927. weight: math.unit(80, "kg"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/natalya/front.svg"
  3931. }
  3932. },
  3933. back: {
  3934. height: math.unit(2, "meter"),
  3935. weight: math.unit(80, "kg"),
  3936. name: "Back",
  3937. image: {
  3938. source: "./media/characters/natalya/back.svg"
  3939. }
  3940. }
  3941. },
  3942. [
  3943. {
  3944. name: "Normal",
  3945. height: math.unit(150, "feet"),
  3946. default: true
  3947. },
  3948. {
  3949. name: "Megamacro",
  3950. height: math.unit(5, "miles")
  3951. },
  3952. {
  3953. name: "Full-Size",
  3954. height: math.unit(600, "kiloparsecs")
  3955. }
  3956. ]
  3957. ))
  3958. characterMakers.push(() => makeCharacter(
  3959. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3960. {
  3961. front: {
  3962. height: math.unit(2, "meter"),
  3963. weight: math.unit(50, "kg"),
  3964. name: "Front",
  3965. image: {
  3966. source: "./media/characters/erestrebah/front.svg",
  3967. extra: 1262/1162,
  3968. bottom: 96/1358
  3969. }
  3970. },
  3971. back: {
  3972. height: math.unit(2, "meter"),
  3973. weight: math.unit(50, "kg"),
  3974. name: "Back",
  3975. image: {
  3976. source: "./media/characters/erestrebah/back.svg",
  3977. extra: 1257/1139,
  3978. bottom: 13/1270
  3979. }
  3980. },
  3981. wing: {
  3982. height: math.unit(2, "meter"),
  3983. weight: math.unit(50, "kg"),
  3984. name: "Wing",
  3985. image: {
  3986. source: "./media/characters/erestrebah/wing.svg",
  3987. extra: 1262/1162,
  3988. bottom: 96/1358
  3989. }
  3990. },
  3991. mouth: {
  3992. height: math.unit(0.39, "feet"),
  3993. name: "Mouth",
  3994. image: {
  3995. source: "./media/characters/erestrebah/mouth.svg"
  3996. }
  3997. }
  3998. },
  3999. [
  4000. {
  4001. name: "Normal",
  4002. height: math.unit(10, "feet")
  4003. },
  4004. {
  4005. name: "Large",
  4006. height: math.unit(50, "feet"),
  4007. default: true
  4008. },
  4009. {
  4010. name: "Macro",
  4011. height: math.unit(300, "feet")
  4012. },
  4013. {
  4014. name: "Macro+",
  4015. height: math.unit(750, "feet")
  4016. },
  4017. {
  4018. name: "Megamacro",
  4019. height: math.unit(3, "miles")
  4020. }
  4021. ]
  4022. ))
  4023. characterMakers.push(() => makeCharacter(
  4024. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4025. {
  4026. front: {
  4027. height: math.unit(2, "meter"),
  4028. weight: math.unit(80, "kg"),
  4029. name: "Front",
  4030. image: {
  4031. source: "./media/characters/jennifer/front.svg",
  4032. bottom: 0.11,
  4033. extra: 1.16
  4034. }
  4035. },
  4036. frontAlt: {
  4037. height: math.unit(2, "meter"),
  4038. weight: math.unit(80, "kg"),
  4039. name: "Front (Alt)",
  4040. image: {
  4041. source: "./media/characters/jennifer/front-alt.svg"
  4042. }
  4043. }
  4044. },
  4045. [
  4046. {
  4047. name: "Canon Height",
  4048. height: math.unit(120, "feet"),
  4049. default: true
  4050. },
  4051. {
  4052. name: "Macro+",
  4053. height: math.unit(300, "feet")
  4054. },
  4055. {
  4056. name: "Megamacro",
  4057. height: math.unit(20000, "feet")
  4058. }
  4059. ]
  4060. ))
  4061. characterMakers.push(() => makeCharacter(
  4062. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4063. {
  4064. front: {
  4065. height: math.unit(2, "meter"),
  4066. weight: math.unit(50, "kg"),
  4067. name: "Front",
  4068. image: {
  4069. source: "./media/characters/kalista/front.svg",
  4070. extra: 1314/1145,
  4071. bottom: 101/1415
  4072. }
  4073. },
  4074. back: {
  4075. height: math.unit(2, "meter"),
  4076. weight: math.unit(50, "kg"),
  4077. name: "Back",
  4078. image: {
  4079. source: "./media/characters/kalista/back.svg",
  4080. extra: 1366 / 1156,
  4081. bottom: 33.9 / 1362.78
  4082. }
  4083. }
  4084. },
  4085. [
  4086. {
  4087. name: "Uncomfortably Small",
  4088. height: math.unit(10, "feet")
  4089. },
  4090. {
  4091. name: "Small",
  4092. height: math.unit(30, "feet")
  4093. },
  4094. {
  4095. name: "Macro",
  4096. height: math.unit(100, "feet"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Macro+",
  4101. height: math.unit(2000, "feet")
  4102. },
  4103. {
  4104. name: "True Form",
  4105. height: math.unit(8924, "miles")
  4106. }
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4111. {
  4112. front: {
  4113. height: math.unit(2, "meter"),
  4114. weight: math.unit(120, "kg"),
  4115. name: "Front",
  4116. image: {
  4117. source: "./media/characters/ggv/front.svg"
  4118. }
  4119. },
  4120. side: {
  4121. height: math.unit(2, "meter"),
  4122. weight: math.unit(120, "kg"),
  4123. name: "Side",
  4124. image: {
  4125. source: "./media/characters/ggv/side.svg"
  4126. }
  4127. }
  4128. },
  4129. [
  4130. {
  4131. name: "Extremely Puny",
  4132. height: math.unit(9 + 5 / 12, "feet")
  4133. },
  4134. {
  4135. name: "Horribly Small",
  4136. height: math.unit(47.7, "miles"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Reasonably Sized",
  4141. height: math.unit(25000, "parsecs")
  4142. },
  4143. {
  4144. name: "Slightly Uncompressed",
  4145. height: math.unit(7.77e31, "parsecs")
  4146. },
  4147. {
  4148. name: "Omniversal",
  4149. height: math.unit(1e300, "meters")
  4150. },
  4151. ]
  4152. ))
  4153. characterMakers.push(() => makeCharacter(
  4154. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4155. {
  4156. front: {
  4157. height: math.unit(2, "meter"),
  4158. weight: math.unit(75, "lb"),
  4159. name: "Front",
  4160. image: {
  4161. source: "./media/characters/napalm/front.svg"
  4162. }
  4163. },
  4164. back: {
  4165. height: math.unit(2, "meter"),
  4166. weight: math.unit(75, "lb"),
  4167. name: "Back",
  4168. image: {
  4169. source: "./media/characters/napalm/back.svg"
  4170. }
  4171. }
  4172. },
  4173. [
  4174. {
  4175. name: "Standard",
  4176. height: math.unit(55, "feet"),
  4177. default: true
  4178. }
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(7 + 5 / 6, "feet"),
  4186. weight: math.unit(325, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/asana/front.svg",
  4190. extra: 1133 / 1060,
  4191. bottom: 15.2 / 1148.6
  4192. }
  4193. },
  4194. back: {
  4195. height: math.unit(7 + 5 / 6, "feet"),
  4196. weight: math.unit(325, "lb"),
  4197. name: "Back",
  4198. image: {
  4199. source: "./media/characters/asana/back.svg",
  4200. extra: 1114 / 1043,
  4201. bottom: 5 / 1120
  4202. }
  4203. },
  4204. dressedDark: {
  4205. height: math.unit(7 + 5 / 6, "feet"),
  4206. weight: math.unit(325, "lb"),
  4207. name: "Dressed (Dark)",
  4208. image: {
  4209. source: "./media/characters/asana/dressed-dark.svg",
  4210. extra: 1133 / 1060,
  4211. bottom: 15.2 / 1148.6
  4212. }
  4213. },
  4214. dressedLight: {
  4215. height: math.unit(7 + 5 / 6, "feet"),
  4216. weight: math.unit(325, "lb"),
  4217. name: "Dressed (Light)",
  4218. image: {
  4219. source: "./media/characters/asana/dressed-light.svg",
  4220. extra: 1133 / 1060,
  4221. bottom: 15.2 / 1148.6
  4222. }
  4223. },
  4224. },
  4225. [
  4226. {
  4227. name: "Standard",
  4228. height: math.unit(7 + 5 / 6, "feet"),
  4229. default: true
  4230. },
  4231. {
  4232. name: "Large",
  4233. height: math.unit(10, "meters")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(2500, "meters")
  4238. },
  4239. {
  4240. name: "Megamacro",
  4241. height: math.unit(5e6, "meters")
  4242. },
  4243. {
  4244. name: "Examacro",
  4245. height: math.unit(5e12, "lightyears")
  4246. },
  4247. {
  4248. name: "Max Size",
  4249. height: math.unit(1e31, "lightyears")
  4250. }
  4251. ]
  4252. ))
  4253. characterMakers.push(() => makeCharacter(
  4254. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4255. {
  4256. front: {
  4257. height: math.unit(2, "meter"),
  4258. weight: math.unit(60, "kg"),
  4259. name: "Front",
  4260. image: {
  4261. source: "./media/characters/ebony/front.svg",
  4262. bottom: 0.03,
  4263. extra: 1045 / 810 + 0.03
  4264. }
  4265. },
  4266. side: {
  4267. height: math.unit(2, "meter"),
  4268. weight: math.unit(60, "kg"),
  4269. name: "Side",
  4270. image: {
  4271. source: "./media/characters/ebony/side.svg",
  4272. bottom: 0.03,
  4273. extra: 1045 / 810 + 0.03
  4274. }
  4275. },
  4276. back: {
  4277. height: math.unit(2, "meter"),
  4278. weight: math.unit(60, "kg"),
  4279. name: "Back",
  4280. image: {
  4281. source: "./media/characters/ebony/back.svg",
  4282. bottom: 0.01,
  4283. extra: 1045 / 810 + 0.01
  4284. }
  4285. },
  4286. },
  4287. [
  4288. // TODO check why I did this lol
  4289. {
  4290. name: "Standard",
  4291. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4292. default: true
  4293. },
  4294. {
  4295. name: "Macro",
  4296. height: math.unit(200, "feet")
  4297. },
  4298. {
  4299. name: "Gigamacro",
  4300. height: math.unit(13000, "km")
  4301. }
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4306. {
  4307. front: {
  4308. height: math.unit(6, "feet"),
  4309. weight: math.unit(175, "lb"),
  4310. name: "Front",
  4311. image: {
  4312. source: "./media/characters/mountain/front.svg",
  4313. extra: 972 / 955,
  4314. bottom: 64 / 1036.6
  4315. }
  4316. },
  4317. back: {
  4318. height: math.unit(6, "feet"),
  4319. weight: math.unit(175, "lb"),
  4320. name: "Back",
  4321. image: {
  4322. source: "./media/characters/mountain/back.svg",
  4323. extra: 970 / 950,
  4324. bottom: 28.25 / 999
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Large",
  4331. height: math.unit(20, "meters")
  4332. },
  4333. {
  4334. name: "Macro",
  4335. height: math.unit(300, "meters")
  4336. },
  4337. {
  4338. name: "Gigamacro",
  4339. height: math.unit(10000, "km"),
  4340. default: true
  4341. },
  4342. {
  4343. name: "Examacro",
  4344. height: math.unit(10e9, "lightyears")
  4345. }
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4350. {
  4351. front: {
  4352. height: math.unit(8, "feet"),
  4353. weight: math.unit(500, "lb"),
  4354. name: "Front",
  4355. image: {
  4356. source: "./media/characters/rick/front.svg"
  4357. }
  4358. }
  4359. },
  4360. [
  4361. {
  4362. name: "Normal",
  4363. height: math.unit(8, "feet"),
  4364. default: true
  4365. },
  4366. {
  4367. name: "Macro",
  4368. height: math.unit(5, "km")
  4369. }
  4370. ]
  4371. ))
  4372. characterMakers.push(() => makeCharacter(
  4373. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4374. {
  4375. front: {
  4376. height: math.unit(8, "feet"),
  4377. weight: math.unit(120, "lb"),
  4378. name: "Front",
  4379. image: {
  4380. source: "./media/characters/ona/front.svg"
  4381. }
  4382. },
  4383. frontAlt: {
  4384. height: math.unit(8, "feet"),
  4385. weight: math.unit(120, "lb"),
  4386. name: "Front (Alt)",
  4387. image: {
  4388. source: "./media/characters/ona/front-alt.svg"
  4389. }
  4390. },
  4391. back: {
  4392. height: math.unit(8, "feet"),
  4393. weight: math.unit(120, "lb"),
  4394. name: "Back",
  4395. image: {
  4396. source: "./media/characters/ona/back.svg"
  4397. }
  4398. },
  4399. foot: {
  4400. height: math.unit(1.1, "feet"),
  4401. name: "Foot",
  4402. image: {
  4403. source: "./media/characters/ona/foot.svg"
  4404. }
  4405. }
  4406. },
  4407. [
  4408. {
  4409. name: "Megamacro",
  4410. height: math.unit(70, "km"),
  4411. default: true
  4412. },
  4413. {
  4414. name: "Gigamacro",
  4415. height: math.unit(681818, "miles")
  4416. },
  4417. {
  4418. name: "Examacro",
  4419. height: math.unit(3800000, "lightyears")
  4420. },
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(12, "feet"),
  4428. weight: math.unit(3000, "lb"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/mech/front.svg",
  4432. extra: 2900 / 2770,
  4433. bottom: 110 / 3010
  4434. }
  4435. },
  4436. back: {
  4437. height: math.unit(12, "feet"),
  4438. weight: math.unit(3000, "lb"),
  4439. name: "Back",
  4440. image: {
  4441. source: "./media/characters/mech/back.svg",
  4442. extra: 3011 / 2890,
  4443. bottom: 94 / 3105
  4444. }
  4445. },
  4446. maw: {
  4447. height: math.unit(3.07, "feet"),
  4448. name: "Maw",
  4449. image: {
  4450. source: "./media/characters/mech/maw.svg"
  4451. }
  4452. },
  4453. head: {
  4454. height: math.unit(3.07, "feet"),
  4455. name: "Head",
  4456. image: {
  4457. source: "./media/characters/mech/head.svg"
  4458. }
  4459. },
  4460. dick: {
  4461. height: math.unit(1.43, "feet"),
  4462. name: "Dick",
  4463. image: {
  4464. source: "./media/characters/mech/dick.svg"
  4465. }
  4466. },
  4467. },
  4468. [
  4469. {
  4470. name: "Normal",
  4471. height: math.unit(12, "feet")
  4472. },
  4473. {
  4474. name: "Macro",
  4475. height: math.unit(300, "feet"),
  4476. default: true
  4477. },
  4478. {
  4479. name: "Macro+",
  4480. height: math.unit(1500, "feet")
  4481. },
  4482. ]
  4483. ))
  4484. characterMakers.push(() => makeCharacter(
  4485. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4486. {
  4487. front: {
  4488. height: math.unit(1.3, "meter"),
  4489. weight: math.unit(30, "kg"),
  4490. name: "Front",
  4491. image: {
  4492. source: "./media/characters/gregory/front.svg",
  4493. }
  4494. }
  4495. },
  4496. [
  4497. {
  4498. name: "Normal",
  4499. height: math.unit(1.3, "meter"),
  4500. default: true
  4501. },
  4502. {
  4503. name: "Macro",
  4504. height: math.unit(20, "meter")
  4505. }
  4506. ]
  4507. ))
  4508. characterMakers.push(() => makeCharacter(
  4509. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4510. {
  4511. front: {
  4512. height: math.unit(2.8, "meter"),
  4513. weight: math.unit(200, "kg"),
  4514. name: "Front",
  4515. image: {
  4516. source: "./media/characters/elory/front.svg",
  4517. }
  4518. }
  4519. },
  4520. [
  4521. {
  4522. name: "Normal",
  4523. height: math.unit(2.8, "meter"),
  4524. default: true
  4525. },
  4526. {
  4527. name: "Macro",
  4528. height: math.unit(38, "meter")
  4529. }
  4530. ]
  4531. ))
  4532. characterMakers.push(() => makeCharacter(
  4533. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4534. {
  4535. front: {
  4536. height: math.unit(470, "feet"),
  4537. weight: math.unit(924, "tons"),
  4538. name: "Front",
  4539. image: {
  4540. source: "./media/characters/angelpatamon/front.svg",
  4541. }
  4542. }
  4543. },
  4544. [
  4545. {
  4546. name: "Normal",
  4547. height: math.unit(470, "feet"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Deity Size I",
  4552. height: math.unit(28651.2, "km")
  4553. },
  4554. {
  4555. name: "Deity Size II",
  4556. height: math.unit(171907.2, "km")
  4557. }
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4562. {
  4563. side: {
  4564. height: math.unit(7.2, "meter"),
  4565. weight: math.unit(8.2, "tons"),
  4566. name: "Side",
  4567. image: {
  4568. source: "./media/characters/cryae/side.svg",
  4569. extra: 3500 / 1500
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(7.2, "meter"),
  4577. default: true
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(6, "feet"),
  4586. weight: math.unit(175, "lb"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/xera/front.svg",
  4590. extra: 2377 / 1972,
  4591. bottom: 75.5 / 2452
  4592. }
  4593. },
  4594. side: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(175, "lb"),
  4597. name: "Side",
  4598. image: {
  4599. source: "./media/characters/xera/side.svg",
  4600. extra: 2345 / 2019,
  4601. bottom: 39.7 / 2384
  4602. }
  4603. },
  4604. back: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(175, "lb"),
  4607. name: "Back",
  4608. image: {
  4609. source: "./media/characters/xera/back.svg",
  4610. extra: 2095 / 1984,
  4611. bottom: 67 / 2166
  4612. }
  4613. },
  4614. },
  4615. [
  4616. {
  4617. name: "Small",
  4618. height: math.unit(10, "feet")
  4619. },
  4620. {
  4621. name: "Macro",
  4622. height: math.unit(500, "meters"),
  4623. default: true
  4624. },
  4625. {
  4626. name: "Macro+",
  4627. height: math.unit(10, "km")
  4628. },
  4629. {
  4630. name: "Gigamacro",
  4631. height: math.unit(25000, "km")
  4632. },
  4633. {
  4634. name: "Teramacro",
  4635. height: math.unit(3e6, "km")
  4636. }
  4637. ]
  4638. ))
  4639. characterMakers.push(() => makeCharacter(
  4640. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4641. {
  4642. front: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(175, "lb"),
  4645. name: "Front",
  4646. image: {
  4647. source: "./media/characters/nebula/front.svg",
  4648. extra: 2566 / 2362,
  4649. bottom: 81 / 2644
  4650. }
  4651. }
  4652. },
  4653. [
  4654. {
  4655. name: "Small",
  4656. height: math.unit(4.5, "meters")
  4657. },
  4658. {
  4659. name: "Macro",
  4660. height: math.unit(1500, "meters"),
  4661. default: true
  4662. },
  4663. {
  4664. name: "Megamacro",
  4665. height: math.unit(150, "km")
  4666. },
  4667. {
  4668. name: "Gigamacro",
  4669. height: math.unit(27000, "km")
  4670. }
  4671. ]
  4672. ))
  4673. characterMakers.push(() => makeCharacter(
  4674. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4675. {
  4676. front: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(225, "lb"),
  4679. name: "Front",
  4680. image: {
  4681. source: "./media/characters/abysgar/front.svg",
  4682. extra: 1739/1614,
  4683. bottom: 71/1810
  4684. }
  4685. },
  4686. frontNsfw: {
  4687. height: math.unit(6, "feet"),
  4688. weight: math.unit(225, "lb"),
  4689. name: "Front (NSFW)",
  4690. image: {
  4691. source: "./media/characters/abysgar/front-nsfw.svg",
  4692. extra: 1739/1614,
  4693. bottom: 71/1810
  4694. }
  4695. },
  4696. back: {
  4697. height: math.unit(4.6, "feet"),
  4698. weight: math.unit(225, "lb"),
  4699. name: "Back",
  4700. image: {
  4701. source: "./media/characters/abysgar/back.svg",
  4702. extra: 1384/1327,
  4703. bottom: 0/1384
  4704. }
  4705. },
  4706. head: {
  4707. height: math.unit(1.25, "feet"),
  4708. name: "Head",
  4709. image: {
  4710. source: "./media/characters/abysgar/head.svg",
  4711. extra: 669/569,
  4712. bottom: 0/669
  4713. }
  4714. },
  4715. },
  4716. [
  4717. {
  4718. name: "Small",
  4719. height: math.unit(4.5, "meters")
  4720. },
  4721. {
  4722. name: "Macro",
  4723. height: math.unit(1250, "meters"),
  4724. default: true
  4725. },
  4726. {
  4727. name: "Megamacro",
  4728. height: math.unit(125, "km")
  4729. },
  4730. {
  4731. name: "Gigamacro",
  4732. height: math.unit(26000, "km")
  4733. }
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4738. {
  4739. front: {
  4740. height: math.unit(6, "feet"),
  4741. weight: math.unit(180, "lb"),
  4742. name: "Front",
  4743. image: {
  4744. source: "./media/characters/yakuz/front.svg"
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Small",
  4751. height: math.unit(5, "meters")
  4752. },
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(1500, "meters"),
  4756. default: true
  4757. },
  4758. {
  4759. name: "Megamacro",
  4760. height: math.unit(200, "km")
  4761. },
  4762. {
  4763. name: "Gigamacro",
  4764. height: math.unit(100000, "km")
  4765. }
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(6, "feet"),
  4773. weight: math.unit(175, "lb"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/mirova/front.svg",
  4777. extra: 3334 / 3071,
  4778. bottom: 42 / 3375.6
  4779. }
  4780. }
  4781. },
  4782. [
  4783. {
  4784. name: "Small",
  4785. height: math.unit(5, "meters")
  4786. },
  4787. {
  4788. name: "Macro",
  4789. height: math.unit(900, "meters"),
  4790. default: true
  4791. },
  4792. {
  4793. name: "Megamacro",
  4794. height: math.unit(135, "km")
  4795. },
  4796. {
  4797. name: "Gigamacro",
  4798. height: math.unit(20000, "km")
  4799. }
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4804. {
  4805. side: {
  4806. height: math.unit(28.35, "feet"),
  4807. weight: math.unit(99.75, "tons"),
  4808. name: "Side",
  4809. image: {
  4810. source: "./media/characters/asana-mech/side.svg",
  4811. extra: 923 / 699,
  4812. bottom: 50 / 975
  4813. }
  4814. },
  4815. chaingun: {
  4816. height: math.unit(7, "feet"),
  4817. weight: math.unit(2400, "lb"),
  4818. name: "Chaingun",
  4819. image: {
  4820. source: "./media/characters/asana-mech/chaingun.svg"
  4821. }
  4822. },
  4823. laser: {
  4824. height: math.unit(7.12, "feet"),
  4825. weight: math.unit(2000, "lb"),
  4826. name: "Laser",
  4827. image: {
  4828. source: "./media/characters/asana-mech/laser.svg"
  4829. }
  4830. },
  4831. },
  4832. [
  4833. {
  4834. name: "Normal",
  4835. height: math.unit(28.35, "feet"),
  4836. default: true
  4837. },
  4838. {
  4839. name: "Macro",
  4840. height: math.unit(2500, "feet")
  4841. },
  4842. {
  4843. name: "Megamacro",
  4844. height: math.unit(25, "miles")
  4845. },
  4846. {
  4847. name: "Examacro",
  4848. height: math.unit(6e8, "lightyears")
  4849. },
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(5, "meters"),
  4857. weight: math.unit(1000, "kg"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/asche/front.svg",
  4861. extra: 1258 / 1190,
  4862. bottom: 47 / 1305
  4863. }
  4864. },
  4865. frontUnderwear: {
  4866. height: math.unit(5, "meters"),
  4867. weight: math.unit(1000, "kg"),
  4868. name: "Front (Underwear)",
  4869. image: {
  4870. source: "./media/characters/asche/front-underwear.svg",
  4871. extra: 1258 / 1190,
  4872. bottom: 47 / 1305
  4873. }
  4874. },
  4875. frontDressed: {
  4876. height: math.unit(5, "meters"),
  4877. weight: math.unit(1000, "kg"),
  4878. name: "Front (Dressed)",
  4879. image: {
  4880. source: "./media/characters/asche/front-dressed.svg",
  4881. extra: 1258 / 1190,
  4882. bottom: 47 / 1305
  4883. }
  4884. },
  4885. frontArmor: {
  4886. height: math.unit(5, "meters"),
  4887. weight: math.unit(1000, "kg"),
  4888. name: "Front (Armored)",
  4889. image: {
  4890. source: "./media/characters/asche/front-armored.svg",
  4891. extra: 1374 / 1308,
  4892. bottom: 23 / 1397
  4893. }
  4894. },
  4895. mp724: {
  4896. height: math.unit(0.96, "meters"),
  4897. weight: math.unit(38, "kg"),
  4898. name: "H&K MP724",
  4899. image: {
  4900. source: "./media/characters/asche/h&k-mp724.svg"
  4901. }
  4902. },
  4903. side: {
  4904. height: math.unit(5, "meters"),
  4905. weight: math.unit(1000, "kg"),
  4906. name: "Side",
  4907. image: {
  4908. source: "./media/characters/asche/side.svg",
  4909. extra: 1717 / 1609,
  4910. bottom: 0.005
  4911. }
  4912. },
  4913. back: {
  4914. height: math.unit(5, "meters"),
  4915. weight: math.unit(1000, "kg"),
  4916. name: "Back",
  4917. image: {
  4918. source: "./media/characters/asche/back.svg",
  4919. extra: 1570 / 1501
  4920. }
  4921. },
  4922. },
  4923. [
  4924. {
  4925. name: "DEFCON 5",
  4926. height: math.unit(5, "meters")
  4927. },
  4928. {
  4929. name: "DEFCON 4",
  4930. height: math.unit(500, "meters"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "DEFCON 3",
  4935. height: math.unit(5, "km")
  4936. },
  4937. {
  4938. name: "DEFCON 2",
  4939. height: math.unit(500, "km")
  4940. },
  4941. {
  4942. name: "DEFCON 1",
  4943. height: math.unit(500000, "km")
  4944. },
  4945. {
  4946. name: "DEFCON 0",
  4947. height: math.unit(3, "gigaparsecs")
  4948. },
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4953. {
  4954. front: {
  4955. height: math.unit(2, "meters"),
  4956. weight: math.unit(76, "kg"),
  4957. name: "Front",
  4958. image: {
  4959. source: "./media/characters/gale/front.svg"
  4960. }
  4961. },
  4962. frontAlt1: {
  4963. height: math.unit(2, "meters"),
  4964. weight: math.unit(76, "kg"),
  4965. name: "Front (Alt 1)",
  4966. image: {
  4967. source: "./media/characters/gale/front-alt-1.svg"
  4968. }
  4969. },
  4970. frontAlt2: {
  4971. height: math.unit(2, "meters"),
  4972. weight: math.unit(76, "kg"),
  4973. name: "Front (Alt 2)",
  4974. image: {
  4975. source: "./media/characters/gale/front-alt-2.svg"
  4976. }
  4977. },
  4978. },
  4979. [
  4980. {
  4981. name: "Normal",
  4982. height: math.unit(7, "feet")
  4983. },
  4984. {
  4985. name: "Macro",
  4986. height: math.unit(150, "feet"),
  4987. default: true
  4988. },
  4989. {
  4990. name: "Macro+",
  4991. height: math.unit(300, "feet")
  4992. },
  4993. ]
  4994. ))
  4995. characterMakers.push(() => makeCharacter(
  4996. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4997. {
  4998. front: {
  4999. height: math.unit(5 + 10/12, "feet"),
  5000. weight: math.unit(67, "kg"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/draylen/front.svg",
  5004. extra: 832/777,
  5005. bottom: 85/917
  5006. }
  5007. }
  5008. },
  5009. [
  5010. {
  5011. name: "Normal",
  5012. height: math.unit(5 + 10/12, "feet")
  5013. },
  5014. {
  5015. name: "Macro",
  5016. height: math.unit(150, "feet"),
  5017. default: true
  5018. }
  5019. ]
  5020. ))
  5021. characterMakers.push(() => makeCharacter(
  5022. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5023. {
  5024. front: {
  5025. height: math.unit(7 + 9 / 12, "feet"),
  5026. weight: math.unit(379, "lbs"),
  5027. name: "Front",
  5028. image: {
  5029. source: "./media/characters/chez/front.svg"
  5030. }
  5031. },
  5032. side: {
  5033. height: math.unit(7 + 9 / 12, "feet"),
  5034. weight: math.unit(379, "lbs"),
  5035. name: "Side",
  5036. image: {
  5037. source: "./media/characters/chez/side.svg"
  5038. }
  5039. }
  5040. },
  5041. [
  5042. {
  5043. name: "Normal",
  5044. height: math.unit(7 + 9 / 12, "feet"),
  5045. default: true
  5046. },
  5047. {
  5048. name: "God King",
  5049. height: math.unit(9750000, "meters")
  5050. }
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5055. {
  5056. front: {
  5057. height: math.unit(6, "feet"),
  5058. weight: math.unit(275, "lbs"),
  5059. name: "Front",
  5060. image: {
  5061. source: "./media/characters/kaylum/front.svg",
  5062. bottom: 0.01,
  5063. extra: 1166 / 1031
  5064. }
  5065. },
  5066. frontWingless: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(275, "lbs"),
  5069. name: "Front (Wingless)",
  5070. image: {
  5071. source: "./media/characters/kaylum/front-wingless.svg",
  5072. bottom: 0.01,
  5073. extra: 1117 / 1031
  5074. }
  5075. }
  5076. },
  5077. [
  5078. {
  5079. name: "Normal",
  5080. height: math.unit(3.05, "meters")
  5081. },
  5082. {
  5083. name: "Master",
  5084. height: math.unit(5.5, "meters")
  5085. },
  5086. {
  5087. name: "Rampage",
  5088. height: math.unit(19, "meters")
  5089. },
  5090. {
  5091. name: "Macro Lite",
  5092. height: math.unit(37, "meters")
  5093. },
  5094. {
  5095. name: "Hyper Predator",
  5096. height: math.unit(61, "meters")
  5097. },
  5098. {
  5099. name: "Macro",
  5100. height: math.unit(138, "meters"),
  5101. default: true
  5102. }
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(5 + 5 / 12, "feet"),
  5110. weight: math.unit(120, "lbs"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/geta/front.svg",
  5114. extra: 1003/933,
  5115. bottom: 21/1024
  5116. }
  5117. },
  5118. paw: {
  5119. height: math.unit(0.35, "feet"),
  5120. name: "Paw",
  5121. image: {
  5122. source: "./media/characters/geta/paw.svg"
  5123. }
  5124. },
  5125. },
  5126. [
  5127. {
  5128. name: "Micro",
  5129. height: math.unit(3, "inches"),
  5130. default: true
  5131. },
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(5 + 5 / 12, "feet")
  5135. }
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5140. {
  5141. front: {
  5142. height: math.unit(6, "feet"),
  5143. weight: math.unit(300, "lbs"),
  5144. name: "Front",
  5145. image: {
  5146. source: "./media/characters/tyrnn/front.svg"
  5147. }
  5148. }
  5149. },
  5150. [
  5151. {
  5152. name: "Main Height",
  5153. height: math.unit(355, "feet"),
  5154. default: true
  5155. },
  5156. {
  5157. name: "Fave. Height",
  5158. height: math.unit(2400, "feet")
  5159. }
  5160. ]
  5161. ))
  5162. characterMakers.push(() => makeCharacter(
  5163. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5164. {
  5165. front: {
  5166. height: math.unit(6, "feet"),
  5167. weight: math.unit(300, "lbs"),
  5168. name: "Front",
  5169. image: {
  5170. source: "./media/characters/appledectomy/front.svg"
  5171. }
  5172. }
  5173. },
  5174. [
  5175. {
  5176. name: "Macro",
  5177. height: math.unit(2500, "feet")
  5178. },
  5179. {
  5180. name: "Megamacro",
  5181. height: math.unit(50, "miles"),
  5182. default: true
  5183. },
  5184. {
  5185. name: "Gigamacro",
  5186. height: math.unit(5000, "miles")
  5187. },
  5188. {
  5189. name: "Teramacro",
  5190. height: math.unit(250000, "miles")
  5191. },
  5192. ]
  5193. ))
  5194. characterMakers.push(() => makeCharacter(
  5195. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5196. {
  5197. front: {
  5198. height: math.unit(6, "feet"),
  5199. weight: math.unit(200, "lbs"),
  5200. name: "Front",
  5201. image: {
  5202. source: "./media/characters/vulpes/front.svg",
  5203. extra: 573 / 543,
  5204. bottom: 0.033
  5205. }
  5206. },
  5207. side: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(200, "lbs"),
  5210. name: "Side",
  5211. image: {
  5212. source: "./media/characters/vulpes/side.svg",
  5213. extra: 577 / 549,
  5214. bottom: 11 / 588
  5215. }
  5216. },
  5217. back: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(200, "lbs"),
  5220. name: "Back",
  5221. image: {
  5222. source: "./media/characters/vulpes/back.svg",
  5223. extra: 573 / 549,
  5224. bottom: 20 / 593
  5225. }
  5226. },
  5227. feet: {
  5228. height: math.unit(1.276, "feet"),
  5229. name: "Feet",
  5230. image: {
  5231. source: "./media/characters/vulpes/feet.svg"
  5232. }
  5233. },
  5234. maw: {
  5235. height: math.unit(1.18, "feet"),
  5236. name: "Maw",
  5237. image: {
  5238. source: "./media/characters/vulpes/maw.svg"
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Micro",
  5245. height: math.unit(2, "inches")
  5246. },
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(6.3, "feet")
  5250. },
  5251. {
  5252. name: "Macro",
  5253. height: math.unit(850, "feet")
  5254. },
  5255. {
  5256. name: "Megamacro",
  5257. height: math.unit(7500, "feet"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Gigamacro",
  5262. height: math.unit(570000, "miles")
  5263. }
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5268. {
  5269. front: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(210, "lbs"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/rain-fallen/front.svg"
  5275. }
  5276. },
  5277. side: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(210, "lbs"),
  5280. name: "Side",
  5281. image: {
  5282. source: "./media/characters/rain-fallen/side.svg"
  5283. }
  5284. },
  5285. back: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(210, "lbs"),
  5288. name: "Back",
  5289. image: {
  5290. source: "./media/characters/rain-fallen/back.svg"
  5291. }
  5292. },
  5293. feral: {
  5294. height: math.unit(9, "feet"),
  5295. weight: math.unit(700, "lbs"),
  5296. name: "Feral",
  5297. image: {
  5298. source: "./media/characters/rain-fallen/feral.svg"
  5299. }
  5300. },
  5301. },
  5302. [
  5303. {
  5304. name: "Meddling with Mortals",
  5305. height: math.unit(8 + 8/12, "feet")
  5306. },
  5307. {
  5308. name: "Normal",
  5309. height: math.unit(5, "meter")
  5310. },
  5311. {
  5312. name: "Macro",
  5313. height: math.unit(150, "meter"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Megamacro",
  5318. height: math.unit(278e6, "meter")
  5319. },
  5320. {
  5321. name: "Gigamacro",
  5322. height: math.unit(2e9, "meter")
  5323. },
  5324. {
  5325. name: "Teramacro",
  5326. height: math.unit(8e12, "meter")
  5327. },
  5328. {
  5329. name: "Devourer",
  5330. height: math.unit(14, "zettameters")
  5331. },
  5332. {
  5333. name: "Scarlet King",
  5334. height: math.unit(18, "yottameters")
  5335. },
  5336. {
  5337. name: "Void",
  5338. height: math.unit(1e88, "yottameters")
  5339. }
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5344. {
  5345. standing: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(180, "lbs"),
  5348. name: "Standing",
  5349. image: {
  5350. source: "./media/characters/zaakira/standing.svg",
  5351. extra: 1599/1504,
  5352. bottom: 39/1638
  5353. }
  5354. },
  5355. laying: {
  5356. height: math.unit(3.3, "feet"),
  5357. weight: math.unit(180, "lbs"),
  5358. name: "Laying",
  5359. image: {
  5360. source: "./media/characters/zaakira/laying.svg"
  5361. }
  5362. },
  5363. },
  5364. [
  5365. {
  5366. name: "Normal",
  5367. height: math.unit(12, "feet")
  5368. },
  5369. {
  5370. name: "Macro",
  5371. height: math.unit(279, "feet"),
  5372. default: true
  5373. }
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5378. {
  5379. femSfw: {
  5380. height: math.unit(8, "feet"),
  5381. weight: math.unit(350, "lb"),
  5382. name: "Fem",
  5383. image: {
  5384. source: "./media/characters/sigvald/fem-sfw.svg",
  5385. extra: 182 / 164,
  5386. bottom: 8.7 / 190.5
  5387. }
  5388. },
  5389. femNsfw: {
  5390. height: math.unit(8, "feet"),
  5391. weight: math.unit(350, "lb"),
  5392. name: "Fem (NSFW)",
  5393. image: {
  5394. source: "./media/characters/sigvald/fem-nsfw.svg",
  5395. extra: 182 / 164,
  5396. bottom: 8.7 / 190.5
  5397. }
  5398. },
  5399. maleNsfw: {
  5400. height: math.unit(8, "feet"),
  5401. weight: math.unit(350, "lb"),
  5402. name: "Male (NSFW)",
  5403. image: {
  5404. source: "./media/characters/sigvald/male-nsfw.svg",
  5405. extra: 182 / 164,
  5406. bottom: 8.7 / 190.5
  5407. }
  5408. },
  5409. hermNsfw: {
  5410. height: math.unit(8, "feet"),
  5411. weight: math.unit(350, "lb"),
  5412. name: "Herm (NSFW)",
  5413. image: {
  5414. source: "./media/characters/sigvald/herm-nsfw.svg",
  5415. extra: 182 / 164,
  5416. bottom: 8.7 / 190.5
  5417. }
  5418. },
  5419. dick: {
  5420. height: math.unit(2.36, "feet"),
  5421. name: "Dick",
  5422. image: {
  5423. source: "./media/characters/sigvald/dick.svg"
  5424. }
  5425. },
  5426. eye: {
  5427. height: math.unit(0.31, "feet"),
  5428. name: "Eye",
  5429. image: {
  5430. source: "./media/characters/sigvald/eye.svg"
  5431. }
  5432. },
  5433. mouth: {
  5434. height: math.unit(0.92, "feet"),
  5435. name: "Mouth",
  5436. image: {
  5437. source: "./media/characters/sigvald/mouth.svg"
  5438. }
  5439. },
  5440. paws: {
  5441. height: math.unit(2.2, "feet"),
  5442. name: "Paws",
  5443. image: {
  5444. source: "./media/characters/sigvald/paws.svg"
  5445. }
  5446. }
  5447. },
  5448. [
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(8, "feet")
  5452. },
  5453. {
  5454. name: "Large",
  5455. height: math.unit(12, "feet")
  5456. },
  5457. {
  5458. name: "Larger",
  5459. height: math.unit(20, "feet")
  5460. },
  5461. {
  5462. name: "Macro",
  5463. height: math.unit(150, "feet")
  5464. },
  5465. {
  5466. name: "Macro+",
  5467. height: math.unit(200, "feet"),
  5468. default: true
  5469. },
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5474. {
  5475. side: {
  5476. height: math.unit(12, "feet"),
  5477. weight: math.unit(2000, "kg"),
  5478. name: "Side",
  5479. image: {
  5480. source: "./media/characters/scott/side.svg",
  5481. extra: 754 / 724,
  5482. bottom: 0.069
  5483. }
  5484. },
  5485. upright: {
  5486. height: math.unit(12, "feet"),
  5487. weight: math.unit(2000, "kg"),
  5488. name: "Upright",
  5489. image: {
  5490. source: "./media/characters/scott/upright.svg",
  5491. extra: 3881 / 3722,
  5492. bottom: 0.05
  5493. }
  5494. },
  5495. },
  5496. [
  5497. {
  5498. name: "Normal",
  5499. height: math.unit(12, "feet"),
  5500. default: true
  5501. },
  5502. ]
  5503. ))
  5504. characterMakers.push(() => makeCharacter(
  5505. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5506. {
  5507. side: {
  5508. height: math.unit(8, "meters"),
  5509. weight: math.unit(84755, "lbs"),
  5510. name: "Side",
  5511. image: {
  5512. source: "./media/characters/tobias/side.svg",
  5513. extra: 1474 / 1096,
  5514. bottom: 38.9 / 1513.1235
  5515. }
  5516. },
  5517. },
  5518. [
  5519. {
  5520. name: "Normal",
  5521. height: math.unit(8, "meters"),
  5522. default: true
  5523. },
  5524. ]
  5525. ))
  5526. characterMakers.push(() => makeCharacter(
  5527. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5528. {
  5529. front: {
  5530. height: math.unit(5.5, "feet"),
  5531. weight: math.unit(400, "lbs"),
  5532. name: "Front",
  5533. image: {
  5534. source: "./media/characters/kieran/front.svg",
  5535. extra: 2694 / 2364,
  5536. bottom: 217 / 2908
  5537. }
  5538. },
  5539. side: {
  5540. height: math.unit(5.5, "feet"),
  5541. weight: math.unit(400, "lbs"),
  5542. name: "Side",
  5543. image: {
  5544. source: "./media/characters/kieran/side.svg",
  5545. extra: 875 / 777,
  5546. bottom: 84.6 / 959
  5547. }
  5548. },
  5549. },
  5550. [
  5551. {
  5552. name: "Normal",
  5553. height: math.unit(5.5, "feet"),
  5554. default: true
  5555. },
  5556. ]
  5557. ))
  5558. characterMakers.push(() => makeCharacter(
  5559. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5560. {
  5561. side: {
  5562. height: math.unit(2, "meters"),
  5563. weight: math.unit(70, "kg"),
  5564. name: "Side",
  5565. image: {
  5566. source: "./media/characters/sanya/side.svg",
  5567. bottom: 0.02,
  5568. extra: 1.02
  5569. }
  5570. },
  5571. },
  5572. [
  5573. {
  5574. name: "Small",
  5575. height: math.unit(2, "meters")
  5576. },
  5577. {
  5578. name: "Normal",
  5579. height: math.unit(3, "meters")
  5580. },
  5581. {
  5582. name: "Macro",
  5583. height: math.unit(16, "meters"),
  5584. default: true
  5585. },
  5586. ]
  5587. ))
  5588. characterMakers.push(() => makeCharacter(
  5589. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5590. {
  5591. front: {
  5592. height: math.unit(2, "meters"),
  5593. weight: math.unit(120, "kg"),
  5594. name: "Front",
  5595. image: {
  5596. source: "./media/characters/miranda/front.svg",
  5597. extra: 195 / 185,
  5598. bottom: 10.9 / 206.5
  5599. }
  5600. },
  5601. back: {
  5602. height: math.unit(2, "meters"),
  5603. weight: math.unit(120, "kg"),
  5604. name: "Back",
  5605. image: {
  5606. source: "./media/characters/miranda/back.svg",
  5607. extra: 201 / 193,
  5608. bottom: 2.3 / 203.7
  5609. }
  5610. },
  5611. },
  5612. [
  5613. {
  5614. name: "Normal",
  5615. height: math.unit(10, "feet"),
  5616. default: true
  5617. }
  5618. ]
  5619. ))
  5620. characterMakers.push(() => makeCharacter(
  5621. { name: "James", species: ["deer"], tags: ["anthro"] },
  5622. {
  5623. side: {
  5624. height: math.unit(2, "meters"),
  5625. weight: math.unit(100, "kg"),
  5626. name: "Front",
  5627. image: {
  5628. source: "./media/characters/james/front.svg",
  5629. extra: 10 / 8.5
  5630. }
  5631. },
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(8.5, "feet"),
  5637. default: true
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5643. {
  5644. side: {
  5645. height: math.unit(9.5, "feet"),
  5646. weight: math.unit(2500, "lbs"),
  5647. name: "Side",
  5648. image: {
  5649. source: "./media/characters/heather/side.svg"
  5650. }
  5651. },
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(9.5, "feet"),
  5657. default: true
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5663. {
  5664. side: {
  5665. height: math.unit(6.5, "feet"),
  5666. weight: math.unit(400, "lbs"),
  5667. name: "Side",
  5668. image: {
  5669. source: "./media/characters/lukas/side.svg",
  5670. extra: 7.25 / 6.5
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Normal",
  5677. height: math.unit(6.5, "feet"),
  5678. default: true
  5679. }
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5684. {
  5685. side: {
  5686. height: math.unit(5, "feet"),
  5687. weight: math.unit(3000, "lbs"),
  5688. name: "Side",
  5689. image: {
  5690. source: "./media/characters/louise/side.svg"
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(5, "feet"),
  5698. default: true
  5699. }
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5704. {
  5705. side: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(150, "lbs"),
  5708. name: "Side",
  5709. image: {
  5710. source: "./media/characters/ramona/side.svg",
  5711. extra: 871/854,
  5712. bottom: 41/912
  5713. }
  5714. },
  5715. },
  5716. [
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(6 + 4/12, "feet")
  5720. },
  5721. {
  5722. name: "Minimacro",
  5723. height: math.unit(5.3, "meters"),
  5724. default: true
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(20, "stories")
  5729. },
  5730. {
  5731. name: "Macro+",
  5732. height: math.unit(50, "stories")
  5733. },
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5738. {
  5739. standing: {
  5740. height: math.unit(5.75, "feet"),
  5741. weight: math.unit(160, "lbs"),
  5742. name: "Standing",
  5743. image: {
  5744. source: "./media/characters/deerpuff/standing.svg",
  5745. extra: 682 / 624
  5746. }
  5747. },
  5748. sitting: {
  5749. height: math.unit(5.75 / 1.79, "feet"),
  5750. weight: math.unit(160, "lbs"),
  5751. name: "Sitting",
  5752. image: {
  5753. source: "./media/characters/deerpuff/sitting.svg",
  5754. bottom: 44 / 400,
  5755. extra: 1
  5756. }
  5757. },
  5758. taurLaying: {
  5759. height: math.unit(6, "feet"),
  5760. weight: math.unit(400, "lbs"),
  5761. name: "Taur (Laying)",
  5762. image: {
  5763. source: "./media/characters/deerpuff/taur-laying.svg"
  5764. }
  5765. },
  5766. },
  5767. [
  5768. {
  5769. name: "Puffball",
  5770. height: math.unit(6, "inches")
  5771. },
  5772. {
  5773. name: "Normalpuff",
  5774. height: math.unit(5.75, "feet")
  5775. },
  5776. {
  5777. name: "Macropuff",
  5778. height: math.unit(1500, "feet"),
  5779. default: true
  5780. },
  5781. {
  5782. name: "Megapuff",
  5783. height: math.unit(500, "miles")
  5784. },
  5785. {
  5786. name: "Gigapuff",
  5787. height: math.unit(250000, "miles")
  5788. },
  5789. {
  5790. name: "Omegapuff",
  5791. height: math.unit(1000, "lightyears")
  5792. },
  5793. ]
  5794. ))
  5795. characterMakers.push(() => makeCharacter(
  5796. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5797. {
  5798. stomping: {
  5799. height: math.unit(6, "feet"),
  5800. weight: math.unit(170, "lbs"),
  5801. name: "Stomping",
  5802. image: {
  5803. source: "./media/characters/vivian/stomping.svg"
  5804. }
  5805. },
  5806. sitting: {
  5807. height: math.unit(6 / 1.75, "feet"),
  5808. weight: math.unit(170, "lbs"),
  5809. name: "Sitting",
  5810. image: {
  5811. source: "./media/characters/vivian/sitting.svg",
  5812. bottom: 1 / 6.4,
  5813. extra: 1,
  5814. }
  5815. },
  5816. },
  5817. [
  5818. {
  5819. name: "Normal",
  5820. height: math.unit(7, "feet"),
  5821. default: true
  5822. },
  5823. {
  5824. name: "Macro",
  5825. height: math.unit(10, "stories")
  5826. },
  5827. {
  5828. name: "Macro+",
  5829. height: math.unit(30, "stories")
  5830. },
  5831. {
  5832. name: "Megamacro",
  5833. height: math.unit(10, "miles")
  5834. },
  5835. {
  5836. name: "Megamacro+",
  5837. height: math.unit(2750000, "meters")
  5838. },
  5839. ]
  5840. ))
  5841. characterMakers.push(() => makeCharacter(
  5842. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5843. {
  5844. front: {
  5845. height: math.unit(6, "feet"),
  5846. weight: math.unit(160, "lbs"),
  5847. name: "Front",
  5848. image: {
  5849. source: "./media/characters/prince/front.svg",
  5850. extra: 3400 / 3000
  5851. }
  5852. },
  5853. jumping: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(160, "lbs"),
  5856. name: "Jumping",
  5857. image: {
  5858. source: "./media/characters/prince/jump.svg",
  5859. extra: 2555 / 2134
  5860. }
  5861. },
  5862. },
  5863. [
  5864. {
  5865. name: "Normal",
  5866. height: math.unit(7.75, "feet"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Not cute",
  5871. height: math.unit(17, "feet")
  5872. },
  5873. {
  5874. name: "I said NOT",
  5875. height: math.unit(91, "feet")
  5876. },
  5877. {
  5878. name: "Please stop",
  5879. height: math.unit(560, "feet")
  5880. },
  5881. {
  5882. name: "What have you done",
  5883. height: math.unit(2200, "feet")
  5884. },
  5885. {
  5886. name: "Deer God",
  5887. height: math.unit(3.6, "miles")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5893. {
  5894. standing: {
  5895. height: math.unit(6, "feet"),
  5896. weight: math.unit(300, "lbs"),
  5897. name: "Standing",
  5898. image: {
  5899. source: "./media/characters/psymon/standing.svg",
  5900. extra: 1888 / 1810,
  5901. bottom: 0.05
  5902. }
  5903. },
  5904. slithering: {
  5905. height: math.unit(6, "feet"),
  5906. weight: math.unit(300, "lbs"),
  5907. name: "Slithering",
  5908. image: {
  5909. source: "./media/characters/psymon/slithering.svg",
  5910. extra: 1330 / 1224
  5911. }
  5912. },
  5913. slitheringAlt: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(300, "lbs"),
  5916. name: "Slithering (Alt)",
  5917. image: {
  5918. source: "./media/characters/psymon/slithering-alt.svg",
  5919. extra: 1330 / 1224
  5920. }
  5921. },
  5922. },
  5923. [
  5924. {
  5925. name: "Normal",
  5926. height: math.unit(11.25, "feet"),
  5927. default: true
  5928. },
  5929. {
  5930. name: "Large",
  5931. height: math.unit(27, "feet")
  5932. },
  5933. {
  5934. name: "Giant",
  5935. height: math.unit(87, "feet")
  5936. },
  5937. {
  5938. name: "Macro",
  5939. height: math.unit(365, "feet")
  5940. },
  5941. {
  5942. name: "Megamacro",
  5943. height: math.unit(3, "miles")
  5944. },
  5945. {
  5946. name: "World Serpent",
  5947. height: math.unit(8000, "miles")
  5948. },
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(180, "lbs"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/daimos/front.svg",
  5960. extra: 4160 / 3897,
  5961. bottom: 0.021
  5962. }
  5963. }
  5964. },
  5965. [
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(8, "feet"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Big Dog",
  5973. height: math.unit(22, "feet")
  5974. },
  5975. {
  5976. name: "Macro",
  5977. height: math.unit(127, "feet")
  5978. },
  5979. {
  5980. name: "Megamacro",
  5981. height: math.unit(3600, "feet")
  5982. },
  5983. ]
  5984. ))
  5985. characterMakers.push(() => makeCharacter(
  5986. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5987. {
  5988. side: {
  5989. height: math.unit(6, "feet"),
  5990. weight: math.unit(180, "lbs"),
  5991. name: "Side",
  5992. image: {
  5993. source: "./media/characters/blake/side.svg",
  5994. extra: 1212 / 1120,
  5995. bottom: 0.05
  5996. }
  5997. },
  5998. crouched: {
  5999. height: math.unit(6 * 0.57, "feet"),
  6000. weight: math.unit(180, "lbs"),
  6001. name: "Crouched",
  6002. image: {
  6003. source: "./media/characters/blake/crouched.svg",
  6004. extra: 840 / 587,
  6005. bottom: 0.04
  6006. }
  6007. },
  6008. bent: {
  6009. height: math.unit(6 * 0.75, "feet"),
  6010. weight: math.unit(180, "lbs"),
  6011. name: "Bent",
  6012. image: {
  6013. source: "./media/characters/blake/bent.svg",
  6014. extra: 592 / 544,
  6015. bottom: 0.035
  6016. }
  6017. },
  6018. },
  6019. [
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(8 + 1 / 6, "feet"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Big Backside",
  6027. height: math.unit(37, "feet")
  6028. },
  6029. {
  6030. name: "Subway Shredder",
  6031. height: math.unit(72, "feet")
  6032. },
  6033. {
  6034. name: "City Carver",
  6035. height: math.unit(1675, "feet")
  6036. },
  6037. {
  6038. name: "Tectonic Tweaker",
  6039. height: math.unit(2300, "miles")
  6040. },
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6045. {
  6046. front: {
  6047. height: math.unit(6, "feet"),
  6048. weight: math.unit(180, "lbs"),
  6049. name: "Front",
  6050. image: {
  6051. source: "./media/characters/guisetto/front.svg",
  6052. extra: 856 / 817,
  6053. bottom: 0.06
  6054. }
  6055. },
  6056. airborne: {
  6057. height: math.unit(6, "feet"),
  6058. weight: math.unit(180, "lbs"),
  6059. name: "Airborne",
  6060. image: {
  6061. source: "./media/characters/guisetto/airborne.svg",
  6062. extra: 584 / 525
  6063. }
  6064. },
  6065. },
  6066. [
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(10 + 11 / 12, "feet"),
  6070. default: true
  6071. },
  6072. {
  6073. name: "Large",
  6074. height: math.unit(35, "feet")
  6075. },
  6076. {
  6077. name: "Macro",
  6078. height: math.unit(475, "feet")
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(180, "lbs"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/luxor/front.svg",
  6091. extra: 2940 / 2152
  6092. }
  6093. },
  6094. back: {
  6095. height: math.unit(6, "feet"),
  6096. weight: math.unit(180, "lbs"),
  6097. name: "Back",
  6098. image: {
  6099. source: "./media/characters/luxor/back.svg",
  6100. extra: 1083 / 960
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(5 + 5 / 6, "feet"),
  6108. default: true
  6109. },
  6110. {
  6111. name: "Lamp",
  6112. height: math.unit(50, "feet")
  6113. },
  6114. {
  6115. name: "Lämp",
  6116. height: math.unit(300, "feet")
  6117. },
  6118. {
  6119. name: "The sun is a lamp",
  6120. height: math.unit(250000, "miles")
  6121. },
  6122. ]
  6123. ))
  6124. characterMakers.push(() => makeCharacter(
  6125. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6126. {
  6127. front: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(50, "lbs"),
  6130. name: "Front",
  6131. image: {
  6132. source: "./media/characters/huoyan/front.svg"
  6133. }
  6134. },
  6135. side: {
  6136. height: math.unit(6, "feet"),
  6137. weight: math.unit(180, "lbs"),
  6138. name: "Side",
  6139. image: {
  6140. source: "./media/characters/huoyan/side.svg"
  6141. }
  6142. },
  6143. },
  6144. [
  6145. {
  6146. name: "Chef",
  6147. height: math.unit(9, "feet")
  6148. },
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(65, "feet"),
  6152. default: true
  6153. },
  6154. {
  6155. name: "Macro",
  6156. height: math.unit(780, "feet")
  6157. },
  6158. {
  6159. name: "Flaming Mountain",
  6160. height: math.unit(4.8, "miles")
  6161. },
  6162. {
  6163. name: "Celestial",
  6164. height: math.unit(765000, "miles")
  6165. },
  6166. ]
  6167. ))
  6168. characterMakers.push(() => makeCharacter(
  6169. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6170. {
  6171. front: {
  6172. height: math.unit(5 + 3 / 4, "feet"),
  6173. weight: math.unit(120, "lbs"),
  6174. name: "Front",
  6175. image: {
  6176. source: "./media/characters/tails/front.svg"
  6177. }
  6178. }
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(5 + 3 / 4, "feet"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(4, "feet"),
  6193. weight: math.unit(50, "lbs"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/rainy/front.svg"
  6197. }
  6198. }
  6199. },
  6200. [
  6201. {
  6202. name: "Macro",
  6203. height: math.unit(800, "feet"),
  6204. default: true
  6205. }
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(6, "feet"),
  6213. weight: math.unit(150, "lbs"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/rainier/front.svg"
  6217. }
  6218. }
  6219. },
  6220. [
  6221. {
  6222. name: "Micro",
  6223. height: math.unit(2, "mm"),
  6224. default: true
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(8 + 4/12, "feet"),
  6233. weight: math.unit(450, "kilograms"),
  6234. volume: math.unit(5, "cups"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/andy-renard/front.svg",
  6238. extra: 1839/1726,
  6239. bottom: 134/1973
  6240. }
  6241. },
  6242. back: {
  6243. height: math.unit(8 + 4/12, "feet"),
  6244. weight: math.unit(450, "kilograms"),
  6245. volume: math.unit(5, "cups"),
  6246. name: "Back",
  6247. image: {
  6248. source: "./media/characters/andy-renard/back.svg",
  6249. extra: 1838/1710,
  6250. bottom: 105/1943
  6251. }
  6252. },
  6253. },
  6254. [
  6255. {
  6256. name: "Tall",
  6257. height: math.unit(8 + 4/12, "feet")
  6258. },
  6259. {
  6260. name: "Mini Macro",
  6261. height: math.unit(15, "feet"),
  6262. default: true
  6263. },
  6264. {
  6265. name: "Macro",
  6266. height: math.unit(100, "feet")
  6267. },
  6268. {
  6269. name: "Mega Macro",
  6270. height: math.unit(1000, "feet")
  6271. },
  6272. {
  6273. name: "Giga Macro",
  6274. height: math.unit(10, "miles")
  6275. },
  6276. {
  6277. name: "God Macro",
  6278. height: math.unit(1, "multiverse")
  6279. },
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6284. {
  6285. front: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(210, "lbs"),
  6288. name: "Front",
  6289. image: {
  6290. source: "./media/characters/cimmaron/front-sfw.svg",
  6291. extra: 701 / 676,
  6292. bottom: 0.046
  6293. }
  6294. },
  6295. back: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(210, "lbs"),
  6298. name: "Back",
  6299. image: {
  6300. source: "./media/characters/cimmaron/back-sfw.svg",
  6301. extra: 701 / 676,
  6302. bottom: 0.046
  6303. }
  6304. },
  6305. frontNsfw: {
  6306. height: math.unit(6, "feet"),
  6307. weight: math.unit(210, "lbs"),
  6308. name: "Front (NSFW)",
  6309. image: {
  6310. source: "./media/characters/cimmaron/front-nsfw.svg",
  6311. extra: 701 / 676,
  6312. bottom: 0.046
  6313. }
  6314. },
  6315. backNsfw: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(210, "lbs"),
  6318. name: "Back (NSFW)",
  6319. image: {
  6320. source: "./media/characters/cimmaron/back-nsfw.svg",
  6321. extra: 701 / 676,
  6322. bottom: 0.046
  6323. }
  6324. },
  6325. dick: {
  6326. height: math.unit(1.714, "feet"),
  6327. name: "Dick",
  6328. image: {
  6329. source: "./media/characters/cimmaron/dick.svg"
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(6, "feet"),
  6337. default: true
  6338. },
  6339. {
  6340. name: "Macro Mayor",
  6341. height: math.unit(350, "meters")
  6342. },
  6343. ]
  6344. ))
  6345. characterMakers.push(() => makeCharacter(
  6346. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6347. {
  6348. front: {
  6349. height: math.unit(6, "feet"),
  6350. weight: math.unit(200, "lbs"),
  6351. name: "Front",
  6352. image: {
  6353. source: "./media/characters/akari/front.svg",
  6354. extra: 962 / 901,
  6355. bottom: 0.04
  6356. }
  6357. }
  6358. },
  6359. [
  6360. {
  6361. name: "Micro",
  6362. height: math.unit(5, "inches"),
  6363. default: true
  6364. },
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(7, "feet")
  6368. },
  6369. ]
  6370. ))
  6371. characterMakers.push(() => makeCharacter(
  6372. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6373. {
  6374. front: {
  6375. height: math.unit(6, "feet"),
  6376. weight: math.unit(140, "lbs"),
  6377. name: "Front",
  6378. image: {
  6379. source: "./media/characters/cynosura/front.svg",
  6380. extra: 896 / 847
  6381. }
  6382. },
  6383. back: {
  6384. height: math.unit(6, "feet"),
  6385. weight: math.unit(140, "lbs"),
  6386. name: "Back",
  6387. image: {
  6388. source: "./media/characters/cynosura/back.svg",
  6389. extra: 1365 / 1250
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Micro",
  6396. height: math.unit(4, "inches")
  6397. },
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(5.75, "feet"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "Tall",
  6405. height: math.unit(10, "feet")
  6406. },
  6407. {
  6408. name: "Big",
  6409. height: math.unit(20, "feet")
  6410. },
  6411. {
  6412. name: "Macro",
  6413. height: math.unit(50, "feet")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(13 + 2/12, "feet"),
  6422. weight: math.unit(800, "kg"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/gin/front.svg",
  6426. extra: 1312/1191,
  6427. bottom: 45/1357
  6428. }
  6429. },
  6430. mouth: {
  6431. height: math.unit(2.39 * 1.8, "feet"),
  6432. name: "Mouth",
  6433. image: {
  6434. source: "./media/characters/gin/mouth.svg"
  6435. }
  6436. },
  6437. hand: {
  6438. height: math.unit(1.57 * 2.19, "feet"),
  6439. name: "Hand",
  6440. image: {
  6441. source: "./media/characters/gin/hand.svg"
  6442. }
  6443. },
  6444. foot: {
  6445. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6446. name: "Foot",
  6447. image: {
  6448. source: "./media/characters/gin/foot.svg"
  6449. }
  6450. },
  6451. sole: {
  6452. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6453. name: "Sole",
  6454. image: {
  6455. source: "./media/characters/gin/sole.svg"
  6456. }
  6457. },
  6458. },
  6459. [
  6460. {
  6461. name: "Very Small",
  6462. height: math.unit(13 + 2 / 12, "feet")
  6463. },
  6464. {
  6465. name: "Micro",
  6466. height: math.unit(600, "miles")
  6467. },
  6468. {
  6469. name: "Regular",
  6470. height: math.unit(20, "earths"),
  6471. default: true
  6472. },
  6473. {
  6474. name: "Macro",
  6475. height: math.unit(2.2, "solarradii")
  6476. },
  6477. {
  6478. name: "Teramacro",
  6479. height: math.unit(1.2, "galaxies")
  6480. },
  6481. {
  6482. name: "Omegamacro",
  6483. height: math.unit(200, "universes")
  6484. },
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6489. {
  6490. front: {
  6491. height: math.unit(6 + 1 / 6, "feet"),
  6492. weight: math.unit(178, "lbs"),
  6493. name: "Front",
  6494. image: {
  6495. source: "./media/characters/guy/front.svg"
  6496. }
  6497. }
  6498. },
  6499. [
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(6 + 1 / 6, "feet"),
  6503. default: true
  6504. },
  6505. {
  6506. name: "Large",
  6507. height: math.unit(25 + 7 / 12, "feet")
  6508. },
  6509. {
  6510. name: "Macro",
  6511. height: math.unit(60 + 9 / 12, "feet")
  6512. },
  6513. {
  6514. name: "Macro+",
  6515. height: math.unit(246, "feet")
  6516. },
  6517. {
  6518. name: "Macro++",
  6519. height: math.unit(878, "feet")
  6520. }
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6525. {
  6526. front: {
  6527. height: math.unit(9, "feet"),
  6528. weight: math.unit(800, "lbs"),
  6529. name: "Front",
  6530. image: {
  6531. source: "./media/characters/tiberius/front.svg",
  6532. extra: 2295 / 2071
  6533. }
  6534. },
  6535. back: {
  6536. height: math.unit(9, "feet"),
  6537. weight: math.unit(800, "lbs"),
  6538. name: "Back",
  6539. image: {
  6540. source: "./media/characters/tiberius/back.svg",
  6541. extra: 2373 / 2160
  6542. }
  6543. },
  6544. },
  6545. [
  6546. {
  6547. name: "Normal",
  6548. height: math.unit(9, "feet"),
  6549. default: true
  6550. }
  6551. ]
  6552. ))
  6553. characterMakers.push(() => makeCharacter(
  6554. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6555. {
  6556. front: {
  6557. height: math.unit(6, "feet"),
  6558. weight: math.unit(600, "lbs"),
  6559. name: "Front",
  6560. image: {
  6561. source: "./media/characters/surgo/front.svg",
  6562. extra: 3591 / 2227
  6563. }
  6564. },
  6565. back: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(600, "lbs"),
  6568. name: "Back",
  6569. image: {
  6570. source: "./media/characters/surgo/back.svg",
  6571. extra: 3557 / 2228
  6572. }
  6573. },
  6574. laying: {
  6575. height: math.unit(6 * 0.85, "feet"),
  6576. weight: math.unit(600, "lbs"),
  6577. name: "Laying",
  6578. image: {
  6579. source: "./media/characters/surgo/laying.svg"
  6580. }
  6581. },
  6582. },
  6583. [
  6584. {
  6585. name: "Normal",
  6586. height: math.unit(6, "feet"),
  6587. default: true
  6588. }
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6593. {
  6594. side: {
  6595. height: math.unit(6, "feet"),
  6596. weight: math.unit(150, "lbs"),
  6597. name: "Side",
  6598. image: {
  6599. source: "./media/characters/cibus/side.svg",
  6600. extra: 800 / 400
  6601. }
  6602. },
  6603. },
  6604. [
  6605. {
  6606. name: "Normal",
  6607. height: math.unit(6, "feet"),
  6608. default: true
  6609. }
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6614. {
  6615. front: {
  6616. height: math.unit(6, "feet"),
  6617. weight: math.unit(240, "lbs"),
  6618. name: "Front",
  6619. image: {
  6620. source: "./media/characters/nibbles/front.svg"
  6621. }
  6622. },
  6623. side: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(240, "lbs"),
  6626. name: "Side",
  6627. image: {
  6628. source: "./media/characters/nibbles/side.svg"
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(9, "feet"),
  6636. default: true
  6637. }
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6642. {
  6643. side: {
  6644. height: math.unit(5 + 1 / 6, "feet"),
  6645. weight: math.unit(130, "lbs"),
  6646. name: "Side",
  6647. image: {
  6648. source: "./media/characters/rikky/side.svg",
  6649. extra: 851 / 801
  6650. }
  6651. },
  6652. },
  6653. [
  6654. {
  6655. name: "Normal",
  6656. height: math.unit(5 + 1 / 6, "feet")
  6657. },
  6658. {
  6659. name: "Macro",
  6660. height: math.unit(152, "feet"),
  6661. default: true
  6662. },
  6663. {
  6664. name: "Megamacro",
  6665. height: math.unit(7, "miles")
  6666. }
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6671. {
  6672. side: {
  6673. height: math.unit(370, "cm"),
  6674. weight: math.unit(350, "lbs"),
  6675. name: "Side",
  6676. image: {
  6677. source: "./media/characters/malfressa/side.svg"
  6678. }
  6679. },
  6680. walking: {
  6681. height: math.unit(370, "cm"),
  6682. weight: math.unit(350, "lbs"),
  6683. name: "Walking",
  6684. image: {
  6685. source: "./media/characters/malfressa/walking.svg"
  6686. }
  6687. },
  6688. feral: {
  6689. height: math.unit(2500, "cm"),
  6690. weight: math.unit(100000, "lbs"),
  6691. name: "Feral",
  6692. image: {
  6693. source: "./media/characters/malfressa/feral.svg",
  6694. extra: 2108 / 837,
  6695. bottom: 0.02
  6696. }
  6697. },
  6698. },
  6699. [
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(370, "cm")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(300, "meters"),
  6707. default: true
  6708. }
  6709. ]
  6710. ))
  6711. characterMakers.push(() => makeCharacter(
  6712. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6713. {
  6714. front: {
  6715. height: math.unit(6, "feet"),
  6716. weight: math.unit(60, "kg"),
  6717. name: "Front",
  6718. image: {
  6719. source: "./media/characters/jaro/front.svg",
  6720. extra: 845/817,
  6721. bottom: 45/890
  6722. }
  6723. },
  6724. back: {
  6725. height: math.unit(6, "feet"),
  6726. weight: math.unit(60, "kg"),
  6727. name: "Back",
  6728. image: {
  6729. source: "./media/characters/jaro/back.svg",
  6730. extra: 847/817,
  6731. bottom: 34/881
  6732. }
  6733. },
  6734. },
  6735. [
  6736. {
  6737. name: "Micro",
  6738. height: math.unit(7, "inches")
  6739. },
  6740. {
  6741. name: "Normal",
  6742. height: math.unit(5.5, "feet"),
  6743. default: true
  6744. },
  6745. {
  6746. name: "Minimacro",
  6747. height: math.unit(20, "feet")
  6748. },
  6749. {
  6750. name: "Macro",
  6751. height: math.unit(200, "meters")
  6752. }
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(195, "lb"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/rogue/front.svg"
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Macro",
  6770. height: math.unit(90, "feet"),
  6771. default: true
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6777. {
  6778. standing: {
  6779. height: math.unit(5 + 8 / 12, "feet"),
  6780. weight: math.unit(140, "lb"),
  6781. name: "Standing",
  6782. image: {
  6783. source: "./media/characters/piper/standing.svg",
  6784. extra: 1440/1284,
  6785. bottom: 66/1506
  6786. }
  6787. },
  6788. running: {
  6789. height: math.unit(5 + 8 / 12, "feet"),
  6790. weight: math.unit(140, "lb"),
  6791. name: "Running",
  6792. image: {
  6793. source: "./media/characters/piper/running.svg",
  6794. extra: 3948/3655,
  6795. bottom: 0/3948
  6796. }
  6797. },
  6798. sole: {
  6799. height: math.unit(0.81, "feet"),
  6800. weight: math.unit(2, "kg"),
  6801. name: "Sole",
  6802. image: {
  6803. source: "./media/characters/piper/sole.svg"
  6804. }
  6805. },
  6806. nipple: {
  6807. height: math.unit(0.25, "feet"),
  6808. weight: math.unit(1.5, "lb"),
  6809. name: "Nipple",
  6810. image: {
  6811. source: "./media/characters/piper/nipple.svg"
  6812. }
  6813. },
  6814. head: {
  6815. height: math.unit(1.1, "feet"),
  6816. name: "Head",
  6817. image: {
  6818. source: "./media/characters/piper/head.svg"
  6819. }
  6820. },
  6821. },
  6822. [
  6823. {
  6824. name: "Micro",
  6825. height: math.unit(2, "inches")
  6826. },
  6827. {
  6828. name: "Normal",
  6829. height: math.unit(5 + 8 / 12, "feet")
  6830. },
  6831. {
  6832. name: "Macro",
  6833. height: math.unit(250, "feet"),
  6834. default: true
  6835. },
  6836. {
  6837. name: "Megamacro",
  6838. height: math.unit(7, "miles")
  6839. },
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6844. {
  6845. front: {
  6846. height: math.unit(6, "feet"),
  6847. weight: math.unit(220, "lb"),
  6848. name: "Front",
  6849. image: {
  6850. source: "./media/characters/gemini/front.svg"
  6851. }
  6852. },
  6853. back: {
  6854. height: math.unit(6, "feet"),
  6855. weight: math.unit(220, "lb"),
  6856. name: "Back",
  6857. image: {
  6858. source: "./media/characters/gemini/back.svg"
  6859. }
  6860. },
  6861. kneeling: {
  6862. height: math.unit(6 / 1.5, "feet"),
  6863. weight: math.unit(220, "lb"),
  6864. name: "Kneeling",
  6865. image: {
  6866. source: "./media/characters/gemini/kneeling.svg",
  6867. bottom: 0.02
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(300, "meters"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Megamacro",
  6879. height: math.unit(6900, "meters")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6885. {
  6886. anthro: {
  6887. height: math.unit(2.35, "meters"),
  6888. weight: math.unit(73, "kg"),
  6889. name: "Anthro",
  6890. image: {
  6891. source: "./media/characters/alicia/anthro.svg",
  6892. extra: 2571 / 2385,
  6893. bottom: 75 / 2648
  6894. }
  6895. },
  6896. paw: {
  6897. height: math.unit(1.32, "feet"),
  6898. name: "Paw",
  6899. image: {
  6900. source: "./media/characters/alicia/paw.svg"
  6901. }
  6902. },
  6903. feral: {
  6904. height: math.unit(1.69, "meters"),
  6905. weight: math.unit(73, "kg"),
  6906. name: "Feral",
  6907. image: {
  6908. source: "./media/characters/alicia/feral.svg",
  6909. extra: 2123 / 1715,
  6910. bottom: 222 / 2349
  6911. }
  6912. },
  6913. },
  6914. [
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(2.35, "meters")
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(60, "meters"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Megamacro",
  6926. height: math.unit(10000, "kilometers")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(7, "feet"),
  6935. weight: math.unit(250, "lbs"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/archy/front.svg"
  6939. }
  6940. }
  6941. },
  6942. [
  6943. {
  6944. name: "Micro",
  6945. height: math.unit(1, "inch")
  6946. },
  6947. {
  6948. name: "Shorty",
  6949. height: math.unit(5, "feet")
  6950. },
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(7, "feet")
  6954. },
  6955. {
  6956. name: "Macro",
  6957. height: math.unit(600, "meters"),
  6958. default: true
  6959. },
  6960. {
  6961. name: "Megamacro",
  6962. height: math.unit(1, "mile")
  6963. },
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6968. {
  6969. front: {
  6970. height: math.unit(1.65, "meters"),
  6971. weight: math.unit(74, "kg"),
  6972. name: "Front",
  6973. image: {
  6974. source: "./media/characters/berri/front.svg",
  6975. extra: 857 / 837,
  6976. bottom: 18 / 877
  6977. }
  6978. },
  6979. bum: {
  6980. height: math.unit(1.46, "feet"),
  6981. name: "Bum",
  6982. image: {
  6983. source: "./media/characters/berri/bum.svg"
  6984. }
  6985. },
  6986. mouth: {
  6987. height: math.unit(0.44, "feet"),
  6988. name: "Mouth",
  6989. image: {
  6990. source: "./media/characters/berri/mouth.svg"
  6991. }
  6992. },
  6993. paw: {
  6994. height: math.unit(0.826, "feet"),
  6995. name: "Paw",
  6996. image: {
  6997. source: "./media/characters/berri/paw.svg"
  6998. }
  6999. },
  7000. },
  7001. [
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(1.65, "meters")
  7005. },
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(60, "m"),
  7009. default: true
  7010. },
  7011. {
  7012. name: "Megamacro",
  7013. height: math.unit(9.213, "km")
  7014. },
  7015. {
  7016. name: "Planet Eater",
  7017. height: math.unit(489, "megameters")
  7018. },
  7019. {
  7020. name: "Teramacro",
  7021. height: math.unit(2471635000000, "meters")
  7022. },
  7023. {
  7024. name: "Examacro",
  7025. height: math.unit(8.0624e+26, "meters")
  7026. }
  7027. ]
  7028. ))
  7029. characterMakers.push(() => makeCharacter(
  7030. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7031. {
  7032. front: {
  7033. height: math.unit(1.72, "meters"),
  7034. weight: math.unit(68, "kg"),
  7035. name: "Front",
  7036. image: {
  7037. source: "./media/characters/lexi/front.svg"
  7038. }
  7039. }
  7040. },
  7041. [
  7042. {
  7043. name: "Very Smol",
  7044. height: math.unit(10, "mm")
  7045. },
  7046. {
  7047. name: "Micro",
  7048. height: math.unit(6.8, "cm"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Normal",
  7053. height: math.unit(1.72, "m")
  7054. }
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7059. {
  7060. front: {
  7061. height: math.unit(1.69, "meters"),
  7062. weight: math.unit(68, "kg"),
  7063. name: "Front",
  7064. image: {
  7065. source: "./media/characters/martin/front.svg",
  7066. extra: 596 / 581
  7067. }
  7068. }
  7069. },
  7070. [
  7071. {
  7072. name: "Micro",
  7073. height: math.unit(6.85, "cm"),
  7074. default: true
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(1.69, "m")
  7079. }
  7080. ]
  7081. ))
  7082. characterMakers.push(() => makeCharacter(
  7083. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7084. {
  7085. front: {
  7086. height: math.unit(1.69, "meters"),
  7087. weight: math.unit(68, "kg"),
  7088. name: "Front",
  7089. image: {
  7090. source: "./media/characters/juno/front.svg"
  7091. }
  7092. }
  7093. },
  7094. [
  7095. {
  7096. name: "Micro",
  7097. height: math.unit(7, "cm")
  7098. },
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(1.89, "m")
  7102. },
  7103. {
  7104. name: "Macro",
  7105. height: math.unit(353, "meters"),
  7106. default: true
  7107. }
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(1.93, "meters"),
  7115. weight: math.unit(83, "kg"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/samantha/front.svg"
  7119. }
  7120. },
  7121. frontClothed: {
  7122. height: math.unit(1.93, "meters"),
  7123. weight: math.unit(83, "kg"),
  7124. name: "Front (Clothed)",
  7125. image: {
  7126. source: "./media/characters/samantha/front-clothed.svg"
  7127. }
  7128. },
  7129. back: {
  7130. height: math.unit(1.93, "meters"),
  7131. weight: math.unit(83, "kg"),
  7132. name: "Back",
  7133. image: {
  7134. source: "./media/characters/samantha/back.svg"
  7135. }
  7136. },
  7137. },
  7138. [
  7139. {
  7140. name: "Normal",
  7141. height: math.unit(1.93, "m")
  7142. },
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(74, "meters"),
  7146. default: true
  7147. },
  7148. {
  7149. name: "Macro+",
  7150. height: math.unit(223, "meters"),
  7151. },
  7152. {
  7153. name: "Megamacro",
  7154. height: math.unit(8381, "meters"),
  7155. },
  7156. {
  7157. name: "Megamacro+",
  7158. height: math.unit(12000, "kilometers")
  7159. },
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(1.92, "meters"),
  7167. weight: math.unit(80, "kg"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/dr-clay/front.svg"
  7171. }
  7172. },
  7173. frontClothed: {
  7174. height: math.unit(1.92, "meters"),
  7175. weight: math.unit(80, "kg"),
  7176. name: "Front (Clothed)",
  7177. image: {
  7178. source: "./media/characters/dr-clay/front-clothed.svg"
  7179. }
  7180. }
  7181. },
  7182. [
  7183. {
  7184. name: "Normal",
  7185. height: math.unit(1.92, "m")
  7186. },
  7187. {
  7188. name: "Macro",
  7189. height: math.unit(214, "meters"),
  7190. default: true
  7191. },
  7192. {
  7193. name: "Macro+",
  7194. height: math.unit(12.237, "meters"),
  7195. },
  7196. {
  7197. name: "Megamacro",
  7198. height: math.unit(557, "megameters"),
  7199. },
  7200. {
  7201. name: "Unimaginable",
  7202. height: math.unit(120e9, "lightyears")
  7203. },
  7204. ]
  7205. ))
  7206. characterMakers.push(() => makeCharacter(
  7207. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7208. {
  7209. front: {
  7210. height: math.unit(2, "meters"),
  7211. weight: math.unit(80, "kg"),
  7212. name: "Front",
  7213. image: {
  7214. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7215. }
  7216. }
  7217. },
  7218. [
  7219. {
  7220. name: "Teramacro",
  7221. height: math.unit(500000, "lightyears"),
  7222. default: true
  7223. },
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7228. {
  7229. crux: {
  7230. height: math.unit(2, "meters"),
  7231. weight: math.unit(150, "kg"),
  7232. name: "Crux",
  7233. image: {
  7234. source: "./media/characters/vemus/crux.svg",
  7235. extra: 1074/936,
  7236. bottom: 23/1097
  7237. }
  7238. },
  7239. skunkTanuki: {
  7240. height: math.unit(2, "meters"),
  7241. weight: math.unit(150, "kg"),
  7242. name: "Skunk-Tanuki",
  7243. image: {
  7244. source: "./media/characters/vemus/skunk-tanuki.svg",
  7245. extra: 926/893,
  7246. bottom: 20/946
  7247. }
  7248. },
  7249. },
  7250. [
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(4, "meters"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Big",
  7258. height: math.unit(8, "meters")
  7259. },
  7260. {
  7261. name: "Macro",
  7262. height: math.unit(100, "meters")
  7263. },
  7264. {
  7265. name: "Macro+",
  7266. height: math.unit(1500, "meters")
  7267. },
  7268. {
  7269. name: "Stellar",
  7270. height: math.unit(14e8, "meters")
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(2, "meters"),
  7279. weight: math.unit(70, "kg"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/beherit/front.svg",
  7283. extra: 1234/1109,
  7284. bottom: 55/1289
  7285. }
  7286. }
  7287. },
  7288. [
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(6, "feet")
  7292. },
  7293. {
  7294. name: "Lorg",
  7295. height: math.unit(25, "feet"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Lorger",
  7300. height: math.unit(75, "feet")
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(200, "meters")
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(2, "meters"),
  7313. weight: math.unit(150, "kg"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/everett/front.svg",
  7317. extra: 1017/866,
  7318. bottom: 86/1103
  7319. }
  7320. },
  7321. paw: {
  7322. height: math.unit(2 / 3.6, "meters"),
  7323. name: "Paw",
  7324. image: {
  7325. source: "./media/characters/everett/paw.svg"
  7326. }
  7327. },
  7328. },
  7329. [
  7330. {
  7331. name: "Normal",
  7332. height: math.unit(15, "feet"),
  7333. default: true
  7334. },
  7335. {
  7336. name: "Lorg",
  7337. height: math.unit(70, "feet"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Lorger",
  7342. height: math.unit(250, "feet")
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(500, "meters")
  7347. },
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(2, "meters"),
  7355. weight: math.unit(86, "kg"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/rose/front.svg",
  7359. extra: 1785/1636,
  7360. bottom: 30/1815
  7361. },
  7362. form: "liom",
  7363. default: true
  7364. },
  7365. frontSporty: {
  7366. height: math.unit(2, "meters"),
  7367. weight: math.unit(86, "kg"),
  7368. name: "Front (Sporty)",
  7369. image: {
  7370. source: "./media/characters/rose/front-sporty.svg",
  7371. extra: 350/335,
  7372. bottom: 10/360
  7373. },
  7374. form: "liom"
  7375. },
  7376. frontAlt: {
  7377. height: math.unit(1.6, "meters"),
  7378. weight: math.unit(86, "kg"),
  7379. name: "Front (Alt)",
  7380. image: {
  7381. source: "./media/characters/rose/front-alt.svg",
  7382. extra: 299/283,
  7383. bottom: 3/302
  7384. },
  7385. form: "liom"
  7386. },
  7387. plush: {
  7388. height: math.unit(2, "meters"),
  7389. weight: math.unit(86/3, "kg"),
  7390. name: "Plush",
  7391. image: {
  7392. source: "./media/characters/rose/plush.svg",
  7393. extra: 361/337,
  7394. bottom: 11/372
  7395. },
  7396. form: "plush",
  7397. default: true
  7398. },
  7399. faeStanding: {
  7400. height: math.unit(10, "cm"),
  7401. weight: math.unit(10, "grams"),
  7402. name: "Standing",
  7403. image: {
  7404. source: "./media/characters/rose/fae-standing.svg",
  7405. extra: 1189/1060,
  7406. bottom: 27/1216
  7407. },
  7408. form: "fae",
  7409. default: true
  7410. },
  7411. faeSitting: {
  7412. height: math.unit(5, "cm"),
  7413. weight: math.unit(10, "grams"),
  7414. name: "Sitting",
  7415. image: {
  7416. source: "./media/characters/rose/fae-sitting.svg",
  7417. extra: 737/577,
  7418. bottom: 356/1093
  7419. },
  7420. form: "fae"
  7421. },
  7422. faePaw: {
  7423. height: math.unit(1.35, "cm"),
  7424. name: "Paw",
  7425. image: {
  7426. source: "./media/characters/rose/fae-paw.svg"
  7427. },
  7428. form: "fae"
  7429. },
  7430. },
  7431. [
  7432. {
  7433. name: "True Micro",
  7434. height: math.unit(9, "cm"),
  7435. form: "liom"
  7436. },
  7437. {
  7438. name: "Micro",
  7439. height: math.unit(16, "cm"),
  7440. form: "liom"
  7441. },
  7442. {
  7443. name: "Normal",
  7444. height: math.unit(1.85, "meters"),
  7445. default: true,
  7446. form: "liom"
  7447. },
  7448. {
  7449. name: "Mini-Macro",
  7450. height: math.unit(5, "meters"),
  7451. form: "liom"
  7452. },
  7453. {
  7454. name: "Macro",
  7455. height: math.unit(15, "meters"),
  7456. form: "liom"
  7457. },
  7458. {
  7459. name: "True Macro",
  7460. height: math.unit(40, "meters"),
  7461. form: "liom"
  7462. },
  7463. {
  7464. name: "City Scale",
  7465. height: math.unit(1, "km"),
  7466. form: "liom"
  7467. },
  7468. {
  7469. name: "Plushie",
  7470. height: math.unit(9, "cm"),
  7471. form: "plush",
  7472. default: true
  7473. },
  7474. {
  7475. name: "Fae",
  7476. height: math.unit(10, "cm"),
  7477. form: "fae",
  7478. default: true
  7479. },
  7480. ],
  7481. {
  7482. "liom": {
  7483. name: "Liom"
  7484. },
  7485. "plush": {
  7486. name: "Plush"
  7487. },
  7488. "fae": {
  7489. name: "Fae Fox",
  7490. default: true
  7491. }
  7492. }
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7496. {
  7497. front: {
  7498. height: math.unit(2, "meters"),
  7499. weight: math.unit(350, "lbs"),
  7500. name: "Front",
  7501. image: {
  7502. source: "./media/characters/regal/front.svg"
  7503. }
  7504. },
  7505. back: {
  7506. height: math.unit(2, "meters"),
  7507. weight: math.unit(350, "lbs"),
  7508. name: "Back",
  7509. image: {
  7510. source: "./media/characters/regal/back.svg"
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Macro",
  7517. height: math.unit(350, "feet"),
  7518. default: true
  7519. }
  7520. ]
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7524. {
  7525. front: {
  7526. height: math.unit(4 + 11 / 12, "feet"),
  7527. weight: math.unit(100, "lbs"),
  7528. name: "Front",
  7529. image: {
  7530. source: "./media/characters/opal/front.svg"
  7531. }
  7532. },
  7533. frontAlt: {
  7534. height: math.unit(4 + 11 / 12, "feet"),
  7535. weight: math.unit(100, "lbs"),
  7536. name: "Front (Alt)",
  7537. image: {
  7538. source: "./media/characters/opal/front-alt.svg"
  7539. }
  7540. },
  7541. },
  7542. [
  7543. {
  7544. name: "Small",
  7545. height: math.unit(4 + 11 / 12, "feet")
  7546. },
  7547. {
  7548. name: "Normal",
  7549. height: math.unit(20, "feet"),
  7550. default: true
  7551. },
  7552. {
  7553. name: "Macro",
  7554. height: math.unit(120, "feet")
  7555. },
  7556. {
  7557. name: "Megamacro",
  7558. height: math.unit(80, "miles")
  7559. },
  7560. {
  7561. name: "True Size",
  7562. height: math.unit(100000, "lightyears")
  7563. },
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7568. {
  7569. front: {
  7570. height: math.unit(6, "feet"),
  7571. weight: math.unit(200, "lbs"),
  7572. name: "Front",
  7573. image: {
  7574. source: "./media/characters/vector-wuff/front.svg"
  7575. }
  7576. }
  7577. },
  7578. [
  7579. {
  7580. name: "Normal",
  7581. height: math.unit(2.8, "meters")
  7582. },
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(450, "meters"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Megamacro",
  7590. height: math.unit(15, "kilometers")
  7591. }
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(256, "lbs"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/dannik/front.svg"
  7603. }
  7604. }
  7605. },
  7606. [
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(69.57, "meters"),
  7610. default: true
  7611. },
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7616. {
  7617. front: {
  7618. height: math.unit(6, "feet"),
  7619. weight: math.unit(120, "lbs"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/azura-saharah/front.svg"
  7623. }
  7624. },
  7625. back: {
  7626. height: math.unit(6, "feet"),
  7627. weight: math.unit(120, "lbs"),
  7628. name: "Back",
  7629. image: {
  7630. source: "./media/characters/azura-saharah/back.svg"
  7631. }
  7632. },
  7633. },
  7634. [
  7635. {
  7636. name: "Macro",
  7637. height: math.unit(100, "feet"),
  7638. default: true
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7644. {
  7645. side: {
  7646. height: math.unit(5 + 4 / 12, "feet"),
  7647. weight: math.unit(163, "lbs"),
  7648. name: "Side",
  7649. image: {
  7650. source: "./media/characters/kennedy/side.svg"
  7651. }
  7652. }
  7653. },
  7654. [
  7655. {
  7656. name: "Standard Doggo",
  7657. height: math.unit(5 + 4 / 12, "feet")
  7658. },
  7659. {
  7660. name: "Big Doggo",
  7661. height: math.unit(25 + 3 / 12, "feet"),
  7662. default: true
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(5 + 5/12, "feet"),
  7671. weight: math.unit(100, "lbs"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/odios-de-lunar/front.svg",
  7675. extra: 1468/1323,
  7676. bottom: 22/1490
  7677. }
  7678. }
  7679. },
  7680. [
  7681. {
  7682. name: "Micro",
  7683. height: math.unit(3, "inches")
  7684. },
  7685. {
  7686. name: "Normal",
  7687. height: math.unit(5.5, "feet"),
  7688. default: true
  7689. },
  7690. {
  7691. name: "Macro",
  7692. height: math.unit(100, "feet")
  7693. },
  7694. ]
  7695. ))
  7696. characterMakers.push(() => makeCharacter(
  7697. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7698. {
  7699. back: {
  7700. height: math.unit(6, "feet"),
  7701. weight: math.unit(220, "lbs"),
  7702. name: "Back",
  7703. image: {
  7704. source: "./media/characters/mandake/back.svg"
  7705. }
  7706. }
  7707. },
  7708. [
  7709. {
  7710. name: "Normal",
  7711. height: math.unit(7, "feet"),
  7712. default: true
  7713. },
  7714. {
  7715. name: "Macro",
  7716. height: math.unit(78, "feet")
  7717. },
  7718. {
  7719. name: "Macro+",
  7720. height: math.unit(300, "meters")
  7721. },
  7722. {
  7723. name: "Macro++",
  7724. height: math.unit(2400, "feet")
  7725. },
  7726. {
  7727. name: "Megamacro",
  7728. height: math.unit(5167, "meters")
  7729. },
  7730. {
  7731. name: "Gigamacro",
  7732. height: math.unit(41769, "miles")
  7733. },
  7734. ]
  7735. ))
  7736. characterMakers.push(() => makeCharacter(
  7737. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7738. {
  7739. front: {
  7740. height: math.unit(6, "feet"),
  7741. weight: math.unit(120, "lbs"),
  7742. name: "Front",
  7743. image: {
  7744. source: "./media/characters/yozey/front.svg"
  7745. }
  7746. },
  7747. frontAlt: {
  7748. height: math.unit(6, "feet"),
  7749. weight: math.unit(120, "lbs"),
  7750. name: "Front (Alt)",
  7751. image: {
  7752. source: "./media/characters/yozey/front-alt.svg"
  7753. }
  7754. },
  7755. side: {
  7756. height: math.unit(6, "feet"),
  7757. weight: math.unit(120, "lbs"),
  7758. name: "Side",
  7759. image: {
  7760. source: "./media/characters/yozey/side.svg"
  7761. }
  7762. },
  7763. },
  7764. [
  7765. {
  7766. name: "Micro",
  7767. height: math.unit(3, "inches"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(6, "feet")
  7773. }
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(103, "lbs"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/valeska-voss/front.svg"
  7785. }
  7786. }
  7787. },
  7788. [
  7789. {
  7790. name: "Mini-Sized Sub",
  7791. height: math.unit(3.1, "inches")
  7792. },
  7793. {
  7794. name: "Mid-Sized Sub",
  7795. height: math.unit(6.2, "inches")
  7796. },
  7797. {
  7798. name: "Full-Sized Sub",
  7799. height: math.unit(9.3, "inches")
  7800. },
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(5 + 2 / 12, "foot"),
  7804. default: true
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(160, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/gene-zeta/front.svg",
  7817. extra: 3006 / 2826,
  7818. bottom: 182 / 3188
  7819. }
  7820. }
  7821. },
  7822. [
  7823. {
  7824. name: "Micro",
  7825. height: math.unit(6, "inches")
  7826. },
  7827. {
  7828. name: "Normal",
  7829. height: math.unit(5 + 11 / 12, "foot"),
  7830. default: true
  7831. },
  7832. {
  7833. name: "Macro",
  7834. height: math.unit(140, "feet")
  7835. },
  7836. {
  7837. name: "Supercharged",
  7838. height: math.unit(2500, "feet")
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(350, "lbs"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/razinox/front.svg",
  7851. extra: 1686 / 1548,
  7852. bottom: 28.2 / 1868
  7853. }
  7854. },
  7855. back: {
  7856. height: math.unit(6, "feet"),
  7857. weight: math.unit(350, "lbs"),
  7858. name: "Back",
  7859. image: {
  7860. source: "./media/characters/razinox/back.svg",
  7861. extra: 1660 / 1590,
  7862. bottom: 15 / 1665
  7863. }
  7864. },
  7865. },
  7866. [
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(10 + 8 / 12, "foot")
  7870. },
  7871. {
  7872. name: "Minimacro",
  7873. height: math.unit(15, "foot")
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(60, "foot"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Megamacro",
  7882. height: math.unit(5, "miles")
  7883. },
  7884. {
  7885. name: "Gigamacro",
  7886. height: math.unit(6000, "miles")
  7887. },
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(6, "feet"),
  7895. weight: math.unit(150, "lbs"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/cobalt/front.svg"
  7899. }
  7900. }
  7901. },
  7902. [
  7903. {
  7904. name: "Normal",
  7905. height: math.unit(8 + 1 / 12, "foot")
  7906. },
  7907. {
  7908. name: "Macro",
  7909. height: math.unit(111, "foot"),
  7910. default: true
  7911. },
  7912. {
  7913. name: "Supracosmic",
  7914. height: math.unit(1e42, "feet")
  7915. },
  7916. ]
  7917. ))
  7918. characterMakers.push(() => makeCharacter(
  7919. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7920. {
  7921. front: {
  7922. height: math.unit(5, "inches"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/amanda/front.svg",
  7926. extra: 926/791,
  7927. bottom: 38/964
  7928. }
  7929. },
  7930. back: {
  7931. height: math.unit(5, "inches"),
  7932. name: "Back",
  7933. image: {
  7934. source: "./media/characters/amanda/back.svg",
  7935. extra: 909/805,
  7936. bottom: 43/952
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Micro",
  7943. height: math.unit(5, "inches"),
  7944. default: true
  7945. },
  7946. ]
  7947. ))
  7948. characterMakers.push(() => makeCharacter(
  7949. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7950. {
  7951. front: {
  7952. height: math.unit(2.75, "meters"),
  7953. weight: math.unit(1200, "lb"),
  7954. name: "Front",
  7955. image: {
  7956. source: "./media/characters/teal/front.svg",
  7957. extra: 2463 / 2320,
  7958. bottom: 166 / 2629
  7959. }
  7960. },
  7961. back: {
  7962. height: math.unit(2.75, "meters"),
  7963. weight: math.unit(1200, "lb"),
  7964. name: "Back",
  7965. image: {
  7966. source: "./media/characters/teal/back.svg",
  7967. extra: 2580 / 2489,
  7968. bottom: 151 / 2731
  7969. }
  7970. },
  7971. sitting: {
  7972. height: math.unit(1.9, "meters"),
  7973. weight: math.unit(1200, "lb"),
  7974. name: "Sitting",
  7975. image: {
  7976. source: "./media/characters/teal/sitting.svg",
  7977. extra: 623 / 590,
  7978. bottom: 121 / 744
  7979. }
  7980. },
  7981. standing: {
  7982. height: math.unit(2.75, "meters"),
  7983. weight: math.unit(1200, "lb"),
  7984. name: "Standing",
  7985. image: {
  7986. source: "./media/characters/teal/standing.svg",
  7987. extra: 923 / 893,
  7988. bottom: 60 / 983
  7989. }
  7990. },
  7991. stretching: {
  7992. height: math.unit(3.65, "meters"),
  7993. weight: math.unit(1200, "lb"),
  7994. name: "Stretching",
  7995. image: {
  7996. source: "./media/characters/teal/stretching.svg",
  7997. extra: 1276 / 1244,
  7998. bottom: 0 / 1276
  7999. }
  8000. },
  8001. legged: {
  8002. height: math.unit(1.3, "meters"),
  8003. weight: math.unit(100, "lb"),
  8004. name: "Legged",
  8005. image: {
  8006. source: "./media/characters/teal/legged.svg",
  8007. extra: 462 / 437,
  8008. bottom: 24 / 486
  8009. }
  8010. },
  8011. naga: {
  8012. height: math.unit(5.4, "meters"),
  8013. weight: math.unit(4000, "lb"),
  8014. name: "Naga",
  8015. image: {
  8016. source: "./media/characters/teal/naga.svg",
  8017. extra: 1902 / 1858,
  8018. bottom: 0 / 1902
  8019. }
  8020. },
  8021. hand: {
  8022. height: math.unit(0.52, "meters"),
  8023. name: "Hand",
  8024. image: {
  8025. source: "./media/characters/teal/hand.svg"
  8026. }
  8027. },
  8028. maw: {
  8029. height: math.unit(0.43, "meters"),
  8030. name: "Maw",
  8031. image: {
  8032. source: "./media/characters/teal/maw.svg"
  8033. }
  8034. },
  8035. slit: {
  8036. height: math.unit(0.25, "meters"),
  8037. name: "Slit",
  8038. image: {
  8039. source: "./media/characters/teal/slit.svg"
  8040. }
  8041. },
  8042. },
  8043. [
  8044. {
  8045. name: "Normal",
  8046. height: math.unit(2.75, "meters"),
  8047. default: true
  8048. },
  8049. {
  8050. name: "Macro",
  8051. height: math.unit(300, "feet")
  8052. },
  8053. {
  8054. name: "Macro+",
  8055. height: math.unit(2000, "feet")
  8056. },
  8057. ]
  8058. ))
  8059. characterMakers.push(() => makeCharacter(
  8060. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8061. {
  8062. frontCat: {
  8063. height: math.unit(6, "feet"),
  8064. weight: math.unit(180, "lbs"),
  8065. name: "Front (Cat)",
  8066. image: {
  8067. source: "./media/characters/ravin-amulet/front-cat.svg"
  8068. }
  8069. },
  8070. frontCatAlt: {
  8071. height: math.unit(6, "feet"),
  8072. weight: math.unit(180, "lbs"),
  8073. name: "Front (Alt, Cat)",
  8074. image: {
  8075. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8076. }
  8077. },
  8078. frontWerewolf: {
  8079. height: math.unit(6 * 1.2, "feet"),
  8080. weight: math.unit(225, "lbs"),
  8081. name: "Front (Werewolf)",
  8082. image: {
  8083. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8084. }
  8085. },
  8086. backWerewolf: {
  8087. height: math.unit(6 * 1.2, "feet"),
  8088. weight: math.unit(225, "lbs"),
  8089. name: "Back (Werewolf)",
  8090. image: {
  8091. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8092. }
  8093. },
  8094. },
  8095. [
  8096. {
  8097. name: "Nano",
  8098. height: math.unit(1, "micrometer")
  8099. },
  8100. {
  8101. name: "Micro",
  8102. height: math.unit(1, "inch")
  8103. },
  8104. {
  8105. name: "Normal",
  8106. height: math.unit(6, "feet"),
  8107. default: true
  8108. },
  8109. {
  8110. name: "Macro",
  8111. height: math.unit(60, "feet")
  8112. }
  8113. ]
  8114. ))
  8115. characterMakers.push(() => makeCharacter(
  8116. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8117. {
  8118. front: {
  8119. height: math.unit(6, "feet"),
  8120. weight: math.unit(165, "lbs"),
  8121. name: "Front",
  8122. image: {
  8123. source: "./media/characters/fluoresce/front.svg"
  8124. }
  8125. }
  8126. },
  8127. [
  8128. {
  8129. name: "Micro",
  8130. height: math.unit(6, "cm")
  8131. },
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(5 + 7 / 12, "feet"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(56, "feet")
  8140. },
  8141. {
  8142. name: "Megamacro",
  8143. height: math.unit(1.9, "miles")
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(9 + 6 / 12, "feet"),
  8152. weight: math.unit(523, "lbs"),
  8153. name: "Side",
  8154. image: {
  8155. source: "./media/characters/aurora/side.svg"
  8156. }
  8157. }
  8158. },
  8159. [
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(9 + 6 / 12, "feet")
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(96, "feet"),
  8167. default: true
  8168. },
  8169. {
  8170. name: "Macro+",
  8171. height: math.unit(243, "feet")
  8172. },
  8173. ]
  8174. ))
  8175. characterMakers.push(() => makeCharacter(
  8176. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8177. {
  8178. front: {
  8179. height: math.unit(194, "cm"),
  8180. weight: math.unit(90, "kg"),
  8181. name: "Front",
  8182. image: {
  8183. source: "./media/characters/ranek/front.svg",
  8184. extra: 1862/1791,
  8185. bottom: 80/1942
  8186. }
  8187. },
  8188. back: {
  8189. height: math.unit(194, "cm"),
  8190. weight: math.unit(90, "kg"),
  8191. name: "Back",
  8192. image: {
  8193. source: "./media/characters/ranek/back.svg",
  8194. extra: 1853/1787,
  8195. bottom: 74/1927
  8196. }
  8197. },
  8198. feral: {
  8199. height: math.unit(30, "cm"),
  8200. weight: math.unit(1.6, "lbs"),
  8201. name: "Feral",
  8202. image: {
  8203. source: "./media/characters/ranek/feral.svg",
  8204. extra: 990/631,
  8205. bottom: 29/1019
  8206. }
  8207. },
  8208. },
  8209. [
  8210. {
  8211. name: "Normal",
  8212. height: math.unit(194, "cm"),
  8213. default: true
  8214. },
  8215. {
  8216. name: "Macro",
  8217. height: math.unit(100, "meters")
  8218. },
  8219. ]
  8220. ))
  8221. characterMakers.push(() => makeCharacter(
  8222. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8223. {
  8224. front: {
  8225. height: math.unit(5 + 6 / 12, "feet"),
  8226. weight: math.unit(153, "lbs"),
  8227. name: "Front",
  8228. image: {
  8229. source: "./media/characters/andrew-cooper/front.svg"
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Nano",
  8236. height: math.unit(1, "mm")
  8237. },
  8238. {
  8239. name: "Micro",
  8240. height: math.unit(2, "inches")
  8241. },
  8242. {
  8243. name: "Normal",
  8244. height: math.unit(5 + 6 / 12, "feet"),
  8245. default: true
  8246. }
  8247. ]
  8248. ))
  8249. characterMakers.push(() => makeCharacter(
  8250. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8251. {
  8252. front: {
  8253. height: math.unit(6, "feet"),
  8254. weight: math.unit(180, "lbs"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/akane-sato/front.svg",
  8258. extra: 1219 / 1140
  8259. }
  8260. },
  8261. back: {
  8262. height: math.unit(6, "feet"),
  8263. weight: math.unit(180, "lbs"),
  8264. name: "Back",
  8265. image: {
  8266. source: "./media/characters/akane-sato/back.svg",
  8267. extra: 1219 / 1170
  8268. }
  8269. },
  8270. },
  8271. [
  8272. {
  8273. name: "Normal",
  8274. height: math.unit(2.5, "meters")
  8275. },
  8276. {
  8277. name: "Macro",
  8278. height: math.unit(250, "meters"),
  8279. default: true
  8280. },
  8281. {
  8282. name: "Megamacro",
  8283. height: math.unit(25, "km")
  8284. },
  8285. ]
  8286. ))
  8287. characterMakers.push(() => makeCharacter(
  8288. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8289. {
  8290. front: {
  8291. height: math.unit(6, "feet"),
  8292. weight: math.unit(65, "kg"),
  8293. name: "Front",
  8294. image: {
  8295. source: "./media/characters/rook/front.svg",
  8296. extra: 960 / 950
  8297. }
  8298. }
  8299. },
  8300. [
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(8.8, "feet")
  8304. },
  8305. {
  8306. name: "Macro",
  8307. height: math.unit(88, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Megamacro",
  8312. height: math.unit(8, "miles")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(12 + 2 / 12, "feet"),
  8321. weight: math.unit(808, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/prodigy/front.svg"
  8325. }
  8326. }
  8327. },
  8328. [
  8329. {
  8330. name: "Normal",
  8331. height: math.unit(12 + 2 / 12, "feet"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Macro",
  8336. height: math.unit(143, "feet")
  8337. },
  8338. {
  8339. name: "Macro+",
  8340. height: math.unit(400, "feet")
  8341. },
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(225, "lbs"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/daniel/front.svg"
  8353. }
  8354. },
  8355. leaning: {
  8356. height: math.unit(6, "feet"),
  8357. weight: math.unit(225, "lbs"),
  8358. name: "Leaning",
  8359. image: {
  8360. source: "./media/characters/daniel/leaning.svg"
  8361. }
  8362. },
  8363. },
  8364. [
  8365. {
  8366. name: "Macro",
  8367. height: math.unit(1000, "feet"),
  8368. default: true
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(88, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/chiros/front.svg",
  8381. extra: 306 / 226
  8382. }
  8383. },
  8384. side: {
  8385. height: math.unit(6, "feet"),
  8386. weight: math.unit(88, "lbs"),
  8387. name: "Side",
  8388. image: {
  8389. source: "./media/characters/chiros/side.svg",
  8390. extra: 306 / 226
  8391. }
  8392. },
  8393. },
  8394. [
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(6, "cm"),
  8398. default: true
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8404. {
  8405. front: {
  8406. height: math.unit(6, "feet"),
  8407. weight: math.unit(100, "lbs"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/selka/front.svg",
  8411. extra: 947 / 887
  8412. }
  8413. }
  8414. },
  8415. [
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(5, "cm"),
  8419. default: true
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8425. {
  8426. front: {
  8427. height: math.unit(8 + 3 / 12, "feet"),
  8428. weight: math.unit(424, "lbs"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/verin/front.svg",
  8432. extra: 1845 / 1550
  8433. }
  8434. },
  8435. frontArmored: {
  8436. height: math.unit(8 + 3 / 12, "feet"),
  8437. weight: math.unit(424, "lbs"),
  8438. name: "Front (Armored)",
  8439. image: {
  8440. source: "./media/characters/verin/front-armor.svg",
  8441. extra: 1845 / 1550,
  8442. bottom: 0.01
  8443. }
  8444. },
  8445. back: {
  8446. height: math.unit(8 + 3 / 12, "feet"),
  8447. weight: math.unit(424, "lbs"),
  8448. name: "Back",
  8449. image: {
  8450. source: "./media/characters/verin/back.svg",
  8451. bottom: 0.1,
  8452. extra: 1
  8453. }
  8454. },
  8455. foot: {
  8456. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8457. name: "Foot",
  8458. image: {
  8459. source: "./media/characters/verin/foot.svg"
  8460. }
  8461. },
  8462. },
  8463. [
  8464. {
  8465. name: "Normal",
  8466. height: math.unit(8 + 3 / 12, "feet")
  8467. },
  8468. {
  8469. name: "Minimacro",
  8470. height: math.unit(21, "feet"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Macro",
  8475. height: math.unit(626, "feet")
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(2.718, "meters"),
  8484. weight: math.unit(150, "lbs"),
  8485. name: "Front",
  8486. image: {
  8487. source: "./media/characters/sovrim-terraquian/front.svg",
  8488. extra: 1752/1689,
  8489. bottom: 36/1788
  8490. }
  8491. },
  8492. back: {
  8493. height: math.unit(2.718, "meters"),
  8494. weight: math.unit(150, "lbs"),
  8495. name: "Back",
  8496. image: {
  8497. source: "./media/characters/sovrim-terraquian/back.svg",
  8498. extra: 1698/1657,
  8499. bottom: 58/1756
  8500. }
  8501. },
  8502. tongue: {
  8503. height: math.unit(2.865, "feet"),
  8504. name: "Tongue",
  8505. image: {
  8506. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8507. }
  8508. },
  8509. hand: {
  8510. height: math.unit(1.61, "feet"),
  8511. name: "Hand",
  8512. image: {
  8513. source: "./media/characters/sovrim-terraquian/hand.svg"
  8514. }
  8515. },
  8516. foot: {
  8517. height: math.unit(1.05, "feet"),
  8518. name: "Foot",
  8519. image: {
  8520. source: "./media/characters/sovrim-terraquian/foot.svg"
  8521. }
  8522. },
  8523. footAlt: {
  8524. height: math.unit(0.88, "feet"),
  8525. name: "Foot (Alt)",
  8526. image: {
  8527. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Micro",
  8534. height: math.unit(2, "inches")
  8535. },
  8536. {
  8537. name: "Small",
  8538. height: math.unit(1, "meter")
  8539. },
  8540. {
  8541. name: "Normal",
  8542. height: math.unit(Math.E, "meters"),
  8543. default: true
  8544. },
  8545. {
  8546. name: "Macro",
  8547. height: math.unit(20, "meters")
  8548. },
  8549. {
  8550. name: "Macro+",
  8551. height: math.unit(400, "meters")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8557. {
  8558. front: {
  8559. height: math.unit(7, "feet"),
  8560. weight: math.unit(489, "lbs"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/reece-silvermane/front.svg",
  8564. bottom: 0.02,
  8565. extra: 1
  8566. }
  8567. },
  8568. },
  8569. [
  8570. {
  8571. name: "Macro",
  8572. height: math.unit(1.5, "miles"),
  8573. default: true
  8574. },
  8575. ]
  8576. ))
  8577. characterMakers.push(() => makeCharacter(
  8578. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8579. {
  8580. front: {
  8581. height: math.unit(6, "feet"),
  8582. weight: math.unit(78, "kg"),
  8583. name: "Front",
  8584. image: {
  8585. source: "./media/characters/kane/front.svg",
  8586. extra: 978 / 899
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Normal",
  8593. height: math.unit(2.1, "m"),
  8594. },
  8595. {
  8596. name: "Macro",
  8597. height: math.unit(1, "km"),
  8598. default: true
  8599. },
  8600. ]
  8601. ))
  8602. characterMakers.push(() => makeCharacter(
  8603. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8604. {
  8605. front: {
  8606. height: math.unit(6, "feet"),
  8607. weight: math.unit(200, "kg"),
  8608. name: "Front",
  8609. image: {
  8610. source: "./media/characters/tegon/front.svg",
  8611. bottom: 0.01,
  8612. extra: 1
  8613. }
  8614. },
  8615. },
  8616. [
  8617. {
  8618. name: "Micro",
  8619. height: math.unit(1, "inch")
  8620. },
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(6 + 3 / 12, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Macro",
  8628. height: math.unit(300, "feet")
  8629. },
  8630. {
  8631. name: "Megamacro",
  8632. height: math.unit(69, "miles")
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8638. {
  8639. side: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(2304, "lbs"),
  8642. name: "Side",
  8643. image: {
  8644. source: "./media/characters/arcturax/side.svg",
  8645. extra: 790 / 376,
  8646. bottom: 0.01
  8647. }
  8648. },
  8649. },
  8650. [
  8651. {
  8652. name: "Micro",
  8653. height: math.unit(2, "inch")
  8654. },
  8655. {
  8656. name: "Normal",
  8657. height: math.unit(6, "feet")
  8658. },
  8659. {
  8660. name: "Macro",
  8661. height: math.unit(39, "feet"),
  8662. default: true
  8663. },
  8664. {
  8665. name: "Megamacro",
  8666. height: math.unit(7, "miles")
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(6, "feet"),
  8675. weight: math.unit(50, "lbs"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/sentri/front.svg",
  8679. extra: 1750 / 1570,
  8680. bottom: 0.025
  8681. }
  8682. },
  8683. frontAlt: {
  8684. height: math.unit(6, "feet"),
  8685. weight: math.unit(50, "lbs"),
  8686. name: "Front (Alt)",
  8687. image: {
  8688. source: "./media/characters/sentri/front-alt.svg",
  8689. extra: 1750 / 1570,
  8690. bottom: 0.025
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Normal",
  8697. height: math.unit(15, "feet"),
  8698. default: true
  8699. },
  8700. {
  8701. name: "Macro",
  8702. height: math.unit(2500, "feet")
  8703. }
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8708. {
  8709. front: {
  8710. height: math.unit(5 + 8 / 12, "feet"),
  8711. weight: math.unit(130, "lbs"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/corvin/front.svg",
  8715. extra: 1803 / 1629
  8716. }
  8717. },
  8718. frontShirt: {
  8719. height: math.unit(5 + 8 / 12, "feet"),
  8720. weight: math.unit(130, "lbs"),
  8721. name: "Front (Shirt)",
  8722. image: {
  8723. source: "./media/characters/corvin/front-shirt.svg",
  8724. extra: 1803 / 1629
  8725. }
  8726. },
  8727. frontPoncho: {
  8728. height: math.unit(5 + 8 / 12, "feet"),
  8729. weight: math.unit(130, "lbs"),
  8730. name: "Front (Poncho)",
  8731. image: {
  8732. source: "./media/characters/corvin/front-poncho.svg",
  8733. extra: 1803 / 1629
  8734. }
  8735. },
  8736. side: {
  8737. height: math.unit(5 + 8 / 12, "feet"),
  8738. weight: math.unit(130, "lbs"),
  8739. name: "Side",
  8740. image: {
  8741. source: "./media/characters/corvin/side.svg",
  8742. extra: 1012 / 945
  8743. }
  8744. },
  8745. back: {
  8746. height: math.unit(5 + 8 / 12, "feet"),
  8747. weight: math.unit(130, "lbs"),
  8748. name: "Back",
  8749. image: {
  8750. source: "./media/characters/corvin/back.svg",
  8751. extra: 1803 / 1629
  8752. }
  8753. },
  8754. },
  8755. [
  8756. {
  8757. name: "Micro",
  8758. height: math.unit(3, "inches")
  8759. },
  8760. {
  8761. name: "Normal",
  8762. height: math.unit(5 + 8 / 12, "feet")
  8763. },
  8764. {
  8765. name: "Macro",
  8766. height: math.unit(300, "feet"),
  8767. default: true
  8768. },
  8769. {
  8770. name: "Megamacro",
  8771. height: math.unit(500, "miles")
  8772. }
  8773. ]
  8774. ))
  8775. characterMakers.push(() => makeCharacter(
  8776. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8777. {
  8778. front: {
  8779. height: math.unit(6, "feet"),
  8780. weight: math.unit(135, "lbs"),
  8781. name: "Front",
  8782. image: {
  8783. source: "./media/characters/q/front.svg",
  8784. extra: 854 / 752,
  8785. bottom: 0.005
  8786. }
  8787. },
  8788. back: {
  8789. height: math.unit(6, "feet"),
  8790. weight: math.unit(130, "lbs"),
  8791. name: "Back",
  8792. image: {
  8793. source: "./media/characters/q/back.svg",
  8794. extra: 854 / 752
  8795. }
  8796. },
  8797. },
  8798. [
  8799. {
  8800. name: "Macro",
  8801. height: math.unit(90, "feet"),
  8802. default: true
  8803. },
  8804. {
  8805. name: "Extra Macro",
  8806. height: math.unit(300, "feet"),
  8807. },
  8808. {
  8809. name: "BIG WALF",
  8810. height: math.unit(750, "feet"),
  8811. },
  8812. ]
  8813. ))
  8814. characterMakers.push(() => makeCharacter(
  8815. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8816. {
  8817. front: {
  8818. height: math.unit(6, "feet"),
  8819. weight: math.unit(150, "lbs"),
  8820. name: "Front",
  8821. image: {
  8822. source: "./media/characters/carley/front.svg",
  8823. extra: 3927 / 3540,
  8824. bottom: 29.2 / 735
  8825. }
  8826. }
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(6 + 3 / 12, "feet")
  8832. },
  8833. {
  8834. name: "Macro",
  8835. height: math.unit(185, "feet"),
  8836. default: true
  8837. },
  8838. {
  8839. name: "Megamacro",
  8840. height: math.unit(8, "miles"),
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8846. {
  8847. front: {
  8848. height: math.unit(3, "feet"),
  8849. weight: math.unit(28, "lbs"),
  8850. name: "Front",
  8851. image: {
  8852. source: "./media/characters/citrine/front.svg"
  8853. }
  8854. }
  8855. },
  8856. [
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(3, "feet"),
  8860. default: true
  8861. }
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8866. {
  8867. front: {
  8868. height: math.unit(14, "feet"),
  8869. weight: math.unit(1450, "kg"),
  8870. preyCapacity: math.unit(15, "people"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/aura-starwind/front.svg",
  8874. extra: 1440/1327,
  8875. bottom: 11/1451
  8876. }
  8877. },
  8878. side: {
  8879. height: math.unit(14, "feet"),
  8880. weight: math.unit(1450, "kg"),
  8881. preyCapacity: math.unit(15, "people"),
  8882. name: "Side",
  8883. image: {
  8884. source: "./media/characters/aura-starwind/side.svg",
  8885. extra: 1654 / 1497
  8886. }
  8887. },
  8888. taur: {
  8889. height: math.unit(18, "feet"),
  8890. weight: math.unit(5500, "kg"),
  8891. preyCapacity: math.unit(50, "people"),
  8892. name: "Taur",
  8893. image: {
  8894. source: "./media/characters/aura-starwind/taur.svg",
  8895. extra: 1760 / 1650
  8896. }
  8897. },
  8898. feral: {
  8899. height: math.unit(46, "feet"),
  8900. weight: math.unit(25000, "kg"),
  8901. preyCapacity: math.unit(120, "people"),
  8902. name: "Feral",
  8903. image: {
  8904. source: "./media/characters/aura-starwind/feral.svg"
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(14, "feet"),
  8912. default: true
  8913. },
  8914. {
  8915. name: "Macro",
  8916. height: math.unit(50, "meters")
  8917. },
  8918. {
  8919. name: "Megamacro",
  8920. height: math.unit(5000, "meters")
  8921. },
  8922. {
  8923. name: "Gigamacro",
  8924. height: math.unit(100000, "kilometers")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(2 + 7 / 12, "feet"),
  8933. weight: math.unit(32, "lbs"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/rivet/front.svg",
  8937. extra: 1716 / 1658,
  8938. bottom: 0.03
  8939. }
  8940. },
  8941. foot: {
  8942. height: math.unit(0.551, "feet"),
  8943. name: "Rivet's Foot",
  8944. image: {
  8945. source: "./media/characters/rivet/foot.svg"
  8946. },
  8947. rename: true
  8948. }
  8949. },
  8950. [
  8951. {
  8952. name: "Micro",
  8953. height: math.unit(1.5, "inches"),
  8954. },
  8955. {
  8956. name: "Normal",
  8957. height: math.unit(2 + 7 / 12, "feet"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Macro",
  8962. height: math.unit(85, "feet")
  8963. },
  8964. {
  8965. name: "Megamacro",
  8966. height: math.unit(2.2, "km")
  8967. }
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(5 + 9 / 12, "feet"),
  8975. weight: math.unit(150, "lbs"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/coffee/front.svg",
  8979. extra: 3666 / 3032,
  8980. bottom: 0.04
  8981. }
  8982. },
  8983. foot: {
  8984. height: math.unit(1.29, "feet"),
  8985. name: "Foot",
  8986. image: {
  8987. source: "./media/characters/coffee/foot.svg"
  8988. }
  8989. },
  8990. },
  8991. [
  8992. {
  8993. name: "Micro",
  8994. height: math.unit(2, "inches"),
  8995. },
  8996. {
  8997. name: "Normal",
  8998. height: math.unit(5 + 9 / 12, "feet"),
  8999. default: true
  9000. },
  9001. {
  9002. name: "Macro",
  9003. height: math.unit(800, "feet")
  9004. },
  9005. {
  9006. name: "Megamacro",
  9007. height: math.unit(25, "miles")
  9008. }
  9009. ]
  9010. ))
  9011. characterMakers.push(() => makeCharacter(
  9012. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9013. {
  9014. front: {
  9015. height: math.unit(6, "feet"),
  9016. weight: math.unit(200, "lbs"),
  9017. name: "Front",
  9018. image: {
  9019. source: "./media/characters/chari-gal/front.svg",
  9020. extra: 1568 / 1385,
  9021. bottom: 0.047
  9022. }
  9023. },
  9024. gigantamax: {
  9025. height: math.unit(6 * 16, "feet"),
  9026. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9027. name: "Gigantamax",
  9028. image: {
  9029. source: "./media/characters/chari-gal/gigantamax.svg",
  9030. extra: 1124 / 888,
  9031. bottom: 0.03
  9032. }
  9033. },
  9034. },
  9035. [
  9036. {
  9037. name: "Normal",
  9038. height: math.unit(5 + 7 / 12, "feet")
  9039. },
  9040. {
  9041. name: "Macro",
  9042. height: math.unit(200, "feet"),
  9043. default: true
  9044. }
  9045. ]
  9046. ))
  9047. characterMakers.push(() => makeCharacter(
  9048. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9049. {
  9050. front: {
  9051. height: math.unit(6, "feet"),
  9052. weight: math.unit(150, "lbs"),
  9053. name: "Front",
  9054. image: {
  9055. source: "./media/characters/nova/front.svg",
  9056. extra: 5000 / 4722,
  9057. bottom: 0.02
  9058. }
  9059. }
  9060. },
  9061. [
  9062. {
  9063. name: "Micro-",
  9064. height: math.unit(0.8, "inches")
  9065. },
  9066. {
  9067. name: "Micro",
  9068. height: math.unit(2, "inches"),
  9069. default: true
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(3 + 1 / 12, "feet"),
  9078. weight: math.unit(21.7, "lbs"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/argent/front.svg",
  9082. extra: 1471 / 1331,
  9083. bottom: 100.8 / 1575.5
  9084. }
  9085. }
  9086. },
  9087. [
  9088. {
  9089. name: "Micro",
  9090. height: math.unit(2, "inches")
  9091. },
  9092. {
  9093. name: "Normal",
  9094. height: math.unit(3 + 1 / 12, "feet"),
  9095. default: true
  9096. },
  9097. {
  9098. name: "Macro",
  9099. height: math.unit(120, "feet")
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9105. {
  9106. lamp: {
  9107. height: math.unit(7 * 1559 / 989, "feet"),
  9108. name: "Magic Lamp",
  9109. image: {
  9110. source: "./media/characters/mira-al-cul/lamp.svg",
  9111. extra: 1617 / 1559
  9112. }
  9113. },
  9114. front: {
  9115. height: math.unit(7, "feet"),
  9116. name: "Front",
  9117. image: {
  9118. source: "./media/characters/mira-al-cul/front.svg",
  9119. extra: 1044 / 990
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Heavily Restricted",
  9126. height: math.unit(7 * 1559 / 989, "feet")
  9127. },
  9128. {
  9129. name: "Freshly Freed",
  9130. height: math.unit(50 * 1559 / 989, "feet")
  9131. },
  9132. {
  9133. name: "World Encompassing",
  9134. height: math.unit(10000 * 1559 / 989, "miles")
  9135. },
  9136. {
  9137. name: "Galactic",
  9138. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9139. },
  9140. {
  9141. name: "Palmed Universe",
  9142. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9143. default: true
  9144. },
  9145. {
  9146. name: "Multiversal Matriarch",
  9147. height: math.unit(8.87e10, "yottameters")
  9148. },
  9149. {
  9150. name: "Void Mother",
  9151. height: math.unit(3.14e110, "yottaparsecs")
  9152. },
  9153. {
  9154. name: "Toying with Transcendence",
  9155. height: math.unit(1e307, "meters")
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9161. {
  9162. front: {
  9163. height: math.unit(17 + 1 / 12, "feet"),
  9164. weight: math.unit(476.2 * 5, "lbs"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/kuro-shi-uchū/front.svg",
  9168. extra: 2329 / 1835,
  9169. bottom: 0.02
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Micro",
  9176. height: math.unit(2, "inches")
  9177. },
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(12, "meters")
  9181. },
  9182. {
  9183. name: "Planetary",
  9184. height: math.unit(0.00929, "AU"),
  9185. default: true
  9186. },
  9187. {
  9188. name: "Universal",
  9189. height: math.unit(20, "gigaparsecs")
  9190. },
  9191. ]
  9192. ))
  9193. characterMakers.push(() => makeCharacter(
  9194. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9195. {
  9196. front: {
  9197. height: math.unit(5 + 2 / 12, "feet"),
  9198. weight: math.unit(120, "lbs"),
  9199. name: "Front",
  9200. image: {
  9201. source: "./media/characters/katherine/front.svg",
  9202. extra: 2075 / 1969
  9203. }
  9204. },
  9205. dress: {
  9206. height: math.unit(5 + 2 / 12, "feet"),
  9207. weight: math.unit(120, "lbs"),
  9208. name: "Dress",
  9209. image: {
  9210. source: "./media/characters/katherine/dress.svg",
  9211. extra: 2258 / 2064
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Micro",
  9218. height: math.unit(1, "inches"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Normal",
  9223. height: math.unit(5 + 2 / 12, "feet")
  9224. },
  9225. {
  9226. name: "Macro",
  9227. height: math.unit(100, "meters")
  9228. },
  9229. {
  9230. name: "Megamacro",
  9231. height: math.unit(80, "miles")
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9237. {
  9238. front: {
  9239. height: math.unit(7 + 8 / 12, "feet"),
  9240. weight: math.unit(250, "lbs"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/yevis/front.svg",
  9244. extra: 1938 / 1755
  9245. }
  9246. }
  9247. },
  9248. [
  9249. {
  9250. name: "Mortal",
  9251. height: math.unit(7 + 8 / 12, "feet")
  9252. },
  9253. {
  9254. name: "Battle",
  9255. height: math.unit(25 + 11 / 12, "feet")
  9256. },
  9257. {
  9258. name: "Wrath",
  9259. height: math.unit(1654 + 11 / 12, "feet")
  9260. },
  9261. {
  9262. name: "Planet Destroyer",
  9263. height: math.unit(12000, "miles")
  9264. },
  9265. {
  9266. name: "Galaxy Conqueror",
  9267. height: math.unit(1.45, "zettameters"),
  9268. default: true
  9269. },
  9270. {
  9271. name: "Universal War",
  9272. height: math.unit(184, "gigaparsecs")
  9273. },
  9274. {
  9275. name: "Eternity War",
  9276. height: math.unit(1.98e55, "yottaparsecs")
  9277. },
  9278. ]
  9279. ))
  9280. characterMakers.push(() => makeCharacter(
  9281. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9282. {
  9283. front: {
  9284. height: math.unit(5 + 8 / 12, "feet"),
  9285. weight: math.unit(63, "kg"),
  9286. name: "Front",
  9287. image: {
  9288. source: "./media/characters/xavier/front.svg",
  9289. extra: 944 / 883
  9290. }
  9291. },
  9292. frontStretch: {
  9293. height: math.unit(5 + 8 / 12, "feet"),
  9294. weight: math.unit(63, "kg"),
  9295. name: "Stretching",
  9296. image: {
  9297. source: "./media/characters/xavier/front-stretch.svg",
  9298. extra: 962 / 820
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(5 + 8 / 12, "feet")
  9306. },
  9307. {
  9308. name: "Macro",
  9309. height: math.unit(100, "meters"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "McLargeHuge",
  9314. height: math.unit(10, "miles")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(5 + 5 / 12, "feet"),
  9323. weight: math.unit(150, "lb"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/joshii/front.svg",
  9327. extra: 765 / 653,
  9328. bottom: 51 / 816
  9329. }
  9330. },
  9331. foot: {
  9332. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9333. name: "Foot",
  9334. image: {
  9335. source: "./media/characters/joshii/foot.svg"
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Micro",
  9342. height: math.unit(2, "inches"),
  9343. default: true
  9344. },
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(5 + 5 / 12, "feet")
  9348. },
  9349. {
  9350. name: "Macro",
  9351. height: math.unit(785, "feet")
  9352. },
  9353. {
  9354. name: "Megamacro",
  9355. height: math.unit(24.5, "miles")
  9356. },
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(150, "lb"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/goddess-elizabeth/front.svg",
  9368. extra: 1800 / 1525,
  9369. bottom: 0.005
  9370. }
  9371. },
  9372. foot: {
  9373. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9374. name: "Foot",
  9375. image: {
  9376. source: "./media/characters/goddess-elizabeth/foot.svg"
  9377. }
  9378. },
  9379. mouth: {
  9380. height: math.unit(6, "feet"),
  9381. name: "Mouth",
  9382. image: {
  9383. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Micro",
  9390. height: math.unit(12, "feet")
  9391. },
  9392. {
  9393. name: "Normal",
  9394. height: math.unit(80, "miles"),
  9395. default: true
  9396. },
  9397. {
  9398. name: "Macro",
  9399. height: math.unit(15000, "parsecs")
  9400. },
  9401. ]
  9402. ))
  9403. characterMakers.push(() => makeCharacter(
  9404. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9405. {
  9406. front: {
  9407. height: math.unit(5 + 9 / 12, "feet"),
  9408. weight: math.unit(144, "lb"),
  9409. name: "Front",
  9410. image: {
  9411. source: "./media/characters/kara/front.svg"
  9412. }
  9413. },
  9414. feet: {
  9415. height: math.unit(6 / 6.765, "feet"),
  9416. name: "Kara's Feet",
  9417. rename: true,
  9418. image: {
  9419. source: "./media/characters/kara/feet.svg"
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Normal",
  9426. height: math.unit(5 + 9 / 12, "feet")
  9427. },
  9428. {
  9429. name: "Macro",
  9430. height: math.unit(174, "feet"),
  9431. default: true
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(18, "feet"),
  9440. weight: math.unit(4050, "lb"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/tyrone/front.svg",
  9444. extra: 2405 / 2270,
  9445. bottom: 182 / 2587
  9446. }
  9447. },
  9448. },
  9449. [
  9450. {
  9451. name: "Normal",
  9452. height: math.unit(18, "feet"),
  9453. default: true
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(300, "feet")
  9458. },
  9459. {
  9460. name: "Megamacro",
  9461. height: math.unit(15, "km")
  9462. },
  9463. {
  9464. name: "Gigamacro",
  9465. height: math.unit(500, "km")
  9466. },
  9467. {
  9468. name: "Teramacro",
  9469. height: math.unit(0.5, "gigameters")
  9470. },
  9471. {
  9472. name: "Omnimacro",
  9473. height: math.unit(1e252, "yottauniverse")
  9474. },
  9475. ]
  9476. ))
  9477. characterMakers.push(() => makeCharacter(
  9478. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9479. {
  9480. front: {
  9481. height: math.unit(7 + 8 / 12, "feet"),
  9482. weight: math.unit(120, "lb"),
  9483. name: "Front",
  9484. image: {
  9485. source: "./media/characters/danny/front.svg",
  9486. extra: 1490 / 1350
  9487. }
  9488. },
  9489. back: {
  9490. height: math.unit(7 + 8 / 12, "feet"),
  9491. weight: math.unit(120, "lb"),
  9492. name: "Back",
  9493. image: {
  9494. source: "./media/characters/danny/back.svg",
  9495. extra: 1490 / 1350
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Normal",
  9502. height: math.unit(7 + 8 / 12, "feet"),
  9503. default: true
  9504. },
  9505. ]
  9506. ))
  9507. characterMakers.push(() => makeCharacter(
  9508. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9509. {
  9510. front: {
  9511. height: math.unit(3.5, "inches"),
  9512. weight: math.unit(19, "grams"),
  9513. name: "Front",
  9514. image: {
  9515. source: "./media/characters/mallow/front.svg",
  9516. extra: 471 / 431
  9517. }
  9518. },
  9519. back: {
  9520. height: math.unit(3.5, "inches"),
  9521. weight: math.unit(19, "grams"),
  9522. name: "Back",
  9523. image: {
  9524. source: "./media/characters/mallow/back.svg",
  9525. extra: 471 / 431
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Normal",
  9532. height: math.unit(3.5, "inches"),
  9533. default: true
  9534. },
  9535. ]
  9536. ))
  9537. characterMakers.push(() => makeCharacter(
  9538. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9539. {
  9540. front: {
  9541. height: math.unit(9, "feet"),
  9542. weight: math.unit(230, "kg"),
  9543. name: "Front",
  9544. image: {
  9545. source: "./media/characters/starry-aqua/front.svg"
  9546. }
  9547. },
  9548. back: {
  9549. height: math.unit(9, "feet"),
  9550. weight: math.unit(230, "kg"),
  9551. name: "Back",
  9552. image: {
  9553. source: "./media/characters/starry-aqua/back.svg"
  9554. }
  9555. },
  9556. hand: {
  9557. height: math.unit(9 * 0.1168, "feet"),
  9558. name: "Hand",
  9559. image: {
  9560. source: "./media/characters/starry-aqua/hand.svg"
  9561. }
  9562. },
  9563. foot: {
  9564. height: math.unit(9 * 0.18, "feet"),
  9565. name: "Foot",
  9566. image: {
  9567. source: "./media/characters/starry-aqua/foot.svg"
  9568. }
  9569. }
  9570. },
  9571. [
  9572. {
  9573. name: "Micro",
  9574. height: math.unit(3, "inches")
  9575. },
  9576. {
  9577. name: "Normal",
  9578. height: math.unit(9, "feet")
  9579. },
  9580. {
  9581. name: "Macro",
  9582. height: math.unit(300, "feet"),
  9583. default: true
  9584. },
  9585. {
  9586. name: "Megamacro",
  9587. height: math.unit(3200, "feet")
  9588. }
  9589. ]
  9590. ))
  9591. characterMakers.push(() => makeCharacter(
  9592. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9593. {
  9594. front: {
  9595. height: math.unit(15, "feet"),
  9596. weight: math.unit(5026, "lb"),
  9597. name: "Front",
  9598. image: {
  9599. source: "./media/characters/luka-towers/front.svg",
  9600. extra: 1269/1133,
  9601. bottom: 51/1320
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Normal",
  9608. height: math.unit(15, "feet"),
  9609. default: true
  9610. },
  9611. {
  9612. name: "Minimacro",
  9613. height: math.unit(25, "feet")
  9614. },
  9615. {
  9616. name: "Macro",
  9617. height: math.unit(320, "feet")
  9618. },
  9619. {
  9620. name: "Megamacro",
  9621. height: math.unit(35000, "feet")
  9622. },
  9623. {
  9624. name: "Gigamacro",
  9625. height: math.unit(4000, "miles")
  9626. },
  9627. {
  9628. name: "Teramacro",
  9629. height: math.unit(15000, "miles")
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(6, "feet"),
  9638. weight: math.unit(150, "lb"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/natalie-nightring/front.svg",
  9642. extra: 1,
  9643. bottom: 0.06
  9644. }
  9645. },
  9646. },
  9647. [
  9648. {
  9649. name: "Uh Oh",
  9650. height: math.unit(0.1, "mm")
  9651. },
  9652. {
  9653. name: "Small",
  9654. height: math.unit(3, "inches")
  9655. },
  9656. {
  9657. name: "Human Scale",
  9658. height: math.unit(6, "feet")
  9659. },
  9660. {
  9661. name: "Librarian",
  9662. height: math.unit(50, "feet"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "Immense",
  9667. height: math.unit(200, "miles")
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(6, "feet"),
  9676. weight: math.unit(180, "lbs"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/danni-rosie/front.svg",
  9680. extra: 1260 / 1128,
  9681. bottom: 0.022
  9682. }
  9683. },
  9684. },
  9685. [
  9686. {
  9687. name: "Micro",
  9688. height: math.unit(2, "inches"),
  9689. default: true
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(5 + 9 / 12, "feet"),
  9698. weight: math.unit(220, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/samantha-kruse/front.svg",
  9702. extra: (985 / 935),
  9703. bottom: 0.03
  9704. }
  9705. },
  9706. frontUndressed: {
  9707. height: math.unit(5 + 9 / 12, "feet"),
  9708. weight: math.unit(220, "lb"),
  9709. name: "Front (Undressed)",
  9710. image: {
  9711. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9712. extra: (973 / 923),
  9713. bottom: 0.025
  9714. }
  9715. },
  9716. fat: {
  9717. height: math.unit(5 + 9 / 12, "feet"),
  9718. weight: math.unit(900, "lb"),
  9719. name: "Front (Fat)",
  9720. image: {
  9721. source: "./media/characters/samantha-kruse/fat.svg",
  9722. extra: 2688 / 2561
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(5 + 9 / 12, "feet"),
  9730. default: true
  9731. }
  9732. ]
  9733. ))
  9734. characterMakers.push(() => makeCharacter(
  9735. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9736. {
  9737. back: {
  9738. height: math.unit(5 + 4 / 12, "feet"),
  9739. weight: math.unit(4963, "lb"),
  9740. name: "Back",
  9741. image: {
  9742. source: "./media/characters/amelia-rosie/back.svg",
  9743. extra: 1113 / 963,
  9744. bottom: 0.01
  9745. }
  9746. },
  9747. },
  9748. [
  9749. {
  9750. name: "Level 0",
  9751. height: math.unit(5 + 4 / 12, "feet")
  9752. },
  9753. {
  9754. name: "Level 1",
  9755. height: math.unit(164597, "feet"),
  9756. default: true
  9757. },
  9758. {
  9759. name: "Level 2",
  9760. height: math.unit(956243, "miles")
  9761. },
  9762. {
  9763. name: "Level 3",
  9764. height: math.unit(29421709423, "miles")
  9765. },
  9766. {
  9767. name: "Level 4",
  9768. height: math.unit(154, "lightyears")
  9769. },
  9770. {
  9771. name: "Level 5",
  9772. height: math.unit(4738272, "lightyears")
  9773. },
  9774. {
  9775. name: "Level 6",
  9776. height: math.unit(145787152896, "lightyears")
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9782. {
  9783. front: {
  9784. height: math.unit(5 + 11 / 12, "feet"),
  9785. weight: math.unit(65, "kg"),
  9786. name: "Front",
  9787. image: {
  9788. source: "./media/characters/rook-kitara/front.svg",
  9789. extra: 1347 / 1274,
  9790. bottom: 0.005
  9791. }
  9792. },
  9793. },
  9794. [
  9795. {
  9796. name: "Totally Unfair",
  9797. height: math.unit(1.8, "mm")
  9798. },
  9799. {
  9800. name: "Lap Rookie",
  9801. height: math.unit(1.4, "feet")
  9802. },
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(5 + 11 / 12, "feet"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "How Did This Happen",
  9810. height: math.unit(80, "miles")
  9811. }
  9812. ]
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9816. {
  9817. front: {
  9818. height: math.unit(7, "feet"),
  9819. weight: math.unit(300, "lb"),
  9820. name: "Front",
  9821. image: {
  9822. source: "./media/characters/pisces/front.svg",
  9823. extra: 2255 / 2115,
  9824. bottom: 0.03
  9825. }
  9826. },
  9827. back: {
  9828. height: math.unit(7, "feet"),
  9829. weight: math.unit(300, "lb"),
  9830. name: "Back",
  9831. image: {
  9832. source: "./media/characters/pisces/back.svg",
  9833. extra: 2146 / 2055,
  9834. bottom: 0.04
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Normal",
  9841. height: math.unit(7, "feet"),
  9842. default: true
  9843. },
  9844. {
  9845. name: "Swimming Pool",
  9846. height: math.unit(12.2, "meters")
  9847. },
  9848. {
  9849. name: "Olympic Swimming Pool",
  9850. height: math.unit(56.3, "meters")
  9851. },
  9852. {
  9853. name: "Lake Superior",
  9854. height: math.unit(93900, "meters")
  9855. },
  9856. {
  9857. name: "Mediterranean Sea",
  9858. height: math.unit(644457, "meters")
  9859. },
  9860. {
  9861. name: "World's Oceans",
  9862. height: math.unit(4567491, "meters")
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(2.3, "meters"),
  9871. weight: math.unit(120, "kg"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/zelas/front.svg"
  9875. }
  9876. },
  9877. side: {
  9878. height: math.unit(2.3, "meters"),
  9879. weight: math.unit(120, "kg"),
  9880. name: "Side",
  9881. image: {
  9882. source: "./media/characters/zelas/side.svg"
  9883. }
  9884. },
  9885. back: {
  9886. height: math.unit(2.3, "meters"),
  9887. weight: math.unit(120, "kg"),
  9888. name: "Back",
  9889. image: {
  9890. source: "./media/characters/zelas/back.svg"
  9891. }
  9892. },
  9893. foot: {
  9894. height: math.unit(1.116, "feet"),
  9895. name: "Foot",
  9896. image: {
  9897. source: "./media/characters/zelas/foot.svg"
  9898. }
  9899. },
  9900. },
  9901. [
  9902. {
  9903. name: "Normal",
  9904. height: math.unit(2.3, "meters")
  9905. },
  9906. {
  9907. name: "Macro",
  9908. height: math.unit(30, "meters"),
  9909. default: true
  9910. },
  9911. ]
  9912. ))
  9913. characterMakers.push(() => makeCharacter(
  9914. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9915. {
  9916. front: {
  9917. height: math.unit(1, "inch"),
  9918. weight: math.unit(0.21, "grams"),
  9919. name: "Front",
  9920. image: {
  9921. source: "./media/characters/talbot/front.svg",
  9922. extra: 594 / 544
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(1, "inch"),
  9930. default: true
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9936. {
  9937. front: {
  9938. height: math.unit(3 + 3 / 12, "feet"),
  9939. weight: math.unit(51.8, "lb"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/fliss/front.svg",
  9943. extra: 840 / 640
  9944. }
  9945. },
  9946. },
  9947. [
  9948. {
  9949. name: "Teeny Tiny",
  9950. height: math.unit(1, "mm")
  9951. },
  9952. {
  9953. name: "Small",
  9954. height: math.unit(1, "inch"),
  9955. default: true
  9956. },
  9957. {
  9958. name: "Standard Sylveon",
  9959. height: math.unit(3 + 3 / 12, "feet")
  9960. },
  9961. {
  9962. name: "Large Nuisance",
  9963. height: math.unit(33, "feet")
  9964. },
  9965. {
  9966. name: "City Filler",
  9967. height: math.unit(3000, "feet")
  9968. },
  9969. {
  9970. name: "New Horizon",
  9971. height: math.unit(6000, "miles")
  9972. },
  9973. ]
  9974. ))
  9975. characterMakers.push(() => makeCharacter(
  9976. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9977. {
  9978. front: {
  9979. height: math.unit(5, "cm"),
  9980. weight: math.unit(1.94, "g"),
  9981. name: "Front",
  9982. image: {
  9983. source: "./media/characters/fleta/front.svg",
  9984. extra: 835 / 803
  9985. }
  9986. },
  9987. back: {
  9988. height: math.unit(5, "cm"),
  9989. weight: math.unit(1.94, "g"),
  9990. name: "Back",
  9991. image: {
  9992. source: "./media/characters/fleta/back.svg",
  9993. extra: 835 / 803
  9994. }
  9995. },
  9996. },
  9997. [
  9998. {
  9999. name: "Micro",
  10000. height: math.unit(5, "cm"),
  10001. default: true
  10002. },
  10003. ]
  10004. ))
  10005. characterMakers.push(() => makeCharacter(
  10006. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10007. {
  10008. front: {
  10009. height: math.unit(6, "feet"),
  10010. weight: math.unit(225, "lb"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/dominic/front.svg",
  10014. extra: 1770 / 1620,
  10015. bottom: 0.025
  10016. }
  10017. },
  10018. back: {
  10019. height: math.unit(6, "feet"),
  10020. weight: math.unit(225, "lb"),
  10021. name: "Back",
  10022. image: {
  10023. source: "./media/characters/dominic/back.svg",
  10024. extra: 1745 / 1620,
  10025. bottom: 0.065
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Nano",
  10032. height: math.unit(0.1, "mm")
  10033. },
  10034. {
  10035. name: "Micro-",
  10036. height: math.unit(1, "mm")
  10037. },
  10038. {
  10039. name: "Micro",
  10040. height: math.unit(4, "inches")
  10041. },
  10042. {
  10043. name: "Normal",
  10044. height: math.unit(6 + 4 / 12, "feet"),
  10045. default: true
  10046. },
  10047. {
  10048. name: "Macro",
  10049. height: math.unit(115, "feet")
  10050. },
  10051. {
  10052. name: "Macro+",
  10053. height: math.unit(955, "feet")
  10054. },
  10055. {
  10056. name: "Megamacro",
  10057. height: math.unit(8990, "feet")
  10058. },
  10059. {
  10060. name: "Gigmacro",
  10061. height: math.unit(9310, "miles")
  10062. },
  10063. {
  10064. name: "Teramacro",
  10065. height: math.unit(1567005010, "miles")
  10066. },
  10067. {
  10068. name: "Examacro",
  10069. height: math.unit(1425, "parsecs")
  10070. },
  10071. ]
  10072. ))
  10073. characterMakers.push(() => makeCharacter(
  10074. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10075. {
  10076. front: {
  10077. height: math.unit(400, "feet"),
  10078. weight: math.unit(44444444, "lb"),
  10079. name: "Front",
  10080. image: {
  10081. source: "./media/characters/major-colonel/front.svg"
  10082. }
  10083. },
  10084. back: {
  10085. height: math.unit(400, "feet"),
  10086. weight: math.unit(44444444, "lb"),
  10087. name: "Back",
  10088. image: {
  10089. source: "./media/characters/major-colonel/back.svg"
  10090. }
  10091. },
  10092. },
  10093. [
  10094. {
  10095. name: "Macro",
  10096. height: math.unit(400, "feet"),
  10097. default: true
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10103. {
  10104. catFront: {
  10105. height: math.unit(6, "feet"),
  10106. weight: math.unit(120, "lb"),
  10107. name: "Front (Cat Side)",
  10108. image: {
  10109. source: "./media/characters/axel-lycan/cat-front.svg",
  10110. extra: 430 / 402,
  10111. bottom: 43 / 472.35
  10112. }
  10113. },
  10114. catBack: {
  10115. height: math.unit(6, "feet"),
  10116. weight: math.unit(120, "lb"),
  10117. name: "Back (Cat Side)",
  10118. image: {
  10119. source: "./media/characters/axel-lycan/cat-back.svg",
  10120. extra: 447 / 419,
  10121. bottom: 23.3 / 469
  10122. }
  10123. },
  10124. wolfFront: {
  10125. height: math.unit(6, "feet"),
  10126. weight: math.unit(120, "lb"),
  10127. name: "Front (Wolf Side)",
  10128. image: {
  10129. source: "./media/characters/axel-lycan/wolf-front.svg",
  10130. extra: 485 / 456,
  10131. bottom: 19 / 504
  10132. }
  10133. },
  10134. wolfBack: {
  10135. height: math.unit(6, "feet"),
  10136. weight: math.unit(120, "lb"),
  10137. name: "Back (Wolf Side)",
  10138. image: {
  10139. source: "./media/characters/axel-lycan/wolf-back.svg",
  10140. extra: 475 / 438,
  10141. bottom: 39.2 / 514
  10142. }
  10143. },
  10144. },
  10145. [
  10146. {
  10147. name: "Macro",
  10148. height: math.unit(1, "km"),
  10149. default: true
  10150. },
  10151. ]
  10152. ))
  10153. characterMakers.push(() => makeCharacter(
  10154. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10155. {
  10156. front: {
  10157. height: math.unit(5 + 9 / 12, "feet"),
  10158. weight: math.unit(175, "lb"),
  10159. name: "Front",
  10160. image: {
  10161. source: "./media/characters/vanrel-hyena/front.svg",
  10162. extra: 1086 / 1010,
  10163. bottom: 0.04
  10164. }
  10165. },
  10166. },
  10167. [
  10168. {
  10169. name: "Normal",
  10170. height: math.unit(5 + 9 / 12, "feet"),
  10171. default: true
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(6, "feet"),
  10180. weight: math.unit(103, "lb"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/abbott-absol/front.svg",
  10184. extra: 2010 / 1842
  10185. }
  10186. },
  10187. },
  10188. [
  10189. {
  10190. name: "Megamicro",
  10191. height: math.unit(0.1, "mm")
  10192. },
  10193. {
  10194. name: "Micro",
  10195. height: math.unit(1, "inch")
  10196. },
  10197. {
  10198. name: "Normal",
  10199. height: math.unit(6, "feet"),
  10200. default: true
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(6, "feet"),
  10209. weight: math.unit(264, "lb"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/hector/front.svg",
  10213. extra: 2280 / 2130,
  10214. bottom: 0.07
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(12.25, "foot"),
  10222. default: true
  10223. },
  10224. {
  10225. name: "Macro",
  10226. height: math.unit(160, "feet")
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(6, "feet"),
  10235. weight: math.unit(150, "lb"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/sal/front.svg",
  10239. extra: 1846 / 1699,
  10240. bottom: 0.04
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Megamacro",
  10247. height: math.unit(10, "miles"),
  10248. default: true
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10254. {
  10255. front: {
  10256. height: math.unit(3, "meters"),
  10257. weight: math.unit(450, "kg"),
  10258. name: "front",
  10259. image: {
  10260. source: "./media/characters/ranger/front.svg",
  10261. extra: 2401 / 2243,
  10262. bottom: 0.05
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Normal",
  10269. height: math.unit(3, "meters"),
  10270. default: true
  10271. },
  10272. ]
  10273. ))
  10274. characterMakers.push(() => makeCharacter(
  10275. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10276. {
  10277. front: {
  10278. height: math.unit(14, "feet"),
  10279. weight: math.unit(800, "kg"),
  10280. name: "Front",
  10281. image: {
  10282. source: "./media/characters/theresa/front.svg",
  10283. extra: 3575 / 3346,
  10284. bottom: 0.03
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(14, "feet"),
  10292. default: true
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10298. {
  10299. front: {
  10300. height: math.unit(6, "feet"),
  10301. weight: math.unit(3, "kg"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/ine/front.svg",
  10305. extra: 678 / 539,
  10306. bottom: 0.023
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(2.265, "feet"),
  10314. default: true
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(5, "feet"),
  10323. weight: math.unit(30, "kg"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/vial/front.svg",
  10327. extra: 1365 / 1277,
  10328. bottom: 0.04
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(5, "feet"),
  10336. default: true
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10342. {
  10343. side: {
  10344. height: math.unit(3.4, "meters"),
  10345. weight: math.unit(1000, "lb"),
  10346. name: "Side",
  10347. image: {
  10348. source: "./media/characters/rovoska/side.svg",
  10349. extra: 4403 / 1515
  10350. }
  10351. },
  10352. },
  10353. [
  10354. {
  10355. name: "Normal",
  10356. height: math.unit(3.4, "meters"),
  10357. default: true
  10358. },
  10359. ]
  10360. ))
  10361. characterMakers.push(() => makeCharacter(
  10362. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10363. {
  10364. front: {
  10365. height: math.unit(8, "feet"),
  10366. weight: math.unit(315, "lb"),
  10367. name: "Front",
  10368. image: {
  10369. source: "./media/characters/gunner-rotthbauer/front.svg"
  10370. }
  10371. },
  10372. back: {
  10373. height: math.unit(8, "feet"),
  10374. weight: math.unit(315, "lb"),
  10375. name: "Back",
  10376. image: {
  10377. source: "./media/characters/gunner-rotthbauer/back.svg"
  10378. }
  10379. },
  10380. },
  10381. [
  10382. {
  10383. name: "Micro",
  10384. height: math.unit(3.5, "inches")
  10385. },
  10386. {
  10387. name: "Normal",
  10388. height: math.unit(8, "feet"),
  10389. default: true
  10390. },
  10391. {
  10392. name: "Macro",
  10393. height: math.unit(250, "feet")
  10394. },
  10395. {
  10396. name: "Megamacro",
  10397. height: math.unit(1, "AU")
  10398. },
  10399. ]
  10400. ))
  10401. characterMakers.push(() => makeCharacter(
  10402. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10403. {
  10404. front: {
  10405. height: math.unit(5 + 5 / 12, "feet"),
  10406. weight: math.unit(140, "lb"),
  10407. name: "Front",
  10408. image: {
  10409. source: "./media/characters/allatia/front.svg",
  10410. extra: 1227 / 1180,
  10411. bottom: 0.027
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Normal",
  10418. height: math.unit(5 + 5 / 12, "feet")
  10419. },
  10420. {
  10421. name: "Macro",
  10422. height: math.unit(250, "feet"),
  10423. default: true
  10424. },
  10425. {
  10426. name: "Megamacro",
  10427. height: math.unit(8, "miles")
  10428. }
  10429. ]
  10430. ))
  10431. characterMakers.push(() => makeCharacter(
  10432. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10433. {
  10434. front: {
  10435. height: math.unit(6, "feet"),
  10436. weight: math.unit(120, "lb"),
  10437. name: "Front",
  10438. image: {
  10439. source: "./media/characters/tene/front.svg",
  10440. extra: 814/750,
  10441. bottom: 36/850
  10442. }
  10443. },
  10444. stomping: {
  10445. height: math.unit(2.025, "meters"),
  10446. weight: math.unit(120, "lb"),
  10447. name: "Stomping",
  10448. image: {
  10449. source: "./media/characters/tene/stomping.svg",
  10450. extra: 885/821,
  10451. bottom: 15/900
  10452. }
  10453. },
  10454. sitting: {
  10455. height: math.unit(1, "meter"),
  10456. weight: math.unit(120, "lb"),
  10457. name: "Sitting",
  10458. image: {
  10459. source: "./media/characters/tene/sitting.svg",
  10460. extra: 396/366,
  10461. bottom: 79/475
  10462. }
  10463. },
  10464. smiling: {
  10465. height: math.unit(1.2, "feet"),
  10466. name: "Smiling",
  10467. image: {
  10468. source: "./media/characters/tene/smiling.svg",
  10469. extra: 1364/1071,
  10470. bottom: 0/1364
  10471. }
  10472. },
  10473. smug: {
  10474. height: math.unit(1.3, "feet"),
  10475. name: "Smug",
  10476. image: {
  10477. source: "./media/characters/tene/smug.svg",
  10478. extra: 1323/1082,
  10479. bottom: 0/1323
  10480. }
  10481. },
  10482. feral: {
  10483. height: math.unit(3.9, "feet"),
  10484. weight: math.unit(250, "lb"),
  10485. name: "Feral",
  10486. image: {
  10487. source: "./media/characters/tene/feral.svg",
  10488. extra: 717 / 458,
  10489. bottom: 0.179
  10490. }
  10491. },
  10492. },
  10493. [
  10494. {
  10495. name: "Normal",
  10496. height: math.unit(6, "feet")
  10497. },
  10498. {
  10499. name: "Macro",
  10500. height: math.unit(300, "feet"),
  10501. default: true
  10502. },
  10503. {
  10504. name: "Megamacro",
  10505. height: math.unit(5, "miles")
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10511. {
  10512. side: {
  10513. height: math.unit(6, "feet"),
  10514. name: "Side",
  10515. image: {
  10516. source: "./media/characters/evander/side.svg",
  10517. extra: 877 / 477
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(0.83, "meters"),
  10525. default: true
  10526. },
  10527. ]
  10528. ))
  10529. characterMakers.push(() => makeCharacter(
  10530. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10531. {
  10532. front: {
  10533. height: math.unit(12, "feet"),
  10534. weight: math.unit(1000, "lb"),
  10535. name: "Front",
  10536. image: {
  10537. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10538. extra: 1762 / 1611
  10539. }
  10540. },
  10541. back: {
  10542. height: math.unit(12, "feet"),
  10543. weight: math.unit(1000, "lb"),
  10544. name: "Back",
  10545. image: {
  10546. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10547. extra: 1762 / 1611
  10548. }
  10549. },
  10550. },
  10551. [
  10552. {
  10553. name: "Normal",
  10554. height: math.unit(12, "feet"),
  10555. default: true
  10556. },
  10557. {
  10558. name: "Kaiju",
  10559. height: math.unit(150, "feet")
  10560. },
  10561. ]
  10562. ))
  10563. characterMakers.push(() => makeCharacter(
  10564. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10565. {
  10566. front: {
  10567. height: math.unit(6, "feet"),
  10568. weight: math.unit(150, "lb"),
  10569. name: "Front",
  10570. image: {
  10571. source: "./media/characters/zero-alurus/front.svg"
  10572. }
  10573. },
  10574. back: {
  10575. height: math.unit(6, "feet"),
  10576. weight: math.unit(150, "lb"),
  10577. name: "Back",
  10578. image: {
  10579. source: "./media/characters/zero-alurus/back.svg"
  10580. }
  10581. },
  10582. },
  10583. [
  10584. {
  10585. name: "Normal",
  10586. height: math.unit(5 + 10 / 12, "feet")
  10587. },
  10588. {
  10589. name: "Macro",
  10590. height: math.unit(60, "feet"),
  10591. default: true
  10592. },
  10593. {
  10594. name: "Macro+",
  10595. height: math.unit(450, "feet")
  10596. },
  10597. ]
  10598. ))
  10599. characterMakers.push(() => makeCharacter(
  10600. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10601. {
  10602. front: {
  10603. height: math.unit(6, "feet"),
  10604. weight: math.unit(200, "lb"),
  10605. name: "Front",
  10606. image: {
  10607. source: "./media/characters/mega-shi/front.svg",
  10608. extra: 1279 / 1250,
  10609. bottom: 0.02
  10610. }
  10611. },
  10612. back: {
  10613. height: math.unit(6, "feet"),
  10614. weight: math.unit(200, "lb"),
  10615. name: "Back",
  10616. image: {
  10617. source: "./media/characters/mega-shi/back.svg",
  10618. extra: 1279 / 1250,
  10619. bottom: 0.02
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Micro",
  10626. height: math.unit(16 + 6 / 12, "feet")
  10627. },
  10628. {
  10629. name: "Third Dimension",
  10630. height: math.unit(40, "meters")
  10631. },
  10632. {
  10633. name: "Normal",
  10634. height: math.unit(660, "feet"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Megamacro",
  10639. height: math.unit(10, "miles")
  10640. },
  10641. {
  10642. name: "Planetary Launch",
  10643. height: math.unit(500, "miles")
  10644. },
  10645. {
  10646. name: "Interstellar",
  10647. height: math.unit(1e9, "miles")
  10648. },
  10649. {
  10650. name: "Leaving the Universe",
  10651. height: math.unit(1, "gigaparsec")
  10652. },
  10653. {
  10654. name: "Travelling Universes",
  10655. height: math.unit(30e15, "parsecs")
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(5 + 4/12, "feet"),
  10664. weight: math.unit(120, "lb"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/odyssey/front.svg",
  10668. extra: 1747/1571,
  10669. bottom: 47/1794
  10670. }
  10671. },
  10672. side: {
  10673. height: math.unit(5.1, "feet"),
  10674. weight: math.unit(120, "lb"),
  10675. name: "Side",
  10676. image: {
  10677. source: "./media/characters/odyssey/side.svg",
  10678. extra: 1847/1619,
  10679. bottom: 47/1894
  10680. }
  10681. },
  10682. lounging: {
  10683. height: math.unit(1.464, "feet"),
  10684. weight: math.unit(120, "lb"),
  10685. name: "Lounging",
  10686. image: {
  10687. source: "./media/characters/odyssey/lounging.svg",
  10688. extra: 1235/837,
  10689. bottom: 551/1786
  10690. }
  10691. },
  10692. },
  10693. [
  10694. {
  10695. name: "Normal",
  10696. height: math.unit(5 + 4 / 12, "feet")
  10697. },
  10698. {
  10699. name: "Macro",
  10700. height: math.unit(1, "km")
  10701. },
  10702. {
  10703. name: "Megamacro",
  10704. height: math.unit(3000, "km")
  10705. },
  10706. {
  10707. name: "Gigamacro",
  10708. height: math.unit(1, "AU"),
  10709. default: true
  10710. },
  10711. {
  10712. name: "Omniversal",
  10713. height: math.unit(100e14, "lightyears")
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10719. {
  10720. front: {
  10721. height: math.unit(6, "feet"),
  10722. weight: math.unit(300, "lb"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/mekuto/front.svg",
  10726. extra: 921 / 832,
  10727. bottom: 0.03
  10728. }
  10729. },
  10730. hand: {
  10731. height: math.unit(6 / 10.24, "feet"),
  10732. name: "Hand",
  10733. image: {
  10734. source: "./media/characters/mekuto/hand.svg"
  10735. }
  10736. },
  10737. foot: {
  10738. height: math.unit(6 / 5.05, "feet"),
  10739. name: "Foot",
  10740. image: {
  10741. source: "./media/characters/mekuto/foot.svg"
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Minimicro",
  10748. height: math.unit(0.2, "inches")
  10749. },
  10750. {
  10751. name: "Micro",
  10752. height: math.unit(1.5, "inches")
  10753. },
  10754. {
  10755. name: "Normal",
  10756. height: math.unit(5 + 11 / 12, "feet"),
  10757. default: true
  10758. },
  10759. {
  10760. name: "Minimacro",
  10761. height: math.unit(17 + 9 / 12, "feet")
  10762. },
  10763. {
  10764. name: "Macro",
  10765. height: math.unit(177.5, "feet")
  10766. },
  10767. {
  10768. name: "Megamacro",
  10769. height: math.unit(152, "miles")
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10775. {
  10776. front: {
  10777. height: math.unit(6.5, "inches"),
  10778. weight: math.unit(13, "oz"),
  10779. name: "Front",
  10780. image: {
  10781. source: "./media/characters/dafydd-tomos/front.svg",
  10782. extra: 2990 / 2603,
  10783. bottom: 0.03
  10784. }
  10785. },
  10786. },
  10787. [
  10788. {
  10789. name: "Micro",
  10790. height: math.unit(6.5, "inches"),
  10791. default: true
  10792. },
  10793. ]
  10794. ))
  10795. characterMakers.push(() => makeCharacter(
  10796. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10797. {
  10798. front: {
  10799. height: math.unit(6, "feet"),
  10800. weight: math.unit(150, "lb"),
  10801. name: "Front",
  10802. image: {
  10803. source: "./media/characters/splinter/front.svg",
  10804. extra: 2990 / 2882,
  10805. bottom: 0.04
  10806. }
  10807. },
  10808. back: {
  10809. height: math.unit(6, "feet"),
  10810. weight: math.unit(150, "lb"),
  10811. name: "Back",
  10812. image: {
  10813. source: "./media/characters/splinter/back.svg",
  10814. extra: 2990 / 2882,
  10815. bottom: 0.04
  10816. }
  10817. },
  10818. },
  10819. [
  10820. {
  10821. name: "Normal",
  10822. height: math.unit(6, "feet")
  10823. },
  10824. {
  10825. name: "Macro",
  10826. height: math.unit(230, "meters"),
  10827. default: true
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10833. {
  10834. front: {
  10835. height: math.unit(4 + 10 / 12, "feet"),
  10836. weight: math.unit(480, "lb"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/snow-gabumon/front.svg",
  10840. extra: 1140 / 963,
  10841. bottom: 0.058
  10842. }
  10843. },
  10844. back: {
  10845. height: math.unit(4 + 10 / 12, "feet"),
  10846. weight: math.unit(480, "lb"),
  10847. name: "Back",
  10848. image: {
  10849. source: "./media/characters/snow-gabumon/back.svg",
  10850. extra: 1115 / 962,
  10851. bottom: 0.041
  10852. }
  10853. },
  10854. frontUndresed: {
  10855. height: math.unit(4 + 10 / 12, "feet"),
  10856. weight: math.unit(480, "lb"),
  10857. name: "Front (Undressed)",
  10858. image: {
  10859. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10860. extra: 1061 / 960,
  10861. bottom: 0.045
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Micro",
  10868. height: math.unit(1, "inch")
  10869. },
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(4 + 10 / 12, "feet"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Macro",
  10877. height: math.unit(200, "feet")
  10878. },
  10879. {
  10880. name: "Megamacro",
  10881. height: math.unit(120, "miles")
  10882. },
  10883. {
  10884. name: "Gigamacro",
  10885. height: math.unit(9800, "miles")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(1.7, "meters"),
  10894. weight: math.unit(140, "lb"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/moody/front.svg",
  10898. extra: 3226 / 3007,
  10899. bottom: 0.087
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Micro",
  10906. height: math.unit(1, "mm")
  10907. },
  10908. {
  10909. name: "Normal",
  10910. height: math.unit(1.7, "meters"),
  10911. default: true
  10912. },
  10913. {
  10914. name: "Macro",
  10915. height: math.unit(80, "meters")
  10916. },
  10917. {
  10918. name: "Macro+",
  10919. height: math.unit(500, "meters")
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10925. {
  10926. front: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(150, "lb"),
  10929. name: "Front",
  10930. image: {
  10931. source: "./media/characters/zyas/front.svg",
  10932. extra: 1180 / 1120,
  10933. bottom: 0.045
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Normal",
  10940. height: math.unit(10, "feet"),
  10941. default: true
  10942. },
  10943. {
  10944. name: "Macro",
  10945. height: math.unit(500, "feet")
  10946. },
  10947. {
  10948. name: "Megamacro",
  10949. height: math.unit(5, "miles")
  10950. },
  10951. {
  10952. name: "Teramacro",
  10953. height: math.unit(150000, "miles")
  10954. },
  10955. ]
  10956. ))
  10957. characterMakers.push(() => makeCharacter(
  10958. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10959. {
  10960. front: {
  10961. height: math.unit(6, "feet"),
  10962. weight: math.unit(150, "lb"),
  10963. name: "Front",
  10964. image: {
  10965. source: "./media/characters/cuon/front.svg",
  10966. extra: 1390 / 1320,
  10967. bottom: 0.008
  10968. }
  10969. },
  10970. },
  10971. [
  10972. {
  10973. name: "Micro",
  10974. height: math.unit(3, "inches")
  10975. },
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(18 + 9 / 12, "feet"),
  10979. default: true
  10980. },
  10981. {
  10982. name: "Macro",
  10983. height: math.unit(360, "feet")
  10984. },
  10985. {
  10986. name: "Megamacro",
  10987. height: math.unit(360, "miles")
  10988. },
  10989. ]
  10990. ))
  10991. characterMakers.push(() => makeCharacter(
  10992. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10993. {
  10994. front: {
  10995. height: math.unit(2.4, "meters"),
  10996. weight: math.unit(70, "kg"),
  10997. name: "Front",
  10998. image: {
  10999. source: "./media/characters/nyanuxk/front.svg",
  11000. extra: 1172 / 1084,
  11001. bottom: 0.065
  11002. }
  11003. },
  11004. side: {
  11005. height: math.unit(2.4, "meters"),
  11006. weight: math.unit(70, "kg"),
  11007. name: "Side",
  11008. image: {
  11009. source: "./media/characters/nyanuxk/side.svg",
  11010. extra: 1190 / 1132,
  11011. bottom: 0.007
  11012. }
  11013. },
  11014. back: {
  11015. height: math.unit(2.4, "meters"),
  11016. weight: math.unit(70, "kg"),
  11017. name: "Back",
  11018. image: {
  11019. source: "./media/characters/nyanuxk/back.svg",
  11020. extra: 1200 / 1141,
  11021. bottom: 0.015
  11022. }
  11023. },
  11024. foot: {
  11025. height: math.unit(0.52, "meters"),
  11026. name: "Foot",
  11027. image: {
  11028. source: "./media/characters/nyanuxk/foot.svg"
  11029. }
  11030. },
  11031. },
  11032. [
  11033. {
  11034. name: "Micro",
  11035. height: math.unit(2, "cm")
  11036. },
  11037. {
  11038. name: "Normal",
  11039. height: math.unit(2.4, "meters"),
  11040. default: true
  11041. },
  11042. {
  11043. name: "Smaller Macro",
  11044. height: math.unit(120, "meters")
  11045. },
  11046. {
  11047. name: "Bigger Macro",
  11048. height: math.unit(1.2, "km")
  11049. },
  11050. {
  11051. name: "Megamacro",
  11052. height: math.unit(15, "kilometers")
  11053. },
  11054. {
  11055. name: "Gigamacro",
  11056. height: math.unit(2000, "km")
  11057. },
  11058. {
  11059. name: "Teramacro",
  11060. height: math.unit(500000, "km")
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11066. {
  11067. side: {
  11068. height: math.unit(6, "feet"),
  11069. name: "Side",
  11070. image: {
  11071. source: "./media/characters/ailbhe/side.svg",
  11072. extra: 757 / 464,
  11073. bottom: 0.041
  11074. }
  11075. },
  11076. },
  11077. [
  11078. {
  11079. name: "Normal",
  11080. height: math.unit(1.07, "meters"),
  11081. default: true
  11082. },
  11083. ]
  11084. ))
  11085. characterMakers.push(() => makeCharacter(
  11086. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11087. {
  11088. front: {
  11089. height: math.unit(6, "feet"),
  11090. weight: math.unit(120, "kg"),
  11091. name: "Front",
  11092. image: {
  11093. source: "./media/characters/zevulfius/front.svg",
  11094. extra: 965 / 903
  11095. }
  11096. },
  11097. side: {
  11098. height: math.unit(6, "feet"),
  11099. weight: math.unit(120, "kg"),
  11100. name: "Side",
  11101. image: {
  11102. source: "./media/characters/zevulfius/side.svg",
  11103. extra: 939 / 900
  11104. }
  11105. },
  11106. back: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(120, "kg"),
  11109. name: "Back",
  11110. image: {
  11111. source: "./media/characters/zevulfius/back.svg",
  11112. extra: 918 / 854,
  11113. bottom: 0.005
  11114. }
  11115. },
  11116. foot: {
  11117. height: math.unit(6 / 3.72, "feet"),
  11118. name: "Foot",
  11119. image: {
  11120. source: "./media/characters/zevulfius/foot.svg"
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Macro",
  11127. height: math.unit(750, "meters")
  11128. },
  11129. {
  11130. name: "Megamacro",
  11131. height: math.unit(20, "km"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Gigamacro",
  11136. height: math.unit(2000, "km")
  11137. },
  11138. {
  11139. name: "Teramacro",
  11140. height: math.unit(250000, "km")
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11146. {
  11147. front: {
  11148. height: math.unit(100, "feet"),
  11149. weight: math.unit(350, "kg"),
  11150. name: "Front",
  11151. image: {
  11152. source: "./media/characters/rikes/front.svg",
  11153. extra: 1565 / 1483,
  11154. bottom: 0.017
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Macro",
  11161. height: math.unit(100, "feet"),
  11162. default: true
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(8, "feet"),
  11171. weight: math.unit(356, "lb"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/adam-silver-mane/front.svg",
  11175. extra: 1036/937,
  11176. bottom: 63/1099
  11177. }
  11178. },
  11179. side: {
  11180. height: math.unit(8, "feet"),
  11181. weight: math.unit(356, "lb"),
  11182. name: "Side",
  11183. image: {
  11184. source: "./media/characters/adam-silver-mane/side.svg",
  11185. extra: 997/901,
  11186. bottom: 59/1056
  11187. }
  11188. },
  11189. frontNsfw: {
  11190. height: math.unit(8, "feet"),
  11191. weight: math.unit(356, "lb"),
  11192. name: "Front (NSFW)",
  11193. image: {
  11194. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11195. extra: 1036/937,
  11196. bottom: 63/1099
  11197. }
  11198. },
  11199. sideNsfw: {
  11200. height: math.unit(8, "feet"),
  11201. weight: math.unit(356, "lb"),
  11202. name: "Side (NSFW)",
  11203. image: {
  11204. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11205. extra: 997/901,
  11206. bottom: 59/1056
  11207. }
  11208. },
  11209. dick: {
  11210. height: math.unit(2.1, "feet"),
  11211. name: "Dick",
  11212. image: {
  11213. source: "./media/characters/adam-silver-mane/dick.svg"
  11214. }
  11215. },
  11216. taur: {
  11217. height: math.unit(16, "feet"),
  11218. weight: math.unit(1500, "kg"),
  11219. name: "Taur",
  11220. image: {
  11221. source: "./media/characters/adam-silver-mane/taur.svg",
  11222. extra: 1713 / 1571,
  11223. bottom: 0.01
  11224. }
  11225. },
  11226. },
  11227. [
  11228. {
  11229. name: "Normal",
  11230. height: math.unit(8, "feet")
  11231. },
  11232. {
  11233. name: "Minimacro",
  11234. height: math.unit(80, "feet")
  11235. },
  11236. {
  11237. name: "MDA",
  11238. height: math.unit(80, "meters")
  11239. },
  11240. {
  11241. name: "Macro",
  11242. height: math.unit(800, "feet"),
  11243. default: true
  11244. },
  11245. {
  11246. name: "Megamacro",
  11247. height: math.unit(8000, "feet")
  11248. },
  11249. {
  11250. name: "Gigamacro",
  11251. height: math.unit(800, "miles")
  11252. },
  11253. {
  11254. name: "Teramacro",
  11255. height: math.unit(80000, "miles")
  11256. },
  11257. {
  11258. name: "Celestial",
  11259. height: math.unit(8e6, "miles")
  11260. },
  11261. {
  11262. name: "Star Dragon",
  11263. height: math.unit(800000, "parsecs")
  11264. },
  11265. {
  11266. name: "Godly",
  11267. height: math.unit(800, "teraparsecs")
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11273. {
  11274. front: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(150, "lb"),
  11277. name: "Front",
  11278. image: {
  11279. source: "./media/characters/ky'owin/front.svg",
  11280. extra: 3888 / 3068,
  11281. bottom: 0.015
  11282. }
  11283. },
  11284. },
  11285. [
  11286. {
  11287. name: "Normal",
  11288. height: math.unit(6 + 8 / 12, "feet")
  11289. },
  11290. {
  11291. name: "Large",
  11292. height: math.unit(68, "feet")
  11293. },
  11294. {
  11295. name: "Macro",
  11296. height: math.unit(132, "feet")
  11297. },
  11298. {
  11299. name: "Macro+",
  11300. height: math.unit(340, "feet")
  11301. },
  11302. {
  11303. name: "Macro++",
  11304. height: math.unit(680, "feet"),
  11305. default: true
  11306. },
  11307. {
  11308. name: "Megamacro",
  11309. height: math.unit(1, "mile")
  11310. },
  11311. {
  11312. name: "Megamacro+",
  11313. height: math.unit(10, "miles")
  11314. },
  11315. ]
  11316. ))
  11317. characterMakers.push(() => makeCharacter(
  11318. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11319. {
  11320. front: {
  11321. height: math.unit(4, "feet"),
  11322. weight: math.unit(50, "lb"),
  11323. name: "Front",
  11324. image: {
  11325. source: "./media/characters/mal/front.svg",
  11326. extra: 785 / 724,
  11327. bottom: 0.07
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Micro",
  11334. height: math.unit(4, "inches")
  11335. },
  11336. {
  11337. name: "Normal",
  11338. height: math.unit(4, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Macro",
  11343. height: math.unit(200, "feet")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(6, "feet"),
  11352. weight: math.unit(150, "lb"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/jordan-deware/front.svg",
  11356. extra: 1191 / 1012
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Nano",
  11363. height: math.unit(0.01, "mm")
  11364. },
  11365. {
  11366. name: "Minimicro",
  11367. height: math.unit(1, "mm")
  11368. },
  11369. {
  11370. name: "Micro",
  11371. height: math.unit(0.5, "inches")
  11372. },
  11373. {
  11374. name: "Normal",
  11375. height: math.unit(4, "feet"),
  11376. default: true
  11377. },
  11378. {
  11379. name: "Minimacro",
  11380. height: math.unit(40, "meters")
  11381. },
  11382. {
  11383. name: "Small Macro",
  11384. height: math.unit(400, "meters")
  11385. },
  11386. {
  11387. name: "Macro",
  11388. height: math.unit(4, "miles")
  11389. },
  11390. {
  11391. name: "Megamacro",
  11392. height: math.unit(40, "miles")
  11393. },
  11394. {
  11395. name: "Megamacro+",
  11396. height: math.unit(400, "miles")
  11397. },
  11398. {
  11399. name: "Gigamacro",
  11400. height: math.unit(400000, "miles")
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11406. {
  11407. side: {
  11408. height: math.unit(6, "feet"),
  11409. weight: math.unit(150, "lb"),
  11410. name: "Side",
  11411. image: {
  11412. source: "./media/characters/kimiko/side.svg",
  11413. extra: 600 / 358
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Normal",
  11420. height: math.unit(15, "feet"),
  11421. default: true
  11422. },
  11423. {
  11424. name: "Macro",
  11425. height: math.unit(220, "feet")
  11426. },
  11427. {
  11428. name: "Macro+",
  11429. height: math.unit(1450, "feet")
  11430. },
  11431. {
  11432. name: "Megamacro",
  11433. height: math.unit(11500, "feet")
  11434. },
  11435. {
  11436. name: "Gigamacro",
  11437. height: math.unit(9500, "miles")
  11438. },
  11439. {
  11440. name: "Teramacro",
  11441. height: math.unit(2208005005, "miles")
  11442. },
  11443. {
  11444. name: "Examacro",
  11445. height: math.unit(2750, "parsecs")
  11446. },
  11447. {
  11448. name: "Zettamacro",
  11449. height: math.unit(101500, "parsecs")
  11450. },
  11451. ]
  11452. ))
  11453. characterMakers.push(() => makeCharacter(
  11454. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11455. {
  11456. front: {
  11457. height: math.unit(6, "feet"),
  11458. weight: math.unit(70, "kg"),
  11459. name: "Front",
  11460. image: {
  11461. source: "./media/characters/andrew-sleepy/front.svg"
  11462. }
  11463. },
  11464. side: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(70, "kg"),
  11467. name: "Side",
  11468. image: {
  11469. source: "./media/characters/andrew-sleepy/side.svg"
  11470. }
  11471. },
  11472. },
  11473. [
  11474. {
  11475. name: "Micro",
  11476. height: math.unit(1, "mm"),
  11477. default: true
  11478. },
  11479. ]
  11480. ))
  11481. characterMakers.push(() => makeCharacter(
  11482. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11483. {
  11484. front: {
  11485. height: math.unit(6, "feet"),
  11486. weight: math.unit(150, "lb"),
  11487. name: "Front",
  11488. image: {
  11489. source: "./media/characters/judio/front.svg",
  11490. extra: 1258 / 1110
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Normal",
  11497. height: math.unit(5 + 6 / 12, "feet")
  11498. },
  11499. {
  11500. name: "Macro",
  11501. height: math.unit(1000, "feet"),
  11502. default: true
  11503. },
  11504. {
  11505. name: "Megamacro",
  11506. height: math.unit(10, "miles")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11512. {
  11513. frontDressed: {
  11514. height: math.unit(6, "feet"),
  11515. weight: math.unit(68, "kg"),
  11516. name: "Front (Dressed)",
  11517. image: {
  11518. source: "./media/characters/nomaxice/front-dressed.svg",
  11519. extra: 1137/824,
  11520. bottom: 74/1211
  11521. }
  11522. },
  11523. frontShorts: {
  11524. height: math.unit(6, "feet"),
  11525. weight: math.unit(68, "kg"),
  11526. name: "Front (Shorts)",
  11527. image: {
  11528. source: "./media/characters/nomaxice/front-shorts.svg",
  11529. extra: 1137/824,
  11530. bottom: 74/1211
  11531. }
  11532. },
  11533. back: {
  11534. height: math.unit(6, "feet"),
  11535. weight: math.unit(68, "kg"),
  11536. name: "Back",
  11537. image: {
  11538. source: "./media/characters/nomaxice/back.svg",
  11539. extra: 822/786,
  11540. bottom: 39/861
  11541. }
  11542. },
  11543. hand: {
  11544. height: math.unit(0.565, "feet"),
  11545. name: "Hand",
  11546. image: {
  11547. source: "./media/characters/nomaxice/hand.svg"
  11548. }
  11549. },
  11550. foot: {
  11551. height: math.unit(1, "feet"),
  11552. name: "Foot",
  11553. image: {
  11554. source: "./media/characters/nomaxice/foot.svg"
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Micro",
  11561. height: math.unit(8, "cm")
  11562. },
  11563. {
  11564. name: "Norm",
  11565. height: math.unit(1.82, "m")
  11566. },
  11567. {
  11568. name: "Norm+",
  11569. height: math.unit(8.8, "feet"),
  11570. default: true
  11571. },
  11572. {
  11573. name: "Big",
  11574. height: math.unit(8, "meters")
  11575. },
  11576. {
  11577. name: "Macro",
  11578. height: math.unit(18, "meters")
  11579. },
  11580. {
  11581. name: "Macro+",
  11582. height: math.unit(88, "meters")
  11583. },
  11584. ]
  11585. ))
  11586. characterMakers.push(() => makeCharacter(
  11587. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11588. {
  11589. front: {
  11590. height: math.unit(12, "feet"),
  11591. weight: math.unit(1.5, "tons"),
  11592. name: "Front",
  11593. image: {
  11594. source: "./media/characters/dydros/front.svg",
  11595. extra: 863 / 800,
  11596. bottom: 0.015
  11597. }
  11598. },
  11599. back: {
  11600. height: math.unit(12, "feet"),
  11601. weight: math.unit(1.5, "tons"),
  11602. name: "Back",
  11603. image: {
  11604. source: "./media/characters/dydros/back.svg",
  11605. extra: 900 / 843,
  11606. bottom: 0.005
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Normal",
  11613. height: math.unit(12, "feet"),
  11614. default: true
  11615. },
  11616. ]
  11617. ))
  11618. characterMakers.push(() => makeCharacter(
  11619. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11620. {
  11621. front: {
  11622. height: math.unit(6, "feet"),
  11623. weight: math.unit(100, "kg"),
  11624. name: "Front",
  11625. image: {
  11626. source: "./media/characters/riggi/front.svg",
  11627. extra: 5787 / 5303
  11628. }
  11629. },
  11630. hyper: {
  11631. height: math.unit(6 * 5 / 3, "feet"),
  11632. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11633. name: "Hyper",
  11634. image: {
  11635. source: "./media/characters/riggi/hyper.svg",
  11636. extra: 3595 / 3485
  11637. }
  11638. },
  11639. },
  11640. [
  11641. {
  11642. name: "Small Macro",
  11643. height: math.unit(50, "feet")
  11644. },
  11645. {
  11646. name: "Default",
  11647. height: math.unit(200, "feet"),
  11648. default: true
  11649. },
  11650. {
  11651. name: "Loom",
  11652. height: math.unit(10000, "feet")
  11653. },
  11654. {
  11655. name: "Cruising Altitude",
  11656. height: math.unit(30000, "feet")
  11657. },
  11658. {
  11659. name: "Megamacro",
  11660. height: math.unit(100, "miles")
  11661. },
  11662. {
  11663. name: "Continent Sized",
  11664. height: math.unit(2800, "miles")
  11665. },
  11666. {
  11667. name: "Earth Sized",
  11668. height: math.unit(8000, "miles")
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(6, "feet"),
  11677. weight: math.unit(250, "lb"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/alexi/front.svg",
  11681. extra: 3483 / 3291,
  11682. bottom: 0.04
  11683. }
  11684. },
  11685. back: {
  11686. height: math.unit(6, "feet"),
  11687. weight: math.unit(250, "lb"),
  11688. name: "Back",
  11689. image: {
  11690. source: "./media/characters/alexi/back.svg",
  11691. extra: 3533 / 3356,
  11692. bottom: 0.021
  11693. }
  11694. },
  11695. frontTransforming: {
  11696. height: math.unit(8.58, "feet"),
  11697. weight: math.unit(1300, "lb"),
  11698. name: "Transforming",
  11699. image: {
  11700. source: "./media/characters/alexi/front-transforming.svg",
  11701. extra: 437 / 409,
  11702. bottom: 19 / 458.66
  11703. }
  11704. },
  11705. frontTransformed: {
  11706. height: math.unit(12.5, "feet"),
  11707. weight: math.unit(4000, "lb"),
  11708. name: "Transformed",
  11709. image: {
  11710. source: "./media/characters/alexi/front-transformed.svg",
  11711. extra: 639 / 614,
  11712. bottom: 30.55 / 671
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Normal",
  11719. height: math.unit(14, "feet"),
  11720. default: true
  11721. },
  11722. {
  11723. name: "Minimacro",
  11724. height: math.unit(30, "meters")
  11725. },
  11726. {
  11727. name: "Macro",
  11728. height: math.unit(500, "meters")
  11729. },
  11730. {
  11731. name: "Megamacro",
  11732. height: math.unit(9000, "km")
  11733. },
  11734. {
  11735. name: "Teramacro",
  11736. height: math.unit(384000, "km")
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11742. {
  11743. front: {
  11744. height: math.unit(6, "feet"),
  11745. weight: math.unit(150, "lb"),
  11746. name: "Front",
  11747. image: {
  11748. source: "./media/characters/kayroo/front.svg",
  11749. extra: 1153 / 1038,
  11750. bottom: 0.06
  11751. }
  11752. },
  11753. foot: {
  11754. height: math.unit(6, "feet"),
  11755. weight: math.unit(150, "lb"),
  11756. name: "Foot",
  11757. image: {
  11758. source: "./media/characters/kayroo/foot.svg"
  11759. }
  11760. },
  11761. },
  11762. [
  11763. {
  11764. name: "Normal",
  11765. height: math.unit(8, "feet"),
  11766. default: true
  11767. },
  11768. {
  11769. name: "Minimacro",
  11770. height: math.unit(250, "feet")
  11771. },
  11772. {
  11773. name: "Macro",
  11774. height: math.unit(2800, "feet")
  11775. },
  11776. {
  11777. name: "Megamacro",
  11778. height: math.unit(5200, "feet")
  11779. },
  11780. {
  11781. name: "Gigamacro",
  11782. height: math.unit(27000, "feet")
  11783. },
  11784. {
  11785. name: "Omega",
  11786. height: math.unit(45000, "feet")
  11787. },
  11788. ]
  11789. ))
  11790. characterMakers.push(() => makeCharacter(
  11791. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11792. {
  11793. front: {
  11794. height: math.unit(18, "feet"),
  11795. weight: math.unit(5800, "lb"),
  11796. name: "Front",
  11797. image: {
  11798. source: "./media/characters/rhys/front.svg",
  11799. extra: 3386 / 3090,
  11800. bottom: 0.07
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Normal",
  11807. height: math.unit(18, "feet"),
  11808. default: true
  11809. },
  11810. {
  11811. name: "Working Size",
  11812. height: math.unit(200, "feet")
  11813. },
  11814. {
  11815. name: "Demolition Size",
  11816. height: math.unit(2000, "feet")
  11817. },
  11818. {
  11819. name: "Maximum Licensed Size",
  11820. height: math.unit(5, "miles")
  11821. },
  11822. {
  11823. name: "Maximum Observed Size",
  11824. height: math.unit(10, "yottameters")
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(6, "feet"),
  11833. weight: math.unit(250, "lb"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/toto/front.svg",
  11837. extra: 527 / 479,
  11838. bottom: 0.05
  11839. }
  11840. },
  11841. },
  11842. [
  11843. {
  11844. name: "Micro",
  11845. height: math.unit(3, "feet")
  11846. },
  11847. {
  11848. name: "Normal",
  11849. height: math.unit(10, "feet")
  11850. },
  11851. {
  11852. name: "Macro",
  11853. height: math.unit(150, "feet"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Megamacro",
  11858. height: math.unit(1200, "feet")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "King", species: ["lion"], tags: ["anthro"] },
  11864. {
  11865. back: {
  11866. height: math.unit(6, "feet"),
  11867. weight: math.unit(150, "lb"),
  11868. name: "Back",
  11869. image: {
  11870. source: "./media/characters/king/back.svg"
  11871. }
  11872. },
  11873. },
  11874. [
  11875. {
  11876. name: "Micro",
  11877. height: math.unit(2, "inches")
  11878. },
  11879. {
  11880. name: "Normal",
  11881. height: math.unit(8, "feet")
  11882. },
  11883. {
  11884. name: "Macro",
  11885. height: math.unit(200, "feet"),
  11886. default: true
  11887. },
  11888. {
  11889. name: "Megamacro",
  11890. height: math.unit(50, "miles")
  11891. },
  11892. ]
  11893. ))
  11894. characterMakers.push(() => makeCharacter(
  11895. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11896. {
  11897. front: {
  11898. height: math.unit(11, "feet"),
  11899. weight: math.unit(1400, "lb"),
  11900. name: "Front",
  11901. image: {
  11902. source: "./media/characters/cordite/front.svg",
  11903. extra: 1919/1827,
  11904. bottom: 40/1959
  11905. }
  11906. },
  11907. side: {
  11908. height: math.unit(11, "feet"),
  11909. weight: math.unit(1400, "lb"),
  11910. name: "Side",
  11911. image: {
  11912. source: "./media/characters/cordite/side.svg",
  11913. extra: 1908/1793,
  11914. bottom: 38/1946
  11915. }
  11916. },
  11917. back: {
  11918. height: math.unit(11, "feet"),
  11919. weight: math.unit(1400, "lb"),
  11920. name: "Back",
  11921. image: {
  11922. source: "./media/characters/cordite/back.svg",
  11923. extra: 1938/1837,
  11924. bottom: 10/1948
  11925. }
  11926. },
  11927. feral: {
  11928. height: math.unit(2, "feet"),
  11929. weight: math.unit(90, "lb"),
  11930. name: "Feral",
  11931. image: {
  11932. source: "./media/characters/cordite/feral.svg",
  11933. extra: 1260 / 755,
  11934. bottom: 0.05
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(11, "feet"),
  11942. default: true
  11943. },
  11944. ]
  11945. ))
  11946. characterMakers.push(() => makeCharacter(
  11947. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11948. {
  11949. front: {
  11950. height: math.unit(6, "feet"),
  11951. weight: math.unit(150, "lb"),
  11952. name: "Front",
  11953. image: {
  11954. source: "./media/characters/pianostrong/front.svg",
  11955. extra: 6577 / 6254,
  11956. bottom: 0.02
  11957. }
  11958. },
  11959. side: {
  11960. height: math.unit(6, "feet"),
  11961. weight: math.unit(150, "lb"),
  11962. name: "Side",
  11963. image: {
  11964. source: "./media/characters/pianostrong/side.svg",
  11965. extra: 6106 / 5730
  11966. }
  11967. },
  11968. back: {
  11969. height: math.unit(6, "feet"),
  11970. weight: math.unit(150, "lb"),
  11971. name: "Back",
  11972. image: {
  11973. source: "./media/characters/pianostrong/back.svg",
  11974. extra: 6085 / 5733,
  11975. bottom: 0.01
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Macro",
  11982. height: math.unit(100, "feet")
  11983. },
  11984. {
  11985. name: "Macro+",
  11986. height: math.unit(300, "feet"),
  11987. default: true
  11988. },
  11989. {
  11990. name: "Macro++",
  11991. height: math.unit(1000, "feet")
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(6, "feet"),
  12000. weight: math.unit(150, "lb"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/kona/front.svg",
  12004. extra: 2960 / 2629,
  12005. bottom: 0.005
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(11 + 8 / 12, "feet")
  12013. },
  12014. {
  12015. name: "Macro",
  12016. height: math.unit(850, "feet"),
  12017. default: true
  12018. },
  12019. {
  12020. name: "Macro+",
  12021. height: math.unit(1.5, "km"),
  12022. default: true
  12023. },
  12024. {
  12025. name: "Megamacro",
  12026. height: math.unit(80, "miles")
  12027. },
  12028. {
  12029. name: "Gigamacro",
  12030. height: math.unit(3500, "miles")
  12031. },
  12032. ]
  12033. ))
  12034. characterMakers.push(() => makeCharacter(
  12035. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12036. {
  12037. side: {
  12038. height: math.unit(1.9, "meters"),
  12039. weight: math.unit(326, "kg"),
  12040. name: "Side",
  12041. image: {
  12042. source: "./media/characters/levi/side.svg",
  12043. extra: 1704 / 1334,
  12044. bottom: 0.02
  12045. }
  12046. },
  12047. },
  12048. [
  12049. {
  12050. name: "Normal",
  12051. height: math.unit(1.9, "meters"),
  12052. default: true
  12053. },
  12054. {
  12055. name: "Macro",
  12056. height: math.unit(20, "meters")
  12057. },
  12058. {
  12059. name: "Macro+",
  12060. height: math.unit(200, "meters")
  12061. },
  12062. {
  12063. name: "Megamacro",
  12064. height: math.unit(2, "km")
  12065. },
  12066. {
  12067. name: "Megamacro+",
  12068. height: math.unit(20, "km")
  12069. },
  12070. {
  12071. name: "Gigamacro",
  12072. height: math.unit(2500, "km")
  12073. },
  12074. {
  12075. name: "Gigamacro+",
  12076. height: math.unit(120000, "km")
  12077. },
  12078. {
  12079. name: "Teramacro",
  12080. height: math.unit(7.77e6, "km")
  12081. },
  12082. ]
  12083. ))
  12084. characterMakers.push(() => makeCharacter(
  12085. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12086. {
  12087. front: {
  12088. height: math.unit(6 + 4/12, "feet"),
  12089. weight: math.unit(190, "lb"),
  12090. name: "Front",
  12091. image: {
  12092. source: "./media/characters/bmc/front.svg",
  12093. extra: 1626/1472,
  12094. bottom: 79/1705
  12095. }
  12096. },
  12097. back: {
  12098. height: math.unit(6 + 4/12, "feet"),
  12099. weight: math.unit(190, "lb"),
  12100. name: "Back",
  12101. image: {
  12102. source: "./media/characters/bmc/back.svg",
  12103. extra: 1640/1479,
  12104. bottom: 45/1685
  12105. }
  12106. },
  12107. frontArmor: {
  12108. height: math.unit(6 + 4/12, "feet"),
  12109. weight: math.unit(190, "lb"),
  12110. name: "Front-armor",
  12111. image: {
  12112. source: "./media/characters/bmc/front-armor.svg",
  12113. extra: 1538/1468,
  12114. bottom: 79/1617
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Human-sized",
  12121. height: math.unit(6 + 4 / 12, "feet")
  12122. },
  12123. {
  12124. name: "Interactive Size",
  12125. height: math.unit(25, "feet")
  12126. },
  12127. {
  12128. name: "Small",
  12129. height: math.unit(250, "feet")
  12130. },
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(1250, "feet"),
  12134. default: true
  12135. },
  12136. {
  12137. name: "Good Day",
  12138. height: math.unit(88, "miles")
  12139. },
  12140. {
  12141. name: "Largest Measured Size",
  12142. height: math.unit(105.960, "galaxies")
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(20, "feet"),
  12151. weight: math.unit(2016, "kg"),
  12152. name: "Front",
  12153. image: {
  12154. source: "./media/characters/sven-the-kaiju/front.svg",
  12155. extra: 1277/1250,
  12156. bottom: 35/1312
  12157. }
  12158. },
  12159. mouth: {
  12160. height: math.unit(1.85, "feet"),
  12161. name: "Mouth",
  12162. image: {
  12163. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12164. }
  12165. },
  12166. },
  12167. [
  12168. {
  12169. name: "Fairy",
  12170. height: math.unit(6, "inches")
  12171. },
  12172. {
  12173. name: "Normal",
  12174. height: math.unit(20, "feet"),
  12175. default: true
  12176. },
  12177. {
  12178. name: "Rampage",
  12179. height: math.unit(200, "feet")
  12180. },
  12181. {
  12182. name: "Archfey Forest Guardian",
  12183. height: math.unit(1, "mile")
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(4, "meters"),
  12192. weight: math.unit(2, "tons"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/marik/front.svg",
  12196. extra: 1057 / 1003,
  12197. bottom: 0.08
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(4, "meters"),
  12205. default: true
  12206. },
  12207. {
  12208. name: "Macro",
  12209. height: math.unit(20, "meters")
  12210. },
  12211. {
  12212. name: "Megamacro",
  12213. height: math.unit(50, "km")
  12214. },
  12215. {
  12216. name: "Gigamacro",
  12217. height: math.unit(100, "km")
  12218. },
  12219. {
  12220. name: "Alpha Macro",
  12221. height: math.unit(7.88e7, "yottameters")
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(6, "feet"),
  12230. weight: math.unit(110, "lb"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/mel/front.svg",
  12234. extra: 736 / 617,
  12235. bottom: 0.017
  12236. }
  12237. },
  12238. },
  12239. [
  12240. {
  12241. name: "Pico",
  12242. height: math.unit(3, "pm")
  12243. },
  12244. {
  12245. name: "Nano",
  12246. height: math.unit(3, "nm")
  12247. },
  12248. {
  12249. name: "Micro",
  12250. height: math.unit(0.3, "mm"),
  12251. default: true
  12252. },
  12253. {
  12254. name: "Micro+",
  12255. height: math.unit(3, "mm")
  12256. },
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(5 + 10.5 / 12, "feet")
  12260. },
  12261. ]
  12262. ))
  12263. characterMakers.push(() => makeCharacter(
  12264. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12265. {
  12266. kaiju: {
  12267. height: math.unit(1.75, "meters"),
  12268. weight: math.unit(55, "kg"),
  12269. name: "Kaiju",
  12270. image: {
  12271. source: "./media/characters/lykonous/kaiju.svg",
  12272. extra: 1055 / 946,
  12273. bottom: 0.135
  12274. }
  12275. },
  12276. },
  12277. [
  12278. {
  12279. name: "Normal",
  12280. height: math.unit(2.5, "meters"),
  12281. default: true
  12282. },
  12283. {
  12284. name: "Kaiju Dragon",
  12285. height: math.unit(60, "meters")
  12286. },
  12287. {
  12288. name: "Mega Kaiju",
  12289. height: math.unit(120, "km")
  12290. },
  12291. {
  12292. name: "Giga Kaiju",
  12293. height: math.unit(200, "megameters")
  12294. },
  12295. {
  12296. name: "Terra Kaiju",
  12297. height: math.unit(400, "gigameters")
  12298. },
  12299. {
  12300. name: "Kaiju Dragon God",
  12301. height: math.unit(13000, "exaparsecs")
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(6, "feet"),
  12310. weight: math.unit(150, "lb"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/blü/front.svg",
  12314. extra: 1883 / 1564,
  12315. bottom: 0.031
  12316. }
  12317. },
  12318. },
  12319. [
  12320. {
  12321. name: "Normal",
  12322. height: math.unit(13, "feet"),
  12323. default: true
  12324. },
  12325. {
  12326. name: "Big Boi",
  12327. height: math.unit(150, "meters")
  12328. },
  12329. {
  12330. name: "Mini Stomper",
  12331. height: math.unit(300, "meters")
  12332. },
  12333. {
  12334. name: "Macro",
  12335. height: math.unit(1000, "meters")
  12336. },
  12337. {
  12338. name: "Megamacro",
  12339. height: math.unit(11000, "meters")
  12340. },
  12341. {
  12342. name: "Gigamacro",
  12343. height: math.unit(11000, "km")
  12344. },
  12345. {
  12346. name: "Teramacro",
  12347. height: math.unit(420000, "km")
  12348. },
  12349. {
  12350. name: "Examacro",
  12351. height: math.unit(120, "parsecs")
  12352. },
  12353. {
  12354. name: "God Tho",
  12355. height: math.unit(98000000000, "parsecs")
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12361. {
  12362. taurFront: {
  12363. height: math.unit(6, "feet"),
  12364. weight: math.unit(200, "lb"),
  12365. name: "Taur (Front)",
  12366. image: {
  12367. source: "./media/characters/scales/taur-front.svg",
  12368. extra: 1,
  12369. bottom: 0.05
  12370. }
  12371. },
  12372. taurBack: {
  12373. height: math.unit(6, "feet"),
  12374. weight: math.unit(200, "lb"),
  12375. name: "Taur (Back)",
  12376. image: {
  12377. source: "./media/characters/scales/taur-back.svg",
  12378. extra: 1,
  12379. bottom: 0.08
  12380. }
  12381. },
  12382. anthro: {
  12383. height: math.unit(6 * 7 / 12, "feet"),
  12384. weight: math.unit(100, "lb"),
  12385. name: "Anthro",
  12386. image: {
  12387. source: "./media/characters/scales/anthro.svg",
  12388. extra: 1,
  12389. bottom: 0.06
  12390. }
  12391. },
  12392. },
  12393. [
  12394. {
  12395. name: "Normal",
  12396. height: math.unit(12, "feet"),
  12397. default: true
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(6, "feet"),
  12406. weight: math.unit(150, "lb"),
  12407. name: "Front",
  12408. image: {
  12409. source: "./media/characters/koragos/front.svg",
  12410. extra: 841 / 794,
  12411. bottom: 0.035
  12412. }
  12413. },
  12414. back: {
  12415. height: math.unit(6, "feet"),
  12416. weight: math.unit(150, "lb"),
  12417. name: "Back",
  12418. image: {
  12419. source: "./media/characters/koragos/back.svg",
  12420. extra: 841 / 810,
  12421. bottom: 0.022
  12422. }
  12423. },
  12424. },
  12425. [
  12426. {
  12427. name: "Normal",
  12428. height: math.unit(6 + 11 / 12, "feet"),
  12429. default: true
  12430. },
  12431. {
  12432. name: "Macro",
  12433. height: math.unit(490, "feet")
  12434. },
  12435. {
  12436. name: "Megamacro",
  12437. height: math.unit(10, "miles")
  12438. },
  12439. {
  12440. name: "Gigamacro",
  12441. height: math.unit(50, "miles")
  12442. },
  12443. ]
  12444. ))
  12445. characterMakers.push(() => makeCharacter(
  12446. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12447. {
  12448. front: {
  12449. height: math.unit(6, "feet"),
  12450. weight: math.unit(250, "lb"),
  12451. name: "Front",
  12452. image: {
  12453. source: "./media/characters/xylrem/front.svg",
  12454. extra: 3323 / 3050,
  12455. bottom: 0.065
  12456. }
  12457. },
  12458. },
  12459. [
  12460. {
  12461. name: "Micro",
  12462. height: math.unit(4, "feet")
  12463. },
  12464. {
  12465. name: "Normal",
  12466. height: math.unit(16, "feet"),
  12467. default: true
  12468. },
  12469. {
  12470. name: "Macro",
  12471. height: math.unit(2720, "feet")
  12472. },
  12473. {
  12474. name: "Megamacro",
  12475. height: math.unit(25000, "miles")
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12481. {
  12482. front: {
  12483. height: math.unit(8, "feet"),
  12484. weight: math.unit(250, "kg"),
  12485. name: "Front",
  12486. image: {
  12487. source: "./media/characters/ikideru/front.svg",
  12488. extra: 930 / 870,
  12489. bottom: 0.087
  12490. }
  12491. },
  12492. back: {
  12493. height: math.unit(8, "feet"),
  12494. weight: math.unit(250, "kg"),
  12495. name: "Back",
  12496. image: {
  12497. source: "./media/characters/ikideru/back.svg",
  12498. extra: 919 / 852,
  12499. bottom: 0.055
  12500. }
  12501. },
  12502. },
  12503. [
  12504. {
  12505. name: "Rare",
  12506. height: math.unit(8, "feet"),
  12507. default: true
  12508. },
  12509. {
  12510. name: "Playful Loom",
  12511. height: math.unit(80, "feet")
  12512. },
  12513. {
  12514. name: "City Leaner",
  12515. height: math.unit(230, "feet")
  12516. },
  12517. {
  12518. name: "Megamacro",
  12519. height: math.unit(2500, "feet")
  12520. },
  12521. {
  12522. name: "Gigamacro",
  12523. height: math.unit(26400, "feet")
  12524. },
  12525. {
  12526. name: "Tectonic Shifter",
  12527. height: math.unit(1.7, "megameters")
  12528. },
  12529. {
  12530. name: "Planet Carer",
  12531. height: math.unit(21, "megameters")
  12532. },
  12533. {
  12534. name: "God",
  12535. height: math.unit(11157.22, "parsecs")
  12536. },
  12537. ]
  12538. ))
  12539. characterMakers.push(() => makeCharacter(
  12540. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12541. {
  12542. front: {
  12543. height: math.unit(6, "feet"),
  12544. weight: math.unit(120, "lb"),
  12545. name: "Front",
  12546. image: {
  12547. source: "./media/characters/neo/front.svg"
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Micro",
  12554. height: math.unit(2, "inches"),
  12555. default: true
  12556. },
  12557. {
  12558. name: "Human Size",
  12559. height: math.unit(5 + 8 / 12, "feet")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12565. {
  12566. front: {
  12567. height: math.unit(13 + 10 / 12, "feet"),
  12568. weight: math.unit(5320, "lb"),
  12569. name: "Front",
  12570. image: {
  12571. source: "./media/characters/chauncey-chantz/front.svg",
  12572. extra: 1587 / 1435,
  12573. bottom: 0.02
  12574. }
  12575. },
  12576. },
  12577. [
  12578. {
  12579. name: "Normal",
  12580. height: math.unit(13 + 10 / 12, "feet"),
  12581. default: true
  12582. },
  12583. {
  12584. name: "Macro",
  12585. height: math.unit(45, "feet")
  12586. },
  12587. {
  12588. name: "Megamacro",
  12589. height: math.unit(250, "miles")
  12590. },
  12591. {
  12592. name: "Planetary",
  12593. height: math.unit(10000, "miles")
  12594. },
  12595. {
  12596. name: "Galactic",
  12597. height: math.unit(40000, "parsecs")
  12598. },
  12599. {
  12600. name: "Universal",
  12601. height: math.unit(1, "yottameter")
  12602. },
  12603. ]
  12604. ))
  12605. characterMakers.push(() => makeCharacter(
  12606. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12607. {
  12608. front: {
  12609. height: math.unit(6, "feet"),
  12610. weight: math.unit(150, "lb"),
  12611. name: "Front",
  12612. image: {
  12613. source: "./media/characters/epifox/front.svg",
  12614. extra: 1,
  12615. bottom: 0.075
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Micro",
  12622. height: math.unit(6, "inches")
  12623. },
  12624. {
  12625. name: "Normal",
  12626. height: math.unit(12, "feet"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Macro",
  12631. height: math.unit(3810, "feet")
  12632. },
  12633. {
  12634. name: "Megamacro",
  12635. height: math.unit(500, "miles")
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(1.8796, "m"),
  12644. weight: math.unit(230, "lb"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/colin-t/front.svg",
  12648. extra: 1272 / 1193,
  12649. bottom: 0.07
  12650. }
  12651. },
  12652. },
  12653. [
  12654. {
  12655. name: "Micro",
  12656. height: math.unit(0.571, "meters")
  12657. },
  12658. {
  12659. name: "Normal",
  12660. height: math.unit(1.8796, "meters"),
  12661. default: true
  12662. },
  12663. {
  12664. name: "Tall",
  12665. height: math.unit(4, "meters")
  12666. },
  12667. {
  12668. name: "Macro",
  12669. height: math.unit(67.241, "meters")
  12670. },
  12671. {
  12672. name: "Megamacro",
  12673. height: math.unit(371.856, "meters")
  12674. },
  12675. {
  12676. name: "Planetary",
  12677. height: math.unit(12631.5689, "km")
  12678. },
  12679. ]
  12680. ))
  12681. characterMakers.push(() => makeCharacter(
  12682. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12683. {
  12684. front: {
  12685. height: math.unit(1.85, "meters"),
  12686. weight: math.unit(80, "kg"),
  12687. name: "Front",
  12688. image: {
  12689. source: "./media/characters/matvei/front.svg",
  12690. extra: 614 / 594,
  12691. bottom: 0.01
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Normal",
  12698. height: math.unit(1.85, "meters"),
  12699. default: true
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12705. {
  12706. front: {
  12707. height: math.unit(5 + 9 / 12, "feet"),
  12708. weight: math.unit(70, "lb"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/quincy/front.svg",
  12712. extra: 3041 / 2751
  12713. }
  12714. },
  12715. back: {
  12716. height: math.unit(5 + 9 / 12, "feet"),
  12717. weight: math.unit(70, "lb"),
  12718. name: "Back",
  12719. image: {
  12720. source: "./media/characters/quincy/back.svg",
  12721. extra: 3041 / 2751
  12722. }
  12723. },
  12724. flying: {
  12725. height: math.unit(5 + 4 / 12, "feet"),
  12726. weight: math.unit(70, "lb"),
  12727. name: "Flying",
  12728. image: {
  12729. source: "./media/characters/quincy/flying.svg",
  12730. extra: 1044 / 930
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Micro",
  12737. height: math.unit(3, "cm")
  12738. },
  12739. {
  12740. name: "Normal",
  12741. height: math.unit(5 + 9 / 12, "feet")
  12742. },
  12743. {
  12744. name: "Macro",
  12745. height: math.unit(200, "meters"),
  12746. default: true
  12747. },
  12748. {
  12749. name: "Megamacro",
  12750. height: math.unit(1000, "meters")
  12751. },
  12752. ]
  12753. ))
  12754. characterMakers.push(() => makeCharacter(
  12755. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12756. {
  12757. front: {
  12758. height: math.unit(3 + 11/12, "feet"),
  12759. weight: math.unit(50, "lb"),
  12760. name: "Front",
  12761. image: {
  12762. source: "./media/characters/vanrel/front.svg",
  12763. extra: 1104/949,
  12764. bottom: 52/1156
  12765. }
  12766. },
  12767. back: {
  12768. height: math.unit(3 + 11/12, "feet"),
  12769. weight: math.unit(50, "lb"),
  12770. name: "Back",
  12771. image: {
  12772. source: "./media/characters/vanrel/back.svg",
  12773. extra: 1119/976,
  12774. bottom: 37/1156
  12775. }
  12776. },
  12777. tome: {
  12778. height: math.unit(1.35, "feet"),
  12779. weight: math.unit(10, "lb"),
  12780. name: "Vanrel's Tome",
  12781. rename: true,
  12782. image: {
  12783. source: "./media/characters/vanrel/tome.svg"
  12784. }
  12785. },
  12786. beans: {
  12787. height: math.unit(0.89, "feet"),
  12788. name: "Beans",
  12789. image: {
  12790. source: "./media/characters/vanrel/beans.svg"
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(3 + 11/12, "feet"),
  12798. default: true
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(7 + 5 / 12, "feet"),
  12807. name: "Front",
  12808. image: {
  12809. source: "./media/characters/kuiper-vanrel/front.svg",
  12810. extra: 1219/1169,
  12811. bottom: 69/1288
  12812. }
  12813. },
  12814. back: {
  12815. height: math.unit(7 + 5 / 12, "feet"),
  12816. name: "Back",
  12817. image: {
  12818. source: "./media/characters/kuiper-vanrel/back.svg",
  12819. extra: 1236/1193,
  12820. bottom: 27/1263
  12821. }
  12822. },
  12823. foot: {
  12824. height: math.unit(0.55, "meters"),
  12825. name: "Foot",
  12826. image: {
  12827. source: "./media/characters/kuiper-vanrel/foot.svg",
  12828. }
  12829. },
  12830. battle: {
  12831. height: math.unit(6.824, "feet"),
  12832. name: "Battle",
  12833. image: {
  12834. source: "./media/characters/kuiper-vanrel/battle.svg",
  12835. extra: 1466 / 1327,
  12836. bottom: 29 / 1492.5
  12837. }
  12838. },
  12839. meerkui: {
  12840. height: math.unit(18, "inches"),
  12841. name: "Meerkui",
  12842. image: {
  12843. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12844. extra: 1354/1289,
  12845. bottom: 69/1423
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(7 + 5 / 12, "feet"),
  12853. default: true
  12854. },
  12855. ]
  12856. ))
  12857. characterMakers.push(() => makeCharacter(
  12858. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12859. {
  12860. front: {
  12861. height: math.unit(8 + 5 / 12, "feet"),
  12862. name: "Front",
  12863. image: {
  12864. source: "./media/characters/keset-vanrel/front.svg",
  12865. extra: 1231/1148,
  12866. bottom: 82/1313
  12867. }
  12868. },
  12869. back: {
  12870. height: math.unit(8 + 5 / 12, "feet"),
  12871. name: "Back",
  12872. image: {
  12873. source: "./media/characters/keset-vanrel/back.svg",
  12874. extra: 1240/1174,
  12875. bottom: 33/1273
  12876. }
  12877. },
  12878. hand: {
  12879. height: math.unit(0.6, "meters"),
  12880. name: "Hand",
  12881. image: {
  12882. source: "./media/characters/keset-vanrel/hand.svg"
  12883. }
  12884. },
  12885. foot: {
  12886. height: math.unit(0.94978, "meters"),
  12887. name: "Foot",
  12888. image: {
  12889. source: "./media/characters/keset-vanrel/foot.svg"
  12890. }
  12891. },
  12892. battle: {
  12893. height: math.unit(7.408, "feet"),
  12894. name: "Battle",
  12895. image: {
  12896. source: "./media/characters/keset-vanrel/battle.svg",
  12897. extra: 1890 / 1386,
  12898. bottom: 73.28 / 1970
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Normal",
  12905. height: math.unit(8 + 5 / 12, "feet"),
  12906. default: true
  12907. },
  12908. ]
  12909. ))
  12910. characterMakers.push(() => makeCharacter(
  12911. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12912. {
  12913. front: {
  12914. height: math.unit(6, "feet"),
  12915. weight: math.unit(150, "lb"),
  12916. name: "Front",
  12917. image: {
  12918. source: "./media/characters/neos/front.svg",
  12919. extra: 1696 / 992,
  12920. bottom: 0.14
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Normal",
  12927. height: math.unit(54, "cm"),
  12928. default: true
  12929. },
  12930. {
  12931. name: "Macro",
  12932. height: math.unit(100, "m")
  12933. },
  12934. {
  12935. name: "Megamacro",
  12936. height: math.unit(10, "km")
  12937. },
  12938. {
  12939. name: "Megamacro+",
  12940. height: math.unit(100, "km")
  12941. },
  12942. {
  12943. name: "Gigamacro",
  12944. height: math.unit(100, "Mm")
  12945. },
  12946. {
  12947. name: "Teramacro",
  12948. height: math.unit(100, "Gm")
  12949. },
  12950. {
  12951. name: "Examacro",
  12952. height: math.unit(100, "Em")
  12953. },
  12954. {
  12955. name: "Godly",
  12956. height: math.unit(10000, "Ym")
  12957. },
  12958. {
  12959. name: "Beyond Godly",
  12960. height: math.unit(25, "multiverses")
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12966. {
  12967. feminine: {
  12968. height: math.unit(5, "feet"),
  12969. weight: math.unit(100, "lb"),
  12970. name: "Feminine",
  12971. image: {
  12972. source: "./media/characters/sammy-mouse/feminine.svg",
  12973. extra: 2526 / 2425,
  12974. bottom: 0.123
  12975. }
  12976. },
  12977. masculine: {
  12978. height: math.unit(5, "feet"),
  12979. weight: math.unit(100, "lb"),
  12980. name: "Masculine",
  12981. image: {
  12982. source: "./media/characters/sammy-mouse/masculine.svg",
  12983. extra: 2526 / 2425,
  12984. bottom: 0.123
  12985. }
  12986. },
  12987. },
  12988. [
  12989. {
  12990. name: "Micro",
  12991. height: math.unit(5, "inches")
  12992. },
  12993. {
  12994. name: "Normal",
  12995. height: math.unit(5, "feet"),
  12996. default: true
  12997. },
  12998. {
  12999. name: "Macro",
  13000. height: math.unit(60, "feet")
  13001. },
  13002. ]
  13003. ))
  13004. characterMakers.push(() => makeCharacter(
  13005. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13006. {
  13007. front: {
  13008. height: math.unit(4, "feet"),
  13009. weight: math.unit(50, "lb"),
  13010. name: "Front",
  13011. image: {
  13012. source: "./media/characters/kole/front.svg",
  13013. extra: 1423 / 1303,
  13014. bottom: 0.025
  13015. }
  13016. },
  13017. back: {
  13018. height: math.unit(4, "feet"),
  13019. weight: math.unit(50, "lb"),
  13020. name: "Back",
  13021. image: {
  13022. source: "./media/characters/kole/back.svg",
  13023. extra: 1426 / 1280,
  13024. bottom: 0.02
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Normal",
  13031. height: math.unit(4, "feet"),
  13032. default: true
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(2.5, "feet"),
  13041. weight: math.unit(32, "lb"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/rufran/front.svg",
  13045. extra: 1313/885,
  13046. bottom: 94/1407
  13047. }
  13048. },
  13049. side: {
  13050. height: math.unit(2.5, "feet"),
  13051. weight: math.unit(32, "lb"),
  13052. name: "Side",
  13053. image: {
  13054. source: "./media/characters/rufran/side.svg",
  13055. extra: 1109/852,
  13056. bottom: 118/1227
  13057. }
  13058. },
  13059. back: {
  13060. height: math.unit(2.5, "feet"),
  13061. weight: math.unit(32, "lb"),
  13062. name: "Back",
  13063. image: {
  13064. source: "./media/characters/rufran/back.svg",
  13065. extra: 1280/878,
  13066. bottom: 131/1411
  13067. }
  13068. },
  13069. mouth: {
  13070. height: math.unit(1.13, "feet"),
  13071. name: "Mouth",
  13072. image: {
  13073. source: "./media/characters/rufran/mouth.svg"
  13074. }
  13075. },
  13076. foot: {
  13077. height: math.unit(1.33, "feet"),
  13078. name: "Foot",
  13079. image: {
  13080. source: "./media/characters/rufran/foot.svg"
  13081. }
  13082. },
  13083. koboldFront: {
  13084. height: math.unit(2 + 6 / 12, "feet"),
  13085. weight: math.unit(20, "lb"),
  13086. name: "Front (Kobold)",
  13087. image: {
  13088. source: "./media/characters/rufran/kobold-front.svg",
  13089. extra: 2041 / 1839,
  13090. bottom: 0.055
  13091. }
  13092. },
  13093. koboldBack: {
  13094. height: math.unit(2 + 6 / 12, "feet"),
  13095. weight: math.unit(20, "lb"),
  13096. name: "Back (Kobold)",
  13097. image: {
  13098. source: "./media/characters/rufran/kobold-back.svg",
  13099. extra: 2054 / 1839,
  13100. bottom: 0.01
  13101. }
  13102. },
  13103. koboldHand: {
  13104. height: math.unit(0.2166, "meters"),
  13105. name: "Hand (Kobold)",
  13106. image: {
  13107. source: "./media/characters/rufran/kobold-hand.svg"
  13108. }
  13109. },
  13110. koboldFoot: {
  13111. height: math.unit(0.185, "meters"),
  13112. name: "Foot (Kobold)",
  13113. image: {
  13114. source: "./media/characters/rufran/kobold-foot.svg"
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Micro",
  13121. height: math.unit(1, "inch")
  13122. },
  13123. {
  13124. name: "Normal",
  13125. height: math.unit(2 + 6 / 12, "feet"),
  13126. default: true
  13127. },
  13128. {
  13129. name: "Big",
  13130. height: math.unit(60, "feet")
  13131. },
  13132. {
  13133. name: "Macro",
  13134. height: math.unit(325, "feet")
  13135. },
  13136. ]
  13137. ))
  13138. characterMakers.push(() => makeCharacter(
  13139. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13140. {
  13141. front: {
  13142. height: math.unit(0.3, "meters"),
  13143. weight: math.unit(3.5, "kg"),
  13144. name: "Front",
  13145. image: {
  13146. source: "./media/characters/chip/front.svg",
  13147. extra: 748 / 674
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Micro",
  13154. height: math.unit(1, "inch"),
  13155. default: true
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13161. {
  13162. side: {
  13163. height: math.unit(2.3, "meters"),
  13164. weight: math.unit(3500, "lb"),
  13165. name: "Side",
  13166. image: {
  13167. source: "./media/characters/torvid/side.svg",
  13168. extra: 1972 / 722,
  13169. bottom: 0.035
  13170. }
  13171. },
  13172. },
  13173. [
  13174. {
  13175. name: "Normal",
  13176. height: math.unit(2.3, "meters"),
  13177. default: true
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13183. {
  13184. front: {
  13185. height: math.unit(2, "meters"),
  13186. weight: math.unit(150.5, "kg"),
  13187. name: "Front",
  13188. image: {
  13189. source: "./media/characters/susan/front.svg",
  13190. extra: 693 / 635,
  13191. bottom: 0.05
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Megamacro",
  13198. height: math.unit(505, "miles"),
  13199. default: true
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6, "feet"),
  13208. weight: math.unit(150, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/raindrops/front.svg",
  13212. extra: 2655 / 2461,
  13213. bottom: 49 / 2705
  13214. }
  13215. },
  13216. back: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(150, "lb"),
  13219. name: "Back",
  13220. image: {
  13221. source: "./media/characters/raindrops/back.svg",
  13222. extra: 2574 / 2400,
  13223. bottom: 65 / 2634
  13224. }
  13225. },
  13226. },
  13227. [
  13228. {
  13229. name: "Micro",
  13230. height: math.unit(6, "inches")
  13231. },
  13232. {
  13233. name: "Normal",
  13234. height: math.unit(6 + 2 / 12, "feet")
  13235. },
  13236. {
  13237. name: "Macro",
  13238. height: math.unit(131, "feet"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Megamacro",
  13243. height: math.unit(15, "miles")
  13244. },
  13245. {
  13246. name: "Gigamacro",
  13247. height: math.unit(4000, "miles")
  13248. },
  13249. {
  13250. name: "Teramacro",
  13251. height: math.unit(315000, "miles")
  13252. },
  13253. ]
  13254. ))
  13255. characterMakers.push(() => makeCharacter(
  13256. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13257. {
  13258. front: {
  13259. height: math.unit(2.794, "meters"),
  13260. weight: math.unit(325, "kg"),
  13261. name: "Front",
  13262. image: {
  13263. source: "./media/characters/tezwa/front.svg",
  13264. extra: 2083 / 1906,
  13265. bottom: 0.031
  13266. }
  13267. },
  13268. foot: {
  13269. height: math.unit(0.687, "meters"),
  13270. name: "Foot",
  13271. image: {
  13272. source: "./media/characters/tezwa/foot.svg"
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Normal",
  13279. height: math.unit(9 + 2 / 12, "feet"),
  13280. default: true
  13281. },
  13282. ]
  13283. ))
  13284. characterMakers.push(() => makeCharacter(
  13285. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13286. {
  13287. front: {
  13288. height: math.unit(58, "feet"),
  13289. weight: math.unit(89000, "lb"),
  13290. name: "Front",
  13291. image: {
  13292. source: "./media/characters/typhus/front.svg",
  13293. extra: 816 / 800,
  13294. bottom: 0.065
  13295. }
  13296. },
  13297. },
  13298. [
  13299. {
  13300. name: "Macro",
  13301. height: math.unit(58, "feet"),
  13302. default: true
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13308. {
  13309. front: {
  13310. height: math.unit(12, "feet"),
  13311. weight: math.unit(6, "tonnes"),
  13312. name: "Front",
  13313. image: {
  13314. source: "./media/characters/lyra-von-wulf/front.svg",
  13315. extra: 1,
  13316. bottom: 0.10
  13317. }
  13318. },
  13319. frontMecha: {
  13320. height: math.unit(12, "feet"),
  13321. weight: math.unit(12, "tonnes"),
  13322. name: "Front (Mecha)",
  13323. image: {
  13324. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13325. extra: 1,
  13326. bottom: 0.042
  13327. }
  13328. },
  13329. maw: {
  13330. height: math.unit(2.2, "feet"),
  13331. name: "Maw",
  13332. image: {
  13333. source: "./media/characters/lyra-von-wulf/maw.svg"
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(12, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Classic",
  13345. height: math.unit(50, "feet")
  13346. },
  13347. {
  13348. name: "Macro",
  13349. height: math.unit(500, "feet")
  13350. },
  13351. {
  13352. name: "Megamacro",
  13353. height: math.unit(1, "mile")
  13354. },
  13355. {
  13356. name: "Gigamacro",
  13357. height: math.unit(400, "miles")
  13358. },
  13359. {
  13360. name: "Teramacro",
  13361. height: math.unit(22000, "miles")
  13362. },
  13363. {
  13364. name: "Solarmacro",
  13365. height: math.unit(8600000, "miles")
  13366. },
  13367. {
  13368. name: "Galactic",
  13369. height: math.unit(1057000, "lightyears")
  13370. },
  13371. ]
  13372. ))
  13373. characterMakers.push(() => makeCharacter(
  13374. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13375. {
  13376. front: {
  13377. height: math.unit(6 + 10 / 12, "feet"),
  13378. weight: math.unit(150, "lb"),
  13379. name: "Front",
  13380. image: {
  13381. source: "./media/characters/dixon/front.svg",
  13382. extra: 3361 / 3209,
  13383. bottom: 0.01
  13384. }
  13385. },
  13386. },
  13387. [
  13388. {
  13389. name: "Normal",
  13390. height: math.unit(6 + 10 / 12, "feet"),
  13391. default: true
  13392. },
  13393. {
  13394. name: "Big",
  13395. height: math.unit(12, "meters")
  13396. },
  13397. {
  13398. name: "Macro",
  13399. height: math.unit(500, "meters")
  13400. },
  13401. {
  13402. name: "Megamacro",
  13403. height: math.unit(2, "km")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(185, "cm"),
  13412. weight: math.unit(68, "kg"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/kauko/front.svg",
  13416. extra: 1455 / 1421,
  13417. bottom: 0.03
  13418. }
  13419. },
  13420. back: {
  13421. height: math.unit(185, "cm"),
  13422. weight: math.unit(68, "kg"),
  13423. name: "Back",
  13424. image: {
  13425. source: "./media/characters/kauko/back.svg",
  13426. extra: 1455 / 1421,
  13427. bottom: 0.004
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Normal",
  13434. height: math.unit(185, "cm"),
  13435. default: true
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13441. {
  13442. front: {
  13443. height: math.unit(6, "feet"),
  13444. weight: math.unit(150, "kg"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/varg/front.svg",
  13448. extra: 1108 / 1018,
  13449. bottom: 0.0375
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Normal",
  13456. height: math.unit(5, "meters")
  13457. },
  13458. {
  13459. name: "Macro",
  13460. height: math.unit(200, "meters")
  13461. },
  13462. {
  13463. name: "Megamacro",
  13464. height: math.unit(20, "kilometers")
  13465. },
  13466. {
  13467. name: "True Size",
  13468. height: math.unit(211, "km"),
  13469. default: true
  13470. },
  13471. {
  13472. name: "Gigamacro",
  13473. height: math.unit(1000, "km")
  13474. },
  13475. {
  13476. name: "Gigamacro+",
  13477. height: math.unit(8000, "km")
  13478. },
  13479. {
  13480. name: "Teramacro",
  13481. height: math.unit(1000000, "km")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(7 + 7 / 12, "feet"),
  13490. weight: math.unit(267, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/dayza/front.svg",
  13494. extra: 1262 / 1200,
  13495. bottom: 0.035
  13496. }
  13497. },
  13498. side: {
  13499. height: math.unit(7 + 7 / 12, "feet"),
  13500. weight: math.unit(267, "lb"),
  13501. name: "Side",
  13502. image: {
  13503. source: "./media/characters/dayza/side.svg",
  13504. extra: 1295 / 1245,
  13505. bottom: 0.05
  13506. }
  13507. },
  13508. back: {
  13509. height: math.unit(7 + 7 / 12, "feet"),
  13510. weight: math.unit(267, "lb"),
  13511. name: "Back",
  13512. image: {
  13513. source: "./media/characters/dayza/back.svg",
  13514. extra: 1241 / 1170
  13515. }
  13516. },
  13517. },
  13518. [
  13519. {
  13520. name: "Normal",
  13521. height: math.unit(7 + 7 / 12, "feet"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Macro",
  13526. height: math.unit(155, "feet")
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13532. {
  13533. front: {
  13534. height: math.unit(6 + 5 / 12, "feet"),
  13535. weight: math.unit(160, "lb"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/xanthos/front.svg",
  13539. extra: 1,
  13540. bottom: 0.04
  13541. }
  13542. },
  13543. back: {
  13544. height: math.unit(6 + 5 / 12, "feet"),
  13545. weight: math.unit(160, "lb"),
  13546. name: "Back",
  13547. image: {
  13548. source: "./media/characters/xanthos/back.svg",
  13549. extra: 1,
  13550. bottom: 0.03
  13551. }
  13552. },
  13553. hand: {
  13554. height: math.unit(0.928, "feet"),
  13555. name: "Hand",
  13556. image: {
  13557. source: "./media/characters/xanthos/hand.svg"
  13558. }
  13559. },
  13560. foot: {
  13561. height: math.unit(1.286, "feet"),
  13562. name: "Foot",
  13563. image: {
  13564. source: "./media/characters/xanthos/foot.svg"
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Normal",
  13571. height: math.unit(6 + 5 / 12, "feet"),
  13572. default: true
  13573. },
  13574. {
  13575. name: "Normal+",
  13576. height: math.unit(6, "meters")
  13577. },
  13578. {
  13579. name: "Macro",
  13580. height: math.unit(40, "feet")
  13581. },
  13582. {
  13583. name: "Macro+",
  13584. height: math.unit(200, "meters")
  13585. },
  13586. {
  13587. name: "Megamacro",
  13588. height: math.unit(20, "km")
  13589. },
  13590. {
  13591. name: "Megamacro+",
  13592. height: math.unit(100, "km")
  13593. },
  13594. {
  13595. name: "Gigamacro",
  13596. height: math.unit(200, "megameters")
  13597. },
  13598. {
  13599. name: "Gigamacro+",
  13600. height: math.unit(1.5, "gigameters")
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(6 + 3 / 12, "feet"),
  13609. weight: math.unit(215, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/grynn/front.svg",
  13613. extra: 4627 / 4209,
  13614. bottom: 0.047
  13615. }
  13616. },
  13617. },
  13618. [
  13619. {
  13620. name: "Micro",
  13621. height: math.unit(6, "inches")
  13622. },
  13623. {
  13624. name: "Normal",
  13625. height: math.unit(6 + 3 / 12, "feet"),
  13626. default: true
  13627. },
  13628. {
  13629. name: "Big",
  13630. height: math.unit(104, "feet")
  13631. },
  13632. {
  13633. name: "Macro",
  13634. height: math.unit(944, "feet")
  13635. },
  13636. {
  13637. name: "Macro+",
  13638. height: math.unit(9480, "feet")
  13639. },
  13640. {
  13641. name: "Megamacro",
  13642. height: math.unit(78752, "feet")
  13643. },
  13644. {
  13645. name: "Megamacro+",
  13646. height: math.unit(630128, "feet")
  13647. },
  13648. {
  13649. name: "Megamacro++",
  13650. height: math.unit(3150695, "feet")
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13656. {
  13657. front: {
  13658. height: math.unit(7 + 5 / 12, "feet"),
  13659. weight: math.unit(450, "lb"),
  13660. name: "Front",
  13661. image: {
  13662. source: "./media/characters/mocha-aura/front.svg",
  13663. extra: 1907 / 1817,
  13664. bottom: 0.04
  13665. }
  13666. },
  13667. back: {
  13668. height: math.unit(7 + 5 / 12, "feet"),
  13669. weight: math.unit(450, "lb"),
  13670. name: "Back",
  13671. image: {
  13672. source: "./media/characters/mocha-aura/back.svg",
  13673. extra: 1900 / 1825,
  13674. bottom: 0.045
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Nano",
  13681. height: math.unit(1, "nm")
  13682. },
  13683. {
  13684. name: "Megamicro",
  13685. height: math.unit(1, "mm")
  13686. },
  13687. {
  13688. name: "Micro",
  13689. height: math.unit(3, "inches")
  13690. },
  13691. {
  13692. name: "Normal",
  13693. height: math.unit(7 + 5 / 12, "feet"),
  13694. default: true
  13695. },
  13696. {
  13697. name: "Macro",
  13698. height: math.unit(30, "feet")
  13699. },
  13700. {
  13701. name: "Megamacro",
  13702. height: math.unit(3500, "feet")
  13703. },
  13704. {
  13705. name: "Teramacro",
  13706. height: math.unit(500000, "miles")
  13707. },
  13708. {
  13709. name: "Petamacro",
  13710. height: math.unit(50000000000000000, "parsecs")
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13716. {
  13717. front: {
  13718. height: math.unit(6, "feet"),
  13719. weight: math.unit(150, "lb"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/ilisha-devya/front.svg",
  13723. extra: 1053/1049,
  13724. bottom: 270/1323
  13725. }
  13726. },
  13727. back: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(150, "lb"),
  13730. name: "Back",
  13731. image: {
  13732. source: "./media/characters/ilisha-devya/back.svg",
  13733. extra: 1131/1128,
  13734. bottom: 39/1170
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Macro",
  13741. height: math.unit(500, "feet"),
  13742. default: true
  13743. },
  13744. {
  13745. name: "Megamacro",
  13746. height: math.unit(10, "miles")
  13747. },
  13748. {
  13749. name: "Gigamacro",
  13750. height: math.unit(100000, "miles")
  13751. },
  13752. {
  13753. name: "Examacro",
  13754. height: math.unit(1e9, "lightyears")
  13755. },
  13756. {
  13757. name: "Omniversal",
  13758. height: math.unit(1e33, "lightyears")
  13759. },
  13760. {
  13761. name: "Beyond Infinite",
  13762. height: math.unit(1e100, "lightyears")
  13763. },
  13764. ]
  13765. ))
  13766. characterMakers.push(() => makeCharacter(
  13767. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13768. {
  13769. Side: {
  13770. height: math.unit(6, "feet"),
  13771. weight: math.unit(150, "lb"),
  13772. name: "Side",
  13773. image: {
  13774. source: "./media/characters/mira/side.svg",
  13775. extra: 900 / 799,
  13776. bottom: 0.02
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Human Size",
  13783. height: math.unit(6, "feet")
  13784. },
  13785. {
  13786. name: "Macro",
  13787. height: math.unit(100, "feet"),
  13788. default: true
  13789. },
  13790. {
  13791. name: "Megamacro",
  13792. height: math.unit(10, "miles")
  13793. },
  13794. {
  13795. name: "Gigamacro",
  13796. height: math.unit(25000, "miles")
  13797. },
  13798. {
  13799. name: "Teramacro",
  13800. height: math.unit(300, "AU")
  13801. },
  13802. {
  13803. name: "Full Size",
  13804. height: math.unit(4.5e10, "lightyears")
  13805. },
  13806. ]
  13807. ))
  13808. characterMakers.push(() => makeCharacter(
  13809. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13810. {
  13811. front: {
  13812. height: math.unit(6, "feet"),
  13813. weight: math.unit(150, "lb"),
  13814. name: "Front",
  13815. image: {
  13816. source: "./media/characters/holly/front.svg",
  13817. extra: 639 / 606
  13818. }
  13819. },
  13820. back: {
  13821. height: math.unit(6, "feet"),
  13822. weight: math.unit(150, "lb"),
  13823. name: "Back",
  13824. image: {
  13825. source: "./media/characters/holly/back.svg",
  13826. extra: 623 / 598
  13827. }
  13828. },
  13829. frontWorking: {
  13830. height: math.unit(6, "feet"),
  13831. weight: math.unit(150, "lb"),
  13832. name: "Front (Working)",
  13833. image: {
  13834. source: "./media/characters/holly/front-working.svg",
  13835. extra: 607 / 577,
  13836. bottom: 0.048
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Normal",
  13843. height: math.unit(12 + 3 / 12, "feet"),
  13844. default: true
  13845. },
  13846. ]
  13847. ))
  13848. characterMakers.push(() => makeCharacter(
  13849. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13850. {
  13851. front: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Front",
  13855. image: {
  13856. source: "./media/characters/porter/front.svg",
  13857. extra: 1,
  13858. bottom: 0.01
  13859. }
  13860. },
  13861. frontRobes: {
  13862. height: math.unit(6, "feet"),
  13863. weight: math.unit(150, "lb"),
  13864. name: "Front (Robes)",
  13865. image: {
  13866. source: "./media/characters/porter/front-robes.svg",
  13867. extra: 1.01,
  13868. bottom: 0.01
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Normal",
  13875. height: math.unit(11 + 9 / 12, "feet"),
  13876. default: true
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13882. {
  13883. legendary: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Legendary",
  13887. image: {
  13888. source: "./media/characters/lucy/legendary.svg",
  13889. extra: 1355 / 1100,
  13890. bottom: 0.045
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Legendary",
  13897. height: math.unit(86882 * 2, "miles"),
  13898. default: true
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(6, "feet"),
  13907. weight: math.unit(150, "lb"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/drusilla/front.svg",
  13911. extra: 678 / 635,
  13912. bottom: 0.03
  13913. }
  13914. },
  13915. back: {
  13916. height: math.unit(6, "feet"),
  13917. weight: math.unit(150, "lb"),
  13918. name: "Back",
  13919. image: {
  13920. source: "./media/characters/drusilla/back.svg",
  13921. extra: 678 / 635,
  13922. bottom: 0.005
  13923. }
  13924. },
  13925. },
  13926. [
  13927. {
  13928. name: "Macro",
  13929. height: math.unit(100, "feet")
  13930. },
  13931. {
  13932. name: "Canon Height",
  13933. height: math.unit(2000, "feet"),
  13934. default: true
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13940. {
  13941. front: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(180, "lb"),
  13944. name: "Front",
  13945. image: {
  13946. source: "./media/characters/renard-thatch/front.svg",
  13947. extra: 2411 / 2275,
  13948. bottom: 0.01
  13949. }
  13950. },
  13951. frontPosing: {
  13952. height: math.unit(6, "feet"),
  13953. weight: math.unit(180, "lb"),
  13954. name: "Front (Posing)",
  13955. image: {
  13956. source: "./media/characters/renard-thatch/front-posing.svg",
  13957. extra: 2381 / 2261,
  13958. bottom: 0.01
  13959. }
  13960. },
  13961. back: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(180, "lb"),
  13964. name: "Back",
  13965. image: {
  13966. source: "./media/characters/renard-thatch/back.svg",
  13967. extra: 2428 / 2288
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Micro",
  13974. height: math.unit(3, "inches")
  13975. },
  13976. {
  13977. name: "Default",
  13978. height: math.unit(6, "feet"),
  13979. default: true
  13980. },
  13981. {
  13982. name: "Macro",
  13983. height: math.unit(75, "feet")
  13984. },
  13985. ]
  13986. ))
  13987. characterMakers.push(() => makeCharacter(
  13988. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13989. {
  13990. front: {
  13991. height: math.unit(1450, "feet"),
  13992. weight: math.unit(1.21e6, "tons"),
  13993. name: "Front",
  13994. image: {
  13995. source: "./media/characters/sekvra/front.svg",
  13996. extra: 1193/1190,
  13997. bottom: 78/1271
  13998. }
  13999. },
  14000. side: {
  14001. height: math.unit(1450, "feet"),
  14002. weight: math.unit(1.21e6, "tons"),
  14003. name: "Side",
  14004. image: {
  14005. source: "./media/characters/sekvra/side.svg",
  14006. extra: 1193/1190,
  14007. bottom: 52/1245
  14008. }
  14009. },
  14010. back: {
  14011. height: math.unit(1450, "feet"),
  14012. weight: math.unit(1.21e6, "tons"),
  14013. name: "Back",
  14014. image: {
  14015. source: "./media/characters/sekvra/back.svg",
  14016. extra: 1219/1216,
  14017. bottom: 21/1240
  14018. }
  14019. },
  14020. frontClothed: {
  14021. height: math.unit(1450, "feet"),
  14022. weight: math.unit(1.21e6, "tons"),
  14023. name: "Front (Clothed)",
  14024. image: {
  14025. source: "./media/characters/sekvra/front-clothed.svg",
  14026. extra: 1192/1189,
  14027. bottom: 79/1271
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Macro",
  14034. height: math.unit(1450, "feet"),
  14035. default: true
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(15000, "feet")
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(6, "feet"),
  14048. weight: math.unit(150, "lb"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/carmine/front.svg",
  14052. extra: 1,
  14053. bottom: 0.035
  14054. }
  14055. },
  14056. frontArmor: {
  14057. height: math.unit(6, "feet"),
  14058. weight: math.unit(150, "lb"),
  14059. name: "Front (Armor)",
  14060. image: {
  14061. source: "./media/characters/carmine/front-armor.svg",
  14062. extra: 1,
  14063. bottom: 0.035
  14064. }
  14065. },
  14066. },
  14067. [
  14068. {
  14069. name: "Large",
  14070. height: math.unit(1, "mile")
  14071. },
  14072. {
  14073. name: "Huge",
  14074. height: math.unit(40, "miles"),
  14075. default: true
  14076. },
  14077. {
  14078. name: "Colossal",
  14079. height: math.unit(2500, "miles")
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14085. {
  14086. front: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(150, "lb"),
  14089. name: "Front",
  14090. image: {
  14091. source: "./media/characters/elyssia/front.svg",
  14092. extra: 2201 / 2035,
  14093. bottom: 0.05
  14094. }
  14095. },
  14096. frontClothed: {
  14097. height: math.unit(6, "feet"),
  14098. weight: math.unit(150, "lb"),
  14099. name: "Front (Clothed)",
  14100. image: {
  14101. source: "./media/characters/elyssia/front-clothed.svg",
  14102. extra: 2201 / 2035,
  14103. bottom: 0.05
  14104. }
  14105. },
  14106. back: {
  14107. height: math.unit(6, "feet"),
  14108. weight: math.unit(150, "lb"),
  14109. name: "Back",
  14110. image: {
  14111. source: "./media/characters/elyssia/back.svg",
  14112. extra: 2201 / 2035,
  14113. bottom: 0.013
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "Smaller",
  14120. height: math.unit(150, "feet")
  14121. },
  14122. {
  14123. name: "Standard",
  14124. height: math.unit(1400, "feet"),
  14125. default: true
  14126. },
  14127. {
  14128. name: "Distracted",
  14129. height: math.unit(15000, "feet")
  14130. },
  14131. ]
  14132. ))
  14133. characterMakers.push(() => makeCharacter(
  14134. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14135. {
  14136. front: {
  14137. height: math.unit(7 + 4/12, "feet"),
  14138. weight: math.unit(690, "lb"),
  14139. name: "Front",
  14140. image: {
  14141. source: "./media/characters/geno-maxwell/front.svg",
  14142. extra: 984/856,
  14143. bottom: 87/1071
  14144. }
  14145. },
  14146. back: {
  14147. height: math.unit(7 + 4/12, "feet"),
  14148. weight: math.unit(690, "lb"),
  14149. name: "Back",
  14150. image: {
  14151. source: "./media/characters/geno-maxwell/back.svg",
  14152. extra: 981/854,
  14153. bottom: 57/1038
  14154. }
  14155. },
  14156. frontCostume: {
  14157. height: math.unit(7 + 4/12, "feet"),
  14158. weight: math.unit(690, "lb"),
  14159. name: "Front (Costume)",
  14160. image: {
  14161. source: "./media/characters/geno-maxwell/front-costume.svg",
  14162. extra: 984/856,
  14163. bottom: 87/1071
  14164. }
  14165. },
  14166. backcostume: {
  14167. height: math.unit(7 + 4/12, "feet"),
  14168. weight: math.unit(690, "lb"),
  14169. name: "Back (Costume)",
  14170. image: {
  14171. source: "./media/characters/geno-maxwell/back-costume.svg",
  14172. extra: 981/854,
  14173. bottom: 57/1038
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Micro",
  14180. height: math.unit(3, "inches")
  14181. },
  14182. {
  14183. name: "Normal",
  14184. height: math.unit(7 + 4 / 12, "feet"),
  14185. default: true
  14186. },
  14187. {
  14188. name: "Macro",
  14189. height: math.unit(220, "feet")
  14190. },
  14191. {
  14192. name: "Megamacro",
  14193. height: math.unit(11, "miles")
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14199. {
  14200. front: {
  14201. height: math.unit(7 + 4/12, "feet"),
  14202. weight: math.unit(750, "lb"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/regena-maxwell/front.svg",
  14206. extra: 984/856,
  14207. bottom: 87/1071
  14208. }
  14209. },
  14210. back: {
  14211. height: math.unit(7 + 4/12, "feet"),
  14212. weight: math.unit(750, "lb"),
  14213. name: "Back",
  14214. image: {
  14215. source: "./media/characters/regena-maxwell/back.svg",
  14216. extra: 981/854,
  14217. bottom: 57/1038
  14218. }
  14219. },
  14220. frontCostume: {
  14221. height: math.unit(7 + 4/12, "feet"),
  14222. weight: math.unit(750, "lb"),
  14223. name: "Front (Costume)",
  14224. image: {
  14225. source: "./media/characters/regena-maxwell/front-costume.svg",
  14226. extra: 984/856,
  14227. bottom: 87/1071
  14228. }
  14229. },
  14230. backcostume: {
  14231. height: math.unit(7 + 4/12, "feet"),
  14232. weight: math.unit(750, "lb"),
  14233. name: "Back (Costume)",
  14234. image: {
  14235. source: "./media/characters/regena-maxwell/back-costume.svg",
  14236. extra: 981/854,
  14237. bottom: 57/1038
  14238. }
  14239. },
  14240. },
  14241. [
  14242. {
  14243. name: "Normal",
  14244. height: math.unit(7 + 4 / 12, "feet"),
  14245. default: true
  14246. },
  14247. {
  14248. name: "Macro",
  14249. height: math.unit(220, "feet")
  14250. },
  14251. {
  14252. name: "Megamacro",
  14253. height: math.unit(11, "miles")
  14254. },
  14255. ]
  14256. ))
  14257. characterMakers.push(() => makeCharacter(
  14258. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14259. {
  14260. front: {
  14261. height: math.unit(6, "feet"),
  14262. weight: math.unit(150, "lb"),
  14263. name: "Front",
  14264. image: {
  14265. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14266. extra: 860 / 690,
  14267. bottom: 0.03
  14268. }
  14269. },
  14270. },
  14271. [
  14272. {
  14273. name: "Normal",
  14274. height: math.unit(1.7, "meters"),
  14275. default: true
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(6, "feet"),
  14284. weight: math.unit(150, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/quilly/front.svg",
  14288. extra: 890 / 776
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Gigamacro",
  14295. height: math.unit(404090, "miles"),
  14296. default: true
  14297. },
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14302. {
  14303. front: {
  14304. height: math.unit(7 + 8 / 12, "feet"),
  14305. weight: math.unit(350, "lb"),
  14306. name: "Front",
  14307. image: {
  14308. source: "./media/characters/tempest/front.svg",
  14309. extra: 1175 / 1086,
  14310. bottom: 0.02
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Normal",
  14317. height: math.unit(7 + 8 / 12, "feet"),
  14318. default: true
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14324. {
  14325. side: {
  14326. height: math.unit(4 + 5 / 12, "feet"),
  14327. weight: math.unit(80, "lb"),
  14328. name: "Side",
  14329. image: {
  14330. source: "./media/characters/rodger/side.svg",
  14331. extra: 1235 / 1118
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "Micro",
  14338. height: math.unit(1, "inch")
  14339. },
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(4 + 5 / 12, "feet"),
  14343. default: true
  14344. },
  14345. {
  14346. name: "Macro",
  14347. height: math.unit(120, "feet")
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14353. {
  14354. front: {
  14355. height: math.unit(6, "feet"),
  14356. weight: math.unit(150, "lb"),
  14357. name: "Front",
  14358. image: {
  14359. source: "./media/characters/danyel/front.svg",
  14360. extra: 1185 / 1123,
  14361. bottom: 0.05
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Shrunken",
  14368. height: math.unit(0.5, "mm")
  14369. },
  14370. {
  14371. name: "Micro",
  14372. height: math.unit(1, "mm"),
  14373. default: true
  14374. },
  14375. {
  14376. name: "Upsized",
  14377. height: math.unit(5 + 5 / 12, "feet")
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(5 + 6 / 12, "feet"),
  14386. weight: math.unit(200, "lb"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/vivian-bijoux/front.svg",
  14390. extra: 1217/1209,
  14391. bottom: 76/1293
  14392. }
  14393. },
  14394. back: {
  14395. height: math.unit(5 + 6 / 12, "feet"),
  14396. weight: math.unit(200, "lb"),
  14397. name: "Back",
  14398. image: {
  14399. source: "./media/characters/vivian-bijoux/back.svg",
  14400. extra: 1214/1208,
  14401. bottom: 51/1265
  14402. }
  14403. },
  14404. dressed: {
  14405. height: math.unit(5 + 6 / 12, "feet"),
  14406. weight: math.unit(200, "lb"),
  14407. name: "Dressed",
  14408. image: {
  14409. source: "./media/characters/vivian-bijoux/dressed.svg",
  14410. extra: 1217/1209,
  14411. bottom: 76/1293
  14412. }
  14413. },
  14414. },
  14415. [
  14416. {
  14417. name: "Normal",
  14418. height: math.unit(5 + 6 / 12, "feet"),
  14419. default: true
  14420. },
  14421. {
  14422. name: "Bad Dream",
  14423. height: math.unit(500, "feet")
  14424. },
  14425. {
  14426. name: "Nightmare",
  14427. height: math.unit(500, "miles")
  14428. },
  14429. ]
  14430. ))
  14431. characterMakers.push(() => makeCharacter(
  14432. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14433. {
  14434. front: {
  14435. height: math.unit(6 + 1 / 12, "feet"),
  14436. weight: math.unit(260, "lb"),
  14437. name: "Front",
  14438. image: {
  14439. source: "./media/characters/zeta/front.svg",
  14440. extra: 1968 / 1889,
  14441. bottom: 0.06
  14442. }
  14443. },
  14444. back: {
  14445. height: math.unit(6 + 1 / 12, "feet"),
  14446. weight: math.unit(260, "lb"),
  14447. name: "Back",
  14448. image: {
  14449. source: "./media/characters/zeta/back.svg",
  14450. extra: 1944 / 1858,
  14451. bottom: 0.03
  14452. }
  14453. },
  14454. hand: {
  14455. height: math.unit(1.112, "feet"),
  14456. name: "Hand",
  14457. image: {
  14458. source: "./media/characters/zeta/hand.svg"
  14459. }
  14460. },
  14461. foot: {
  14462. height: math.unit(1.48, "feet"),
  14463. name: "Foot",
  14464. image: {
  14465. source: "./media/characters/zeta/foot.svg"
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Micro",
  14472. height: math.unit(6, "inches")
  14473. },
  14474. {
  14475. name: "Normal",
  14476. height: math.unit(6 + 1 / 12, "feet"),
  14477. default: true
  14478. },
  14479. {
  14480. name: "Macro",
  14481. height: math.unit(20, "feet")
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(6, "feet"),
  14490. weight: math.unit(150, "lb"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/jamie-larsen/front.svg",
  14494. extra: 962 / 933,
  14495. bottom: 0.02
  14496. }
  14497. },
  14498. back: {
  14499. height: math.unit(6, "feet"),
  14500. weight: math.unit(150, "lb"),
  14501. name: "Back",
  14502. image: {
  14503. source: "./media/characters/jamie-larsen/back.svg",
  14504. extra: 997 / 946
  14505. }
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Macro",
  14511. height: math.unit(28 + 7 / 12, "feet"),
  14512. default: true
  14513. },
  14514. {
  14515. name: "Macro+",
  14516. height: math.unit(180, "feet")
  14517. },
  14518. {
  14519. name: "Megamacro",
  14520. height: math.unit(10, "miles")
  14521. },
  14522. {
  14523. name: "Gigamacro",
  14524. height: math.unit(200000, "miles")
  14525. },
  14526. ]
  14527. ))
  14528. characterMakers.push(() => makeCharacter(
  14529. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14530. {
  14531. front: {
  14532. height: math.unit(6, "feet"),
  14533. weight: math.unit(120, "lb"),
  14534. name: "Front",
  14535. image: {
  14536. source: "./media/characters/vance/front.svg",
  14537. extra: 1980 / 1890,
  14538. bottom: 0.09
  14539. }
  14540. },
  14541. back: {
  14542. height: math.unit(6, "feet"),
  14543. weight: math.unit(120, "lb"),
  14544. name: "Back",
  14545. image: {
  14546. source: "./media/characters/vance/back.svg",
  14547. extra: 2081 / 1994,
  14548. bottom: 0.014
  14549. }
  14550. },
  14551. hand: {
  14552. height: math.unit(0.88, "feet"),
  14553. name: "Hand",
  14554. image: {
  14555. source: "./media/characters/vance/hand.svg"
  14556. }
  14557. },
  14558. foot: {
  14559. height: math.unit(0.64, "feet"),
  14560. name: "Foot",
  14561. image: {
  14562. source: "./media/characters/vance/foot.svg"
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Small",
  14569. height: math.unit(90, "feet"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Macro",
  14574. height: math.unit(100, "meters")
  14575. },
  14576. {
  14577. name: "Megamacro",
  14578. height: math.unit(15, "miles")
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14584. {
  14585. front: {
  14586. height: math.unit(6, "feet"),
  14587. weight: math.unit(180, "lb"),
  14588. name: "Front",
  14589. image: {
  14590. source: "./media/characters/xochitl/front.svg",
  14591. extra: 2297 / 2261,
  14592. bottom: 0.065
  14593. }
  14594. },
  14595. back: {
  14596. height: math.unit(6, "feet"),
  14597. weight: math.unit(180, "lb"),
  14598. name: "Back",
  14599. image: {
  14600. source: "./media/characters/xochitl/back.svg",
  14601. extra: 2386 / 2354,
  14602. bottom: 0.01
  14603. }
  14604. },
  14605. foot: {
  14606. height: math.unit(6 / 5 * 1.15, "feet"),
  14607. weight: math.unit(150, "lb"),
  14608. name: "Foot",
  14609. image: {
  14610. source: "./media/characters/xochitl/foot.svg"
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Macro",
  14617. height: math.unit(80, "feet")
  14618. },
  14619. {
  14620. name: "Macro+",
  14621. height: math.unit(400, "feet"),
  14622. default: true
  14623. },
  14624. {
  14625. name: "Gigamacro",
  14626. height: math.unit(80000, "miles")
  14627. },
  14628. {
  14629. name: "Gigamacro+",
  14630. height: math.unit(400000, "miles")
  14631. },
  14632. {
  14633. name: "Teramacro",
  14634. height: math.unit(300, "AU")
  14635. },
  14636. ]
  14637. ))
  14638. characterMakers.push(() => makeCharacter(
  14639. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14640. {
  14641. front: {
  14642. height: math.unit(6, "feet"),
  14643. weight: math.unit(150, "lb"),
  14644. name: "Front",
  14645. image: {
  14646. source: "./media/characters/vincent/front.svg",
  14647. extra: 1130 / 1080,
  14648. bottom: 0.055
  14649. }
  14650. },
  14651. beak: {
  14652. height: math.unit(6 * 0.1, "feet"),
  14653. name: "Beak",
  14654. image: {
  14655. source: "./media/characters/vincent/beak.svg"
  14656. }
  14657. },
  14658. hand: {
  14659. height: math.unit(6 * 0.85, "feet"),
  14660. weight: math.unit(150, "lb"),
  14661. name: "Hand",
  14662. image: {
  14663. source: "./media/characters/vincent/hand.svg"
  14664. }
  14665. },
  14666. foot: {
  14667. height: math.unit(6 * 0.19, "feet"),
  14668. weight: math.unit(150, "lb"),
  14669. name: "Foot",
  14670. image: {
  14671. source: "./media/characters/vincent/foot.svg"
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Base",
  14678. height: math.unit(6 + 5 / 12, "feet"),
  14679. default: true
  14680. },
  14681. {
  14682. name: "Macro",
  14683. height: math.unit(300, "feet")
  14684. },
  14685. {
  14686. name: "Megamacro",
  14687. height: math.unit(2, "miles")
  14688. },
  14689. {
  14690. name: "Gigamacro",
  14691. height: math.unit(1000, "miles")
  14692. },
  14693. ]
  14694. ))
  14695. characterMakers.push(() => makeCharacter(
  14696. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14697. {
  14698. front: {
  14699. height: math.unit(2, "meters"),
  14700. weight: math.unit(500, "kg"),
  14701. name: "Front",
  14702. image: {
  14703. source: "./media/characters/coatl/front.svg",
  14704. extra: 3948 / 3500,
  14705. bottom: 0.082
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Normal",
  14712. height: math.unit(4, "meters")
  14713. },
  14714. {
  14715. name: "Macro",
  14716. height: math.unit(100, "meters"),
  14717. default: true
  14718. },
  14719. {
  14720. name: "Macro+",
  14721. height: math.unit(300, "meters")
  14722. },
  14723. {
  14724. name: "Megamacro",
  14725. height: math.unit(3, "gigameters")
  14726. },
  14727. {
  14728. name: "Megamacro+",
  14729. height: math.unit(300, "terameters")
  14730. },
  14731. {
  14732. name: "Megamacro++",
  14733. height: math.unit(3, "lightyears")
  14734. },
  14735. ]
  14736. ))
  14737. characterMakers.push(() => makeCharacter(
  14738. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14739. {
  14740. front: {
  14741. height: math.unit(6, "feet"),
  14742. weight: math.unit(50, "kg"),
  14743. name: "front",
  14744. image: {
  14745. source: "./media/characters/shiroryu/front.svg",
  14746. extra: 1990 / 1935
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "Mortal Mingling",
  14753. height: math.unit(3, "meters")
  14754. },
  14755. {
  14756. name: "Kaiju-ish",
  14757. height: math.unit(250, "meters")
  14758. },
  14759. {
  14760. name: "Somewhat Godly",
  14761. height: math.unit(400, "km"),
  14762. default: true
  14763. },
  14764. {
  14765. name: "Planetary",
  14766. height: math.unit(300, "megameters")
  14767. },
  14768. {
  14769. name: "Galaxy-dwarfing",
  14770. height: math.unit(450, "kiloparsecs")
  14771. },
  14772. {
  14773. name: "Universe Eater",
  14774. height: math.unit(150, "gigaparsecs")
  14775. },
  14776. {
  14777. name: "Almost Immeasurable",
  14778. height: math.unit(1.3e266, "yottaparsecs")
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14784. {
  14785. front: {
  14786. height: math.unit(6, "feet"),
  14787. weight: math.unit(150, "lb"),
  14788. name: "Front",
  14789. image: {
  14790. source: "./media/characters/umeko/front.svg",
  14791. extra: 1,
  14792. bottom: 0.019
  14793. }
  14794. },
  14795. frontArmored: {
  14796. height: math.unit(6, "feet"),
  14797. weight: math.unit(150, "lb"),
  14798. name: "Front (Armored)",
  14799. image: {
  14800. source: "./media/characters/umeko/front-armored.svg",
  14801. extra: 1,
  14802. bottom: 0.021
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Macro",
  14809. height: math.unit(220, "feet"),
  14810. default: true
  14811. },
  14812. {
  14813. name: "Guardian Dragon",
  14814. height: math.unit(50, "miles")
  14815. },
  14816. {
  14817. name: "Cosmic",
  14818. height: math.unit(800000, "miles")
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(6, "feet"),
  14827. weight: math.unit(150, "lb"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/cassidy/front.svg",
  14831. extra: 810/808,
  14832. bottom: 41/851
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Canon Height",
  14839. height: math.unit(120, "feet"),
  14840. default: true
  14841. },
  14842. {
  14843. name: "Macro+",
  14844. height: math.unit(400, "feet")
  14845. },
  14846. {
  14847. name: "Macro++",
  14848. height: math.unit(4000, "feet")
  14849. },
  14850. {
  14851. name: "Megamacro",
  14852. height: math.unit(3, "miles")
  14853. },
  14854. ]
  14855. ))
  14856. characterMakers.push(() => makeCharacter(
  14857. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14858. {
  14859. front: {
  14860. height: math.unit(6, "feet"),
  14861. weight: math.unit(150, "lb"),
  14862. name: "Front",
  14863. image: {
  14864. source: "./media/characters/isaac/front.svg",
  14865. extra: 896 / 815,
  14866. bottom: 0.11
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Human Size",
  14873. height: math.unit(8, "feet"),
  14874. default: true
  14875. },
  14876. {
  14877. name: "Macro",
  14878. height: math.unit(400, "feet")
  14879. },
  14880. {
  14881. name: "Megamacro",
  14882. height: math.unit(50, "miles")
  14883. },
  14884. {
  14885. name: "Canon Height",
  14886. height: math.unit(200, "AU")
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14892. {
  14893. front: {
  14894. height: math.unit(6, "feet"),
  14895. weight: math.unit(72, "kg"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/sleekit/front.svg",
  14899. extra: 4693 / 4487,
  14900. bottom: 0.012
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Minimum Height",
  14907. height: math.unit(10, "meters")
  14908. },
  14909. {
  14910. name: "Smaller",
  14911. height: math.unit(25, "meters")
  14912. },
  14913. {
  14914. name: "Larger",
  14915. height: math.unit(38, "meters"),
  14916. default: true
  14917. },
  14918. {
  14919. name: "Maximum height",
  14920. height: math.unit(100, "meters")
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(6, "feet"),
  14929. weight: math.unit(150, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/nillia/front.svg",
  14933. extra: 2195 / 2037,
  14934. bottom: 0.005
  14935. }
  14936. },
  14937. back: {
  14938. height: math.unit(6, "feet"),
  14939. weight: math.unit(150, "lb"),
  14940. name: "Back",
  14941. image: {
  14942. source: "./media/characters/nillia/back.svg",
  14943. extra: 2195 / 2037,
  14944. bottom: 0.005
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Canon Height",
  14951. height: math.unit(489, "feet"),
  14952. default: true
  14953. }
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14958. {
  14959. front: {
  14960. height: math.unit(6, "feet"),
  14961. weight: math.unit(150, "lb"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/mesmyriza/front.svg",
  14965. extra: 2067 / 1784,
  14966. bottom: 0.035
  14967. }
  14968. },
  14969. foot: {
  14970. height: math.unit(6 / (250 / 35), "feet"),
  14971. name: "Foot",
  14972. image: {
  14973. source: "./media/characters/mesmyriza/foot.svg"
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(457, "meters"),
  14981. default: true
  14982. },
  14983. {
  14984. name: "Megamacro",
  14985. height: math.unit(8, "megameters")
  14986. },
  14987. ]
  14988. ))
  14989. characterMakers.push(() => makeCharacter(
  14990. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14991. {
  14992. front: {
  14993. height: math.unit(6, "feet"),
  14994. weight: math.unit(250, "lb"),
  14995. name: "Front",
  14996. image: {
  14997. source: "./media/characters/saudade/front.svg",
  14998. extra: 1172 / 1139,
  14999. bottom: 0.035
  15000. }
  15001. },
  15002. },
  15003. [
  15004. {
  15005. name: "Micro",
  15006. height: math.unit(3, "inches")
  15007. },
  15008. {
  15009. name: "Normal",
  15010. height: math.unit(6, "feet"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Macro",
  15015. height: math.unit(50, "feet")
  15016. },
  15017. {
  15018. name: "Megamacro",
  15019. height: math.unit(2800, "feet")
  15020. },
  15021. ]
  15022. ))
  15023. characterMakers.push(() => makeCharacter(
  15024. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15025. {
  15026. front: {
  15027. height: math.unit(5 + 4 / 12, "feet"),
  15028. weight: math.unit(100, "lb"),
  15029. name: "Front",
  15030. image: {
  15031. source: "./media/characters/keireer/front.svg",
  15032. extra: 716 / 666,
  15033. bottom: 0.05
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Normal",
  15040. height: math.unit(5 + 4 / 12, "feet"),
  15041. default: true
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(90, "kg"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/mirja/front.svg",
  15054. extra: 1789 / 1683,
  15055. bottom: 0.05
  15056. }
  15057. },
  15058. frontDressed: {
  15059. height: math.unit(6, "feet"),
  15060. weight: math.unit(90, "lb"),
  15061. name: "Front (Dressed)",
  15062. image: {
  15063. source: "./media/characters/mirja/front-dressed.svg",
  15064. extra: 1789 / 1683,
  15065. bottom: 0.05
  15066. }
  15067. },
  15068. back: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(90, "lb"),
  15071. name: "Back",
  15072. image: {
  15073. source: "./media/characters/mirja/back.svg",
  15074. extra: 953 / 917,
  15075. bottom: 0.017
  15076. }
  15077. },
  15078. },
  15079. [
  15080. {
  15081. name: "\"Incognito\"",
  15082. height: math.unit(3, "meters")
  15083. },
  15084. {
  15085. name: "Strolling Size",
  15086. height: math.unit(15, "km")
  15087. },
  15088. {
  15089. name: "Larger Strolling Size",
  15090. height: math.unit(400, "km")
  15091. },
  15092. {
  15093. name: "Preferred Size",
  15094. height: math.unit(5000, "km")
  15095. },
  15096. {
  15097. name: "True Size",
  15098. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15099. default: true
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(15, "feet"),
  15108. weight: math.unit(880, "kg"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/nightraver/front.svg",
  15112. extra: 2444 / 2160,
  15113. bottom: 0.027
  15114. }
  15115. },
  15116. back: {
  15117. height: math.unit(15, "feet"),
  15118. weight: math.unit(880, "kg"),
  15119. name: "Back",
  15120. image: {
  15121. source: "./media/characters/nightraver/back.svg",
  15122. extra: 2309 / 2180,
  15123. bottom: 0.005
  15124. }
  15125. },
  15126. sole: {
  15127. height: math.unit(2.878, "feet"),
  15128. name: "Sole",
  15129. image: {
  15130. source: "./media/characters/nightraver/sole.svg"
  15131. }
  15132. },
  15133. foot: {
  15134. height: math.unit(2.285, "feet"),
  15135. name: "Foot",
  15136. image: {
  15137. source: "./media/characters/nightraver/foot.svg"
  15138. }
  15139. },
  15140. maw: {
  15141. height: math.unit(2.67, "feet"),
  15142. name: "Maw",
  15143. image: {
  15144. source: "./media/characters/nightraver/maw.svg"
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Micro",
  15151. height: math.unit(1, "cm")
  15152. },
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(15, "feet"),
  15156. default: true
  15157. },
  15158. {
  15159. name: "Macro",
  15160. height: math.unit(300, "feet")
  15161. },
  15162. {
  15163. name: "Megamacro",
  15164. height: math.unit(300, "miles")
  15165. },
  15166. {
  15167. name: "Gigamacro",
  15168. height: math.unit(10000, "miles")
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15174. {
  15175. side: {
  15176. height: math.unit(2, "inches"),
  15177. weight: math.unit(5, "grams"),
  15178. name: "Side",
  15179. image: {
  15180. source: "./media/characters/arc/side.svg"
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Micro",
  15187. height: math.unit(2, "inches"),
  15188. default: true
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(1.1938, "meters"),
  15197. weight: math.unit(54, "kg"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/nebula-shahar/front.svg",
  15201. extra: 1642 / 1436,
  15202. bottom: 0.06
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Megamicro",
  15209. height: math.unit(0.3, "mm")
  15210. },
  15211. {
  15212. name: "Micro",
  15213. height: math.unit(3, "cm")
  15214. },
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(138, "cm"),
  15218. default: true
  15219. },
  15220. {
  15221. name: "Macro",
  15222. height: math.unit(30, "m")
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15228. {
  15229. front: {
  15230. height: math.unit(5.24, "feet"),
  15231. weight: math.unit(150, "lb"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/shayla/front.svg",
  15235. extra: 1512 / 1414,
  15236. bottom: 0.01
  15237. }
  15238. },
  15239. back: {
  15240. height: math.unit(5.24, "feet"),
  15241. weight: math.unit(150, "lb"),
  15242. name: "Back",
  15243. image: {
  15244. source: "./media/characters/shayla/back.svg",
  15245. extra: 1512 / 1414
  15246. }
  15247. },
  15248. hand: {
  15249. height: math.unit(0.7781496062992126, "feet"),
  15250. name: "Hand",
  15251. image: {
  15252. source: "./media/characters/shayla/hand.svg"
  15253. }
  15254. },
  15255. foot: {
  15256. height: math.unit(1.4206036745406823, "feet"),
  15257. name: "Foot",
  15258. image: {
  15259. source: "./media/characters/shayla/foot.svg"
  15260. }
  15261. },
  15262. },
  15263. [
  15264. {
  15265. name: "Micro",
  15266. height: math.unit(0.32, "feet")
  15267. },
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(5.24, "feet"),
  15271. default: true
  15272. },
  15273. {
  15274. name: "Macro",
  15275. height: math.unit(492.12, "feet")
  15276. },
  15277. {
  15278. name: "Megamacro",
  15279. height: math.unit(186.41, "miles")
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(2.2, "m"),
  15288. weight: math.unit(120, "kg"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/pia-jr/front.svg",
  15292. extra: 1000 / 970,
  15293. bottom: 0.035
  15294. }
  15295. },
  15296. hand: {
  15297. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15298. name: "Hand",
  15299. image: {
  15300. source: "./media/characters/pia-jr/hand.svg"
  15301. }
  15302. },
  15303. paw: {
  15304. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15305. name: "Paw",
  15306. image: {
  15307. source: "./media/characters/pia-jr/paw.svg"
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Micro",
  15314. height: math.unit(1.2, "cm")
  15315. },
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(2.2, "m"),
  15319. default: true
  15320. },
  15321. {
  15322. name: "Macro",
  15323. height: math.unit(180, "m")
  15324. },
  15325. {
  15326. name: "Megamacro",
  15327. height: math.unit(420, "km")
  15328. },
  15329. ]
  15330. ))
  15331. characterMakers.push(() => makeCharacter(
  15332. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15333. {
  15334. front: {
  15335. height: math.unit(2, "m"),
  15336. weight: math.unit(115, "kg"),
  15337. name: "Front",
  15338. image: {
  15339. source: "./media/characters/pia-sr/front.svg",
  15340. extra: 760 / 730,
  15341. bottom: 0.015
  15342. }
  15343. },
  15344. back: {
  15345. height: math.unit(2, "m"),
  15346. weight: math.unit(115, "kg"),
  15347. name: "Back",
  15348. image: {
  15349. source: "./media/characters/pia-sr/back.svg",
  15350. extra: 760 / 730,
  15351. bottom: 0.01
  15352. }
  15353. },
  15354. hand: {
  15355. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15356. name: "Hand",
  15357. image: {
  15358. source: "./media/characters/pia-sr/hand.svg"
  15359. }
  15360. },
  15361. foot: {
  15362. height: math.unit(1.83, "feet"),
  15363. name: "Foot",
  15364. image: {
  15365. source: "./media/characters/pia-sr/foot.svg"
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Micro",
  15372. height: math.unit(88, "mm")
  15373. },
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(2, "m"),
  15377. default: true
  15378. },
  15379. {
  15380. name: "Macro",
  15381. height: math.unit(200, "m")
  15382. },
  15383. {
  15384. name: "Megamacro",
  15385. height: math.unit(420, "km")
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(8 + 2 / 12, "feet"),
  15394. weight: math.unit(300, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/kibibyte/front.svg",
  15398. extra: 2221 / 2098,
  15399. bottom: 0.04
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(8 + 2 / 12, "feet"),
  15407. default: true
  15408. },
  15409. {
  15410. name: "Socialable Macro",
  15411. height: math.unit(50, "feet")
  15412. },
  15413. {
  15414. name: "Macro",
  15415. height: math.unit(300, "feet")
  15416. },
  15417. {
  15418. name: "Megamacro",
  15419. height: math.unit(500, "miles")
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(6, "feet"),
  15428. weight: math.unit(150, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/felix/front.svg",
  15432. extra: 762 / 722,
  15433. bottom: 0.02
  15434. }
  15435. },
  15436. frontClothed: {
  15437. height: math.unit(6, "feet"),
  15438. weight: math.unit(150, "lb"),
  15439. name: "Front (Clothed)",
  15440. image: {
  15441. source: "./media/characters/felix/front-clothed.svg",
  15442. extra: 762 / 722,
  15443. bottom: 0.02
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(6 + 8 / 12, "feet"),
  15451. default: true
  15452. },
  15453. {
  15454. name: "Macro",
  15455. height: math.unit(2600, "feet")
  15456. },
  15457. {
  15458. name: "Megamacro",
  15459. height: math.unit(450, "miles")
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15465. {
  15466. front: {
  15467. height: math.unit(6 + 1 / 12, "feet"),
  15468. weight: math.unit(250, "lb"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/tobo/front.svg",
  15472. extra: 608 / 586,
  15473. bottom: 0.023
  15474. }
  15475. },
  15476. back: {
  15477. height: math.unit(6 + 1 / 12, "feet"),
  15478. weight: math.unit(250, "lb"),
  15479. name: "Back",
  15480. image: {
  15481. source: "./media/characters/tobo/back.svg",
  15482. extra: 608 / 586
  15483. }
  15484. },
  15485. },
  15486. [
  15487. {
  15488. name: "Nano",
  15489. height: math.unit(2, "nm")
  15490. },
  15491. {
  15492. name: "Megamicro",
  15493. height: math.unit(0.1, "mm")
  15494. },
  15495. {
  15496. name: "Micro",
  15497. height: math.unit(1, "inch"),
  15498. default: true
  15499. },
  15500. {
  15501. name: "Human-sized",
  15502. height: math.unit(6 + 1 / 12, "feet")
  15503. },
  15504. {
  15505. name: "Macro",
  15506. height: math.unit(250, "feet")
  15507. },
  15508. {
  15509. name: "Megamacro",
  15510. height: math.unit(75, "miles")
  15511. },
  15512. {
  15513. name: "Texas-sized",
  15514. height: math.unit(750, "miles")
  15515. },
  15516. {
  15517. name: "Teramacro",
  15518. height: math.unit(50000, "miles")
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(6, "feet"),
  15527. weight: math.unit(269, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/danny-kapowsky/front.svg",
  15531. extra: 766 / 736,
  15532. bottom: 0.044
  15533. }
  15534. },
  15535. back: {
  15536. height: math.unit(6, "feet"),
  15537. weight: math.unit(269, "lb"),
  15538. name: "Back",
  15539. image: {
  15540. source: "./media/characters/danny-kapowsky/back.svg",
  15541. extra: 797 / 760,
  15542. bottom: 0.025
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Macro",
  15549. height: math.unit(150, "feet"),
  15550. default: true
  15551. },
  15552. {
  15553. name: "Macro+",
  15554. height: math.unit(200, "feet")
  15555. },
  15556. {
  15557. name: "Macro++",
  15558. height: math.unit(300, "feet")
  15559. },
  15560. {
  15561. name: "Macro+++",
  15562. height: math.unit(400, "feet")
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15568. {
  15569. side: {
  15570. height: math.unit(6, "feet"),
  15571. weight: math.unit(170, "lb"),
  15572. name: "Side",
  15573. image: {
  15574. source: "./media/characters/finn/side.svg",
  15575. extra: 1953 / 1807,
  15576. bottom: 0.057
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Megamacro",
  15583. height: math.unit(14445, "feet"),
  15584. default: true
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(5 + 6 / 12, "feet"),
  15593. weight: math.unit(125, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/roy/front.svg",
  15597. extra: 1,
  15598. bottom: 0.11
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Micro",
  15605. height: math.unit(3, "inches"),
  15606. default: true
  15607. },
  15608. {
  15609. name: "Normal",
  15610. height: math.unit(5 + 6 / 12, "feet")
  15611. },
  15612. {
  15613. name: "Lesser Macro",
  15614. height: math.unit(60, "feet")
  15615. },
  15616. {
  15617. name: "Greater Macro",
  15618. height: math.unit(120, "feet")
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(6, "feet"),
  15627. weight: math.unit(100, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/aevsivs/front.svg",
  15631. extra: 1,
  15632. bottom: 0.03
  15633. }
  15634. },
  15635. back: {
  15636. height: math.unit(6, "feet"),
  15637. weight: math.unit(100, "lb"),
  15638. name: "Back",
  15639. image: {
  15640. source: "./media/characters/aevsivs/back.svg"
  15641. }
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Micro",
  15647. height: math.unit(2, "inches"),
  15648. default: true
  15649. },
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(5, "feet")
  15653. },
  15654. ]
  15655. ))
  15656. characterMakers.push(() => makeCharacter(
  15657. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15658. {
  15659. front: {
  15660. height: math.unit(5 + 7 / 12, "feet"),
  15661. weight: math.unit(159, "lb"),
  15662. name: "Front",
  15663. image: {
  15664. source: "./media/characters/hildegard/front.svg",
  15665. extra: 289 / 269,
  15666. bottom: 7.63 / 297.8
  15667. }
  15668. },
  15669. back: {
  15670. height: math.unit(5 + 7 / 12, "feet"),
  15671. weight: math.unit(159, "lb"),
  15672. name: "Back",
  15673. image: {
  15674. source: "./media/characters/hildegard/back.svg",
  15675. extra: 280 / 260,
  15676. bottom: 2.3 / 282
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(5 + 7 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15690. {
  15691. bernard: {
  15692. height: math.unit(2 + 7 / 12, "feet"),
  15693. weight: math.unit(66, "lb"),
  15694. name: "Bernard",
  15695. rename: true,
  15696. image: {
  15697. source: "./media/characters/bernard-wilder/bernard.svg",
  15698. extra: 192 / 128,
  15699. bottom: 0.05
  15700. }
  15701. },
  15702. wilder: {
  15703. height: math.unit(5 + 8 / 12, "feet"),
  15704. weight: math.unit(143, "lb"),
  15705. name: "Wilder",
  15706. rename: true,
  15707. image: {
  15708. source: "./media/characters/bernard-wilder/wilder.svg",
  15709. extra: 361 / 312,
  15710. bottom: 0.02
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(2 + 7 / 12, "feet"),
  15718. default: true
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15724. {
  15725. anthro: {
  15726. height: math.unit(6 + 1 / 12, "feet"),
  15727. weight: math.unit(155, "lb"),
  15728. name: "Anthro",
  15729. image: {
  15730. source: "./media/characters/hearth/anthro.svg",
  15731. extra: 1178/1136,
  15732. bottom: 28/1206
  15733. }
  15734. },
  15735. feral: {
  15736. height: math.unit(3.78, "feet"),
  15737. weight: math.unit(35, "kg"),
  15738. name: "Feral",
  15739. image: {
  15740. source: "./media/characters/hearth/feral.svg",
  15741. extra: 153 / 135,
  15742. bottom: 0.03
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(6 + 1 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(6, "feet"),
  15759. weight: math.unit(182, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/ingrid/front.svg",
  15763. extra: 294 / 268,
  15764. bottom: 0.027
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(6, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15778. {
  15779. eevee: {
  15780. height: math.unit(2 + 10 / 12, "feet"),
  15781. weight: math.unit(86, "lb"),
  15782. name: "Malgam",
  15783. image: {
  15784. source: "./media/characters/malgam/eevee.svg",
  15785. extra: 952/784,
  15786. bottom: 38/990
  15787. }
  15788. },
  15789. sylveon: {
  15790. height: math.unit(4, "feet"),
  15791. weight: math.unit(101, "lb"),
  15792. name: "Future Malgam",
  15793. rename: true,
  15794. image: {
  15795. source: "./media/characters/malgam/sylveon.svg",
  15796. extra: 371 / 325,
  15797. bottom: 0.015
  15798. }
  15799. },
  15800. gigantamax: {
  15801. height: math.unit(50, "feet"),
  15802. name: "Gigantamax Malgam",
  15803. rename: true,
  15804. image: {
  15805. source: "./media/characters/malgam/gigantamax.svg"
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(2 + 10 / 12, "feet"),
  15813. default: true
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(5 + 11 / 12, "feet"),
  15822. weight: math.unit(188, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/fleur/front.svg",
  15826. extra: 309 / 283,
  15827. bottom: 0.007
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(5 + 11 / 12, "feet"),
  15835. default: true
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(5 + 4 / 12, "feet"),
  15844. weight: math.unit(122, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/jude/front.svg",
  15848. extra: 288 / 273,
  15849. bottom: 0.03
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(5 + 4 / 12, "feet"),
  15857. default: true
  15858. },
  15859. ]
  15860. ))
  15861. characterMakers.push(() => makeCharacter(
  15862. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15863. {
  15864. front: {
  15865. height: math.unit(5 + 11 / 12, "feet"),
  15866. weight: math.unit(190, "lb"),
  15867. name: "Front",
  15868. image: {
  15869. source: "./media/characters/seara/front.svg",
  15870. extra: 1,
  15871. bottom: 0.05
  15872. }
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Normal",
  15878. height: math.unit(5 + 11 / 12, "feet"),
  15879. default: true
  15880. },
  15881. ]
  15882. ))
  15883. characterMakers.push(() => makeCharacter(
  15884. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15885. {
  15886. front: {
  15887. height: math.unit(16 + 5 / 12, "feet"),
  15888. weight: math.unit(524, "lb"),
  15889. name: "Front",
  15890. image: {
  15891. source: "./media/characters/caspian-lugia/front.svg",
  15892. extra: 1,
  15893. bottom: 0.04
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Normal",
  15900. height: math.unit(16 + 5 / 12, "feet"),
  15901. default: true
  15902. },
  15903. ]
  15904. ))
  15905. characterMakers.push(() => makeCharacter(
  15906. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15907. {
  15908. front: {
  15909. height: math.unit(5 + 7 / 12, "feet"),
  15910. weight: math.unit(170, "lb"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/mika/front.svg",
  15914. extra: 1,
  15915. bottom: 0.016
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Normal",
  15922. height: math.unit(5 + 7 / 12, "feet"),
  15923. default: true
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15929. {
  15930. front: {
  15931. height: math.unit(6 + 2 / 12, "feet"),
  15932. weight: math.unit(268, "lb"),
  15933. name: "Front",
  15934. image: {
  15935. source: "./media/characters/sol/front.svg",
  15936. extra: 247 / 231,
  15937. bottom: 0.05
  15938. }
  15939. },
  15940. },
  15941. [
  15942. {
  15943. name: "Normal",
  15944. height: math.unit(6 + 2 / 12, "feet"),
  15945. default: true
  15946. },
  15947. ]
  15948. ))
  15949. characterMakers.push(() => makeCharacter(
  15950. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15951. {
  15952. buizel: {
  15953. height: math.unit(2 + 5 / 12, "feet"),
  15954. weight: math.unit(87, "lb"),
  15955. name: "Front",
  15956. image: {
  15957. source: "./media/characters/umiko/buizel.svg",
  15958. extra: 172 / 157,
  15959. bottom: 0.01
  15960. },
  15961. form: "buizel",
  15962. default: true
  15963. },
  15964. floatzel: {
  15965. height: math.unit(5 + 9 / 12, "feet"),
  15966. weight: math.unit(250, "lb"),
  15967. name: "Front",
  15968. image: {
  15969. source: "./media/characters/umiko/floatzel.svg",
  15970. extra: 1076/1006,
  15971. bottom: 15/1091
  15972. },
  15973. form: "floatzel",
  15974. default: true
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(2 + 5 / 12, "feet"),
  15981. form: "buizel",
  15982. default: true
  15983. },
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(5 + 9 / 12, "feet"),
  15987. form: "floatzel",
  15988. default: true
  15989. },
  15990. ],
  15991. {
  15992. "buizel": {
  15993. name: "Buizel"
  15994. },
  15995. "floatzel": {
  15996. name: "Floatzel",
  15997. default: true
  15998. }
  15999. }
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16003. {
  16004. front: {
  16005. height: math.unit(6 + 2 / 12, "feet"),
  16006. weight: math.unit(146, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/iliac/front.svg",
  16010. extra: 389 / 365,
  16011. bottom: 0.035
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Normal",
  16018. height: math.unit(6 + 2 / 12, "feet"),
  16019. default: true
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16025. {
  16026. front: {
  16027. height: math.unit(6, "feet"),
  16028. weight: math.unit(170, "lb"),
  16029. name: "Front",
  16030. image: {
  16031. source: "./media/characters/topaz/front.svg",
  16032. extra: 317 / 303,
  16033. bottom: 0.055
  16034. }
  16035. },
  16036. },
  16037. [
  16038. {
  16039. name: "Normal",
  16040. height: math.unit(6, "feet"),
  16041. default: true
  16042. },
  16043. ]
  16044. ))
  16045. characterMakers.push(() => makeCharacter(
  16046. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16047. {
  16048. front: {
  16049. height: math.unit(5 + 11 / 12, "feet"),
  16050. weight: math.unit(144, "lb"),
  16051. name: "Front",
  16052. image: {
  16053. source: "./media/characters/gabriel/front.svg",
  16054. extra: 285 / 262,
  16055. bottom: 0.004
  16056. }
  16057. },
  16058. },
  16059. [
  16060. {
  16061. name: "Normal",
  16062. height: math.unit(5 + 11 / 12, "feet"),
  16063. default: true
  16064. },
  16065. ]
  16066. ))
  16067. characterMakers.push(() => makeCharacter(
  16068. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16069. {
  16070. side: {
  16071. height: math.unit(6 + 5 / 12, "feet"),
  16072. weight: math.unit(300, "lb"),
  16073. name: "Side",
  16074. image: {
  16075. source: "./media/characters/tempest-suicune/side.svg",
  16076. extra: 195 / 154,
  16077. bottom: 0.04
  16078. }
  16079. },
  16080. },
  16081. [
  16082. {
  16083. name: "Normal",
  16084. height: math.unit(6 + 5 / 12, "feet"),
  16085. default: true
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16091. {
  16092. front: {
  16093. height: math.unit(7 + 2 / 12, "feet"),
  16094. weight: math.unit(322, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/vulcan/front.svg",
  16098. extra: 154 / 147,
  16099. bottom: 0.04
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(7 + 2 / 12, "feet"),
  16107. default: true
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16113. {
  16114. front: {
  16115. height: math.unit(5 + 10 / 12, "feet"),
  16116. weight: math.unit(264, "lb"),
  16117. name: "Front",
  16118. image: {
  16119. source: "./media/characters/gault/front.svg",
  16120. extra: 161 / 140,
  16121. bottom: 0.028
  16122. }
  16123. },
  16124. },
  16125. [
  16126. {
  16127. name: "Normal",
  16128. height: math.unit(5 + 10 / 12, "feet"),
  16129. default: true
  16130. },
  16131. ]
  16132. ))
  16133. characterMakers.push(() => makeCharacter(
  16134. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16135. {
  16136. front: {
  16137. height: math.unit(6, "feet"),
  16138. weight: math.unit(150, "lb"),
  16139. name: "Front",
  16140. image: {
  16141. source: "./media/characters/shard/front.svg",
  16142. extra: 273 / 238,
  16143. bottom: 0.02
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Normal",
  16150. height: math.unit(3 + 6 / 12, "feet"),
  16151. default: true
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16157. {
  16158. front: {
  16159. height: math.unit(5 + 11 / 12, "feet"),
  16160. weight: math.unit(146, "lb"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/ashe/front.svg",
  16164. extra: 400 / 373,
  16165. bottom: 0.01
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Normal",
  16172. height: math.unit(5 + 11 / 12, "feet"),
  16173. default: true
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16179. {
  16180. front: {
  16181. height: math.unit(5 + 5 / 12, "feet"),
  16182. weight: math.unit(135, "lb"),
  16183. name: "Front",
  16184. image: {
  16185. source: "./media/characters/beatrix/front.svg",
  16186. extra: 392 / 379,
  16187. bottom: 0.01
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Normal",
  16194. height: math.unit(6, "feet"),
  16195. default: true
  16196. },
  16197. ]
  16198. ))
  16199. characterMakers.push(() => makeCharacter(
  16200. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16201. {
  16202. front: {
  16203. height: math.unit(6 + 2/12, "feet"),
  16204. weight: math.unit(135, "lb"),
  16205. name: "Front",
  16206. image: {
  16207. source: "./media/characters/ignatius/front.svg",
  16208. extra: 1380/1259,
  16209. bottom: 27/1407
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Normal",
  16216. height: math.unit(6 + 2/12, "feet"),
  16217. default: true
  16218. },
  16219. ]
  16220. ))
  16221. characterMakers.push(() => makeCharacter(
  16222. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16223. {
  16224. front: {
  16225. height: math.unit(6 + 2 / 12, "feet"),
  16226. weight: math.unit(138, "lb"),
  16227. name: "Front",
  16228. image: {
  16229. source: "./media/characters/mei-li/front.svg",
  16230. extra: 237 / 229,
  16231. bottom: 0.03
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(6 + 2 / 12, "feet"),
  16239. default: true
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16245. {
  16246. front: {
  16247. height: math.unit(2 + 4 / 12, "feet"),
  16248. weight: math.unit(62, "lb"),
  16249. name: "Front",
  16250. image: {
  16251. source: "./media/characters/puru/front.svg",
  16252. extra: 206 / 149,
  16253. bottom: 0.06
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Normal",
  16260. height: math.unit(2 + 4 / 12, "feet"),
  16261. default: true
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16267. {
  16268. anthro: {
  16269. height: math.unit(5 + 8/12, "feet"),
  16270. weight: math.unit(200, "lb"),
  16271. energyNeed: math.unit(2000, "kcal"),
  16272. name: "Anthro",
  16273. image: {
  16274. source: "./media/characters/kee/anthro.svg",
  16275. extra: 3251/3184,
  16276. bottom: 250/3501
  16277. }
  16278. },
  16279. taur: {
  16280. height: math.unit(11, "feet"),
  16281. weight: math.unit(500, "lb"),
  16282. energyNeed: math.unit(5000, "kcal"),
  16283. name: "Taur",
  16284. image: {
  16285. source: "./media/characters/kee/taur.svg",
  16286. extra: 1362/1320,
  16287. bottom: 83/1445
  16288. }
  16289. },
  16290. },
  16291. [
  16292. {
  16293. name: "Normal",
  16294. height: math.unit(5 + 8/12, "feet"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Macro",
  16299. height: math.unit(35, "feet")
  16300. },
  16301. ]
  16302. ))
  16303. characterMakers.push(() => makeCharacter(
  16304. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16305. {
  16306. anthro: {
  16307. height: math.unit(7, "feet"),
  16308. weight: math.unit(190, "lb"),
  16309. name: "Anthro",
  16310. image: {
  16311. source: "./media/characters/cobalt-dracha/anthro.svg",
  16312. extra: 231 / 225,
  16313. bottom: 0.04
  16314. }
  16315. },
  16316. feral: {
  16317. height: math.unit(9 + 7 / 12, "feet"),
  16318. weight: math.unit(294, "lb"),
  16319. name: "Feral",
  16320. image: {
  16321. source: "./media/characters/cobalt-dracha/feral.svg",
  16322. extra: 692 / 633,
  16323. bottom: 0.05
  16324. }
  16325. },
  16326. },
  16327. [
  16328. {
  16329. name: "Normal",
  16330. height: math.unit(7, "feet"),
  16331. default: true
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16337. {
  16338. fallen: {
  16339. height: math.unit(11 + 8 / 12, "feet"),
  16340. weight: math.unit(485, "lb"),
  16341. name: "Java (Fallen)",
  16342. rename: true,
  16343. image: {
  16344. source: "./media/characters/java/fallen.svg",
  16345. extra: 226 / 208,
  16346. bottom: 0.005
  16347. }
  16348. },
  16349. godkin: {
  16350. height: math.unit(10 + 6 / 12, "feet"),
  16351. weight: math.unit(328, "lb"),
  16352. name: "Java (Godkin)",
  16353. rename: true,
  16354. image: {
  16355. source: "./media/characters/java/godkin.svg",
  16356. extra: 1104/1068,
  16357. bottom: 36/1140
  16358. }
  16359. },
  16360. },
  16361. [
  16362. {
  16363. name: "Normal",
  16364. height: math.unit(11 + 8 / 12, "feet"),
  16365. default: true
  16366. },
  16367. ]
  16368. ))
  16369. characterMakers.push(() => makeCharacter(
  16370. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16371. {
  16372. front: {
  16373. height: math.unit(5 + 9 / 12, "feet"),
  16374. weight: math.unit(170, "lb"),
  16375. name: "Front",
  16376. image: {
  16377. source: "./media/characters/purna/front.svg",
  16378. extra: 239 / 229,
  16379. bottom: 0.01
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(5 + 9 / 12, "feet"),
  16387. default: true
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(5 + 9 / 12, "feet"),
  16396. weight: math.unit(142, "lb"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/kuva/front.svg",
  16400. extra: 281 / 271,
  16401. bottom: 0.006
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Normal",
  16408. height: math.unit(5 + 9 / 12, "feet"),
  16409. default: true
  16410. },
  16411. ]
  16412. ))
  16413. characterMakers.push(() => makeCharacter(
  16414. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16415. {
  16416. anthro: {
  16417. height: math.unit(9 + 2 / 12, "feet"),
  16418. weight: math.unit(270, "lb"),
  16419. name: "Anthro",
  16420. image: {
  16421. source: "./media/characters/embra/anthro.svg",
  16422. extra: 200 / 187,
  16423. bottom: 0.02
  16424. }
  16425. },
  16426. feral: {
  16427. height: math.unit(18 + 8 / 12, "feet"),
  16428. weight: math.unit(576, "lb"),
  16429. name: "Feral",
  16430. image: {
  16431. source: "./media/characters/embra/feral.svg",
  16432. extra: 152 / 137,
  16433. bottom: 0.037
  16434. }
  16435. },
  16436. },
  16437. [
  16438. {
  16439. name: "Normal",
  16440. height: math.unit(9 + 2 / 12, "feet"),
  16441. default: true
  16442. },
  16443. ]
  16444. ))
  16445. characterMakers.push(() => makeCharacter(
  16446. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16447. {
  16448. anthro: {
  16449. height: math.unit(10 + 9 / 12, "feet"),
  16450. weight: math.unit(224, "lb"),
  16451. name: "Anthro",
  16452. image: {
  16453. source: "./media/characters/grottos/anthro.svg",
  16454. extra: 350 / 332,
  16455. bottom: 0.045
  16456. }
  16457. },
  16458. feral: {
  16459. height: math.unit(20 + 7 / 12, "feet"),
  16460. weight: math.unit(629, "lb"),
  16461. name: "Feral",
  16462. image: {
  16463. source: "./media/characters/grottos/feral.svg",
  16464. extra: 207 / 190,
  16465. bottom: 0.05
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Normal",
  16472. height: math.unit(10 + 9 / 12, "feet"),
  16473. default: true
  16474. },
  16475. ]
  16476. ))
  16477. characterMakers.push(() => makeCharacter(
  16478. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16479. {
  16480. anthro: {
  16481. height: math.unit(9 + 6 / 12, "feet"),
  16482. weight: math.unit(298, "lb"),
  16483. name: "Anthro",
  16484. image: {
  16485. source: "./media/characters/frifna/anthro.svg",
  16486. extra: 282 / 269,
  16487. bottom: 0.015
  16488. }
  16489. },
  16490. feral: {
  16491. height: math.unit(16 + 2 / 12, "feet"),
  16492. weight: math.unit(624, "lb"),
  16493. name: "Feral",
  16494. image: {
  16495. source: "./media/characters/frifna/feral.svg"
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(9 + 6 / 12, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(6 + 2 / 12, "feet"),
  16512. weight: math.unit(168, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/elise/front.svg",
  16516. extra: 276 / 271
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Normal",
  16523. height: math.unit(6 + 2 / 12, "feet"),
  16524. default: true
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16530. {
  16531. front: {
  16532. height: math.unit(5 + 10 / 12, "feet"),
  16533. weight: math.unit(210, "lb"),
  16534. name: "Front",
  16535. image: {
  16536. source: "./media/characters/glade/front.svg",
  16537. extra: 258 / 247,
  16538. bottom: 0.008
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(5 + 10 / 12, "feet"),
  16546. default: true
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(5 + 10 / 12, "feet"),
  16555. weight: math.unit(129, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/rina/front.svg",
  16559. extra: 266 / 255,
  16560. bottom: 0.005
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(5 + 10 / 12, "feet"),
  16568. default: true
  16569. },
  16570. ]
  16571. ))
  16572. characterMakers.push(() => makeCharacter(
  16573. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16574. {
  16575. front: {
  16576. height: math.unit(6 + 1 / 12, "feet"),
  16577. weight: math.unit(192, "lb"),
  16578. name: "Front",
  16579. image: {
  16580. source: "./media/characters/veronica/front.svg",
  16581. extra: 319 / 309,
  16582. bottom: 0.005
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(6 + 1 / 12, "feet"),
  16590. default: true
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16596. {
  16597. front: {
  16598. height: math.unit(9 + 3 / 12, "feet"),
  16599. weight: math.unit(1100, "lb"),
  16600. name: "Front",
  16601. image: {
  16602. source: "./media/characters/braxton/front.svg",
  16603. extra: 1057 / 984,
  16604. bottom: 0.05
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Normal",
  16611. height: math.unit(9 + 3 / 12, "feet")
  16612. },
  16613. {
  16614. name: "Giant",
  16615. height: math.unit(300, "feet"),
  16616. default: true
  16617. },
  16618. {
  16619. name: "Macro",
  16620. height: math.unit(700, "feet")
  16621. },
  16622. {
  16623. name: "Megamacro",
  16624. height: math.unit(6000, "feet")
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(6 + 7 / 12, "feet"),
  16633. weight: math.unit(150, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/blue-feyonics/front.svg",
  16637. extra: 1403 / 1306,
  16638. bottom: 0.047
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(6 + 7 / 12, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(1.8, "meters"),
  16655. weight: math.unit(60, "kg"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/maxwell/front.svg",
  16659. extra: 2060 / 1873
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Micro",
  16666. height: math.unit(1, "mm")
  16667. },
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(1.8, "meter"),
  16671. default: true
  16672. },
  16673. {
  16674. name: "Macro",
  16675. height: math.unit(30, "meters")
  16676. },
  16677. {
  16678. name: "Megamacro",
  16679. height: math.unit(10, "km")
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16685. {
  16686. front: {
  16687. height: math.unit(6, "feet"),
  16688. weight: math.unit(150, "lb"),
  16689. name: "Front",
  16690. image: {
  16691. source: "./media/characters/jack/front.svg",
  16692. extra: 1754 / 1640,
  16693. bottom: 0.01
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(80000, "feet"),
  16701. default: true
  16702. },
  16703. {
  16704. name: "Max size",
  16705. height: math.unit(10, "lightyears")
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16711. {
  16712. urban: {
  16713. height: math.unit(5, "feet"),
  16714. weight: math.unit(240, "lb"),
  16715. name: "Urban",
  16716. image: {
  16717. source: "./media/characters/cafat/urban.svg",
  16718. extra: 1223/1126,
  16719. bottom: 205/1428
  16720. }
  16721. },
  16722. summer: {
  16723. height: math.unit(5, "feet"),
  16724. weight: math.unit(240, "lb"),
  16725. name: "Summer",
  16726. image: {
  16727. source: "./media/characters/cafat/summer.svg",
  16728. extra: 1223/1126,
  16729. bottom: 205/1428
  16730. }
  16731. },
  16732. winter: {
  16733. height: math.unit(5, "feet"),
  16734. weight: math.unit(240, "lb"),
  16735. name: "Winter",
  16736. image: {
  16737. source: "./media/characters/cafat/winter.svg",
  16738. extra: 1223/1126,
  16739. bottom: 205/1428
  16740. }
  16741. },
  16742. lingerie: {
  16743. height: math.unit(5, "feet"),
  16744. weight: math.unit(240, "lb"),
  16745. name: "Lingerie",
  16746. image: {
  16747. source: "./media/characters/cafat/lingerie.svg",
  16748. extra: 1223/1126,
  16749. bottom: 205/1428
  16750. }
  16751. },
  16752. upright: {
  16753. height: math.unit(6.3, "feet"),
  16754. weight: math.unit(240, "lb"),
  16755. name: "Upright",
  16756. image: {
  16757. source: "./media/characters/cafat/upright.svg",
  16758. bottom: 0.01
  16759. }
  16760. },
  16761. uprightFull: {
  16762. height: math.unit(6.3, "feet"),
  16763. weight: math.unit(240, "lb"),
  16764. name: "Upright (Full)",
  16765. image: {
  16766. source: "./media/characters/cafat/upright-full.svg",
  16767. bottom: 0.01
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Small",
  16774. height: math.unit(5, "feet"),
  16775. default: true
  16776. },
  16777. {
  16778. name: "Large",
  16779. height: math.unit(13, "feet")
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(6, "feet"),
  16788. weight: math.unit(150, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/verin-raharra/front.svg",
  16792. extra: 5019 / 4835,
  16793. bottom: 0.023
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(7 + 5 / 12, "feet"),
  16801. default: true
  16802. },
  16803. {
  16804. name: "Upsized",
  16805. height: math.unit(20, "feet")
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16811. {
  16812. front: {
  16813. height: math.unit(7, "feet"),
  16814. weight: math.unit(230, "lb"),
  16815. name: "Front",
  16816. image: {
  16817. source: "./media/characters/nakata/front.svg",
  16818. extra: 1.005,
  16819. bottom: 0.01
  16820. }
  16821. },
  16822. },
  16823. [
  16824. {
  16825. name: "Normal",
  16826. height: math.unit(7, "feet"),
  16827. default: true
  16828. },
  16829. {
  16830. name: "Big",
  16831. height: math.unit(14, "feet")
  16832. },
  16833. {
  16834. name: "Macro",
  16835. height: math.unit(400, "feet")
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16841. {
  16842. front: {
  16843. height: math.unit(4.91, "feet"),
  16844. weight: math.unit(100, "lb"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/lily/front.svg",
  16848. extra: 1585 / 1415,
  16849. bottom: 0.02
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(4.91, "feet"),
  16857. default: true
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16863. {
  16864. laying: {
  16865. height: math.unit(4 + 4 / 12, "feet"),
  16866. weight: math.unit(600, "lb"),
  16867. name: "Laying",
  16868. image: {
  16869. source: "./media/characters/sheila/laying.svg",
  16870. extra: 1333 / 1265,
  16871. bottom: 0.16
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(4 + 4 / 12, "feet"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(6, "feet"),
  16888. weight: math.unit(190, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/sax/front.svg",
  16892. extra: 1187 / 973,
  16893. bottom: 0.042
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Micro",
  16900. height: math.unit(4, "inches"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(6, "feet"),
  16910. weight: math.unit(150, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/pandora/front.svg",
  16914. extra: 2720 / 2556,
  16915. bottom: 0.015
  16916. }
  16917. },
  16918. back: {
  16919. height: math.unit(6, "feet"),
  16920. weight: math.unit(150, "lb"),
  16921. name: "Back",
  16922. image: {
  16923. source: "./media/characters/pandora/back.svg",
  16924. extra: 2720 / 2556,
  16925. bottom: 0.01
  16926. }
  16927. },
  16928. beans: {
  16929. height: math.unit(6 / 8, "feet"),
  16930. name: "Beans",
  16931. image: {
  16932. source: "./media/characters/pandora/beans.svg"
  16933. }
  16934. },
  16935. collar: {
  16936. height: math.unit(0.31, "feet"),
  16937. name: "Collar",
  16938. image: {
  16939. source: "./media/characters/pandora/collar.svg"
  16940. }
  16941. },
  16942. skirt: {
  16943. height: math.unit(6, "feet"),
  16944. weight: math.unit(150, "lb"),
  16945. name: "Skirt",
  16946. image: {
  16947. source: "./media/characters/pandora/skirt.svg",
  16948. extra: 1622 / 1525,
  16949. bottom: 0.015
  16950. }
  16951. },
  16952. hoodie: {
  16953. height: math.unit(6, "feet"),
  16954. weight: math.unit(150, "lb"),
  16955. name: "Hoodie",
  16956. image: {
  16957. source: "./media/characters/pandora/hoodie.svg",
  16958. extra: 1622 / 1525,
  16959. bottom: 0.015
  16960. }
  16961. },
  16962. casual: {
  16963. height: math.unit(6, "feet"),
  16964. weight: math.unit(150, "lb"),
  16965. name: "Casual",
  16966. image: {
  16967. source: "./media/characters/pandora/casual.svg",
  16968. extra: 1622 / 1525,
  16969. bottom: 0.015
  16970. }
  16971. },
  16972. },
  16973. [
  16974. {
  16975. name: "Normal",
  16976. height: math.unit(6, "feet")
  16977. },
  16978. {
  16979. name: "Big Steppy",
  16980. height: math.unit(1, "km"),
  16981. default: true
  16982. },
  16983. {
  16984. name: "Galactic Steppy",
  16985. height: math.unit(2, "gigameters")
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16991. {
  16992. side: {
  16993. height: math.unit(10, "feet"),
  16994. weight: math.unit(800, "kg"),
  16995. name: "Side",
  16996. image: {
  16997. source: "./media/characters/venio-darcony/side.svg",
  16998. extra: 1373 / 1003,
  16999. bottom: 0.037
  17000. }
  17001. },
  17002. front: {
  17003. height: math.unit(19, "feet"),
  17004. weight: math.unit(800, "kg"),
  17005. name: "Front",
  17006. image: {
  17007. source: "./media/characters/venio-darcony/front.svg"
  17008. }
  17009. },
  17010. back: {
  17011. height: math.unit(19, "feet"),
  17012. weight: math.unit(800, "kg"),
  17013. name: "Back",
  17014. image: {
  17015. source: "./media/characters/venio-darcony/back.svg"
  17016. }
  17017. },
  17018. sideNsfw: {
  17019. height: math.unit(10, "feet"),
  17020. weight: math.unit(800, "kg"),
  17021. name: "Side (NSFW)",
  17022. image: {
  17023. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17024. extra: 1373 / 1003,
  17025. bottom: 0.037
  17026. }
  17027. },
  17028. frontNsfw: {
  17029. height: math.unit(19, "feet"),
  17030. weight: math.unit(800, "kg"),
  17031. name: "Front (NSFW)",
  17032. image: {
  17033. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17034. }
  17035. },
  17036. backNsfw: {
  17037. height: math.unit(19, "feet"),
  17038. weight: math.unit(800, "kg"),
  17039. name: "Back (NSFW)",
  17040. image: {
  17041. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17042. }
  17043. },
  17044. sideArmored: {
  17045. height: math.unit(10, "feet"),
  17046. weight: math.unit(800, "kg"),
  17047. name: "Side (Armored)",
  17048. image: {
  17049. source: "./media/characters/venio-darcony/side-armored.svg",
  17050. extra: 1373 / 1003,
  17051. bottom: 0.037
  17052. }
  17053. },
  17054. frontArmored: {
  17055. height: math.unit(19, "feet"),
  17056. weight: math.unit(900, "kg"),
  17057. name: "Front (Armored)",
  17058. image: {
  17059. source: "./media/characters/venio-darcony/front-armored.svg"
  17060. }
  17061. },
  17062. backArmored: {
  17063. height: math.unit(19, "feet"),
  17064. weight: math.unit(900, "kg"),
  17065. name: "Back (Armored)",
  17066. image: {
  17067. source: "./media/characters/venio-darcony/back-armored.svg"
  17068. }
  17069. },
  17070. sword: {
  17071. height: math.unit(10, "feet"),
  17072. weight: math.unit(50, "lb"),
  17073. name: "Sword",
  17074. image: {
  17075. source: "./media/characters/venio-darcony/sword.svg"
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(10, "feet")
  17083. },
  17084. {
  17085. name: "Macro",
  17086. height: math.unit(130, "feet"),
  17087. default: true
  17088. },
  17089. {
  17090. name: "Macro+",
  17091. height: math.unit(240, "feet")
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(6, "feet"),
  17100. weight: math.unit(150, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/veski/front.svg",
  17104. extra: 1299 / 1225,
  17105. bottom: 0.04
  17106. }
  17107. },
  17108. back: {
  17109. height: math.unit(6, "feet"),
  17110. weight: math.unit(150, "lb"),
  17111. name: "Back",
  17112. image: {
  17113. source: "./media/characters/veski/back.svg",
  17114. extra: 1299 / 1225,
  17115. bottom: 0.008
  17116. }
  17117. },
  17118. maw: {
  17119. height: math.unit(1.5 * 1.21, "feet"),
  17120. name: "Maw",
  17121. image: {
  17122. source: "./media/characters/veski/maw.svg"
  17123. }
  17124. },
  17125. },
  17126. [
  17127. {
  17128. name: "Macro",
  17129. height: math.unit(2, "km"),
  17130. default: true
  17131. },
  17132. ]
  17133. ))
  17134. characterMakers.push(() => makeCharacter(
  17135. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17136. {
  17137. front: {
  17138. height: math.unit(5 + 7 / 12, "feet"),
  17139. name: "Front",
  17140. image: {
  17141. source: "./media/characters/isabelle/front.svg",
  17142. extra: 2130 / 1976,
  17143. bottom: 0.05
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Supermicro",
  17150. height: math.unit(10, "micrometers")
  17151. },
  17152. {
  17153. name: "Micro",
  17154. height: math.unit(1, "inch")
  17155. },
  17156. {
  17157. name: "Tiny",
  17158. height: math.unit(5, "inches")
  17159. },
  17160. {
  17161. name: "Standard",
  17162. height: math.unit(5 + 7 / 12, "inches")
  17163. },
  17164. {
  17165. name: "Macro",
  17166. height: math.unit(80, "meters"),
  17167. default: true
  17168. },
  17169. {
  17170. name: "Megamacro",
  17171. height: math.unit(250, "meters")
  17172. },
  17173. {
  17174. name: "Gigamacro",
  17175. height: math.unit(5, "km")
  17176. },
  17177. {
  17178. name: "Cosmic",
  17179. height: math.unit(2.5e6, "miles")
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(6, "feet"),
  17188. weight: math.unit(150, "lb"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/hanzo/front.svg",
  17192. extra: 374 / 344,
  17193. bottom: 0.02
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(8, "feet"),
  17201. default: true
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(7, "feet"),
  17210. weight: math.unit(130, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/anna/front.svg",
  17214. extra: 169 / 145,
  17215. bottom: 0.06
  17216. }
  17217. },
  17218. full: {
  17219. height: math.unit(4.96, "feet"),
  17220. weight: math.unit(220, "lb"),
  17221. name: "Full",
  17222. image: {
  17223. source: "./media/characters/anna/full.svg",
  17224. extra: 138 / 114,
  17225. bottom: 0.15
  17226. }
  17227. },
  17228. tongue: {
  17229. height: math.unit(2.53, "feet"),
  17230. name: "Tongue",
  17231. image: {
  17232. source: "./media/characters/anna/tongue.svg"
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(7, "feet"),
  17240. default: true
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(7, "feet"),
  17249. weight: math.unit(150, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/ian-corvid/front.svg",
  17253. extra: 150 / 142,
  17254. bottom: 0.02
  17255. }
  17256. },
  17257. back: {
  17258. height: math.unit(7, "feet"),
  17259. weight: math.unit(150, "lb"),
  17260. name: "Back",
  17261. image: {
  17262. source: "./media/characters/ian-corvid/back.svg",
  17263. extra: 150 / 143,
  17264. bottom: 0.01
  17265. }
  17266. },
  17267. stomping: {
  17268. height: math.unit(7, "feet"),
  17269. weight: math.unit(150, "lb"),
  17270. name: "Stomping",
  17271. image: {
  17272. source: "./media/characters/ian-corvid/stomping.svg",
  17273. extra: 76 / 72
  17274. }
  17275. },
  17276. sitting: {
  17277. height: math.unit(7 / 1.8, "feet"),
  17278. weight: math.unit(150, "lb"),
  17279. name: "Sitting",
  17280. image: {
  17281. source: "./media/characters/ian-corvid/sitting.svg",
  17282. extra: 1400 / 1269,
  17283. bottom: 0.15
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Tiny Microw",
  17290. height: math.unit(1, "inch")
  17291. },
  17292. {
  17293. name: "Microw",
  17294. height: math.unit(6, "inches")
  17295. },
  17296. {
  17297. name: "Crow",
  17298. height: math.unit(7 + 1 / 12, "feet"),
  17299. default: true
  17300. },
  17301. {
  17302. name: "Macrow",
  17303. height: math.unit(176, "feet")
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17309. {
  17310. front: {
  17311. height: math.unit(5 + 7 / 12, "feet"),
  17312. weight: math.unit(147, "lb"),
  17313. name: "Front",
  17314. image: {
  17315. source: "./media/characters/natalie-kellon/front.svg",
  17316. extra: 1214 / 1141,
  17317. bottom: 0.02
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Micro",
  17324. height: math.unit(1 / 16, "inch")
  17325. },
  17326. {
  17327. name: "Tiny",
  17328. height: math.unit(4, "inches")
  17329. },
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(5 + 7 / 12, "feet"),
  17333. default: true
  17334. },
  17335. {
  17336. name: "Amazon",
  17337. height: math.unit(12, "feet")
  17338. },
  17339. {
  17340. name: "Giantess",
  17341. height: math.unit(160, "meters")
  17342. },
  17343. {
  17344. name: "Titaness",
  17345. height: math.unit(800, "meters")
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(6, "feet"),
  17354. weight: math.unit(150, "lb"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/alluria/front.svg",
  17358. extra: 806 / 738,
  17359. bottom: 0.01
  17360. }
  17361. },
  17362. side: {
  17363. height: math.unit(6, "feet"),
  17364. weight: math.unit(150, "lb"),
  17365. name: "Side",
  17366. image: {
  17367. source: "./media/characters/alluria/side.svg",
  17368. extra: 800 / 750,
  17369. }
  17370. },
  17371. back: {
  17372. height: math.unit(6, "feet"),
  17373. weight: math.unit(150, "lb"),
  17374. name: "Back",
  17375. image: {
  17376. source: "./media/characters/alluria/back.svg",
  17377. extra: 806 / 738,
  17378. }
  17379. },
  17380. frontMaid: {
  17381. height: math.unit(6, "feet"),
  17382. weight: math.unit(150, "lb"),
  17383. name: "Front (Maid)",
  17384. image: {
  17385. source: "./media/characters/alluria/front-maid.svg",
  17386. extra: 806 / 738,
  17387. bottom: 0.01
  17388. }
  17389. },
  17390. sideMaid: {
  17391. height: math.unit(6, "feet"),
  17392. weight: math.unit(150, "lb"),
  17393. name: "Side (Maid)",
  17394. image: {
  17395. source: "./media/characters/alluria/side-maid.svg",
  17396. extra: 800 / 750,
  17397. bottom: 0.005
  17398. }
  17399. },
  17400. backMaid: {
  17401. height: math.unit(6, "feet"),
  17402. weight: math.unit(150, "lb"),
  17403. name: "Back (Maid)",
  17404. image: {
  17405. source: "./media/characters/alluria/back-maid.svg",
  17406. extra: 806 / 738,
  17407. }
  17408. },
  17409. },
  17410. [
  17411. {
  17412. name: "Micro",
  17413. height: math.unit(6, "inches"),
  17414. default: true
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17420. {
  17421. front: {
  17422. height: math.unit(6, "feet"),
  17423. weight: math.unit(150, "lb"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/kyle/front.svg",
  17427. extra: 1069 / 962,
  17428. bottom: 77.228 / 1727.45
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Macro",
  17435. height: math.unit(150, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(6, "feet"),
  17445. weight: math.unit(300, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/duncan/front.svg",
  17449. extra: 1650 / 1482,
  17450. bottom: 0.05
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Macro",
  17457. height: math.unit(100, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(5 + 4 / 12, "feet"),
  17467. weight: math.unit(220, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/memory/front.svg",
  17471. extra: 3641 / 3545,
  17472. bottom: 0.03
  17473. }
  17474. },
  17475. back: {
  17476. height: math.unit(5 + 4 / 12, "feet"),
  17477. weight: math.unit(220, "lb"),
  17478. name: "Back",
  17479. image: {
  17480. source: "./media/characters/memory/back.svg",
  17481. extra: 3641 / 3545,
  17482. bottom: 0.025
  17483. }
  17484. },
  17485. frontSkirt: {
  17486. height: math.unit(5 + 4 / 12, "feet"),
  17487. weight: math.unit(220, "lb"),
  17488. name: "Front (Skirt)",
  17489. image: {
  17490. source: "./media/characters/memory/front-skirt.svg",
  17491. extra: 3641 / 3545,
  17492. bottom: 0.03
  17493. }
  17494. },
  17495. frontDress: {
  17496. height: math.unit(5 + 4 / 12, "feet"),
  17497. weight: math.unit(220, "lb"),
  17498. name: "Front (Dress)",
  17499. image: {
  17500. source: "./media/characters/memory/front-dress.svg",
  17501. extra: 3641 / 3545,
  17502. bottom: 0.03
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Micro",
  17509. height: math.unit(6, "inches"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Normal",
  17514. height: math.unit(5 + 4 / 12, "feet")
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17520. {
  17521. front: {
  17522. height: math.unit(4 + 11 / 12, "feet"),
  17523. weight: math.unit(100, "lb"),
  17524. name: "Front",
  17525. image: {
  17526. source: "./media/characters/luno/front.svg",
  17527. extra: 1535 / 1487,
  17528. bottom: 0.03
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Micro",
  17535. height: math.unit(3, "inches")
  17536. },
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(4 + 11 / 12, "feet"),
  17540. default: true
  17541. },
  17542. {
  17543. name: "Macro",
  17544. height: math.unit(300, "feet")
  17545. },
  17546. {
  17547. name: "Megamacro",
  17548. height: math.unit(700, "miles")
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17554. {
  17555. front: {
  17556. height: math.unit(6 + 2 / 12, "feet"),
  17557. weight: math.unit(170, "lb"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/jamesy/front.svg",
  17561. extra: 440 / 382,
  17562. bottom: 0.005
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Micro",
  17569. height: math.unit(3, "inches")
  17570. },
  17571. {
  17572. name: "Normal",
  17573. height: math.unit(6 + 2 / 12, "feet"),
  17574. default: true
  17575. },
  17576. {
  17577. name: "Macro",
  17578. height: math.unit(300, "feet")
  17579. },
  17580. {
  17581. name: "Megamacro",
  17582. height: math.unit(700, "miles")
  17583. },
  17584. ]
  17585. ))
  17586. characterMakers.push(() => makeCharacter(
  17587. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17588. {
  17589. front: {
  17590. height: math.unit(6, "feet"),
  17591. weight: math.unit(160, "lb"),
  17592. name: "Front",
  17593. image: {
  17594. source: "./media/characters/mark/front.svg",
  17595. extra: 3300 / 3100,
  17596. bottom: 136.42 / 3440.47
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Macro",
  17603. height: math.unit(120, "meters")
  17604. },
  17605. {
  17606. name: "Bigger Macro",
  17607. height: math.unit(350, "meters")
  17608. },
  17609. {
  17610. name: "Megamacro",
  17611. height: math.unit(8, "km"),
  17612. default: true
  17613. },
  17614. {
  17615. name: "Continental",
  17616. height: math.unit(4550, "km")
  17617. },
  17618. {
  17619. name: "Planetary",
  17620. height: math.unit(65000, "km")
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(6, "feet"),
  17629. weight: math.unit(400, "lb"),
  17630. name: "Front",
  17631. image: {
  17632. source: "./media/characters/mac/front.svg",
  17633. extra: 1048 / 987.7,
  17634. bottom: 60 / 1107.6,
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Macro",
  17641. height: math.unit(500, "feet"),
  17642. default: true
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17648. {
  17649. front: {
  17650. height: math.unit(5 + 2 / 12, "feet"),
  17651. weight: math.unit(190, "lb"),
  17652. name: "Front",
  17653. image: {
  17654. source: "./media/characters/bari/front.svg",
  17655. extra: 3156 / 2880,
  17656. bottom: 0.03
  17657. }
  17658. },
  17659. back: {
  17660. height: math.unit(5 + 2 / 12, "feet"),
  17661. weight: math.unit(190, "lb"),
  17662. name: "Back",
  17663. image: {
  17664. source: "./media/characters/bari/back.svg",
  17665. extra: 3260 / 2834,
  17666. bottom: 0.025
  17667. }
  17668. },
  17669. frontPlush: {
  17670. height: math.unit(5 + 2 / 12, "feet"),
  17671. weight: math.unit(190, "lb"),
  17672. name: "Front (Plush)",
  17673. image: {
  17674. source: "./media/characters/bari/front-plush.svg",
  17675. extra: 1112 / 1061,
  17676. bottom: 0.002
  17677. }
  17678. },
  17679. },
  17680. [
  17681. {
  17682. name: "Micro",
  17683. height: math.unit(3, "inches")
  17684. },
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(5 + 2 / 12, "feet"),
  17688. default: true
  17689. },
  17690. {
  17691. name: "Macro",
  17692. height: math.unit(20, "feet")
  17693. },
  17694. ]
  17695. ))
  17696. characterMakers.push(() => makeCharacter(
  17697. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17698. {
  17699. front: {
  17700. height: math.unit(6 + 1 / 12, "feet"),
  17701. weight: math.unit(275, "lb"),
  17702. name: "Front",
  17703. image: {
  17704. source: "./media/characters/hunter-misha-raven/front.svg"
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Mortal",
  17711. height: math.unit(6 + 1 / 12, "feet")
  17712. },
  17713. {
  17714. name: "Divine",
  17715. height: math.unit(1.12134e34, "parsecs"),
  17716. default: true
  17717. },
  17718. ]
  17719. ))
  17720. characterMakers.push(() => makeCharacter(
  17721. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17722. {
  17723. front: {
  17724. height: math.unit(6 + 3 / 12, "feet"),
  17725. weight: math.unit(220, "lb"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/max-calore/front.svg",
  17729. extra: 1700 / 1648,
  17730. bottom: 0.01
  17731. }
  17732. },
  17733. back: {
  17734. height: math.unit(6 + 3 / 12, "feet"),
  17735. weight: math.unit(220, "lb"),
  17736. name: "Back",
  17737. image: {
  17738. source: "./media/characters/max-calore/back.svg",
  17739. extra: 1700 / 1648,
  17740. bottom: 0.01
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(6 + 3 / 12, "feet"),
  17748. default: true
  17749. },
  17750. ]
  17751. ))
  17752. characterMakers.push(() => makeCharacter(
  17753. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17754. {
  17755. side: {
  17756. height: math.unit(2 + 8 / 12, "feet"),
  17757. weight: math.unit(99, "lb"),
  17758. name: "Side",
  17759. image: {
  17760. source: "./media/characters/aspen/side.svg",
  17761. extra: 152 / 138,
  17762. bottom: 0.032
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(2 + 8 / 12, "feet"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17776. {
  17777. side: {
  17778. height: math.unit(3 + 2 / 12, "feet"),
  17779. weight: math.unit(224, "lb"),
  17780. name: "Side",
  17781. image: {
  17782. source: "./media/characters/sheila-feral-wolf/side.svg",
  17783. extra: 179 / 166,
  17784. bottom: 0.03
  17785. }
  17786. },
  17787. },
  17788. [
  17789. {
  17790. name: "Normal",
  17791. height: math.unit(3 + 2 / 12, "feet"),
  17792. default: true
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17798. {
  17799. side: {
  17800. height: math.unit(1 + 9 / 12, "feet"),
  17801. weight: math.unit(38, "lb"),
  17802. name: "Side",
  17803. image: {
  17804. source: "./media/characters/michelle/side.svg",
  17805. extra: 147 / 136.7,
  17806. bottom: 0.03
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(1 + 9 / 12, "feet"),
  17814. default: true
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17820. {
  17821. front: {
  17822. height: math.unit(1.54, "feet"),
  17823. weight: math.unit(50, "lb"),
  17824. name: "Front",
  17825. image: {
  17826. source: "./media/characters/nino/front.svg"
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(1.54, "feet"),
  17834. default: true
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(1.49, "feet"),
  17843. weight: math.unit(45, "lb"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/viola/front.svg"
  17847. }
  17848. },
  17849. },
  17850. [
  17851. {
  17852. name: "Normal",
  17853. height: math.unit(1.49, "feet"),
  17854. default: true
  17855. },
  17856. ]
  17857. ))
  17858. characterMakers.push(() => makeCharacter(
  17859. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17860. {
  17861. front: {
  17862. height: math.unit(6 + 5 / 12, "feet"),
  17863. weight: math.unit(580, "lb"),
  17864. name: "Front",
  17865. image: {
  17866. source: "./media/characters/atlas/front.svg",
  17867. extra: 298.5 / 290,
  17868. bottom: 0.015
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(6 + 5 / 12, "feet"),
  17876. default: true
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17882. {
  17883. side: {
  17884. height: math.unit(15.6, "inches"),
  17885. weight: math.unit(10, "lb"),
  17886. name: "Side",
  17887. image: {
  17888. source: "./media/characters/davy/side.svg",
  17889. extra: 200 / 170,
  17890. bottom: 0.01
  17891. }
  17892. },
  17893. },
  17894. [
  17895. {
  17896. name: "Normal",
  17897. height: math.unit(15.6, "inches"),
  17898. default: true
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17904. {
  17905. side: {
  17906. height: math.unit(4 + 8 / 12, "feet"),
  17907. weight: math.unit(166, "lb"),
  17908. name: "Side",
  17909. image: {
  17910. source: "./media/characters/fiona/side.svg",
  17911. extra: 232 / 220,
  17912. bottom: 0.03
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(4 + 8 / 12, "feet"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17926. {
  17927. front: {
  17928. height: math.unit(26, "inches"),
  17929. weight: math.unit(35, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/lyla/front.svg",
  17933. bottom: 0.1
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(3, "feet"),
  17941. default: true
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17947. {
  17948. side: {
  17949. height: math.unit(1.8, "feet"),
  17950. weight: math.unit(44, "lb"),
  17951. name: "Side",
  17952. image: {
  17953. source: "./media/characters/perseus/side.svg",
  17954. bottom: 0.21
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(1.8, "feet"),
  17962. default: true
  17963. },
  17964. ]
  17965. ))
  17966. characterMakers.push(() => makeCharacter(
  17967. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17968. {
  17969. side: {
  17970. height: math.unit(4 + 2 / 12, "feet"),
  17971. weight: math.unit(20, "lb"),
  17972. name: "Side",
  17973. image: {
  17974. source: "./media/characters/remus/side.svg"
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Normal",
  17981. height: math.unit(4 + 2 / 12, "feet"),
  17982. default: true
  17983. },
  17984. ]
  17985. ))
  17986. characterMakers.push(() => makeCharacter(
  17987. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17988. {
  17989. front: {
  17990. height: math.unit(4 + 11 / 12, "feet"),
  17991. weight: math.unit(114, "lb"),
  17992. name: "Front",
  17993. image: {
  17994. source: "./media/characters/raf/front.svg",
  17995. extra: 1504/1339,
  17996. bottom: 26/1530
  17997. }
  17998. },
  17999. side: {
  18000. height: math.unit(4 + 11 / 12, "feet"),
  18001. weight: math.unit(114, "lb"),
  18002. name: "Side",
  18003. image: {
  18004. source: "./media/characters/raf/side.svg",
  18005. extra: 1466/1316,
  18006. bottom: 29/1495
  18007. }
  18008. },
  18009. paw: {
  18010. height: math.unit(1.45, "feet"),
  18011. name: "Paw",
  18012. image: {
  18013. source: "./media/characters/raf/paw.svg"
  18014. },
  18015. extraAttributes: {
  18016. "toeSize": {
  18017. name: "Toe Size",
  18018. power: 2,
  18019. type: "area",
  18020. base: math.unit(0.004, "m^2")
  18021. },
  18022. "padSize": {
  18023. name: "Pad Size",
  18024. power: 2,
  18025. type: "area",
  18026. base: math.unit(0.04, "m^2")
  18027. },
  18028. "footSize": {
  18029. name: "Foot Size",
  18030. power: 2,
  18031. type: "area",
  18032. base: math.unit(0.08, "m^2")
  18033. },
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Micro",
  18040. height: math.unit(2, "inches")
  18041. },
  18042. {
  18043. name: "Normal",
  18044. height: math.unit(4 + 11 / 12, "feet"),
  18045. default: true
  18046. },
  18047. {
  18048. name: "Macro",
  18049. height: math.unit(70, "feet")
  18050. },
  18051. ]
  18052. ))
  18053. characterMakers.push(() => makeCharacter(
  18054. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18055. {
  18056. front: {
  18057. height: math.unit(1.5, "meters"),
  18058. weight: math.unit(68, "kg"),
  18059. name: "Front",
  18060. image: {
  18061. source: "./media/characters/liam-einarr/front.svg",
  18062. extra: 2822 / 2666
  18063. }
  18064. },
  18065. back: {
  18066. height: math.unit(1.5, "meters"),
  18067. weight: math.unit(68, "kg"),
  18068. name: "Back",
  18069. image: {
  18070. source: "./media/characters/liam-einarr/back.svg",
  18071. extra: 2822 / 2666,
  18072. bottom: 0.015
  18073. }
  18074. },
  18075. },
  18076. [
  18077. {
  18078. name: "Normal",
  18079. height: math.unit(1.5, "meters"),
  18080. default: true
  18081. },
  18082. {
  18083. name: "Macro",
  18084. height: math.unit(150, "meters")
  18085. },
  18086. {
  18087. name: "Megamacro",
  18088. height: math.unit(35, "km")
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18094. {
  18095. front: {
  18096. height: math.unit(6, "feet"),
  18097. weight: math.unit(75, "kg"),
  18098. name: "Front",
  18099. image: {
  18100. source: "./media/characters/linda/front.svg",
  18101. extra: 930 / 874,
  18102. bottom: 0.004
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(6, "feet"),
  18110. default: true
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18116. {
  18117. front: {
  18118. height: math.unit(6 + 8 / 12, "feet"),
  18119. weight: math.unit(220, "lb"),
  18120. name: "Front",
  18121. image: {
  18122. source: "./media/characters/caylex/front.svg",
  18123. extra: 821 / 772,
  18124. bottom: 0.07
  18125. }
  18126. },
  18127. back: {
  18128. height: math.unit(6 + 8 / 12, "feet"),
  18129. weight: math.unit(220, "lb"),
  18130. name: "Back",
  18131. image: {
  18132. source: "./media/characters/caylex/back.svg",
  18133. extra: 821 / 772,
  18134. bottom: 0.022
  18135. }
  18136. },
  18137. hand: {
  18138. height: math.unit(1.25, "feet"),
  18139. name: "Hand",
  18140. image: {
  18141. source: "./media/characters/caylex/hand.svg"
  18142. }
  18143. },
  18144. foot: {
  18145. height: math.unit(1.6, "feet"),
  18146. name: "Foot",
  18147. image: {
  18148. source: "./media/characters/caylex/foot.svg"
  18149. }
  18150. },
  18151. armored: {
  18152. height: math.unit(6 + 8 / 12, "feet"),
  18153. weight: math.unit(250, "lb"),
  18154. name: "Armored",
  18155. image: {
  18156. source: "./media/characters/caylex/armored.svg",
  18157. extra: 1420 / 1310,
  18158. bottom: 0.045
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(6 + 8 / 12, "feet"),
  18166. default: true
  18167. },
  18168. {
  18169. name: "Normal+",
  18170. height: math.unit(12, "feet")
  18171. },
  18172. ]
  18173. ))
  18174. characterMakers.push(() => makeCharacter(
  18175. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18176. {
  18177. front: {
  18178. height: math.unit(7 + 6 / 12, "feet"),
  18179. weight: math.unit(288, "lb"),
  18180. name: "Front",
  18181. image: {
  18182. source: "./media/characters/alana/front.svg",
  18183. extra: 679 / 653,
  18184. bottom: 22.5 / 701
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Normal",
  18191. height: math.unit(7 + 6 / 12, "feet")
  18192. },
  18193. {
  18194. name: "Large",
  18195. height: math.unit(50, "feet")
  18196. },
  18197. {
  18198. name: "Macro",
  18199. height: math.unit(100, "feet"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Macro+",
  18204. height: math.unit(200, "feet")
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(6 + 1 / 12, "feet"),
  18213. weight: math.unit(210, "lb"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/hasani/front.svg",
  18217. extra: 244 / 232,
  18218. bottom: 0.01
  18219. }
  18220. },
  18221. back: {
  18222. height: math.unit(6 + 1 / 12, "feet"),
  18223. weight: math.unit(210, "lb"),
  18224. name: "Back",
  18225. image: {
  18226. source: "./media/characters/hasani/back.svg",
  18227. extra: 244 / 232,
  18228. bottom: 0.01
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(6 + 1 / 12, "feet")
  18236. },
  18237. {
  18238. name: "Macro",
  18239. height: math.unit(175, "feet"),
  18240. default: true
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18246. {
  18247. front: {
  18248. height: math.unit(1.82, "meters"),
  18249. weight: math.unit(140, "lb"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/nita/front.svg",
  18253. extra: 2473 / 2363,
  18254. bottom: 0.01
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(1.82, "m")
  18262. },
  18263. {
  18264. name: "Macro",
  18265. height: math.unit(300, "m")
  18266. },
  18267. {
  18268. name: "Mistake Canon",
  18269. height: math.unit(0.5, "miles"),
  18270. default: true
  18271. },
  18272. {
  18273. name: "Big Mistake",
  18274. height: math.unit(13, "miles")
  18275. },
  18276. {
  18277. name: "Playing God",
  18278. height: math.unit(2450, "miles")
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(4, "feet"),
  18287. weight: math.unit(120, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/shiriko/front.svg",
  18291. extra: 970/934,
  18292. bottom: 5/975
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(4, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(6, "feet"),
  18309. name: "front",
  18310. image: {
  18311. source: "./media/characters/deja/front.svg",
  18312. extra: 926 / 840,
  18313. bottom: 0.07
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Planck Length",
  18320. height: math.unit(1.6e-35, "meters")
  18321. },
  18322. {
  18323. name: "Normal",
  18324. height: math.unit(30.48, "meters"),
  18325. default: true
  18326. },
  18327. {
  18328. name: "Universal",
  18329. height: math.unit(8.8e26, "meters")
  18330. },
  18331. ]
  18332. ))
  18333. characterMakers.push(() => makeCharacter(
  18334. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18335. {
  18336. side: {
  18337. height: math.unit(8, "feet"),
  18338. weight: math.unit(6300, "lb"),
  18339. name: "Side",
  18340. image: {
  18341. source: "./media/characters/anima/side.svg",
  18342. bottom: 0.035
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(8, "feet"),
  18350. default: true
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18356. {
  18357. front: {
  18358. height: math.unit(8, "feet"),
  18359. weight: math.unit(350, "lb"),
  18360. name: "Front",
  18361. image: {
  18362. source: "./media/characters/bianca/front.svg",
  18363. extra: 234 / 225,
  18364. bottom: 0.03
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(8, "feet"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18378. {
  18379. front: {
  18380. height: math.unit(11 + 5/12, "feet"),
  18381. weight: math.unit(1200, "lb"),
  18382. name: "Front",
  18383. image: {
  18384. source: "./media/characters/adinia/front.svg",
  18385. extra: 1767/1641,
  18386. bottom: 44/1811
  18387. },
  18388. extraAttributes: {
  18389. "energyIntake": {
  18390. name: "Energy Intake",
  18391. power: 3,
  18392. type: "energy",
  18393. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18394. },
  18395. }
  18396. },
  18397. back: {
  18398. height: math.unit(11 + 5/12, "feet"),
  18399. weight: math.unit(1200, "lb"),
  18400. name: "Back",
  18401. image: {
  18402. source: "./media/characters/adinia/back.svg",
  18403. extra: 1834/1684,
  18404. bottom: 14/1848
  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. maw: {
  18416. height: math.unit(3.79, "feet"),
  18417. name: "Maw",
  18418. image: {
  18419. source: "./media/characters/adinia/maw.svg"
  18420. }
  18421. },
  18422. rump: {
  18423. height: math.unit(4.6, "feet"),
  18424. name: "Rump",
  18425. image: {
  18426. source: "./media/characters/adinia/rump.svg"
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(11 + 5 / 12, "feet"),
  18434. default: true
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18440. {
  18441. front: {
  18442. height: math.unit(3, "meters"),
  18443. weight: math.unit(200, "kg"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/lykasa/front.svg",
  18447. extra: 1076 / 976,
  18448. bottom: 0.06
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(3, "meters")
  18456. },
  18457. {
  18458. name: "Kaiju",
  18459. height: math.unit(120, "meters"),
  18460. default: true
  18461. },
  18462. {
  18463. name: "Mega Kaiju",
  18464. height: math.unit(240, "km")
  18465. },
  18466. {
  18467. name: "Giga Kaiju",
  18468. height: math.unit(400, "megameters")
  18469. },
  18470. {
  18471. name: "Tera Kaiju",
  18472. height: math.unit(800, "gigameters")
  18473. },
  18474. {
  18475. name: "Kaiju Dragon Goddess",
  18476. height: math.unit(26, "zettaparsecs")
  18477. },
  18478. ]
  18479. ))
  18480. characterMakers.push(() => makeCharacter(
  18481. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18482. {
  18483. side: {
  18484. height: math.unit(283 / 124 * 6, "feet"),
  18485. weight: math.unit(35000, "lb"),
  18486. name: "Side",
  18487. image: {
  18488. source: "./media/characters/malfaren/side.svg",
  18489. extra: 1310/529,
  18490. bottom: 24/1334
  18491. }
  18492. },
  18493. front: {
  18494. height: math.unit(22.36, "feet"),
  18495. weight: math.unit(35000, "lb"),
  18496. name: "Front",
  18497. image: {
  18498. source: "./media/characters/malfaren/front.svg",
  18499. extra: 1237/1115,
  18500. bottom: 32/1269
  18501. }
  18502. },
  18503. maw: {
  18504. height: math.unit(6.9, "feet"),
  18505. name: "Maw",
  18506. image: {
  18507. source: "./media/characters/malfaren/maw.svg"
  18508. }
  18509. },
  18510. dick: {
  18511. height: math.unit(6.19, "feet"),
  18512. name: "Dick",
  18513. image: {
  18514. source: "./media/characters/malfaren/dick.svg"
  18515. }
  18516. },
  18517. eye: {
  18518. height: math.unit(0.69, "feet"),
  18519. name: "Eye",
  18520. image: {
  18521. source: "./media/characters/malfaren/eye.svg"
  18522. }
  18523. },
  18524. },
  18525. [
  18526. {
  18527. name: "Big",
  18528. height: math.unit(283 / 162 * 6, "feet"),
  18529. },
  18530. {
  18531. name: "Bigger",
  18532. height: math.unit(283 / 124 * 6, "feet")
  18533. },
  18534. {
  18535. name: "Massive",
  18536. height: math.unit(283 / 92 * 6, "feet"),
  18537. default: true
  18538. },
  18539. {
  18540. name: "👀💦",
  18541. height: math.unit(283 / 73 * 6, "feet"),
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18547. {
  18548. front: {
  18549. height: math.unit(1.7, "m"),
  18550. weight: math.unit(70, "kg"),
  18551. name: "Front",
  18552. image: {
  18553. source: "./media/characters/kernel/front.svg",
  18554. extra: 222 / 210,
  18555. bottom: 0.007
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Nano",
  18562. height: math.unit(17, "micrometers")
  18563. },
  18564. {
  18565. name: "Micro",
  18566. height: math.unit(1.7, "mm")
  18567. },
  18568. {
  18569. name: "Small",
  18570. height: math.unit(1.7, "cm")
  18571. },
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(1.7, "m"),
  18575. default: true
  18576. },
  18577. ]
  18578. ))
  18579. characterMakers.push(() => makeCharacter(
  18580. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18581. {
  18582. front: {
  18583. height: math.unit(1.75, "meters"),
  18584. weight: math.unit(65, "kg"),
  18585. name: "Front",
  18586. image: {
  18587. source: "./media/characters/jayne-folest/front.svg",
  18588. extra: 2115 / 2007,
  18589. bottom: 0.02
  18590. }
  18591. },
  18592. back: {
  18593. height: math.unit(1.75, "meters"),
  18594. weight: math.unit(65, "kg"),
  18595. name: "Back",
  18596. image: {
  18597. source: "./media/characters/jayne-folest/back.svg",
  18598. extra: 2115 / 2007,
  18599. bottom: 0.005
  18600. }
  18601. },
  18602. frontClothed: {
  18603. height: math.unit(1.75, "meters"),
  18604. weight: math.unit(65, "kg"),
  18605. name: "Front (Clothed)",
  18606. image: {
  18607. source: "./media/characters/jayne-folest/front-clothed.svg",
  18608. extra: 2115 / 2007,
  18609. bottom: 0.035
  18610. }
  18611. },
  18612. hand: {
  18613. height: math.unit(1 / 1.260, "feet"),
  18614. name: "Hand",
  18615. image: {
  18616. source: "./media/characters/jayne-folest/hand.svg"
  18617. }
  18618. },
  18619. foot: {
  18620. height: math.unit(1 / 0.918, "feet"),
  18621. name: "Foot",
  18622. image: {
  18623. source: "./media/characters/jayne-folest/foot.svg"
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Micro",
  18630. height: math.unit(4, "cm")
  18631. },
  18632. {
  18633. name: "Normal",
  18634. height: math.unit(1.75, "meters")
  18635. },
  18636. {
  18637. name: "Macro",
  18638. height: math.unit(47.5, "meters"),
  18639. default: true
  18640. },
  18641. ]
  18642. ))
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18645. {
  18646. front: {
  18647. height: math.unit(180, "cm"),
  18648. weight: math.unit(70, "kg"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/algier/front.svg",
  18652. extra: 596 / 572,
  18653. bottom: 0.04
  18654. }
  18655. },
  18656. back: {
  18657. height: math.unit(180, "cm"),
  18658. weight: math.unit(70, "kg"),
  18659. name: "Back",
  18660. image: {
  18661. source: "./media/characters/algier/back.svg",
  18662. extra: 596 / 572,
  18663. bottom: 0.025
  18664. }
  18665. },
  18666. frontdressed: {
  18667. height: math.unit(180, "cm"),
  18668. weight: math.unit(150, "kg"),
  18669. name: "Front-dressed",
  18670. image: {
  18671. source: "./media/characters/algier/front-dressed.svg",
  18672. extra: 596 / 572,
  18673. bottom: 0.038
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Micro",
  18680. height: math.unit(5, "cm")
  18681. },
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(180, "cm"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(64, "m")
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18695. {
  18696. upright: {
  18697. height: math.unit(7, "feet"),
  18698. weight: math.unit(300, "lb"),
  18699. name: "Upright",
  18700. image: {
  18701. source: "./media/characters/pretzel/upright.svg",
  18702. extra: 534 / 522,
  18703. bottom: 0.065
  18704. }
  18705. },
  18706. sprawling: {
  18707. height: math.unit(3.75, "feet"),
  18708. weight: math.unit(300, "lb"),
  18709. name: "Sprawling",
  18710. image: {
  18711. source: "./media/characters/pretzel/sprawling.svg",
  18712. extra: 314 / 281,
  18713. bottom: 0.1
  18714. }
  18715. },
  18716. tongue: {
  18717. height: math.unit(2, "feet"),
  18718. name: "Tongue",
  18719. image: {
  18720. source: "./media/characters/pretzel/tongue.svg"
  18721. }
  18722. },
  18723. },
  18724. [
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(7, "feet"),
  18728. default: true
  18729. },
  18730. {
  18731. name: "Oversized",
  18732. height: math.unit(15, "feet")
  18733. },
  18734. {
  18735. name: "Huge",
  18736. height: math.unit(30, "feet")
  18737. },
  18738. {
  18739. name: "Macro",
  18740. height: math.unit(250, "feet")
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18746. {
  18747. sideFront: {
  18748. height: math.unit(5 + 2 / 12, "feet"),
  18749. weight: math.unit(120, "lb"),
  18750. name: "Front Side",
  18751. image: {
  18752. source: "./media/characters/roxi/side-front.svg",
  18753. extra: 2924 / 2717,
  18754. bottom: 0.08
  18755. }
  18756. },
  18757. sideBack: {
  18758. height: math.unit(5 + 2 / 12, "feet"),
  18759. weight: math.unit(120, "lb"),
  18760. name: "Back Side",
  18761. image: {
  18762. source: "./media/characters/roxi/side-back.svg",
  18763. extra: 2904 / 2693,
  18764. bottom: 0.06
  18765. }
  18766. },
  18767. front: {
  18768. height: math.unit(5 + 2 / 12, "feet"),
  18769. weight: math.unit(120, "lb"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/roxi/front.svg",
  18773. extra: 2028 / 1907,
  18774. bottom: 0.01
  18775. }
  18776. },
  18777. frontAlt: {
  18778. height: math.unit(5 + 2 / 12, "feet"),
  18779. weight: math.unit(120, "lb"),
  18780. name: "Front (Alt)",
  18781. image: {
  18782. source: "./media/characters/roxi/front-alt.svg",
  18783. extra: 1828 / 1798,
  18784. bottom: 0.01
  18785. }
  18786. },
  18787. sitting: {
  18788. height: math.unit(2.8, "feet"),
  18789. weight: math.unit(120, "lb"),
  18790. name: "Sitting",
  18791. image: {
  18792. source: "./media/characters/roxi/sitting.svg",
  18793. extra: 2660 / 2462,
  18794. bottom: 0.1
  18795. }
  18796. },
  18797. },
  18798. [
  18799. {
  18800. name: "Normal",
  18801. height: math.unit(5 + 2 / 12, "feet"),
  18802. default: true
  18803. },
  18804. ]
  18805. ))
  18806. characterMakers.push(() => makeCharacter(
  18807. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18808. {
  18809. side: {
  18810. height: math.unit(55, "feet"),
  18811. weight: math.unit(153, "tons"),
  18812. name: "Side",
  18813. image: {
  18814. source: "./media/characters/shadow/side.svg",
  18815. extra: 701 / 628,
  18816. bottom: 0.02
  18817. }
  18818. },
  18819. flying: {
  18820. height: math.unit(145, "feet"),
  18821. weight: math.unit(153, "tons"),
  18822. name: "Flying",
  18823. image: {
  18824. source: "./media/characters/shadow/flying.svg"
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(55, "feet"),
  18832. default: true
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(6, "feet"),
  18841. weight: math.unit(200, "lb"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/marcie/front.svg",
  18845. extra: 960 / 876,
  18846. bottom: 58 / 1017.87
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Macro",
  18853. height: math.unit(1, "mile"),
  18854. default: true
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(7, "feet"),
  18863. weight: math.unit(200, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/kachina/front.svg",
  18867. extra: 1290.68 / 1119,
  18868. bottom: 36.5 / 1327.18
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(7, "feet"),
  18876. default: true
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18882. {
  18883. looking: {
  18884. height: math.unit(2, "meters"),
  18885. weight: math.unit(300, "kg"),
  18886. name: "Looking",
  18887. image: {
  18888. source: "./media/characters/kash/looking.svg",
  18889. extra: 474 / 344,
  18890. bottom: 0.03
  18891. }
  18892. },
  18893. side: {
  18894. height: math.unit(2, "meters"),
  18895. weight: math.unit(300, "kg"),
  18896. name: "Side",
  18897. image: {
  18898. source: "./media/characters/kash/side.svg",
  18899. extra: 302 / 251,
  18900. bottom: 0.03
  18901. }
  18902. },
  18903. front: {
  18904. height: math.unit(2, "meters"),
  18905. weight: math.unit(300, "kg"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/kash/front.svg",
  18909. extra: 495 / 360,
  18910. bottom: 0.015
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(2, "meters"),
  18918. default: true
  18919. },
  18920. {
  18921. name: "Big",
  18922. height: math.unit(3, "meters")
  18923. },
  18924. {
  18925. name: "Large",
  18926. height: math.unit(5, "meters")
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18932. {
  18933. feeding: {
  18934. height: math.unit(6.7, "feet"),
  18935. weight: math.unit(350, "lb"),
  18936. name: "Feeding",
  18937. image: {
  18938. source: "./media/characters/lalim/feeding.svg",
  18939. }
  18940. },
  18941. },
  18942. [
  18943. {
  18944. name: "Normal",
  18945. height: math.unit(6.7, "feet"),
  18946. default: true
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(9.5, "feet"),
  18955. weight: math.unit(600, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/de'vout/front.svg",
  18959. extra: 1443 / 1328,
  18960. bottom: 0.025
  18961. }
  18962. },
  18963. back: {
  18964. height: math.unit(9.5, "feet"),
  18965. weight: math.unit(600, "lb"),
  18966. name: "Back",
  18967. image: {
  18968. source: "./media/characters/de'vout/back.svg",
  18969. extra: 1443 / 1328
  18970. }
  18971. },
  18972. frontDressed: {
  18973. height: math.unit(9.5, "feet"),
  18974. weight: math.unit(600, "lb"),
  18975. name: "Front (Dressed",
  18976. image: {
  18977. source: "./media/characters/de'vout/front-dressed.svg",
  18978. extra: 1443 / 1328,
  18979. bottom: 0.025
  18980. }
  18981. },
  18982. backDressed: {
  18983. height: math.unit(9.5, "feet"),
  18984. weight: math.unit(600, "lb"),
  18985. name: "Back (Dressed",
  18986. image: {
  18987. source: "./media/characters/de'vout/back-dressed.svg",
  18988. extra: 1443 / 1328
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Normal",
  18995. height: math.unit(9.5, "feet"),
  18996. default: true
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19002. {
  19003. front: {
  19004. height: math.unit(8, "feet"),
  19005. weight: math.unit(225, "lb"),
  19006. name: "Front",
  19007. image: {
  19008. source: "./media/characters/talana/front.svg",
  19009. extra: 1410 / 1300,
  19010. bottom: 0.015
  19011. }
  19012. },
  19013. frontDressed: {
  19014. height: math.unit(8, "feet"),
  19015. weight: math.unit(225, "lb"),
  19016. name: "Front (Dressed",
  19017. image: {
  19018. source: "./media/characters/talana/front-dressed.svg",
  19019. extra: 1410 / 1300,
  19020. bottom: 0.015
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(8, "feet"),
  19028. default: true
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19034. {
  19035. side: {
  19036. height: math.unit(7.2, "feet"),
  19037. weight: math.unit(150, "lb"),
  19038. name: "Side",
  19039. image: {
  19040. source: "./media/characters/xeauvok/side.svg",
  19041. extra: 1975 / 1523,
  19042. bottom: 0.07
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(7.2, "feet"),
  19050. default: true
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19056. {
  19057. side: {
  19058. height: math.unit(4, "meters"),
  19059. weight: math.unit(2200, "kg"),
  19060. name: "Side",
  19061. image: {
  19062. source: "./media/characters/zara/side.svg",
  19063. extra: 765/744,
  19064. bottom: 156/921
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(4, "meters"),
  19072. default: true
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19078. {
  19079. side: {
  19080. height: math.unit(6, "feet"),
  19081. weight: math.unit(150, "lb"),
  19082. name: "Side",
  19083. image: {
  19084. source: "./media/characters/richard-dragon/side.svg",
  19085. extra: 845 / 340,
  19086. bottom: 0.017
  19087. }
  19088. },
  19089. maw: {
  19090. height: math.unit(2.97, "feet"),
  19091. name: "Maw",
  19092. image: {
  19093. source: "./media/characters/richard-dragon/maw.svg"
  19094. }
  19095. },
  19096. },
  19097. [
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(4, "feet"),
  19105. weight: math.unit(100, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/richard-smeargle/front.svg",
  19109. extra: 2952 / 2820,
  19110. bottom: 0.028
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(4, "feet"),
  19118. default: true
  19119. },
  19120. {
  19121. name: "Dynamax",
  19122. height: math.unit(20, "meters")
  19123. },
  19124. ]
  19125. ))
  19126. characterMakers.push(() => makeCharacter(
  19127. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19128. {
  19129. front: {
  19130. height: math.unit(6, "feet"),
  19131. weight: math.unit(110, "lb"),
  19132. name: "Front",
  19133. image: {
  19134. source: "./media/characters/klay/front.svg",
  19135. extra: 962 / 883,
  19136. bottom: 0.04
  19137. }
  19138. },
  19139. back: {
  19140. height: math.unit(6, "feet"),
  19141. weight: math.unit(110, "lb"),
  19142. name: "Back",
  19143. image: {
  19144. source: "./media/characters/klay/back.svg",
  19145. extra: 962 / 883
  19146. }
  19147. },
  19148. beans: {
  19149. height: math.unit(1.15, "feet"),
  19150. name: "Beans",
  19151. image: {
  19152. source: "./media/characters/klay/beans.svg"
  19153. }
  19154. },
  19155. },
  19156. [
  19157. {
  19158. name: "Micro",
  19159. height: math.unit(6, "inches")
  19160. },
  19161. {
  19162. name: "Mini",
  19163. height: math.unit(3, "feet")
  19164. },
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(6, "feet"),
  19168. default: true
  19169. },
  19170. {
  19171. name: "Big",
  19172. height: math.unit(25, "feet")
  19173. },
  19174. {
  19175. name: "Macro",
  19176. height: math.unit(100, "feet")
  19177. },
  19178. {
  19179. name: "Megamacro",
  19180. height: math.unit(400, "feet")
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(6, "feet"),
  19189. weight: math.unit(160, "lb"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/marcus/front.svg",
  19193. extra: 734 / 676,
  19194. bottom: 0.03
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Little",
  19201. height: math.unit(6, "feet")
  19202. },
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(110, "feet"),
  19206. default: true
  19207. },
  19208. {
  19209. name: "Macro",
  19210. height: math.unit(250, "feet")
  19211. },
  19212. {
  19213. name: "Megamacro",
  19214. height: math.unit(1000, "feet")
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(7, "feet"),
  19223. weight: math.unit(275, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/claude-delroute/front.svg",
  19227. extra: 902/827,
  19228. bottom: 26/928
  19229. }
  19230. },
  19231. side: {
  19232. height: math.unit(7, "feet"),
  19233. weight: math.unit(275, "lb"),
  19234. name: "Side",
  19235. image: {
  19236. source: "./media/characters/claude-delroute/side.svg",
  19237. extra: 908/853,
  19238. bottom: 16/924
  19239. }
  19240. },
  19241. back: {
  19242. height: math.unit(7, "feet"),
  19243. weight: math.unit(275, "lb"),
  19244. name: "Back",
  19245. image: {
  19246. source: "./media/characters/claude-delroute/back.svg",
  19247. extra: 911/829,
  19248. bottom: 18/929
  19249. }
  19250. },
  19251. maw: {
  19252. height: math.unit(0.6407, "meters"),
  19253. name: "Maw",
  19254. image: {
  19255. source: "./media/characters/claude-delroute/maw.svg"
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(7, "feet"),
  19263. default: true
  19264. },
  19265. {
  19266. name: "Lorge",
  19267. height: math.unit(20, "feet")
  19268. },
  19269. ]
  19270. ))
  19271. characterMakers.push(() => makeCharacter(
  19272. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19273. {
  19274. front: {
  19275. height: math.unit(8 + 4 / 12, "feet"),
  19276. weight: math.unit(600, "lb"),
  19277. name: "Front",
  19278. image: {
  19279. source: "./media/characters/dragonien/front.svg",
  19280. extra: 100 / 94,
  19281. bottom: 3.3 / 103.3445
  19282. }
  19283. },
  19284. back: {
  19285. height: math.unit(8 + 4 / 12, "feet"),
  19286. weight: math.unit(600, "lb"),
  19287. name: "Back",
  19288. image: {
  19289. source: "./media/characters/dragonien/back.svg",
  19290. extra: 776 / 746,
  19291. bottom: 6.4 / 782.0616
  19292. }
  19293. },
  19294. foot: {
  19295. height: math.unit(1.54, "feet"),
  19296. name: "Foot",
  19297. image: {
  19298. source: "./media/characters/dragonien/foot.svg",
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Normal",
  19305. height: math.unit(8 + 4 / 12, "feet"),
  19306. default: true
  19307. },
  19308. {
  19309. name: "Macro",
  19310. height: math.unit(200, "feet")
  19311. },
  19312. {
  19313. name: "Megamacro",
  19314. height: math.unit(1, "mile")
  19315. },
  19316. {
  19317. name: "Gigamacro",
  19318. height: math.unit(1000, "miles")
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(5 + 2 / 12, "feet"),
  19327. weight: math.unit(110, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/desta/front.svg",
  19331. extra: 767 / 726,
  19332. bottom: 11.7 / 779
  19333. }
  19334. },
  19335. back: {
  19336. height: math.unit(5 + 2 / 12, "feet"),
  19337. weight: math.unit(110, "lb"),
  19338. name: "Back",
  19339. image: {
  19340. source: "./media/characters/desta/back.svg",
  19341. extra: 777 / 728,
  19342. bottom: 6 / 784
  19343. }
  19344. },
  19345. frontAlt: {
  19346. height: math.unit(5 + 2 / 12, "feet"),
  19347. weight: math.unit(110, "lb"),
  19348. name: "Front",
  19349. image: {
  19350. source: "./media/characters/desta/front-alt.svg",
  19351. extra: 1482 / 1417
  19352. }
  19353. },
  19354. side: {
  19355. height: math.unit(5 + 2 / 12, "feet"),
  19356. weight: math.unit(110, "lb"),
  19357. name: "Side",
  19358. image: {
  19359. source: "./media/characters/desta/side.svg",
  19360. extra: 2579 / 2491,
  19361. bottom: 0.053
  19362. }
  19363. },
  19364. },
  19365. [
  19366. {
  19367. name: "Micro",
  19368. height: math.unit(6, "inches")
  19369. },
  19370. {
  19371. name: "Normal",
  19372. height: math.unit(5 + 2 / 12, "feet"),
  19373. default: true
  19374. },
  19375. {
  19376. name: "Macro",
  19377. height: math.unit(62, "feet")
  19378. },
  19379. {
  19380. name: "Megamacro",
  19381. height: math.unit(1800, "feet")
  19382. },
  19383. ]
  19384. ))
  19385. characterMakers.push(() => makeCharacter(
  19386. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19387. {
  19388. front: {
  19389. height: math.unit(10, "feet"),
  19390. weight: math.unit(700, "lb"),
  19391. name: "Front",
  19392. image: {
  19393. source: "./media/characters/storm-alystar/front.svg",
  19394. extra: 2112 / 1898,
  19395. bottom: 0.034
  19396. }
  19397. },
  19398. },
  19399. [
  19400. {
  19401. name: "Micro",
  19402. height: math.unit(3.5, "inches")
  19403. },
  19404. {
  19405. name: "Normal",
  19406. height: math.unit(10, "feet"),
  19407. default: true
  19408. },
  19409. {
  19410. name: "Macro",
  19411. height: math.unit(400, "feet")
  19412. },
  19413. {
  19414. name: "Deific",
  19415. height: math.unit(60, "miles")
  19416. },
  19417. ]
  19418. ))
  19419. characterMakers.push(() => makeCharacter(
  19420. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19421. {
  19422. front: {
  19423. height: math.unit(2.35, "meters"),
  19424. weight: math.unit(119, "kg"),
  19425. name: "Front",
  19426. image: {
  19427. source: "./media/characters/ilia/front.svg",
  19428. extra: 1285 / 1255,
  19429. bottom: 0.06
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Normal",
  19436. height: math.unit(2.35, "meters")
  19437. },
  19438. {
  19439. name: "Macro",
  19440. height: math.unit(140, "meters"),
  19441. default: true
  19442. },
  19443. {
  19444. name: "Megamacro",
  19445. height: math.unit(100, "miles")
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19451. {
  19452. front: {
  19453. height: math.unit(6 + 5 / 12, "feet"),
  19454. weight: math.unit(190, "lb"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/kingdead/front.svg",
  19458. extra: 1228 / 1177
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Micro",
  19465. height: math.unit(7, "inches")
  19466. },
  19467. {
  19468. name: "Normal",
  19469. height: math.unit(6 + 5 / 12, "feet")
  19470. },
  19471. {
  19472. name: "Macro",
  19473. height: math.unit(150, "feet"),
  19474. default: true
  19475. },
  19476. {
  19477. name: "Megamacro",
  19478. height: math.unit(200, "miles")
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19484. {
  19485. front: {
  19486. height: math.unit(8, "feet"),
  19487. weight: math.unit(600, "lb"),
  19488. name: "Front",
  19489. image: {
  19490. source: "./media/characters/kyrehx/front.svg",
  19491. extra: 1195 / 1095,
  19492. bottom: 0.034
  19493. }
  19494. },
  19495. },
  19496. [
  19497. {
  19498. name: "Micro",
  19499. height: math.unit(2, "inches")
  19500. },
  19501. {
  19502. name: "Normal",
  19503. height: math.unit(8, "feet"),
  19504. default: true
  19505. },
  19506. {
  19507. name: "Macro",
  19508. height: math.unit(255, "feet")
  19509. },
  19510. ]
  19511. ))
  19512. characterMakers.push(() => makeCharacter(
  19513. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19514. {
  19515. front: {
  19516. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19517. weight: math.unit(184, "lb"),
  19518. name: "Front",
  19519. image: {
  19520. source: "./media/characters/xang/front.svg",
  19521. extra: 845 / 755
  19522. }
  19523. },
  19524. },
  19525. [
  19526. {
  19527. name: "Normal",
  19528. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19529. default: true
  19530. },
  19531. {
  19532. name: "Macro",
  19533. height: math.unit(0.935 * 146, "feet")
  19534. },
  19535. {
  19536. name: "Megamacro",
  19537. height: math.unit(0.935 * 3, "miles")
  19538. },
  19539. ]
  19540. ))
  19541. characterMakers.push(() => makeCharacter(
  19542. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19543. {
  19544. frontDressed: {
  19545. height: math.unit(5 + 7 / 12, "feet"),
  19546. weight: math.unit(140, "lb"),
  19547. name: "Front (Dressed)",
  19548. image: {
  19549. source: "./media/characters/doc-weardno/front-dressed.svg",
  19550. extra: 263 / 234
  19551. }
  19552. },
  19553. backDressed: {
  19554. height: math.unit(5 + 7 / 12, "feet"),
  19555. weight: math.unit(140, "lb"),
  19556. name: "Back (Dressed)",
  19557. image: {
  19558. source: "./media/characters/doc-weardno/back-dressed.svg",
  19559. extra: 266 / 238
  19560. }
  19561. },
  19562. front: {
  19563. height: math.unit(5 + 7 / 12, "feet"),
  19564. weight: math.unit(140, "lb"),
  19565. name: "Front",
  19566. image: {
  19567. source: "./media/characters/doc-weardno/front.svg",
  19568. extra: 254 / 233
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Micro",
  19575. height: math.unit(3, "inches")
  19576. },
  19577. {
  19578. name: "Normal",
  19579. height: math.unit(5 + 7 / 12, "feet"),
  19580. default: true
  19581. },
  19582. {
  19583. name: "Macro",
  19584. height: math.unit(25, "feet")
  19585. },
  19586. {
  19587. name: "Megamacro",
  19588. height: math.unit(2, "miles")
  19589. },
  19590. ]
  19591. ))
  19592. characterMakers.push(() => makeCharacter(
  19593. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19594. {
  19595. front: {
  19596. height: math.unit(6 + 2 / 12, "feet"),
  19597. weight: math.unit(153, "lb"),
  19598. name: "Front",
  19599. image: {
  19600. source: "./media/characters/seth-whilst/front.svg",
  19601. bottom: 0.07
  19602. }
  19603. },
  19604. },
  19605. [
  19606. {
  19607. name: "Micro",
  19608. height: math.unit(5, "inches")
  19609. },
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(6 + 2 / 12, "feet"),
  19613. default: true
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19619. {
  19620. front: {
  19621. height: math.unit(3, "inches"),
  19622. weight: math.unit(8, "grams"),
  19623. name: "Front",
  19624. image: {
  19625. source: "./media/characters/pocket-jabari/front.svg",
  19626. extra: 1024 / 974,
  19627. bottom: 0.039
  19628. }
  19629. },
  19630. },
  19631. [
  19632. {
  19633. name: "Minimicro",
  19634. height: math.unit(8, "mm")
  19635. },
  19636. {
  19637. name: "Micro",
  19638. height: math.unit(3, "inches"),
  19639. default: true
  19640. },
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(3, "feet")
  19644. },
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19649. {
  19650. frontDressed: {
  19651. height: math.unit(15, "feet"),
  19652. weight: math.unit(3280, "lb"),
  19653. name: "Front (Dressed)",
  19654. image: {
  19655. source: "./media/characters/sapphy/front-dressed.svg",
  19656. extra: 1951/1654,
  19657. bottom: 194/2145
  19658. },
  19659. form: "anthro",
  19660. default: true
  19661. },
  19662. backDressed: {
  19663. height: math.unit(15, "feet"),
  19664. weight: math.unit(3280, "lb"),
  19665. name: "Back (Dressed)",
  19666. image: {
  19667. source: "./media/characters/sapphy/back-dressed.svg",
  19668. extra: 2058/1918,
  19669. bottom: 125/2183
  19670. },
  19671. form: "anthro"
  19672. },
  19673. frontNude: {
  19674. height: math.unit(15, "feet"),
  19675. weight: math.unit(3280, "lb"),
  19676. name: "Front (Nude)",
  19677. image: {
  19678. source: "./media/characters/sapphy/front-nude.svg",
  19679. extra: 1951/1654,
  19680. bottom: 194/2145
  19681. },
  19682. form: "anthro"
  19683. },
  19684. backNude: {
  19685. height: math.unit(15, "feet"),
  19686. weight: math.unit(3280, "lb"),
  19687. name: "Back (Nude)",
  19688. image: {
  19689. source: "./media/characters/sapphy/back-nude.svg",
  19690. extra: 2058/1918,
  19691. bottom: 125/2183
  19692. },
  19693. form: "anthro"
  19694. },
  19695. full: {
  19696. height: math.unit(15, "feet"),
  19697. weight: math.unit(3280, "lb"),
  19698. name: "Full",
  19699. image: {
  19700. source: "./media/characters/sapphy/full.svg",
  19701. extra: 1396/1317,
  19702. bottom: 44/1440
  19703. },
  19704. form: "anthro"
  19705. },
  19706. dick: {
  19707. height: math.unit(3.8, "feet"),
  19708. name: "Dick",
  19709. image: {
  19710. source: "./media/characters/sapphy/dick.svg"
  19711. },
  19712. form: "anthro"
  19713. },
  19714. feral: {
  19715. height: math.unit(35, "feet"),
  19716. weight: math.unit(160, "tons"),
  19717. name: "Feral",
  19718. image: {
  19719. source: "./media/characters/sapphy/feral.svg",
  19720. extra: 1050/573,
  19721. bottom: 60/1110
  19722. },
  19723. form: "feral",
  19724. default: true
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(15, "feet"),
  19731. form: "anthro"
  19732. },
  19733. {
  19734. name: "Casual Macro",
  19735. height: math.unit(120, "feet"),
  19736. form: "anthro"
  19737. },
  19738. {
  19739. name: "Macro",
  19740. height: math.unit(2150, "feet"),
  19741. default: true,
  19742. form: "anthro"
  19743. },
  19744. {
  19745. name: "Megamacro",
  19746. height: math.unit(8, "miles"),
  19747. form: "anthro"
  19748. },
  19749. {
  19750. name: "Galaxy Mom",
  19751. height: math.unit(6, "megalightyears"),
  19752. form: "anthro"
  19753. },
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(35, "feet"),
  19757. form: "feral",
  19758. default: true
  19759. },
  19760. {
  19761. name: "Macro",
  19762. height: math.unit(300, "feet"),
  19763. form: "feral"
  19764. },
  19765. {
  19766. name: "Galaxy Mom",
  19767. height: math.unit(10, "megalightyears"),
  19768. form: "feral"
  19769. },
  19770. ],
  19771. {
  19772. "anthro": {
  19773. name: "Anthro",
  19774. default: true
  19775. },
  19776. "feral": {
  19777. name: "Feral"
  19778. }
  19779. }
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19783. {
  19784. front: {
  19785. height: math.unit(6, "feet"),
  19786. weight: math.unit(170, "lb"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/kiro/front.svg",
  19790. extra: 1064 / 1012,
  19791. bottom: 0.052
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Micro",
  19798. height: math.unit(6, "inches")
  19799. },
  19800. {
  19801. name: "Normal",
  19802. height: math.unit(6, "feet"),
  19803. default: true
  19804. },
  19805. {
  19806. name: "Macro",
  19807. height: math.unit(72, "feet")
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19813. {
  19814. front: {
  19815. height: math.unit(5 + 9 / 12, "feet"),
  19816. weight: math.unit(175, "lb"),
  19817. name: "Front",
  19818. image: {
  19819. source: "./media/characters/irishfox/front.svg",
  19820. extra: 1912 / 1680,
  19821. bottom: 0.02
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Nano",
  19828. height: math.unit(1, "mm")
  19829. },
  19830. {
  19831. name: "Micro",
  19832. height: math.unit(2, "inches")
  19833. },
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(5 + 9 / 12, "feet"),
  19837. default: true
  19838. },
  19839. {
  19840. name: "Macro",
  19841. height: math.unit(45, "feet")
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19847. {
  19848. front: {
  19849. height: math.unit(6 + 1 / 12, "feet"),
  19850. weight: math.unit(75, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/aronai-sieyes/front.svg",
  19854. extra: 1532/1450,
  19855. bottom: 42/1574
  19856. }
  19857. },
  19858. side: {
  19859. height: math.unit(6 + 1 / 12, "feet"),
  19860. weight: math.unit(75, "lb"),
  19861. name: "Side",
  19862. image: {
  19863. source: "./media/characters/aronai-sieyes/side.svg",
  19864. extra: 1422/1365,
  19865. bottom: 148/1570
  19866. }
  19867. },
  19868. back: {
  19869. height: math.unit(6 + 1 / 12, "feet"),
  19870. weight: math.unit(75, "lb"),
  19871. name: "Back",
  19872. image: {
  19873. source: "./media/characters/aronai-sieyes/back.svg",
  19874. extra: 1526/1464,
  19875. bottom: 51/1577
  19876. }
  19877. },
  19878. dressed: {
  19879. height: math.unit(6 + 1 / 12, "feet"),
  19880. weight: math.unit(75, "lb"),
  19881. name: "Dressed",
  19882. image: {
  19883. source: "./media/characters/aronai-sieyes/dressed.svg",
  19884. extra: 1559/1483,
  19885. bottom: 39/1598
  19886. }
  19887. },
  19888. slit: {
  19889. height: math.unit(1.3, "feet"),
  19890. name: "Slit",
  19891. image: {
  19892. source: "./media/characters/aronai-sieyes/slit.svg"
  19893. }
  19894. },
  19895. slitSpread: {
  19896. height: math.unit(0.9, "feet"),
  19897. name: "Slit (Spread)",
  19898. image: {
  19899. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19900. }
  19901. },
  19902. rump: {
  19903. height: math.unit(1.3, "feet"),
  19904. name: "Rump",
  19905. image: {
  19906. source: "./media/characters/aronai-sieyes/rump.svg"
  19907. }
  19908. },
  19909. maw: {
  19910. height: math.unit(1.25, "feet"),
  19911. name: "Maw",
  19912. image: {
  19913. source: "./media/characters/aronai-sieyes/maw.svg"
  19914. }
  19915. },
  19916. feral: {
  19917. height: math.unit(18, "feet"),
  19918. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19919. name: "Feral",
  19920. image: {
  19921. source: "./media/characters/aronai-sieyes/feral.svg",
  19922. extra: 1530 / 1240,
  19923. bottom: 0.035
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Micro",
  19930. height: math.unit(2, "inches")
  19931. },
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(6 + 1 / 12, "feet"),
  19935. default: true
  19936. }
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19941. {
  19942. front: {
  19943. height: math.unit(12, "feet"),
  19944. weight: math.unit(410, "kg"),
  19945. name: "Front",
  19946. image: {
  19947. source: "./media/characters/xuna/front.svg",
  19948. extra: 2184 / 1980
  19949. }
  19950. },
  19951. side: {
  19952. height: math.unit(12, "feet"),
  19953. weight: math.unit(410, "kg"),
  19954. name: "Side",
  19955. image: {
  19956. source: "./media/characters/xuna/side.svg",
  19957. extra: 2184 / 1980
  19958. }
  19959. },
  19960. back: {
  19961. height: math.unit(12, "feet"),
  19962. weight: math.unit(410, "kg"),
  19963. name: "Back",
  19964. image: {
  19965. source: "./media/characters/xuna/back.svg",
  19966. extra: 2184 / 1980
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Nano glow",
  19973. height: math.unit(10, "nm")
  19974. },
  19975. {
  19976. name: "Micro floof",
  19977. height: math.unit(0.3, "m")
  19978. },
  19979. {
  19980. name: "Huggable softy boi",
  19981. height: math.unit(3.6576, "m"),
  19982. default: true
  19983. },
  19984. {
  19985. name: "Admirable floof",
  19986. height: math.unit(80, "meters")
  19987. },
  19988. {
  19989. name: "Gentle macro",
  19990. height: math.unit(300, "meters")
  19991. },
  19992. {
  19993. name: "Very careful floof",
  19994. height: math.unit(3200, "meters")
  19995. },
  19996. {
  19997. name: "The mega floof",
  19998. height: math.unit(36000, "meters")
  19999. },
  20000. {
  20001. name: "Giga-fur-Wicker",
  20002. height: math.unit(4800000, "meters")
  20003. },
  20004. {
  20005. name: "Licky world",
  20006. height: math.unit(20000000, "meters")
  20007. },
  20008. {
  20009. name: "Floofy cyan sun",
  20010. height: math.unit(1500000000, "meters")
  20011. },
  20012. {
  20013. name: "Milky Wicker",
  20014. height: math.unit(1000000000000000000000, "meters")
  20015. },
  20016. {
  20017. name: "The observing Wicker",
  20018. height: math.unit(999999999999999999999999999, "meters")
  20019. },
  20020. ]
  20021. ))
  20022. characterMakers.push(() => makeCharacter(
  20023. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20024. {
  20025. front: {
  20026. height: math.unit(5 + 9 / 12, "feet"),
  20027. weight: math.unit(150, "lb"),
  20028. name: "Front",
  20029. image: {
  20030. source: "./media/characters/arokha-sieyes/front.svg",
  20031. extra: 1425 / 1284,
  20032. bottom: 0.05
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Normal",
  20039. height: math.unit(5 + 9 / 12, "feet")
  20040. },
  20041. {
  20042. name: "Macro",
  20043. height: math.unit(30, "meters"),
  20044. default: true
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20050. {
  20051. front: {
  20052. height: math.unit(6, "feet"),
  20053. weight: math.unit(180, "lb"),
  20054. name: "Front",
  20055. image: {
  20056. source: "./media/characters/arokh-sieyes/front.svg",
  20057. extra: 1830 / 1769,
  20058. bottom: 0.01
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Normal",
  20065. height: math.unit(6, "feet")
  20066. },
  20067. {
  20068. name: "Macro",
  20069. height: math.unit(30, "meters"),
  20070. default: true
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20076. {
  20077. side: {
  20078. height: math.unit(13 + 1 / 12, "feet"),
  20079. weight: math.unit(8.5, "tonnes"),
  20080. name: "Side",
  20081. image: {
  20082. source: "./media/characters/goldeneye/side.svg",
  20083. extra: 1182 / 778,
  20084. bottom: 0.067
  20085. }
  20086. },
  20087. paw: {
  20088. height: math.unit(3.4, "feet"),
  20089. name: "Paw",
  20090. image: {
  20091. source: "./media/characters/goldeneye/paw.svg"
  20092. }
  20093. },
  20094. },
  20095. [
  20096. {
  20097. name: "Normal",
  20098. height: math.unit(13 + 1 / 12, "feet"),
  20099. default: true
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20105. {
  20106. front: {
  20107. height: math.unit(6 + 1 / 12, "feet"),
  20108. weight: math.unit(210, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/leonardo-lycheborne/front.svg",
  20112. extra: 776/723,
  20113. bottom: 34/810
  20114. }
  20115. },
  20116. side: {
  20117. height: math.unit(6 + 1 / 12, "feet"),
  20118. weight: math.unit(210, "lb"),
  20119. name: "Side",
  20120. image: {
  20121. source: "./media/characters/leonardo-lycheborne/side.svg",
  20122. extra: 780/728,
  20123. bottom: 12/792
  20124. }
  20125. },
  20126. back: {
  20127. height: math.unit(6 + 1 / 12, "feet"),
  20128. weight: math.unit(210, "lb"),
  20129. name: "Back",
  20130. image: {
  20131. source: "./media/characters/leonardo-lycheborne/back.svg",
  20132. extra: 775/721,
  20133. bottom: 17/792
  20134. }
  20135. },
  20136. hand: {
  20137. height: math.unit(1.08, "feet"),
  20138. name: "Hand",
  20139. image: {
  20140. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20141. }
  20142. },
  20143. foot: {
  20144. height: math.unit(1.32, "feet"),
  20145. name: "Foot",
  20146. image: {
  20147. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20148. }
  20149. },
  20150. maw: {
  20151. height: math.unit(1, "feet"),
  20152. name: "Maw",
  20153. image: {
  20154. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20155. }
  20156. },
  20157. were: {
  20158. height: math.unit(20, "feet"),
  20159. weight: math.unit(7800, "lb"),
  20160. name: "Were",
  20161. image: {
  20162. source: "./media/characters/leonardo-lycheborne/were.svg",
  20163. extra: 1224/1165,
  20164. bottom: 72/1296
  20165. }
  20166. },
  20167. feral: {
  20168. height: math.unit(7.5, "feet"),
  20169. weight: math.unit(600, "lb"),
  20170. name: "Feral",
  20171. image: {
  20172. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20173. extra: 797/702,
  20174. bottom: 139/936
  20175. }
  20176. },
  20177. taur: {
  20178. height: math.unit(11, "feet"),
  20179. weight: math.unit(3300, "lb"),
  20180. name: "Taur",
  20181. image: {
  20182. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20183. extra: 1271/1197,
  20184. bottom: 47/1318
  20185. }
  20186. },
  20187. barghest: {
  20188. height: math.unit(11, "feet"),
  20189. weight: math.unit(1300, "lb"),
  20190. name: "Barghest",
  20191. image: {
  20192. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20193. extra: 1291/1204,
  20194. bottom: 37/1328
  20195. }
  20196. },
  20197. dick: {
  20198. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20199. name: "Dick",
  20200. image: {
  20201. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20202. }
  20203. },
  20204. dickWere: {
  20205. height: math.unit((20) / 3.8, "feet"),
  20206. name: "Dick (Were)",
  20207. image: {
  20208. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20209. }
  20210. },
  20211. },
  20212. [
  20213. {
  20214. name: "Normal",
  20215. height: math.unit(6 + 1 / 12, "feet"),
  20216. default: true
  20217. },
  20218. ]
  20219. ))
  20220. characterMakers.push(() => makeCharacter(
  20221. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20222. {
  20223. front: {
  20224. height: math.unit(10, "feet"),
  20225. weight: math.unit(350, "lb"),
  20226. name: "Front",
  20227. image: {
  20228. source: "./media/characters/jet/front.svg",
  20229. extra: 2050 / 1980,
  20230. bottom: 0.013
  20231. }
  20232. },
  20233. back: {
  20234. height: math.unit(10, "feet"),
  20235. weight: math.unit(350, "lb"),
  20236. name: "Back",
  20237. image: {
  20238. source: "./media/characters/jet/back.svg",
  20239. extra: 2050 / 1980,
  20240. bottom: 0.013
  20241. }
  20242. },
  20243. },
  20244. [
  20245. {
  20246. name: "Micro",
  20247. height: math.unit(6, "inches")
  20248. },
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(10, "feet"),
  20252. default: true
  20253. },
  20254. {
  20255. name: "Macro",
  20256. height: math.unit(100, "feet")
  20257. },
  20258. ]
  20259. ))
  20260. characterMakers.push(() => makeCharacter(
  20261. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20262. {
  20263. front: {
  20264. height: math.unit(15, "feet"),
  20265. weight: math.unit(2800, "lb"),
  20266. name: "Front",
  20267. image: {
  20268. source: "./media/characters/tanarath/front.svg",
  20269. extra: 2392 / 2220,
  20270. bottom: 0.03
  20271. }
  20272. },
  20273. back: {
  20274. height: math.unit(15, "feet"),
  20275. weight: math.unit(2800, "lb"),
  20276. name: "Back",
  20277. image: {
  20278. source: "./media/characters/tanarath/back.svg",
  20279. extra: 2392 / 2220,
  20280. bottom: 0.03
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(15, "feet"),
  20288. default: true
  20289. },
  20290. ]
  20291. ))
  20292. characterMakers.push(() => makeCharacter(
  20293. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20294. {
  20295. front: {
  20296. height: math.unit(7 + 1 / 12, "feet"),
  20297. weight: math.unit(175, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/patty-cattybatty/front.svg",
  20301. extra: 908 / 874,
  20302. bottom: 0.025
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Micro",
  20309. height: math.unit(1, "inch")
  20310. },
  20311. {
  20312. name: "Normal",
  20313. height: math.unit(7 + 1 / 12, "feet")
  20314. },
  20315. {
  20316. name: "Mini Macro",
  20317. height: math.unit(155, "feet")
  20318. },
  20319. {
  20320. name: "Macro",
  20321. height: math.unit(1077, "feet")
  20322. },
  20323. {
  20324. name: "Mega Macro",
  20325. height: math.unit(47650, "feet"),
  20326. default: true
  20327. },
  20328. {
  20329. name: "Giga Macro",
  20330. height: math.unit(440, "miles")
  20331. },
  20332. {
  20333. name: "Tera Macro",
  20334. height: math.unit(8700, "miles")
  20335. },
  20336. {
  20337. name: "Planetary Macro",
  20338. height: math.unit(32700, "miles")
  20339. },
  20340. {
  20341. name: "Solar Macro",
  20342. height: math.unit(550000, "miles")
  20343. },
  20344. {
  20345. name: "Celestial Macro",
  20346. height: math.unit(2.5, "AU")
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20352. {
  20353. front: {
  20354. height: math.unit(4 + 5 / 12, "feet"),
  20355. weight: math.unit(90, "lb"),
  20356. name: "Front",
  20357. image: {
  20358. source: "./media/characters/cappu/front.svg",
  20359. extra: 1247 / 1152,
  20360. bottom: 0.012
  20361. }
  20362. },
  20363. },
  20364. [
  20365. {
  20366. name: "Normal",
  20367. height: math.unit(4 + 5 / 12, "feet"),
  20368. default: true
  20369. },
  20370. ]
  20371. ))
  20372. characterMakers.push(() => makeCharacter(
  20373. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20374. {
  20375. frontDressed: {
  20376. height: math.unit(70, "cm"),
  20377. weight: math.unit(6, "kg"),
  20378. name: "Front (Dressed)",
  20379. image: {
  20380. source: "./media/characters/sebi/front-dressed.svg",
  20381. extra: 713.5 / 686.5,
  20382. bottom: 0.003
  20383. }
  20384. },
  20385. front: {
  20386. height: math.unit(70, "cm"),
  20387. weight: math.unit(5, "kg"),
  20388. name: "Front",
  20389. image: {
  20390. source: "./media/characters/sebi/front.svg",
  20391. extra: 713.5 / 686.5,
  20392. bottom: 0.003
  20393. }
  20394. }
  20395. },
  20396. [
  20397. {
  20398. name: "Normal",
  20399. height: math.unit(70, "cm"),
  20400. default: true
  20401. },
  20402. {
  20403. name: "Macro",
  20404. height: math.unit(8, "meters")
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20410. {
  20411. front: {
  20412. height: math.unit(6, "feet"),
  20413. weight: math.unit(150, "lb"),
  20414. name: "Front",
  20415. image: {
  20416. source: "./media/characters/typhek/front.svg",
  20417. extra: 1948 / 1929,
  20418. bottom: 0.025
  20419. }
  20420. },
  20421. side: {
  20422. height: math.unit(6, "feet"),
  20423. weight: math.unit(150, "lb"),
  20424. name: "Side",
  20425. image: {
  20426. source: "./media/characters/typhek/side.svg",
  20427. extra: 2034 / 2010,
  20428. bottom: 0.003
  20429. }
  20430. },
  20431. back: {
  20432. height: math.unit(6, "feet"),
  20433. weight: math.unit(150, "lb"),
  20434. name: "Back",
  20435. image: {
  20436. source: "./media/characters/typhek/back.svg",
  20437. extra: 2005 / 1978,
  20438. bottom: 0.004
  20439. }
  20440. },
  20441. palm: {
  20442. height: math.unit(1.2, "feet"),
  20443. name: "Palm",
  20444. image: {
  20445. source: "./media/characters/typhek/palm.svg"
  20446. }
  20447. },
  20448. fist: {
  20449. height: math.unit(1.1, "feet"),
  20450. name: "Fist",
  20451. image: {
  20452. source: "./media/characters/typhek/fist.svg"
  20453. }
  20454. },
  20455. foot: {
  20456. height: math.unit(1.57, "feet"),
  20457. name: "Foot",
  20458. image: {
  20459. source: "./media/characters/typhek/foot.svg"
  20460. }
  20461. },
  20462. sole: {
  20463. height: math.unit(2.05, "feet"),
  20464. name: "Sole",
  20465. image: {
  20466. source: "./media/characters/typhek/sole.svg"
  20467. }
  20468. },
  20469. },
  20470. [
  20471. {
  20472. name: "Macro",
  20473. height: math.unit(40, "stories"),
  20474. default: true
  20475. },
  20476. {
  20477. name: "Megamacro",
  20478. height: math.unit(1, "mile")
  20479. },
  20480. {
  20481. name: "Gigamacro",
  20482. height: math.unit(4000, "solarradii")
  20483. },
  20484. {
  20485. name: "Universal",
  20486. height: math.unit(1.1, "universes")
  20487. }
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20492. {
  20493. side: {
  20494. height: math.unit(5 + 7 / 12, "feet"),
  20495. weight: math.unit(150, "lb"),
  20496. name: "Side",
  20497. image: {
  20498. source: "./media/characters/kassy/side.svg",
  20499. extra: 1280 / 1225,
  20500. bottom: 0.002
  20501. }
  20502. },
  20503. front: {
  20504. height: math.unit(5 + 7 / 12, "feet"),
  20505. weight: math.unit(150, "lb"),
  20506. name: "Front",
  20507. image: {
  20508. source: "./media/characters/kassy/front.svg",
  20509. extra: 1280 / 1225,
  20510. bottom: 0.025
  20511. }
  20512. },
  20513. back: {
  20514. height: math.unit(5 + 7 / 12, "feet"),
  20515. weight: math.unit(150, "lb"),
  20516. name: "Back",
  20517. image: {
  20518. source: "./media/characters/kassy/back.svg",
  20519. extra: 1280 / 1225,
  20520. bottom: 0.002
  20521. }
  20522. },
  20523. foot: {
  20524. height: math.unit(1.266, "feet"),
  20525. name: "Foot",
  20526. image: {
  20527. source: "./media/characters/kassy/foot.svg"
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(5 + 7 / 12, "feet")
  20535. },
  20536. {
  20537. name: "Macro",
  20538. height: math.unit(137, "feet"),
  20539. default: true
  20540. },
  20541. {
  20542. name: "Megamacro",
  20543. height: math.unit(1, "mile")
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20549. {
  20550. front: {
  20551. height: math.unit(6 + 1 / 12, "feet"),
  20552. weight: math.unit(200, "lb"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/neil/front.svg",
  20556. extra: 1326 / 1250,
  20557. bottom: 0.023
  20558. }
  20559. },
  20560. },
  20561. [
  20562. {
  20563. name: "Normal",
  20564. height: math.unit(6 + 1 / 12, "feet"),
  20565. default: true
  20566. },
  20567. {
  20568. name: "Macro",
  20569. height: math.unit(200, "feet")
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20575. {
  20576. front: {
  20577. height: math.unit(5 + 9 / 12, "feet"),
  20578. weight: math.unit(190, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/atticus/front.svg",
  20582. extra: 2934 / 2785,
  20583. bottom: 0.025
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(5 + 9 / 12, "feet"),
  20591. default: true
  20592. },
  20593. {
  20594. name: "Macro",
  20595. height: math.unit(180, "feet")
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20601. {
  20602. side: {
  20603. height: math.unit(9, "feet"),
  20604. weight: math.unit(650, "lb"),
  20605. name: "Side",
  20606. image: {
  20607. source: "./media/characters/milo/side.svg",
  20608. extra: 2644 / 2310,
  20609. bottom: 0.032
  20610. }
  20611. },
  20612. },
  20613. [
  20614. {
  20615. name: "Normal",
  20616. height: math.unit(9, "feet"),
  20617. default: true
  20618. },
  20619. {
  20620. name: "Macro",
  20621. height: math.unit(300, "feet")
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20627. {
  20628. side: {
  20629. height: math.unit(8, "meters"),
  20630. weight: math.unit(90000, "kg"),
  20631. name: "Side",
  20632. image: {
  20633. source: "./media/characters/ijzer/side.svg",
  20634. extra: 2756 / 1600,
  20635. bottom: 0.01
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Small",
  20642. height: math.unit(3, "meters")
  20643. },
  20644. {
  20645. name: "Normal",
  20646. height: math.unit(8, "meters"),
  20647. default: true
  20648. },
  20649. {
  20650. name: "Normal+",
  20651. height: math.unit(10, "meters")
  20652. },
  20653. {
  20654. name: "Bigger",
  20655. height: math.unit(24, "meters")
  20656. },
  20657. {
  20658. name: "Huge",
  20659. height: math.unit(80, "meters")
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20665. {
  20666. front: {
  20667. height: math.unit(6 + 2 / 12, "feet"),
  20668. weight: math.unit(153, "lb"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/luca-cervicum/front.svg",
  20672. extra: 370 / 327,
  20673. bottom: 0.015
  20674. }
  20675. },
  20676. back: {
  20677. height: math.unit(6 + 2 / 12, "feet"),
  20678. weight: math.unit(153, "lb"),
  20679. name: "Back",
  20680. image: {
  20681. source: "./media/characters/luca-cervicum/back.svg",
  20682. extra: 367 / 333,
  20683. bottom: 0.005
  20684. }
  20685. },
  20686. frontGear: {
  20687. height: math.unit(6 + 2 / 12, "feet"),
  20688. weight: math.unit(173, "lb"),
  20689. name: "Front (Gear)",
  20690. image: {
  20691. source: "./media/characters/luca-cervicum/front-gear.svg",
  20692. extra: 377 / 333,
  20693. bottom: 0.006
  20694. }
  20695. },
  20696. },
  20697. [
  20698. {
  20699. name: "Normal",
  20700. height: math.unit(6 + 2 / 12, "feet"),
  20701. default: true
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20707. {
  20708. front: {
  20709. height: math.unit(6 + 1 / 12, "feet"),
  20710. weight: math.unit(304, "lb"),
  20711. name: "Front",
  20712. image: {
  20713. source: "./media/characters/oliver/front.svg",
  20714. extra: 157 / 143,
  20715. bottom: 0.08
  20716. }
  20717. },
  20718. },
  20719. [
  20720. {
  20721. name: "Normal",
  20722. height: math.unit(6 + 1 / 12, "feet"),
  20723. default: true
  20724. },
  20725. ]
  20726. ))
  20727. characterMakers.push(() => makeCharacter(
  20728. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20729. {
  20730. front: {
  20731. height: math.unit(5 + 7 / 12, "feet"),
  20732. weight: math.unit(140, "lb"),
  20733. name: "Front",
  20734. image: {
  20735. source: "./media/characters/shane/front.svg",
  20736. extra: 304 / 289,
  20737. bottom: 0.005
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(5 + 7 / 12, "feet"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20751. {
  20752. front: {
  20753. height: math.unit(5 + 9 / 12, "feet"),
  20754. weight: math.unit(178, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/shin/front.svg",
  20758. extra: 159 / 151,
  20759. bottom: 0.015
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(5 + 9 / 12, "feet"),
  20767. default: true
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20773. {
  20774. front: {
  20775. height: math.unit(5 + 10 / 12, "feet"),
  20776. weight: math.unit(168, "lb"),
  20777. name: "Front",
  20778. image: {
  20779. source: "./media/characters/xerxes/front.svg",
  20780. extra: 282 / 260,
  20781. bottom: 0.045
  20782. }
  20783. },
  20784. },
  20785. [
  20786. {
  20787. name: "Normal",
  20788. height: math.unit(5 + 10 / 12, "feet"),
  20789. default: true
  20790. },
  20791. ]
  20792. ))
  20793. characterMakers.push(() => makeCharacter(
  20794. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20795. {
  20796. front: {
  20797. height: math.unit(6 + 7 / 12, "feet"),
  20798. weight: math.unit(208, "lb"),
  20799. name: "Front",
  20800. image: {
  20801. source: "./media/characters/chaska/front.svg",
  20802. extra: 332 / 319,
  20803. bottom: 0.015
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(6 + 7 / 12, "feet"),
  20811. default: true
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20817. {
  20818. front: {
  20819. height: math.unit(5 + 8 / 12, "feet"),
  20820. weight: math.unit(208, "lb"),
  20821. name: "Front",
  20822. image: {
  20823. source: "./media/characters/enuk/front.svg",
  20824. extra: 437 / 406,
  20825. bottom: 0.02
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(5 + 8 / 12, "feet"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(5 + 10 / 12, "feet"),
  20842. weight: math.unit(252, "lb"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/bruun/front.svg",
  20846. extra: 197 / 187,
  20847. bottom: 0.012
  20848. }
  20849. },
  20850. },
  20851. [
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(5 + 10 / 12, "feet"),
  20855. default: true
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20861. {
  20862. front: {
  20863. height: math.unit(6 + 10 / 12, "feet"),
  20864. weight: math.unit(255, "lb"),
  20865. name: "Front",
  20866. image: {
  20867. source: "./media/characters/alexeev/front.svg",
  20868. extra: 213 / 200,
  20869. bottom: 0.05
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(6 + 10 / 12, "feet"),
  20877. default: true
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(2 + 8 / 12, "feet"),
  20886. weight: math.unit(22, "lb"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/evelyn/front.svg",
  20890. extra: 208 / 180
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(2 + 8 / 12, "feet"),
  20898. default: true
  20899. },
  20900. ]
  20901. ))
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20904. {
  20905. front: {
  20906. height: math.unit(5 + 9 / 12, "feet"),
  20907. weight: math.unit(139, "lb"),
  20908. name: "Front",
  20909. image: {
  20910. source: "./media/characters/inca/front.svg",
  20911. extra: 294 / 291,
  20912. bottom: 0.03
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(5 + 9 / 12, "feet"),
  20920. default: true
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20926. {
  20927. front: {
  20928. height: math.unit(6 + 3 / 12, "feet"),
  20929. weight: math.unit(185, "lb"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/mera/front.svg",
  20933. extra: 291 / 277,
  20934. bottom: 0.03
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(6 + 3 / 12, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(6 + 7 / 12, "feet"),
  20951. weight: math.unit(160, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/ceres/front.svg",
  20955. extra: 1023 / 950,
  20956. bottom: 0.027
  20957. }
  20958. },
  20959. back: {
  20960. height: math.unit(6 + 7 / 12, "feet"),
  20961. weight: math.unit(160, "lb"),
  20962. name: "Back",
  20963. image: {
  20964. source: "./media/characters/ceres/back.svg",
  20965. extra: 1023 / 950
  20966. }
  20967. },
  20968. },
  20969. [
  20970. {
  20971. name: "Normal",
  20972. height: math.unit(6 + 7 / 12, "feet"),
  20973. default: true
  20974. },
  20975. ]
  20976. ))
  20977. characterMakers.push(() => makeCharacter(
  20978. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20979. {
  20980. front: {
  20981. height: math.unit(5 + 10 / 12, "feet"),
  20982. weight: math.unit(150, "lb"),
  20983. name: "Front",
  20984. image: {
  20985. source: "./media/characters/kris/front.svg",
  20986. extra: 885 / 803,
  20987. bottom: 0.03
  20988. }
  20989. },
  20990. },
  20991. [
  20992. {
  20993. name: "Normal",
  20994. height: math.unit(5 + 10 / 12, "feet"),
  20995. default: true
  20996. },
  20997. ]
  20998. ))
  20999. characterMakers.push(() => makeCharacter(
  21000. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21001. {
  21002. front: {
  21003. height: math.unit(7, "feet"),
  21004. weight: math.unit(120, "kg"),
  21005. name: "Front",
  21006. image: {
  21007. source: "./media/characters/taluthus/front.svg",
  21008. extra: 903 / 833,
  21009. bottom: 0.015
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(7, "feet"),
  21017. default: true
  21018. },
  21019. {
  21020. name: "Macro",
  21021. height: math.unit(300, "feet")
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21027. {
  21028. front: {
  21029. height: math.unit(5 + 9 / 12, "feet"),
  21030. weight: math.unit(145, "lb"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/dawn/front.svg",
  21034. extra: 2094 / 2016,
  21035. bottom: 0.025
  21036. }
  21037. },
  21038. back: {
  21039. height: math.unit(5 + 9 / 12, "feet"),
  21040. weight: math.unit(160, "lb"),
  21041. name: "Back",
  21042. image: {
  21043. source: "./media/characters/dawn/back.svg",
  21044. extra: 2112 / 2080,
  21045. bottom: 0.005
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Normal",
  21052. height: math.unit(6 + 7 / 12, "feet"),
  21053. default: true
  21054. },
  21055. ]
  21056. ))
  21057. characterMakers.push(() => makeCharacter(
  21058. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21059. {
  21060. anthro: {
  21061. height: math.unit(8 + 3 / 12, "feet"),
  21062. weight: math.unit(450, "lb"),
  21063. name: "Anthro",
  21064. image: {
  21065. source: "./media/characters/arador/anthro.svg",
  21066. extra: 1835 / 1718,
  21067. bottom: 0.025
  21068. }
  21069. },
  21070. feral: {
  21071. height: math.unit(4, "feet"),
  21072. weight: math.unit(200, "lb"),
  21073. name: "Feral",
  21074. image: {
  21075. source: "./media/characters/arador/feral.svg",
  21076. extra: 1683 / 1514,
  21077. bottom: 0.07
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Normal",
  21084. height: math.unit(8 + 3 / 12, "feet")
  21085. },
  21086. {
  21087. name: "Macro",
  21088. height: math.unit(82.5, "feet"),
  21089. default: true
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21095. {
  21096. front: {
  21097. height: math.unit(5 + 10 / 12, "feet"),
  21098. weight: math.unit(125, "lb"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/dharsi/front.svg",
  21102. extra: 716 / 630,
  21103. bottom: 0.035
  21104. }
  21105. },
  21106. },
  21107. [
  21108. {
  21109. name: "Nano",
  21110. height: math.unit(100, "nm")
  21111. },
  21112. {
  21113. name: "Micro",
  21114. height: math.unit(2, "inches")
  21115. },
  21116. {
  21117. name: "Normal",
  21118. height: math.unit(5 + 10 / 12, "feet"),
  21119. default: true
  21120. },
  21121. {
  21122. name: "Macro",
  21123. height: math.unit(1000, "feet")
  21124. },
  21125. {
  21126. name: "Megamacro",
  21127. height: math.unit(10, "miles")
  21128. },
  21129. {
  21130. name: "Gigamacro",
  21131. height: math.unit(3000, "miles")
  21132. },
  21133. {
  21134. name: "Teramacro",
  21135. height: math.unit(500000, "miles")
  21136. },
  21137. {
  21138. name: "Teramacro+",
  21139. height: math.unit(30, "galaxies")
  21140. },
  21141. ]
  21142. ))
  21143. characterMakers.push(() => makeCharacter(
  21144. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21145. {
  21146. front: {
  21147. height: math.unit(6, "feet"),
  21148. weight: math.unit(150, "lb"),
  21149. name: "Front",
  21150. image: {
  21151. source: "./media/characters/deathy/front.svg",
  21152. extra: 1552 / 1463,
  21153. bottom: 0.025
  21154. }
  21155. },
  21156. side: {
  21157. height: math.unit(6, "feet"),
  21158. weight: math.unit(150, "lb"),
  21159. name: "Side",
  21160. image: {
  21161. source: "./media/characters/deathy/side.svg",
  21162. extra: 1604 / 1455,
  21163. bottom: 0.025
  21164. }
  21165. },
  21166. back: {
  21167. height: math.unit(6, "feet"),
  21168. weight: math.unit(150, "lb"),
  21169. name: "Back",
  21170. image: {
  21171. source: "./media/characters/deathy/back.svg",
  21172. extra: 1580 / 1463,
  21173. bottom: 0.005
  21174. }
  21175. },
  21176. },
  21177. [
  21178. {
  21179. name: "Micro",
  21180. height: math.unit(5, "millimeters")
  21181. },
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(6 + 5 / 12, "feet"),
  21185. default: true
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21191. {
  21192. front: {
  21193. height: math.unit(16, "feet"),
  21194. weight: math.unit(4000, "lb"),
  21195. name: "Front",
  21196. image: {
  21197. source: "./media/characters/juniper/front.svg",
  21198. bottom: 0.04
  21199. }
  21200. },
  21201. },
  21202. [
  21203. {
  21204. name: "Normal",
  21205. height: math.unit(16, "feet"),
  21206. default: true
  21207. },
  21208. ]
  21209. ))
  21210. characterMakers.push(() => makeCharacter(
  21211. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21212. {
  21213. front: {
  21214. height: math.unit(6, "feet"),
  21215. weight: math.unit(150, "lb"),
  21216. name: "Front",
  21217. image: {
  21218. source: "./media/characters/hipster/front.svg",
  21219. extra: 1312 / 1209,
  21220. bottom: 0.025
  21221. }
  21222. },
  21223. back: {
  21224. height: math.unit(6, "feet"),
  21225. weight: math.unit(150, "lb"),
  21226. name: "Back",
  21227. image: {
  21228. source: "./media/characters/hipster/back.svg",
  21229. extra: 1281 / 1196,
  21230. bottom: 0.01
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Micro",
  21237. height: math.unit(1, "mm")
  21238. },
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(4, "inches"),
  21242. default: true
  21243. },
  21244. {
  21245. name: "Macro",
  21246. height: math.unit(500, "feet")
  21247. },
  21248. {
  21249. name: "Megamacro",
  21250. height: math.unit(1000, "miles")
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(6, "feet"),
  21259. weight: math.unit(150, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/tendirmuldr/front.svg",
  21263. extra: 1878 / 1772,
  21264. bottom: 0.015
  21265. }
  21266. },
  21267. },
  21268. [
  21269. {
  21270. name: "Megamacro",
  21271. height: math.unit(1500, "miles"),
  21272. default: true
  21273. },
  21274. ]
  21275. ))
  21276. characterMakers.push(() => makeCharacter(
  21277. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21278. {
  21279. front: {
  21280. height: math.unit(14, "feet"),
  21281. weight: math.unit(12000, "lb"),
  21282. name: "Front",
  21283. image: {
  21284. source: "./media/characters/mort/front.svg",
  21285. extra: 365 / 318,
  21286. bottom: 0.01
  21287. }
  21288. },
  21289. side: {
  21290. height: math.unit(14, "feet"),
  21291. weight: math.unit(12000, "lb"),
  21292. name: "Side",
  21293. image: {
  21294. source: "./media/characters/mort/side.svg",
  21295. extra: 365 / 318,
  21296. bottom: 0.052
  21297. },
  21298. default: true
  21299. },
  21300. back: {
  21301. height: math.unit(14, "feet"),
  21302. weight: math.unit(12000, "lb"),
  21303. name: "Back",
  21304. image: {
  21305. source: "./media/characters/mort/back.svg",
  21306. extra: 371 / 332,
  21307. bottom: 0.18
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(14, "feet"),
  21315. default: true
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21321. {
  21322. front: {
  21323. height: math.unit(8, "feet"),
  21324. weight: math.unit(1, "ton"),
  21325. name: "Front",
  21326. image: {
  21327. source: "./media/characters/lycoa/front.svg",
  21328. extra: 1836/1728,
  21329. bottom: 81/1917
  21330. }
  21331. },
  21332. back: {
  21333. height: math.unit(8, "feet"),
  21334. weight: math.unit(1, "ton"),
  21335. name: "Back",
  21336. image: {
  21337. source: "./media/characters/lycoa/back.svg",
  21338. extra: 1785/1720,
  21339. bottom: 91/1876
  21340. }
  21341. },
  21342. head: {
  21343. height: math.unit(1.6243, "feet"),
  21344. name: "Head",
  21345. image: {
  21346. source: "./media/characters/lycoa/head.svg",
  21347. extra: 1011/782,
  21348. bottom: 0/1011
  21349. }
  21350. },
  21351. tailmaw: {
  21352. height: math.unit(1.9, "feet"),
  21353. name: "Tailmaw",
  21354. image: {
  21355. source: "./media/characters/lycoa/tailmaw.svg"
  21356. }
  21357. },
  21358. tentacles: {
  21359. height: math.unit(2.1, "feet"),
  21360. name: "Tentacles",
  21361. image: {
  21362. source: "./media/characters/lycoa/tentacles.svg"
  21363. }
  21364. },
  21365. dick: {
  21366. height: math.unit(1.73, "feet"),
  21367. name: "Dick",
  21368. image: {
  21369. source: "./media/characters/lycoa/dick.svg"
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(8, "feet"),
  21377. default: true
  21378. },
  21379. {
  21380. name: "Macro",
  21381. height: math.unit(30, "feet")
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21387. {
  21388. front: {
  21389. height: math.unit(4 + 2 / 12, "feet"),
  21390. weight: math.unit(70, "lb"),
  21391. name: "Front",
  21392. image: {
  21393. source: "./media/characters/naldara/front.svg",
  21394. extra: 1664/1387,
  21395. bottom: 81/1745
  21396. },
  21397. form: "anthro",
  21398. default: true
  21399. },
  21400. naga: {
  21401. height: math.unit(20, "feet"),
  21402. weight: math.unit(15000, "kg"),
  21403. name: "Front",
  21404. image: {
  21405. source: "./media/characters/naldara/naga.svg",
  21406. extra: 1590/1396,
  21407. bottom: 285/1875
  21408. },
  21409. form: "naga",
  21410. default: true
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(4 + 2 / 12, "feet"),
  21417. form: "anthro",
  21418. default: true
  21419. },
  21420. {
  21421. name: "Normal",
  21422. height: math.unit(20, "feet"),
  21423. form: "naga",
  21424. default: true
  21425. },
  21426. ],
  21427. {
  21428. "anthro": {
  21429. name: "Anthro",
  21430. default: true
  21431. },
  21432. "naga": {
  21433. name: "Naga"
  21434. }
  21435. }
  21436. ))
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21439. {
  21440. front: {
  21441. height: math.unit(13 + 7 / 12, "feet"),
  21442. weight: math.unit(1500, "lb"),
  21443. name: "Front",
  21444. image: {
  21445. source: "./media/characters/briar/front.svg",
  21446. extra: 1223/1157,
  21447. bottom: 123/1346
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(13 + 7 / 12, "feet"),
  21455. default: true
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21461. {
  21462. side: {
  21463. height: math.unit(16, "feet"),
  21464. weight: math.unit(500, "lb"),
  21465. name: "Side",
  21466. image: {
  21467. source: "./media/characters/vanguard/side.svg",
  21468. extra: 1022/914,
  21469. bottom: 30/1052
  21470. }
  21471. },
  21472. sideAlt: {
  21473. height: math.unit(10, "feet"),
  21474. weight: math.unit(500, "lb"),
  21475. name: "Side (Alt)",
  21476. image: {
  21477. source: "./media/characters/vanguard/side-alt.svg",
  21478. extra: 502 / 425,
  21479. bottom: 0.087
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(17.71, "feet"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(7.5, "feet"),
  21496. weight: math.unit(2, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/artemis/work-safe-front.svg",
  21500. extra: 1192 / 1075,
  21501. bottom: 0.07
  21502. },
  21503. form: "work-safe",
  21504. default: true
  21505. },
  21506. frontNsfw: {
  21507. height: math.unit(7.5, "feet"),
  21508. weight: math.unit(2, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/artemis/calibrating-front.svg",
  21512. extra: 1192 / 1075,
  21513. bottom: 0.07
  21514. },
  21515. form: "calibrating",
  21516. default: true
  21517. },
  21518. frontNsfwer: {
  21519. height: math.unit(7.5, "feet"),
  21520. weight: math.unit(2, "lb"),
  21521. name: "Front",
  21522. image: {
  21523. source: "./media/characters/artemis/oversize-load-front.svg",
  21524. extra: 1192 / 1075,
  21525. bottom: 0.07
  21526. },
  21527. form: "oversize-load",
  21528. default: true
  21529. },
  21530. side: {
  21531. height: math.unit(7.5, "feet"),
  21532. weight: math.unit(2, "lb"),
  21533. name: "Side",
  21534. image: {
  21535. source: "./media/characters/artemis/work-safe-side.svg",
  21536. extra: 1192 / 1075,
  21537. bottom: 0.07
  21538. },
  21539. form: "work-safe"
  21540. },
  21541. sideNsfw: {
  21542. height: math.unit(7.5, "feet"),
  21543. weight: math.unit(2, "lb"),
  21544. name: "Side",
  21545. image: {
  21546. source: "./media/characters/artemis/calibrating-side.svg",
  21547. extra: 1192 / 1075,
  21548. bottom: 0.07
  21549. },
  21550. form: "calibrating"
  21551. },
  21552. sideNsfwer: {
  21553. height: math.unit(7.5, "feet"),
  21554. weight: math.unit(2, "lb"),
  21555. name: "Side",
  21556. image: {
  21557. source: "./media/characters/artemis/oversize-load-side.svg",
  21558. extra: 1192 / 1075,
  21559. bottom: 0.07
  21560. },
  21561. form: "oversize-load"
  21562. },
  21563. maw: {
  21564. height: math.unit(1.1, "feet"),
  21565. name: "Maw",
  21566. image: {
  21567. source: "./media/characters/artemis/maw.svg"
  21568. },
  21569. form: "work-safe"
  21570. },
  21571. stomach: {
  21572. height: math.unit(0.95, "feet"),
  21573. name: "Stomach",
  21574. image: {
  21575. source: "./media/characters/artemis/stomach.svg"
  21576. },
  21577. form: "work-safe"
  21578. },
  21579. dickCanine: {
  21580. height: math.unit(1, "feet"),
  21581. name: "Dick (Canine)",
  21582. image: {
  21583. source: "./media/characters/artemis/dick-canine.svg"
  21584. },
  21585. form: "calibrating"
  21586. },
  21587. dickEquine: {
  21588. height: math.unit(0.85, "feet"),
  21589. name: "Dick (Equine)",
  21590. image: {
  21591. source: "./media/characters/artemis/dick-equine.svg"
  21592. },
  21593. form: "calibrating"
  21594. },
  21595. dickExotic: {
  21596. height: math.unit(0.85, "feet"),
  21597. name: "Dick (Exotic)",
  21598. image: {
  21599. source: "./media/characters/artemis/dick-exotic.svg"
  21600. },
  21601. form: "calibrating"
  21602. },
  21603. dickCanineBigger: {
  21604. height: math.unit(1 * 1.33, "feet"),
  21605. name: "Dick (Canine)",
  21606. image: {
  21607. source: "./media/characters/artemis/dick-canine.svg"
  21608. },
  21609. form: "oversize-load"
  21610. },
  21611. dickEquineBigger: {
  21612. height: math.unit(0.85 * 1.33, "feet"),
  21613. name: "Dick (Equine)",
  21614. image: {
  21615. source: "./media/characters/artemis/dick-equine.svg"
  21616. },
  21617. form: "oversize-load"
  21618. },
  21619. dickExoticBigger: {
  21620. height: math.unit(0.85 * 1.33, "feet"),
  21621. name: "Dick (Exotic)",
  21622. image: {
  21623. source: "./media/characters/artemis/dick-exotic.svg"
  21624. },
  21625. form: "oversize-load"
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(7.5, "feet"),
  21632. form: "work-safe",
  21633. default: true
  21634. },
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(7.5, "feet"),
  21638. form: "calibrating",
  21639. default: true
  21640. },
  21641. {
  21642. name: "Normal",
  21643. height: math.unit(7.5, "feet"),
  21644. form: "oversize-load",
  21645. default: true
  21646. },
  21647. {
  21648. name: "Enlarged",
  21649. height: math.unit(12, "feet"),
  21650. form: "work-safe",
  21651. },
  21652. {
  21653. name: "Enlarged",
  21654. height: math.unit(12, "feet"),
  21655. form: "calibrating",
  21656. },
  21657. {
  21658. name: "Enlarged",
  21659. height: math.unit(12, "feet"),
  21660. form: "oversize-load",
  21661. },
  21662. ],
  21663. {
  21664. "work-safe": {
  21665. name: "Work-Safe",
  21666. default: true
  21667. },
  21668. "calibrating": {
  21669. name: "Calibrating"
  21670. },
  21671. "oversize-load": {
  21672. name: "Oversize Load"
  21673. }
  21674. }
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21678. {
  21679. front: {
  21680. height: math.unit(5 + 3 / 12, "feet"),
  21681. weight: math.unit(160, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/kira/front.svg",
  21685. extra: 906 / 786,
  21686. bottom: 0.01
  21687. }
  21688. },
  21689. back: {
  21690. height: math.unit(5 + 3 / 12, "feet"),
  21691. weight: math.unit(160, "lb"),
  21692. name: "Back",
  21693. image: {
  21694. source: "./media/characters/kira/back.svg",
  21695. extra: 882 / 757,
  21696. bottom: 0.005
  21697. }
  21698. },
  21699. frontDressed: {
  21700. height: math.unit(5 + 3 / 12, "feet"),
  21701. weight: math.unit(160, "lb"),
  21702. name: "Front (Dressed)",
  21703. image: {
  21704. source: "./media/characters/kira/front-dressed.svg",
  21705. extra: 906 / 786,
  21706. bottom: 0.01
  21707. }
  21708. },
  21709. beans: {
  21710. height: math.unit(0.92, "feet"),
  21711. name: "Beans",
  21712. image: {
  21713. source: "./media/characters/kira/beans.svg"
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(5 + 3 / 12, "feet"),
  21721. default: true
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21727. {
  21728. front: {
  21729. height: math.unit(5 + 4 / 12, "feet"),
  21730. weight: math.unit(145, "lb"),
  21731. name: "Front",
  21732. image: {
  21733. source: "./media/characters/scramble/front.svg",
  21734. extra: 763 / 727,
  21735. bottom: 0.05
  21736. }
  21737. },
  21738. back: {
  21739. height: math.unit(5 + 4 / 12, "feet"),
  21740. weight: math.unit(145, "lb"),
  21741. name: "Back",
  21742. image: {
  21743. source: "./media/characters/scramble/back.svg",
  21744. extra: 826 / 737,
  21745. bottom: 0.002
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Normal",
  21752. height: math.unit(5 + 4 / 12, "feet"),
  21753. default: true
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21759. {
  21760. side: {
  21761. height: math.unit(6 + 2 / 12, "feet"),
  21762. weight: math.unit(190, "lb"),
  21763. name: "Side",
  21764. image: {
  21765. source: "./media/characters/biscuit/side.svg",
  21766. extra: 858 / 791,
  21767. bottom: 0.044
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Normal",
  21774. height: math.unit(6 + 2 / 12, "feet"),
  21775. default: true
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21781. {
  21782. front: {
  21783. height: math.unit(5 + 2 / 12, "feet"),
  21784. weight: math.unit(120, "lb"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/poffin/front.svg",
  21788. extra: 786 / 680,
  21789. bottom: 0.005
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(5 + 2 / 12, "feet"),
  21797. default: true
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21803. {
  21804. front: {
  21805. height: math.unit(6 + 3 / 12, "feet"),
  21806. weight: math.unit(519, "lb"),
  21807. name: "Front",
  21808. image: {
  21809. source: "./media/characters/dhari/front.svg",
  21810. extra: 1048 / 946,
  21811. bottom: 0.015
  21812. }
  21813. },
  21814. back: {
  21815. height: math.unit(6 + 3 / 12, "feet"),
  21816. weight: math.unit(519, "lb"),
  21817. name: "Back",
  21818. image: {
  21819. source: "./media/characters/dhari/back.svg",
  21820. extra: 1048 / 931,
  21821. bottom: 0.005
  21822. }
  21823. },
  21824. frontDressed: {
  21825. height: math.unit(6 + 3 / 12, "feet"),
  21826. weight: math.unit(519, "lb"),
  21827. name: "Front (Dressed)",
  21828. image: {
  21829. source: "./media/characters/dhari/front-dressed.svg",
  21830. extra: 1713 / 1546,
  21831. bottom: 0.02
  21832. }
  21833. },
  21834. backDressed: {
  21835. height: math.unit(6 + 3 / 12, "feet"),
  21836. weight: math.unit(519, "lb"),
  21837. name: "Back (Dressed)",
  21838. image: {
  21839. source: "./media/characters/dhari/back-dressed.svg",
  21840. extra: 1699 / 1537,
  21841. bottom: 0.01
  21842. }
  21843. },
  21844. maw: {
  21845. height: math.unit(0.95, "feet"),
  21846. name: "Maw",
  21847. image: {
  21848. source: "./media/characters/dhari/maw.svg"
  21849. }
  21850. },
  21851. wereFront: {
  21852. height: math.unit(12 + 8 / 12, "feet"),
  21853. weight: math.unit(4000, "lb"),
  21854. name: "Front (Were)",
  21855. image: {
  21856. source: "./media/characters/dhari/were-front.svg",
  21857. extra: 1065 / 969,
  21858. bottom: 0.015
  21859. }
  21860. },
  21861. wereBack: {
  21862. height: math.unit(12 + 8 / 12, "feet"),
  21863. weight: math.unit(4000, "lb"),
  21864. name: "Back (Were)",
  21865. image: {
  21866. source: "./media/characters/dhari/were-back.svg",
  21867. extra: 1065 / 969,
  21868. bottom: 0.012
  21869. }
  21870. },
  21871. wereMaw: {
  21872. height: math.unit(0.625, "meters"),
  21873. name: "Maw (Were)",
  21874. image: {
  21875. source: "./media/characters/dhari/were-maw.svg"
  21876. }
  21877. },
  21878. },
  21879. [
  21880. {
  21881. name: "Normal",
  21882. height: math.unit(6 + 3 / 12, "feet"),
  21883. default: true
  21884. },
  21885. ]
  21886. ))
  21887. characterMakers.push(() => makeCharacter(
  21888. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21889. {
  21890. anthro: {
  21891. height: math.unit(5 + 7 / 12, "feet"),
  21892. weight: math.unit(175, "lb"),
  21893. name: "Anthro",
  21894. image: {
  21895. source: "./media/characters/rena-dyne/anthro.svg",
  21896. extra: 1849 / 1785,
  21897. bottom: 0.005
  21898. }
  21899. },
  21900. taur: {
  21901. height: math.unit(15 + 6 / 12, "feet"),
  21902. weight: math.unit(8000, "lb"),
  21903. name: "Taur",
  21904. image: {
  21905. source: "./media/characters/rena-dyne/taur.svg",
  21906. extra: 2315 / 2234,
  21907. bottom: 0.033
  21908. }
  21909. },
  21910. },
  21911. [
  21912. {
  21913. name: "Normal",
  21914. height: math.unit(5 + 7 / 12, "feet"),
  21915. default: true
  21916. },
  21917. ]
  21918. ))
  21919. characterMakers.push(() => makeCharacter(
  21920. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21921. {
  21922. front: {
  21923. height: math.unit(8, "feet"),
  21924. weight: math.unit(600, "lb"),
  21925. name: "Front",
  21926. image: {
  21927. source: "./media/characters/weremeep/front.svg",
  21928. extra: 970/849,
  21929. bottom: 7/977
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Normal",
  21936. height: math.unit(8, "feet"),
  21937. default: true
  21938. },
  21939. {
  21940. name: "Lorg",
  21941. height: math.unit(12, "feet")
  21942. },
  21943. {
  21944. name: "Oh Lawd She Comin'",
  21945. height: math.unit(20, "feet")
  21946. },
  21947. ]
  21948. ))
  21949. characterMakers.push(() => makeCharacter(
  21950. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21951. {
  21952. front: {
  21953. height: math.unit(4, "feet"),
  21954. weight: math.unit(90, "lb"),
  21955. name: "Front",
  21956. image: {
  21957. source: "./media/characters/reza/front.svg",
  21958. extra: 1183 / 1111,
  21959. bottom: 0.017
  21960. }
  21961. },
  21962. back: {
  21963. height: math.unit(4, "feet"),
  21964. weight: math.unit(90, "lb"),
  21965. name: "Back",
  21966. image: {
  21967. source: "./media/characters/reza/back.svg",
  21968. extra: 1183 / 1111,
  21969. bottom: 0.01
  21970. }
  21971. },
  21972. drake: {
  21973. height: math.unit(30, "feet"),
  21974. weight: math.unit(246960, "lb"),
  21975. name: "Drake",
  21976. image: {
  21977. source: "./media/characters/reza/drake.svg",
  21978. extra: 2350 / 2024,
  21979. bottom: 60.7 / 2403
  21980. }
  21981. },
  21982. },
  21983. [
  21984. {
  21985. name: "Normal",
  21986. height: math.unit(4, "feet"),
  21987. default: true
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21993. {
  21994. side: {
  21995. height: math.unit(15, "feet"),
  21996. weight: math.unit(14, "tons"),
  21997. name: "Side",
  21998. image: {
  21999. source: "./media/characters/athea/side.svg",
  22000. extra: 960 / 540,
  22001. bottom: 0.003
  22002. }
  22003. },
  22004. sitting: {
  22005. height: math.unit(6 * 2.85, "feet"),
  22006. weight: math.unit(14, "tons"),
  22007. name: "Sitting",
  22008. image: {
  22009. source: "./media/characters/athea/sitting.svg",
  22010. extra: 621 / 581,
  22011. bottom: 0.075
  22012. }
  22013. },
  22014. maw: {
  22015. height: math.unit(7.59498031496063, "feet"),
  22016. name: "Maw",
  22017. image: {
  22018. source: "./media/characters/athea/maw.svg"
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Lap Cat",
  22025. height: math.unit(2.5, "feet")
  22026. },
  22027. {
  22028. name: "Minimacro",
  22029. height: math.unit(15, "feet"),
  22030. default: true
  22031. },
  22032. {
  22033. name: "Macro",
  22034. height: math.unit(120, "feet")
  22035. },
  22036. {
  22037. name: "Macro+",
  22038. height: math.unit(640, "feet")
  22039. },
  22040. {
  22041. name: "Colossus",
  22042. height: math.unit(2.2, "miles")
  22043. },
  22044. ]
  22045. ))
  22046. characterMakers.push(() => makeCharacter(
  22047. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22048. {
  22049. front: {
  22050. height: math.unit(8 + 8 / 12, "feet"),
  22051. weight: math.unit(130, "kg"),
  22052. name: "Front",
  22053. image: {
  22054. source: "./media/characters/seroko/front.svg",
  22055. extra: 1385 / 1280,
  22056. bottom: 0.025
  22057. }
  22058. },
  22059. back: {
  22060. height: math.unit(8 + 8 / 12, "feet"),
  22061. weight: math.unit(130, "kg"),
  22062. name: "Back",
  22063. image: {
  22064. source: "./media/characters/seroko/back.svg",
  22065. extra: 1369 / 1238,
  22066. bottom: 0.018
  22067. }
  22068. },
  22069. frontDressed: {
  22070. height: math.unit(8 + 8 / 12, "feet"),
  22071. weight: math.unit(130, "kg"),
  22072. name: "Front (Dressed)",
  22073. image: {
  22074. source: "./media/characters/seroko/front-dressed.svg",
  22075. extra: 1366 / 1275,
  22076. bottom: 0.03
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(8 + 8 / 12, "feet"),
  22084. default: true
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22090. {
  22091. front: {
  22092. height: math.unit(5.5, "feet"),
  22093. weight: math.unit(160, "lb"),
  22094. name: "Front",
  22095. image: {
  22096. source: "./media/characters/quatzi/front.svg",
  22097. extra: 2346 / 2242,
  22098. bottom: 0.015
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Normal",
  22105. height: math.unit(5.5, "feet"),
  22106. default: true
  22107. },
  22108. {
  22109. name: "Big",
  22110. height: math.unit(7.7, "feet")
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22116. {
  22117. front: {
  22118. height: math.unit(5 + 11 / 12, "feet"),
  22119. weight: math.unit(180, "lb"),
  22120. name: "Front",
  22121. image: {
  22122. source: "./media/characters/sen/front.svg",
  22123. extra: 1321 / 1254,
  22124. bottom: 0.015
  22125. }
  22126. },
  22127. side: {
  22128. height: math.unit(5 + 11 / 12, "feet"),
  22129. weight: math.unit(180, "lb"),
  22130. name: "Side",
  22131. image: {
  22132. source: "./media/characters/sen/side.svg",
  22133. extra: 1321 / 1254,
  22134. bottom: 0.007
  22135. }
  22136. },
  22137. back: {
  22138. height: math.unit(5 + 11 / 12, "feet"),
  22139. weight: math.unit(180, "lb"),
  22140. name: "Back",
  22141. image: {
  22142. source: "./media/characters/sen/back.svg",
  22143. extra: 1321 / 1254
  22144. }
  22145. },
  22146. },
  22147. [
  22148. {
  22149. name: "Normal",
  22150. height: math.unit(5 + 11 / 12, "feet"),
  22151. default: true
  22152. },
  22153. ]
  22154. ))
  22155. characterMakers.push(() => makeCharacter(
  22156. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22157. {
  22158. front: {
  22159. height: math.unit(166.6, "cm"),
  22160. weight: math.unit(66.6, "kg"),
  22161. name: "Front",
  22162. image: {
  22163. source: "./media/characters/fruity/front.svg",
  22164. extra: 1510 / 1386,
  22165. bottom: 0.04
  22166. }
  22167. },
  22168. back: {
  22169. height: math.unit(166.6, "cm"),
  22170. weight: math.unit(66.6, "lb"),
  22171. name: "Back",
  22172. image: {
  22173. source: "./media/characters/fruity/back.svg",
  22174. extra: 1563 / 1435,
  22175. bottom: 0.005
  22176. }
  22177. },
  22178. },
  22179. [
  22180. {
  22181. name: "Normal",
  22182. height: math.unit(166.6, "cm"),
  22183. default: true
  22184. },
  22185. {
  22186. name: "Demonic",
  22187. height: math.unit(166.6, "feet")
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22193. {
  22194. side: {
  22195. height: math.unit(10, "feet"),
  22196. weight: math.unit(500, "lb"),
  22197. name: "Side",
  22198. image: {
  22199. source: "./media/characters/zost/side.svg",
  22200. extra: 2870/2533,
  22201. bottom: 252/3122
  22202. }
  22203. },
  22204. mawFront: {
  22205. height: math.unit(1.08, "meters"),
  22206. name: "Maw (Front)",
  22207. image: {
  22208. source: "./media/characters/zost/maw-front.svg"
  22209. }
  22210. },
  22211. mawSide: {
  22212. height: math.unit(2.66, "feet"),
  22213. name: "Maw (Side)",
  22214. image: {
  22215. source: "./media/characters/zost/maw-side.svg"
  22216. }
  22217. },
  22218. wingspan: {
  22219. height: math.unit(7.4, "feet"),
  22220. name: "Wingspan",
  22221. image: {
  22222. source: "./media/characters/zost/wingspan.svg"
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Normal",
  22229. height: math.unit(10, "feet"),
  22230. default: true
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22236. {
  22237. front: {
  22238. height: math.unit(5 + 4 / 12, "feet"),
  22239. weight: math.unit(120, "lb"),
  22240. name: "Front",
  22241. image: {
  22242. source: "./media/characters/luci/front.svg",
  22243. extra: 1985 / 1884,
  22244. bottom: 0.04
  22245. }
  22246. },
  22247. back: {
  22248. height: math.unit(5 + 4 / 12, "feet"),
  22249. weight: math.unit(120, "lb"),
  22250. name: "Back",
  22251. image: {
  22252. source: "./media/characters/luci/back.svg",
  22253. extra: 1892 / 1791,
  22254. bottom: 0.002
  22255. }
  22256. },
  22257. },
  22258. [
  22259. {
  22260. name: "Normal",
  22261. height: math.unit(5 + 4 / 12, "feet"),
  22262. default: true
  22263. },
  22264. ]
  22265. ))
  22266. characterMakers.push(() => makeCharacter(
  22267. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22268. {
  22269. front: {
  22270. height: math.unit(1500, "feet"),
  22271. weight: math.unit(3.8e6, "tons"),
  22272. name: "Front",
  22273. image: {
  22274. source: "./media/characters/2th/front.svg",
  22275. extra: 3489 / 3350,
  22276. bottom: 0.1
  22277. }
  22278. },
  22279. foot: {
  22280. height: math.unit(461, "feet"),
  22281. name: "Foot",
  22282. image: {
  22283. source: "./media/characters/2th/foot.svg"
  22284. }
  22285. },
  22286. },
  22287. [
  22288. {
  22289. name: "\"Micro\"",
  22290. height: math.unit(15 + 7 / 12, "feet")
  22291. },
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(1500, "feet"),
  22295. default: true
  22296. },
  22297. {
  22298. name: "Macro",
  22299. height: math.unit(5000, "feet")
  22300. },
  22301. {
  22302. name: "Megamacro",
  22303. height: math.unit(15, "miles")
  22304. },
  22305. {
  22306. name: "Gigamacro",
  22307. height: math.unit(4000, "miles")
  22308. },
  22309. {
  22310. name: "Galactic",
  22311. height: math.unit(50, "AU")
  22312. },
  22313. ]
  22314. ))
  22315. characterMakers.push(() => makeCharacter(
  22316. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22317. {
  22318. front: {
  22319. height: math.unit(5 + 6 / 12, "feet"),
  22320. weight: math.unit(220, "lb"),
  22321. name: "Front",
  22322. image: {
  22323. source: "./media/characters/amethyst/front.svg",
  22324. extra: 2078 / 2040,
  22325. bottom: 0.045
  22326. }
  22327. },
  22328. back: {
  22329. height: math.unit(5 + 6 / 12, "feet"),
  22330. weight: math.unit(220, "lb"),
  22331. name: "Back",
  22332. image: {
  22333. source: "./media/characters/amethyst/back.svg",
  22334. extra: 2021 / 1989,
  22335. bottom: 0.02
  22336. }
  22337. },
  22338. },
  22339. [
  22340. {
  22341. name: "Normal",
  22342. height: math.unit(5 + 6 / 12, "feet"),
  22343. default: true
  22344. },
  22345. ]
  22346. ))
  22347. characterMakers.push(() => makeCharacter(
  22348. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22349. {
  22350. front: {
  22351. height: math.unit(4 + 11 / 12, "feet"),
  22352. weight: math.unit(120, "lb"),
  22353. name: "Front",
  22354. image: {
  22355. source: "./media/characters/yumi-akiyama/front.svg",
  22356. extra: 1327 / 1235,
  22357. bottom: 0.02
  22358. }
  22359. },
  22360. back: {
  22361. height: math.unit(4 + 11 / 12, "feet"),
  22362. weight: math.unit(120, "lb"),
  22363. name: "Back",
  22364. image: {
  22365. source: "./media/characters/yumi-akiyama/back.svg",
  22366. extra: 1287 / 1245,
  22367. bottom: 0.002
  22368. }
  22369. },
  22370. },
  22371. [
  22372. {
  22373. name: "Galactic",
  22374. height: math.unit(50, "galaxies"),
  22375. default: true
  22376. },
  22377. {
  22378. name: "Universal",
  22379. height: math.unit(100, "universes")
  22380. },
  22381. ]
  22382. ))
  22383. characterMakers.push(() => makeCharacter(
  22384. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22385. {
  22386. front: {
  22387. height: math.unit(8, "feet"),
  22388. weight: math.unit(500, "lb"),
  22389. name: "Front",
  22390. image: {
  22391. source: "./media/characters/rifter-yrmori/front.svg",
  22392. extra: 1180 / 1125,
  22393. bottom: 0.02
  22394. }
  22395. },
  22396. back: {
  22397. height: math.unit(8, "feet"),
  22398. weight: math.unit(500, "lb"),
  22399. name: "Back",
  22400. image: {
  22401. source: "./media/characters/rifter-yrmori/back.svg",
  22402. extra: 1190 / 1145,
  22403. bottom: 0.001
  22404. }
  22405. },
  22406. wings: {
  22407. height: math.unit(7.75, "feet"),
  22408. weight: math.unit(500, "lb"),
  22409. name: "Wings",
  22410. image: {
  22411. source: "./media/characters/rifter-yrmori/wings.svg",
  22412. extra: 1357 / 1285
  22413. }
  22414. },
  22415. maw: {
  22416. height: math.unit(0.8, "feet"),
  22417. name: "Maw",
  22418. image: {
  22419. source: "./media/characters/rifter-yrmori/maw.svg"
  22420. }
  22421. },
  22422. mawfront: {
  22423. height: math.unit(1.45, "feet"),
  22424. name: "Maw (Front)",
  22425. image: {
  22426. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Normal",
  22433. height: math.unit(8, "feet"),
  22434. default: true
  22435. },
  22436. {
  22437. name: "Macro",
  22438. height: math.unit(42, "meters")
  22439. },
  22440. ]
  22441. ))
  22442. characterMakers.push(() => makeCharacter(
  22443. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22444. {
  22445. were: {
  22446. height: math.unit(25 + 6 / 12, "feet"),
  22447. weight: math.unit(10000, "lb"),
  22448. name: "Were",
  22449. image: {
  22450. source: "./media/characters/tahajin/were.svg",
  22451. extra: 801 / 770,
  22452. bottom: 0.042
  22453. }
  22454. },
  22455. aquatic: {
  22456. height: math.unit(6 + 4 / 12, "feet"),
  22457. weight: math.unit(160, "lb"),
  22458. name: "Aquatic",
  22459. image: {
  22460. source: "./media/characters/tahajin/aquatic.svg",
  22461. extra: 572 / 542,
  22462. bottom: 0.04
  22463. }
  22464. },
  22465. chow: {
  22466. height: math.unit(8 + 11 / 12, "feet"),
  22467. weight: math.unit(450, "lb"),
  22468. name: "Chow",
  22469. image: {
  22470. source: "./media/characters/tahajin/chow.svg",
  22471. extra: 660 / 640,
  22472. bottom: 0.015
  22473. }
  22474. },
  22475. demiNaga: {
  22476. height: math.unit(6 + 8 / 12, "feet"),
  22477. weight: math.unit(300, "lb"),
  22478. name: "Demi Naga",
  22479. image: {
  22480. source: "./media/characters/tahajin/demi-naga.svg",
  22481. extra: 643 / 615,
  22482. bottom: 0.1
  22483. }
  22484. },
  22485. data: {
  22486. height: math.unit(5, "inches"),
  22487. weight: math.unit(0.1, "lb"),
  22488. name: "Data",
  22489. image: {
  22490. source: "./media/characters/tahajin/data.svg"
  22491. }
  22492. },
  22493. fluu: {
  22494. height: math.unit(5 + 7 / 12, "feet"),
  22495. weight: math.unit(140, "lb"),
  22496. name: "Fluu",
  22497. image: {
  22498. source: "./media/characters/tahajin/fluu.svg",
  22499. extra: 628 / 592,
  22500. bottom: 0.02
  22501. }
  22502. },
  22503. starWarrior: {
  22504. height: math.unit(4 + 5 / 12, "feet"),
  22505. weight: math.unit(50, "lb"),
  22506. name: "Star Warrior",
  22507. image: {
  22508. source: "./media/characters/tahajin/star-warrior.svg"
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Normal",
  22515. height: math.unit(25 + 6 / 12, "feet"),
  22516. default: true
  22517. },
  22518. ]
  22519. ))
  22520. characterMakers.push(() => makeCharacter(
  22521. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22522. {
  22523. front: {
  22524. height: math.unit(8, "feet"),
  22525. weight: math.unit(350, "lb"),
  22526. name: "Front",
  22527. image: {
  22528. source: "./media/characters/gabira/front.svg",
  22529. extra: 1261/1154,
  22530. bottom: 51/1312
  22531. }
  22532. },
  22533. back: {
  22534. height: math.unit(8, "feet"),
  22535. weight: math.unit(350, "lb"),
  22536. name: "Back",
  22537. image: {
  22538. source: "./media/characters/gabira/back.svg",
  22539. extra: 1265/1163,
  22540. bottom: 46/1311
  22541. }
  22542. },
  22543. head: {
  22544. height: math.unit(2.85, "feet"),
  22545. name: "Head",
  22546. image: {
  22547. source: "./media/characters/gabira/head.svg"
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Normal",
  22554. height: math.unit(8, "feet"),
  22555. default: true
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22561. {
  22562. front: {
  22563. height: math.unit(5 + 3 / 12, "feet"),
  22564. weight: math.unit(137, "lb"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/sasha-katraine/front.svg",
  22568. extra: 1745/1694,
  22569. bottom: 37/1782
  22570. }
  22571. },
  22572. back: {
  22573. height: math.unit(5 + 3 / 12, "feet"),
  22574. weight: math.unit(137, "lb"),
  22575. name: "Back",
  22576. image: {
  22577. source: "./media/characters/sasha-katraine/back.svg",
  22578. extra: 1776/1699,
  22579. bottom: 26/1802
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Micro",
  22586. height: math.unit(5, "inches")
  22587. },
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(5 + 3 / 12, "feet"),
  22591. default: true
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22597. {
  22598. side: {
  22599. height: math.unit(4, "inches"),
  22600. weight: math.unit(200, "grams"),
  22601. name: "Side",
  22602. image: {
  22603. source: "./media/characters/der/side.svg",
  22604. extra: 719 / 400,
  22605. bottom: 30.6 / 749.9187
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Micro",
  22612. height: math.unit(4, "inches"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22619. {
  22620. side: {
  22621. height: math.unit(30, "meters"),
  22622. weight: math.unit(700, "tonnes"),
  22623. name: "Side",
  22624. image: {
  22625. source: "./media/characters/fixerdragon/side.svg",
  22626. extra: (1293.0514 - 116.03) / 1106.86,
  22627. bottom: 116.03 / 1293.0514
  22628. }
  22629. },
  22630. },
  22631. [
  22632. {
  22633. name: "Planck",
  22634. height: math.unit(1.6e-35, "meters")
  22635. },
  22636. {
  22637. name: "Micro",
  22638. height: math.unit(0.4, "meters")
  22639. },
  22640. {
  22641. name: "Normal",
  22642. height: math.unit(30, "meters"),
  22643. default: true
  22644. },
  22645. {
  22646. name: "Megamacro",
  22647. height: math.unit(1.2, "megameters")
  22648. },
  22649. {
  22650. name: "Teramacro",
  22651. height: math.unit(130, "terameters")
  22652. },
  22653. {
  22654. name: "Yottamacro",
  22655. height: math.unit(6200, "yottameters")
  22656. },
  22657. ]
  22658. ));
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22661. {
  22662. front: {
  22663. height: math.unit(8, "feet"),
  22664. weight: math.unit(250, "lb"),
  22665. name: "Front",
  22666. image: {
  22667. source: "./media/characters/kite/front.svg",
  22668. extra: 2796 / 2659,
  22669. bottom: 0.002
  22670. }
  22671. },
  22672. },
  22673. [
  22674. {
  22675. name: "Normal",
  22676. height: math.unit(8, "feet"),
  22677. default: true
  22678. },
  22679. {
  22680. name: "Macro",
  22681. height: math.unit(360, "feet")
  22682. },
  22683. {
  22684. name: "Megamacro",
  22685. height: math.unit(1500, "feet")
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22691. {
  22692. front: {
  22693. height: math.unit(5 + 11/12, "feet"),
  22694. weight: math.unit(170, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/poojawa-vynar/front.svg",
  22698. extra: 1735/1585,
  22699. bottom: 96/1831
  22700. }
  22701. },
  22702. back: {
  22703. height: math.unit(5 + 11/12, "feet"),
  22704. weight: math.unit(170, "lb"),
  22705. name: "Back",
  22706. image: {
  22707. source: "./media/characters/poojawa-vynar/back.svg",
  22708. extra: 1749/1607,
  22709. bottom: 28/1777
  22710. }
  22711. },
  22712. male: {
  22713. height: math.unit(5 + 11/12, "feet"),
  22714. weight: math.unit(170, "lb"),
  22715. name: "Male",
  22716. image: {
  22717. source: "./media/characters/poojawa-vynar/male.svg",
  22718. extra: 1855/1713,
  22719. bottom: 63/1918
  22720. }
  22721. },
  22722. taur: {
  22723. height: math.unit(5 + 11/12, "feet"),
  22724. weight: math.unit(170, "lb"),
  22725. name: "Taur",
  22726. image: {
  22727. source: "./media/characters/poojawa-vynar/taur.svg",
  22728. extra: 1151/1059,
  22729. bottom: 356/1507
  22730. }
  22731. },
  22732. frontDressed: {
  22733. height: math.unit(5 + 11/12, "feet"),
  22734. weight: math.unit(170, "lb"),
  22735. name: "Front (Dressed)",
  22736. image: {
  22737. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22738. extra: 1735/1585,
  22739. bottom: 96/1831
  22740. }
  22741. },
  22742. backDressed: {
  22743. height: math.unit(5 + 11/12, "feet"),
  22744. weight: math.unit(170, "lb"),
  22745. name: "Back (Dressed)",
  22746. image: {
  22747. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22748. extra: 1749/1607,
  22749. bottom: 28/1777
  22750. }
  22751. },
  22752. maleDressed: {
  22753. height: math.unit(5 + 11/12, "feet"),
  22754. weight: math.unit(170, "lb"),
  22755. name: "Male (Dressed)",
  22756. image: {
  22757. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22758. extra: 1855/1713,
  22759. bottom: 63/1918
  22760. }
  22761. },
  22762. taurDressed: {
  22763. height: math.unit(5 + 11/12, "feet"),
  22764. weight: math.unit(170, "lb"),
  22765. name: "Taur (Dressed)",
  22766. image: {
  22767. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22768. extra: 1151/1059,
  22769. bottom: 356/1507
  22770. }
  22771. },
  22772. maw: {
  22773. height: math.unit(1.46, "feet"),
  22774. name: "Maw",
  22775. image: {
  22776. source: "./media/characters/poojawa-vynar/maw.svg"
  22777. }
  22778. },
  22779. head: {
  22780. height: math.unit(2.34, "feet"),
  22781. name: "Head",
  22782. image: {
  22783. source: "./media/characters/poojawa-vynar/head.svg"
  22784. }
  22785. },
  22786. paw: {
  22787. height: math.unit(1.61, "feet"),
  22788. name: "Paw",
  22789. image: {
  22790. source: "./media/characters/poojawa-vynar/paw.svg"
  22791. }
  22792. },
  22793. pawToering: {
  22794. height: math.unit(1.72, "feet"),
  22795. name: "Paw (Toering)",
  22796. image: {
  22797. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22798. }
  22799. },
  22800. toering: {
  22801. height: math.unit(2.9, "inches"),
  22802. name: "Toering",
  22803. image: {
  22804. source: "./media/characters/poojawa-vynar/toering.svg"
  22805. }
  22806. },
  22807. shaft: {
  22808. height: math.unit(0.625, "feet"),
  22809. name: "Shaft",
  22810. image: {
  22811. source: "./media/characters/poojawa-vynar/shaft.svg"
  22812. }
  22813. },
  22814. spade: {
  22815. height: math.unit(0.42, "feet"),
  22816. name: "Spade",
  22817. image: {
  22818. source: "./media/characters/poojawa-vynar/spade.svg"
  22819. }
  22820. },
  22821. },
  22822. [
  22823. {
  22824. name: "Shortstack",
  22825. height: math.unit(4, "feet")
  22826. },
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(5 + 11 / 12, "feet"),
  22830. default: true
  22831. },
  22832. {
  22833. name: "Tauric",
  22834. height: math.unit(4, "meters")
  22835. },
  22836. ]
  22837. ))
  22838. characterMakers.push(() => makeCharacter(
  22839. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22840. {
  22841. front: {
  22842. height: math.unit(293, "meters"),
  22843. weight: math.unit(70400, "tons"),
  22844. name: "Front",
  22845. image: {
  22846. source: "./media/characters/violette/front.svg",
  22847. extra: 1227 / 1180,
  22848. bottom: 0.005
  22849. }
  22850. },
  22851. back: {
  22852. height: math.unit(293, "meters"),
  22853. weight: math.unit(70400, "tons"),
  22854. name: "Back",
  22855. image: {
  22856. source: "./media/characters/violette/back.svg",
  22857. extra: 1227 / 1180,
  22858. bottom: 0.005
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Macro",
  22865. height: math.unit(293, "meters"),
  22866. default: true
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22872. {
  22873. front: {
  22874. height: math.unit(1050, "feet"),
  22875. weight: math.unit(200000, "tons"),
  22876. name: "Front",
  22877. image: {
  22878. source: "./media/characters/alessandra/front.svg",
  22879. extra: 960 / 912,
  22880. bottom: 0.06
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Macro",
  22887. height: math.unit(1050, "feet")
  22888. },
  22889. {
  22890. name: "Macro+",
  22891. height: math.unit(900, "meters"),
  22892. default: true
  22893. },
  22894. ]
  22895. ))
  22896. characterMakers.push(() => makeCharacter(
  22897. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22898. {
  22899. front: {
  22900. height: math.unit(5, "feet"),
  22901. weight: math.unit(187, "lb"),
  22902. name: "Front",
  22903. image: {
  22904. source: "./media/characters/person/front.svg",
  22905. extra: 3087 / 2945,
  22906. bottom: 91 / 3181
  22907. }
  22908. },
  22909. },
  22910. [
  22911. {
  22912. name: "Micro",
  22913. height: math.unit(3, "inches")
  22914. },
  22915. {
  22916. name: "Normal",
  22917. height: math.unit(5, "feet"),
  22918. default: true
  22919. },
  22920. {
  22921. name: "Macro",
  22922. height: math.unit(90, "feet")
  22923. },
  22924. {
  22925. name: "Max Size",
  22926. height: math.unit(280, "feet")
  22927. },
  22928. ]
  22929. ))
  22930. characterMakers.push(() => makeCharacter(
  22931. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22932. {
  22933. front: {
  22934. height: math.unit(4.5, "meters"),
  22935. weight: math.unit(3200, "lb"),
  22936. name: "Front",
  22937. image: {
  22938. source: "./media/characters/ty/front.svg",
  22939. extra: 1038 / 960,
  22940. bottom: 31.156 / 1068
  22941. }
  22942. },
  22943. back: {
  22944. height: math.unit(4.5, "meters"),
  22945. weight: math.unit(3200, "lb"),
  22946. name: "Back",
  22947. image: {
  22948. source: "./media/characters/ty/back.svg",
  22949. extra: 1044 / 966,
  22950. bottom: 7.48 / 1049
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Normal",
  22957. height: math.unit(4.5, "meters"),
  22958. default: true
  22959. },
  22960. ]
  22961. ))
  22962. characterMakers.push(() => makeCharacter(
  22963. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22964. {
  22965. front: {
  22966. height: math.unit(5 + 4 / 12, "feet"),
  22967. weight: math.unit(115, "lb"),
  22968. name: "Front",
  22969. image: {
  22970. source: "./media/characters/rocky/front.svg",
  22971. extra: 1012 / 975,
  22972. bottom: 54 / 1066
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Normal",
  22979. height: math.unit(5 + 4 / 12, "feet"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22986. {
  22987. upright: {
  22988. height: math.unit(6, "meters"),
  22989. weight: math.unit(4000, "kg"),
  22990. name: "Upright",
  22991. image: {
  22992. source: "./media/characters/ruin/upright.svg",
  22993. extra: 668 / 661,
  22994. bottom: 42 / 799.8396
  22995. }
  22996. },
  22997. },
  22998. [
  22999. {
  23000. name: "Normal",
  23001. height: math.unit(6, "meters"),
  23002. default: true
  23003. },
  23004. ]
  23005. ))
  23006. characterMakers.push(() => makeCharacter(
  23007. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23008. {
  23009. front: {
  23010. height: math.unit(5, "feet"),
  23011. weight: math.unit(106, "lb"),
  23012. name: "Front",
  23013. image: {
  23014. source: "./media/characters/robin/front.svg",
  23015. extra: 862 / 799,
  23016. bottom: 42.4 / 914.8856
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Normal",
  23023. height: math.unit(5, "feet"),
  23024. default: true
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23030. {
  23031. side: {
  23032. height: math.unit(3, "feet"),
  23033. weight: math.unit(225, "lb"),
  23034. name: "Side",
  23035. image: {
  23036. source: "./media/characters/saian/side.svg",
  23037. extra: 566 / 356,
  23038. bottom: 79.7 / 643
  23039. }
  23040. },
  23041. maw: {
  23042. height: math.unit(2.85, "feet"),
  23043. name: "Maw",
  23044. image: {
  23045. source: "./media/characters/saian/maw.svg"
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Normal",
  23052. height: math.unit(3, "feet"),
  23053. default: true
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23059. {
  23060. side: {
  23061. height: math.unit(8, "feet"),
  23062. weight: math.unit(300, "lb"),
  23063. name: "Side",
  23064. image: {
  23065. source: "./media/characters/equus-silvermane/side.svg",
  23066. extra: 2176 / 2050,
  23067. bottom: 65.7 / 2245
  23068. }
  23069. },
  23070. front: {
  23071. height: math.unit(8, "feet"),
  23072. weight: math.unit(300, "lb"),
  23073. name: "Front",
  23074. image: {
  23075. source: "./media/characters/equus-silvermane/front.svg",
  23076. extra: 4633 / 4400,
  23077. bottom: 71.3 / 4706.915
  23078. }
  23079. },
  23080. sideStepping: {
  23081. height: math.unit(8, "feet"),
  23082. weight: math.unit(300, "lb"),
  23083. name: "Side (Stepping)",
  23084. image: {
  23085. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23086. extra: 1968 / 1860,
  23087. bottom: 16.4 / 1989
  23088. }
  23089. },
  23090. },
  23091. [
  23092. {
  23093. name: "Normal",
  23094. height: math.unit(8, "feet")
  23095. },
  23096. {
  23097. name: "Minimacro",
  23098. height: math.unit(75, "feet"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Macro",
  23103. height: math.unit(150, "feet")
  23104. },
  23105. {
  23106. name: "Macro+",
  23107. height: math.unit(1000, "feet")
  23108. },
  23109. {
  23110. name: "Megamacro",
  23111. height: math.unit(1, "mile")
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23117. {
  23118. side: {
  23119. height: math.unit(20, "feet"),
  23120. weight: math.unit(30000, "kg"),
  23121. name: "Side",
  23122. image: {
  23123. source: "./media/characters/windar/side.svg",
  23124. extra: 1491 / 1248,
  23125. bottom: 82.56 / 1568
  23126. }
  23127. },
  23128. },
  23129. [
  23130. {
  23131. name: "Normal",
  23132. height: math.unit(20, "feet"),
  23133. default: true
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23139. {
  23140. side: {
  23141. height: math.unit(15.66, "feet"),
  23142. weight: math.unit(150, "lb"),
  23143. name: "Side",
  23144. image: {
  23145. source: "./media/characters/melody/side.svg",
  23146. extra: 1097 / 944,
  23147. bottom: 11.8 / 1109
  23148. }
  23149. },
  23150. sideOutfit: {
  23151. height: math.unit(15.66, "feet"),
  23152. weight: math.unit(150, "lb"),
  23153. name: "Side (Outfit)",
  23154. image: {
  23155. source: "./media/characters/melody/side-outfit.svg",
  23156. extra: 1097 / 944,
  23157. bottom: 11.8 / 1109
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Normal",
  23164. height: math.unit(15.66, "feet"),
  23165. default: true
  23166. },
  23167. ]
  23168. ))
  23169. characterMakers.push(() => makeCharacter(
  23170. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23171. {
  23172. armoredFront: {
  23173. height: math.unit(8, "feet"),
  23174. weight: math.unit(325, "lb"),
  23175. name: "Front",
  23176. image: {
  23177. source: "./media/characters/windera/armored-front.svg",
  23178. extra: 1830/1598,
  23179. bottom: 151/1981
  23180. },
  23181. form: "armored",
  23182. default: true
  23183. },
  23184. macroFront: {
  23185. height: math.unit(70, "feet"),
  23186. weight: math.unit(315453, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/windera/macro-front.svg",
  23190. extra: 963/883,
  23191. bottom: 23/986
  23192. },
  23193. form: "macro",
  23194. default: true
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(8, "feet"),
  23201. default: true,
  23202. form: "armored"
  23203. },
  23204. {
  23205. name: "Normal",
  23206. height: math.unit(70, "feet"),
  23207. default: true,
  23208. form: "macro"
  23209. },
  23210. ],
  23211. {
  23212. "armored": {
  23213. name: "Armored",
  23214. default: true
  23215. },
  23216. "macro": {
  23217. name: "Macro",
  23218. },
  23219. }
  23220. ))
  23221. characterMakers.push(() => makeCharacter(
  23222. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23223. {
  23224. front: {
  23225. height: math.unit(28.75, "feet"),
  23226. weight: math.unit(2000, "kg"),
  23227. name: "Front",
  23228. image: {
  23229. source: "./media/characters/sonear/front.svg",
  23230. extra: 1041.1 / 964.9,
  23231. bottom: 53.7 / 1096.6
  23232. }
  23233. },
  23234. },
  23235. [
  23236. {
  23237. name: "Normal",
  23238. height: math.unit(28.75, "feet"),
  23239. default: true
  23240. },
  23241. ]
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23245. {
  23246. side: {
  23247. height: math.unit(25.5, "feet"),
  23248. weight: math.unit(23000, "kg"),
  23249. name: "Side",
  23250. image: {
  23251. source: "./media/characters/kanara/side.svg"
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Normal",
  23258. height: math.unit(25.5, "feet"),
  23259. default: true
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23265. {
  23266. side: {
  23267. height: math.unit(10, "feet"),
  23268. weight: math.unit(1000, "kg"),
  23269. name: "Side",
  23270. image: {
  23271. source: "./media/characters/ereus/side.svg",
  23272. extra: 1157 / 959,
  23273. bottom: 153 / 1312.5
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Normal",
  23280. height: math.unit(10, "feet"),
  23281. default: true
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23287. {
  23288. side: {
  23289. height: math.unit(4.5, "feet"),
  23290. weight: math.unit(500, "lb"),
  23291. name: "Side",
  23292. image: {
  23293. source: "./media/characters/e-ter/side.svg",
  23294. extra: 1550 / 1248,
  23295. bottom: 146 / 1694
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Normal",
  23302. height: math.unit(4.5, "feet"),
  23303. default: true
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23309. {
  23310. side: {
  23311. height: math.unit(9.7, "feet"),
  23312. weight: math.unit(4000, "kg"),
  23313. name: "Side",
  23314. image: {
  23315. source: "./media/characters/yamie/side.svg"
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(9.7, "feet"),
  23323. default: true
  23324. },
  23325. ]
  23326. ))
  23327. characterMakers.push(() => makeCharacter(
  23328. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23329. {
  23330. front: {
  23331. height: math.unit(50, "feet"),
  23332. weight: math.unit(50000, "kg"),
  23333. name: "Front",
  23334. image: {
  23335. source: "./media/characters/anders/front.svg",
  23336. extra: 570 / 539,
  23337. bottom: 14.7 / 586.7
  23338. }
  23339. },
  23340. },
  23341. [
  23342. {
  23343. name: "Large",
  23344. height: math.unit(50, "feet")
  23345. },
  23346. {
  23347. name: "Macro",
  23348. height: math.unit(2000, "feet"),
  23349. default: true
  23350. },
  23351. {
  23352. name: "Megamacro",
  23353. height: math.unit(12, "miles")
  23354. },
  23355. ]
  23356. ))
  23357. characterMakers.push(() => makeCharacter(
  23358. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23359. {
  23360. front: {
  23361. height: math.unit(7 + 2 / 12, "feet"),
  23362. weight: math.unit(300, "lb"),
  23363. name: "Front",
  23364. image: {
  23365. source: "./media/characters/reban/front.svg",
  23366. extra: 1287/1212,
  23367. bottom: 148/1435
  23368. }
  23369. },
  23370. head: {
  23371. height: math.unit(1.95, "feet"),
  23372. name: "Head",
  23373. image: {
  23374. source: "./media/characters/reban/head.svg"
  23375. }
  23376. },
  23377. maw: {
  23378. height: math.unit(0.95, "feet"),
  23379. name: "Maw",
  23380. image: {
  23381. source: "./media/characters/reban/maw.svg"
  23382. }
  23383. },
  23384. foot: {
  23385. height: math.unit(1.65, "feet"),
  23386. name: "Foot",
  23387. image: {
  23388. source: "./media/characters/reban/foot.svg"
  23389. }
  23390. },
  23391. dick: {
  23392. height: math.unit(7 / 5, "feet"),
  23393. name: "Dick",
  23394. image: {
  23395. source: "./media/characters/reban/dick.svg"
  23396. }
  23397. },
  23398. },
  23399. [
  23400. {
  23401. name: "Natural Height",
  23402. height: math.unit(7 + 2 / 12, "feet")
  23403. },
  23404. {
  23405. name: "Macro",
  23406. height: math.unit(500, "feet"),
  23407. default: true
  23408. },
  23409. {
  23410. name: "Canon Height",
  23411. height: math.unit(50, "AU")
  23412. },
  23413. ]
  23414. ))
  23415. characterMakers.push(() => makeCharacter(
  23416. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23417. {
  23418. front: {
  23419. height: math.unit(6, "feet"),
  23420. weight: math.unit(150, "lb"),
  23421. name: "Front",
  23422. image: {
  23423. source: "./media/characters/terrance-keayes/front.svg",
  23424. extra: 1.005,
  23425. bottom: 151 / 1615
  23426. }
  23427. },
  23428. side: {
  23429. height: math.unit(6, "feet"),
  23430. weight: math.unit(150, "lb"),
  23431. name: "Side",
  23432. image: {
  23433. source: "./media/characters/terrance-keayes/side.svg",
  23434. extra: 1.005,
  23435. bottom: 129.4 / 1544
  23436. }
  23437. },
  23438. back: {
  23439. height: math.unit(6, "feet"),
  23440. weight: math.unit(150, "lb"),
  23441. name: "Back",
  23442. image: {
  23443. source: "./media/characters/terrance-keayes/back.svg",
  23444. extra: 1.005,
  23445. bottom: 58.4 / 1557.3
  23446. }
  23447. },
  23448. dick: {
  23449. height: math.unit(6 * 0.208, "feet"),
  23450. name: "Dick",
  23451. image: {
  23452. source: "./media/characters/terrance-keayes/dick.svg"
  23453. }
  23454. },
  23455. },
  23456. [
  23457. {
  23458. name: "Canon Height",
  23459. height: math.unit(35, "miles"),
  23460. default: true
  23461. },
  23462. ]
  23463. ))
  23464. characterMakers.push(() => makeCharacter(
  23465. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23466. {
  23467. front: {
  23468. height: math.unit(6, "feet"),
  23469. weight: math.unit(150, "lb"),
  23470. name: "Front",
  23471. image: {
  23472. source: "./media/characters/ofelia/front.svg",
  23473. extra: 1130/1117,
  23474. bottom: 91/1221
  23475. }
  23476. },
  23477. back: {
  23478. height: math.unit(6, "feet"),
  23479. weight: math.unit(150, "lb"),
  23480. name: "Back",
  23481. image: {
  23482. source: "./media/characters/ofelia/back.svg",
  23483. extra: 1172/1159,
  23484. bottom: 28/1200
  23485. }
  23486. },
  23487. maw: {
  23488. height: math.unit(1, "feet"),
  23489. name: "Maw",
  23490. image: {
  23491. source: "./media/characters/ofelia/maw.svg"
  23492. }
  23493. },
  23494. foot: {
  23495. height: math.unit(1.949, "feet"),
  23496. name: "Foot",
  23497. image: {
  23498. source: "./media/characters/ofelia/foot.svg"
  23499. }
  23500. },
  23501. },
  23502. [
  23503. {
  23504. name: "Canon Height",
  23505. height: math.unit(2000, "miles"),
  23506. default: true
  23507. },
  23508. ]
  23509. ))
  23510. characterMakers.push(() => makeCharacter(
  23511. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23512. {
  23513. front: {
  23514. height: math.unit(6, "feet"),
  23515. weight: math.unit(150, "lb"),
  23516. name: "Front",
  23517. image: {
  23518. source: "./media/characters/samuel/front.svg",
  23519. extra: 265 / 258,
  23520. bottom: 2 / 266.1566
  23521. }
  23522. },
  23523. },
  23524. [
  23525. {
  23526. name: "Macro",
  23527. height: math.unit(100, "feet"),
  23528. default: true
  23529. },
  23530. {
  23531. name: "Full Size",
  23532. height: math.unit(1000, "miles")
  23533. },
  23534. ]
  23535. ))
  23536. characterMakers.push(() => makeCharacter(
  23537. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23538. {
  23539. front: {
  23540. height: math.unit(6, "feet"),
  23541. weight: math.unit(300, "lb"),
  23542. name: "Front",
  23543. image: {
  23544. source: "./media/characters/beishir-kiel/front.svg",
  23545. extra: 569 / 547,
  23546. bottom: 41.9 / 609
  23547. }
  23548. },
  23549. maw: {
  23550. height: math.unit(6 * 0.202, "feet"),
  23551. name: "Maw",
  23552. image: {
  23553. source: "./media/characters/beishir-kiel/maw.svg"
  23554. }
  23555. },
  23556. },
  23557. [
  23558. {
  23559. name: "Macro",
  23560. height: math.unit(300, "feet"),
  23561. default: true
  23562. },
  23563. ]
  23564. ))
  23565. characterMakers.push(() => makeCharacter(
  23566. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23567. {
  23568. front: {
  23569. height: math.unit(5 + 7/12, "feet"),
  23570. weight: math.unit(120, "lb"),
  23571. name: "Front",
  23572. image: {
  23573. source: "./media/characters/logan-grey/front.svg",
  23574. extra: 1836/1738,
  23575. bottom: 108/1944
  23576. }
  23577. },
  23578. back: {
  23579. height: math.unit(5 + 7/12, "feet"),
  23580. weight: math.unit(120, "lb"),
  23581. name: "Back",
  23582. image: {
  23583. source: "./media/characters/logan-grey/back.svg",
  23584. extra: 1880/1794,
  23585. bottom: 24/1904
  23586. }
  23587. },
  23588. frontSfw: {
  23589. height: math.unit(5 + 7/12, "feet"),
  23590. weight: math.unit(120, "lb"),
  23591. name: "Front (SFW)",
  23592. image: {
  23593. source: "./media/characters/logan-grey/front-sfw.svg",
  23594. extra: 1836/1738,
  23595. bottom: 108/1944
  23596. }
  23597. },
  23598. backSfw: {
  23599. height: math.unit(5 + 7/12, "feet"),
  23600. weight: math.unit(120, "lb"),
  23601. name: "Back (SFW)",
  23602. image: {
  23603. source: "./media/characters/logan-grey/back-sfw.svg",
  23604. extra: 1880/1794,
  23605. bottom: 24/1904
  23606. }
  23607. },
  23608. hands: {
  23609. height: math.unit(0.84, "feet"),
  23610. name: "Hands",
  23611. image: {
  23612. source: "./media/characters/logan-grey/hands.svg"
  23613. }
  23614. },
  23615. paws: {
  23616. height: math.unit(0.72, "feet"),
  23617. name: "Paws",
  23618. image: {
  23619. source: "./media/characters/logan-grey/paws.svg"
  23620. }
  23621. },
  23622. cock: {
  23623. height: math.unit(1.45, "feet"),
  23624. name: "Cock",
  23625. image: {
  23626. source: "./media/characters/logan-grey/cock.svg"
  23627. }
  23628. },
  23629. cockAlt: {
  23630. height: math.unit(1.437, "feet"),
  23631. name: "Cock (alt)",
  23632. image: {
  23633. source: "./media/characters/logan-grey/cock-alt.svg"
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Normal",
  23640. height: math.unit(5 + 8 / 12, "feet")
  23641. },
  23642. {
  23643. name: "The 500 Foot Femboy",
  23644. height: math.unit(500, "feet"),
  23645. default: true
  23646. },
  23647. {
  23648. name: "Megmacro",
  23649. height: math.unit(20, "miles")
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(8 + 2 / 12, "feet"),
  23658. weight: math.unit(275, "lb"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/draganta/front.svg",
  23662. extra: 1177 / 1135,
  23663. bottom: 33.46 / 1212.1
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Normal",
  23670. height: math.unit(8 + 6 / 12, "feet"),
  23671. default: true
  23672. },
  23673. {
  23674. name: "Macro",
  23675. height: math.unit(150, "feet")
  23676. },
  23677. {
  23678. name: "Megamacro",
  23679. height: math.unit(1000, "miles")
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(1.72, "m"),
  23688. weight: math.unit(80, "lb"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/voski/front.svg",
  23692. extra: 2076.22 / 2022.4,
  23693. bottom: 102.7 / 2177.3866
  23694. }
  23695. },
  23696. frontFlaccid: {
  23697. height: math.unit(1.72, "m"),
  23698. weight: math.unit(80, "lb"),
  23699. name: "Front (Flaccid)",
  23700. image: {
  23701. source: "./media/characters/voski/front-flaccid.svg",
  23702. extra: 2076.22 / 2022.4,
  23703. bottom: 102.7 / 2177.3866
  23704. }
  23705. },
  23706. frontErect: {
  23707. height: math.unit(1.72, "m"),
  23708. weight: math.unit(80, "lb"),
  23709. name: "Front (Erect)",
  23710. image: {
  23711. source: "./media/characters/voski/front-erect.svg",
  23712. extra: 2076.22 / 2022.4,
  23713. bottom: 102.7 / 2177.3866
  23714. }
  23715. },
  23716. back: {
  23717. height: math.unit(1.72, "m"),
  23718. weight: math.unit(80, "lb"),
  23719. name: "Back",
  23720. image: {
  23721. source: "./media/characters/voski/back.svg",
  23722. extra: 2104 / 2051,
  23723. bottom: 10.45 / 2113.63
  23724. }
  23725. },
  23726. },
  23727. [
  23728. {
  23729. name: "Normal",
  23730. height: math.unit(1.72, "m")
  23731. },
  23732. {
  23733. name: "Macro",
  23734. height: math.unit(55, "m"),
  23735. default: true
  23736. },
  23737. {
  23738. name: "Macro+",
  23739. height: math.unit(300, "m")
  23740. },
  23741. {
  23742. name: "Macro++",
  23743. height: math.unit(700, "m")
  23744. },
  23745. {
  23746. name: "Macro+++",
  23747. height: math.unit(4500, "m")
  23748. },
  23749. {
  23750. name: "Macro++++",
  23751. height: math.unit(45, "km")
  23752. },
  23753. {
  23754. name: "Macro+++++",
  23755. height: math.unit(1220, "km")
  23756. },
  23757. ]
  23758. ))
  23759. characterMakers.push(() => makeCharacter(
  23760. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23761. {
  23762. front: {
  23763. height: math.unit(2.3, "m"),
  23764. weight: math.unit(304, "kg"),
  23765. name: "Front",
  23766. image: {
  23767. source: "./media/characters/icowom-lee/front.svg",
  23768. extra: 985 / 955,
  23769. bottom: 25.4 / 1012
  23770. }
  23771. },
  23772. fronttentacles: {
  23773. height: math.unit(2.3, "m"),
  23774. weight: math.unit(304, "kg"),
  23775. name: "Front-tentacles",
  23776. image: {
  23777. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23778. extra: 985 / 955,
  23779. bottom: 25.4 / 1012
  23780. }
  23781. },
  23782. back: {
  23783. height: math.unit(2.3, "m"),
  23784. weight: math.unit(304, "kg"),
  23785. name: "Back",
  23786. image: {
  23787. source: "./media/characters/icowom-lee/back.svg",
  23788. extra: 975 / 954,
  23789. bottom: 9.5 / 985
  23790. }
  23791. },
  23792. backtentacles: {
  23793. height: math.unit(2.3, "m"),
  23794. weight: math.unit(304, "kg"),
  23795. name: "Back-tentacles",
  23796. image: {
  23797. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23798. extra: 975 / 954,
  23799. bottom: 9.5 / 985
  23800. }
  23801. },
  23802. frontDressed: {
  23803. height: math.unit(2.3, "m"),
  23804. weight: math.unit(304, "kg"),
  23805. name: "Front (Dressed)",
  23806. image: {
  23807. source: "./media/characters/icowom-lee/front-dressed.svg",
  23808. extra: 3076 / 2933,
  23809. bottom: 51.4 / 3125.1889
  23810. }
  23811. },
  23812. rump: {
  23813. height: math.unit(0.776, "meters"),
  23814. name: "Rump",
  23815. image: {
  23816. source: "./media/characters/icowom-lee/rump.svg"
  23817. }
  23818. },
  23819. genitals: {
  23820. height: math.unit(0.78, "meters"),
  23821. name: "Genitals",
  23822. image: {
  23823. source: "./media/characters/icowom-lee/genitals.svg"
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Normal",
  23830. height: math.unit(2.3, "meters"),
  23831. default: true
  23832. },
  23833. {
  23834. name: "Macro",
  23835. height: math.unit(94, "meters"),
  23836. default: true
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23842. {
  23843. front: {
  23844. height: math.unit(22, "meters"),
  23845. weight: math.unit(21000, "kg"),
  23846. name: "Front",
  23847. image: {
  23848. source: "./media/characters/shock-diamond/front.svg",
  23849. extra: 2204 / 2053,
  23850. bottom: 65 / 2239.47
  23851. }
  23852. },
  23853. frontNude: {
  23854. height: math.unit(22, "meters"),
  23855. weight: math.unit(21000, "kg"),
  23856. name: "Front (Nude)",
  23857. image: {
  23858. source: "./media/characters/shock-diamond/front-nude.svg",
  23859. extra: 2514 / 2285,
  23860. bottom: 13 / 2527.56
  23861. }
  23862. },
  23863. },
  23864. [
  23865. {
  23866. name: "Normal",
  23867. height: math.unit(3, "meters")
  23868. },
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(22, "meters"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23878. {
  23879. front: {
  23880. height: math.unit(5 + 4 / 12, "feet"),
  23881. weight: math.unit(120, "lb"),
  23882. name: "Front",
  23883. image: {
  23884. source: "./media/characters/rory/front.svg",
  23885. extra: 1318/1241,
  23886. bottom: 42/1360
  23887. }
  23888. },
  23889. back: {
  23890. height: math.unit(5 + 4 / 12, "feet"),
  23891. weight: math.unit(120, "lb"),
  23892. name: "Back",
  23893. image: {
  23894. source: "./media/characters/rory/back.svg",
  23895. extra: 1318/1241,
  23896. bottom: 42/1360
  23897. }
  23898. },
  23899. butt: {
  23900. height: math.unit(1.74, "feet"),
  23901. name: "Butt",
  23902. image: {
  23903. source: "./media/characters/rory/butt.svg"
  23904. }
  23905. },
  23906. dick: {
  23907. height: math.unit(1.02, "feet"),
  23908. name: "Dick",
  23909. image: {
  23910. source: "./media/characters/rory/dick.svg"
  23911. }
  23912. },
  23913. paws: {
  23914. height: math.unit(1, "feet"),
  23915. name: "Paws",
  23916. image: {
  23917. source: "./media/characters/rory/paws.svg"
  23918. }
  23919. },
  23920. frontAlt: {
  23921. height: math.unit(5 + 4 / 12, "feet"),
  23922. weight: math.unit(120, "lb"),
  23923. name: "Front (Alt)",
  23924. image: {
  23925. source: "./media/characters/rory/front-alt.svg",
  23926. extra: 589 / 556,
  23927. bottom: 45.7 / 635.76
  23928. }
  23929. },
  23930. frontAltNude: {
  23931. height: math.unit(5 + 4 / 12, "feet"),
  23932. weight: math.unit(120, "lb"),
  23933. name: "Front (Alt, Nude)",
  23934. image: {
  23935. source: "./media/characters/rory/front-alt-nude.svg",
  23936. extra: 589 / 556,
  23937. bottom: 45.7 / 635.76
  23938. }
  23939. },
  23940. side: {
  23941. height: math.unit(5 + 4 / 12, "feet"),
  23942. weight: math.unit(120, "lb"),
  23943. name: "Side",
  23944. image: {
  23945. source: "./media/characters/rory/side.svg",
  23946. extra: 597 / 564,
  23947. bottom: 55 / 653
  23948. }
  23949. },
  23950. backAlt: {
  23951. height: math.unit(5 + 4 / 12, "feet"),
  23952. weight: math.unit(120, "lb"),
  23953. name: "Back (Alt)",
  23954. image: {
  23955. source: "./media/characters/rory/back-alt.svg",
  23956. extra: 620 / 585,
  23957. bottom: 8.86 / 630.43
  23958. }
  23959. },
  23960. dickAlt: {
  23961. height: math.unit(0.86, "feet"),
  23962. name: "Dick (Alt)",
  23963. image: {
  23964. source: "./media/characters/rory/dick-alt.svg"
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Normal",
  23971. height: math.unit(5 + 4 / 12, "feet"),
  23972. default: true
  23973. },
  23974. {
  23975. name: "Macro",
  23976. height: math.unit(100, "feet")
  23977. },
  23978. {
  23979. name: "Macro+",
  23980. height: math.unit(140, "feet")
  23981. },
  23982. {
  23983. name: "Macro++",
  23984. height: math.unit(300, "feet")
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(5 + 9 / 12, "feet"),
  23993. weight: math.unit(190, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/sprisk/front.svg",
  23997. extra: 1225 / 1180,
  23998. bottom: 42.7 / 1266.4
  23999. }
  24000. },
  24001. frontNsfw: {
  24002. height: math.unit(5 + 9 / 12, "feet"),
  24003. weight: math.unit(190, "lb"),
  24004. name: "Front (NSFW)",
  24005. image: {
  24006. source: "./media/characters/sprisk/front-nsfw.svg",
  24007. extra: 1225 / 1180,
  24008. bottom: 42.7 / 1266.4
  24009. }
  24010. },
  24011. back: {
  24012. height: math.unit(5 + 9 / 12, "feet"),
  24013. weight: math.unit(190, "lb"),
  24014. name: "Back",
  24015. image: {
  24016. source: "./media/characters/sprisk/back.svg",
  24017. extra: 1247 / 1200,
  24018. bottom: 5.6 / 1253.04
  24019. }
  24020. },
  24021. },
  24022. [
  24023. {
  24024. name: "Tiny",
  24025. height: math.unit(2, "inches")
  24026. },
  24027. {
  24028. name: "Normal",
  24029. height: math.unit(5 + 9 / 12, "feet"),
  24030. default: true
  24031. },
  24032. {
  24033. name: "Mini Macro",
  24034. height: math.unit(18, "feet")
  24035. },
  24036. {
  24037. name: "Macro",
  24038. height: math.unit(100, "feet")
  24039. },
  24040. {
  24041. name: "MACRO",
  24042. height: math.unit(50, "miles")
  24043. },
  24044. {
  24045. name: "M A C R O",
  24046. height: math.unit(300, "miles")
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24052. {
  24053. side: {
  24054. height: math.unit(15.6, "meters"),
  24055. weight: math.unit(700000, "kg"),
  24056. name: "Side",
  24057. image: {
  24058. source: "./media/characters/bunsen/side.svg",
  24059. extra: 1644 / 358
  24060. }
  24061. },
  24062. foot: {
  24063. height: math.unit(1.611 * 1644 / 358, "meter"),
  24064. name: "Foot",
  24065. image: {
  24066. source: "./media/characters/bunsen/foot.svg"
  24067. }
  24068. },
  24069. },
  24070. [
  24071. {
  24072. name: "Small",
  24073. height: math.unit(10, "feet")
  24074. },
  24075. {
  24076. name: "Normal",
  24077. height: math.unit(15.6, "meters"),
  24078. default: true
  24079. },
  24080. ]
  24081. ))
  24082. characterMakers.push(() => makeCharacter(
  24083. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24084. {
  24085. front: {
  24086. height: math.unit(4 + 11 / 12, "feet"),
  24087. weight: math.unit(140, "lb"),
  24088. name: "Front",
  24089. image: {
  24090. source: "./media/characters/sesh/front.svg",
  24091. extra: 3420 / 3231,
  24092. bottom: 72 / 3949.5
  24093. }
  24094. },
  24095. },
  24096. [
  24097. {
  24098. name: "Normal",
  24099. height: math.unit(4 + 11 / 12, "feet")
  24100. },
  24101. {
  24102. name: "Grown",
  24103. height: math.unit(15, "feet"),
  24104. default: true
  24105. },
  24106. {
  24107. name: "Macro",
  24108. height: math.unit(1500, "feet")
  24109. },
  24110. {
  24111. name: "Megamacro",
  24112. height: math.unit(30, "miles")
  24113. },
  24114. {
  24115. name: "Continental",
  24116. height: math.unit(3000, "miles")
  24117. },
  24118. {
  24119. name: "Gravity Mass",
  24120. height: math.unit(300000, "miles")
  24121. },
  24122. {
  24123. name: "Planet Buster",
  24124. height: math.unit(30000000, "miles")
  24125. },
  24126. {
  24127. name: "Big",
  24128. height: math.unit(3000000000, "miles")
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24134. {
  24135. front: {
  24136. height: math.unit(9, "feet"),
  24137. weight: math.unit(350, "lb"),
  24138. name: "Front",
  24139. image: {
  24140. source: "./media/characters/pepper/front.svg",
  24141. extra: 1448 / 1312,
  24142. bottom: 9.4 / 1457.88
  24143. }
  24144. },
  24145. back: {
  24146. height: math.unit(9, "feet"),
  24147. weight: math.unit(350, "lb"),
  24148. name: "Back",
  24149. image: {
  24150. source: "./media/characters/pepper/back.svg",
  24151. extra: 1423 / 1300,
  24152. bottom: 4.6 / 1429
  24153. }
  24154. },
  24155. maw: {
  24156. height: math.unit(0.932, "feet"),
  24157. name: "Maw",
  24158. image: {
  24159. source: "./media/characters/pepper/maw.svg"
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Normal",
  24166. height: math.unit(9, "feet"),
  24167. default: true
  24168. },
  24169. ]
  24170. ))
  24171. characterMakers.push(() => makeCharacter(
  24172. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24173. {
  24174. front: {
  24175. height: math.unit(6, "feet"),
  24176. weight: math.unit(150, "lb"),
  24177. name: "Front",
  24178. image: {
  24179. source: "./media/characters/maelstrom/front.svg",
  24180. extra: 2100 / 1883,
  24181. bottom: 94 / 2196.7
  24182. }
  24183. },
  24184. },
  24185. [
  24186. {
  24187. name: "Less Kaiju",
  24188. height: math.unit(200, "feet")
  24189. },
  24190. {
  24191. name: "Kaiju",
  24192. height: math.unit(400, "feet"),
  24193. default: true
  24194. },
  24195. {
  24196. name: "Kaiju-er",
  24197. height: math.unit(600, "feet")
  24198. },
  24199. ]
  24200. ))
  24201. characterMakers.push(() => makeCharacter(
  24202. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24203. {
  24204. front: {
  24205. height: math.unit(6 + 5 / 12, "feet"),
  24206. weight: math.unit(180, "lb"),
  24207. name: "Front",
  24208. image: {
  24209. source: "./media/characters/lexir/front.svg",
  24210. extra: 180 / 172,
  24211. bottom: 12 / 192
  24212. }
  24213. },
  24214. back: {
  24215. height: math.unit(6 + 5 / 12, "feet"),
  24216. weight: math.unit(180, "lb"),
  24217. name: "Back",
  24218. image: {
  24219. source: "./media/characters/lexir/back.svg",
  24220. extra: 1273/1201,
  24221. bottom: 39/1312
  24222. }
  24223. },
  24224. },
  24225. [
  24226. {
  24227. name: "Very Smal",
  24228. height: math.unit(1, "nm")
  24229. },
  24230. {
  24231. name: "Normal",
  24232. height: math.unit(6 + 5 / 12, "feet"),
  24233. default: true
  24234. },
  24235. {
  24236. name: "Macro",
  24237. height: math.unit(1, "mile")
  24238. },
  24239. {
  24240. name: "Megamacro",
  24241. height: math.unit(50, "miles")
  24242. },
  24243. ]
  24244. ))
  24245. characterMakers.push(() => makeCharacter(
  24246. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24247. {
  24248. front: {
  24249. height: math.unit(1.5, "meters"),
  24250. weight: math.unit(100, "lb"),
  24251. name: "Front",
  24252. image: {
  24253. source: "./media/characters/maksio/front.svg",
  24254. extra: 1549 / 1531,
  24255. bottom: 123.7 / 1674.5429
  24256. }
  24257. },
  24258. back: {
  24259. height: math.unit(1.5, "meters"),
  24260. weight: math.unit(100, "lb"),
  24261. name: "Back",
  24262. image: {
  24263. source: "./media/characters/maksio/back.svg",
  24264. extra: 1541 / 1509,
  24265. bottom: 97 / 1639
  24266. }
  24267. },
  24268. hand: {
  24269. height: math.unit(0.621, "feet"),
  24270. name: "Hand",
  24271. image: {
  24272. source: "./media/characters/maksio/hand.svg"
  24273. }
  24274. },
  24275. foot: {
  24276. height: math.unit(1.611, "feet"),
  24277. name: "Foot",
  24278. image: {
  24279. source: "./media/characters/maksio/foot.svg"
  24280. }
  24281. },
  24282. },
  24283. [
  24284. {
  24285. name: "Shrunken",
  24286. height: math.unit(10, "cm")
  24287. },
  24288. {
  24289. name: "Normal",
  24290. height: math.unit(150, "cm"),
  24291. default: true
  24292. },
  24293. ]
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24297. {
  24298. front: {
  24299. height: math.unit(100, "feet"),
  24300. name: "Front",
  24301. image: {
  24302. source: "./media/characters/erza-bear/front.svg",
  24303. extra: 2449 / 2390,
  24304. bottom: 46 / 2494
  24305. }
  24306. },
  24307. back: {
  24308. height: math.unit(100, "feet"),
  24309. name: "Back",
  24310. image: {
  24311. source: "./media/characters/erza-bear/back.svg",
  24312. extra: 2489 / 2430,
  24313. bottom: 85.4 / 2480
  24314. }
  24315. },
  24316. tail: {
  24317. height: math.unit(42, "feet"),
  24318. name: "Tail",
  24319. image: {
  24320. source: "./media/characters/erza-bear/tail.svg"
  24321. }
  24322. },
  24323. tongue: {
  24324. height: math.unit(8, "feet"),
  24325. name: "Tongue",
  24326. image: {
  24327. source: "./media/characters/erza-bear/tongue.svg"
  24328. }
  24329. },
  24330. dick: {
  24331. height: math.unit(10.5, "feet"),
  24332. name: "Dick",
  24333. image: {
  24334. source: "./media/characters/erza-bear/dick.svg"
  24335. }
  24336. },
  24337. dickVertical: {
  24338. height: math.unit(16.9, "feet"),
  24339. name: "Dick (Vertical)",
  24340. image: {
  24341. source: "./media/characters/erza-bear/dick-vertical.svg"
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Macro",
  24348. height: math.unit(100, "feet"),
  24349. default: true
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(172, "cm"),
  24358. weight: math.unit(73, "kg"),
  24359. name: "Front",
  24360. image: {
  24361. source: "./media/characters/violet-flor/front.svg",
  24362. extra: 1530 / 1442,
  24363. bottom: 61.9 / 1588.8
  24364. }
  24365. },
  24366. back: {
  24367. height: math.unit(180, "cm"),
  24368. weight: math.unit(73, "kg"),
  24369. name: "Back",
  24370. image: {
  24371. source: "./media/characters/violet-flor/back.svg",
  24372. extra: 1692 / 1630,
  24373. bottom: 20 / 1712
  24374. }
  24375. },
  24376. },
  24377. [
  24378. {
  24379. name: "Normal",
  24380. height: math.unit(172, "cm"),
  24381. default: true
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24387. {
  24388. front: {
  24389. height: math.unit(6, "feet"),
  24390. weight: math.unit(220, "lb"),
  24391. name: "Front",
  24392. image: {
  24393. source: "./media/characters/lynn-rhea/front.svg",
  24394. extra: 310 / 273
  24395. }
  24396. },
  24397. back: {
  24398. height: math.unit(6, "feet"),
  24399. weight: math.unit(220, "lb"),
  24400. name: "Back",
  24401. image: {
  24402. source: "./media/characters/lynn-rhea/back.svg",
  24403. extra: 310 / 273
  24404. }
  24405. },
  24406. dicks: {
  24407. height: math.unit(0.9, "feet"),
  24408. name: "Dicks",
  24409. image: {
  24410. source: "./media/characters/lynn-rhea/dicks.svg"
  24411. }
  24412. },
  24413. slit: {
  24414. height: math.unit(0.4, "feet"),
  24415. name: "Slit",
  24416. image: {
  24417. source: "./media/characters/lynn-rhea/slit.svg"
  24418. }
  24419. },
  24420. },
  24421. [
  24422. {
  24423. name: "Micro",
  24424. height: math.unit(1, "inch")
  24425. },
  24426. {
  24427. name: "Macro",
  24428. height: math.unit(60, "feet"),
  24429. default: true
  24430. },
  24431. {
  24432. name: "Megamacro",
  24433. height: math.unit(2, "miles")
  24434. },
  24435. {
  24436. name: "Gigamacro",
  24437. height: math.unit(3, "earths")
  24438. },
  24439. {
  24440. name: "Galactic",
  24441. height: math.unit(0.8, "galaxies")
  24442. },
  24443. ]
  24444. ))
  24445. characterMakers.push(() => makeCharacter(
  24446. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24447. {
  24448. front: {
  24449. height: math.unit(1600, "feet"),
  24450. weight: math.unit(85758785169, "kg"),
  24451. name: "Front",
  24452. image: {
  24453. source: "./media/characters/valathos/front.svg",
  24454. extra: 1451 / 1339
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Macro",
  24461. height: math.unit(1600, "feet"),
  24462. default: true
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(7 + 5 / 12, "feet"),
  24471. weight: math.unit(300, "lb"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/azula/front.svg",
  24475. extra: 3208 / 2880,
  24476. bottom: 80.2 / 3277
  24477. }
  24478. },
  24479. back: {
  24480. height: math.unit(7 + 5 / 12, "feet"),
  24481. weight: math.unit(300, "lb"),
  24482. name: "Back",
  24483. image: {
  24484. source: "./media/characters/azula/back.svg",
  24485. extra: 3169 / 2822,
  24486. bottom: 150.6 / 3321
  24487. }
  24488. },
  24489. },
  24490. [
  24491. {
  24492. name: "Normal",
  24493. height: math.unit(7 + 5 / 12, "feet"),
  24494. default: true
  24495. },
  24496. {
  24497. name: "Big",
  24498. height: math.unit(20, "feet")
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24504. {
  24505. front: {
  24506. height: math.unit(5 + 1 / 12, "feet"),
  24507. weight: math.unit(110, "lb"),
  24508. name: "Front",
  24509. image: {
  24510. source: "./media/characters/rupert/front.svg",
  24511. extra: 1549 / 1495,
  24512. bottom: 54.2 / 1604.4
  24513. }
  24514. },
  24515. },
  24516. [
  24517. {
  24518. name: "Normal",
  24519. height: math.unit(5 + 1 / 12, "feet"),
  24520. default: true
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24526. {
  24527. front: {
  24528. height: math.unit(8 + 4 / 12, "feet"),
  24529. weight: math.unit(350, "lb"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/sheera-castellar/front.svg",
  24533. extra: 1957 / 1894,
  24534. bottom: 26.97 / 1975.017
  24535. }
  24536. },
  24537. side: {
  24538. height: math.unit(8 + 4 / 12, "feet"),
  24539. weight: math.unit(350, "lb"),
  24540. name: "Side",
  24541. image: {
  24542. source: "./media/characters/sheera-castellar/side.svg",
  24543. extra: 1957 / 1894
  24544. }
  24545. },
  24546. back: {
  24547. height: math.unit(8 + 4 / 12, "feet"),
  24548. weight: math.unit(350, "lb"),
  24549. name: "Back",
  24550. image: {
  24551. source: "./media/characters/sheera-castellar/back.svg",
  24552. extra: 1957 / 1894
  24553. }
  24554. },
  24555. angled: {
  24556. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24557. weight: math.unit(350, "lb"),
  24558. name: "Angled",
  24559. image: {
  24560. source: "./media/characters/sheera-castellar/angled.svg",
  24561. extra: 1807 / 1707,
  24562. bottom: 68 / 1875
  24563. }
  24564. },
  24565. genitals: {
  24566. height: math.unit(2.2, "feet"),
  24567. name: "Genitals",
  24568. image: {
  24569. source: "./media/characters/sheera-castellar/genitals.svg"
  24570. }
  24571. },
  24572. taur: {
  24573. height: math.unit(10 + 6/12, "feet"),
  24574. name: "Taur",
  24575. image: {
  24576. source: "./media/characters/sheera-castellar/taur.svg",
  24577. extra: 2017/1909,
  24578. bottom: 185/2202
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(8 + 4 / 12, "feet")
  24586. },
  24587. {
  24588. name: "Macro",
  24589. height: math.unit(150, "feet"),
  24590. default: true
  24591. },
  24592. {
  24593. name: "Macro+",
  24594. height: math.unit(800, "feet")
  24595. },
  24596. ]
  24597. ))
  24598. characterMakers.push(() => makeCharacter(
  24599. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24600. {
  24601. front: {
  24602. height: math.unit(6, "feet"),
  24603. weight: math.unit(150, "lb"),
  24604. name: "Front",
  24605. image: {
  24606. source: "./media/characters/jaipur/front.svg",
  24607. extra: 3860 / 3731,
  24608. bottom: 287 / 4140
  24609. }
  24610. },
  24611. back: {
  24612. height: math.unit(6, "feet"),
  24613. weight: math.unit(150, "lb"),
  24614. name: "Back",
  24615. image: {
  24616. source: "./media/characters/jaipur/back.svg",
  24617. extra: 1637/1561,
  24618. bottom: 154/1791
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Normal",
  24625. height: math.unit(1.85, "meters"),
  24626. default: true
  24627. },
  24628. {
  24629. name: "Macro",
  24630. height: math.unit(150, "meters")
  24631. },
  24632. {
  24633. name: "Macro+",
  24634. height: math.unit(0.5, "miles")
  24635. },
  24636. {
  24637. name: "Macro++",
  24638. height: math.unit(2.5, "miles")
  24639. },
  24640. {
  24641. name: "Macro+++",
  24642. height: math.unit(12, "miles")
  24643. },
  24644. {
  24645. name: "Macro++++",
  24646. height: math.unit(120, "miles")
  24647. },
  24648. {
  24649. name: "Macro+++++",
  24650. height: math.unit(1200, "miles")
  24651. },
  24652. ]
  24653. ))
  24654. characterMakers.push(() => makeCharacter(
  24655. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24656. {
  24657. front: {
  24658. height: math.unit(6, "feet"),
  24659. weight: math.unit(150, "lb"),
  24660. name: "Front",
  24661. image: {
  24662. source: "./media/characters/sheila-wolf/front.svg",
  24663. extra: 1931 / 1808,
  24664. bottom: 29.5 / 1960
  24665. }
  24666. },
  24667. dick: {
  24668. height: math.unit(1.464, "feet"),
  24669. name: "Dick",
  24670. image: {
  24671. source: "./media/characters/sheila-wolf/dick.svg"
  24672. }
  24673. },
  24674. muzzle: {
  24675. height: math.unit(0.513, "feet"),
  24676. name: "Muzzle",
  24677. image: {
  24678. source: "./media/characters/sheila-wolf/muzzle.svg"
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Macro",
  24685. height: math.unit(70, "feet"),
  24686. default: true
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24692. {
  24693. front: {
  24694. height: math.unit(32, "meters"),
  24695. weight: math.unit(300000, "kg"),
  24696. name: "Front",
  24697. image: {
  24698. source: "./media/characters/almor/front.svg",
  24699. extra: 1408 / 1322,
  24700. bottom: 94.6 / 1506.5
  24701. }
  24702. },
  24703. },
  24704. [
  24705. {
  24706. name: "Macro",
  24707. height: math.unit(32, "meters"),
  24708. default: true
  24709. },
  24710. ]
  24711. ))
  24712. characterMakers.push(() => makeCharacter(
  24713. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24714. {
  24715. front: {
  24716. height: math.unit(7, "feet"),
  24717. weight: math.unit(200, "lb"),
  24718. name: "Front",
  24719. image: {
  24720. source: "./media/characters/silver/front.svg",
  24721. extra: 472.1 / 450.5,
  24722. bottom: 26.5 / 499.424
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Normal",
  24729. height: math.unit(7, "feet"),
  24730. default: true
  24731. },
  24732. {
  24733. name: "Macro",
  24734. height: math.unit(800, "feet")
  24735. },
  24736. {
  24737. name: "Megamacro",
  24738. height: math.unit(250, "miles")
  24739. },
  24740. ]
  24741. ))
  24742. characterMakers.push(() => makeCharacter(
  24743. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24744. {
  24745. front: {
  24746. height: math.unit(6, "feet"),
  24747. weight: math.unit(150, "lb"),
  24748. name: "Front",
  24749. image: {
  24750. source: "./media/characters/pliskin/front.svg",
  24751. extra: 1469 / 1359,
  24752. bottom: 70 / 1540
  24753. }
  24754. },
  24755. },
  24756. [
  24757. {
  24758. name: "Micro",
  24759. height: math.unit(3, "inches")
  24760. },
  24761. {
  24762. name: "Normal",
  24763. height: math.unit(5 + 11 / 12, "feet"),
  24764. default: true
  24765. },
  24766. {
  24767. name: "Macro",
  24768. height: math.unit(120, "feet")
  24769. },
  24770. ]
  24771. ))
  24772. characterMakers.push(() => makeCharacter(
  24773. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24774. {
  24775. front: {
  24776. height: math.unit(6, "feet"),
  24777. weight: math.unit(150, "lb"),
  24778. name: "Front",
  24779. image: {
  24780. source: "./media/characters/sammy/front.svg",
  24781. extra: 1193 / 1089,
  24782. bottom: 30.5 / 1226
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Macro",
  24789. height: math.unit(1700, "feet"),
  24790. default: true
  24791. },
  24792. {
  24793. name: "Examacro",
  24794. height: math.unit(2.5e9, "lightyears")
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(21, "meters"),
  24803. weight: math.unit(12, "tonnes"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/kuru/front.svg",
  24807. extra: 4301 / 3785,
  24808. bottom: 371.3 / 4691
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Macro",
  24815. height: math.unit(21, "meters"),
  24816. default: true
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24822. {
  24823. front: {
  24824. height: math.unit(23, "meters"),
  24825. weight: math.unit(12.2, "tonnes"),
  24826. name: "Front",
  24827. image: {
  24828. source: "./media/characters/rakka/front.svg",
  24829. extra: 4670 / 4169,
  24830. bottom: 301 / 4968.7
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Macro",
  24837. height: math.unit(23, "meters"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24844. {
  24845. front: {
  24846. height: math.unit(6, "feet"),
  24847. weight: math.unit(150, "lb"),
  24848. name: "Front",
  24849. image: {
  24850. source: "./media/characters/rhys-feline/front.svg",
  24851. extra: 2488 / 2308,
  24852. bottom: 35.67 / 2519.19
  24853. }
  24854. },
  24855. },
  24856. [
  24857. {
  24858. name: "Really Small",
  24859. height: math.unit(1, "nm")
  24860. },
  24861. {
  24862. name: "Micro",
  24863. height: math.unit(4, "inches")
  24864. },
  24865. {
  24866. name: "Normal",
  24867. height: math.unit(4 + 10 / 12, "feet"),
  24868. default: true
  24869. },
  24870. {
  24871. name: "Macro",
  24872. height: math.unit(100, "feet")
  24873. },
  24874. {
  24875. name: "Megamacto",
  24876. height: math.unit(50, "miles")
  24877. },
  24878. ]
  24879. ))
  24880. characterMakers.push(() => makeCharacter(
  24881. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24882. {
  24883. side: {
  24884. height: math.unit(30, "feet"),
  24885. weight: math.unit(35000, "kg"),
  24886. name: "Side",
  24887. image: {
  24888. source: "./media/characters/alydar/side.svg",
  24889. extra: 234 / 222,
  24890. bottom: 6.5 / 241
  24891. }
  24892. },
  24893. front: {
  24894. height: math.unit(30, "feet"),
  24895. weight: math.unit(35000, "kg"),
  24896. name: "Front",
  24897. image: {
  24898. source: "./media/characters/alydar/front.svg",
  24899. extra: 223.37 / 210.2,
  24900. bottom: 22.3 / 246.76
  24901. }
  24902. },
  24903. top: {
  24904. height: math.unit(64.54, "feet"),
  24905. weight: math.unit(35000, "kg"),
  24906. name: "Top",
  24907. image: {
  24908. source: "./media/characters/alydar/top.svg"
  24909. }
  24910. },
  24911. anthro: {
  24912. height: math.unit(30, "feet"),
  24913. weight: math.unit(9000, "kg"),
  24914. name: "Anthro",
  24915. image: {
  24916. source: "./media/characters/alydar/anthro.svg",
  24917. extra: 432 / 421,
  24918. bottom: 7.18 / 440
  24919. }
  24920. },
  24921. maw: {
  24922. height: math.unit(11.693, "feet"),
  24923. name: "Maw",
  24924. image: {
  24925. source: "./media/characters/alydar/maw.svg"
  24926. }
  24927. },
  24928. head: {
  24929. height: math.unit(11.693, "feet"),
  24930. name: "Head",
  24931. image: {
  24932. source: "./media/characters/alydar/head.svg"
  24933. }
  24934. },
  24935. headAlt: {
  24936. height: math.unit(12.861, "feet"),
  24937. name: "Head (Alt)",
  24938. image: {
  24939. source: "./media/characters/alydar/head-alt.svg"
  24940. }
  24941. },
  24942. wing: {
  24943. height: math.unit(20.712, "feet"),
  24944. name: "Wing",
  24945. image: {
  24946. source: "./media/characters/alydar/wing.svg"
  24947. }
  24948. },
  24949. wingFeather: {
  24950. height: math.unit(9.662, "feet"),
  24951. name: "Wing Feather",
  24952. image: {
  24953. source: "./media/characters/alydar/wing-feather.svg"
  24954. }
  24955. },
  24956. countourFeather: {
  24957. height: math.unit(4.154, "feet"),
  24958. name: "Contour Feather",
  24959. image: {
  24960. source: "./media/characters/alydar/contour-feather.svg"
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Diplomatic",
  24967. height: math.unit(13, "feet"),
  24968. default: true
  24969. },
  24970. {
  24971. name: "Small",
  24972. height: math.unit(30, "feet")
  24973. },
  24974. {
  24975. name: "Normal",
  24976. height: math.unit(95, "feet"),
  24977. default: true
  24978. },
  24979. {
  24980. name: "Large",
  24981. height: math.unit(285, "feet")
  24982. },
  24983. {
  24984. name: "Incomprehensible",
  24985. height: math.unit(450, "megameters")
  24986. },
  24987. ]
  24988. ))
  24989. characterMakers.push(() => makeCharacter(
  24990. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24991. {
  24992. side: {
  24993. height: math.unit(11, "feet"),
  24994. weight: math.unit(1750, "kg"),
  24995. name: "Side",
  24996. image: {
  24997. source: "./media/characters/selicia/side.svg",
  24998. extra: 440 / 396,
  24999. bottom: 24.8 / 465.979
  25000. }
  25001. },
  25002. maw: {
  25003. height: math.unit(4.665, "feet"),
  25004. name: "Maw",
  25005. image: {
  25006. source: "./media/characters/selicia/maw.svg"
  25007. }
  25008. },
  25009. },
  25010. [
  25011. {
  25012. name: "Normal",
  25013. height: math.unit(11, "feet"),
  25014. default: true
  25015. },
  25016. ]
  25017. ))
  25018. characterMakers.push(() => makeCharacter(
  25019. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25020. {
  25021. side: {
  25022. height: math.unit(2 + 6 / 12, "feet"),
  25023. weight: math.unit(30, "lb"),
  25024. name: "Side",
  25025. image: {
  25026. source: "./media/characters/layla/side.svg",
  25027. extra: 244 / 188,
  25028. bottom: 18.2 / 262.1
  25029. }
  25030. },
  25031. back: {
  25032. height: math.unit(2 + 6 / 12, "feet"),
  25033. weight: math.unit(30, "lb"),
  25034. name: "Back",
  25035. image: {
  25036. source: "./media/characters/layla/back.svg",
  25037. extra: 308 / 241.5,
  25038. bottom: 8.9 / 316.8
  25039. }
  25040. },
  25041. cumming: {
  25042. height: math.unit(2 + 6 / 12, "feet"),
  25043. weight: math.unit(30, "lb"),
  25044. name: "Cumming",
  25045. image: {
  25046. source: "./media/characters/layla/cumming.svg",
  25047. extra: 342 / 279,
  25048. bottom: 595 / 938
  25049. }
  25050. },
  25051. dickFlaccid: {
  25052. height: math.unit(2.595, "feet"),
  25053. name: "Flaccid Genitals",
  25054. image: {
  25055. source: "./media/characters/layla/dick-flaccid.svg"
  25056. }
  25057. },
  25058. dickErect: {
  25059. height: math.unit(2.359, "feet"),
  25060. name: "Erect Genitals",
  25061. image: {
  25062. source: "./media/characters/layla/dick-erect.svg"
  25063. }
  25064. },
  25065. dragon: {
  25066. height: math.unit(40, "feet"),
  25067. name: "Dragon",
  25068. image: {
  25069. source: "./media/characters/layla/dragon.svg",
  25070. extra: 610/535,
  25071. bottom: 367/977
  25072. }
  25073. },
  25074. taur: {
  25075. height: math.unit(30, "feet"),
  25076. name: "Taur",
  25077. image: {
  25078. source: "./media/characters/layla/taur.svg",
  25079. extra: 1268/1199,
  25080. bottom: 112/1380
  25081. }
  25082. },
  25083. },
  25084. [
  25085. {
  25086. name: "Micro",
  25087. height: math.unit(1, "inch")
  25088. },
  25089. {
  25090. name: "Small",
  25091. height: math.unit(1, "foot")
  25092. },
  25093. {
  25094. name: "Normal",
  25095. height: math.unit(2 + 6 / 12, "feet"),
  25096. default: true
  25097. },
  25098. {
  25099. name: "Macro",
  25100. height: math.unit(200, "feet")
  25101. },
  25102. {
  25103. name: "Megamacro",
  25104. height: math.unit(1000, "miles")
  25105. },
  25106. {
  25107. name: "Planetary",
  25108. height: math.unit(8000, "miles")
  25109. },
  25110. {
  25111. name: "True Layla",
  25112. height: math.unit(200000 * 7, "multiverses")
  25113. },
  25114. ]
  25115. ))
  25116. characterMakers.push(() => makeCharacter(
  25117. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25118. {
  25119. back: {
  25120. height: math.unit(10.5, "feet"),
  25121. weight: math.unit(800, "lb"),
  25122. name: "Back",
  25123. image: {
  25124. source: "./media/characters/knox/back.svg",
  25125. extra: 1486 / 1089,
  25126. bottom: 107 / 1601.4
  25127. }
  25128. },
  25129. side: {
  25130. height: math.unit(10.5, "feet"),
  25131. weight: math.unit(800, "lb"),
  25132. name: "Side",
  25133. image: {
  25134. source: "./media/characters/knox/side.svg",
  25135. extra: 244 / 218,
  25136. bottom: 14 / 260
  25137. }
  25138. },
  25139. },
  25140. [
  25141. {
  25142. name: "Compact",
  25143. height: math.unit(10.5, "feet"),
  25144. default: true
  25145. },
  25146. {
  25147. name: "Dynamax",
  25148. height: math.unit(210, "feet")
  25149. },
  25150. {
  25151. name: "Full Macro",
  25152. height: math.unit(850, "feet")
  25153. },
  25154. ]
  25155. ))
  25156. characterMakers.push(() => makeCharacter(
  25157. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25158. {
  25159. front: {
  25160. height: math.unit(28, "feet"),
  25161. weight: math.unit(10500, "lb"),
  25162. name: "Front",
  25163. image: {
  25164. source: "./media/characters/kayda/front.svg",
  25165. extra: 1536 / 1428,
  25166. bottom: 68.7 / 1603
  25167. }
  25168. },
  25169. back: {
  25170. height: math.unit(28, "feet"),
  25171. weight: math.unit(10500, "lb"),
  25172. name: "Back",
  25173. image: {
  25174. source: "./media/characters/kayda/back.svg",
  25175. extra: 1557 / 1464,
  25176. bottom: 39.5 / 1597.49
  25177. }
  25178. },
  25179. dick: {
  25180. height: math.unit(3.858, "feet"),
  25181. name: "Dick",
  25182. image: {
  25183. source: "./media/characters/kayda/dick.svg"
  25184. }
  25185. },
  25186. },
  25187. [
  25188. {
  25189. name: "Macro",
  25190. height: math.unit(28, "feet"),
  25191. default: true
  25192. },
  25193. ]
  25194. ))
  25195. characterMakers.push(() => makeCharacter(
  25196. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25197. {
  25198. front: {
  25199. height: math.unit(10 + 11 / 12, "feet"),
  25200. weight: math.unit(1400, "lb"),
  25201. name: "Front",
  25202. image: {
  25203. source: "./media/characters/brian/front.svg",
  25204. extra: 737 / 692,
  25205. bottom: 55.4 / 785
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Normal",
  25212. height: math.unit(10 + 11 / 12, "feet"),
  25213. default: true
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(5 + 8 / 12, "feet"),
  25222. weight: math.unit(140, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/khemri/front.svg",
  25226. extra: 4780 / 4059,
  25227. bottom: 80.1 / 4859.25
  25228. }
  25229. },
  25230. },
  25231. [
  25232. {
  25233. name: "Micro",
  25234. height: math.unit(6, "inches")
  25235. },
  25236. {
  25237. name: "Normal",
  25238. height: math.unit(5 + 8 / 12, "feet"),
  25239. default: true
  25240. },
  25241. ]
  25242. ))
  25243. characterMakers.push(() => makeCharacter(
  25244. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25245. {
  25246. front: {
  25247. height: math.unit(13, "feet"),
  25248. weight: math.unit(1700, "lb"),
  25249. name: "Front",
  25250. image: {
  25251. source: "./media/characters/felix-braveheart/front.svg",
  25252. extra: 1222 / 1157,
  25253. bottom: 53.2 / 1280
  25254. }
  25255. },
  25256. back: {
  25257. height: math.unit(13, "feet"),
  25258. weight: math.unit(1700, "lb"),
  25259. name: "Back",
  25260. image: {
  25261. source: "./media/characters/felix-braveheart/back.svg",
  25262. extra: 1277 / 1203,
  25263. bottom: 50.2 / 1327
  25264. }
  25265. },
  25266. feral: {
  25267. height: math.unit(6, "feet"),
  25268. weight: math.unit(400, "lb"),
  25269. name: "Feral",
  25270. image: {
  25271. source: "./media/characters/felix-braveheart/feral.svg",
  25272. extra: 682 / 625,
  25273. bottom: 6.9 / 688
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "Normal",
  25280. height: math.unit(13, "feet"),
  25281. default: true
  25282. },
  25283. ]
  25284. ))
  25285. characterMakers.push(() => makeCharacter(
  25286. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25287. {
  25288. side: {
  25289. height: math.unit(5 + 11 / 12, "feet"),
  25290. weight: math.unit(1400, "lb"),
  25291. name: "Side",
  25292. image: {
  25293. source: "./media/characters/shadow-blade/side.svg",
  25294. extra: 1726 / 1267,
  25295. bottom: 58.4 / 1785
  25296. }
  25297. },
  25298. },
  25299. [
  25300. {
  25301. name: "Normal",
  25302. height: math.unit(5 + 11 / 12, "feet"),
  25303. default: true
  25304. },
  25305. ]
  25306. ))
  25307. characterMakers.push(() => makeCharacter(
  25308. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25309. {
  25310. front: {
  25311. height: math.unit(1 + 6 / 12, "feet"),
  25312. weight: math.unit(25, "lb"),
  25313. name: "Front",
  25314. image: {
  25315. source: "./media/characters/karla-halldor/front.svg",
  25316. extra: 1459 / 1383,
  25317. bottom: 12 / 1472
  25318. }
  25319. },
  25320. },
  25321. [
  25322. {
  25323. name: "Normal",
  25324. height: math.unit(1 + 6 / 12, "feet"),
  25325. default: true
  25326. },
  25327. ]
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25331. {
  25332. front: {
  25333. height: math.unit(6 + 2 / 12, "feet"),
  25334. weight: math.unit(160, "lb"),
  25335. name: "Front",
  25336. image: {
  25337. source: "./media/characters/ariam/front.svg",
  25338. extra: 1073/976,
  25339. bottom: 52/1125
  25340. }
  25341. },
  25342. back: {
  25343. height: math.unit(6 + 2/12, "feet"),
  25344. weight: math.unit(160, "lb"),
  25345. name: "Back",
  25346. image: {
  25347. source: "./media/characters/ariam/back.svg",
  25348. extra: 1103/1023,
  25349. bottom: 9/1112
  25350. }
  25351. },
  25352. dressed: {
  25353. height: math.unit(6 + 2/12, "feet"),
  25354. weight: math.unit(160, "lb"),
  25355. name: "Dressed",
  25356. image: {
  25357. source: "./media/characters/ariam/dressed.svg",
  25358. extra: 1099/1009,
  25359. bottom: 25/1124
  25360. }
  25361. },
  25362. squatting: {
  25363. height: math.unit(4.1, "feet"),
  25364. weight: math.unit(160, "lb"),
  25365. name: "Squatting",
  25366. image: {
  25367. source: "./media/characters/ariam/squatting.svg",
  25368. extra: 2617 / 2112,
  25369. bottom: 61.2 / 2681,
  25370. }
  25371. },
  25372. },
  25373. [
  25374. {
  25375. name: "Normal",
  25376. height: math.unit(6 + 2 / 12, "feet"),
  25377. default: true
  25378. },
  25379. {
  25380. name: "Normal+",
  25381. height: math.unit(4, "meters")
  25382. },
  25383. {
  25384. name: "Macro",
  25385. height: math.unit(50, "meters")
  25386. },
  25387. {
  25388. name: "Macro+",
  25389. height: math.unit(100, "meters")
  25390. },
  25391. {
  25392. name: "Megamacro",
  25393. height: math.unit(20, "km")
  25394. },
  25395. {
  25396. name: "Caretaker",
  25397. height: math.unit(444, "megameters")
  25398. },
  25399. ]
  25400. ))
  25401. characterMakers.push(() => makeCharacter(
  25402. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25403. {
  25404. front: {
  25405. height: math.unit(1.67, "meters"),
  25406. weight: math.unit(140, "lb"),
  25407. name: "Front",
  25408. image: {
  25409. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25410. extra: 438 / 410,
  25411. bottom: 0.75 / 439
  25412. }
  25413. },
  25414. },
  25415. [
  25416. {
  25417. name: "Shrunken",
  25418. height: math.unit(7.6, "cm")
  25419. },
  25420. {
  25421. name: "Human Scale",
  25422. height: math.unit(1.67, "meters")
  25423. },
  25424. {
  25425. name: "Wolxi Scale",
  25426. height: math.unit(36.7, "meters"),
  25427. default: true
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25433. {
  25434. front: {
  25435. height: math.unit(1.73, "meters"),
  25436. weight: math.unit(240, "lb"),
  25437. name: "Front",
  25438. image: {
  25439. source: "./media/characters/izue-two-mothers/front.svg",
  25440. extra: 469 / 437,
  25441. bottom: 1.24 / 470.6
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Shrunken",
  25448. height: math.unit(7.86, "cm")
  25449. },
  25450. {
  25451. name: "Human Scale",
  25452. height: math.unit(1.73, "meters")
  25453. },
  25454. {
  25455. name: "Wolxi Scale",
  25456. height: math.unit(38, "meters"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(1.55, "meters"),
  25466. weight: math.unit(120, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/teeku-love-shack/front.svg",
  25470. extra: 387 / 362,
  25471. bottom: 1.51 / 388
  25472. }
  25473. },
  25474. },
  25475. [
  25476. {
  25477. name: "Shrunken",
  25478. height: math.unit(7, "cm")
  25479. },
  25480. {
  25481. name: "Human Scale",
  25482. height: math.unit(1.55, "meters")
  25483. },
  25484. {
  25485. name: "Wolxi Scale",
  25486. height: math.unit(34.1, "meters"),
  25487. default: true
  25488. },
  25489. ]
  25490. ))
  25491. characterMakers.push(() => makeCharacter(
  25492. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25493. {
  25494. front: {
  25495. height: math.unit(1.83, "meters"),
  25496. weight: math.unit(135, "lb"),
  25497. name: "Front",
  25498. image: {
  25499. source: "./media/characters/dejma-the-red/front.svg",
  25500. extra: 480 / 458,
  25501. bottom: 1.8 / 482
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Shrunken",
  25508. height: math.unit(8.3, "cm")
  25509. },
  25510. {
  25511. name: "Human Scale",
  25512. height: math.unit(1.83, "meters")
  25513. },
  25514. {
  25515. name: "Wolxi Scale",
  25516. height: math.unit(40, "meters"),
  25517. default: true
  25518. },
  25519. ]
  25520. ))
  25521. characterMakers.push(() => makeCharacter(
  25522. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25523. {
  25524. front: {
  25525. height: math.unit(1.78, "meters"),
  25526. weight: math.unit(65, "kg"),
  25527. name: "Front",
  25528. image: {
  25529. source: "./media/characters/aki/front.svg",
  25530. extra: 452 / 415
  25531. }
  25532. },
  25533. frontNsfw: {
  25534. height: math.unit(1.78, "meters"),
  25535. weight: math.unit(65, "kg"),
  25536. name: "Front (NSFW)",
  25537. image: {
  25538. source: "./media/characters/aki/front-nsfw.svg",
  25539. extra: 452 / 415
  25540. }
  25541. },
  25542. back: {
  25543. height: math.unit(1.78, "meters"),
  25544. weight: math.unit(65, "kg"),
  25545. name: "Back",
  25546. image: {
  25547. source: "./media/characters/aki/back.svg",
  25548. extra: 452 / 415
  25549. }
  25550. },
  25551. rump: {
  25552. height: math.unit(2.05, "feet"),
  25553. name: "Rump",
  25554. image: {
  25555. source: "./media/characters/aki/rump.svg"
  25556. }
  25557. },
  25558. dick: {
  25559. height: math.unit(0.95, "feet"),
  25560. name: "Dick",
  25561. image: {
  25562. source: "./media/characters/aki/dick.svg"
  25563. }
  25564. },
  25565. },
  25566. [
  25567. {
  25568. name: "Micro",
  25569. height: math.unit(15, "cm")
  25570. },
  25571. {
  25572. name: "Normal",
  25573. height: math.unit(178, "cm"),
  25574. default: true
  25575. },
  25576. {
  25577. name: "Macro",
  25578. height: math.unit(214, "m")
  25579. },
  25580. {
  25581. name: "Macro+",
  25582. height: math.unit(534, "m")
  25583. },
  25584. ]
  25585. ))
  25586. characterMakers.push(() => makeCharacter(
  25587. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25588. {
  25589. front: {
  25590. height: math.unit(5 + 5 / 12, "feet"),
  25591. weight: math.unit(120, "lb"),
  25592. name: "Front",
  25593. image: {
  25594. source: "./media/characters/ari/front.svg",
  25595. extra: 1550/1471,
  25596. bottom: 39/1589
  25597. }
  25598. },
  25599. },
  25600. [
  25601. {
  25602. name: "Normal",
  25603. height: math.unit(5 + 5 / 12, "feet")
  25604. },
  25605. {
  25606. name: "Macro",
  25607. height: math.unit(100, "feet"),
  25608. default: true
  25609. },
  25610. {
  25611. name: "Megamacro",
  25612. height: math.unit(100, "miles")
  25613. },
  25614. {
  25615. name: "Gigamacro",
  25616. height: math.unit(80000, "miles")
  25617. },
  25618. ]
  25619. ))
  25620. characterMakers.push(() => makeCharacter(
  25621. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25622. {
  25623. side: {
  25624. height: math.unit(9, "feet"),
  25625. weight: math.unit(400, "kg"),
  25626. name: "Side",
  25627. image: {
  25628. source: "./media/characters/bolt/side.svg",
  25629. extra: 1126 / 896,
  25630. bottom: 60 / 1187.3,
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Micro",
  25637. height: math.unit(5, "inches")
  25638. },
  25639. {
  25640. name: "Normal",
  25641. height: math.unit(9, "feet"),
  25642. default: true
  25643. },
  25644. {
  25645. name: "Macro",
  25646. height: math.unit(700, "feet")
  25647. },
  25648. {
  25649. name: "Max Size",
  25650. height: math.unit(1.52e22, "yottameters")
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25656. {
  25657. front: {
  25658. height: math.unit(4.3, "meters"),
  25659. weight: math.unit(3, "tons"),
  25660. name: "Front",
  25661. image: {
  25662. source: "./media/characters/draekon-sylviar/front.svg",
  25663. extra: 2072/1512,
  25664. bottom: 74/2146
  25665. }
  25666. },
  25667. back: {
  25668. height: math.unit(4.3, "meters"),
  25669. weight: math.unit(3, "tons"),
  25670. name: "Back",
  25671. image: {
  25672. source: "./media/characters/draekon-sylviar/back.svg",
  25673. extra: 1639/1483,
  25674. bottom: 41/1680
  25675. }
  25676. },
  25677. feral: {
  25678. height: math.unit(1.15, "meters"),
  25679. weight: math.unit(3, "tons"),
  25680. name: "Feral",
  25681. image: {
  25682. source: "./media/characters/draekon-sylviar/feral.svg",
  25683. extra: 1033/395,
  25684. bottom: 130/1163
  25685. }
  25686. },
  25687. maw: {
  25688. height: math.unit(1.3, "meters"),
  25689. name: "Maw",
  25690. image: {
  25691. source: "./media/characters/draekon-sylviar/maw.svg"
  25692. }
  25693. },
  25694. mawSeparated: {
  25695. height: math.unit(1.53, "meters"),
  25696. name: "Separated Maw",
  25697. image: {
  25698. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25699. }
  25700. },
  25701. tail: {
  25702. height: math.unit(1.15, "meters"),
  25703. name: "Tail",
  25704. image: {
  25705. source: "./media/characters/draekon-sylviar/tail.svg"
  25706. }
  25707. },
  25708. tailDick: {
  25709. height: math.unit(1.15, "meters"),
  25710. name: "Tail (Dick)",
  25711. image: {
  25712. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25713. }
  25714. },
  25715. tailDickSeparated: {
  25716. height: math.unit(1.19, "meters"),
  25717. name: "Tail (Separated Dick)",
  25718. image: {
  25719. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25720. }
  25721. },
  25722. slit: {
  25723. height: math.unit(1, "meters"),
  25724. name: "Slit",
  25725. image: {
  25726. source: "./media/characters/draekon-sylviar/slit.svg"
  25727. }
  25728. },
  25729. dick: {
  25730. height: math.unit(1.15, "meters"),
  25731. name: "Dick",
  25732. image: {
  25733. source: "./media/characters/draekon-sylviar/dick.svg"
  25734. }
  25735. },
  25736. dickSeparated: {
  25737. height: math.unit(1.1, "meters"),
  25738. name: "Separated Dick",
  25739. image: {
  25740. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25741. }
  25742. },
  25743. sheath: {
  25744. height: math.unit(1.15, "meters"),
  25745. name: "Sheath",
  25746. image: {
  25747. source: "./media/characters/draekon-sylviar/sheath.svg"
  25748. }
  25749. },
  25750. },
  25751. [
  25752. {
  25753. name: "Small",
  25754. height: math.unit(4.53 / 2, "meters"),
  25755. default: true
  25756. },
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(4.53, "meters"),
  25760. default: true
  25761. },
  25762. {
  25763. name: "Large",
  25764. height: math.unit(4.53 * 2, "meters"),
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(6 + 2 / 12, "feet"),
  25773. weight: math.unit(180, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/brawler/front.svg",
  25777. extra: 3301 / 3027,
  25778. bottom: 138 / 3439
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Normal",
  25785. height: math.unit(6 + 2 / 12, "feet"),
  25786. default: true
  25787. },
  25788. ]
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25792. {
  25793. front: {
  25794. height: math.unit(11, "feet"),
  25795. weight: math.unit(1000, "lb"),
  25796. name: "Front",
  25797. image: {
  25798. source: "./media/characters/alex/front.svg",
  25799. bottom: 44.5 / 620
  25800. }
  25801. },
  25802. },
  25803. [
  25804. {
  25805. name: "Micro",
  25806. height: math.unit(5, "inches")
  25807. },
  25808. {
  25809. name: "Normal",
  25810. height: math.unit(11, "feet"),
  25811. default: true
  25812. },
  25813. {
  25814. name: "Macro",
  25815. height: math.unit(9.5e9, "feet")
  25816. },
  25817. {
  25818. name: "Max Size",
  25819. height: math.unit(1.4e283, "yottameters")
  25820. },
  25821. ]
  25822. ))
  25823. characterMakers.push(() => makeCharacter(
  25824. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25825. {
  25826. female: {
  25827. height: math.unit(29.9, "m"),
  25828. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25829. name: "Female",
  25830. image: {
  25831. source: "./media/characters/zenari/female.svg",
  25832. extra: 3281.6 / 3217,
  25833. bottom: 72.2 / 3353
  25834. }
  25835. },
  25836. male: {
  25837. height: math.unit(27.7, "m"),
  25838. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25839. name: "Male",
  25840. image: {
  25841. source: "./media/characters/zenari/male.svg",
  25842. extra: 3008 / 2991,
  25843. bottom: 54.6 / 3069
  25844. }
  25845. },
  25846. },
  25847. [
  25848. {
  25849. name: "Macro",
  25850. height: math.unit(29.7, "meters"),
  25851. default: true
  25852. },
  25853. ]
  25854. ))
  25855. characterMakers.push(() => makeCharacter(
  25856. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25857. {
  25858. female: {
  25859. height: math.unit(23.8, "m"),
  25860. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25861. name: "Female",
  25862. image: {
  25863. source: "./media/characters/mactarian/female.svg",
  25864. extra: 2662 / 2569,
  25865. bottom: 73 / 2736
  25866. }
  25867. },
  25868. male: {
  25869. height: math.unit(23.8, "m"),
  25870. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25871. name: "Male",
  25872. image: {
  25873. source: "./media/characters/mactarian/male.svg",
  25874. extra: 2673 / 2600,
  25875. bottom: 76 / 2750
  25876. }
  25877. },
  25878. },
  25879. [
  25880. {
  25881. name: "Macro",
  25882. height: math.unit(23.8, "meters"),
  25883. default: true
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25889. {
  25890. female: {
  25891. height: math.unit(19.3, "m"),
  25892. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25893. name: "Female",
  25894. image: {
  25895. source: "./media/characters/umok/female.svg",
  25896. extra: 2186 / 2078,
  25897. bottom: 87 / 2277
  25898. }
  25899. },
  25900. male: {
  25901. height: math.unit(19.5, "m"),
  25902. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25903. name: "Male",
  25904. image: {
  25905. source: "./media/characters/umok/male.svg",
  25906. extra: 2233 / 2140,
  25907. bottom: 24.4 / 2258
  25908. }
  25909. },
  25910. },
  25911. [
  25912. {
  25913. name: "Macro",
  25914. height: math.unit(19.3, "meters"),
  25915. default: true
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25921. {
  25922. female: {
  25923. height: math.unit(26.15, "m"),
  25924. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25925. name: "Female",
  25926. image: {
  25927. source: "./media/characters/joraxian/female.svg",
  25928. extra: 2912 / 2824,
  25929. bottom: 36 / 2956
  25930. }
  25931. },
  25932. male: {
  25933. height: math.unit(25.4, "m"),
  25934. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25935. name: "Male",
  25936. image: {
  25937. source: "./media/characters/joraxian/male.svg",
  25938. extra: 2877 / 2721,
  25939. bottom: 82 / 2967
  25940. }
  25941. },
  25942. },
  25943. [
  25944. {
  25945. name: "Macro",
  25946. height: math.unit(26.15, "meters"),
  25947. default: true
  25948. },
  25949. ]
  25950. ))
  25951. characterMakers.push(() => makeCharacter(
  25952. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25953. {
  25954. female: {
  25955. height: math.unit(21.6, "m"),
  25956. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25957. name: "Female",
  25958. image: {
  25959. source: "./media/characters/sthara/female.svg",
  25960. extra: 2516 / 2347,
  25961. bottom: 21.5 / 2537
  25962. }
  25963. },
  25964. male: {
  25965. height: math.unit(24, "m"),
  25966. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25967. name: "Male",
  25968. image: {
  25969. source: "./media/characters/sthara/male.svg",
  25970. extra: 2732 / 2607,
  25971. bottom: 23 / 2732
  25972. }
  25973. },
  25974. },
  25975. [
  25976. {
  25977. name: "Macro",
  25978. height: math.unit(21.6, "meters"),
  25979. default: true
  25980. },
  25981. ]
  25982. ))
  25983. characterMakers.push(() => makeCharacter(
  25984. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25985. {
  25986. front: {
  25987. height: math.unit(6 + 4 / 12, "feet"),
  25988. weight: math.unit(175, "lb"),
  25989. name: "Front",
  25990. image: {
  25991. source: "./media/characters/luka-bryzant/front.svg",
  25992. extra: 311 / 289,
  25993. bottom: 4 / 315
  25994. }
  25995. },
  25996. back: {
  25997. height: math.unit(6 + 4 / 12, "feet"),
  25998. weight: math.unit(175, "lb"),
  25999. name: "Back",
  26000. image: {
  26001. source: "./media/characters/luka-bryzant/back.svg",
  26002. extra: 311 / 289,
  26003. bottom: 3.8 / 313.7
  26004. }
  26005. },
  26006. },
  26007. [
  26008. {
  26009. name: "Micro",
  26010. height: math.unit(10, "inches")
  26011. },
  26012. {
  26013. name: "Normal",
  26014. height: math.unit(6 + 4 / 12, "feet"),
  26015. default: true
  26016. },
  26017. {
  26018. name: "Large",
  26019. height: math.unit(12, "feet")
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(5 + 7 / 12, "feet"),
  26028. weight: math.unit(185, "lb"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/aman-aquila/front.svg",
  26032. extra: 1013 / 976,
  26033. bottom: 45.6 / 1057
  26034. }
  26035. },
  26036. side: {
  26037. height: math.unit(5 + 7 / 12, "feet"),
  26038. weight: math.unit(185, "lb"),
  26039. name: "Side",
  26040. image: {
  26041. source: "./media/characters/aman-aquila/side.svg",
  26042. extra: 1054 / 1011,
  26043. bottom: 15 / 1070
  26044. }
  26045. },
  26046. back: {
  26047. height: math.unit(5 + 7 / 12, "feet"),
  26048. weight: math.unit(185, "lb"),
  26049. name: "Back",
  26050. image: {
  26051. source: "./media/characters/aman-aquila/back.svg",
  26052. extra: 1026 / 970,
  26053. bottom: 12 / 1039
  26054. }
  26055. },
  26056. head: {
  26057. height: math.unit(1.211, "feet"),
  26058. name: "Head",
  26059. image: {
  26060. source: "./media/characters/aman-aquila/head.svg",
  26061. }
  26062. },
  26063. },
  26064. [
  26065. {
  26066. name: "Minimicro",
  26067. height: math.unit(0.057, "inches")
  26068. },
  26069. {
  26070. name: "Micro",
  26071. height: math.unit(7, "inches")
  26072. },
  26073. {
  26074. name: "Mini",
  26075. height: math.unit(3 + 7 / 12, "feet")
  26076. },
  26077. {
  26078. name: "Normal",
  26079. height: math.unit(5 + 7 / 12, "feet"),
  26080. default: true
  26081. },
  26082. {
  26083. name: "Macro",
  26084. height: math.unit(157 + 7 / 12, "feet")
  26085. },
  26086. {
  26087. name: "Megamacro",
  26088. height: math.unit(1557 + 7 / 12, "feet")
  26089. },
  26090. {
  26091. name: "Gigamacro",
  26092. height: math.unit(15557 + 7 / 12, "feet")
  26093. },
  26094. ]
  26095. ))
  26096. characterMakers.push(() => makeCharacter(
  26097. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26098. {
  26099. front: {
  26100. height: math.unit(3 + 2 / 12, "inches"),
  26101. weight: math.unit(0.3, "ounces"),
  26102. name: "Front",
  26103. image: {
  26104. source: "./media/characters/hiphae/front.svg",
  26105. extra: 1931 / 1683,
  26106. bottom: 24 / 1955
  26107. }
  26108. },
  26109. },
  26110. [
  26111. {
  26112. name: "Normal",
  26113. height: math.unit(3 + 1 / 2, "inches"),
  26114. default: true
  26115. },
  26116. ]
  26117. ))
  26118. characterMakers.push(() => makeCharacter(
  26119. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26120. {
  26121. front: {
  26122. height: math.unit(5 + 10 / 12, "feet"),
  26123. weight: math.unit(165, "lb"),
  26124. name: "Front",
  26125. image: {
  26126. source: "./media/characters/nicky/front.svg",
  26127. extra: 3144 / 2886,
  26128. bottom: 45.6 / 3192
  26129. }
  26130. },
  26131. back: {
  26132. height: math.unit(5 + 10 / 12, "feet"),
  26133. weight: math.unit(165, "lb"),
  26134. name: "Back",
  26135. image: {
  26136. source: "./media/characters/nicky/back.svg",
  26137. extra: 3055 / 2804,
  26138. bottom: 28.4 / 3087
  26139. }
  26140. },
  26141. frontclothed: {
  26142. height: math.unit(5 + 10 / 12, "feet"),
  26143. weight: math.unit(165, "lb"),
  26144. name: "Front-clothed",
  26145. image: {
  26146. source: "./media/characters/nicky/front-clothed.svg",
  26147. extra: 3184.9 / 2926.9,
  26148. bottom: 86.5 / 3239.9
  26149. }
  26150. },
  26151. foot: {
  26152. height: math.unit(1.16, "feet"),
  26153. name: "Foot",
  26154. image: {
  26155. source: "./media/characters/nicky/foot.svg"
  26156. }
  26157. },
  26158. feet: {
  26159. height: math.unit(1.34, "feet"),
  26160. name: "Feet",
  26161. image: {
  26162. source: "./media/characters/nicky/feet.svg"
  26163. }
  26164. },
  26165. maw: {
  26166. height: math.unit(0.9, "feet"),
  26167. name: "Maw",
  26168. image: {
  26169. source: "./media/characters/nicky/maw.svg"
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Normal",
  26176. height: math.unit(5 + 10 / 12, "feet"),
  26177. default: true
  26178. },
  26179. {
  26180. name: "Macro",
  26181. height: math.unit(60, "feet")
  26182. },
  26183. {
  26184. name: "Megamacro",
  26185. height: math.unit(1, "mile")
  26186. },
  26187. ]
  26188. ))
  26189. characterMakers.push(() => makeCharacter(
  26190. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26191. {
  26192. side: {
  26193. height: math.unit(10, "feet"),
  26194. weight: math.unit(600, "lb"),
  26195. name: "Side",
  26196. image: {
  26197. source: "./media/characters/blair/side.svg",
  26198. bottom: 16.6 / 475,
  26199. extra: 458 / 431
  26200. }
  26201. },
  26202. },
  26203. [
  26204. {
  26205. name: "Micro",
  26206. height: math.unit(8, "inches")
  26207. },
  26208. {
  26209. name: "Normal",
  26210. height: math.unit(10, "feet"),
  26211. default: true
  26212. },
  26213. {
  26214. name: "Macro",
  26215. height: math.unit(180, "feet")
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(5 + 4 / 12, "feet"),
  26224. weight: math.unit(125, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/fisher/front.svg",
  26228. extra: 444 / 390,
  26229. bottom: 2 / 444.8
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Micro",
  26236. height: math.unit(4, "inches")
  26237. },
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(5 + 4 / 12, "feet"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Macro",
  26245. height: math.unit(100, "feet")
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(6.71, "feet"),
  26254. weight: math.unit(200, "lb"),
  26255. preyCapacity: math.unit(1000000, "people"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/gliss/front.svg",
  26259. extra: 2347 / 2231,
  26260. bottom: 113 / 2462
  26261. }
  26262. },
  26263. hammerspaceSize: {
  26264. height: math.unit(6.71 * 717, "feet"),
  26265. weight: math.unit(200, "lb"),
  26266. preyCapacity: math.unit(1000000, "people"),
  26267. name: "Hammerspace Size",
  26268. image: {
  26269. source: "./media/characters/gliss/front.svg",
  26270. extra: 2347 / 2231,
  26271. bottom: 113 / 2462
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(6.71, "feet"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26285. {
  26286. side: {
  26287. height: math.unit(1.44, "m"),
  26288. weight: math.unit(80, "kg"),
  26289. name: "Side",
  26290. image: {
  26291. source: "./media/characters/dune-anderson/side.svg",
  26292. bottom: 49 / 1426
  26293. }
  26294. },
  26295. },
  26296. [
  26297. {
  26298. name: "Wolf-sized",
  26299. height: math.unit(1.44, "meters")
  26300. },
  26301. {
  26302. name: "Normal",
  26303. height: math.unit(5.05, "meters"),
  26304. default: true
  26305. },
  26306. {
  26307. name: "Big",
  26308. height: math.unit(14.4, "meters")
  26309. },
  26310. {
  26311. name: "Huge",
  26312. height: math.unit(144, "meters")
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(7, "feet"),
  26321. weight: math.unit(425, "lb"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/hind/front.svg",
  26325. extra: 2091 / 1860,
  26326. bottom: 129 / 2220
  26327. }
  26328. },
  26329. back: {
  26330. height: math.unit(7, "feet"),
  26331. weight: math.unit(425, "lb"),
  26332. name: "Back",
  26333. image: {
  26334. source: "./media/characters/hind/back.svg",
  26335. extra: 2091 / 1860,
  26336. bottom: 24.6 / 2309
  26337. }
  26338. },
  26339. tail: {
  26340. height: math.unit(2.8, "feet"),
  26341. name: "Tail",
  26342. image: {
  26343. source: "./media/characters/hind/tail.svg"
  26344. }
  26345. },
  26346. head: {
  26347. height: math.unit(2.55, "feet"),
  26348. name: "Head",
  26349. image: {
  26350. source: "./media/characters/hind/head.svg"
  26351. }
  26352. },
  26353. },
  26354. [
  26355. {
  26356. name: "XS",
  26357. height: math.unit(0.7, "feet")
  26358. },
  26359. {
  26360. name: "Normal",
  26361. height: math.unit(7, "feet"),
  26362. default: true
  26363. },
  26364. {
  26365. name: "XL",
  26366. height: math.unit(70, "feet")
  26367. },
  26368. ]
  26369. ))
  26370. characterMakers.push(() => makeCharacter(
  26371. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26372. {
  26373. front: {
  26374. height: math.unit(2.1, "meters"),
  26375. weight: math.unit(150, "lb"),
  26376. name: "Front",
  26377. image: {
  26378. source: "./media/characters/tharquench-sizestealer/front.svg",
  26379. extra: 1605/1470,
  26380. bottom: 36/1641
  26381. }
  26382. },
  26383. frontAlt: {
  26384. height: math.unit(2.1, "meters"),
  26385. weight: math.unit(150, "lb"),
  26386. name: "Front (Alt)",
  26387. image: {
  26388. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26389. extra: 2318 / 2063,
  26390. bottom: 93.4 / 2410
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Nano",
  26397. height: math.unit(1, "mm")
  26398. },
  26399. {
  26400. name: "Micro",
  26401. height: math.unit(1, "cm")
  26402. },
  26403. {
  26404. name: "Normal",
  26405. height: math.unit(2.1, "meters"),
  26406. default: true
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26412. {
  26413. front: {
  26414. height: math.unit(7 + 5 / 12, "feet"),
  26415. weight: math.unit(357, "lb"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/solex-draconov/front.svg",
  26419. extra: 1993 / 1865,
  26420. bottom: 117 / 2111
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Natural Height",
  26427. height: math.unit(7 + 5 / 12, "feet"),
  26428. default: true
  26429. },
  26430. {
  26431. name: "Macro",
  26432. height: math.unit(350, "feet")
  26433. },
  26434. {
  26435. name: "Macro+",
  26436. height: math.unit(1000, "feet")
  26437. },
  26438. {
  26439. name: "Megamacro",
  26440. height: math.unit(20, "km")
  26441. },
  26442. {
  26443. name: "Megamacro+",
  26444. height: math.unit(1000, "km")
  26445. },
  26446. {
  26447. name: "Gigamacro",
  26448. height: math.unit(2.5, "Gm")
  26449. },
  26450. {
  26451. name: "Teramacro",
  26452. height: math.unit(15, "Tm")
  26453. },
  26454. {
  26455. name: "Galactic",
  26456. height: math.unit(30, "Zm")
  26457. },
  26458. {
  26459. name: "Universal",
  26460. height: math.unit(21000, "Ym")
  26461. },
  26462. {
  26463. name: "Omniversal",
  26464. height: math.unit(9.861e50, "Ym")
  26465. },
  26466. {
  26467. name: "Existential",
  26468. height: math.unit(1e300, "meters")
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26474. {
  26475. side: {
  26476. height: math.unit(25, "feet"),
  26477. weight: math.unit(90000, "lb"),
  26478. name: "Side",
  26479. image: {
  26480. source: "./media/characters/mandarax/side.svg",
  26481. extra: 614 / 332,
  26482. bottom: 55 / 630
  26483. }
  26484. },
  26485. lounging: {
  26486. height: math.unit(15.4, "feet"),
  26487. weight: math.unit(90000, "lb"),
  26488. name: "Lounging",
  26489. image: {
  26490. source: "./media/characters/mandarax/lounging.svg",
  26491. extra: 817/609,
  26492. bottom: 685/1502
  26493. }
  26494. },
  26495. head: {
  26496. height: math.unit(11.4, "feet"),
  26497. name: "Head",
  26498. image: {
  26499. source: "./media/characters/mandarax/head.svg"
  26500. }
  26501. },
  26502. belly: {
  26503. height: math.unit(33, "feet"),
  26504. name: "Belly",
  26505. preyCapacity: math.unit(500, "people"),
  26506. image: {
  26507. source: "./media/characters/mandarax/belly.svg"
  26508. }
  26509. },
  26510. dick: {
  26511. height: math.unit(8.46, "feet"),
  26512. name: "Dick",
  26513. image: {
  26514. source: "./media/characters/mandarax/dick.svg"
  26515. }
  26516. },
  26517. top: {
  26518. height: math.unit(28, "meters"),
  26519. name: "Top",
  26520. image: {
  26521. source: "./media/characters/mandarax/top.svg"
  26522. }
  26523. },
  26524. },
  26525. [
  26526. {
  26527. name: "Normal",
  26528. height: math.unit(25, "feet"),
  26529. default: true
  26530. },
  26531. ]
  26532. ))
  26533. characterMakers.push(() => makeCharacter(
  26534. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26535. {
  26536. front: {
  26537. height: math.unit(5, "feet"),
  26538. weight: math.unit(90, "lb"),
  26539. name: "Front",
  26540. image: {
  26541. source: "./media/characters/pixil/front.svg",
  26542. extra: 2000 / 1618,
  26543. bottom: 12.3 / 2011
  26544. }
  26545. },
  26546. },
  26547. [
  26548. {
  26549. name: "Normal",
  26550. height: math.unit(5, "feet"),
  26551. default: true
  26552. },
  26553. {
  26554. name: "Megamacro",
  26555. height: math.unit(10, "miles"),
  26556. },
  26557. ]
  26558. ))
  26559. characterMakers.push(() => makeCharacter(
  26560. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26561. {
  26562. front: {
  26563. height: math.unit(7 + 2 / 12, "feet"),
  26564. weight: math.unit(200, "lb"),
  26565. name: "Front",
  26566. image: {
  26567. source: "./media/characters/angel/front.svg",
  26568. extra: 1830 / 1737,
  26569. bottom: 22.6 / 1854,
  26570. }
  26571. },
  26572. },
  26573. [
  26574. {
  26575. name: "Normal",
  26576. height: math.unit(7 + 2 / 12, "feet"),
  26577. default: true
  26578. },
  26579. {
  26580. name: "Macro",
  26581. height: math.unit(1000, "feet")
  26582. },
  26583. {
  26584. name: "Megamacro",
  26585. height: math.unit(2, "miles")
  26586. },
  26587. {
  26588. name: "Gigamacro",
  26589. height: math.unit(20, "earths")
  26590. },
  26591. ]
  26592. ))
  26593. characterMakers.push(() => makeCharacter(
  26594. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26595. {
  26596. front: {
  26597. height: math.unit(5, "feet"),
  26598. weight: math.unit(180, "lb"),
  26599. name: "Front",
  26600. image: {
  26601. source: "./media/characters/mekana/front.svg",
  26602. extra: 1671 / 1605,
  26603. bottom: 3.5 / 1691
  26604. }
  26605. },
  26606. side: {
  26607. height: math.unit(5, "feet"),
  26608. weight: math.unit(180, "lb"),
  26609. name: "Side",
  26610. image: {
  26611. source: "./media/characters/mekana/side.svg",
  26612. extra: 1671 / 1605,
  26613. bottom: 3.5 / 1691
  26614. }
  26615. },
  26616. back: {
  26617. height: math.unit(5, "feet"),
  26618. weight: math.unit(180, "lb"),
  26619. name: "Back",
  26620. image: {
  26621. source: "./media/characters/mekana/back.svg",
  26622. extra: 1671 / 1605,
  26623. bottom: 3.5 / 1691
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Normal",
  26630. height: math.unit(5, "feet"),
  26631. default: true
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26637. {
  26638. front: {
  26639. height: math.unit(4 + 6 / 12, "feet"),
  26640. weight: math.unit(80, "lb"),
  26641. name: "Front",
  26642. image: {
  26643. source: "./media/characters/pixie/front.svg",
  26644. extra: 1924 / 1825,
  26645. bottom: 22.4 / 1946
  26646. }
  26647. },
  26648. },
  26649. [
  26650. {
  26651. name: "Normal",
  26652. height: math.unit(4 + 6 / 12, "feet"),
  26653. default: true
  26654. },
  26655. {
  26656. name: "Macro",
  26657. height: math.unit(40, "feet")
  26658. },
  26659. ]
  26660. ))
  26661. characterMakers.push(() => makeCharacter(
  26662. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26663. {
  26664. front: {
  26665. height: math.unit(2.1, "meters"),
  26666. weight: math.unit(200, "lb"),
  26667. name: "Front",
  26668. image: {
  26669. source: "./media/characters/the-lascivious/front.svg",
  26670. extra: 1 / 0.893,
  26671. bottom: 3.5 / 573.7
  26672. }
  26673. },
  26674. },
  26675. [
  26676. {
  26677. name: "Human Scale",
  26678. height: math.unit(2.1, "meters")
  26679. },
  26680. {
  26681. name: "Wolxi Scale",
  26682. height: math.unit(46.2, "m"),
  26683. default: true
  26684. },
  26685. {
  26686. name: "Boinker of Buildings",
  26687. height: math.unit(10, "km")
  26688. },
  26689. {
  26690. name: "Shagger of Skyscrapers",
  26691. height: math.unit(40, "km")
  26692. },
  26693. {
  26694. name: "Banger of Boroughs",
  26695. height: math.unit(4000, "km")
  26696. },
  26697. {
  26698. name: "Screwer of States",
  26699. height: math.unit(100000, "km")
  26700. },
  26701. {
  26702. name: "Pounder of Planets",
  26703. height: math.unit(2000000, "km")
  26704. },
  26705. ]
  26706. ))
  26707. characterMakers.push(() => makeCharacter(
  26708. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26709. {
  26710. front: {
  26711. height: math.unit(6, "feet"),
  26712. weight: math.unit(150, "lb"),
  26713. name: "Front",
  26714. image: {
  26715. source: "./media/characters/aj/front.svg",
  26716. extra: 2039 / 1562,
  26717. bottom: 40 / 2079
  26718. }
  26719. },
  26720. },
  26721. [
  26722. {
  26723. name: "Normal",
  26724. height: math.unit(11 + 6 / 12, "feet"),
  26725. default: true
  26726. },
  26727. {
  26728. name: "Megamacro",
  26729. height: math.unit(60, "megameters")
  26730. },
  26731. ]
  26732. ))
  26733. characterMakers.push(() => makeCharacter(
  26734. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26735. {
  26736. side: {
  26737. height: math.unit(31 + 8 / 12, "feet"),
  26738. weight: math.unit(75000, "kg"),
  26739. name: "Side",
  26740. image: {
  26741. source: "./media/characters/koros/side.svg",
  26742. extra: 1442 / 1297,
  26743. bottom: 122.7 / 1562
  26744. }
  26745. },
  26746. dicksKingsCrown: {
  26747. height: math.unit(6, "feet"),
  26748. name: "Dicks (King's Crown)",
  26749. image: {
  26750. source: "./media/characters/koros/dicks-kings-crown.svg"
  26751. }
  26752. },
  26753. dicksTailSet: {
  26754. height: math.unit(3, "feet"),
  26755. name: "Dicks (Tail Set)",
  26756. image: {
  26757. source: "./media/characters/koros/dicks-tail-set.svg"
  26758. }
  26759. },
  26760. dickCumming: {
  26761. height: math.unit(7.98, "feet"),
  26762. name: "Dick (Cumming)",
  26763. image: {
  26764. source: "./media/characters/koros/dick-cumming.svg"
  26765. }
  26766. },
  26767. dicksBack: {
  26768. height: math.unit(5.9, "feet"),
  26769. name: "Dicks (Back)",
  26770. image: {
  26771. source: "./media/characters/koros/dicks-back.svg"
  26772. }
  26773. },
  26774. dicksFront: {
  26775. height: math.unit(3.72, "feet"),
  26776. name: "Dicks (Front)",
  26777. image: {
  26778. source: "./media/characters/koros/dicks-front.svg"
  26779. }
  26780. },
  26781. dicksPeeking: {
  26782. height: math.unit(3.0, "feet"),
  26783. name: "Dicks (Peeking)",
  26784. image: {
  26785. source: "./media/characters/koros/dicks-peeking.svg"
  26786. }
  26787. },
  26788. eye: {
  26789. height: math.unit(1.7, "feet"),
  26790. name: "Eye",
  26791. image: {
  26792. source: "./media/characters/koros/eye.svg"
  26793. }
  26794. },
  26795. headFront: {
  26796. height: math.unit(11.69, "feet"),
  26797. name: "Head (Front)",
  26798. image: {
  26799. source: "./media/characters/koros/head-front.svg"
  26800. }
  26801. },
  26802. headSide: {
  26803. height: math.unit(14, "feet"),
  26804. name: "Head (Side)",
  26805. image: {
  26806. source: "./media/characters/koros/head-side.svg"
  26807. }
  26808. },
  26809. leg: {
  26810. height: math.unit(17, "feet"),
  26811. name: "Leg",
  26812. image: {
  26813. source: "./media/characters/koros/leg.svg"
  26814. }
  26815. },
  26816. mawSide: {
  26817. height: math.unit(12.8, "feet"),
  26818. name: "Maw (Side)",
  26819. image: {
  26820. source: "./media/characters/koros/maw-side.svg"
  26821. }
  26822. },
  26823. mawSpitting: {
  26824. height: math.unit(17, "feet"),
  26825. name: "Maw (Spitting)",
  26826. image: {
  26827. source: "./media/characters/koros/maw-spitting.svg"
  26828. }
  26829. },
  26830. slit: {
  26831. height: math.unit(2.8, "feet"),
  26832. name: "Slit",
  26833. image: {
  26834. source: "./media/characters/koros/slit.svg"
  26835. }
  26836. },
  26837. stomach: {
  26838. height: math.unit(6.8, "feet"),
  26839. preyCapacity: math.unit(20, "people"),
  26840. name: "Stomach",
  26841. image: {
  26842. source: "./media/characters/koros/stomach.svg"
  26843. }
  26844. },
  26845. wingspanBottom: {
  26846. height: math.unit(114, "feet"),
  26847. name: "Wingspan (Bottom)",
  26848. image: {
  26849. source: "./media/characters/koros/wingspan-bottom.svg"
  26850. }
  26851. },
  26852. wingspanTop: {
  26853. height: math.unit(104, "feet"),
  26854. name: "Wingspan (Top)",
  26855. image: {
  26856. source: "./media/characters/koros/wingspan-top.svg"
  26857. }
  26858. },
  26859. },
  26860. [
  26861. {
  26862. name: "Normal",
  26863. height: math.unit(31 + 8 / 12, "feet"),
  26864. default: true
  26865. },
  26866. ]
  26867. ))
  26868. characterMakers.push(() => makeCharacter(
  26869. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26870. {
  26871. front: {
  26872. height: math.unit(18 + 5 / 12, "feet"),
  26873. weight: math.unit(3750, "kg"),
  26874. name: "Front",
  26875. image: {
  26876. source: "./media/characters/vexx/front.svg",
  26877. extra: 426 / 396,
  26878. bottom: 31.5 / 458
  26879. }
  26880. },
  26881. maw: {
  26882. height: math.unit(6, "feet"),
  26883. name: "Maw",
  26884. image: {
  26885. source: "./media/characters/vexx/maw.svg"
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Normal",
  26892. height: math.unit(18 + 5 / 12, "feet"),
  26893. default: true
  26894. },
  26895. ]
  26896. ))
  26897. characterMakers.push(() => makeCharacter(
  26898. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26899. {
  26900. front: {
  26901. height: math.unit(17 + 6 / 12, "feet"),
  26902. weight: math.unit(150, "lb"),
  26903. name: "Front",
  26904. image: {
  26905. source: "./media/characters/baadra/front.svg",
  26906. extra: 1694/1553,
  26907. bottom: 179/1873
  26908. }
  26909. },
  26910. frontAlt: {
  26911. height: math.unit(17 + 6 / 12, "feet"),
  26912. weight: math.unit(150, "lb"),
  26913. name: "Front (Alt)",
  26914. image: {
  26915. source: "./media/characters/baadra/front-alt.svg",
  26916. extra: 3137 / 2890,
  26917. bottom: 168.4 / 3305
  26918. }
  26919. },
  26920. back: {
  26921. height: math.unit(17 + 6 / 12, "feet"),
  26922. weight: math.unit(150, "lb"),
  26923. name: "Back",
  26924. image: {
  26925. source: "./media/characters/baadra/back.svg",
  26926. extra: 3142 / 2890,
  26927. bottom: 220 / 3371
  26928. }
  26929. },
  26930. head: {
  26931. height: math.unit(5.45, "feet"),
  26932. name: "Head",
  26933. image: {
  26934. source: "./media/characters/baadra/head.svg"
  26935. }
  26936. },
  26937. headAngry: {
  26938. height: math.unit(4.95, "feet"),
  26939. name: "Head (Angry)",
  26940. image: {
  26941. source: "./media/characters/baadra/head-angry.svg"
  26942. }
  26943. },
  26944. headOpen: {
  26945. height: math.unit(6, "feet"),
  26946. name: "Head (Open)",
  26947. image: {
  26948. source: "./media/characters/baadra/head-open.svg"
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Normal",
  26955. height: math.unit(17 + 6 / 12, "feet"),
  26956. default: true
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26962. {
  26963. front: {
  26964. height: math.unit(7 + 3 / 12, "feet"),
  26965. weight: math.unit(180, "lb"),
  26966. name: "Front",
  26967. image: {
  26968. source: "./media/characters/juri/front.svg",
  26969. extra: 1401 / 1237,
  26970. bottom: 18.5 / 1418
  26971. }
  26972. },
  26973. side: {
  26974. height: math.unit(7 + 3 / 12, "feet"),
  26975. weight: math.unit(180, "lb"),
  26976. name: "Side",
  26977. image: {
  26978. source: "./media/characters/juri/side.svg",
  26979. extra: 1424 / 1242,
  26980. bottom: 18.5 / 1447
  26981. }
  26982. },
  26983. sitting: {
  26984. height: math.unit(6, "feet"),
  26985. weight: math.unit(180, "lb"),
  26986. name: "Sitting",
  26987. image: {
  26988. source: "./media/characters/juri/sitting.svg",
  26989. extra: 1270 / 1143,
  26990. bottom: 100 / 1343
  26991. }
  26992. },
  26993. back: {
  26994. height: math.unit(7 + 3 / 12, "feet"),
  26995. weight: math.unit(180, "lb"),
  26996. name: "Back",
  26997. image: {
  26998. source: "./media/characters/juri/back.svg",
  26999. extra: 1377 / 1240,
  27000. bottom: 23.7 / 1405
  27001. }
  27002. },
  27003. maw: {
  27004. height: math.unit(2.8, "feet"),
  27005. name: "Maw",
  27006. image: {
  27007. source: "./media/characters/juri/maw.svg"
  27008. }
  27009. },
  27010. stomach: {
  27011. height: math.unit(0.89, "feet"),
  27012. preyCapacity: math.unit(4, "liters"),
  27013. name: "Stomach",
  27014. image: {
  27015. source: "./media/characters/juri/stomach.svg"
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Normal",
  27022. height: math.unit(7 + 3 / 12, "feet"),
  27023. default: true
  27024. },
  27025. ]
  27026. ))
  27027. characterMakers.push(() => makeCharacter(
  27028. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27029. {
  27030. fox: {
  27031. height: math.unit(5 + 6 / 12, "feet"),
  27032. weight: math.unit(140, "lb"),
  27033. name: "Fox",
  27034. image: {
  27035. source: "./media/characters/maxene-sita/fox.svg",
  27036. extra: 146 / 138,
  27037. bottom: 2.1 / 148.19
  27038. }
  27039. },
  27040. foxLaying: {
  27041. height: math.unit(1.70, "feet"),
  27042. weight: math.unit(140, "lb"),
  27043. name: "Fox (Laying)",
  27044. image: {
  27045. source: "./media/characters/maxene-sita/fox-laying.svg",
  27046. extra: 910 / 572,
  27047. bottom: 71 / 981
  27048. }
  27049. },
  27050. kitsune: {
  27051. height: math.unit(10, "feet"),
  27052. weight: math.unit(800, "lb"),
  27053. name: "Kitsune",
  27054. image: {
  27055. source: "./media/characters/maxene-sita/kitsune.svg",
  27056. extra: 185 / 176,
  27057. bottom: 4.7 / 189.9
  27058. }
  27059. },
  27060. hellhound: {
  27061. height: math.unit(10, "feet"),
  27062. weight: math.unit(700, "lb"),
  27063. name: "Hellhound",
  27064. image: {
  27065. source: "./media/characters/maxene-sita/hellhound.svg",
  27066. extra: 1600 / 1545,
  27067. bottom: 81 / 1681
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Normal",
  27074. height: math.unit(5 + 6 / 12, "feet"),
  27075. default: true
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27081. {
  27082. front: {
  27083. height: math.unit(3 + 4 / 12, "feet"),
  27084. weight: math.unit(70, "lb"),
  27085. name: "Front",
  27086. image: {
  27087. source: "./media/characters/maia/front.svg",
  27088. extra: 227 / 219.5,
  27089. bottom: 40 / 267
  27090. }
  27091. },
  27092. back: {
  27093. height: math.unit(3 + 4 / 12, "feet"),
  27094. weight: math.unit(70, "lb"),
  27095. name: "Back",
  27096. image: {
  27097. source: "./media/characters/maia/back.svg",
  27098. extra: 237 / 225
  27099. }
  27100. },
  27101. },
  27102. [
  27103. {
  27104. name: "Normal",
  27105. height: math.unit(3 + 4 / 12, "feet"),
  27106. default: true
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(5 + 10 / 12, "feet"),
  27115. weight: math.unit(197, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/jabaro/front.svg",
  27119. extra: 225 / 216,
  27120. bottom: 5.06 / 230
  27121. }
  27122. },
  27123. back: {
  27124. height: math.unit(5 + 10 / 12, "feet"),
  27125. weight: math.unit(197, "lb"),
  27126. name: "Back",
  27127. image: {
  27128. source: "./media/characters/jabaro/back.svg",
  27129. extra: 225 / 219,
  27130. bottom: 1.9 / 227
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(5 + 10 / 12, "feet"),
  27138. default: true
  27139. },
  27140. ]
  27141. ))
  27142. characterMakers.push(() => makeCharacter(
  27143. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27144. {
  27145. front: {
  27146. height: math.unit(5 + 8 / 12, "feet"),
  27147. weight: math.unit(139, "lb"),
  27148. name: "Front",
  27149. image: {
  27150. source: "./media/characters/risa/front.svg",
  27151. extra: 270 / 260,
  27152. bottom: 11.2 / 282
  27153. }
  27154. },
  27155. back: {
  27156. height: math.unit(5 + 8 / 12, "feet"),
  27157. weight: math.unit(139, "lb"),
  27158. name: "Back",
  27159. image: {
  27160. source: "./media/characters/risa/back.svg",
  27161. extra: 264 / 255,
  27162. bottom: 4 / 268
  27163. }
  27164. },
  27165. },
  27166. [
  27167. {
  27168. name: "Normal",
  27169. height: math.unit(5 + 8 / 12, "feet"),
  27170. default: true
  27171. },
  27172. ]
  27173. ))
  27174. characterMakers.push(() => makeCharacter(
  27175. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27176. {
  27177. front: {
  27178. height: math.unit(2 + 11 / 12, "feet"),
  27179. weight: math.unit(30, "lb"),
  27180. name: "Front",
  27181. image: {
  27182. source: "./media/characters/weatley/front.svg",
  27183. bottom: 10.7 / 414,
  27184. extra: 403.5 / 362
  27185. }
  27186. },
  27187. back: {
  27188. height: math.unit(2 + 11 / 12, "feet"),
  27189. weight: math.unit(30, "lb"),
  27190. name: "Back",
  27191. image: {
  27192. source: "./media/characters/weatley/back.svg",
  27193. bottom: 10.7 / 414,
  27194. extra: 403.5 / 362
  27195. }
  27196. },
  27197. },
  27198. [
  27199. {
  27200. name: "Normal",
  27201. height: math.unit(2 + 11 / 12, "feet"),
  27202. default: true
  27203. },
  27204. ]
  27205. ))
  27206. characterMakers.push(() => makeCharacter(
  27207. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27208. {
  27209. front: {
  27210. height: math.unit(5 + 2 / 12, "feet"),
  27211. weight: math.unit(50, "kg"),
  27212. name: "Front",
  27213. image: {
  27214. source: "./media/characters/mercury-crescent/front.svg",
  27215. extra: 1088 / 1033,
  27216. bottom: 18.9 / 1109
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Normal",
  27223. height: math.unit(5 + 2 / 12, "feet"),
  27224. default: true
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27230. {
  27231. front: {
  27232. height: math.unit(2, "feet"),
  27233. weight: math.unit(15, "kg"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/diamond-jones/front.svg",
  27237. extra: 727/723,
  27238. bottom: 46/773
  27239. }
  27240. },
  27241. },
  27242. [
  27243. {
  27244. name: "Normal",
  27245. height: math.unit(2, "feet"),
  27246. default: true
  27247. },
  27248. ]
  27249. ))
  27250. characterMakers.push(() => makeCharacter(
  27251. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27252. {
  27253. front: {
  27254. height: math.unit(3, "feet"),
  27255. weight: math.unit(30, "kg"),
  27256. name: "Front",
  27257. image: {
  27258. source: "./media/characters/sweet-bit/front.svg",
  27259. extra: 675 / 567,
  27260. bottom: 27.7 / 703
  27261. }
  27262. },
  27263. },
  27264. [
  27265. {
  27266. name: "Normal",
  27267. height: math.unit(3, "feet"),
  27268. default: true
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27274. {
  27275. side: {
  27276. height: math.unit(9.178, "feet"),
  27277. weight: math.unit(500, "lb"),
  27278. name: "Side",
  27279. image: {
  27280. source: "./media/characters/umbrazen/side.svg",
  27281. extra: 1730 / 1473,
  27282. bottom: 34.6 / 1765
  27283. }
  27284. },
  27285. },
  27286. [
  27287. {
  27288. name: "Normal",
  27289. height: math.unit(9.178, "feet"),
  27290. default: true
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(10, "feet"),
  27299. weight: math.unit(750, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/arlist/front.svg",
  27303. extra: 961 / 778,
  27304. bottom: 6.2 / 986
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(10, "feet"),
  27312. default: true
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(5 + 1 / 12, "feet"),
  27321. weight: math.unit(110, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/aradel/front.svg",
  27325. extra: 324 / 303,
  27326. bottom: 3.6 / 329.4
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Normal",
  27333. height: math.unit(5 + 1 / 12, "feet"),
  27334. default: true
  27335. },
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27340. {
  27341. dressed: {
  27342. height: math.unit(3 + 8 / 12, "feet"),
  27343. weight: math.unit(50, "lb"),
  27344. name: "Dressed",
  27345. image: {
  27346. source: "./media/characters/serryn/dressed.svg",
  27347. extra: 1792 / 1656,
  27348. bottom: 43.5 / 1840
  27349. }
  27350. },
  27351. nude: {
  27352. height: math.unit(3 + 8 / 12, "feet"),
  27353. weight: math.unit(50, "lb"),
  27354. name: "Nude",
  27355. image: {
  27356. source: "./media/characters/serryn/nude.svg",
  27357. extra: 1792 / 1656,
  27358. bottom: 43.5 / 1840
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Normal",
  27365. height: math.unit(3 + 8 / 12, "feet"),
  27366. default: true
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27372. {
  27373. front: {
  27374. height: math.unit(7 + 10 / 12, "feet"),
  27375. weight: math.unit(255, "lb"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/xavier-thyme/front.svg",
  27379. extra: 3733 / 3642,
  27380. bottom: 131 / 3869
  27381. }
  27382. },
  27383. frontRaven: {
  27384. height: math.unit(7 + 10 / 12, "feet"),
  27385. weight: math.unit(255, "lb"),
  27386. name: "Front (Raven)",
  27387. image: {
  27388. source: "./media/characters/xavier-thyme/front-raven.svg",
  27389. extra: 4385 / 3642,
  27390. bottom: 131 / 4517
  27391. }
  27392. },
  27393. },
  27394. [
  27395. {
  27396. name: "Normal",
  27397. height: math.unit(7 + 10 / 12, "feet"),
  27398. default: true
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(1.6, "m"),
  27407. weight: math.unit(50, "kg"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/kiki/front.svg",
  27411. extra: 4682 / 3610,
  27412. bottom: 115 / 4777
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Normal",
  27419. height: math.unit(1.6, "meters"),
  27420. default: true
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27426. {
  27427. front: {
  27428. height: math.unit(50, "m"),
  27429. weight: math.unit(500, "tonnes"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/ryoko/front.svg",
  27433. extra: 4632 / 3926,
  27434. bottom: 193 / 4823
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(50, "meters"),
  27442. default: true
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(30, "m"),
  27451. weight: math.unit(22, "tonnes"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/elio/front.svg",
  27455. extra: 4582 / 3720,
  27456. bottom: 236 / 4828
  27457. }
  27458. },
  27459. },
  27460. [
  27461. {
  27462. name: "Normal",
  27463. height: math.unit(30, "meters"),
  27464. default: true
  27465. },
  27466. ]
  27467. ))
  27468. characterMakers.push(() => makeCharacter(
  27469. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27470. {
  27471. front: {
  27472. height: math.unit(6 + 3 / 12, "feet"),
  27473. weight: math.unit(120, "lb"),
  27474. name: "Front",
  27475. image: {
  27476. source: "./media/characters/azura/front.svg",
  27477. extra: 1149 / 1135,
  27478. bottom: 45 / 1194
  27479. }
  27480. },
  27481. frontClothed: {
  27482. height: math.unit(6 + 3 / 12, "feet"),
  27483. weight: math.unit(120, "lb"),
  27484. name: "Front (Clothed)",
  27485. image: {
  27486. source: "./media/characters/azura/front-clothed.svg",
  27487. extra: 1149 / 1135,
  27488. bottom: 45 / 1194
  27489. }
  27490. },
  27491. },
  27492. [
  27493. {
  27494. name: "Normal",
  27495. height: math.unit(6 + 3 / 12, "feet"),
  27496. default: true
  27497. },
  27498. {
  27499. name: "Macro",
  27500. height: math.unit(20 + 6 / 12, "feet")
  27501. },
  27502. {
  27503. name: "Megamacro",
  27504. height: math.unit(12, "miles")
  27505. },
  27506. {
  27507. name: "Gigamacro",
  27508. height: math.unit(10000, "miles")
  27509. },
  27510. {
  27511. name: "Teramacro",
  27512. height: math.unit(900000, "miles")
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27518. {
  27519. front: {
  27520. height: math.unit(12, "feet"),
  27521. weight: math.unit(1, "ton"),
  27522. capacity: math.unit(660000, "gallons"),
  27523. name: "Front",
  27524. image: {
  27525. source: "./media/characters/zeus/front.svg",
  27526. extra: 5005 / 4717,
  27527. bottom: 363 / 5388
  27528. }
  27529. },
  27530. },
  27531. [
  27532. {
  27533. name: "Normal",
  27534. height: math.unit(12, "feet")
  27535. },
  27536. {
  27537. name: "Preferred Size",
  27538. height: math.unit(0.5, "miles"),
  27539. default: true
  27540. },
  27541. {
  27542. name: "Giga Horse",
  27543. height: math.unit(300, "miles")
  27544. },
  27545. {
  27546. name: "Riding Planets",
  27547. height: math.unit(30, "megameters")
  27548. },
  27549. {
  27550. name: "Cosmic Giant",
  27551. height: math.unit(3, "zettameters")
  27552. },
  27553. {
  27554. name: "Breeding God",
  27555. height: math.unit(9.92e22, "yottameters")
  27556. },
  27557. ]
  27558. ))
  27559. characterMakers.push(() => makeCharacter(
  27560. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27561. {
  27562. side: {
  27563. height: math.unit(9, "feet"),
  27564. weight: math.unit(1500, "kg"),
  27565. name: "Side",
  27566. image: {
  27567. source: "./media/characters/fang/side.svg",
  27568. extra: 924 / 866,
  27569. bottom: 47.5 / 972.3
  27570. }
  27571. },
  27572. },
  27573. [
  27574. {
  27575. name: "Normal",
  27576. height: math.unit(9, "feet"),
  27577. default: true
  27578. },
  27579. {
  27580. name: "Macro",
  27581. height: math.unit(75 + 6 / 12, "feet")
  27582. },
  27583. {
  27584. name: "Teramacro",
  27585. height: math.unit(50000, "miles")
  27586. },
  27587. ]
  27588. ))
  27589. characterMakers.push(() => makeCharacter(
  27590. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27591. {
  27592. front: {
  27593. height: math.unit(10, "feet"),
  27594. weight: math.unit(2, "tons"),
  27595. name: "Front",
  27596. image: {
  27597. source: "./media/characters/rekhit/front.svg",
  27598. extra: 2796 / 2590,
  27599. bottom: 225 / 3022
  27600. }
  27601. },
  27602. },
  27603. [
  27604. {
  27605. name: "Normal",
  27606. height: math.unit(10, "feet"),
  27607. default: true
  27608. },
  27609. {
  27610. name: "Macro",
  27611. height: math.unit(500, "feet")
  27612. },
  27613. ]
  27614. ))
  27615. characterMakers.push(() => makeCharacter(
  27616. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27617. {
  27618. front: {
  27619. height: math.unit(7 + 6.451 / 12, "feet"),
  27620. weight: math.unit(310, "lb"),
  27621. name: "Front",
  27622. image: {
  27623. source: "./media/characters/dahlia-verrick/front.svg",
  27624. extra: 1488 / 1365,
  27625. bottom: 6.2 / 1495
  27626. }
  27627. },
  27628. back: {
  27629. height: math.unit(7 + 6.451 / 12, "feet"),
  27630. weight: math.unit(310, "lb"),
  27631. name: "Back",
  27632. image: {
  27633. source: "./media/characters/dahlia-verrick/back.svg",
  27634. extra: 1472 / 1351,
  27635. bottom: 5.28 / 1477
  27636. }
  27637. },
  27638. frontBusiness: {
  27639. height: math.unit(7 + 6.451 / 12, "feet"),
  27640. weight: math.unit(200, "lb"),
  27641. name: "Front (Business)",
  27642. image: {
  27643. source: "./media/characters/dahlia-verrick/front-business.svg",
  27644. extra: 1478 / 1381,
  27645. bottom: 5.5 / 1484
  27646. }
  27647. },
  27648. frontCasual: {
  27649. height: math.unit(7 + 6.451 / 12, "feet"),
  27650. weight: math.unit(200, "lb"),
  27651. name: "Front (Casual)",
  27652. image: {
  27653. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27654. extra: 1478 / 1381,
  27655. bottom: 5.5 / 1484
  27656. }
  27657. },
  27658. },
  27659. [
  27660. {
  27661. name: "Travel-Sized",
  27662. height: math.unit(7.45, "inches")
  27663. },
  27664. {
  27665. name: "Normal",
  27666. height: math.unit(7 + 6.451 / 12, "feet"),
  27667. default: true
  27668. },
  27669. {
  27670. name: "Hitting the Town",
  27671. height: math.unit(37 + 8 / 12, "feet")
  27672. },
  27673. {
  27674. name: "Stomp in the Suburbs",
  27675. height: math.unit(964 + 9.728 / 12, "feet")
  27676. },
  27677. {
  27678. name: "Sit on the City",
  27679. height: math.unit(61747 + 10.592 / 12, "feet")
  27680. },
  27681. {
  27682. name: "Glomp the Globe",
  27683. height: math.unit(252919327 + 4.832 / 12, "feet")
  27684. },
  27685. ]
  27686. ))
  27687. characterMakers.push(() => makeCharacter(
  27688. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27689. {
  27690. front: {
  27691. height: math.unit(6 + 4 / 12, "feet"),
  27692. weight: math.unit(320, "lb"),
  27693. name: "Front",
  27694. image: {
  27695. source: "./media/characters/balina-mahigan/front.svg",
  27696. extra: 447 / 428,
  27697. bottom: 18 / 466
  27698. }
  27699. },
  27700. back: {
  27701. height: math.unit(6 + 4 / 12, "feet"),
  27702. weight: math.unit(320, "lb"),
  27703. name: "Back",
  27704. image: {
  27705. source: "./media/characters/balina-mahigan/back.svg",
  27706. extra: 445 / 428,
  27707. bottom: 4.07 / 448
  27708. }
  27709. },
  27710. arm: {
  27711. height: math.unit(1.88, "feet"),
  27712. name: "Arm",
  27713. image: {
  27714. source: "./media/characters/balina-mahigan/arm.svg"
  27715. }
  27716. },
  27717. backPort: {
  27718. height: math.unit(0.685, "feet"),
  27719. name: "Back Port",
  27720. image: {
  27721. source: "./media/characters/balina-mahigan/back-port.svg"
  27722. }
  27723. },
  27724. hoofpaw: {
  27725. height: math.unit(1.41, "feet"),
  27726. name: "Hoofpaw",
  27727. image: {
  27728. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27729. }
  27730. },
  27731. leftHandBack: {
  27732. height: math.unit(0.938, "feet"),
  27733. name: "Left Hand (Back)",
  27734. image: {
  27735. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27736. }
  27737. },
  27738. leftHandFront: {
  27739. height: math.unit(0.938, "feet"),
  27740. name: "Left Hand (Front)",
  27741. image: {
  27742. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27743. }
  27744. },
  27745. rightHandBack: {
  27746. height: math.unit(0.95, "feet"),
  27747. name: "Right Hand (Back)",
  27748. image: {
  27749. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27750. }
  27751. },
  27752. rightHandFront: {
  27753. height: math.unit(0.95, "feet"),
  27754. name: "Right Hand (Front)",
  27755. image: {
  27756. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27757. }
  27758. },
  27759. },
  27760. [
  27761. {
  27762. name: "Normal",
  27763. height: math.unit(6 + 4 / 12, "feet"),
  27764. default: true
  27765. },
  27766. ]
  27767. ))
  27768. characterMakers.push(() => makeCharacter(
  27769. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27770. {
  27771. front: {
  27772. height: math.unit(6, "feet"),
  27773. weight: math.unit(320, "lb"),
  27774. name: "Front",
  27775. image: {
  27776. source: "./media/characters/balina-mejeri/front.svg",
  27777. extra: 517 / 488,
  27778. bottom: 44.2 / 561
  27779. }
  27780. },
  27781. },
  27782. [
  27783. {
  27784. name: "Normal",
  27785. height: math.unit(6 + 4 / 12, "feet")
  27786. },
  27787. {
  27788. name: "Business",
  27789. height: math.unit(155, "feet"),
  27790. default: true
  27791. },
  27792. ]
  27793. ))
  27794. characterMakers.push(() => makeCharacter(
  27795. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27796. {
  27797. kneeling: {
  27798. height: math.unit(6 + 4 / 12, "feet"),
  27799. weight: math.unit(300 * 20, "lb"),
  27800. name: "Kneeling",
  27801. image: {
  27802. source: "./media/characters/balbarian/kneeling.svg",
  27803. extra: 922 / 862,
  27804. bottom: 42.4 / 965
  27805. }
  27806. },
  27807. },
  27808. [
  27809. {
  27810. name: "Normal",
  27811. height: math.unit(6 + 4 / 12, "feet")
  27812. },
  27813. {
  27814. name: "Treasured",
  27815. height: math.unit(18 + 9 / 12, "feet"),
  27816. default: true
  27817. },
  27818. {
  27819. name: "Macro",
  27820. height: math.unit(900, "feet")
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(6 + 4 / 12, "feet"),
  27829. weight: math.unit(325, "lb"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/balina-amarini/front.svg",
  27833. extra: 415 / 403,
  27834. bottom: 19 / 433.4
  27835. }
  27836. },
  27837. back: {
  27838. height: math.unit(6 + 4 / 12, "feet"),
  27839. weight: math.unit(325, "lb"),
  27840. name: "Back",
  27841. image: {
  27842. source: "./media/characters/balina-amarini/back.svg",
  27843. extra: 415 / 403,
  27844. bottom: 13.5 / 432
  27845. }
  27846. },
  27847. overdrive: {
  27848. height: math.unit(6 + 4 / 12, "feet"),
  27849. weight: math.unit(400, "lb"),
  27850. name: "Overdrive",
  27851. image: {
  27852. source: "./media/characters/balina-amarini/overdrive.svg",
  27853. extra: 269 / 259,
  27854. bottom: 12 / 282
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Boom",
  27861. height: math.unit(9 + 10 / 12, "feet"),
  27862. default: true
  27863. },
  27864. {
  27865. name: "Macro",
  27866. height: math.unit(280, "feet")
  27867. },
  27868. ]
  27869. ))
  27870. characterMakers.push(() => makeCharacter(
  27871. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27872. {
  27873. goddess: {
  27874. height: math.unit(600, "feet"),
  27875. weight: math.unit(2000000, "tons"),
  27876. name: "Goddess",
  27877. image: {
  27878. source: "./media/characters/lady-kubwa/goddess.svg",
  27879. extra: 1240.5 / 1223,
  27880. bottom: 22 / 1263
  27881. }
  27882. },
  27883. goddesser: {
  27884. height: math.unit(900, "feet"),
  27885. weight: math.unit(20000000, "lb"),
  27886. name: "Goddess-er",
  27887. image: {
  27888. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27889. extra: 899 / 888,
  27890. bottom: 12.6 / 912
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Macro",
  27897. height: math.unit(600, "feet"),
  27898. default: true
  27899. },
  27900. {
  27901. name: "Megamacro",
  27902. height: math.unit(250, "miles")
  27903. },
  27904. ]
  27905. ))
  27906. characterMakers.push(() => makeCharacter(
  27907. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27908. {
  27909. front: {
  27910. height: math.unit(7 + 7 / 12, "feet"),
  27911. weight: math.unit(250, "lb"),
  27912. name: "Front",
  27913. image: {
  27914. source: "./media/characters/tala-grovehorn/front.svg",
  27915. extra: 2636 / 2525,
  27916. bottom: 147 / 2781
  27917. }
  27918. },
  27919. back: {
  27920. height: math.unit(7 + 7 / 12, "feet"),
  27921. weight: math.unit(250, "lb"),
  27922. name: "Back",
  27923. image: {
  27924. source: "./media/characters/tala-grovehorn/back.svg",
  27925. extra: 2635 / 2539,
  27926. bottom: 100 / 2732.8
  27927. }
  27928. },
  27929. mouth: {
  27930. height: math.unit(1.15, "feet"),
  27931. name: "Mouth",
  27932. image: {
  27933. source: "./media/characters/tala-grovehorn/mouth.svg"
  27934. }
  27935. },
  27936. dick: {
  27937. height: math.unit(2.36, "feet"),
  27938. name: "Dick",
  27939. image: {
  27940. source: "./media/characters/tala-grovehorn/dick.svg"
  27941. }
  27942. },
  27943. slit: {
  27944. height: math.unit(0.61, "feet"),
  27945. name: "Slit",
  27946. image: {
  27947. source: "./media/characters/tala-grovehorn/slit.svg"
  27948. }
  27949. },
  27950. },
  27951. [
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27956. {
  27957. front: {
  27958. height: math.unit(7 + 7 / 12, "feet"),
  27959. weight: math.unit(225, "lb"),
  27960. name: "Front",
  27961. image: {
  27962. source: "./media/characters/epona/front.svg",
  27963. extra: 2445 / 2290,
  27964. bottom: 251 / 2696
  27965. }
  27966. },
  27967. back: {
  27968. height: math.unit(7 + 7 / 12, "feet"),
  27969. weight: math.unit(225, "lb"),
  27970. name: "Back",
  27971. image: {
  27972. source: "./media/characters/epona/back.svg",
  27973. extra: 2546 / 2408,
  27974. bottom: 44 / 2589
  27975. }
  27976. },
  27977. genitals: {
  27978. height: math.unit(1.5, "feet"),
  27979. name: "Genitals",
  27980. image: {
  27981. source: "./media/characters/epona/genitals.svg"
  27982. }
  27983. },
  27984. },
  27985. [
  27986. {
  27987. name: "Normal",
  27988. height: math.unit(7 + 7 / 12, "feet"),
  27989. default: true
  27990. },
  27991. ]
  27992. ))
  27993. characterMakers.push(() => makeCharacter(
  27994. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27995. {
  27996. front: {
  27997. height: math.unit(7, "feet"),
  27998. weight: math.unit(518, "lb"),
  27999. name: "Front",
  28000. image: {
  28001. source: "./media/characters/avia-bloodbourn/front.svg",
  28002. extra: 1466 / 1350,
  28003. bottom: 65 / 1527
  28004. }
  28005. },
  28006. },
  28007. [
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(9.35, "feet"),
  28015. weight: math.unit(600, "lb"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/amera/front.svg",
  28019. extra: 891 / 818,
  28020. bottom: 30 / 922.7
  28021. }
  28022. },
  28023. back: {
  28024. height: math.unit(9.35, "feet"),
  28025. weight: math.unit(600, "lb"),
  28026. name: "Back",
  28027. image: {
  28028. source: "./media/characters/amera/back.svg",
  28029. extra: 876 / 824,
  28030. bottom: 6.8 / 884
  28031. }
  28032. },
  28033. dick: {
  28034. height: math.unit(2.14, "feet"),
  28035. name: "Dick",
  28036. image: {
  28037. source: "./media/characters/amera/dick.svg"
  28038. }
  28039. },
  28040. },
  28041. [
  28042. {
  28043. name: "Normal",
  28044. height: math.unit(9.35, "feet"),
  28045. default: true
  28046. },
  28047. ]
  28048. ))
  28049. characterMakers.push(() => makeCharacter(
  28050. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28051. {
  28052. kneeling: {
  28053. height: math.unit(3 + 4 / 12, "feet"),
  28054. weight: math.unit(90, "lb"),
  28055. name: "Kneeling",
  28056. image: {
  28057. source: "./media/characters/rosewen/kneeling.svg",
  28058. extra: 1835 / 1571,
  28059. bottom: 27.7 / 1862
  28060. }
  28061. },
  28062. },
  28063. [
  28064. {
  28065. name: "Normal",
  28066. height: math.unit(3 + 4 / 12, "feet"),
  28067. default: true
  28068. },
  28069. ]
  28070. ))
  28071. characterMakers.push(() => makeCharacter(
  28072. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28073. {
  28074. front: {
  28075. height: math.unit(5 + 10 / 12, "feet"),
  28076. weight: math.unit(200, "lb"),
  28077. name: "Front",
  28078. image: {
  28079. source: "./media/characters/sabah/front.svg",
  28080. extra: 849 / 763,
  28081. bottom: 33.9 / 881
  28082. }
  28083. },
  28084. },
  28085. [
  28086. {
  28087. name: "Normal",
  28088. height: math.unit(5 + 10 / 12, "feet"),
  28089. default: true
  28090. },
  28091. ]
  28092. ))
  28093. characterMakers.push(() => makeCharacter(
  28094. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28095. {
  28096. front: {
  28097. height: math.unit(3 + 5 / 12, "feet"),
  28098. weight: math.unit(40, "kg"),
  28099. name: "Front",
  28100. image: {
  28101. source: "./media/characters/purple-flame/front.svg",
  28102. extra: 1577 / 1412,
  28103. bottom: 97 / 1694
  28104. }
  28105. },
  28106. frontDressed: {
  28107. height: math.unit(3 + 5 / 12, "feet"),
  28108. weight: math.unit(40, "kg"),
  28109. name: "Front (Dressed)",
  28110. image: {
  28111. source: "./media/characters/purple-flame/front-dressed.svg",
  28112. extra: 1577 / 1412,
  28113. bottom: 97 / 1694
  28114. }
  28115. },
  28116. headphones: {
  28117. height: math.unit(0.85, "feet"),
  28118. name: "Headphones",
  28119. image: {
  28120. source: "./media/characters/purple-flame/headphones.svg"
  28121. }
  28122. },
  28123. },
  28124. [
  28125. {
  28126. name: "Really Small",
  28127. height: math.unit(5, "cm")
  28128. },
  28129. {
  28130. name: "Micro",
  28131. height: math.unit(1 + 5 / 12, "feet")
  28132. },
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(3 + 5 / 12, "feet"),
  28136. default: true
  28137. },
  28138. {
  28139. name: "Minimacro",
  28140. height: math.unit(125, "feet")
  28141. },
  28142. {
  28143. name: "Macro",
  28144. height: math.unit(0.5, "miles")
  28145. },
  28146. {
  28147. name: "Megamacro",
  28148. height: math.unit(50, "miles")
  28149. },
  28150. {
  28151. name: "Gigantic",
  28152. height: math.unit(750, "miles")
  28153. },
  28154. {
  28155. name: "Planetary",
  28156. height: math.unit(15000, "miles")
  28157. },
  28158. ]
  28159. ))
  28160. characterMakers.push(() => makeCharacter(
  28161. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28162. {
  28163. front: {
  28164. height: math.unit(14, "feet"),
  28165. weight: math.unit(959, "lb"),
  28166. name: "Front",
  28167. image: {
  28168. source: "./media/characters/arsenal/front.svg",
  28169. extra: 2357 / 2157,
  28170. bottom: 93 / 2458
  28171. }
  28172. },
  28173. },
  28174. [
  28175. {
  28176. name: "Normal",
  28177. height: math.unit(14, "feet"),
  28178. default: true
  28179. },
  28180. ]
  28181. ))
  28182. characterMakers.push(() => makeCharacter(
  28183. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28184. {
  28185. front: {
  28186. height: math.unit(6, "feet"),
  28187. weight: math.unit(150, "lb"),
  28188. name: "Front",
  28189. image: {
  28190. source: "./media/characters/adira/front.svg",
  28191. extra: 1078 / 1029,
  28192. bottom: 87 / 1166
  28193. }
  28194. },
  28195. },
  28196. [
  28197. {
  28198. name: "Micro",
  28199. height: math.unit(4, "inches"),
  28200. default: true
  28201. },
  28202. {
  28203. name: "Macro",
  28204. height: math.unit(50, "feet")
  28205. },
  28206. ]
  28207. ))
  28208. characterMakers.push(() => makeCharacter(
  28209. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28210. {
  28211. front: {
  28212. height: math.unit(16, "feet"),
  28213. weight: math.unit(1000, "lb"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/grim/front.svg",
  28217. extra: 622 / 614,
  28218. bottom: 18.1 / 642
  28219. }
  28220. },
  28221. back: {
  28222. height: math.unit(16, "feet"),
  28223. weight: math.unit(1000, "lb"),
  28224. name: "Back",
  28225. image: {
  28226. source: "./media/characters/grim/back.svg",
  28227. extra: 610.6 / 602,
  28228. bottom: 40.8 / 652
  28229. }
  28230. },
  28231. hunched: {
  28232. height: math.unit(9.75, "feet"),
  28233. weight: math.unit(1000, "lb"),
  28234. name: "Hunched",
  28235. image: {
  28236. source: "./media/characters/grim/hunched.svg",
  28237. extra: 304 / 297,
  28238. bottom: 35.4 / 394
  28239. }
  28240. },
  28241. },
  28242. [
  28243. {
  28244. name: "Normal",
  28245. height: math.unit(16, "feet"),
  28246. default: true
  28247. },
  28248. ]
  28249. ))
  28250. characterMakers.push(() => makeCharacter(
  28251. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28252. {
  28253. front: {
  28254. height: math.unit(2.3, "meters"),
  28255. weight: math.unit(300, "lb"),
  28256. name: "Front",
  28257. image: {
  28258. source: "./media/characters/sinja/front-sfw.svg",
  28259. extra: 1393 / 1294,
  28260. bottom: 70 / 1463
  28261. }
  28262. },
  28263. frontNsfw: {
  28264. height: math.unit(2.3, "meters"),
  28265. weight: math.unit(300, "lb"),
  28266. name: "Front (NSFW)",
  28267. image: {
  28268. source: "./media/characters/sinja/front-nsfw.svg",
  28269. extra: 1393 / 1294,
  28270. bottom: 70 / 1463
  28271. }
  28272. },
  28273. back: {
  28274. height: math.unit(2.3, "meters"),
  28275. weight: math.unit(300, "lb"),
  28276. name: "Back",
  28277. image: {
  28278. source: "./media/characters/sinja/back.svg",
  28279. extra: 1393 / 1294,
  28280. bottom: 70 / 1463
  28281. }
  28282. },
  28283. head: {
  28284. height: math.unit(1.771, "feet"),
  28285. name: "Head",
  28286. image: {
  28287. source: "./media/characters/sinja/head.svg"
  28288. }
  28289. },
  28290. slit: {
  28291. height: math.unit(0.8, "feet"),
  28292. name: "Slit",
  28293. image: {
  28294. source: "./media/characters/sinja/slit.svg"
  28295. }
  28296. },
  28297. },
  28298. [
  28299. {
  28300. name: "Normal",
  28301. height: math.unit(2.3, "meters")
  28302. },
  28303. {
  28304. name: "Macro",
  28305. height: math.unit(91, "meters"),
  28306. default: true
  28307. },
  28308. {
  28309. name: "Megamacro",
  28310. height: math.unit(91440, "meters")
  28311. },
  28312. {
  28313. name: "Gigamacro",
  28314. height: math.unit(60960000, "meters")
  28315. },
  28316. {
  28317. name: "Teramacro",
  28318. height: math.unit(9144000000, "meters")
  28319. },
  28320. ]
  28321. ))
  28322. characterMakers.push(() => makeCharacter(
  28323. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28324. {
  28325. front: {
  28326. height: math.unit(1.7, "meters"),
  28327. weight: math.unit(130, "lb"),
  28328. name: "Front",
  28329. image: {
  28330. source: "./media/characters/kyu/front.svg",
  28331. extra: 415 / 395,
  28332. bottom: 5 / 420
  28333. }
  28334. },
  28335. head: {
  28336. height: math.unit(1.75, "feet"),
  28337. name: "Head",
  28338. image: {
  28339. source: "./media/characters/kyu/head.svg"
  28340. }
  28341. },
  28342. foot: {
  28343. height: math.unit(0.81, "feet"),
  28344. name: "Foot",
  28345. image: {
  28346. source: "./media/characters/kyu/foot.svg"
  28347. }
  28348. },
  28349. },
  28350. [
  28351. {
  28352. name: "Normal",
  28353. height: math.unit(1.7, "meters")
  28354. },
  28355. {
  28356. name: "Macro",
  28357. height: math.unit(131, "feet"),
  28358. default: true
  28359. },
  28360. {
  28361. name: "Megamacro",
  28362. height: math.unit(91440, "meters")
  28363. },
  28364. {
  28365. name: "Gigamacro",
  28366. height: math.unit(60960000, "meters")
  28367. },
  28368. {
  28369. name: "Teramacro",
  28370. height: math.unit(9144000000, "meters")
  28371. },
  28372. ]
  28373. ))
  28374. characterMakers.push(() => makeCharacter(
  28375. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28376. {
  28377. front: {
  28378. height: math.unit(7 + 1 / 12, "feet"),
  28379. weight: math.unit(250, "lb"),
  28380. name: "Front",
  28381. image: {
  28382. source: "./media/characters/joey/front.svg",
  28383. extra: 1791 / 1537,
  28384. bottom: 28 / 1816
  28385. }
  28386. },
  28387. },
  28388. [
  28389. {
  28390. name: "Micro",
  28391. height: math.unit(3, "inches")
  28392. },
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(7 + 1 / 12, "feet"),
  28396. default: true
  28397. },
  28398. ]
  28399. ))
  28400. characterMakers.push(() => makeCharacter(
  28401. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28402. {
  28403. front: {
  28404. height: math.unit(165, "cm"),
  28405. weight: math.unit(140, "lb"),
  28406. name: "Front",
  28407. image: {
  28408. source: "./media/characters/sam-evans/front.svg",
  28409. extra: 3417 / 3230,
  28410. bottom: 41.3 / 3417
  28411. }
  28412. },
  28413. frontSixTails: {
  28414. height: math.unit(165, "cm"),
  28415. weight: math.unit(140, "lb"),
  28416. name: "Front-six-tails",
  28417. image: {
  28418. source: "./media/characters/sam-evans/front-six-tails.svg",
  28419. extra: 3417 / 3230,
  28420. bottom: 41.3 / 3417
  28421. }
  28422. },
  28423. back: {
  28424. height: math.unit(165, "cm"),
  28425. weight: math.unit(140, "lb"),
  28426. name: "Back",
  28427. image: {
  28428. source: "./media/characters/sam-evans/back.svg",
  28429. extra: 3227 / 3032,
  28430. bottom: 6.8 / 3234
  28431. }
  28432. },
  28433. face: {
  28434. height: math.unit(0.68, "feet"),
  28435. name: "Face",
  28436. image: {
  28437. source: "./media/characters/sam-evans/face.svg"
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(165, "cm"),
  28445. default: true
  28446. },
  28447. {
  28448. name: "Macro",
  28449. height: math.unit(100, "meters")
  28450. },
  28451. {
  28452. name: "Macro+",
  28453. height: math.unit(800, "meters")
  28454. },
  28455. {
  28456. name: "Macro++",
  28457. height: math.unit(3, "km")
  28458. },
  28459. {
  28460. name: "Macro+++",
  28461. height: math.unit(30, "km")
  28462. },
  28463. ]
  28464. ))
  28465. characterMakers.push(() => makeCharacter(
  28466. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28467. {
  28468. front: {
  28469. height: math.unit(10, "feet"),
  28470. weight: math.unit(750, "lb"),
  28471. name: "Front",
  28472. image: {
  28473. source: "./media/characters/juliet-a/front.svg",
  28474. extra: 1766 / 1720,
  28475. bottom: 43 / 1809
  28476. }
  28477. },
  28478. back: {
  28479. height: math.unit(10, "feet"),
  28480. weight: math.unit(750, "lb"),
  28481. name: "Back",
  28482. image: {
  28483. source: "./media/characters/juliet-a/back.svg",
  28484. extra: 1781 / 1734,
  28485. bottom: 35 / 1810,
  28486. }
  28487. },
  28488. },
  28489. [
  28490. {
  28491. name: "Normal",
  28492. height: math.unit(10, "feet"),
  28493. default: true
  28494. },
  28495. {
  28496. name: "Dragon Form",
  28497. height: math.unit(250, "feet")
  28498. },
  28499. {
  28500. name: "Macro",
  28501. height: math.unit(1000, "feet")
  28502. },
  28503. {
  28504. name: "Megamacro",
  28505. height: math.unit(10000, "feet")
  28506. }
  28507. ]
  28508. ))
  28509. characterMakers.push(() => makeCharacter(
  28510. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28511. {
  28512. regular: {
  28513. height: math.unit(7 + 3 / 12, "feet"),
  28514. weight: math.unit(260, "lb"),
  28515. name: "Regular",
  28516. image: {
  28517. source: "./media/characters/wild/regular.svg",
  28518. extra: 97.45 / 92,
  28519. bottom: 6.8 / 104.3
  28520. }
  28521. },
  28522. biggums: {
  28523. height: math.unit(8 + 6 / 12, "feet"),
  28524. weight: math.unit(425, "lb"),
  28525. name: "Biggums",
  28526. image: {
  28527. source: "./media/characters/wild/biggums.svg",
  28528. extra: 97.45 / 92,
  28529. bottom: 7.5 / 132.34
  28530. }
  28531. },
  28532. mawRegular: {
  28533. height: math.unit(1.24, "feet"),
  28534. name: "Maw (Regular)",
  28535. image: {
  28536. source: "./media/characters/wild/maw.svg"
  28537. }
  28538. },
  28539. mawBiggums: {
  28540. height: math.unit(1.47, "feet"),
  28541. name: "Maw (Biggums)",
  28542. image: {
  28543. source: "./media/characters/wild/maw.svg"
  28544. }
  28545. },
  28546. },
  28547. [
  28548. {
  28549. name: "Normal",
  28550. height: math.unit(7 + 3 / 12, "feet"),
  28551. default: true
  28552. },
  28553. ]
  28554. ))
  28555. characterMakers.push(() => makeCharacter(
  28556. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28557. {
  28558. front: {
  28559. height: math.unit(2.5, "meters"),
  28560. weight: math.unit(200, "kg"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/vidar/front.svg",
  28564. extra: 2994 / 2795,
  28565. bottom: 56 / 3061
  28566. }
  28567. },
  28568. back: {
  28569. height: math.unit(2.5, "meters"),
  28570. weight: math.unit(200, "kg"),
  28571. name: "Back",
  28572. image: {
  28573. source: "./media/characters/vidar/back.svg",
  28574. extra: 3131 / 2928,
  28575. bottom: 13.5 / 3141.5
  28576. }
  28577. },
  28578. feral: {
  28579. height: math.unit(2.5, "meters"),
  28580. weight: math.unit(2000, "kg"),
  28581. name: "Feral",
  28582. image: {
  28583. source: "./media/characters/vidar/feral.svg",
  28584. extra: 2790 / 1765,
  28585. bottom: 6 / 2796
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(2.5, "meters"),
  28593. default: true
  28594. },
  28595. {
  28596. name: "Macro",
  28597. height: math.unit(100, "meters")
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(5 + 9 / 12, "feet"),
  28606. weight: math.unit(120, "lb"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/ash/front.svg",
  28610. extra: 2189 / 1961,
  28611. bottom: 5.2 / 2194
  28612. }
  28613. },
  28614. },
  28615. [
  28616. {
  28617. name: "Normal",
  28618. height: math.unit(5 + 9 / 12, "feet"),
  28619. default: true
  28620. },
  28621. ]
  28622. ))
  28623. characterMakers.push(() => makeCharacter(
  28624. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28625. {
  28626. front: {
  28627. height: math.unit(9, "feet"),
  28628. weight: math.unit(10000, "lb"),
  28629. name: "Front",
  28630. image: {
  28631. source: "./media/characters/gygabite/front.svg",
  28632. bottom: 31.7 / 537.8,
  28633. extra: 505 / 370
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Normal",
  28640. height: math.unit(9, "feet"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(12, "feet"),
  28650. weight: math.unit(4000, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/p0tat0/front.svg",
  28654. extra: 1065 / 921,
  28655. bottom: 55.7 / 1121.25
  28656. }
  28657. },
  28658. },
  28659. [
  28660. {
  28661. name: "Normal",
  28662. height: math.unit(12, "feet"),
  28663. default: true
  28664. },
  28665. ]
  28666. ))
  28667. characterMakers.push(() => makeCharacter(
  28668. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28669. {
  28670. side: {
  28671. height: math.unit(6.5, "feet"),
  28672. weight: math.unit(800, "lb"),
  28673. name: "Side",
  28674. image: {
  28675. source: "./media/characters/dusk/side.svg",
  28676. extra: 615 / 373,
  28677. bottom: 53 / 664
  28678. }
  28679. },
  28680. sitting: {
  28681. height: math.unit(7, "feet"),
  28682. weight: math.unit(800, "lb"),
  28683. name: "Sitting",
  28684. image: {
  28685. source: "./media/characters/dusk/sitting.svg",
  28686. extra: 753 / 425,
  28687. bottom: 33 / 774
  28688. }
  28689. },
  28690. head: {
  28691. height: math.unit(6.1, "feet"),
  28692. name: "Head",
  28693. image: {
  28694. source: "./media/characters/dusk/head.svg"
  28695. }
  28696. },
  28697. },
  28698. [
  28699. {
  28700. name: "Normal",
  28701. height: math.unit(7, "feet"),
  28702. default: true
  28703. },
  28704. ]
  28705. ))
  28706. characterMakers.push(() => makeCharacter(
  28707. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28708. {
  28709. front: {
  28710. height: math.unit(15, "feet"),
  28711. weight: math.unit(7000, "lb"),
  28712. name: "Front",
  28713. image: {
  28714. source: "./media/characters/jay-direwolf/front.svg",
  28715. extra: 1810 / 1732,
  28716. bottom: 66 / 1892
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Normal",
  28723. height: math.unit(15, "feet"),
  28724. default: true
  28725. },
  28726. ]
  28727. ))
  28728. characterMakers.push(() => makeCharacter(
  28729. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28730. {
  28731. front: {
  28732. height: math.unit(4 + 9 / 12, "feet"),
  28733. weight: math.unit(130, "lb"),
  28734. name: "Front",
  28735. image: {
  28736. source: "./media/characters/anchovie/front.svg",
  28737. extra: 382 / 350,
  28738. bottom: 25 / 409
  28739. }
  28740. },
  28741. back: {
  28742. height: math.unit(4 + 9 / 12, "feet"),
  28743. weight: math.unit(130, "lb"),
  28744. name: "Back",
  28745. image: {
  28746. source: "./media/characters/anchovie/back.svg",
  28747. extra: 385 / 352,
  28748. bottom: 16.6 / 402
  28749. }
  28750. },
  28751. frontDressed: {
  28752. height: math.unit(4 + 9 / 12, "feet"),
  28753. weight: math.unit(130, "lb"),
  28754. name: "Front (Dressed)",
  28755. image: {
  28756. source: "./media/characters/anchovie/front-dressed.svg",
  28757. extra: 382 / 350,
  28758. bottom: 25 / 409
  28759. }
  28760. },
  28761. backDressed: {
  28762. height: math.unit(4 + 9 / 12, "feet"),
  28763. weight: math.unit(130, "lb"),
  28764. name: "Back (Dressed)",
  28765. image: {
  28766. source: "./media/characters/anchovie/back-dressed.svg",
  28767. extra: 385 / 352,
  28768. bottom: 16.6 / 402
  28769. }
  28770. },
  28771. },
  28772. [
  28773. {
  28774. name: "Micro",
  28775. height: math.unit(6.4, "inches")
  28776. },
  28777. {
  28778. name: "Normal",
  28779. height: math.unit(4 + 9 / 12, "feet"),
  28780. default: true
  28781. },
  28782. ]
  28783. ))
  28784. characterMakers.push(() => makeCharacter(
  28785. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28786. {
  28787. front: {
  28788. height: math.unit(2, "meters"),
  28789. weight: math.unit(180, "lb"),
  28790. name: "Front",
  28791. image: {
  28792. source: "./media/characters/acidrenamon/front.svg",
  28793. extra: 987 / 890,
  28794. bottom: 22.8 / 1009
  28795. }
  28796. },
  28797. back: {
  28798. height: math.unit(2, "meters"),
  28799. weight: math.unit(180, "lb"),
  28800. name: "Back",
  28801. image: {
  28802. source: "./media/characters/acidrenamon/back.svg",
  28803. extra: 983 / 891,
  28804. bottom: 8.4 / 992
  28805. }
  28806. },
  28807. head: {
  28808. height: math.unit(1.92, "feet"),
  28809. name: "Head",
  28810. image: {
  28811. source: "./media/characters/acidrenamon/head.svg"
  28812. }
  28813. },
  28814. rump: {
  28815. height: math.unit(1.72, "feet"),
  28816. name: "Rump",
  28817. image: {
  28818. source: "./media/characters/acidrenamon/rump.svg"
  28819. }
  28820. },
  28821. tail: {
  28822. height: math.unit(4.2, "feet"),
  28823. name: "Tail",
  28824. image: {
  28825. source: "./media/characters/acidrenamon/tail.svg"
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Normal",
  28832. height: math.unit(2, "meters"),
  28833. default: true
  28834. },
  28835. {
  28836. name: "Minimacro",
  28837. height: math.unit(7, "meters")
  28838. },
  28839. {
  28840. name: "Macro",
  28841. height: math.unit(200, "meters")
  28842. },
  28843. {
  28844. name: "Gigamacro",
  28845. height: math.unit(0.2, "earths")
  28846. },
  28847. ]
  28848. ))
  28849. characterMakers.push(() => makeCharacter(
  28850. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28851. {
  28852. front: {
  28853. height: math.unit(152, "feet"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/kenzie-lee/front.svg",
  28857. extra: 1869/1774,
  28858. bottom: 128/1997
  28859. }
  28860. },
  28861. side: {
  28862. height: math.unit(86, "feet"),
  28863. name: "Side",
  28864. image: {
  28865. source: "./media/characters/kenzie-lee/side.svg",
  28866. extra: 930/815,
  28867. bottom: 177/1107
  28868. }
  28869. },
  28870. paw: {
  28871. height: math.unit(15, "feet"),
  28872. name: "Paw",
  28873. image: {
  28874. source: "./media/characters/kenzie-lee/paw.svg"
  28875. }
  28876. },
  28877. },
  28878. [
  28879. {
  28880. name: "Kenzie Flea",
  28881. height: math.unit(2, "mm"),
  28882. default: true
  28883. },
  28884. {
  28885. name: "Micro",
  28886. height: math.unit(2, "inches")
  28887. },
  28888. {
  28889. name: "Normal",
  28890. height: math.unit(152, "feet")
  28891. },
  28892. {
  28893. name: "Megamacro",
  28894. height: math.unit(7, "miles")
  28895. },
  28896. {
  28897. name: "Gigamacro",
  28898. height: math.unit(8000, "miles")
  28899. },
  28900. ]
  28901. ))
  28902. characterMakers.push(() => makeCharacter(
  28903. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28904. {
  28905. front: {
  28906. height: math.unit(6, "feet"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/withers/front.svg",
  28910. extra: 1935/1760,
  28911. bottom: 72/2007
  28912. }
  28913. },
  28914. back: {
  28915. height: math.unit(6, "feet"),
  28916. name: "Back",
  28917. image: {
  28918. source: "./media/characters/withers/back.svg",
  28919. extra: 1944/1792,
  28920. bottom: 12/1956
  28921. }
  28922. },
  28923. dressed: {
  28924. height: math.unit(6, "feet"),
  28925. name: "Dressed",
  28926. image: {
  28927. source: "./media/characters/withers/dressed.svg",
  28928. extra: 1937/1765,
  28929. bottom: 73/2010
  28930. }
  28931. },
  28932. phase1: {
  28933. height: math.unit(1.1, "feet"),
  28934. name: "Phase 1",
  28935. image: {
  28936. source: "./media/characters/withers/phase-1.svg",
  28937. extra: 1885/1232,
  28938. bottom: 0/1885
  28939. }
  28940. },
  28941. phase2: {
  28942. height: math.unit(1.05, "feet"),
  28943. name: "Phase 2",
  28944. image: {
  28945. source: "./media/characters/withers/phase-2.svg",
  28946. extra: 1792/1090,
  28947. bottom: 0/1792
  28948. }
  28949. },
  28950. partyWipe: {
  28951. height: math.unit(1.1, "feet"),
  28952. name: "Party Wipe",
  28953. image: {
  28954. source: "./media/characters/withers/party-wipe.svg",
  28955. extra: 1864/1207,
  28956. bottom: 0/1864
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Macro",
  28963. height: math.unit(167, "feet"),
  28964. default: true
  28965. },
  28966. {
  28967. name: "Megamacro",
  28968. height: math.unit(15, "miles")
  28969. }
  28970. ]
  28971. ))
  28972. characterMakers.push(() => makeCharacter(
  28973. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28974. {
  28975. front: {
  28976. height: math.unit(6 + 7 / 12, "feet"),
  28977. weight: math.unit(250, "lb"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/nemoskii/front.svg",
  28981. extra: 2270 / 1734,
  28982. bottom: 86 / 2354
  28983. }
  28984. },
  28985. back: {
  28986. height: math.unit(6 + 7 / 12, "feet"),
  28987. weight: math.unit(250, "lb"),
  28988. name: "Back",
  28989. image: {
  28990. source: "./media/characters/nemoskii/back.svg",
  28991. extra: 1845 / 1788,
  28992. bottom: 10.5 / 1852
  28993. }
  28994. },
  28995. head: {
  28996. height: math.unit(1.31, "feet"),
  28997. name: "Head",
  28998. image: {
  28999. source: "./media/characters/nemoskii/head.svg"
  29000. }
  29001. },
  29002. },
  29003. [
  29004. {
  29005. name: "Micro",
  29006. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29007. },
  29008. {
  29009. name: "Normal",
  29010. height: math.unit(6 + 7 / 12, "feet"),
  29011. default: true
  29012. },
  29013. {
  29014. name: "Macro",
  29015. height: math.unit((6 + 7 / 12) * 150, "feet")
  29016. },
  29017. {
  29018. name: "Macro+",
  29019. height: math.unit((6 + 7 / 12) * 500, "feet")
  29020. },
  29021. {
  29022. name: "Megamacro",
  29023. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29024. },
  29025. ]
  29026. ))
  29027. characterMakers.push(() => makeCharacter(
  29028. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29029. {
  29030. front: {
  29031. height: math.unit(1, "mile"),
  29032. weight: math.unit(265261.9, "lb"),
  29033. name: "Front",
  29034. image: {
  29035. source: "./media/characters/shui/front.svg",
  29036. extra: 1633 / 1564,
  29037. bottom: 91.5 / 1726
  29038. }
  29039. },
  29040. },
  29041. [
  29042. {
  29043. name: "Macro",
  29044. height: math.unit(1, "mile"),
  29045. default: true
  29046. },
  29047. ]
  29048. ))
  29049. characterMakers.push(() => makeCharacter(
  29050. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29051. {
  29052. front: {
  29053. height: math.unit(12 + 6 / 12, "feet"),
  29054. weight: math.unit(1342, "lb"),
  29055. name: "Front",
  29056. image: {
  29057. source: "./media/characters/arokh-takakura/front.svg",
  29058. extra: 1089 / 1043,
  29059. bottom: 77.4 / 1176.7
  29060. }
  29061. },
  29062. back: {
  29063. height: math.unit(12 + 6 / 12, "feet"),
  29064. weight: math.unit(1342, "lb"),
  29065. name: "Back",
  29066. image: {
  29067. source: "./media/characters/arokh-takakura/back.svg",
  29068. extra: 1046 / 1019,
  29069. bottom: 102 / 1150
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Big",
  29076. height: math.unit(12 + 6 / 12, "feet"),
  29077. default: true
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29083. {
  29084. front: {
  29085. height: math.unit(5 + 6 / 12, "feet"),
  29086. weight: math.unit(150, "lb"),
  29087. name: "Front",
  29088. image: {
  29089. source: "./media/characters/theo/front.svg",
  29090. extra: 1184 / 1131,
  29091. bottom: 7.4 / 1191
  29092. }
  29093. },
  29094. },
  29095. [
  29096. {
  29097. name: "Micro",
  29098. height: math.unit(5, "inches")
  29099. },
  29100. {
  29101. name: "Normal",
  29102. height: math.unit(5 + 6 / 12, "feet"),
  29103. default: true
  29104. },
  29105. ]
  29106. ))
  29107. characterMakers.push(() => makeCharacter(
  29108. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29109. {
  29110. front: {
  29111. height: math.unit(5 + 9 / 12, "feet"),
  29112. weight: math.unit(130, "lb"),
  29113. name: "Front",
  29114. image: {
  29115. source: "./media/characters/cecelia-swift/front.svg",
  29116. extra: 502 / 484,
  29117. bottom: 23 / 523
  29118. }
  29119. },
  29120. back: {
  29121. height: math.unit(5 + 9 / 12, "feet"),
  29122. weight: math.unit(130, "lb"),
  29123. name: "Back",
  29124. image: {
  29125. source: "./media/characters/cecelia-swift/back.svg",
  29126. extra: 499 / 485,
  29127. bottom: 12 / 511
  29128. }
  29129. },
  29130. head: {
  29131. height: math.unit(0.90, "feet"),
  29132. name: "Head",
  29133. image: {
  29134. source: "./media/characters/cecelia-swift/head.svg"
  29135. }
  29136. },
  29137. rump: {
  29138. height: math.unit(1.75, "feet"),
  29139. name: "Rump",
  29140. image: {
  29141. source: "./media/characters/cecelia-swift/rump.svg"
  29142. }
  29143. },
  29144. },
  29145. [
  29146. {
  29147. name: "Normal",
  29148. height: math.unit(5 + 9 / 12, "feet"),
  29149. default: true
  29150. },
  29151. {
  29152. name: "Big",
  29153. height: math.unit(50, "feet")
  29154. },
  29155. {
  29156. name: "Macro",
  29157. height: math.unit(100, "feet")
  29158. },
  29159. {
  29160. name: "Macro+",
  29161. height: math.unit(500, "feet")
  29162. },
  29163. {
  29164. name: "Macro++",
  29165. height: math.unit(1000, "feet")
  29166. },
  29167. ]
  29168. ))
  29169. characterMakers.push(() => makeCharacter(
  29170. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29171. {
  29172. front: {
  29173. height: math.unit(6, "feet"),
  29174. weight: math.unit(150, "lb"),
  29175. name: "Front",
  29176. image: {
  29177. source: "./media/characters/kaunan/front.svg",
  29178. extra: 2890 / 2523,
  29179. bottom: 49 / 2939
  29180. }
  29181. },
  29182. },
  29183. [
  29184. {
  29185. name: "Macro",
  29186. height: math.unit(150, "feet"),
  29187. default: true
  29188. },
  29189. ]
  29190. ))
  29191. characterMakers.push(() => makeCharacter(
  29192. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29193. {
  29194. dressed: {
  29195. height: math.unit(175, "cm"),
  29196. weight: math.unit(60, "kg"),
  29197. name: "Dressed",
  29198. image: {
  29199. source: "./media/characters/fei/dressed.svg",
  29200. extra: 1402/1278,
  29201. bottom: 27/1429
  29202. }
  29203. },
  29204. nude: {
  29205. height: math.unit(175, "cm"),
  29206. weight: math.unit(60, "kg"),
  29207. name: "Nude",
  29208. image: {
  29209. source: "./media/characters/fei/nude.svg",
  29210. extra: 1402/1278,
  29211. bottom: 27/1429
  29212. }
  29213. },
  29214. heels: {
  29215. height: math.unit(0.466, "feet"),
  29216. name: "Heels",
  29217. image: {
  29218. source: "./media/characters/fei/heels.svg",
  29219. extra: 156/152,
  29220. bottom: 28/184
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Mortal",
  29227. height: math.unit(175, "cm")
  29228. },
  29229. {
  29230. name: "Normal",
  29231. height: math.unit(3500, "m")
  29232. },
  29233. {
  29234. name: "Stroll",
  29235. height: math.unit(18.4, "km"),
  29236. default: true
  29237. },
  29238. {
  29239. name: "Showoff",
  29240. height: math.unit(175, "km")
  29241. },
  29242. ]
  29243. ))
  29244. characterMakers.push(() => makeCharacter(
  29245. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29246. {
  29247. front: {
  29248. height: math.unit(7, "feet"),
  29249. weight: math.unit(1000, "kg"),
  29250. name: "Front",
  29251. image: {
  29252. source: "./media/characters/edrax/front.svg",
  29253. extra: 2838 / 2550,
  29254. bottom: 130 / 2968
  29255. }
  29256. },
  29257. },
  29258. [
  29259. {
  29260. name: "Small",
  29261. height: math.unit(7, "feet")
  29262. },
  29263. {
  29264. name: "Normal",
  29265. height: math.unit(1500, "meters")
  29266. },
  29267. {
  29268. name: "Mega",
  29269. height: math.unit(12000000, "km"),
  29270. default: true
  29271. },
  29272. {
  29273. name: "Megamacro",
  29274. height: math.unit(10600000, "lightyears")
  29275. },
  29276. {
  29277. name: "Hypermacro",
  29278. height: math.unit(256, "yottameters")
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(10, "feet"),
  29287. weight: math.unit(750, "lb"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/clove/front.svg",
  29291. extra: 1918/1751,
  29292. bottom: 52/1970
  29293. }
  29294. },
  29295. back: {
  29296. height: math.unit(10, "feet"),
  29297. weight: math.unit(750, "lb"),
  29298. name: "Back",
  29299. image: {
  29300. source: "./media/characters/clove/back.svg",
  29301. extra: 1912/1747,
  29302. bottom: 50/1962
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(10, "feet"),
  29310. default: true
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29316. {
  29317. front: {
  29318. height: math.unit(4, "feet"),
  29319. weight: math.unit(50, "lb"),
  29320. name: "Front",
  29321. image: {
  29322. source: "./media/characters/alex-rabbit/front.svg",
  29323. extra: 507 / 458,
  29324. bottom: 18.5 / 527
  29325. }
  29326. },
  29327. back: {
  29328. height: math.unit(4, "feet"),
  29329. weight: math.unit(50, "lb"),
  29330. name: "Back",
  29331. image: {
  29332. source: "./media/characters/alex-rabbit/back.svg",
  29333. extra: 502 / 460,
  29334. bottom: 18.9 / 521
  29335. }
  29336. },
  29337. },
  29338. [
  29339. {
  29340. name: "Normal",
  29341. height: math.unit(4, "feet"),
  29342. default: true
  29343. },
  29344. ]
  29345. ))
  29346. characterMakers.push(() => makeCharacter(
  29347. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29348. {
  29349. front: {
  29350. height: math.unit(1 + 3 / 12, "feet"),
  29351. weight: math.unit(80, "lb"),
  29352. name: "Front",
  29353. image: {
  29354. source: "./media/characters/zander-rose/front.svg",
  29355. extra: 916 / 797,
  29356. bottom: 17 / 933
  29357. }
  29358. },
  29359. back: {
  29360. height: math.unit(1 + 3 / 12, "feet"),
  29361. weight: math.unit(80, "lb"),
  29362. name: "Back",
  29363. image: {
  29364. source: "./media/characters/zander-rose/back.svg",
  29365. extra: 903 / 779,
  29366. bottom: 31 / 934
  29367. }
  29368. },
  29369. },
  29370. [
  29371. {
  29372. name: "Normal",
  29373. height: math.unit(1 + 3 / 12, "feet"),
  29374. default: true
  29375. },
  29376. ]
  29377. ))
  29378. characterMakers.push(() => makeCharacter(
  29379. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29380. {
  29381. anthro: {
  29382. height: math.unit(6, "feet"),
  29383. weight: math.unit(150, "lb"),
  29384. name: "Anthro",
  29385. image: {
  29386. source: "./media/characters/razz/anthro.svg",
  29387. extra: 1437 / 1343,
  29388. bottom: 48 / 1485
  29389. }
  29390. },
  29391. feral: {
  29392. height: math.unit(6, "feet"),
  29393. weight: math.unit(150, "lb"),
  29394. name: "Feral",
  29395. image: {
  29396. source: "./media/characters/razz/feral.svg",
  29397. extra: 2569 / 1385,
  29398. bottom: 95 / 2664
  29399. }
  29400. },
  29401. },
  29402. [
  29403. {
  29404. name: "Normal",
  29405. height: math.unit(6, "feet"),
  29406. default: true
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(9 + 4 / 12, "feet"),
  29415. weight: math.unit(500, "lb"),
  29416. name: "Front",
  29417. image: {
  29418. source: "./media/characters/morrigan/front.svg",
  29419. extra: 2707 / 2579,
  29420. bottom: 156 / 2863
  29421. }
  29422. },
  29423. },
  29424. [
  29425. {
  29426. name: "Normal",
  29427. height: math.unit(9 + 4 / 12, "feet"),
  29428. default: true
  29429. },
  29430. ]
  29431. ))
  29432. characterMakers.push(() => makeCharacter(
  29433. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29434. {
  29435. front: {
  29436. height: math.unit(5, "stories"),
  29437. weight: math.unit(4000, "lb"),
  29438. name: "Front",
  29439. image: {
  29440. source: "./media/characters/jenene/front.svg",
  29441. extra: 1780 / 1710,
  29442. bottom: 57 / 1837
  29443. }
  29444. },
  29445. },
  29446. [
  29447. {
  29448. name: "Normal",
  29449. height: math.unit(5, "stories"),
  29450. default: true
  29451. },
  29452. ]
  29453. ))
  29454. characterMakers.push(() => makeCharacter(
  29455. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29456. {
  29457. taurSfw: {
  29458. height: math.unit(10, "meters"),
  29459. weight: math.unit(17500, "kg"),
  29460. name: "Taur",
  29461. image: {
  29462. source: "./media/characters/faey/taur-sfw.svg",
  29463. extra: 1200 / 968,
  29464. bottom: 41 / 1241
  29465. }
  29466. },
  29467. chestmaw: {
  29468. height: math.unit(2.01, "meters"),
  29469. name: "Chestmaw",
  29470. image: {
  29471. source: "./media/characters/faey/chestmaw.svg"
  29472. }
  29473. },
  29474. foot: {
  29475. height: math.unit(2.43, "meters"),
  29476. name: "Foot",
  29477. image: {
  29478. source: "./media/characters/faey/foot.svg"
  29479. }
  29480. },
  29481. jaws: {
  29482. height: math.unit(1.66, "meters"),
  29483. name: "Jaws",
  29484. image: {
  29485. source: "./media/characters/faey/jaws.svg"
  29486. }
  29487. },
  29488. tongues: {
  29489. height: math.unit(2.01, "meters"),
  29490. name: "Tongues",
  29491. image: {
  29492. source: "./media/characters/faey/tongues.svg"
  29493. }
  29494. },
  29495. },
  29496. [
  29497. {
  29498. name: "Small",
  29499. height: math.unit(10, "meters"),
  29500. default: true
  29501. },
  29502. {
  29503. name: "Big",
  29504. height: math.unit(500000, "km")
  29505. },
  29506. ]
  29507. ))
  29508. characterMakers.push(() => makeCharacter(
  29509. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29510. {
  29511. front: {
  29512. height: math.unit(7, "feet"),
  29513. weight: math.unit(275, "lb"),
  29514. name: "Front",
  29515. image: {
  29516. source: "./media/characters/roku/front.svg",
  29517. extra: 903 / 878,
  29518. bottom: 37 / 940
  29519. }
  29520. },
  29521. },
  29522. [
  29523. {
  29524. name: "Normal",
  29525. height: math.unit(7, "feet"),
  29526. default: true
  29527. },
  29528. {
  29529. name: "Macro",
  29530. height: math.unit(500, "feet")
  29531. },
  29532. {
  29533. name: "Megamacro",
  29534. height: math.unit(200, "miles")
  29535. },
  29536. ]
  29537. ))
  29538. characterMakers.push(() => makeCharacter(
  29539. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29540. {
  29541. front: {
  29542. height: math.unit(6 + 2 / 12, "feet"),
  29543. weight: math.unit(150, "lb"),
  29544. name: "Front",
  29545. image: {
  29546. source: "./media/characters/lira/front.svg",
  29547. extra: 1727 / 1605,
  29548. bottom: 26 / 1753
  29549. }
  29550. },
  29551. back: {
  29552. height: math.unit(6 + 2 / 12, "feet"),
  29553. weight: math.unit(150, "lb"),
  29554. name: "Back",
  29555. image: {
  29556. source: "./media/characters/lira/back.svg",
  29557. extra: 1713/1621,
  29558. bottom: 20/1733
  29559. }
  29560. },
  29561. hand: {
  29562. height: math.unit(0.75, "feet"),
  29563. name: "Hand",
  29564. image: {
  29565. source: "./media/characters/lira/hand.svg"
  29566. }
  29567. },
  29568. maw: {
  29569. height: math.unit(0.65, "feet"),
  29570. name: "Maw",
  29571. image: {
  29572. source: "./media/characters/lira/maw.svg"
  29573. }
  29574. },
  29575. pawDigi: {
  29576. height: math.unit(1.6, "feet"),
  29577. name: "Paw Digi",
  29578. image: {
  29579. source: "./media/characters/lira/paw-digi.svg"
  29580. }
  29581. },
  29582. pawPlanti: {
  29583. height: math.unit(1.4, "feet"),
  29584. name: "Paw Planti",
  29585. image: {
  29586. source: "./media/characters/lira/paw-planti.svg"
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Normal",
  29593. height: math.unit(6 + 2 / 12, "feet"),
  29594. default: true
  29595. },
  29596. {
  29597. name: "Macro",
  29598. height: math.unit(100, "feet")
  29599. },
  29600. {
  29601. name: "Macro²",
  29602. height: math.unit(1600, "feet")
  29603. },
  29604. {
  29605. name: "Planetary",
  29606. height: math.unit(20, "earths")
  29607. },
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29612. {
  29613. front: {
  29614. height: math.unit(6, "feet"),
  29615. weight: math.unit(150, "lb"),
  29616. name: "Front",
  29617. image: {
  29618. source: "./media/characters/hadjet/front.svg",
  29619. extra: 1480 / 1346,
  29620. bottom: 26 / 1506
  29621. }
  29622. },
  29623. frontNsfw: {
  29624. height: math.unit(6, "feet"),
  29625. weight: math.unit(150, "lb"),
  29626. name: "Front (NSFW)",
  29627. image: {
  29628. source: "./media/characters/hadjet/front-nsfw.svg",
  29629. extra: 1440 / 1358,
  29630. bottom: 52 / 1492
  29631. }
  29632. },
  29633. },
  29634. [
  29635. {
  29636. name: "Macro",
  29637. height: math.unit(10, "stories"),
  29638. default: true
  29639. },
  29640. {
  29641. name: "Megamacro",
  29642. height: math.unit(1.5, "miles")
  29643. },
  29644. {
  29645. name: "Megamacro+",
  29646. height: math.unit(5, "miles")
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29652. {
  29653. side: {
  29654. height: math.unit(106, "feet"),
  29655. weight: math.unit(500, "tonnes"),
  29656. name: "Side",
  29657. image: {
  29658. source: "./media/characters/kodran/side.svg",
  29659. extra: 553 / 480,
  29660. bottom: 33 / 586
  29661. }
  29662. },
  29663. front: {
  29664. height: math.unit(132, "feet"),
  29665. weight: math.unit(500, "tonnes"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/kodran/front.svg",
  29669. extra: 667 / 643,
  29670. bottom: 42 / 709
  29671. }
  29672. },
  29673. flying: {
  29674. height: math.unit(350, "feet"),
  29675. weight: math.unit(500, "tonnes"),
  29676. name: "Flying",
  29677. image: {
  29678. source: "./media/characters/kodran/flying.svg"
  29679. }
  29680. },
  29681. foot: {
  29682. height: math.unit(33, "feet"),
  29683. name: "Foot",
  29684. image: {
  29685. source: "./media/characters/kodran/foot.svg"
  29686. }
  29687. },
  29688. footFront: {
  29689. height: math.unit(19, "feet"),
  29690. name: "Foot (Front)",
  29691. image: {
  29692. source: "./media/characters/kodran/foot-front.svg",
  29693. extra: 261 / 261,
  29694. bottom: 91 / 352
  29695. }
  29696. },
  29697. headFront: {
  29698. height: math.unit(53, "feet"),
  29699. name: "Head (Front)",
  29700. image: {
  29701. source: "./media/characters/kodran/head-front.svg"
  29702. }
  29703. },
  29704. headSide: {
  29705. height: math.unit(65, "feet"),
  29706. name: "Head (Side)",
  29707. image: {
  29708. source: "./media/characters/kodran/head-side.svg"
  29709. }
  29710. },
  29711. throat: {
  29712. height: math.unit(79, "feet"),
  29713. name: "Throat",
  29714. image: {
  29715. source: "./media/characters/kodran/throat.svg"
  29716. }
  29717. },
  29718. },
  29719. [
  29720. {
  29721. name: "Large",
  29722. height: math.unit(106, "feet"),
  29723. default: true
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29729. {
  29730. side: {
  29731. height: math.unit(11, "feet"),
  29732. weight: math.unit(150, "lb"),
  29733. name: "Side",
  29734. image: {
  29735. source: "./media/characters/pyxaron/side.svg",
  29736. extra: 305 / 195,
  29737. bottom: 17 / 322
  29738. }
  29739. },
  29740. },
  29741. [
  29742. {
  29743. name: "Normal",
  29744. height: math.unit(11, "feet"),
  29745. default: true
  29746. },
  29747. ]
  29748. ))
  29749. characterMakers.push(() => makeCharacter(
  29750. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29751. {
  29752. front: {
  29753. height: math.unit(6, "feet"),
  29754. weight: math.unit(150, "lb"),
  29755. name: "Front",
  29756. image: {
  29757. source: "./media/characters/meep/front.svg",
  29758. extra: 88 / 80,
  29759. bottom: 6 / 94
  29760. }
  29761. },
  29762. },
  29763. [
  29764. {
  29765. name: "Fun Sized",
  29766. height: math.unit(2, "inches"),
  29767. default: true
  29768. },
  29769. {
  29770. name: "Friend Sized",
  29771. height: math.unit(8, "inches")
  29772. },
  29773. ]
  29774. ))
  29775. characterMakers.push(() => makeCharacter(
  29776. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29777. {
  29778. front: {
  29779. height: math.unit(15, "feet"),
  29780. weight: math.unit(2500, "lb"),
  29781. name: "Front",
  29782. image: {
  29783. source: "./media/characters/holly-rabbit/front.svg",
  29784. extra: 1433 / 1233,
  29785. bottom: 125 / 1558
  29786. }
  29787. },
  29788. dick: {
  29789. height: math.unit(4.6, "feet"),
  29790. name: "Dick",
  29791. image: {
  29792. source: "./media/characters/holly-rabbit/dick.svg"
  29793. }
  29794. },
  29795. },
  29796. [
  29797. {
  29798. name: "Normal",
  29799. height: math.unit(15, "feet"),
  29800. default: true
  29801. },
  29802. {
  29803. name: "Macro",
  29804. height: math.unit(250, "feet")
  29805. },
  29806. {
  29807. name: "Macro+",
  29808. height: math.unit(2500, "feet")
  29809. },
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29814. {
  29815. front: {
  29816. height: math.unit(3.02, "meters"),
  29817. weight: math.unit(500, "kg"),
  29818. name: "Front",
  29819. image: {
  29820. source: "./media/characters/drena/front.svg",
  29821. extra: 282 / 243,
  29822. bottom: 8 / 290
  29823. }
  29824. },
  29825. side: {
  29826. height: math.unit(3.02, "meters"),
  29827. weight: math.unit(500, "kg"),
  29828. name: "Side",
  29829. image: {
  29830. source: "./media/characters/drena/side.svg",
  29831. extra: 280 / 245,
  29832. bottom: 10 / 290
  29833. }
  29834. },
  29835. back: {
  29836. height: math.unit(3.02, "meters"),
  29837. weight: math.unit(500, "kg"),
  29838. name: "Back",
  29839. image: {
  29840. source: "./media/characters/drena/back.svg",
  29841. extra: 278 / 243,
  29842. bottom: 2 / 280
  29843. }
  29844. },
  29845. foot: {
  29846. height: math.unit(0.75, "meters"),
  29847. name: "Foot",
  29848. image: {
  29849. source: "./media/characters/drena/foot.svg"
  29850. }
  29851. },
  29852. maw: {
  29853. height: math.unit(0.82, "meters"),
  29854. name: "Maw",
  29855. image: {
  29856. source: "./media/characters/drena/maw.svg"
  29857. }
  29858. },
  29859. eating: {
  29860. height: math.unit(0.75, "meters"),
  29861. name: "Eating",
  29862. image: {
  29863. source: "./media/characters/drena/eating.svg"
  29864. }
  29865. },
  29866. rump: {
  29867. height: math.unit(0.93, "meters"),
  29868. name: "Rump",
  29869. image: {
  29870. source: "./media/characters/drena/rump.svg"
  29871. }
  29872. },
  29873. },
  29874. [
  29875. {
  29876. name: "Normal",
  29877. height: math.unit(3.02, "meters"),
  29878. default: true
  29879. },
  29880. ]
  29881. ))
  29882. characterMakers.push(() => makeCharacter(
  29883. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29884. {
  29885. front: {
  29886. height: math.unit(6 + 4 / 12, "feet"),
  29887. weight: math.unit(250, "lb"),
  29888. name: "Front",
  29889. image: {
  29890. source: "./media/characters/remmyzilla/front.svg",
  29891. extra: 4033 / 3588,
  29892. bottom: 123 / 4156
  29893. }
  29894. },
  29895. back: {
  29896. height: math.unit(6 + 4 / 12, "feet"),
  29897. weight: math.unit(250, "lb"),
  29898. name: "Back",
  29899. image: {
  29900. source: "./media/characters/remmyzilla/back.svg",
  29901. extra: 2687 / 2555,
  29902. bottom: 48 / 2735
  29903. }
  29904. },
  29905. paw: {
  29906. height: math.unit(1.73, "feet"),
  29907. name: "Paw",
  29908. image: {
  29909. source: "./media/characters/remmyzilla/paw.svg"
  29910. },
  29911. extraAttributes: {
  29912. "toeSize": {
  29913. name: "Toe Size",
  29914. power: 2,
  29915. type: "area",
  29916. base: math.unit(0.0035, "m^2")
  29917. },
  29918. "padSize": {
  29919. name: "Pad Size",
  29920. power: 2,
  29921. type: "area",
  29922. base: math.unit(0.015, "m^2")
  29923. },
  29924. "pawsize": {
  29925. name: "Paw Size",
  29926. power: 2,
  29927. type: "area",
  29928. base: math.unit(0.072, "m^2")
  29929. },
  29930. }
  29931. },
  29932. maw: {
  29933. height: math.unit(1.73, "feet"),
  29934. name: "Maw",
  29935. image: {
  29936. source: "./media/characters/remmyzilla/maw.svg"
  29937. }
  29938. },
  29939. },
  29940. [
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(6 + 4 / 12, "feet")
  29944. },
  29945. {
  29946. name: "Minimacro",
  29947. height: math.unit(12 + 8 / 12, "feet")
  29948. },
  29949. {
  29950. name: "Normal",
  29951. height: math.unit(640, "feet"),
  29952. default: true
  29953. },
  29954. {
  29955. name: "Megamacro",
  29956. height: math.unit(6400, "feet")
  29957. },
  29958. {
  29959. name: "Gigamacro",
  29960. height: math.unit(64000, "miles")
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29966. {
  29967. front: {
  29968. height: math.unit(2.5, "meters"),
  29969. weight: math.unit(300, "lb"),
  29970. name: "Front",
  29971. image: {
  29972. source: "./media/characters/lawrence/front.svg",
  29973. extra: 357 / 335,
  29974. bottom: 30 / 387
  29975. }
  29976. },
  29977. back: {
  29978. height: math.unit(2.5, "meters"),
  29979. weight: math.unit(300, "lb"),
  29980. name: "Back",
  29981. image: {
  29982. source: "./media/characters/lawrence/back.svg",
  29983. extra: 357 / 338,
  29984. bottom: 16 / 373
  29985. }
  29986. },
  29987. head: {
  29988. height: math.unit(0.9, "meter"),
  29989. name: "Head",
  29990. image: {
  29991. source: "./media/characters/lawrence/head.svg"
  29992. }
  29993. },
  29994. maw: {
  29995. height: math.unit(0.7, "meter"),
  29996. name: "Maw",
  29997. image: {
  29998. source: "./media/characters/lawrence/maw.svg"
  29999. }
  30000. },
  30001. footBottom: {
  30002. height: math.unit(0.5, "meter"),
  30003. name: "Foot (Bottom)",
  30004. image: {
  30005. source: "./media/characters/lawrence/foot-bottom.svg"
  30006. }
  30007. },
  30008. footTop: {
  30009. height: math.unit(0.5, "meter"),
  30010. name: "Foot (Top)",
  30011. image: {
  30012. source: "./media/characters/lawrence/foot-top.svg"
  30013. }
  30014. },
  30015. },
  30016. [
  30017. {
  30018. name: "Normal",
  30019. height: math.unit(2.5, "meters"),
  30020. default: true
  30021. },
  30022. {
  30023. name: "Macro",
  30024. height: math.unit(95, "meters")
  30025. },
  30026. {
  30027. name: "Megamacro",
  30028. height: math.unit(150, "km")
  30029. },
  30030. ]
  30031. ))
  30032. characterMakers.push(() => makeCharacter(
  30033. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30034. {
  30035. front: {
  30036. height: math.unit(4.2, "meters"),
  30037. name: "Front",
  30038. image: {
  30039. source: "./media/characters/sydney/front.svg",
  30040. extra: 1323 / 1277,
  30041. bottom: 111 / 1434
  30042. }
  30043. },
  30044. },
  30045. [
  30046. {
  30047. name: "Normal",
  30048. height: math.unit(4.2, "meters"),
  30049. default: true
  30050. },
  30051. ]
  30052. ))
  30053. characterMakers.push(() => makeCharacter(
  30054. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30055. {
  30056. back: {
  30057. height: math.unit(201, "feet"),
  30058. name: "Back",
  30059. image: {
  30060. source: "./media/characters/jessica/back.svg",
  30061. extra: 273 / 259,
  30062. bottom: 7 / 280
  30063. }
  30064. },
  30065. },
  30066. [
  30067. {
  30068. name: "Normal",
  30069. height: math.unit(201, "feet"),
  30070. default: true
  30071. },
  30072. {
  30073. name: "Megamacro",
  30074. height: math.unit(8, "miles")
  30075. },
  30076. ]
  30077. ))
  30078. characterMakers.push(() => makeCharacter(
  30079. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30080. {
  30081. side: {
  30082. height: math.unit(5.6, "m"),
  30083. weight: math.unit(8000, "kg"),
  30084. name: "Side",
  30085. image: {
  30086. source: "./media/characters/victoria/side.svg",
  30087. extra: 1542/1229,
  30088. bottom: 124/1666
  30089. }
  30090. },
  30091. maw: {
  30092. height: math.unit(7.14, "feet"),
  30093. name: "Maw",
  30094. image: {
  30095. source: "./media/characters/victoria/maw.svg"
  30096. }
  30097. },
  30098. },
  30099. [
  30100. {
  30101. name: "Normal",
  30102. height: math.unit(5.6, "m"),
  30103. default: true
  30104. },
  30105. ]
  30106. ))
  30107. characterMakers.push(() => makeCharacter(
  30108. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30109. {
  30110. front: {
  30111. height: math.unit(5 + 6 / 12, "feet"),
  30112. name: "Front",
  30113. image: {
  30114. source: "./media/characters/cat/front.svg",
  30115. extra: 1449/1295,
  30116. bottom: 34/1483
  30117. },
  30118. form: "cat",
  30119. default: true
  30120. },
  30121. back: {
  30122. height: math.unit(5 + 6 / 12, "feet"),
  30123. name: "Back",
  30124. image: {
  30125. source: "./media/characters/cat/back.svg",
  30126. extra: 1466/1301,
  30127. bottom: 19/1485
  30128. },
  30129. form: "cat"
  30130. },
  30131. taur: {
  30132. height: math.unit(7, "feet"),
  30133. name: "Taur",
  30134. image: {
  30135. source: "./media/characters/cat/taur.svg",
  30136. extra: 1389/1233,
  30137. bottom: 83/1472
  30138. },
  30139. form: "taur",
  30140. default: true
  30141. },
  30142. lucarioFront: {
  30143. height: math.unit(4, "feet"),
  30144. name: "Lucario (Front)",
  30145. image: {
  30146. source: "./media/characters/cat/lucario-front.svg",
  30147. extra: 1149/1019,
  30148. bottom: 84/1233
  30149. },
  30150. form: "lucario",
  30151. default: true
  30152. },
  30153. lucarioBack: {
  30154. height: math.unit(4, "feet"),
  30155. name: "Lucario (Back)",
  30156. image: {
  30157. source: "./media/characters/cat/lucario-back.svg",
  30158. extra: 1190/1059,
  30159. bottom: 33/1223
  30160. },
  30161. form: "lucario"
  30162. },
  30163. megaLucario: {
  30164. height: math.unit(4, "feet"),
  30165. name: "Mega Lucario",
  30166. image: {
  30167. source: "./media/characters/cat/mega-lucario.svg",
  30168. extra: 1515 / 1319,
  30169. bottom: 63 / 1578
  30170. },
  30171. form: "lucario"
  30172. },
  30173. nickit: {
  30174. height: math.unit(2, "feet"),
  30175. name: "Nickit",
  30176. image: {
  30177. source: "./media/characters/cat/nickit.svg",
  30178. extra: 1980 / 1585,
  30179. bottom: 102 / 2082
  30180. },
  30181. form: "nickit",
  30182. default: true
  30183. },
  30184. lopunnyFront: {
  30185. height: math.unit(5, "feet"),
  30186. name: "Lopunny (Front)",
  30187. image: {
  30188. source: "./media/characters/cat/lopunny-front.svg",
  30189. extra: 1782 / 1469,
  30190. bottom: 38 / 1820
  30191. },
  30192. form: "lopunny",
  30193. default: true
  30194. },
  30195. lopunnyBack: {
  30196. height: math.unit(5, "feet"),
  30197. name: "Lopunny (Back)",
  30198. image: {
  30199. source: "./media/characters/cat/lopunny-back.svg",
  30200. extra: 1660 / 1490,
  30201. bottom: 25 / 1685
  30202. },
  30203. form: "lopunny"
  30204. },
  30205. },
  30206. [
  30207. {
  30208. name: "Really small",
  30209. height: math.unit(1, "nm")
  30210. },
  30211. {
  30212. name: "Micro",
  30213. height: math.unit(5, "inches")
  30214. },
  30215. {
  30216. name: "Normal",
  30217. height: math.unit(5 + 6 / 12, "feet"),
  30218. default: true
  30219. },
  30220. {
  30221. name: "Macro",
  30222. height: math.unit(50, "feet")
  30223. },
  30224. {
  30225. name: "Macro+",
  30226. height: math.unit(150, "feet")
  30227. },
  30228. {
  30229. name: "Megamacro",
  30230. height: math.unit(100, "miles")
  30231. },
  30232. ]
  30233. ))
  30234. characterMakers.push(() => makeCharacter(
  30235. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30236. {
  30237. front: {
  30238. height: math.unit(63.4, "meters"),
  30239. weight: math.unit(3.28349e+6, "kilograms"),
  30240. name: "Front",
  30241. image: {
  30242. source: "./media/characters/kirina-violet/front.svg",
  30243. extra: 2812 / 2725,
  30244. bottom: 0 / 2812
  30245. }
  30246. },
  30247. back: {
  30248. height: math.unit(63.4, "meters"),
  30249. weight: math.unit(3.28349e+6, "kilograms"),
  30250. name: "Back",
  30251. image: {
  30252. source: "./media/characters/kirina-violet/back.svg",
  30253. extra: 2812 / 2725,
  30254. bottom: 0 / 2812
  30255. }
  30256. },
  30257. mouth: {
  30258. height: math.unit(4.35, "meters"),
  30259. name: "Mouth",
  30260. image: {
  30261. source: "./media/characters/kirina-violet/mouth.svg"
  30262. }
  30263. },
  30264. paw: {
  30265. height: math.unit(5.6, "meters"),
  30266. name: "Paw",
  30267. image: {
  30268. source: "./media/characters/kirina-violet/paw.svg"
  30269. }
  30270. },
  30271. tail: {
  30272. height: math.unit(18, "meters"),
  30273. name: "Tail",
  30274. image: {
  30275. source: "./media/characters/kirina-violet/tail.svg"
  30276. }
  30277. },
  30278. },
  30279. [
  30280. {
  30281. name: "Macro",
  30282. height: math.unit(63.4, "meters"),
  30283. default: true
  30284. },
  30285. ]
  30286. ))
  30287. characterMakers.push(() => makeCharacter(
  30288. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30289. {
  30290. front: {
  30291. height: math.unit(75, "feet"),
  30292. name: "Front",
  30293. image: {
  30294. source: "./media/characters/cat-gigachu/front.svg",
  30295. extra: 1239/1027,
  30296. bottom: 32/1271
  30297. }
  30298. },
  30299. back: {
  30300. height: math.unit(75, "feet"),
  30301. name: "Back",
  30302. image: {
  30303. source: "./media/characters/cat-gigachu/back.svg",
  30304. extra: 1229/1030,
  30305. bottom: 9/1238
  30306. }
  30307. },
  30308. },
  30309. [
  30310. {
  30311. name: "Dynamax",
  30312. height: math.unit(75, "feet"),
  30313. default: true
  30314. },
  30315. ]
  30316. ))
  30317. characterMakers.push(() => makeCharacter(
  30318. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30319. {
  30320. front: {
  30321. height: math.unit(6, "feet"),
  30322. weight: math.unit(150, "lb"),
  30323. name: "Front",
  30324. image: {
  30325. source: "./media/characters/sfaiyan/front.svg",
  30326. extra: 999 / 978,
  30327. bottom: 5 / 1004
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Normal",
  30334. height: math.unit(1.82, "meters")
  30335. },
  30336. {
  30337. name: "Giant",
  30338. height: math.unit(2.27, "km"),
  30339. default: true
  30340. },
  30341. ]
  30342. ))
  30343. characterMakers.push(() => makeCharacter(
  30344. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30345. {
  30346. front: {
  30347. height: math.unit(179, "cm"),
  30348. weight: math.unit(100, "kg"),
  30349. name: "Front",
  30350. image: {
  30351. source: "./media/characters/raunehkeli/front.svg",
  30352. extra: 1934 / 1926,
  30353. bottom: 0 / 1934
  30354. }
  30355. },
  30356. },
  30357. [
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(179, "cm")
  30361. },
  30362. {
  30363. name: "Maximum",
  30364. height: math.unit(575, "meters"),
  30365. default: true
  30366. },
  30367. ]
  30368. ))
  30369. characterMakers.push(() => makeCharacter(
  30370. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30371. {
  30372. front: {
  30373. height: math.unit(6, "feet"),
  30374. weight: math.unit(150, "lb"),
  30375. name: "Front",
  30376. image: {
  30377. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30378. extra: 2625 / 2518,
  30379. bottom: 60 / 2685
  30380. }
  30381. },
  30382. },
  30383. [
  30384. {
  30385. name: "Normal",
  30386. height: math.unit(6 + 2 / 12, "feet")
  30387. },
  30388. {
  30389. name: "Macro",
  30390. height: math.unit(1180, "feet"),
  30391. default: true
  30392. },
  30393. ]
  30394. ))
  30395. characterMakers.push(() => makeCharacter(
  30396. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30397. {
  30398. front: {
  30399. height: math.unit(5 + 6 / 12, "feet"),
  30400. weight: math.unit(108, "lb"),
  30401. name: "Front",
  30402. image: {
  30403. source: "./media/characters/lilith-zott/front.svg",
  30404. extra: 2510 / 2238,
  30405. bottom: 100 / 2610
  30406. }
  30407. },
  30408. frontDressed: {
  30409. height: math.unit(5 + 6 / 12, "feet"),
  30410. weight: math.unit(108, "lb"),
  30411. name: "Front (Dressed)",
  30412. image: {
  30413. source: "./media/characters/lilith-zott/front-dressed.svg",
  30414. extra: 2510 / 2238,
  30415. bottom: 100 / 2610
  30416. }
  30417. },
  30418. },
  30419. [
  30420. {
  30421. name: "Normal",
  30422. height: math.unit(5 + 6 / 12, "feet")
  30423. },
  30424. {
  30425. name: "Macro",
  30426. height: math.unit(1030, "feet"),
  30427. default: true
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30433. {
  30434. front: {
  30435. height: math.unit(6, "feet"),
  30436. weight: math.unit(150, "lb"),
  30437. name: "Front",
  30438. image: {
  30439. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30440. extra: 2567 / 2435,
  30441. bottom: 39 / 2606
  30442. }
  30443. },
  30444. frontSuper: {
  30445. height: math.unit(6, "feet"),
  30446. name: "Front (Super)",
  30447. image: {
  30448. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30449. extra: 2567 / 2435,
  30450. bottom: 39 / 2606
  30451. }
  30452. },
  30453. },
  30454. [
  30455. {
  30456. name: "Normal",
  30457. height: math.unit(5 + 10 / 12, "feet")
  30458. },
  30459. {
  30460. name: "Macro",
  30461. height: math.unit(1100, "feet"),
  30462. default: true
  30463. },
  30464. ]
  30465. ))
  30466. characterMakers.push(() => makeCharacter(
  30467. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30468. {
  30469. front: {
  30470. height: math.unit(100, "miles"),
  30471. name: "Front",
  30472. image: {
  30473. source: "./media/characters/sona/front.svg",
  30474. extra: 2433 / 2201,
  30475. bottom: 53 / 2486
  30476. }
  30477. },
  30478. foot: {
  30479. height: math.unit(16.1, "miles"),
  30480. name: "Foot",
  30481. image: {
  30482. source: "./media/characters/sona/foot.svg"
  30483. }
  30484. },
  30485. },
  30486. [
  30487. {
  30488. name: "Macro",
  30489. height: math.unit(100, "miles"),
  30490. default: true
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30496. {
  30497. front: {
  30498. height: math.unit(6, "feet"),
  30499. weight: math.unit(150, "lb"),
  30500. name: "Front",
  30501. image: {
  30502. source: "./media/characters/bailey/front.svg",
  30503. extra: 1778 / 1724,
  30504. bottom: 30 / 1808
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Micro",
  30511. height: math.unit(4, "inches")
  30512. },
  30513. {
  30514. name: "Normal",
  30515. height: math.unit(5 + 5 / 12, "feet"),
  30516. default: true
  30517. },
  30518. {
  30519. name: "Macro",
  30520. height: math.unit(250, "feet")
  30521. },
  30522. {
  30523. name: "Megamacro",
  30524. height: math.unit(100, "miles")
  30525. },
  30526. ]
  30527. ))
  30528. characterMakers.push(() => makeCharacter(
  30529. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30530. {
  30531. front: {
  30532. height: math.unit(5 + 2 / 12, "feet"),
  30533. weight: math.unit(120, "lb"),
  30534. name: "Front",
  30535. image: {
  30536. source: "./media/characters/snaps/front.svg",
  30537. extra: 2370 / 2177,
  30538. bottom: 48 / 2418
  30539. }
  30540. },
  30541. back: {
  30542. height: math.unit(5 + 2 / 12, "feet"),
  30543. weight: math.unit(120, "lb"),
  30544. name: "Back",
  30545. image: {
  30546. source: "./media/characters/snaps/back.svg",
  30547. extra: 2408 / 2258,
  30548. bottom: 15 / 2423
  30549. }
  30550. },
  30551. },
  30552. [
  30553. {
  30554. name: "Micro",
  30555. height: math.unit(9, "inches")
  30556. },
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(5 + 2 / 12, "feet"),
  30560. default: true
  30561. },
  30562. {
  30563. name: "Mini Macro",
  30564. height: math.unit(10, "feet")
  30565. },
  30566. ]
  30567. ))
  30568. characterMakers.push(() => makeCharacter(
  30569. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30570. {
  30571. front: {
  30572. height: math.unit(1.8, "meters"),
  30573. weight: math.unit(85, "kg"),
  30574. name: "Front",
  30575. image: {
  30576. source: "./media/characters/azteck/front.svg",
  30577. extra: 2815 / 2625,
  30578. bottom: 89 / 2904
  30579. }
  30580. },
  30581. back: {
  30582. height: math.unit(1.8, "meters"),
  30583. weight: math.unit(85, "kg"),
  30584. name: "Back",
  30585. image: {
  30586. source: "./media/characters/azteck/back.svg",
  30587. extra: 2856 / 2648,
  30588. bottom: 85 / 2941
  30589. }
  30590. },
  30591. frontDressed: {
  30592. height: math.unit(1.8, "meters"),
  30593. weight: math.unit(85, "kg"),
  30594. name: "Front (Dressed)",
  30595. image: {
  30596. source: "./media/characters/azteck/front-dressed.svg",
  30597. extra: 2147 / 2003,
  30598. bottom: 68 / 2215
  30599. }
  30600. },
  30601. head: {
  30602. height: math.unit(0.47, "meters"),
  30603. weight: math.unit(85, "kg"),
  30604. name: "Head",
  30605. image: {
  30606. source: "./media/characters/azteck/head.svg"
  30607. }
  30608. },
  30609. },
  30610. [
  30611. {
  30612. name: "Bite sized",
  30613. height: math.unit(16, "cm")
  30614. },
  30615. {
  30616. name: "Normal",
  30617. height: math.unit(1.8, "meters"),
  30618. default: true
  30619. },
  30620. ]
  30621. ))
  30622. characterMakers.push(() => makeCharacter(
  30623. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30624. {
  30625. front: {
  30626. height: math.unit(6, "feet"),
  30627. weight: math.unit(150, "lb"),
  30628. name: "Front",
  30629. image: {
  30630. source: "./media/characters/pidge/front.svg",
  30631. extra: 1936/1820,
  30632. bottom: 0/1936
  30633. }
  30634. },
  30635. back: {
  30636. height: math.unit(6, "feet"),
  30637. weight: math.unit(150, "lb"),
  30638. name: "Back",
  30639. image: {
  30640. source: "./media/characters/pidge/back.svg",
  30641. extra: 1938/1843,
  30642. bottom: 0/1938
  30643. }
  30644. },
  30645. casual: {
  30646. height: math.unit(6, "feet"),
  30647. weight: math.unit(150, "lb"),
  30648. name: "Casual",
  30649. image: {
  30650. source: "./media/characters/pidge/casual.svg",
  30651. extra: 1936/1820,
  30652. bottom: 0/1936
  30653. }
  30654. },
  30655. tech: {
  30656. height: math.unit(6, "feet"),
  30657. weight: math.unit(150, "lb"),
  30658. name: "Tech",
  30659. image: {
  30660. source: "./media/characters/pidge/tech.svg",
  30661. extra: 1802/1682,
  30662. bottom: 0/1802
  30663. }
  30664. },
  30665. head: {
  30666. height: math.unit(1.61, "feet"),
  30667. name: "Head",
  30668. image: {
  30669. source: "./media/characters/pidge/head.svg"
  30670. }
  30671. },
  30672. collar: {
  30673. height: math.unit(0.82, "feet"),
  30674. name: "Collar",
  30675. image: {
  30676. source: "./media/characters/pidge/collar.svg"
  30677. }
  30678. },
  30679. },
  30680. [
  30681. {
  30682. name: "Macro",
  30683. height: math.unit(2, "mile"),
  30684. default: true
  30685. },
  30686. {
  30687. name: "PUPPY",
  30688. height: math.unit(20, "miles")
  30689. },
  30690. ]
  30691. ))
  30692. characterMakers.push(() => makeCharacter(
  30693. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30694. {
  30695. front: {
  30696. height: math.unit(6, "feet"),
  30697. weight: math.unit(150, "lb"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/en/front.svg",
  30701. extra: 1697 / 1563,
  30702. bottom: 103 / 1800
  30703. }
  30704. },
  30705. back: {
  30706. height: math.unit(6, "feet"),
  30707. weight: math.unit(150, "lb"),
  30708. name: "Back",
  30709. image: {
  30710. source: "./media/characters/en/back.svg",
  30711. extra: 1700 / 1570,
  30712. bottom: 51 / 1751
  30713. }
  30714. },
  30715. frontDressed: {
  30716. height: math.unit(6, "feet"),
  30717. weight: math.unit(150, "lb"),
  30718. name: "Front (Dressed)",
  30719. image: {
  30720. source: "./media/characters/en/front-dressed.svg",
  30721. extra: 1697 / 1563,
  30722. bottom: 103 / 1800
  30723. }
  30724. },
  30725. backDressed: {
  30726. height: math.unit(6, "feet"),
  30727. weight: math.unit(150, "lb"),
  30728. name: "Back (Dressed)",
  30729. image: {
  30730. source: "./media/characters/en/back-dressed.svg",
  30731. extra: 1700 / 1570,
  30732. bottom: 51 / 1751
  30733. }
  30734. },
  30735. },
  30736. [
  30737. {
  30738. name: "Macro",
  30739. height: math.unit(210, "feet"),
  30740. default: true
  30741. },
  30742. ]
  30743. ))
  30744. characterMakers.push(() => makeCharacter(
  30745. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30746. {
  30747. front: {
  30748. height: math.unit(6, "feet"),
  30749. weight: math.unit(150, "lb"),
  30750. name: "Front",
  30751. image: {
  30752. source: "./media/characters/haze-orris/front.svg",
  30753. extra: 3975 / 3525,
  30754. bottom: 137 / 4112
  30755. }
  30756. },
  30757. },
  30758. [
  30759. {
  30760. name: "Micro",
  30761. height: math.unit(150, "mm"),
  30762. default: true
  30763. },
  30764. ]
  30765. ))
  30766. characterMakers.push(() => makeCharacter(
  30767. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30768. {
  30769. front: {
  30770. height: math.unit(6, "feet"),
  30771. weight: math.unit(150, "lb"),
  30772. name: "Front",
  30773. image: {
  30774. source: "./media/characters/casselene-yaro/front.svg",
  30775. extra: 4721 / 4541,
  30776. bottom: 82 / 4803
  30777. }
  30778. },
  30779. back: {
  30780. height: math.unit(6, "feet"),
  30781. weight: math.unit(150, "lb"),
  30782. name: "Back",
  30783. image: {
  30784. source: "./media/characters/casselene-yaro/back.svg",
  30785. extra: 4569 / 4377,
  30786. bottom: 69 / 4638
  30787. }
  30788. },
  30789. dressed: {
  30790. height: math.unit(6, "feet"),
  30791. weight: math.unit(150, "lb"),
  30792. name: "Dressed",
  30793. image: {
  30794. source: "./media/characters/casselene-yaro/dressed.svg",
  30795. extra: 4721 / 4541,
  30796. bottom: 82 / 4803
  30797. }
  30798. },
  30799. maw: {
  30800. height: math.unit(1, "feet"),
  30801. name: "Maw",
  30802. image: {
  30803. source: "./media/characters/casselene-yaro/maw.svg"
  30804. }
  30805. },
  30806. },
  30807. [
  30808. {
  30809. name: "Macro",
  30810. height: math.unit(190, "feet"),
  30811. default: true
  30812. },
  30813. ]
  30814. ))
  30815. characterMakers.push(() => makeCharacter(
  30816. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30817. {
  30818. front: {
  30819. height: math.unit(10, "feet"),
  30820. weight: math.unit(15015, "lb"),
  30821. name: "Front",
  30822. image: {
  30823. source: "./media/characters/platine/front.svg",
  30824. extra: 1428/1353,
  30825. bottom: 31/1459
  30826. }
  30827. },
  30828. },
  30829. [
  30830. {
  30831. name: "Normal",
  30832. height: math.unit(10, "feet"),
  30833. default: true
  30834. },
  30835. {
  30836. name: "Macro",
  30837. height: math.unit(100, "feet")
  30838. },
  30839. {
  30840. name: "Megamacro",
  30841. height: math.unit(1000, "feet")
  30842. },
  30843. ]
  30844. ))
  30845. characterMakers.push(() => makeCharacter(
  30846. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30847. {
  30848. front: {
  30849. height: math.unit(15 + 5 / 12, "feet"),
  30850. weight: math.unit(4600, "lb"),
  30851. name: "Front",
  30852. image: {
  30853. source: "./media/characters/neapolitan-ananassa/front.svg",
  30854. extra: 2903 / 2736,
  30855. bottom: 0 / 2903
  30856. }
  30857. },
  30858. side: {
  30859. height: math.unit(15 + 5 / 12, "feet"),
  30860. weight: math.unit(4600, "lb"),
  30861. name: "Side",
  30862. image: {
  30863. source: "./media/characters/neapolitan-ananassa/side.svg",
  30864. extra: 2925 / 2719,
  30865. bottom: 0 / 2925
  30866. }
  30867. },
  30868. back: {
  30869. height: math.unit(15 + 5 / 12, "feet"),
  30870. weight: math.unit(4600, "lb"),
  30871. name: "Back",
  30872. image: {
  30873. source: "./media/characters/neapolitan-ananassa/back.svg",
  30874. extra: 2903 / 2736,
  30875. bottom: 0 / 2903
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Normal",
  30882. height: math.unit(15 + 5 / 12, "feet"),
  30883. default: true
  30884. },
  30885. {
  30886. name: "Post-Millenium",
  30887. height: math.unit(35 + 5 / 12, "feet")
  30888. },
  30889. {
  30890. name: "Post-Era",
  30891. height: math.unit(450 + 5 / 12, "feet")
  30892. },
  30893. ]
  30894. ))
  30895. characterMakers.push(() => makeCharacter(
  30896. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30897. {
  30898. front: {
  30899. height: math.unit(300, "meters"),
  30900. weight: math.unit(125000, "tonnes"),
  30901. name: "Front",
  30902. image: {
  30903. source: "./media/characters/pazuzu/front.svg",
  30904. extra: 877 / 794,
  30905. bottom: 47 / 924
  30906. }
  30907. },
  30908. },
  30909. [
  30910. {
  30911. name: "Macro",
  30912. height: math.unit(300, "meters"),
  30913. default: true
  30914. },
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30919. {
  30920. side: {
  30921. height: math.unit(10 + 7 / 12, "feet"),
  30922. weight: math.unit(2.5, "tons"),
  30923. name: "Side",
  30924. image: {
  30925. source: "./media/characters/aasha/side.svg",
  30926. extra: 1345 / 1245,
  30927. bottom: 111 / 1456
  30928. }
  30929. },
  30930. back: {
  30931. height: math.unit(10 + 7 / 12, "feet"),
  30932. weight: math.unit(2.5, "tons"),
  30933. name: "Back",
  30934. image: {
  30935. source: "./media/characters/aasha/back.svg",
  30936. extra: 1133 / 1057,
  30937. bottom: 257 / 1390
  30938. }
  30939. },
  30940. },
  30941. [
  30942. {
  30943. name: "Normal",
  30944. height: math.unit(10 + 7 / 12, "feet"),
  30945. default: true
  30946. },
  30947. ]
  30948. ))
  30949. characterMakers.push(() => makeCharacter(
  30950. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30951. {
  30952. front: {
  30953. height: math.unit(6 + 3 / 12, "feet"),
  30954. name: "Front",
  30955. image: {
  30956. source: "./media/characters/nevan/front.svg",
  30957. extra: 704 / 704,
  30958. bottom: 28 / 732
  30959. }
  30960. },
  30961. back: {
  30962. height: math.unit(6 + 3 / 12, "feet"),
  30963. name: "Back",
  30964. image: {
  30965. source: "./media/characters/nevan/back.svg",
  30966. extra: 714 / 714,
  30967. bottom: 21 / 735
  30968. }
  30969. },
  30970. frontFlaccid: {
  30971. height: math.unit(6 + 3 / 12, "feet"),
  30972. name: "Front (Flaccid)",
  30973. image: {
  30974. source: "./media/characters/nevan/front-flaccid.svg",
  30975. extra: 704 / 704,
  30976. bottom: 28 / 732
  30977. }
  30978. },
  30979. frontErect: {
  30980. height: math.unit(6 + 3 / 12, "feet"),
  30981. name: "Front (Erect)",
  30982. image: {
  30983. source: "./media/characters/nevan/front-erect.svg",
  30984. extra: 704 / 704,
  30985. bottom: 28 / 732
  30986. }
  30987. },
  30988. backFlaccid: {
  30989. height: math.unit(6 + 3 / 12, "feet"),
  30990. name: "Back (Flaccid)",
  30991. image: {
  30992. source: "./media/characters/nevan/back-flaccid.svg",
  30993. extra: 714 / 714,
  30994. bottom: 21 / 735
  30995. }
  30996. },
  30997. },
  30998. [
  30999. {
  31000. name: "Normal",
  31001. height: math.unit(6 + 3 / 12, "feet"),
  31002. default: true
  31003. },
  31004. ]
  31005. ))
  31006. characterMakers.push(() => makeCharacter(
  31007. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31008. {
  31009. front: {
  31010. height: math.unit(4, "feet"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/arhan/front.svg",
  31014. extra: 3368 / 3133,
  31015. bottom: 0 / 3368
  31016. }
  31017. },
  31018. side: {
  31019. height: math.unit(4, "feet"),
  31020. name: "Side",
  31021. image: {
  31022. source: "./media/characters/arhan/side.svg",
  31023. extra: 3347 / 3105,
  31024. bottom: 0 / 3347
  31025. }
  31026. },
  31027. tongue: {
  31028. height: math.unit(1.42, "feet"),
  31029. name: "Tongue",
  31030. image: {
  31031. source: "./media/characters/arhan/tongue.svg"
  31032. }
  31033. },
  31034. head: {
  31035. height: math.unit(0.85, "feet"),
  31036. name: "Head",
  31037. image: {
  31038. source: "./media/characters/arhan/head.svg"
  31039. }
  31040. },
  31041. },
  31042. [
  31043. {
  31044. name: "Normal",
  31045. height: math.unit(4, "feet"),
  31046. default: true
  31047. },
  31048. ]
  31049. ))
  31050. characterMakers.push(() => makeCharacter(
  31051. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31052. {
  31053. front: {
  31054. height: math.unit(5 + 7.5 / 12, "feet"),
  31055. weight: math.unit(120, "lb"),
  31056. name: "Front",
  31057. image: {
  31058. source: "./media/characters/digi-duncan/front.svg",
  31059. extra: 330 / 326,
  31060. bottom: 16 / 346
  31061. }
  31062. },
  31063. side: {
  31064. height: math.unit(5 + 7.5 / 12, "feet"),
  31065. weight: math.unit(120, "lb"),
  31066. name: "Side",
  31067. image: {
  31068. source: "./media/characters/digi-duncan/side.svg",
  31069. extra: 341 / 337,
  31070. bottom: 1 / 342
  31071. }
  31072. },
  31073. back: {
  31074. height: math.unit(5 + 7.5 / 12, "feet"),
  31075. weight: math.unit(120, "lb"),
  31076. name: "Back",
  31077. image: {
  31078. source: "./media/characters/digi-duncan/back.svg",
  31079. extra: 330 / 326,
  31080. bottom: 12 / 342
  31081. }
  31082. },
  31083. },
  31084. [
  31085. {
  31086. name: "Speck",
  31087. height: math.unit(0.25, "mm")
  31088. },
  31089. {
  31090. name: "Micro",
  31091. height: math.unit(5, "mm")
  31092. },
  31093. {
  31094. name: "Tiny",
  31095. height: math.unit(0.5, "inches"),
  31096. default: true
  31097. },
  31098. {
  31099. name: "Human",
  31100. height: math.unit(5 + 7.5 / 12, "feet")
  31101. },
  31102. {
  31103. name: "Minigiant",
  31104. height: math.unit(8 + 5.25, "feet")
  31105. },
  31106. {
  31107. name: "Giant",
  31108. height: math.unit(2000, "feet")
  31109. },
  31110. {
  31111. name: "Mega",
  31112. height: math.unit(371.1, "miles")
  31113. },
  31114. ]
  31115. ))
  31116. characterMakers.push(() => makeCharacter(
  31117. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31118. {
  31119. front: {
  31120. height: math.unit(2, "meters"),
  31121. weight: math.unit(350, "kg"),
  31122. name: "Front",
  31123. image: {
  31124. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31125. extra: 898 / 838,
  31126. bottom: 9 / 907
  31127. }
  31128. },
  31129. },
  31130. [
  31131. {
  31132. name: "Micro",
  31133. height: math.unit(8, "meters")
  31134. },
  31135. {
  31136. name: "Normal",
  31137. height: math.unit(50, "meters"),
  31138. default: true
  31139. },
  31140. {
  31141. name: "Macro",
  31142. height: math.unit(500, "meters")
  31143. },
  31144. ]
  31145. ))
  31146. characterMakers.push(() => makeCharacter(
  31147. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31148. {
  31149. front: {
  31150. height: math.unit(6 + 6 / 12, "feet"),
  31151. name: "Front",
  31152. image: {
  31153. source: "./media/characters/khardesh/front.svg",
  31154. extra: 1788/1596,
  31155. bottom: 66/1854
  31156. }
  31157. },
  31158. back: {
  31159. height: math.unit(6 + 6 / 12, "feet"),
  31160. name: "Back",
  31161. image: {
  31162. source: "./media/characters/khardesh/back.svg",
  31163. extra: 1781/1584,
  31164. bottom: 68/1849
  31165. }
  31166. },
  31167. },
  31168. [
  31169. {
  31170. name: "Normal",
  31171. height: math.unit(6 + 6 / 12, "feet"),
  31172. default: true
  31173. },
  31174. {
  31175. name: "Normal+",
  31176. height: math.unit(4, "meters")
  31177. },
  31178. {
  31179. name: "Macro",
  31180. height: math.unit(50, "meters")
  31181. },
  31182. {
  31183. name: "Macro+",
  31184. height: math.unit(100, "meters")
  31185. },
  31186. {
  31187. name: "Megamacro",
  31188. height: math.unit(20, "km")
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(6, "feet"),
  31197. weight: math.unit(150, "lb"),
  31198. name: "Front",
  31199. image: {
  31200. source: "./media/characters/kosho/front.svg",
  31201. extra: 1847 / 1847,
  31202. bottom: 86 / 1933
  31203. }
  31204. },
  31205. },
  31206. [
  31207. {
  31208. name: "Second-stage micro",
  31209. height: math.unit(0.5, "inches")
  31210. },
  31211. {
  31212. name: "First-stage micro",
  31213. height: math.unit(6, "inches")
  31214. },
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(6, "feet"),
  31218. default: true
  31219. },
  31220. {
  31221. name: "First-stage macro",
  31222. height: math.unit(72, "feet")
  31223. },
  31224. {
  31225. name: "Second-stage macro",
  31226. height: math.unit(864, "feet")
  31227. },
  31228. ]
  31229. ))
  31230. characterMakers.push(() => makeCharacter(
  31231. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31232. {
  31233. normal: {
  31234. height: math.unit(4 + 6 / 12, "feet"),
  31235. name: "Normal",
  31236. image: {
  31237. source: "./media/characters/hydra/normal.svg",
  31238. extra: 2833 / 2634,
  31239. bottom: 68 / 2901
  31240. }
  31241. },
  31242. smol: {
  31243. height: math.unit(0.705, "inches"),
  31244. name: "Smol",
  31245. image: {
  31246. source: "./media/characters/hydra/smol.svg",
  31247. extra: 2715 / 2540,
  31248. bottom: 0 / 2715
  31249. }
  31250. },
  31251. },
  31252. [
  31253. {
  31254. name: "Normal",
  31255. height: math.unit(4 + 6 / 12, "feet"),
  31256. default: true
  31257. }
  31258. ]
  31259. ))
  31260. characterMakers.push(() => makeCharacter(
  31261. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31262. {
  31263. front: {
  31264. height: math.unit(0.6, "cm"),
  31265. name: "Front",
  31266. image: {
  31267. source: "./media/characters/daz/front.svg",
  31268. extra: 1682 / 1164,
  31269. bottom: 42 / 1724
  31270. }
  31271. },
  31272. },
  31273. [
  31274. {
  31275. name: "Normal",
  31276. height: math.unit(0.6, "cm"),
  31277. default: true
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31283. {
  31284. front: {
  31285. height: math.unit(6, "feet"),
  31286. weight: math.unit(235, "lb"),
  31287. name: "Front",
  31288. image: {
  31289. source: "./media/characters/theo-pangolin/front.svg",
  31290. extra: 1996 / 1969,
  31291. bottom: 115 / 2111
  31292. }
  31293. },
  31294. back: {
  31295. height: math.unit(6, "feet"),
  31296. weight: math.unit(235, "lb"),
  31297. name: "Back",
  31298. image: {
  31299. source: "./media/characters/theo-pangolin/back.svg",
  31300. extra: 1979 / 1979,
  31301. bottom: 40 / 2019
  31302. }
  31303. },
  31304. feral: {
  31305. height: math.unit(2, "feet"),
  31306. weight: math.unit(30, "lb"),
  31307. name: "Feral",
  31308. image: {
  31309. source: "./media/characters/theo-pangolin/feral.svg",
  31310. extra: 803 / 791,
  31311. bottom: 181 / 984
  31312. }
  31313. },
  31314. footFive: {
  31315. height: math.unit(1.43, "feet"),
  31316. name: "Foot (Five Toes)",
  31317. image: {
  31318. source: "./media/characters/theo-pangolin/foot-five.svg"
  31319. }
  31320. },
  31321. footFour: {
  31322. height: math.unit(1.43, "feet"),
  31323. name: "Foot (Four Toes)",
  31324. image: {
  31325. source: "./media/characters/theo-pangolin/foot-four.svg"
  31326. }
  31327. },
  31328. handFour: {
  31329. height: math.unit(0.81, "feet"),
  31330. name: "Hand (Four Fingers)",
  31331. image: {
  31332. source: "./media/characters/theo-pangolin/hand-four.svg"
  31333. }
  31334. },
  31335. handThree: {
  31336. height: math.unit(0.81, "feet"),
  31337. name: "Hand (Three Fingers)",
  31338. image: {
  31339. source: "./media/characters/theo-pangolin/hand-three.svg"
  31340. }
  31341. },
  31342. headFront: {
  31343. height: math.unit(1.37, "feet"),
  31344. name: "Head (Front)",
  31345. image: {
  31346. source: "./media/characters/theo-pangolin/head-front.svg"
  31347. }
  31348. },
  31349. headSide: {
  31350. height: math.unit(1.43, "feet"),
  31351. name: "Head (Side)",
  31352. image: {
  31353. source: "./media/characters/theo-pangolin/head-side.svg"
  31354. }
  31355. },
  31356. tongue: {
  31357. height: math.unit(2.29, "feet"),
  31358. name: "Tongue",
  31359. image: {
  31360. source: "./media/characters/theo-pangolin/tongue.svg"
  31361. }
  31362. },
  31363. },
  31364. [
  31365. {
  31366. name: "Normal",
  31367. height: math.unit(6, "feet")
  31368. },
  31369. {
  31370. name: "Macro",
  31371. height: math.unit(400, "feet"),
  31372. default: true
  31373. },
  31374. ]
  31375. ))
  31376. characterMakers.push(() => makeCharacter(
  31377. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31378. {
  31379. front: {
  31380. height: math.unit(6, "inches"),
  31381. weight: math.unit(0.036, "kg"),
  31382. name: "Front",
  31383. image: {
  31384. source: "./media/characters/renée/front.svg",
  31385. extra: 900 / 886,
  31386. bottom: 8 / 908
  31387. }
  31388. },
  31389. },
  31390. [
  31391. {
  31392. name: "Nano",
  31393. height: math.unit(1, "nm")
  31394. },
  31395. {
  31396. name: "Micro",
  31397. height: math.unit(1, "mm")
  31398. },
  31399. {
  31400. name: "Normal",
  31401. height: math.unit(6, "inches")
  31402. },
  31403. {
  31404. name: "Macro",
  31405. height: math.unit(2000, "feet"),
  31406. default: true
  31407. },
  31408. {
  31409. name: "Megamacro",
  31410. height: math.unit(2, "km")
  31411. },
  31412. {
  31413. name: "Gigamacro",
  31414. height: math.unit(2000, "km")
  31415. },
  31416. {
  31417. name: "Teramacro",
  31418. height: math.unit(250000, "km")
  31419. },
  31420. ]
  31421. ))
  31422. characterMakers.push(() => makeCharacter(
  31423. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31424. {
  31425. front: {
  31426. height: math.unit(4, "meters"),
  31427. weight: math.unit(150, "kg"),
  31428. name: "Front",
  31429. image: {
  31430. source: "./media/characters/caledvwlch/front.svg",
  31431. extra: 1760 / 1551,
  31432. bottom: 28 / 1788
  31433. }
  31434. },
  31435. side: {
  31436. height: math.unit(4, "meters"),
  31437. weight: math.unit(150, "kg"),
  31438. name: "Side",
  31439. image: {
  31440. source: "./media/characters/caledvwlch/side.svg",
  31441. extra: 1605 / 1536,
  31442. bottom: 31 / 1636
  31443. }
  31444. },
  31445. back: {
  31446. height: math.unit(4, "meters"),
  31447. weight: math.unit(150, "kg"),
  31448. name: "Back",
  31449. image: {
  31450. source: "./media/characters/caledvwlch/back.svg",
  31451. extra: 1635 / 1565,
  31452. bottom: 27 / 1662
  31453. }
  31454. },
  31455. },
  31456. [
  31457. {
  31458. name: "\"Incognito\"",
  31459. height: math.unit(4, "meters")
  31460. },
  31461. {
  31462. name: "Small rampage",
  31463. height: math.unit(600, "meters")
  31464. },
  31465. {
  31466. name: "Mega",
  31467. height: math.unit(30, "km")
  31468. },
  31469. {
  31470. name: "Home-size",
  31471. height: math.unit(50, "km"),
  31472. default: true
  31473. },
  31474. {
  31475. name: "Giga",
  31476. height: math.unit(300, "km")
  31477. },
  31478. {
  31479. name: "Lounging",
  31480. height: math.unit(11000, "km")
  31481. },
  31482. {
  31483. name: "Planet snacking",
  31484. height: math.unit(2000000, "km")
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(6, "feet"),
  31493. weight: math.unit(215, "lb"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/sapphire-svell/front.svg",
  31497. extra: 495 / 455,
  31498. bottom: 20 / 515
  31499. }
  31500. },
  31501. back: {
  31502. height: math.unit(6, "feet"),
  31503. weight: math.unit(216, "lb"),
  31504. name: "Back",
  31505. image: {
  31506. source: "./media/characters/sapphire-svell/back.svg",
  31507. extra: 497 / 477,
  31508. bottom: 7 / 504
  31509. }
  31510. },
  31511. maw: {
  31512. height: math.unit(1.57, "feet"),
  31513. name: "Maw",
  31514. image: {
  31515. source: "./media/characters/sapphire-svell/maw.svg"
  31516. }
  31517. },
  31518. foot: {
  31519. height: math.unit(1.07, "feet"),
  31520. name: "Foot",
  31521. image: {
  31522. source: "./media/characters/sapphire-svell/foot.svg"
  31523. }
  31524. },
  31525. toering: {
  31526. height: math.unit(1.7, "inch"),
  31527. name: "Toering",
  31528. image: {
  31529. source: "./media/characters/sapphire-svell/toering.svg"
  31530. }
  31531. },
  31532. },
  31533. [
  31534. {
  31535. name: "Normal",
  31536. height: math.unit(300, "feet"),
  31537. default: true
  31538. },
  31539. {
  31540. name: "Augmented",
  31541. height: math.unit(1250, "feet")
  31542. },
  31543. {
  31544. name: "Unleashed",
  31545. height: math.unit(3000, "feet")
  31546. },
  31547. ]
  31548. ))
  31549. characterMakers.push(() => makeCharacter(
  31550. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31551. {
  31552. side: {
  31553. height: math.unit(2 + 3 / 12, "feet"),
  31554. weight: math.unit(110, "lb"),
  31555. name: "Side",
  31556. image: {
  31557. source: "./media/characters/glitch-flux/side.svg",
  31558. extra: 997 / 805,
  31559. bottom: 20 / 1017
  31560. }
  31561. },
  31562. },
  31563. [
  31564. {
  31565. name: "Normal",
  31566. height: math.unit(2 + 3 / 12, "feet"),
  31567. default: true
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31573. {
  31574. front: {
  31575. height: math.unit(4, "meters"),
  31576. name: "Front",
  31577. image: {
  31578. source: "./media/characters/mid/front.svg",
  31579. extra: 507 / 476,
  31580. bottom: 17 / 524
  31581. }
  31582. },
  31583. back: {
  31584. height: math.unit(4, "meters"),
  31585. name: "Back",
  31586. image: {
  31587. source: "./media/characters/mid/back.svg",
  31588. extra: 519 / 487,
  31589. bottom: 7 / 526
  31590. }
  31591. },
  31592. stuck: {
  31593. height: math.unit(2.2, "meters"),
  31594. name: "Stuck",
  31595. image: {
  31596. source: "./media/characters/mid/stuck.svg",
  31597. extra: 1951 / 1869,
  31598. bottom: 88 / 2039
  31599. }
  31600. }
  31601. },
  31602. [
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(4, "meters"),
  31606. default: true
  31607. },
  31608. {
  31609. name: "Big",
  31610. height: math.unit(10, "meters")
  31611. },
  31612. {
  31613. name: "Macro",
  31614. height: math.unit(800, "meters")
  31615. },
  31616. {
  31617. name: "Megamacro",
  31618. height: math.unit(100, "km")
  31619. },
  31620. {
  31621. name: "Overgrown",
  31622. height: math.unit(1, "parsec")
  31623. },
  31624. ]
  31625. ))
  31626. characterMakers.push(() => makeCharacter(
  31627. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31628. {
  31629. front: {
  31630. height: math.unit(2.5, "meters"),
  31631. weight: math.unit(225, "kg"),
  31632. name: "Front",
  31633. image: {
  31634. source: "./media/characters/iris/front.svg",
  31635. extra: 3348 / 3251,
  31636. bottom: 205 / 3553
  31637. }
  31638. },
  31639. maw: {
  31640. height: math.unit(0.56, "meter"),
  31641. name: "Maw",
  31642. image: {
  31643. source: "./media/characters/iris/maw.svg"
  31644. }
  31645. },
  31646. },
  31647. [
  31648. {
  31649. name: "Mewter cat",
  31650. height: math.unit(1.2, "meters")
  31651. },
  31652. {
  31653. name: "Normal",
  31654. height: math.unit(2.5, "meters"),
  31655. default: true
  31656. },
  31657. {
  31658. name: "Minimacro",
  31659. height: math.unit(18, "feet")
  31660. },
  31661. {
  31662. name: "Macro",
  31663. height: math.unit(140, "feet")
  31664. },
  31665. {
  31666. name: "Macro+",
  31667. height: math.unit(180, "meters")
  31668. },
  31669. {
  31670. name: "Megamacro",
  31671. height: math.unit(2746, "meters")
  31672. },
  31673. ]
  31674. ))
  31675. characterMakers.push(() => makeCharacter(
  31676. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31677. {
  31678. front: {
  31679. height: math.unit(6, "feet"),
  31680. weight: math.unit(135, "lb"),
  31681. name: "Front",
  31682. image: {
  31683. source: "./media/characters/axel/front.svg",
  31684. extra: 908 / 908,
  31685. bottom: 58 / 966
  31686. }
  31687. },
  31688. side: {
  31689. height: math.unit(6, "feet"),
  31690. weight: math.unit(135, "lb"),
  31691. name: "Side",
  31692. image: {
  31693. source: "./media/characters/axel/side.svg",
  31694. extra: 958 / 958,
  31695. bottom: 11 / 969
  31696. }
  31697. },
  31698. back: {
  31699. height: math.unit(6, "feet"),
  31700. weight: math.unit(135, "lb"),
  31701. name: "Back",
  31702. image: {
  31703. source: "./media/characters/axel/back.svg",
  31704. extra: 887 / 887,
  31705. bottom: 34 / 921
  31706. }
  31707. },
  31708. head: {
  31709. height: math.unit(1.07, "feet"),
  31710. name: "Head",
  31711. image: {
  31712. source: "./media/characters/axel/head.svg"
  31713. }
  31714. },
  31715. beak: {
  31716. height: math.unit(1.4, "feet"),
  31717. name: "Beak",
  31718. image: {
  31719. source: "./media/characters/axel/beak.svg"
  31720. }
  31721. },
  31722. beakSide: {
  31723. height: math.unit(1.4, "feet"),
  31724. name: "Beak Side",
  31725. image: {
  31726. source: "./media/characters/axel/beak-side.svg"
  31727. }
  31728. },
  31729. sheath: {
  31730. height: math.unit(0.5, "feet"),
  31731. name: "Sheath",
  31732. image: {
  31733. source: "./media/characters/axel/sheath.svg"
  31734. }
  31735. },
  31736. dick: {
  31737. height: math.unit(0.98, "feet"),
  31738. name: "Dick",
  31739. image: {
  31740. source: "./media/characters/axel/dick.svg"
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Macro",
  31747. height: math.unit(68, "meters"),
  31748. default: true
  31749. },
  31750. ]
  31751. ))
  31752. characterMakers.push(() => makeCharacter(
  31753. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31754. {
  31755. front: {
  31756. height: math.unit(3.5, "meters"),
  31757. weight: math.unit(1200, "kg"),
  31758. name: "Front",
  31759. image: {
  31760. source: "./media/characters/joanna/front.svg",
  31761. extra: 1596 / 1488,
  31762. bottom: 29 / 1625
  31763. }
  31764. },
  31765. back: {
  31766. height: math.unit(3.5, "meters"),
  31767. weight: math.unit(1200, "kg"),
  31768. name: "Back",
  31769. image: {
  31770. source: "./media/characters/joanna/back.svg",
  31771. extra: 1594 / 1495,
  31772. bottom: 26 / 1620
  31773. }
  31774. },
  31775. frontShorts: {
  31776. height: math.unit(3.5, "meters"),
  31777. weight: math.unit(1200, "kg"),
  31778. name: "Front (Shorts)",
  31779. image: {
  31780. source: "./media/characters/joanna/front-shorts.svg",
  31781. extra: 1596 / 1488,
  31782. bottom: 29 / 1625
  31783. }
  31784. },
  31785. frontBiker: {
  31786. height: math.unit(3.5, "meters"),
  31787. weight: math.unit(1200, "kg"),
  31788. name: "Front (Biker)",
  31789. image: {
  31790. source: "./media/characters/joanna/front-biker.svg",
  31791. extra: 1596 / 1488,
  31792. bottom: 29 / 1625
  31793. }
  31794. },
  31795. backBiker: {
  31796. height: math.unit(3.5, "meters"),
  31797. weight: math.unit(1200, "kg"),
  31798. name: "Back (Biker)",
  31799. image: {
  31800. source: "./media/characters/joanna/back-biker.svg",
  31801. extra: 1594 / 1495,
  31802. bottom: 88 / 1682
  31803. }
  31804. },
  31805. bikeLeft: {
  31806. height: math.unit(2.4, "meters"),
  31807. weight: math.unit(1600, "kg"),
  31808. name: "Bike (Left)",
  31809. image: {
  31810. source: "./media/characters/joanna/bike-left.svg",
  31811. extra: 720 / 720,
  31812. bottom: 8 / 728
  31813. }
  31814. },
  31815. bikeRight: {
  31816. height: math.unit(2.4, "meters"),
  31817. weight: math.unit(1600, "kg"),
  31818. name: "Bike (Right)",
  31819. image: {
  31820. source: "./media/characters/joanna/bike-right.svg",
  31821. extra: 720 / 720,
  31822. bottom: 8 / 728
  31823. }
  31824. },
  31825. },
  31826. [
  31827. {
  31828. name: "Incognito",
  31829. height: math.unit(3.5, "meters")
  31830. },
  31831. {
  31832. name: "Casual Big",
  31833. height: math.unit(200, "meters")
  31834. },
  31835. {
  31836. name: "Macro",
  31837. height: math.unit(600, "meters")
  31838. },
  31839. {
  31840. name: "Original",
  31841. height: math.unit(20, "km"),
  31842. default: true
  31843. },
  31844. {
  31845. name: "Giga",
  31846. height: math.unit(400, "km")
  31847. },
  31848. {
  31849. name: "Lounging",
  31850. height: math.unit(1500, "km")
  31851. },
  31852. {
  31853. name: "Planetary",
  31854. height: math.unit(200000, "km")
  31855. },
  31856. ]
  31857. ))
  31858. characterMakers.push(() => makeCharacter(
  31859. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31860. {
  31861. front: {
  31862. height: math.unit(6, "feet"),
  31863. weight: math.unit(150, "lb"),
  31864. name: "Front",
  31865. image: {
  31866. source: "./media/characters/hugo-sigil/front.svg",
  31867. extra: 522 / 500,
  31868. bottom: 2 / 524
  31869. }
  31870. },
  31871. back: {
  31872. height: math.unit(6, "feet"),
  31873. weight: math.unit(150, "lb"),
  31874. name: "Back",
  31875. image: {
  31876. source: "./media/characters/hugo-sigil/back.svg",
  31877. extra: 519 / 495,
  31878. bottom: 5 / 524
  31879. }
  31880. },
  31881. maw: {
  31882. height: math.unit(1.4, "feet"),
  31883. weight: math.unit(150, "lb"),
  31884. name: "Maw",
  31885. image: {
  31886. source: "./media/characters/hugo-sigil/maw.svg"
  31887. }
  31888. },
  31889. feet: {
  31890. height: math.unit(1.56, "feet"),
  31891. weight: math.unit(150, "lb"),
  31892. name: "Feet",
  31893. image: {
  31894. source: "./media/characters/hugo-sigil/feet.svg",
  31895. extra: 177 / 177,
  31896. bottom: 12 / 189
  31897. }
  31898. },
  31899. },
  31900. [
  31901. {
  31902. name: "Normal",
  31903. height: math.unit(6, "feet")
  31904. },
  31905. {
  31906. name: "Macro",
  31907. height: math.unit(200, "feet"),
  31908. default: true
  31909. },
  31910. ]
  31911. ))
  31912. characterMakers.push(() => makeCharacter(
  31913. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31914. {
  31915. front: {
  31916. height: math.unit(6, "feet"),
  31917. weight: math.unit(150, "lb"),
  31918. name: "Front",
  31919. image: {
  31920. source: "./media/characters/peri/front.svg",
  31921. extra: 2354 / 2233,
  31922. bottom: 49 / 2403
  31923. }
  31924. },
  31925. },
  31926. [
  31927. {
  31928. name: "Really Small",
  31929. height: math.unit(1, "nm")
  31930. },
  31931. {
  31932. name: "Micro",
  31933. height: math.unit(4, "inches")
  31934. },
  31935. {
  31936. name: "Normal",
  31937. height: math.unit(7, "inches"),
  31938. default: true
  31939. },
  31940. {
  31941. name: "Macro",
  31942. height: math.unit(400, "feet")
  31943. },
  31944. {
  31945. name: "Megamacro",
  31946. height: math.unit(100, "miles")
  31947. },
  31948. ]
  31949. ))
  31950. characterMakers.push(() => makeCharacter(
  31951. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31952. {
  31953. frontSlim: {
  31954. height: math.unit(7, "feet"),
  31955. name: "Front (Slim)",
  31956. image: {
  31957. source: "./media/characters/issilora/front-slim.svg",
  31958. extra: 529 / 449,
  31959. bottom: 53 / 582
  31960. }
  31961. },
  31962. sideSlim: {
  31963. height: math.unit(7, "feet"),
  31964. name: "Side (Slim)",
  31965. image: {
  31966. source: "./media/characters/issilora/side-slim.svg",
  31967. extra: 570 / 480,
  31968. bottom: 30 / 600
  31969. }
  31970. },
  31971. backSlim: {
  31972. height: math.unit(7, "feet"),
  31973. name: "Back (Slim)",
  31974. image: {
  31975. source: "./media/characters/issilora/back-slim.svg",
  31976. extra: 537 / 455,
  31977. bottom: 46 / 583
  31978. }
  31979. },
  31980. frontBuff: {
  31981. height: math.unit(7, "feet"),
  31982. name: "Front (Buff)",
  31983. image: {
  31984. source: "./media/characters/issilora/front-buff.svg",
  31985. extra: 2310 / 2035,
  31986. bottom: 335 / 2645
  31987. }
  31988. },
  31989. head: {
  31990. height: math.unit(1.94, "feet"),
  31991. name: "Head",
  31992. image: {
  31993. source: "./media/characters/issilora/head.svg"
  31994. }
  31995. },
  31996. },
  31997. [
  31998. {
  31999. name: "Minimum",
  32000. height: math.unit(7, "feet")
  32001. },
  32002. {
  32003. name: "Comfortable",
  32004. height: math.unit(17, "feet")
  32005. },
  32006. {
  32007. name: "Fun Size",
  32008. height: math.unit(47, "feet")
  32009. },
  32010. {
  32011. name: "Natural Macro",
  32012. height: math.unit(137, "feet"),
  32013. default: true
  32014. },
  32015. {
  32016. name: "Maximum Kaiju",
  32017. height: math.unit(397, "feet")
  32018. },
  32019. ]
  32020. ))
  32021. characterMakers.push(() => makeCharacter(
  32022. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32023. {
  32024. front: {
  32025. height: math.unit(50 + 9/12, "feet"),
  32026. weight: math.unit(32.8, "tons"),
  32027. name: "Front",
  32028. image: {
  32029. source: "./media/characters/irb'iiritaahn/front.svg",
  32030. extra: 1878/1826,
  32031. bottom: 326/2204
  32032. }
  32033. },
  32034. back: {
  32035. height: math.unit(50 + 9/12, "feet"),
  32036. weight: math.unit(32.8, "tons"),
  32037. name: "Back",
  32038. image: {
  32039. source: "./media/characters/irb'iiritaahn/back.svg",
  32040. extra: 2052/2018,
  32041. bottom: 152/2204
  32042. }
  32043. },
  32044. head: {
  32045. height: math.unit(12.86, "feet"),
  32046. name: "Head",
  32047. image: {
  32048. source: "./media/characters/irb'iiritaahn/head.svg"
  32049. }
  32050. },
  32051. maw: {
  32052. height: math.unit(9.66, "feet"),
  32053. name: "Maw",
  32054. image: {
  32055. source: "./media/characters/irb'iiritaahn/maw.svg"
  32056. }
  32057. },
  32058. frontDick: {
  32059. height: math.unit(8.78461, "feet"),
  32060. name: "Front Dick",
  32061. image: {
  32062. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32063. }
  32064. },
  32065. rearDick: {
  32066. height: math.unit(8.78461, "feet"),
  32067. name: "Rear Dick",
  32068. image: {
  32069. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32070. }
  32071. },
  32072. rearDickUnfolded: {
  32073. height: math.unit(8.78, "feet"),
  32074. name: "Rear Dick (Unfolded)",
  32075. image: {
  32076. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32077. }
  32078. },
  32079. wings: {
  32080. height: math.unit(43, "feet"),
  32081. name: "Wings",
  32082. image: {
  32083. source: "./media/characters/irb'iiritaahn/wings.svg"
  32084. }
  32085. },
  32086. },
  32087. [
  32088. {
  32089. name: "Macro",
  32090. height: math.unit(50 + 9/12, "feet"),
  32091. default: true
  32092. },
  32093. ]
  32094. ))
  32095. characterMakers.push(() => makeCharacter(
  32096. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32097. {
  32098. front: {
  32099. height: math.unit(205, "cm"),
  32100. weight: math.unit(102, "kg"),
  32101. name: "Front",
  32102. image: {
  32103. source: "./media/characters/irbisgreif/front.svg",
  32104. extra: 785/706,
  32105. bottom: 13/798
  32106. }
  32107. },
  32108. back: {
  32109. height: math.unit(205, "cm"),
  32110. weight: math.unit(102, "kg"),
  32111. name: "Back",
  32112. image: {
  32113. source: "./media/characters/irbisgreif/back.svg",
  32114. extra: 713/701,
  32115. bottom: 26/739
  32116. }
  32117. },
  32118. frontDressed: {
  32119. height: math.unit(216, "cm"),
  32120. weight: math.unit(102, "kg"),
  32121. name: "Front-dressed",
  32122. image: {
  32123. source: "./media/characters/irbisgreif/front-dressed.svg",
  32124. extra: 902/776,
  32125. bottom: 14/916
  32126. }
  32127. },
  32128. sideDressed: {
  32129. height: math.unit(195, "cm"),
  32130. weight: math.unit(102, "kg"),
  32131. name: "Side-dressed",
  32132. image: {
  32133. source: "./media/characters/irbisgreif/side-dressed.svg",
  32134. extra: 788/688,
  32135. bottom: 21/809
  32136. }
  32137. },
  32138. backDressed: {
  32139. height: math.unit(216, "cm"),
  32140. weight: math.unit(102, "kg"),
  32141. name: "Back-dressed",
  32142. image: {
  32143. source: "./media/characters/irbisgreif/back-dressed.svg",
  32144. extra: 901/783,
  32145. bottom: 10/911
  32146. }
  32147. },
  32148. dick: {
  32149. height: math.unit(0.49, "feet"),
  32150. name: "Dick",
  32151. image: {
  32152. source: "./media/characters/irbisgreif/dick.svg"
  32153. }
  32154. },
  32155. wingTop: {
  32156. height: math.unit(1.93 , "feet"),
  32157. name: "Wing-top",
  32158. image: {
  32159. source: "./media/characters/irbisgreif/wing-top.svg"
  32160. }
  32161. },
  32162. wingBottom: {
  32163. height: math.unit(1.93 , "feet"),
  32164. name: "Wing-bottom",
  32165. image: {
  32166. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(216, "cm"),
  32174. default: true
  32175. },
  32176. ]
  32177. ))
  32178. characterMakers.push(() => makeCharacter(
  32179. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32180. {
  32181. front: {
  32182. height: math.unit(6, "feet"),
  32183. weight: math.unit(150, "lb"),
  32184. name: "Front",
  32185. image: {
  32186. source: "./media/characters/pride/front.svg",
  32187. extra: 1299/1230,
  32188. bottom: 18/1317
  32189. }
  32190. },
  32191. },
  32192. [
  32193. {
  32194. name: "Normal",
  32195. height: math.unit(7, "feet")
  32196. },
  32197. {
  32198. name: "Mini-macro",
  32199. height: math.unit(11, "feet")
  32200. },
  32201. {
  32202. name: "Macro",
  32203. height: math.unit(15, "meters"),
  32204. default: true
  32205. },
  32206. {
  32207. name: "Macro+",
  32208. height: math.unit(40, "meters")
  32209. },
  32210. ]
  32211. ))
  32212. characterMakers.push(() => makeCharacter(
  32213. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32214. {
  32215. front: {
  32216. height: math.unit(4 + 2 / 12, "feet"),
  32217. weight: math.unit(95, "lb"),
  32218. name: "Front",
  32219. image: {
  32220. source: "./media/characters/vaelophis-nyx/front.svg",
  32221. extra: 2532/2330,
  32222. bottom: 0/2532
  32223. }
  32224. },
  32225. back: {
  32226. height: math.unit(4 + 2 / 12, "feet"),
  32227. weight: math.unit(95, "lb"),
  32228. name: "Back",
  32229. image: {
  32230. source: "./media/characters/vaelophis-nyx/back.svg",
  32231. extra: 2484/2361,
  32232. bottom: 0/2484
  32233. }
  32234. },
  32235. feralSide: {
  32236. height: math.unit(2 + 1/12, "feet"),
  32237. weight: math.unit(20, "lb"),
  32238. name: "Feral (Side)",
  32239. image: {
  32240. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32241. extra: 1721/1581,
  32242. bottom: 70/1791
  32243. }
  32244. },
  32245. feralLazing: {
  32246. height: math.unit(1.08, "feet"),
  32247. weight: math.unit(20, "lb"),
  32248. name: "Feral (Lazing)",
  32249. image: {
  32250. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32251. extra: 822/822,
  32252. bottom: 248/1070
  32253. }
  32254. },
  32255. ear: {
  32256. height: math.unit(0.416, "feet"),
  32257. name: "Ear",
  32258. image: {
  32259. source: "./media/characters/vaelophis-nyx/ear.svg"
  32260. }
  32261. },
  32262. eye: {
  32263. height: math.unit(0.0748, "feet"),
  32264. name: "Eye",
  32265. image: {
  32266. source: "./media/characters/vaelophis-nyx/eye.svg"
  32267. }
  32268. },
  32269. mouth: {
  32270. height: math.unit(0.378, "feet"),
  32271. name: "Mouth",
  32272. image: {
  32273. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32274. }
  32275. },
  32276. spade: {
  32277. height: math.unit(0.55, "feet"),
  32278. name: "Spade",
  32279. image: {
  32280. source: "./media/characters/vaelophis-nyx/spade.svg"
  32281. }
  32282. },
  32283. },
  32284. [
  32285. {
  32286. name: "Normal",
  32287. height: math.unit(4 + 2/12, "feet"),
  32288. default: true
  32289. },
  32290. ]
  32291. ))
  32292. characterMakers.push(() => makeCharacter(
  32293. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32294. {
  32295. front: {
  32296. height: math.unit(7, "feet"),
  32297. weight: math.unit(231, "lb"),
  32298. name: "Front",
  32299. image: {
  32300. source: "./media/characters/flux/front.svg",
  32301. extra: 919/871,
  32302. bottom: 0/919
  32303. }
  32304. },
  32305. back: {
  32306. height: math.unit(7, "feet"),
  32307. weight: math.unit(231, "lb"),
  32308. name: "Back",
  32309. image: {
  32310. source: "./media/characters/flux/back.svg",
  32311. extra: 1040/992,
  32312. bottom: 0/1040
  32313. }
  32314. },
  32315. frontDressed: {
  32316. height: math.unit(7, "feet"),
  32317. weight: math.unit(231, "lb"),
  32318. name: "Front (Dressed)",
  32319. image: {
  32320. source: "./media/characters/flux/front-dressed.svg",
  32321. extra: 919/871,
  32322. bottom: 0/919
  32323. }
  32324. },
  32325. feralSide: {
  32326. height: math.unit(5, "feet"),
  32327. weight: math.unit(150, "lb"),
  32328. name: "Feral (Side)",
  32329. image: {
  32330. source: "./media/characters/flux/feral-side.svg",
  32331. extra: 598/528,
  32332. bottom: 28/626
  32333. }
  32334. },
  32335. head: {
  32336. height: math.unit(1.585, "feet"),
  32337. name: "Head",
  32338. image: {
  32339. source: "./media/characters/flux/head.svg"
  32340. }
  32341. },
  32342. headSide: {
  32343. height: math.unit(1.74, "feet"),
  32344. name: "Head (Side)",
  32345. image: {
  32346. source: "./media/characters/flux/head-side.svg"
  32347. }
  32348. },
  32349. headSideFire: {
  32350. height: math.unit(1.76, "feet"),
  32351. name: "Head (Side, Fire)",
  32352. image: {
  32353. source: "./media/characters/flux/head-side-fire.svg"
  32354. }
  32355. },
  32356. },
  32357. [
  32358. {
  32359. name: "Normal",
  32360. height: math.unit(7, "feet"),
  32361. default: true
  32362. },
  32363. ]
  32364. ))
  32365. characterMakers.push(() => makeCharacter(
  32366. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32367. {
  32368. front: {
  32369. height: math.unit(9, "feet"),
  32370. weight: math.unit(1012, "lb"),
  32371. name: "Front",
  32372. image: {
  32373. source: "./media/characters/ulfra-lupae/front.svg",
  32374. extra: 1083/1011,
  32375. bottom: 67/1150
  32376. }
  32377. },
  32378. },
  32379. [
  32380. {
  32381. name: "Micro",
  32382. height: math.unit(6, "inches")
  32383. },
  32384. {
  32385. name: "Socializing",
  32386. height: math.unit(6 + 5/12, "feet")
  32387. },
  32388. {
  32389. name: "Normal",
  32390. height: math.unit(9, "feet"),
  32391. default: true
  32392. },
  32393. {
  32394. name: "Macro",
  32395. height: math.unit(150, "feet")
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32401. {
  32402. front: {
  32403. height: math.unit(5 + 2/12, "feet"),
  32404. weight: math.unit(120, "lb"),
  32405. name: "Front",
  32406. image: {
  32407. source: "./media/characters/timber/front.svg",
  32408. extra: 2814/2705,
  32409. bottom: 181/2995
  32410. }
  32411. },
  32412. },
  32413. [
  32414. {
  32415. name: "Normal",
  32416. height: math.unit(5 + 2/12, "feet"),
  32417. default: true
  32418. },
  32419. ]
  32420. ))
  32421. characterMakers.push(() => makeCharacter(
  32422. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32423. {
  32424. front: {
  32425. height: math.unit(9, "feet"),
  32426. name: "Front",
  32427. image: {
  32428. source: "./media/characters/nicki/front.svg",
  32429. extra: 1240/990,
  32430. bottom: 45/1285
  32431. },
  32432. form: "anthro",
  32433. default: true
  32434. },
  32435. side: {
  32436. height: math.unit(9, "feet"),
  32437. name: "Side",
  32438. image: {
  32439. source: "./media/characters/nicki/side.svg",
  32440. extra: 1047/973,
  32441. bottom: 61/1108
  32442. },
  32443. form: "anthro"
  32444. },
  32445. back: {
  32446. height: math.unit(9, "feet"),
  32447. name: "Back",
  32448. image: {
  32449. source: "./media/characters/nicki/back.svg",
  32450. extra: 1006/965,
  32451. bottom: 39/1045
  32452. },
  32453. form: "anthro"
  32454. },
  32455. taur: {
  32456. height: math.unit(15, "feet"),
  32457. name: "Taur",
  32458. image: {
  32459. source: "./media/characters/nicki/taur.svg",
  32460. extra: 1592/1347,
  32461. bottom: 0/1592
  32462. },
  32463. form: "taur",
  32464. default: true
  32465. },
  32466. },
  32467. [
  32468. {
  32469. name: "Normal",
  32470. height: math.unit(9, "feet"),
  32471. form: "anthro",
  32472. default: true
  32473. },
  32474. {
  32475. name: "Normal",
  32476. height: math.unit(15, "feet"),
  32477. form: "taur",
  32478. default: true
  32479. }
  32480. ],
  32481. {
  32482. "anthro": {
  32483. name: "Anthro",
  32484. default: true
  32485. },
  32486. "taur": {
  32487. name: "Taur"
  32488. }
  32489. }
  32490. ))
  32491. characterMakers.push(() => makeCharacter(
  32492. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32493. {
  32494. front: {
  32495. height: math.unit(7 + 10/12, "feet"),
  32496. weight: math.unit(3.5, "tons"),
  32497. name: "Front",
  32498. image: {
  32499. source: "./media/characters/lee/front.svg",
  32500. extra: 1773/1615,
  32501. bottom: 86/1859
  32502. }
  32503. },
  32504. hand: {
  32505. height: math.unit(1.78, "feet"),
  32506. name: "Hand",
  32507. image: {
  32508. source: "./media/characters/lee/hand.svg"
  32509. }
  32510. },
  32511. maw: {
  32512. height: math.unit(1.18, "feet"),
  32513. name: "Maw",
  32514. image: {
  32515. source: "./media/characters/lee/maw.svg"
  32516. }
  32517. },
  32518. },
  32519. [
  32520. {
  32521. name: "Normal",
  32522. height: math.unit(7 + 10/12, "feet"),
  32523. default: true
  32524. },
  32525. ]
  32526. ))
  32527. characterMakers.push(() => makeCharacter(
  32528. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32529. {
  32530. front: {
  32531. height: math.unit(9, "feet"),
  32532. name: "Front",
  32533. image: {
  32534. source: "./media/characters/guti/front.svg",
  32535. extra: 4551/4355,
  32536. bottom: 123/4674
  32537. }
  32538. },
  32539. tongue: {
  32540. height: math.unit(1, "feet"),
  32541. name: "Tongue",
  32542. image: {
  32543. source: "./media/characters/guti/tongue.svg"
  32544. }
  32545. },
  32546. paw: {
  32547. height: math.unit(1.18, "feet"),
  32548. name: "Paw",
  32549. image: {
  32550. source: "./media/characters/guti/paw.svg"
  32551. }
  32552. },
  32553. },
  32554. [
  32555. {
  32556. name: "Normal",
  32557. height: math.unit(9, "feet"),
  32558. default: true
  32559. },
  32560. ]
  32561. ))
  32562. characterMakers.push(() => makeCharacter(
  32563. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32564. {
  32565. side: {
  32566. height: math.unit(5, "meters"),
  32567. name: "Side",
  32568. image: {
  32569. source: "./media/characters/vesper/side.svg",
  32570. extra: 1605/1518,
  32571. bottom: 0/1605
  32572. }
  32573. },
  32574. },
  32575. [
  32576. {
  32577. name: "Small",
  32578. height: math.unit(5, "meters")
  32579. },
  32580. {
  32581. name: "Sage",
  32582. height: math.unit(100, "meters"),
  32583. default: true
  32584. },
  32585. {
  32586. name: "Fun Size",
  32587. height: math.unit(600, "meters")
  32588. },
  32589. {
  32590. name: "Goddess",
  32591. height: math.unit(20000, "km")
  32592. },
  32593. {
  32594. name: "Maximum",
  32595. height: math.unit(5, "galaxies")
  32596. },
  32597. ]
  32598. ))
  32599. characterMakers.push(() => makeCharacter(
  32600. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32601. {
  32602. front: {
  32603. height: math.unit(6 + 3/12, "feet"),
  32604. weight: math.unit(190, "lb"),
  32605. name: "Front",
  32606. image: {
  32607. source: "./media/characters/gawain/front.svg",
  32608. extra: 2222/2139,
  32609. bottom: 90/2312
  32610. }
  32611. },
  32612. back: {
  32613. height: math.unit(6 + 3/12, "feet"),
  32614. weight: math.unit(190, "lb"),
  32615. name: "Back",
  32616. image: {
  32617. source: "./media/characters/gawain/back.svg",
  32618. extra: 2199/2111,
  32619. bottom: 73/2272
  32620. }
  32621. },
  32622. },
  32623. [
  32624. {
  32625. name: "Normal",
  32626. height: math.unit(6 + 3/12, "feet"),
  32627. default: true
  32628. },
  32629. ]
  32630. ))
  32631. characterMakers.push(() => makeCharacter(
  32632. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32633. {
  32634. side: {
  32635. height: math.unit(3.5, "meters"),
  32636. weight: math.unit(16000, "lb"),
  32637. name: "Side",
  32638. image: {
  32639. source: "./media/characters/dascalti/side.svg",
  32640. extra: 392/273,
  32641. bottom: 47/439
  32642. }
  32643. },
  32644. breath: {
  32645. height: math.unit(7.4, "feet"),
  32646. name: "Breath",
  32647. image: {
  32648. source: "./media/characters/dascalti/breath.svg"
  32649. }
  32650. },
  32651. fed: {
  32652. height: math.unit(3.6, "meters"),
  32653. weight: math.unit(16000, "lb"),
  32654. name: "Fed",
  32655. image: {
  32656. source: "./media/characters/dascalti/fed.svg",
  32657. extra: 1419/820,
  32658. bottom: 95/1514
  32659. }
  32660. },
  32661. },
  32662. [
  32663. {
  32664. name: "Normal",
  32665. height: math.unit(3.5, "meters"),
  32666. default: true
  32667. },
  32668. ]
  32669. ))
  32670. characterMakers.push(() => makeCharacter(
  32671. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32672. {
  32673. front: {
  32674. height: math.unit(3 + 5/12, "feet"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/mauve/front.svg",
  32678. extra: 1126/1033,
  32679. bottom: 65/1191
  32680. }
  32681. },
  32682. side: {
  32683. height: math.unit(3 + 5/12, "feet"),
  32684. name: "Side",
  32685. image: {
  32686. source: "./media/characters/mauve/side.svg",
  32687. extra: 1089/1001,
  32688. bottom: 29/1118
  32689. }
  32690. },
  32691. back: {
  32692. height: math.unit(3 + 5/12, "feet"),
  32693. name: "Back",
  32694. image: {
  32695. source: "./media/characters/mauve/back.svg",
  32696. extra: 1173/1053,
  32697. bottom: 109/1282
  32698. }
  32699. },
  32700. },
  32701. [
  32702. {
  32703. name: "Normal",
  32704. height: math.unit(3 + 5/12, "feet"),
  32705. default: true
  32706. },
  32707. ]
  32708. ))
  32709. characterMakers.push(() => makeCharacter(
  32710. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32711. {
  32712. front: {
  32713. height: math.unit(6 + 3/12, "feet"),
  32714. weight: math.unit(430, "lb"),
  32715. name: "Front",
  32716. image: {
  32717. source: "./media/characters/carlos/front.svg",
  32718. extra: 1964/1913,
  32719. bottom: 70/2034
  32720. }
  32721. },
  32722. },
  32723. [
  32724. {
  32725. name: "Normal",
  32726. height: math.unit(6 + 3/12, "feet"),
  32727. default: true
  32728. },
  32729. ]
  32730. ))
  32731. characterMakers.push(() => makeCharacter(
  32732. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32733. {
  32734. back: {
  32735. height: math.unit(5 + 10/12, "feet"),
  32736. weight: math.unit(200, "lb"),
  32737. name: "Back",
  32738. image: {
  32739. source: "./media/characters/jax/back.svg",
  32740. extra: 764/739,
  32741. bottom: 25/789
  32742. }
  32743. },
  32744. },
  32745. [
  32746. {
  32747. name: "Normal",
  32748. height: math.unit(5 + 10/12, "feet"),
  32749. default: true
  32750. },
  32751. ]
  32752. ))
  32753. characterMakers.push(() => makeCharacter(
  32754. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32755. {
  32756. front: {
  32757. height: math.unit(8, "feet"),
  32758. weight: math.unit(250, "lb"),
  32759. name: "Front",
  32760. image: {
  32761. source: "./media/characters/eikthynir/front.svg",
  32762. extra: 1332/1166,
  32763. bottom: 82/1414
  32764. }
  32765. },
  32766. back: {
  32767. height: math.unit(8, "feet"),
  32768. weight: math.unit(250, "lb"),
  32769. name: "Back",
  32770. image: {
  32771. source: "./media/characters/eikthynir/back.svg",
  32772. extra: 1342/1190,
  32773. bottom: 19/1361
  32774. }
  32775. },
  32776. dick: {
  32777. height: math.unit(2.35, "feet"),
  32778. name: "Dick",
  32779. image: {
  32780. source: "./media/characters/eikthynir/dick.svg"
  32781. }
  32782. },
  32783. },
  32784. [
  32785. {
  32786. name: "Normal",
  32787. height: math.unit(8, "feet"),
  32788. default: true
  32789. },
  32790. ]
  32791. ))
  32792. characterMakers.push(() => makeCharacter(
  32793. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32794. {
  32795. front: {
  32796. height: math.unit(99, "meters"),
  32797. weight: math.unit(13000, "tons"),
  32798. name: "Front",
  32799. image: {
  32800. source: "./media/characters/zlmos/front.svg",
  32801. extra: 2202/1992,
  32802. bottom: 315/2517
  32803. }
  32804. },
  32805. },
  32806. [
  32807. {
  32808. name: "Macro",
  32809. height: math.unit(99, "meters"),
  32810. default: true
  32811. },
  32812. ]
  32813. ))
  32814. characterMakers.push(() => makeCharacter(
  32815. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32816. {
  32817. front: {
  32818. height: math.unit(6 + 5/12, "feet"),
  32819. name: "Front",
  32820. image: {
  32821. source: "./media/characters/purri/front.svg",
  32822. extra: 1698/1610,
  32823. bottom: 32/1730
  32824. }
  32825. },
  32826. frontAlt: {
  32827. height: math.unit(6 + 5/12, "feet"),
  32828. name: "Front (Alt)",
  32829. image: {
  32830. source: "./media/characters/purri/front-alt.svg",
  32831. extra: 450/420,
  32832. bottom: 26/476
  32833. }
  32834. },
  32835. boots: {
  32836. height: math.unit(5.5, "feet"),
  32837. name: "Boots",
  32838. image: {
  32839. source: "./media/characters/purri/boots.svg",
  32840. extra: 905/853,
  32841. bottom: 18/923
  32842. }
  32843. },
  32844. lying: {
  32845. height: math.unit(2, "feet"),
  32846. name: "Lying",
  32847. image: {
  32848. source: "./media/characters/purri/lying.svg",
  32849. extra: 940/843,
  32850. bottom: 146/1086
  32851. }
  32852. },
  32853. devious: {
  32854. height: math.unit(1.77, "feet"),
  32855. name: "Devious",
  32856. image: {
  32857. source: "./media/characters/purri/devious.svg",
  32858. extra: 1440/1155,
  32859. bottom: 147/1587
  32860. }
  32861. },
  32862. bean: {
  32863. height: math.unit(1.94, "feet"),
  32864. name: "Bean",
  32865. image: {
  32866. source: "./media/characters/purri/bean.svg"
  32867. }
  32868. },
  32869. },
  32870. [
  32871. {
  32872. name: "Micro",
  32873. height: math.unit(1, "mm")
  32874. },
  32875. {
  32876. name: "Normal",
  32877. height: math.unit(6 + 5/12, "feet"),
  32878. default: true
  32879. },
  32880. {
  32881. name: "Macro :3c",
  32882. height: math.unit(2, "miles")
  32883. },
  32884. ]
  32885. ))
  32886. characterMakers.push(() => makeCharacter(
  32887. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32888. {
  32889. front: {
  32890. height: math.unit(6 + 2/12, "feet"),
  32891. weight: math.unit(250, "lb"),
  32892. name: "Front",
  32893. image: {
  32894. source: "./media/characters/moonlight/front.svg",
  32895. extra: 1044/908,
  32896. bottom: 56/1100
  32897. }
  32898. },
  32899. feral: {
  32900. height: math.unit(3 + 1/12, "feet"),
  32901. weight: math.unit(50, "kg"),
  32902. name: "Feral",
  32903. image: {
  32904. source: "./media/characters/moonlight/feral.svg",
  32905. extra: 3705/2791,
  32906. bottom: 145/3850
  32907. }
  32908. },
  32909. paw: {
  32910. height: math.unit(1, "feet"),
  32911. name: "Paw",
  32912. image: {
  32913. source: "./media/characters/moonlight/paw.svg"
  32914. }
  32915. },
  32916. paws: {
  32917. height: math.unit(0.98, "feet"),
  32918. name: "Paws",
  32919. image: {
  32920. source: "./media/characters/moonlight/paws.svg",
  32921. extra: 939/939,
  32922. bottom: 50/989
  32923. }
  32924. },
  32925. mouth: {
  32926. height: math.unit(0.48, "feet"),
  32927. name: "Mouth",
  32928. image: {
  32929. source: "./media/characters/moonlight/mouth.svg"
  32930. }
  32931. },
  32932. dick: {
  32933. height: math.unit(1.46, "feet"),
  32934. name: "Dick",
  32935. image: {
  32936. source: "./media/characters/moonlight/dick.svg"
  32937. }
  32938. },
  32939. },
  32940. [
  32941. {
  32942. name: "Normal",
  32943. height: math.unit(6 + 2/12, "feet"),
  32944. default: true
  32945. },
  32946. {
  32947. name: "Macro",
  32948. height: math.unit(300, "feet")
  32949. },
  32950. {
  32951. name: "Macro+",
  32952. height: math.unit(1, "mile")
  32953. },
  32954. {
  32955. name: "Mt. Moon",
  32956. height: math.unit(5, "miles")
  32957. },
  32958. {
  32959. name: "Megamacro",
  32960. height: math.unit(15, "miles")
  32961. },
  32962. ]
  32963. ))
  32964. characterMakers.push(() => makeCharacter(
  32965. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32966. {
  32967. back: {
  32968. height: math.unit(6, "feet"),
  32969. weight: math.unit(150, "lb"),
  32970. name: "Back",
  32971. image: {
  32972. source: "./media/characters/sylen/back.svg",
  32973. extra: 1335/1273,
  32974. bottom: 107/1442
  32975. }
  32976. },
  32977. },
  32978. [
  32979. {
  32980. name: "Normal",
  32981. height: math.unit(5 + 5/12, "feet")
  32982. },
  32983. {
  32984. name: "Megamacro",
  32985. height: math.unit(3, "miles"),
  32986. default: true
  32987. },
  32988. ]
  32989. ))
  32990. characterMakers.push(() => makeCharacter(
  32991. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32992. {
  32993. front: {
  32994. height: math.unit(6, "feet"),
  32995. weight: math.unit(190, "lb"),
  32996. name: "Front",
  32997. image: {
  32998. source: "./media/characters/huttser/front.svg",
  32999. extra: 1152/1058,
  33000. bottom: 23/1175
  33001. }
  33002. },
  33003. side: {
  33004. height: math.unit(6, "feet"),
  33005. weight: math.unit(190, "lb"),
  33006. name: "Side",
  33007. image: {
  33008. source: "./media/characters/huttser/side.svg",
  33009. extra: 1174/1065,
  33010. bottom: 18/1192
  33011. }
  33012. },
  33013. back: {
  33014. height: math.unit(6, "feet"),
  33015. weight: math.unit(190, "lb"),
  33016. name: "Back",
  33017. image: {
  33018. source: "./media/characters/huttser/back.svg",
  33019. extra: 1158/1056,
  33020. bottom: 12/1170
  33021. }
  33022. },
  33023. },
  33024. [
  33025. ]
  33026. ))
  33027. characterMakers.push(() => makeCharacter(
  33028. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33029. {
  33030. side: {
  33031. height: math.unit(12 + 9/12, "feet"),
  33032. weight: math.unit(15000, "lb"),
  33033. name: "Side",
  33034. image: {
  33035. source: "./media/characters/faan/side.svg",
  33036. extra: 2747/2697,
  33037. bottom: 0/2747
  33038. }
  33039. },
  33040. front: {
  33041. height: math.unit(12 + 9/12, "feet"),
  33042. weight: math.unit(15000, "lb"),
  33043. name: "Front",
  33044. image: {
  33045. source: "./media/characters/faan/front.svg",
  33046. extra: 607/571,
  33047. bottom: 24/631
  33048. }
  33049. },
  33050. head: {
  33051. height: math.unit(2.85, "feet"),
  33052. name: "Head",
  33053. image: {
  33054. source: "./media/characters/faan/head.svg"
  33055. }
  33056. },
  33057. headAlt: {
  33058. height: math.unit(3.13, "feet"),
  33059. name: "Head-alt",
  33060. image: {
  33061. source: "./media/characters/faan/head-alt.svg"
  33062. }
  33063. },
  33064. },
  33065. [
  33066. {
  33067. name: "Normal",
  33068. height: math.unit(12 + 9/12, "feet"),
  33069. default: true
  33070. },
  33071. ]
  33072. ))
  33073. characterMakers.push(() => makeCharacter(
  33074. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33075. {
  33076. front: {
  33077. height: math.unit(6, "feet"),
  33078. weight: math.unit(300, "lb"),
  33079. name: "Front",
  33080. image: {
  33081. source: "./media/characters/tanio/front.svg",
  33082. extra: 711/673,
  33083. bottom: 25/736
  33084. }
  33085. },
  33086. },
  33087. [
  33088. {
  33089. name: "Normal",
  33090. height: math.unit(6, "feet"),
  33091. default: true
  33092. },
  33093. ]
  33094. ))
  33095. characterMakers.push(() => makeCharacter(
  33096. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33097. {
  33098. front: {
  33099. height: math.unit(3, "inches"),
  33100. name: "Front",
  33101. image: {
  33102. source: "./media/characters/noboru/front.svg",
  33103. extra: 1039/932,
  33104. bottom: 18/1057
  33105. }
  33106. },
  33107. },
  33108. [
  33109. {
  33110. name: "Micro",
  33111. height: math.unit(3, "inches"),
  33112. default: true
  33113. },
  33114. ]
  33115. ))
  33116. characterMakers.push(() => makeCharacter(
  33117. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33118. {
  33119. front: {
  33120. height: math.unit(1.85, "meters"),
  33121. weight: math.unit(80, "kg"),
  33122. name: "Front",
  33123. image: {
  33124. source: "./media/characters/daniel-barrett/front.svg",
  33125. extra: 355/337,
  33126. bottom: 9/364
  33127. }
  33128. },
  33129. },
  33130. [
  33131. {
  33132. name: "Pico",
  33133. height: math.unit(0.0433, "mm")
  33134. },
  33135. {
  33136. name: "Nano",
  33137. height: math.unit(1.5, "mm")
  33138. },
  33139. {
  33140. name: "Micro",
  33141. height: math.unit(5.3, "cm"),
  33142. default: true
  33143. },
  33144. {
  33145. name: "Normal",
  33146. height: math.unit(1.85, "meters")
  33147. },
  33148. {
  33149. name: "Macro",
  33150. height: math.unit(64.7, "meters")
  33151. },
  33152. {
  33153. name: "Megamacro",
  33154. height: math.unit(2.26, "km")
  33155. },
  33156. {
  33157. name: "Gigamacro",
  33158. height: math.unit(79, "km")
  33159. },
  33160. {
  33161. name: "Teramacro",
  33162. height: math.unit(2765, "km")
  33163. },
  33164. {
  33165. name: "Petamacro",
  33166. height: math.unit(96678, "km")
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33172. {
  33173. front: {
  33174. height: math.unit(30, "meters"),
  33175. weight: math.unit(400, "tons"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/zeel/front.svg",
  33179. extra: 2599/2599,
  33180. bottom: 226/2825
  33181. }
  33182. },
  33183. },
  33184. [
  33185. {
  33186. name: "Macro",
  33187. height: math.unit(30, "meters"),
  33188. default: true
  33189. },
  33190. ]
  33191. ))
  33192. characterMakers.push(() => makeCharacter(
  33193. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33194. {
  33195. front: {
  33196. height: math.unit(6 + 7/12, "feet"),
  33197. weight: math.unit(210, "lb"),
  33198. name: "Front",
  33199. image: {
  33200. source: "./media/characters/tarn/front.svg",
  33201. extra: 3517/3220,
  33202. bottom: 91/3608
  33203. }
  33204. },
  33205. back: {
  33206. height: math.unit(6 + 7/12, "feet"),
  33207. weight: math.unit(210, "lb"),
  33208. name: "Back",
  33209. image: {
  33210. source: "./media/characters/tarn/back.svg",
  33211. extra: 3566/3241,
  33212. bottom: 34/3600
  33213. }
  33214. },
  33215. dick: {
  33216. height: math.unit(1.65, "feet"),
  33217. name: "Dick",
  33218. image: {
  33219. source: "./media/characters/tarn/dick.svg"
  33220. }
  33221. },
  33222. paw: {
  33223. height: math.unit(1.80, "feet"),
  33224. name: "Paw",
  33225. image: {
  33226. source: "./media/characters/tarn/paw.svg"
  33227. }
  33228. },
  33229. tongue: {
  33230. height: math.unit(0.97, "feet"),
  33231. name: "Tongue",
  33232. image: {
  33233. source: "./media/characters/tarn/tongue.svg"
  33234. }
  33235. },
  33236. },
  33237. [
  33238. {
  33239. name: "Micro",
  33240. height: math.unit(4, "inches")
  33241. },
  33242. {
  33243. name: "Normal",
  33244. height: math.unit(6 + 7/12, "feet"),
  33245. default: true
  33246. },
  33247. {
  33248. name: "Macro",
  33249. height: math.unit(300, "feet")
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(5 + 7/12, "feet"),
  33258. weight: math.unit(80, "kg"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33262. extra: 3023/2865,
  33263. bottom: 33/3056
  33264. }
  33265. },
  33266. back: {
  33267. height: math.unit(5 + 7/12, "feet"),
  33268. weight: math.unit(80, "kg"),
  33269. name: "Back",
  33270. image: {
  33271. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33272. extra: 3020/2886,
  33273. bottom: 30/3050
  33274. }
  33275. },
  33276. dick: {
  33277. height: math.unit(0.98, "feet"),
  33278. name: "Dick",
  33279. image: {
  33280. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33281. }
  33282. },
  33283. anatomy: {
  33284. height: math.unit(2.86, "feet"),
  33285. name: "Anatomy",
  33286. image: {
  33287. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Really Small",
  33294. height: math.unit(2, "inches")
  33295. },
  33296. {
  33297. name: "Micro",
  33298. height: math.unit(5.583, "inches")
  33299. },
  33300. {
  33301. name: "Normal",
  33302. height: math.unit(5 + 7/12, "feet"),
  33303. default: true
  33304. },
  33305. {
  33306. name: "Macro",
  33307. height: math.unit(67, "feet")
  33308. },
  33309. {
  33310. name: "Megamacro",
  33311. height: math.unit(134, "feet")
  33312. },
  33313. ]
  33314. ))
  33315. characterMakers.push(() => makeCharacter(
  33316. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33317. {
  33318. front: {
  33319. height: math.unit(9, "feet"),
  33320. weight: math.unit(120, "lb"),
  33321. name: "Front",
  33322. image: {
  33323. source: "./media/characters/sally/front.svg",
  33324. extra: 1506/1349,
  33325. bottom: 66/1572
  33326. }
  33327. },
  33328. },
  33329. [
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(9, "feet"),
  33333. default: true
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33339. {
  33340. front: {
  33341. height: math.unit(8, "feet"),
  33342. weight: math.unit(900, "lb"),
  33343. name: "Front",
  33344. image: {
  33345. source: "./media/characters/owen/front.svg",
  33346. extra: 1761/1657,
  33347. bottom: 74/1835
  33348. }
  33349. },
  33350. side: {
  33351. height: math.unit(8, "feet"),
  33352. weight: math.unit(900, "lb"),
  33353. name: "Side",
  33354. image: {
  33355. source: "./media/characters/owen/side.svg",
  33356. extra: 1797/1734,
  33357. bottom: 30/1827
  33358. }
  33359. },
  33360. back: {
  33361. height: math.unit(8, "feet"),
  33362. weight: math.unit(900, "lb"),
  33363. name: "Back",
  33364. image: {
  33365. source: "./media/characters/owen/back.svg",
  33366. extra: 1796/1706,
  33367. bottom: 59/1855
  33368. }
  33369. },
  33370. maw: {
  33371. height: math.unit(1.76, "feet"),
  33372. name: "Maw",
  33373. image: {
  33374. source: "./media/characters/owen/maw.svg"
  33375. }
  33376. },
  33377. },
  33378. [
  33379. {
  33380. name: "Normal",
  33381. height: math.unit(8, "feet"),
  33382. default: true
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33388. {
  33389. front: {
  33390. height: math.unit(4, "feet"),
  33391. weight: math.unit(400, "lb"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/ryth/front.svg",
  33395. extra: 1920/1748,
  33396. bottom: 42/1962
  33397. }
  33398. },
  33399. back: {
  33400. height: math.unit(4, "feet"),
  33401. weight: math.unit(400, "lb"),
  33402. name: "Back",
  33403. image: {
  33404. source: "./media/characters/ryth/back.svg",
  33405. extra: 1897/1690,
  33406. bottom: 89/1986
  33407. }
  33408. },
  33409. mouth: {
  33410. height: math.unit(1.39, "feet"),
  33411. name: "Mouth",
  33412. image: {
  33413. source: "./media/characters/ryth/mouth.svg"
  33414. }
  33415. },
  33416. tailmaw: {
  33417. height: math.unit(1.23, "feet"),
  33418. name: "Tailmaw",
  33419. image: {
  33420. source: "./media/characters/ryth/tailmaw.svg"
  33421. }
  33422. },
  33423. goia: {
  33424. height: math.unit(4, "meters"),
  33425. weight: math.unit(10800, "lb"),
  33426. name: "Goia",
  33427. image: {
  33428. source: "./media/characters/ryth/goia.svg",
  33429. extra: 745/640,
  33430. bottom: 107/852
  33431. }
  33432. },
  33433. goiaFront: {
  33434. height: math.unit(4, "meters"),
  33435. weight: math.unit(10800, "lb"),
  33436. name: "Goia (Front)",
  33437. image: {
  33438. source: "./media/characters/ryth/goia-front.svg",
  33439. extra: 750/586,
  33440. bottom: 114/864
  33441. }
  33442. },
  33443. goiaMaw: {
  33444. height: math.unit(5.55, "feet"),
  33445. name: "Goia Maw",
  33446. image: {
  33447. source: "./media/characters/ryth/goia-maw.svg"
  33448. }
  33449. },
  33450. goiaForepaw: {
  33451. height: math.unit(3.5, "feet"),
  33452. name: "Goia Forepaw",
  33453. image: {
  33454. source: "./media/characters/ryth/goia-forepaw.svg"
  33455. }
  33456. },
  33457. goiaHindpaw: {
  33458. height: math.unit(5.55, "feet"),
  33459. name: "Goia Hindpaw",
  33460. image: {
  33461. source: "./media/characters/ryth/goia-hindpaw.svg"
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Normal",
  33468. height: math.unit(4, "feet"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33475. {
  33476. front: {
  33477. height: math.unit(7, "feet"),
  33478. weight: math.unit(180, "lb"),
  33479. name: "Front",
  33480. image: {
  33481. source: "./media/characters/necrolance/front.svg",
  33482. extra: 1062/947,
  33483. bottom: 41/1103
  33484. }
  33485. },
  33486. back: {
  33487. height: math.unit(7, "feet"),
  33488. weight: math.unit(180, "lb"),
  33489. name: "Back",
  33490. image: {
  33491. source: "./media/characters/necrolance/back.svg",
  33492. extra: 1045/984,
  33493. bottom: 14/1059
  33494. }
  33495. },
  33496. wing: {
  33497. height: math.unit(2.67, "feet"),
  33498. name: "Wing",
  33499. image: {
  33500. source: "./media/characters/necrolance/wing.svg"
  33501. }
  33502. },
  33503. },
  33504. [
  33505. {
  33506. name: "Normal",
  33507. height: math.unit(7, "feet"),
  33508. default: true
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33514. {
  33515. front: {
  33516. height: math.unit(76, "meters"),
  33517. weight: math.unit(30000, "tons"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/tyler/front.svg",
  33521. extra: 1640/1640,
  33522. bottom: 114/1754
  33523. }
  33524. },
  33525. },
  33526. [
  33527. {
  33528. name: "Macro",
  33529. height: math.unit(76, "meters"),
  33530. default: true
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33536. {
  33537. front: {
  33538. height: math.unit(4 + 11/12, "feet"),
  33539. weight: math.unit(132, "lb"),
  33540. name: "Front",
  33541. image: {
  33542. source: "./media/characters/icey/front.svg",
  33543. extra: 2750/2550,
  33544. bottom: 33/2783
  33545. }
  33546. },
  33547. back: {
  33548. height: math.unit(4 + 11/12, "feet"),
  33549. weight: math.unit(132, "lb"),
  33550. name: "Back",
  33551. image: {
  33552. source: "./media/characters/icey/back.svg",
  33553. extra: 2624/2481,
  33554. bottom: 35/2659
  33555. }
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Normal",
  33561. height: math.unit(4 + 11/12, "feet"),
  33562. default: true
  33563. },
  33564. ]
  33565. ))
  33566. characterMakers.push(() => makeCharacter(
  33567. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33568. {
  33569. front: {
  33570. height: math.unit(100, "feet"),
  33571. weight: math.unit(0, "lb"),
  33572. name: "Front",
  33573. image: {
  33574. source: "./media/characters/smile/front.svg",
  33575. extra: 2983/2912,
  33576. bottom: 162/3145
  33577. }
  33578. },
  33579. back: {
  33580. height: math.unit(100, "feet"),
  33581. weight: math.unit(0, "lb"),
  33582. name: "Back",
  33583. image: {
  33584. source: "./media/characters/smile/back.svg",
  33585. extra: 3143/3031,
  33586. bottom: 91/3234
  33587. }
  33588. },
  33589. head: {
  33590. height: math.unit(26.3, "feet"),
  33591. weight: math.unit(0, "lb"),
  33592. name: "Head",
  33593. image: {
  33594. source: "./media/characters/smile/head.svg"
  33595. }
  33596. },
  33597. collar: {
  33598. height: math.unit(5.3, "feet"),
  33599. weight: math.unit(0, "lb"),
  33600. name: "Collar",
  33601. image: {
  33602. source: "./media/characters/smile/collar.svg"
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Macro",
  33609. height: math.unit(100, "feet"),
  33610. default: true
  33611. },
  33612. ]
  33613. ))
  33614. characterMakers.push(() => makeCharacter(
  33615. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33616. {
  33617. dragon: {
  33618. height: math.unit(26, "feet"),
  33619. weight: math.unit(36, "tons"),
  33620. name: "Dragon",
  33621. image: {
  33622. source: "./media/characters/arimphae/dragon.svg",
  33623. extra: 1574/983,
  33624. bottom: 357/1931
  33625. }
  33626. },
  33627. drake: {
  33628. height: math.unit(9, "feet"),
  33629. weight: math.unit(1.5, "tons"),
  33630. name: "Drake",
  33631. image: {
  33632. source: "./media/characters/arimphae/drake.svg",
  33633. extra: 1120/925,
  33634. bottom: 435/1555
  33635. }
  33636. },
  33637. },
  33638. [
  33639. {
  33640. name: "Small",
  33641. height: math.unit(26*5/9, "feet")
  33642. },
  33643. {
  33644. name: "Normal",
  33645. height: math.unit(26, "feet"),
  33646. default: true
  33647. },
  33648. ]
  33649. ))
  33650. characterMakers.push(() => makeCharacter(
  33651. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33652. {
  33653. front: {
  33654. height: math.unit(8 + 9/12, "feet"),
  33655. name: "Front",
  33656. image: {
  33657. source: "./media/characters/xander/front.svg",
  33658. extra: 1237/974,
  33659. bottom: 94/1331
  33660. }
  33661. },
  33662. },
  33663. [
  33664. {
  33665. name: "Normal",
  33666. height: math.unit(8 + 9/12, "feet"),
  33667. default: true
  33668. },
  33669. {
  33670. name: "Gaze Grabber",
  33671. height: math.unit(13 + 8/12, "feet")
  33672. },
  33673. {
  33674. name: "Jaw Dropper",
  33675. height: math.unit(27, "feet")
  33676. },
  33677. {
  33678. name: "Show Stopper",
  33679. height: math.unit(136, "feet")
  33680. },
  33681. {
  33682. name: "Superstar",
  33683. height: math.unit(1.9e6, "miles")
  33684. },
  33685. ]
  33686. ))
  33687. characterMakers.push(() => makeCharacter(
  33688. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33689. {
  33690. side: {
  33691. height: math.unit(2100, "feet"),
  33692. name: "Side",
  33693. image: {
  33694. source: "./media/characters/osiris/side.svg",
  33695. extra: 1105/939,
  33696. bottom: 167/1272
  33697. }
  33698. },
  33699. },
  33700. [
  33701. {
  33702. name: "Macro",
  33703. height: math.unit(2100, "feet"),
  33704. default: true
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33710. {
  33711. front: {
  33712. height: math.unit(6 + 8/12, "feet"),
  33713. weight: math.unit(225, "lb"),
  33714. name: "Front",
  33715. image: {
  33716. source: "./media/characters/rhys-londe/front.svg",
  33717. extra: 2258/2141,
  33718. bottom: 188/2446
  33719. }
  33720. },
  33721. back: {
  33722. height: math.unit(6 + 8/12, "feet"),
  33723. weight: math.unit(225, "lb"),
  33724. name: "Back",
  33725. image: {
  33726. source: "./media/characters/rhys-londe/back.svg",
  33727. extra: 2237/2137,
  33728. bottom: 63/2300
  33729. }
  33730. },
  33731. frontNsfw: {
  33732. height: math.unit(6 + 8/12, "feet"),
  33733. weight: math.unit(225, "lb"),
  33734. name: "Front (NSFW)",
  33735. image: {
  33736. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33737. extra: 2258/2141,
  33738. bottom: 188/2446
  33739. }
  33740. },
  33741. backNsfw: {
  33742. height: math.unit(6 + 8/12, "feet"),
  33743. weight: math.unit(225, "lb"),
  33744. name: "Back (NSFW)",
  33745. image: {
  33746. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33747. extra: 2237/2137,
  33748. bottom: 63/2300
  33749. }
  33750. },
  33751. dick: {
  33752. height: math.unit(30, "inches"),
  33753. name: "Dick",
  33754. image: {
  33755. source: "./media/characters/rhys-londe/dick.svg"
  33756. }
  33757. },
  33758. maw: {
  33759. height: math.unit(1.6, "feet"),
  33760. name: "Maw",
  33761. image: {
  33762. source: "./media/characters/rhys-londe/maw.svg"
  33763. }
  33764. },
  33765. },
  33766. [
  33767. {
  33768. name: "Normal",
  33769. height: math.unit(6 + 8/12, "feet"),
  33770. default: true
  33771. },
  33772. ]
  33773. ))
  33774. characterMakers.push(() => makeCharacter(
  33775. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33776. {
  33777. front: {
  33778. height: math.unit(3 + 10/12, "feet"),
  33779. weight: math.unit(90, "lb"),
  33780. name: "Front",
  33781. image: {
  33782. source: "./media/characters/taivas-ensim/front.svg",
  33783. extra: 1327/1216,
  33784. bottom: 96/1423
  33785. }
  33786. },
  33787. back: {
  33788. height: math.unit(3 + 10/12, "feet"),
  33789. weight: math.unit(90, "lb"),
  33790. name: "Back",
  33791. image: {
  33792. source: "./media/characters/taivas-ensim/back.svg",
  33793. extra: 1355/1247,
  33794. bottom: 11/1366
  33795. }
  33796. },
  33797. frontNsfw: {
  33798. height: math.unit(3 + 10/12, "feet"),
  33799. weight: math.unit(90, "lb"),
  33800. name: "Front (NSFW)",
  33801. image: {
  33802. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33803. extra: 1327/1216,
  33804. bottom: 96/1423
  33805. }
  33806. },
  33807. backNsfw: {
  33808. height: math.unit(3 + 10/12, "feet"),
  33809. weight: math.unit(90, "lb"),
  33810. name: "Back (NSFW)",
  33811. image: {
  33812. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33813. extra: 1355/1247,
  33814. bottom: 11/1366
  33815. }
  33816. },
  33817. },
  33818. [
  33819. {
  33820. name: "Normal",
  33821. height: math.unit(3 + 10/12, "feet"),
  33822. default: true
  33823. },
  33824. ]
  33825. ))
  33826. characterMakers.push(() => makeCharacter(
  33827. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33828. {
  33829. front: {
  33830. height: math.unit(9 + 6/12, "feet"),
  33831. weight: math.unit(940, "lb"),
  33832. name: "Front",
  33833. image: {
  33834. source: "./media/characters/byliss/front.svg",
  33835. extra: 1327/1290,
  33836. bottom: 82/1409
  33837. }
  33838. },
  33839. back: {
  33840. height: math.unit(9 + 6/12, "feet"),
  33841. weight: math.unit(940, "lb"),
  33842. name: "Back",
  33843. image: {
  33844. source: "./media/characters/byliss/back.svg",
  33845. extra: 1376/1349,
  33846. bottom: 9/1385
  33847. }
  33848. },
  33849. frontNsfw: {
  33850. height: math.unit(9 + 6/12, "feet"),
  33851. weight: math.unit(940, "lb"),
  33852. name: "Front (NSFW)",
  33853. image: {
  33854. source: "./media/characters/byliss/front-nsfw.svg",
  33855. extra: 1327/1290,
  33856. bottom: 82/1409
  33857. }
  33858. },
  33859. backNsfw: {
  33860. height: math.unit(9 + 6/12, "feet"),
  33861. weight: math.unit(940, "lb"),
  33862. name: "Back (NSFW)",
  33863. image: {
  33864. source: "./media/characters/byliss/back-nsfw.svg",
  33865. extra: 1376/1349,
  33866. bottom: 9/1385
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Normal",
  33873. height: math.unit(9 + 6/12, "feet"),
  33874. default: true
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(5 + 2/12, "feet"),
  33883. weight: math.unit(200, "lb"),
  33884. name: "Front",
  33885. image: {
  33886. source: "./media/characters/noraly/front.svg",
  33887. extra: 4985/4773,
  33888. bottom: 150/5135
  33889. }
  33890. },
  33891. full: {
  33892. height: math.unit(5 + 2/12, "feet"),
  33893. weight: math.unit(164, "lb"),
  33894. name: "Full",
  33895. image: {
  33896. source: "./media/characters/noraly/full.svg",
  33897. extra: 1114/1059,
  33898. bottom: 35/1149
  33899. }
  33900. },
  33901. fuller: {
  33902. height: math.unit(5 + 2/12, "feet"),
  33903. weight: math.unit(230, "lb"),
  33904. name: "Fuller",
  33905. image: {
  33906. source: "./media/characters/noraly/fuller.svg",
  33907. extra: 1114/1059,
  33908. bottom: 35/1149
  33909. }
  33910. },
  33911. fullest: {
  33912. height: math.unit(5 + 2/12, "feet"),
  33913. weight: math.unit(300, "lb"),
  33914. name: "Fullest",
  33915. image: {
  33916. source: "./media/characters/noraly/fullest.svg",
  33917. extra: 1114/1059,
  33918. bottom: 35/1149
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(5 + 2/12, "feet"),
  33926. default: true
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33932. {
  33933. front: {
  33934. height: math.unit(5 + 2/12, "feet"),
  33935. weight: math.unit(210, "lb"),
  33936. name: "Front",
  33937. image: {
  33938. source: "./media/characters/pera/front.svg",
  33939. extra: 1560/1531,
  33940. bottom: 165/1725
  33941. }
  33942. },
  33943. back: {
  33944. height: math.unit(5 + 2/12, "feet"),
  33945. weight: math.unit(210, "lb"),
  33946. name: "Back",
  33947. image: {
  33948. source: "./media/characters/pera/back.svg",
  33949. extra: 1523/1493,
  33950. bottom: 152/1675
  33951. }
  33952. },
  33953. dick: {
  33954. height: math.unit(2.4, "feet"),
  33955. name: "Dick",
  33956. image: {
  33957. source: "./media/characters/pera/dick.svg"
  33958. }
  33959. },
  33960. },
  33961. [
  33962. {
  33963. name: "Normal",
  33964. height: math.unit(5 + 2/12, "feet"),
  33965. default: true
  33966. },
  33967. ]
  33968. ))
  33969. characterMakers.push(() => makeCharacter(
  33970. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33971. {
  33972. front: {
  33973. height: math.unit(12, "feet"),
  33974. weight: math.unit(3200, "lb"),
  33975. name: "Front",
  33976. image: {
  33977. source: "./media/characters/julian/front.svg",
  33978. extra: 2962/2701,
  33979. bottom: 184/3146
  33980. }
  33981. },
  33982. maw: {
  33983. height: math.unit(5.35, "feet"),
  33984. name: "Maw",
  33985. image: {
  33986. source: "./media/characters/julian/maw.svg"
  33987. }
  33988. },
  33989. paw: {
  33990. height: math.unit(3.07, "feet"),
  33991. name: "Paw",
  33992. image: {
  33993. source: "./media/characters/julian/paw.svg"
  33994. }
  33995. },
  33996. },
  33997. [
  33998. {
  33999. name: "Default",
  34000. height: math.unit(12, "feet"),
  34001. default: true
  34002. },
  34003. {
  34004. name: "Big",
  34005. height: math.unit(50, "feet")
  34006. },
  34007. {
  34008. name: "Really Big",
  34009. height: math.unit(1, "mile")
  34010. },
  34011. {
  34012. name: "Extremely Big",
  34013. height: math.unit(100, "miles")
  34014. },
  34015. {
  34016. name: "Planet Hugger",
  34017. height: math.unit(200, "megameters")
  34018. },
  34019. {
  34020. name: "Unreasonably Big",
  34021. height: math.unit(1e300, "meters")
  34022. },
  34023. ]
  34024. ))
  34025. characterMakers.push(() => makeCharacter(
  34026. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34027. {
  34028. solgooleo: {
  34029. height: math.unit(4, "meters"),
  34030. weight: math.unit(6000*1.5, "kg"),
  34031. volume: math.unit(6000, "liters"),
  34032. name: "Solgooleo",
  34033. image: {
  34034. source: "./media/characters/pi/solgooleo.svg",
  34035. extra: 388/331,
  34036. bottom: 29/417
  34037. }
  34038. },
  34039. },
  34040. [
  34041. {
  34042. name: "Normal",
  34043. height: math.unit(4, "meters"),
  34044. default: true
  34045. },
  34046. ]
  34047. ))
  34048. characterMakers.push(() => makeCharacter(
  34049. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34050. {
  34051. front: {
  34052. height: math.unit(8, "feet"),
  34053. weight: math.unit(4, "tons"),
  34054. name: "Front",
  34055. image: {
  34056. source: "./media/characters/shaun/front.svg",
  34057. extra: 503/495,
  34058. bottom: 20/523
  34059. }
  34060. },
  34061. back: {
  34062. height: math.unit(8, "feet"),
  34063. weight: math.unit(4, "tons"),
  34064. name: "Back",
  34065. image: {
  34066. source: "./media/characters/shaun/back.svg",
  34067. extra: 487/480,
  34068. bottom: 20/507
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Lorg",
  34075. height: math.unit(8, "feet"),
  34076. default: true
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34082. {
  34083. frontAnthro: {
  34084. height: math.unit(7, "feet"),
  34085. name: "Front",
  34086. image: {
  34087. source: "./media/characters/sini/front-anthro.svg",
  34088. extra: 726/678,
  34089. bottom: 35/761
  34090. },
  34091. form: "anthro",
  34092. default: true
  34093. },
  34094. backAnthro: {
  34095. height: math.unit(7, "feet"),
  34096. name: "Back",
  34097. image: {
  34098. source: "./media/characters/sini/back-anthro.svg",
  34099. extra: 743/701,
  34100. bottom: 12/755
  34101. },
  34102. form: "anthro",
  34103. },
  34104. frontAnthroNsfw: {
  34105. height: math.unit(7, "feet"),
  34106. name: "Front (NSFW)",
  34107. image: {
  34108. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34109. extra: 726/678,
  34110. bottom: 35/761
  34111. },
  34112. form: "anthro"
  34113. },
  34114. backAnthroNsfw: {
  34115. height: math.unit(7, "feet"),
  34116. name: "Back (NSFW)",
  34117. image: {
  34118. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34119. extra: 743/701,
  34120. bottom: 12/755
  34121. },
  34122. form: "anthro",
  34123. },
  34124. mawAnthro: {
  34125. height: math.unit(2.14, "feet"),
  34126. name: "Maw",
  34127. image: {
  34128. source: "./media/characters/sini/maw-anthro.svg"
  34129. },
  34130. form: "anthro"
  34131. },
  34132. dick: {
  34133. height: math.unit(1.45, "feet"),
  34134. name: "Dick",
  34135. image: {
  34136. source: "./media/characters/sini/dick-anthro.svg"
  34137. },
  34138. form: "anthro"
  34139. },
  34140. feral: {
  34141. height: math.unit(16, "feet"),
  34142. name: "Feral",
  34143. image: {
  34144. source: "./media/characters/sini/feral.svg",
  34145. extra: 814/605,
  34146. bottom: 11/825
  34147. },
  34148. form: "feral",
  34149. default: true
  34150. },
  34151. feralNsfw: {
  34152. height: math.unit(16, "feet"),
  34153. name: "Feral (NSFW)",
  34154. image: {
  34155. source: "./media/characters/sini/feral-nsfw.svg",
  34156. extra: 814/605,
  34157. bottom: 11/825
  34158. },
  34159. form: "feral"
  34160. },
  34161. mawFeral: {
  34162. height: math.unit(5.66, "feet"),
  34163. name: "Maw",
  34164. image: {
  34165. source: "./media/characters/sini/maw-feral.svg"
  34166. },
  34167. form: "feral",
  34168. },
  34169. pawFeral: {
  34170. height: math.unit(5.17, "feet"),
  34171. name: "Paw",
  34172. image: {
  34173. source: "./media/characters/sini/paw-feral.svg"
  34174. },
  34175. form: "feral",
  34176. },
  34177. rumpFeral: {
  34178. height: math.unit(13.11, "feet"),
  34179. name: "Rump",
  34180. image: {
  34181. source: "./media/characters/sini/rump-feral.svg"
  34182. },
  34183. form: "feral",
  34184. },
  34185. dickFeral: {
  34186. height: math.unit(1, "feet"),
  34187. name: "Dick",
  34188. image: {
  34189. source: "./media/characters/sini/dick-feral.svg"
  34190. },
  34191. form: "feral",
  34192. },
  34193. eyeFeral: {
  34194. height: math.unit(1.23, "feet"),
  34195. name: "Eye",
  34196. image: {
  34197. source: "./media/characters/sini/eye-feral.svg"
  34198. },
  34199. form: "feral",
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Normal",
  34205. height: math.unit(7, "feet"),
  34206. default: true,
  34207. form: "anthro"
  34208. },
  34209. {
  34210. name: "Normal",
  34211. height: math.unit(16, "feet"),
  34212. default: true,
  34213. form: "feral"
  34214. },
  34215. ],
  34216. {
  34217. "anthro": {
  34218. name: "Anthro",
  34219. default: true
  34220. },
  34221. "feral": {
  34222. name: "Feral",
  34223. }
  34224. }
  34225. ))
  34226. characterMakers.push(() => makeCharacter(
  34227. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34228. {
  34229. side: {
  34230. height: math.unit(47.2, "meters"),
  34231. weight: math.unit(10000, "tons"),
  34232. name: "Side",
  34233. image: {
  34234. source: "./media/characters/raylldo/side.svg",
  34235. extra: 2363/642,
  34236. bottom: 221/2584
  34237. }
  34238. },
  34239. top: {
  34240. height: math.unit(240, "meters"),
  34241. weight: math.unit(10000, "tons"),
  34242. name: "Top",
  34243. image: {
  34244. source: "./media/characters/raylldo/top.svg"
  34245. }
  34246. },
  34247. bottom: {
  34248. height: math.unit(240, "meters"),
  34249. weight: math.unit(10000, "tons"),
  34250. name: "Bottom",
  34251. image: {
  34252. source: "./media/characters/raylldo/bottom.svg"
  34253. }
  34254. },
  34255. head: {
  34256. height: math.unit(38.6, "meters"),
  34257. name: "Head",
  34258. image: {
  34259. source: "./media/characters/raylldo/head.svg",
  34260. extra: 1335/1112,
  34261. bottom: 0/1335
  34262. }
  34263. },
  34264. maw: {
  34265. height: math.unit(16.37, "meters"),
  34266. name: "Maw",
  34267. image: {
  34268. source: "./media/characters/raylldo/maw.svg",
  34269. extra: 883/660,
  34270. bottom: 0/883
  34271. },
  34272. extraAttributes: {
  34273. preyCapacity: {
  34274. name: "Capacity",
  34275. power: 3,
  34276. type: "volume",
  34277. base: math.unit(1000, "people")
  34278. },
  34279. tongueSize: {
  34280. name: "Tongue Size",
  34281. power: 2,
  34282. type: "area",
  34283. base: math.unit(21, "m^2")
  34284. }
  34285. }
  34286. },
  34287. forepaw: {
  34288. height: math.unit(18, "meters"),
  34289. name: "Forepaw",
  34290. image: {
  34291. source: "./media/characters/raylldo/forepaw.svg"
  34292. }
  34293. },
  34294. hindpaw: {
  34295. height: math.unit(23, "meters"),
  34296. name: "Hindpaw",
  34297. image: {
  34298. source: "./media/characters/raylldo/hindpaw.svg"
  34299. }
  34300. },
  34301. genitals: {
  34302. height: math.unit(42, "meters"),
  34303. name: "Genitals",
  34304. image: {
  34305. source: "./media/characters/raylldo/genitals.svg"
  34306. }
  34307. },
  34308. },
  34309. [
  34310. {
  34311. name: "Normal",
  34312. height: math.unit(47.2, "meters"),
  34313. default: true
  34314. },
  34315. ]
  34316. ))
  34317. characterMakers.push(() => makeCharacter(
  34318. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34319. {
  34320. anthroFront: {
  34321. height: math.unit(9, "feet"),
  34322. weight: math.unit(600, "lb"),
  34323. name: "Anthro (Front)",
  34324. image: {
  34325. source: "./media/characters/glint/anthro-front.svg",
  34326. extra: 1097/1018,
  34327. bottom: 28/1125
  34328. }
  34329. },
  34330. anthroBack: {
  34331. height: math.unit(9, "feet"),
  34332. weight: math.unit(600, "lb"),
  34333. name: "Anthro (Back)",
  34334. image: {
  34335. source: "./media/characters/glint/anthro-back.svg",
  34336. extra: 1154/997,
  34337. bottom: 36/1190
  34338. }
  34339. },
  34340. feral: {
  34341. height: math.unit(11, "feet"),
  34342. weight: math.unit(50000, "lb"),
  34343. name: "Feral",
  34344. image: {
  34345. source: "./media/characters/glint/feral.svg",
  34346. extra: 3035/1585,
  34347. bottom: 1169/4204
  34348. }
  34349. },
  34350. dickAnthro: {
  34351. height: math.unit(0.7, "meters"),
  34352. name: "Dick (Anthro)",
  34353. image: {
  34354. source: "./media/characters/glint/dick-anthro.svg"
  34355. }
  34356. },
  34357. dickFeral: {
  34358. height: math.unit(2.65, "meters"),
  34359. name: "Dick (Feral)",
  34360. image: {
  34361. source: "./media/characters/glint/dick-feral.svg"
  34362. }
  34363. },
  34364. slitHidden: {
  34365. height: math.unit(5.85, "meters"),
  34366. name: "Slit (Hidden)",
  34367. image: {
  34368. source: "./media/characters/glint/slit-hidden.svg"
  34369. }
  34370. },
  34371. slitErect: {
  34372. height: math.unit(5.85, "meters"),
  34373. name: "Slit (Erect)",
  34374. image: {
  34375. source: "./media/characters/glint/slit-erect.svg"
  34376. }
  34377. },
  34378. mawAnthro: {
  34379. height: math.unit(0.63, "meters"),
  34380. name: "Maw (Anthro)",
  34381. image: {
  34382. source: "./media/characters/glint/maw.svg"
  34383. }
  34384. },
  34385. mawFeral: {
  34386. height: math.unit(2.89, "meters"),
  34387. name: "Maw (Feral)",
  34388. image: {
  34389. source: "./media/characters/glint/maw.svg"
  34390. }
  34391. },
  34392. },
  34393. [
  34394. {
  34395. name: "Normal",
  34396. height: math.unit(9, "feet"),
  34397. default: true
  34398. },
  34399. ]
  34400. ))
  34401. characterMakers.push(() => makeCharacter(
  34402. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34403. {
  34404. side: {
  34405. height: math.unit(15, "feet"),
  34406. weight: math.unit(5000, "kg"),
  34407. name: "Side",
  34408. image: {
  34409. source: "./media/characters/kairne/side.svg",
  34410. extra: 979/811,
  34411. bottom: 13/992
  34412. }
  34413. },
  34414. front: {
  34415. height: math.unit(15, "feet"),
  34416. weight: math.unit(5000, "kg"),
  34417. name: "Front",
  34418. image: {
  34419. source: "./media/characters/kairne/front.svg",
  34420. extra: 908/814,
  34421. bottom: 26/934
  34422. }
  34423. },
  34424. sideNsfw: {
  34425. height: math.unit(15, "feet"),
  34426. weight: math.unit(5000, "kg"),
  34427. name: "Side (NSFW)",
  34428. image: {
  34429. source: "./media/characters/kairne/side-nsfw.svg",
  34430. extra: 979/811,
  34431. bottom: 13/992
  34432. }
  34433. },
  34434. frontNsfw: {
  34435. height: math.unit(15, "feet"),
  34436. weight: math.unit(5000, "kg"),
  34437. name: "Front (NSFW)",
  34438. image: {
  34439. source: "./media/characters/kairne/front-nsfw.svg",
  34440. extra: 908/814,
  34441. bottom: 26/934
  34442. }
  34443. },
  34444. dickCaged: {
  34445. height: math.unit(0.65, "meters"),
  34446. name: "Dick-caged",
  34447. image: {
  34448. source: "./media/characters/kairne/dick-caged.svg"
  34449. }
  34450. },
  34451. dick: {
  34452. height: math.unit(0.79, "meters"),
  34453. name: "Dick",
  34454. image: {
  34455. source: "./media/characters/kairne/dick.svg"
  34456. }
  34457. },
  34458. genitals: {
  34459. height: math.unit(1.29, "meters"),
  34460. name: "Genitals",
  34461. image: {
  34462. source: "./media/characters/kairne/genitals.svg"
  34463. }
  34464. },
  34465. maw: {
  34466. height: math.unit(1.73, "meters"),
  34467. name: "Maw",
  34468. image: {
  34469. source: "./media/characters/kairne/maw.svg"
  34470. }
  34471. },
  34472. },
  34473. [
  34474. {
  34475. name: "Normal",
  34476. height: math.unit(15, "feet"),
  34477. default: true
  34478. },
  34479. ]
  34480. ))
  34481. characterMakers.push(() => makeCharacter(
  34482. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34483. {
  34484. front: {
  34485. height: math.unit(5 + 8/12, "feet"),
  34486. weight: math.unit(139, "lb"),
  34487. name: "Front",
  34488. image: {
  34489. source: "./media/characters/biscuit-jackal/front.svg",
  34490. extra: 2106/1961,
  34491. bottom: 58/2164
  34492. }
  34493. },
  34494. back: {
  34495. height: math.unit(5 + 8/12, "feet"),
  34496. weight: math.unit(139, "lb"),
  34497. name: "Back",
  34498. image: {
  34499. source: "./media/characters/biscuit-jackal/back.svg",
  34500. extra: 2132/1976,
  34501. bottom: 57/2189
  34502. }
  34503. },
  34504. werejackal: {
  34505. height: math.unit(6 + 3/12, "feet"),
  34506. weight: math.unit(188, "lb"),
  34507. name: "Werejackal",
  34508. image: {
  34509. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34510. extra: 2373/2178,
  34511. bottom: 53/2426
  34512. }
  34513. },
  34514. },
  34515. [
  34516. {
  34517. name: "Normal",
  34518. height: math.unit(5 + 8/12, "feet"),
  34519. default: true
  34520. },
  34521. ]
  34522. ))
  34523. characterMakers.push(() => makeCharacter(
  34524. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34525. {
  34526. front: {
  34527. height: math.unit(140, "cm"),
  34528. weight: math.unit(45, "kg"),
  34529. name: "Front",
  34530. image: {
  34531. source: "./media/characters/tayra-white/front.svg",
  34532. extra: 2229/2192,
  34533. bottom: 75/2304
  34534. }
  34535. },
  34536. },
  34537. [
  34538. {
  34539. name: "Normal",
  34540. height: math.unit(140, "cm"),
  34541. default: true
  34542. },
  34543. ]
  34544. ))
  34545. characterMakers.push(() => makeCharacter(
  34546. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34547. {
  34548. front: {
  34549. height: math.unit(4 + 5/12, "feet"),
  34550. name: "Front",
  34551. image: {
  34552. source: "./media/characters/scoop/front.svg",
  34553. extra: 1257/1136,
  34554. bottom: 69/1326
  34555. }
  34556. },
  34557. back: {
  34558. height: math.unit(4 + 5/12, "feet"),
  34559. name: "Back",
  34560. image: {
  34561. source: "./media/characters/scoop/back.svg",
  34562. extra: 1321/1152,
  34563. bottom: 32/1353
  34564. }
  34565. },
  34566. maw: {
  34567. height: math.unit(0.68, "feet"),
  34568. name: "Maw",
  34569. image: {
  34570. source: "./media/characters/scoop/maw.svg"
  34571. }
  34572. },
  34573. },
  34574. [
  34575. {
  34576. name: "Really Small",
  34577. height: math.unit(1, "mm")
  34578. },
  34579. {
  34580. name: "Micro",
  34581. height: math.unit(1, "inch")
  34582. },
  34583. {
  34584. name: "Normal",
  34585. height: math.unit(4 + 5/12, "feet"),
  34586. default: true
  34587. },
  34588. {
  34589. name: "Macro",
  34590. height: math.unit(200, "feet")
  34591. },
  34592. {
  34593. name: "Megamacro",
  34594. height: math.unit(3240, "feet")
  34595. },
  34596. {
  34597. name: "Teramacro",
  34598. height: math.unit(2500, "miles")
  34599. },
  34600. ]
  34601. ))
  34602. characterMakers.push(() => makeCharacter(
  34603. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34604. {
  34605. front: {
  34606. height: math.unit(15 + 7/12, "feet"),
  34607. weight: math.unit(1150, "tons"),
  34608. name: "Front",
  34609. image: {
  34610. source: "./media/characters/saphinara/front.svg",
  34611. extra: 1837/1643,
  34612. bottom: 84/1921
  34613. },
  34614. form: "normal",
  34615. default: true
  34616. },
  34617. side: {
  34618. height: math.unit(15 + 7/12, "feet"),
  34619. weight: math.unit(1150, "tons"),
  34620. name: "Side",
  34621. image: {
  34622. source: "./media/characters/saphinara/side.svg",
  34623. extra: 605/547,
  34624. bottom: 6/611
  34625. },
  34626. form: "normal"
  34627. },
  34628. back: {
  34629. height: math.unit(15 + 7/12, "feet"),
  34630. weight: math.unit(1150, "tons"),
  34631. name: "Back",
  34632. image: {
  34633. source: "./media/characters/saphinara/back.svg",
  34634. extra: 591/531,
  34635. bottom: 13/604
  34636. },
  34637. form: "normal"
  34638. },
  34639. frontTail: {
  34640. height: math.unit(15 + 7/12, "feet"),
  34641. weight: math.unit(1150, "tons"),
  34642. name: "Front (Full Tail)",
  34643. image: {
  34644. source: "./media/characters/saphinara/front-tail.svg",
  34645. extra: 2256/1630,
  34646. bottom: 261/2517
  34647. },
  34648. form: "normal"
  34649. },
  34650. insides: {
  34651. height: math.unit(11.92, "feet"),
  34652. name: "Insides",
  34653. image: {
  34654. source: "./media/characters/saphinara/insides.svg"
  34655. },
  34656. form: "normal"
  34657. },
  34658. head: {
  34659. height: math.unit(4.17, "feet"),
  34660. name: "Head",
  34661. image: {
  34662. source: "./media/characters/saphinara/head.svg"
  34663. },
  34664. form: "normal"
  34665. },
  34666. tongue: {
  34667. height: math.unit(4.60, "feet"),
  34668. name: "Tongue",
  34669. image: {
  34670. source: "./media/characters/saphinara/tongue.svg"
  34671. },
  34672. form: "normal"
  34673. },
  34674. headEnraged: {
  34675. height: math.unit(5.55, "feet"),
  34676. name: "Head (Enraged)",
  34677. image: {
  34678. source: "./media/characters/saphinara/head-enraged.svg"
  34679. },
  34680. form: "normal"
  34681. },
  34682. wings: {
  34683. height: math.unit(11.95, "feet"),
  34684. name: "Wings",
  34685. image: {
  34686. source: "./media/characters/saphinara/wings.svg"
  34687. },
  34688. form: "normal"
  34689. },
  34690. feathers: {
  34691. height: math.unit(8.92, "feet"),
  34692. name: "Feathers",
  34693. image: {
  34694. source: "./media/characters/saphinara/feathers.svg"
  34695. },
  34696. form: "normal"
  34697. },
  34698. shackles: {
  34699. height: math.unit(2, "feet"),
  34700. name: "Shackles",
  34701. image: {
  34702. source: "./media/characters/saphinara/shackles.svg"
  34703. },
  34704. form: "normal"
  34705. },
  34706. eyes: {
  34707. height: math.unit(1.331, "feet"),
  34708. name: "Eyes",
  34709. image: {
  34710. source: "./media/characters/saphinara/eyes.svg"
  34711. },
  34712. form: "normal"
  34713. },
  34714. eyesEnraged: {
  34715. height: math.unit(1.331, "feet"),
  34716. name: "Eyes (Enraged)",
  34717. image: {
  34718. source: "./media/characters/saphinara/eyes-enraged.svg"
  34719. },
  34720. form: "normal"
  34721. },
  34722. trueFormSide: {
  34723. height: math.unit(200, "feet"),
  34724. weight: math.unit(1e7, "tons"),
  34725. name: "Side",
  34726. image: {
  34727. source: "./media/characters/saphinara/true-form-side.svg",
  34728. extra: 1399/770,
  34729. bottom: 97/1496
  34730. },
  34731. form: "true-form",
  34732. default: true
  34733. },
  34734. trueFormMaw: {
  34735. height: math.unit(71.5, "feet"),
  34736. name: "Maw",
  34737. image: {
  34738. source: "./media/characters/saphinara/true-form-maw.svg",
  34739. extra: 2302/1453,
  34740. bottom: 0/2302
  34741. },
  34742. form: "true-form"
  34743. },
  34744. meowberusSide: {
  34745. height: math.unit(75, "feet"),
  34746. weight: math.unit(180000, "kg"),
  34747. preyCapacity: math.unit(50000, "people"),
  34748. name: "Side",
  34749. image: {
  34750. source: "./media/characters/saphinara/meowberus-side.svg",
  34751. extra: 1400/711,
  34752. bottom: 126/1526
  34753. },
  34754. form: "meowberus",
  34755. extraAttributes: {
  34756. "pawArea": {
  34757. name: "Paw Size",
  34758. power: 2,
  34759. type: "area",
  34760. base: math.unit(35, "m^2")
  34761. }
  34762. }
  34763. },
  34764. },
  34765. [
  34766. {
  34767. name: "Normal",
  34768. height: math.unit(15 + 7/12, "feet"),
  34769. default: true,
  34770. form: "normal"
  34771. },
  34772. {
  34773. name: "Angry",
  34774. height: math.unit(30 + 6/12, "feet"),
  34775. form: "normal"
  34776. },
  34777. {
  34778. name: "Enraged",
  34779. height: math.unit(102 + 1/12, "feet"),
  34780. form: "normal"
  34781. },
  34782. {
  34783. name: "True",
  34784. height: math.unit(200, "feet"),
  34785. default: true,
  34786. form: "true-form"
  34787. },
  34788. {
  34789. name: "Normal",
  34790. height: math.unit(75, "feet"),
  34791. default: true,
  34792. form: "meowberus"
  34793. },
  34794. ],
  34795. {
  34796. "normal": {
  34797. name: "Normal",
  34798. default: true
  34799. },
  34800. "true-form": {
  34801. name: "True Form"
  34802. },
  34803. "meowberus": {
  34804. name: "Meowberus",
  34805. },
  34806. }
  34807. ))
  34808. characterMakers.push(() => makeCharacter(
  34809. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34810. {
  34811. front: {
  34812. height: math.unit(6 + 8/12, "feet"),
  34813. weight: math.unit(300, "lb"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/jrain/front.svg",
  34817. extra: 3039/2865,
  34818. bottom: 399/3438
  34819. }
  34820. },
  34821. back: {
  34822. height: math.unit(6 + 8/12, "feet"),
  34823. weight: math.unit(300, "lb"),
  34824. name: "Back",
  34825. image: {
  34826. source: "./media/characters/jrain/back.svg",
  34827. extra: 3089/2938,
  34828. bottom: 172/3261
  34829. }
  34830. },
  34831. head: {
  34832. height: math.unit(2.14, "feet"),
  34833. name: "Head",
  34834. image: {
  34835. source: "./media/characters/jrain/head.svg"
  34836. }
  34837. },
  34838. maw: {
  34839. height: math.unit(1.77, "feet"),
  34840. name: "Maw",
  34841. image: {
  34842. source: "./media/characters/jrain/maw.svg"
  34843. }
  34844. },
  34845. leftHand: {
  34846. height: math.unit(1.1, "feet"),
  34847. name: "Left Hand",
  34848. image: {
  34849. source: "./media/characters/jrain/left-hand.svg"
  34850. }
  34851. },
  34852. rightHand: {
  34853. height: math.unit(1.1, "feet"),
  34854. name: "Right Hand",
  34855. image: {
  34856. source: "./media/characters/jrain/right-hand.svg"
  34857. }
  34858. },
  34859. eye: {
  34860. height: math.unit(0.35, "feet"),
  34861. name: "Eye",
  34862. image: {
  34863. source: "./media/characters/jrain/eye.svg"
  34864. }
  34865. },
  34866. },
  34867. [
  34868. {
  34869. name: "Normal",
  34870. height: math.unit(6 + 8/12, "feet"),
  34871. default: true
  34872. },
  34873. {
  34874. name: "Casually Large",
  34875. height: math.unit(25, "feet")
  34876. },
  34877. {
  34878. name: "Giant",
  34879. height: math.unit(100, "feet")
  34880. },
  34881. {
  34882. name: "Kaiju",
  34883. height: math.unit(300, "feet")
  34884. },
  34885. ]
  34886. ))
  34887. characterMakers.push(() => makeCharacter(
  34888. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34889. {
  34890. dragon: {
  34891. height: math.unit(5, "meters"),
  34892. name: "Dragon",
  34893. image: {
  34894. source: "./media/characters/sabrina/dragon.svg",
  34895. extra: 3670 / 2365,
  34896. bottom: 333 / 4003
  34897. }
  34898. },
  34899. gryphon: {
  34900. height: math.unit(3, "meters"),
  34901. name: "Gryphon",
  34902. image: {
  34903. source: "./media/characters/sabrina/gryphon.svg",
  34904. extra: 1576 / 945,
  34905. bottom: 71 / 1647
  34906. }
  34907. },
  34908. snake: {
  34909. height: math.unit(12, "meters"),
  34910. name: "Snake",
  34911. image: {
  34912. source: "./media/characters/sabrina/snake.svg",
  34913. extra: 1758 / 1320,
  34914. bottom: 186 / 1944
  34915. }
  34916. },
  34917. collar: {
  34918. height: math.unit(1.86, "meters"),
  34919. name: "Collar",
  34920. image: {
  34921. source: "./media/characters/sabrina/collar.svg"
  34922. }
  34923. },
  34924. eye: {
  34925. height: math.unit(0.53, "meters"),
  34926. name: "Eye",
  34927. image: {
  34928. source: "./media/characters/sabrina/eye.svg"
  34929. }
  34930. },
  34931. foot: {
  34932. height: math.unit(1.86, "meters"),
  34933. name: "Foot",
  34934. image: {
  34935. source: "./media/characters/sabrina/foot.svg"
  34936. }
  34937. },
  34938. hand: {
  34939. height: math.unit(1.32, "meters"),
  34940. name: "Hand",
  34941. image: {
  34942. source: "./media/characters/sabrina/hand.svg"
  34943. }
  34944. },
  34945. head: {
  34946. height: math.unit(2.44, "meters"),
  34947. name: "Head",
  34948. image: {
  34949. source: "./media/characters/sabrina/head.svg"
  34950. }
  34951. },
  34952. headAngry: {
  34953. height: math.unit(2.44, "meters"),
  34954. name: "Head (Angry))",
  34955. image: {
  34956. source: "./media/characters/sabrina/head-angry.svg"
  34957. }
  34958. },
  34959. maw: {
  34960. height: math.unit(1.65, "meters"),
  34961. name: "Maw",
  34962. image: {
  34963. source: "./media/characters/sabrina/maw.svg"
  34964. }
  34965. },
  34966. spikes: {
  34967. height: math.unit(1.69, "meters"),
  34968. name: "Spikes",
  34969. image: {
  34970. source: "./media/characters/sabrina/spikes.svg"
  34971. }
  34972. },
  34973. stomach: {
  34974. height: math.unit(1.15, "meters"),
  34975. name: "Stomach",
  34976. image: {
  34977. source: "./media/characters/sabrina/stomach.svg"
  34978. }
  34979. },
  34980. tongue: {
  34981. height: math.unit(1.27, "meters"),
  34982. name: "Tongue",
  34983. image: {
  34984. source: "./media/characters/sabrina/tongue.svg"
  34985. }
  34986. },
  34987. wingDorsal: {
  34988. height: math.unit(4.85, "meters"),
  34989. name: "Wing (Dorsal)",
  34990. image: {
  34991. source: "./media/characters/sabrina/wing-dorsal.svg"
  34992. }
  34993. },
  34994. wingVentral: {
  34995. height: math.unit(4.85, "meters"),
  34996. name: "Wing (Ventral)",
  34997. image: {
  34998. source: "./media/characters/sabrina/wing-ventral.svg"
  34999. }
  35000. },
  35001. },
  35002. [
  35003. {
  35004. name: "Normal",
  35005. height: math.unit(5, "meters"),
  35006. default: true
  35007. },
  35008. ]
  35009. ))
  35010. characterMakers.push(() => makeCharacter(
  35011. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35012. {
  35013. frontMaid: {
  35014. height: math.unit(5 + 5/12, "feet"),
  35015. weight: math.unit(130, "lb"),
  35016. name: "Front (Maid)",
  35017. image: {
  35018. source: "./media/characters/midnight-tales/front-maid.svg",
  35019. extra: 489/454,
  35020. bottom: 61/550
  35021. }
  35022. },
  35023. frontFormal: {
  35024. height: math.unit(5 + 5/12, "feet"),
  35025. weight: math.unit(130, "lb"),
  35026. name: "Front (Formal)",
  35027. image: {
  35028. source: "./media/characters/midnight-tales/front-formal.svg",
  35029. extra: 489/454,
  35030. bottom: 61/550
  35031. }
  35032. },
  35033. back: {
  35034. height: math.unit(5 + 5/12, "feet"),
  35035. weight: math.unit(130, "lb"),
  35036. name: "Back",
  35037. image: {
  35038. source: "./media/characters/midnight-tales/back.svg",
  35039. extra: 498/456,
  35040. bottom: 33/531
  35041. }
  35042. },
  35043. frontBeast: {
  35044. height: math.unit(40, "feet"),
  35045. weight: math.unit(64000, "lb"),
  35046. name: "Front (Beast)",
  35047. image: {
  35048. source: "./media/characters/midnight-tales/front-beast.svg",
  35049. extra: 927/860,
  35050. bottom: 53/980
  35051. }
  35052. },
  35053. backBeast: {
  35054. height: math.unit(40, "feet"),
  35055. weight: math.unit(64000, "lb"),
  35056. name: "Back (Beast)",
  35057. image: {
  35058. source: "./media/characters/midnight-tales/back-beast.svg",
  35059. extra: 929/855,
  35060. bottom: 16/945
  35061. }
  35062. },
  35063. footBeast: {
  35064. height: math.unit(6.7, "feet"),
  35065. name: "Foot (Beast)",
  35066. image: {
  35067. source: "./media/characters/midnight-tales/foot-beast.svg"
  35068. }
  35069. },
  35070. headBeast: {
  35071. height: math.unit(8, "feet"),
  35072. name: "Head (Beast)",
  35073. image: {
  35074. source: "./media/characters/midnight-tales/head-beast.svg"
  35075. }
  35076. },
  35077. },
  35078. [
  35079. {
  35080. name: "Normal",
  35081. height: math.unit(5 + 5 / 12, "feet"),
  35082. default: true
  35083. },
  35084. {
  35085. name: "Macro",
  35086. height: math.unit(25, "feet")
  35087. },
  35088. ]
  35089. ))
  35090. characterMakers.push(() => makeCharacter(
  35091. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35092. {
  35093. front: {
  35094. height: math.unit(5 + 10/12, "feet"),
  35095. name: "Front",
  35096. image: {
  35097. source: "./media/characters/argon/front.svg",
  35098. extra: 2009/1935,
  35099. bottom: 118/2127
  35100. }
  35101. },
  35102. back: {
  35103. height: math.unit(5 + 10/12, "feet"),
  35104. name: "Back",
  35105. image: {
  35106. source: "./media/characters/argon/back.svg",
  35107. extra: 2047/1992,
  35108. bottom: 20/2067
  35109. }
  35110. },
  35111. frontDressed: {
  35112. height: math.unit(5 + 10/12, "feet"),
  35113. name: "Front (Dressed)",
  35114. image: {
  35115. source: "./media/characters/argon/front-dressed.svg",
  35116. extra: 2009/1935,
  35117. bottom: 118/2127
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Normal",
  35124. height: math.unit(5 + 10/12, "feet"),
  35125. default: true
  35126. },
  35127. ]
  35128. ))
  35129. characterMakers.push(() => makeCharacter(
  35130. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35131. {
  35132. front: {
  35133. height: math.unit(8 + 6/12, "feet"),
  35134. weight: math.unit(1150, "lb"),
  35135. name: "Front",
  35136. image: {
  35137. source: "./media/characters/kichi/front.svg",
  35138. extra: 1267/1164,
  35139. bottom: 61/1328
  35140. }
  35141. },
  35142. back: {
  35143. height: math.unit(8 + 6/12, "feet"),
  35144. weight: math.unit(1150, "lb"),
  35145. name: "Back",
  35146. image: {
  35147. source: "./media/characters/kichi/back.svg",
  35148. extra: 1273/1166,
  35149. bottom: 33/1306
  35150. }
  35151. },
  35152. },
  35153. [
  35154. {
  35155. name: "Normal",
  35156. height: math.unit(8 + 6/12, "feet"),
  35157. default: true
  35158. },
  35159. ]
  35160. ))
  35161. characterMakers.push(() => makeCharacter(
  35162. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35163. {
  35164. front: {
  35165. height: math.unit(6, "feet"),
  35166. weight: math.unit(210, "lb"),
  35167. name: "Front",
  35168. image: {
  35169. source: "./media/characters/manetel-greyscale/front.svg",
  35170. extra: 350/312,
  35171. bottom: 8/358
  35172. }
  35173. },
  35174. },
  35175. [
  35176. {
  35177. name: "Micro",
  35178. height: math.unit(2, "inches")
  35179. },
  35180. {
  35181. name: "Normal",
  35182. height: math.unit(6, "feet"),
  35183. default: true
  35184. },
  35185. {
  35186. name: "Minimacro",
  35187. height: math.unit(17, "feet")
  35188. },
  35189. {
  35190. name: "Macro",
  35191. height: math.unit(117, "feet")
  35192. },
  35193. ]
  35194. ))
  35195. characterMakers.push(() => makeCharacter(
  35196. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35197. {
  35198. side: {
  35199. height: math.unit(5 + 1/12, "feet"),
  35200. weight: math.unit(418, "lb"),
  35201. name: "Side",
  35202. image: {
  35203. source: "./media/characters/softpurr/side.svg",
  35204. extra: 1993/1945,
  35205. bottom: 134/2127
  35206. }
  35207. },
  35208. front: {
  35209. height: math.unit(5 + 1/12, "feet"),
  35210. weight: math.unit(418, "lb"),
  35211. name: "Front",
  35212. image: {
  35213. source: "./media/characters/softpurr/front.svg",
  35214. extra: 1950/1856,
  35215. bottom: 174/2124
  35216. }
  35217. },
  35218. paw: {
  35219. height: math.unit(1, "feet"),
  35220. name: "Paw",
  35221. image: {
  35222. source: "./media/characters/softpurr/paw.svg"
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Normal",
  35229. height: math.unit(5 + 1/12, "feet"),
  35230. default: true
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35236. {
  35237. front: {
  35238. height: math.unit(260, "meters"),
  35239. name: "Front",
  35240. image: {
  35241. source: "./media/characters/anahita/front.svg",
  35242. extra: 665/635,
  35243. bottom: 89/754
  35244. }
  35245. },
  35246. },
  35247. [
  35248. {
  35249. name: "Macro",
  35250. height: math.unit(260, "meters"),
  35251. default: true
  35252. },
  35253. ]
  35254. ))
  35255. characterMakers.push(() => makeCharacter(
  35256. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35257. {
  35258. front: {
  35259. height: math.unit(4 + 10/12, "feet"),
  35260. weight: math.unit(160, "lb"),
  35261. name: "Front",
  35262. image: {
  35263. source: "./media/characters/chip-mouse/front.svg",
  35264. extra: 3528/3408,
  35265. bottom: 0/3528
  35266. }
  35267. },
  35268. frontNsfw: {
  35269. height: math.unit(4 + 10/12, "feet"),
  35270. weight: math.unit(160, "lb"),
  35271. name: "Front (NSFW)",
  35272. image: {
  35273. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35274. extra: 3528/3408,
  35275. bottom: 0/3528
  35276. }
  35277. },
  35278. },
  35279. [
  35280. {
  35281. name: "Normal",
  35282. height: math.unit(4 + 10/12, "feet"),
  35283. default: true
  35284. },
  35285. ]
  35286. ))
  35287. characterMakers.push(() => makeCharacter(
  35288. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35289. {
  35290. side: {
  35291. height: math.unit(10, "feet"),
  35292. weight: math.unit(14000, "lb"),
  35293. name: "Side",
  35294. image: {
  35295. source: "./media/characters/kremm/side.svg",
  35296. extra: 1390/1053,
  35297. bottom: 90/1480
  35298. }
  35299. },
  35300. gut: {
  35301. height: math.unit(5.8, "feet"),
  35302. name: "Gut",
  35303. image: {
  35304. source: "./media/characters/kremm/gut.svg"
  35305. }
  35306. },
  35307. ass: {
  35308. height: math.unit(6.1, "feet"),
  35309. name: "Ass",
  35310. image: {
  35311. source: "./media/characters/kremm/ass.svg"
  35312. }
  35313. },
  35314. jaws: {
  35315. height: math.unit(2.2, "feet"),
  35316. name: "Jaws",
  35317. image: {
  35318. source: "./media/characters/kremm/jaws.svg"
  35319. }
  35320. },
  35321. dick: {
  35322. height: math.unit(4.26, "feet"),
  35323. name: "Dick",
  35324. image: {
  35325. source: "./media/characters/kremm/dick.svg"
  35326. }
  35327. },
  35328. },
  35329. [
  35330. {
  35331. name: "Normal",
  35332. height: math.unit(10, "feet"),
  35333. default: true
  35334. },
  35335. ]
  35336. ))
  35337. characterMakers.push(() => makeCharacter(
  35338. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35339. {
  35340. front: {
  35341. height: math.unit(30, "stories"),
  35342. name: "Front",
  35343. image: {
  35344. source: "./media/characters/kai/front.svg",
  35345. extra: 1892/1718,
  35346. bottom: 162/2054
  35347. }
  35348. },
  35349. },
  35350. [
  35351. {
  35352. name: "Macro",
  35353. height: math.unit(30, "stories"),
  35354. default: true
  35355. },
  35356. ]
  35357. ))
  35358. characterMakers.push(() => makeCharacter(
  35359. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35360. {
  35361. front: {
  35362. height: math.unit(6 + 4/12, "feet"),
  35363. weight: math.unit(145, "lb"),
  35364. name: "Front",
  35365. image: {
  35366. source: "./media/characters/sykes/front.svg",
  35367. extra: 1321 / 1187,
  35368. bottom: 66 / 1387
  35369. }
  35370. },
  35371. back: {
  35372. height: math.unit(6 + 4/12, "feet"),
  35373. weight: math.unit(145, "lb"),
  35374. name: "Back",
  35375. image: {
  35376. source: "./media/characters/sykes/back.svg",
  35377. extra: 1326/1181,
  35378. bottom: 31/1357
  35379. }
  35380. },
  35381. traditionalOutfit: {
  35382. height: math.unit(6 + 4/12, "feet"),
  35383. weight: math.unit(145, "lb"),
  35384. name: "Traditional Outfit",
  35385. image: {
  35386. source: "./media/characters/sykes/traditional-outfit.svg",
  35387. extra: 1321 / 1187,
  35388. bottom: 66 / 1387
  35389. }
  35390. },
  35391. adventureOutfit: {
  35392. height: math.unit(6 + 4/12, "feet"),
  35393. weight: math.unit(145, "lb"),
  35394. name: "Adventure Outfit",
  35395. image: {
  35396. source: "./media/characters/sykes/adventure-outfit.svg",
  35397. extra: 1321 / 1187,
  35398. bottom: 66 / 1387
  35399. }
  35400. },
  35401. handLeft: {
  35402. height: math.unit(0.9, "feet"),
  35403. name: "Hand (Left)",
  35404. image: {
  35405. source: "./media/characters/sykes/hand-left.svg"
  35406. }
  35407. },
  35408. handRight: {
  35409. height: math.unit(0.839, "feet"),
  35410. name: "Hand (Right)",
  35411. image: {
  35412. source: "./media/characters/sykes/hand-right.svg"
  35413. }
  35414. },
  35415. leftFoot: {
  35416. height: math.unit(1.2, "feet"),
  35417. name: "Foot (Left)",
  35418. image: {
  35419. source: "./media/characters/sykes/foot-left.svg"
  35420. }
  35421. },
  35422. rightFoot: {
  35423. height: math.unit(1.2, "feet"),
  35424. name: "Foot (Right)",
  35425. image: {
  35426. source: "./media/characters/sykes/foot-right.svg"
  35427. }
  35428. },
  35429. maw: {
  35430. height: math.unit(1.93, "feet"),
  35431. name: "Maw",
  35432. image: {
  35433. source: "./media/characters/sykes/maw.svg"
  35434. }
  35435. },
  35436. teeth: {
  35437. height: math.unit(0.51, "feet"),
  35438. name: "Teeth",
  35439. image: {
  35440. source: "./media/characters/sykes/teeth.svg"
  35441. }
  35442. },
  35443. tongue: {
  35444. height: math.unit(2.13, "feet"),
  35445. name: "Tongue",
  35446. image: {
  35447. source: "./media/characters/sykes/tongue.svg"
  35448. }
  35449. },
  35450. uvula: {
  35451. height: math.unit(0.16, "feet"),
  35452. name: "Uvula",
  35453. image: {
  35454. source: "./media/characters/sykes/uvula.svg"
  35455. }
  35456. },
  35457. collar: {
  35458. height: math.unit(0.287, "feet"),
  35459. name: "Collar",
  35460. image: {
  35461. source: "./media/characters/sykes/collar.svg"
  35462. }
  35463. },
  35464. tail: {
  35465. height: math.unit(3.8, "feet"),
  35466. name: "Tail",
  35467. image: {
  35468. source: "./media/characters/sykes/tail.svg"
  35469. }
  35470. },
  35471. },
  35472. [
  35473. {
  35474. name: "Shrunken",
  35475. height: math.unit(5, "inches")
  35476. },
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(6 + 4 / 12, "feet"),
  35480. default: true
  35481. },
  35482. {
  35483. name: "Big",
  35484. height: math.unit(15, "feet")
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(5 + 8/12, "feet"),
  35493. weight: math.unit(190, "lb"),
  35494. name: "Front",
  35495. image: {
  35496. source: "./media/characters/oven-otter/front.svg",
  35497. extra: 1809/1740,
  35498. bottom: 181/1990
  35499. }
  35500. },
  35501. back: {
  35502. height: math.unit(5 + 8/12, "feet"),
  35503. weight: math.unit(190, "lb"),
  35504. name: "Back",
  35505. image: {
  35506. source: "./media/characters/oven-otter/back.svg",
  35507. extra: 1709/1635,
  35508. bottom: 118/1827
  35509. }
  35510. },
  35511. hand: {
  35512. height: math.unit(1.07, "feet"),
  35513. name: "Hand",
  35514. image: {
  35515. source: "./media/characters/oven-otter/hand.svg"
  35516. }
  35517. },
  35518. beans: {
  35519. height: math.unit(1.74, "feet"),
  35520. name: "Beans",
  35521. image: {
  35522. source: "./media/characters/oven-otter/beans.svg"
  35523. }
  35524. },
  35525. },
  35526. [
  35527. {
  35528. name: "Micro",
  35529. height: math.unit(0.5, "inches")
  35530. },
  35531. {
  35532. name: "Normal",
  35533. height: math.unit(5 + 8/12, "feet"),
  35534. default: true
  35535. },
  35536. {
  35537. name: "Macro",
  35538. height: math.unit(250, "feet")
  35539. },
  35540. {
  35541. name: "Really High",
  35542. height: math.unit(420, "feet")
  35543. },
  35544. ]
  35545. ))
  35546. characterMakers.push(() => makeCharacter(
  35547. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35548. {
  35549. front: {
  35550. height: math.unit(5, "meters"),
  35551. weight: math.unit(292000000000000, "kg"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/devourer/front.svg",
  35555. extra: 1800/1733,
  35556. bottom: 211/2011
  35557. }
  35558. },
  35559. maw: {
  35560. height: math.unit(1.1, "meter"),
  35561. name: "Maw",
  35562. image: {
  35563. source: "./media/characters/devourer/maw.svg"
  35564. }
  35565. },
  35566. },
  35567. [
  35568. {
  35569. name: "Small",
  35570. height: math.unit(3, "meters")
  35571. },
  35572. {
  35573. name: "Large",
  35574. height: math.unit(5, "meters"),
  35575. default: true
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35581. {
  35582. front: {
  35583. height: math.unit(6, "feet"),
  35584. weight: math.unit(400, "lb"),
  35585. name: "Front",
  35586. image: {
  35587. source: "./media/characters/ellarby/front.svg",
  35588. extra: 1909/1763,
  35589. bottom: 80/1989
  35590. }
  35591. },
  35592. back: {
  35593. height: math.unit(6, "feet"),
  35594. weight: math.unit(400, "lb"),
  35595. name: "Back",
  35596. image: {
  35597. source: "./media/characters/ellarby/back.svg",
  35598. extra: 1914/1784,
  35599. bottom: 172/2086
  35600. }
  35601. },
  35602. },
  35603. [
  35604. {
  35605. name: "Mischief",
  35606. height: math.unit(18, "inches")
  35607. },
  35608. {
  35609. name: "Trouble",
  35610. height: math.unit(12, "feet")
  35611. },
  35612. {
  35613. name: "Havoc",
  35614. height: math.unit(200, "feet"),
  35615. default: true
  35616. },
  35617. {
  35618. name: "Pandemonium",
  35619. height: math.unit(1, "mile")
  35620. },
  35621. {
  35622. name: "Catastrophe",
  35623. height: math.unit(100, "miles")
  35624. },
  35625. ]
  35626. ))
  35627. characterMakers.push(() => makeCharacter(
  35628. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35629. {
  35630. front: {
  35631. height: math.unit(4.7, "meters"),
  35632. weight: math.unit(6500, "kg"),
  35633. name: "Front",
  35634. image: {
  35635. source: "./media/characters/vex/front.svg",
  35636. extra: 1288/1140,
  35637. bottom: 100/1388
  35638. }
  35639. },
  35640. },
  35641. [
  35642. {
  35643. name: "Normal",
  35644. height: math.unit(4.7, "meters"),
  35645. default: true
  35646. },
  35647. ]
  35648. ))
  35649. characterMakers.push(() => makeCharacter(
  35650. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35651. {
  35652. normal: {
  35653. height: math.unit(6, "feet"),
  35654. weight: math.unit(350, "lb"),
  35655. name: "Normal",
  35656. image: {
  35657. source: "./media/characters/teshy/normal.svg",
  35658. extra: 1795/1735,
  35659. bottom: 16/1811
  35660. }
  35661. },
  35662. monsterFront: {
  35663. height: math.unit(12, "feet"),
  35664. weight: math.unit(4700, "lb"),
  35665. name: "Monster (Front)",
  35666. image: {
  35667. source: "./media/characters/teshy/monster-front.svg",
  35668. extra: 2042/2034,
  35669. bottom: 128/2170
  35670. }
  35671. },
  35672. monsterSide: {
  35673. height: math.unit(12, "feet"),
  35674. weight: math.unit(4700, "lb"),
  35675. name: "Monster (Side)",
  35676. image: {
  35677. source: "./media/characters/teshy/monster-side.svg",
  35678. extra: 2067/2056,
  35679. bottom: 70/2137
  35680. }
  35681. },
  35682. monsterBack: {
  35683. height: math.unit(12, "feet"),
  35684. weight: math.unit(4700, "lb"),
  35685. name: "Monster (Back)",
  35686. image: {
  35687. source: "./media/characters/teshy/monster-back.svg",
  35688. extra: 1921/1914,
  35689. bottom: 171/2092
  35690. }
  35691. },
  35692. },
  35693. [
  35694. {
  35695. name: "Normal",
  35696. height: math.unit(6, "feet"),
  35697. default: true
  35698. },
  35699. ]
  35700. ))
  35701. characterMakers.push(() => makeCharacter(
  35702. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35703. {
  35704. front: {
  35705. height: math.unit(6, "feet"),
  35706. name: "Front",
  35707. image: {
  35708. source: "./media/characters/ramey/front.svg",
  35709. extra: 790/787,
  35710. bottom: 27/817
  35711. }
  35712. },
  35713. },
  35714. [
  35715. {
  35716. name: "Normal",
  35717. height: math.unit(6, "feet"),
  35718. default: true
  35719. },
  35720. ]
  35721. ))
  35722. characterMakers.push(() => makeCharacter(
  35723. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35724. {
  35725. front: {
  35726. height: math.unit(5 + 5/12, "feet"),
  35727. weight: math.unit(120, "lb"),
  35728. name: "Front",
  35729. image: {
  35730. source: "./media/characters/phirae/front.svg",
  35731. extra: 2491/2436,
  35732. bottom: 38/2529
  35733. }
  35734. },
  35735. },
  35736. [
  35737. {
  35738. name: "Normal",
  35739. height: math.unit(5 + 5/12, "feet"),
  35740. default: true
  35741. },
  35742. ]
  35743. ))
  35744. characterMakers.push(() => makeCharacter(
  35745. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35746. {
  35747. front: {
  35748. height: math.unit(5 + 3/12, "feet"),
  35749. name: "Front",
  35750. image: {
  35751. source: "./media/characters/stagglas/front.svg",
  35752. extra: 962/882,
  35753. bottom: 53/1015
  35754. }
  35755. },
  35756. feral: {
  35757. height: math.unit(335, "cm"),
  35758. name: "Feral",
  35759. image: {
  35760. source: "./media/characters/stagglas/feral.svg",
  35761. extra: 1732/1090,
  35762. bottom: 48/1780
  35763. }
  35764. },
  35765. },
  35766. [
  35767. {
  35768. name: "Normal",
  35769. height: math.unit(5 + 3/12, "feet"),
  35770. default: true
  35771. },
  35772. ]
  35773. ))
  35774. characterMakers.push(() => makeCharacter(
  35775. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35776. {
  35777. front: {
  35778. height: math.unit(5 + 4/12, "feet"),
  35779. weight: math.unit(145, "lb"),
  35780. name: "Front",
  35781. image: {
  35782. source: "./media/characters/starra/front.svg",
  35783. extra: 1790/1691,
  35784. bottom: 91/1881
  35785. }
  35786. },
  35787. },
  35788. [
  35789. {
  35790. name: "Normal",
  35791. height: math.unit(5 + 4/12, "feet"),
  35792. default: true
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35798. {
  35799. front: {
  35800. height: math.unit(2.2, "meters"),
  35801. name: "Front",
  35802. image: {
  35803. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35804. extra: 1194/1005,
  35805. bottom: 25/1219
  35806. }
  35807. },
  35808. },
  35809. [
  35810. {
  35811. name: "Normal",
  35812. height: math.unit(2.2, "meters"),
  35813. default: true
  35814. },
  35815. ]
  35816. ))
  35817. characterMakers.push(() => makeCharacter(
  35818. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35819. {
  35820. side: {
  35821. height: math.unit(8 + 2/12, "feet"),
  35822. weight: math.unit(1240, "lb"),
  35823. name: "Side",
  35824. image: {
  35825. source: "./media/characters/mika-valentine/side.svg",
  35826. extra: 2670/2501,
  35827. bottom: 250/2920
  35828. }
  35829. },
  35830. },
  35831. [
  35832. {
  35833. name: "Normal",
  35834. height: math.unit(8 + 2/12, "feet"),
  35835. default: true
  35836. },
  35837. ]
  35838. ))
  35839. characterMakers.push(() => makeCharacter(
  35840. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35841. {
  35842. front: {
  35843. height: math.unit(7 + 2/12, "feet"),
  35844. name: "Front",
  35845. image: {
  35846. source: "./media/characters/xoltol/front.svg",
  35847. extra: 2212/2124,
  35848. bottom: 84/2296
  35849. }
  35850. },
  35851. side: {
  35852. height: math.unit(7 + 2/12, "feet"),
  35853. name: "Side",
  35854. image: {
  35855. source: "./media/characters/xoltol/side.svg",
  35856. extra: 2273/2197,
  35857. bottom: 26/2299
  35858. }
  35859. },
  35860. hand: {
  35861. height: math.unit(2.5, "feet"),
  35862. name: "Hand",
  35863. image: {
  35864. source: "./media/characters/xoltol/hand.svg"
  35865. }
  35866. },
  35867. },
  35868. [
  35869. {
  35870. name: "Small-ish",
  35871. height: math.unit(5 + 11/12, "feet")
  35872. },
  35873. {
  35874. name: "Normal",
  35875. height: math.unit(7 + 2/12, "feet")
  35876. },
  35877. {
  35878. name: "\"Macro\"",
  35879. height: math.unit(14 + 9/12, "feet"),
  35880. default: true
  35881. },
  35882. {
  35883. name: "Alternate Height",
  35884. height: math.unit(20, "feet")
  35885. },
  35886. {
  35887. name: "Actually Macro",
  35888. height: math.unit(100, "feet")
  35889. },
  35890. ]
  35891. ))
  35892. characterMakers.push(() => makeCharacter(
  35893. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35894. {
  35895. front: {
  35896. height: math.unit(5 + 2/12, "feet"),
  35897. name: "Front",
  35898. image: {
  35899. source: "./media/characters/kotetsu-redwood/front.svg",
  35900. extra: 1053/942,
  35901. bottom: 60/1113
  35902. }
  35903. },
  35904. },
  35905. [
  35906. {
  35907. name: "Normal",
  35908. height: math.unit(5 + 2/12, "feet"),
  35909. default: true
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35915. {
  35916. front: {
  35917. height: math.unit(2.4, "meters"),
  35918. weight: math.unit(125, "kg"),
  35919. name: "Front",
  35920. image: {
  35921. source: "./media/characters/lilith/front.svg",
  35922. extra: 1590/1513,
  35923. bottom: 203/1793
  35924. }
  35925. },
  35926. },
  35927. [
  35928. {
  35929. name: "Humanoid",
  35930. height: math.unit(2.4, "meters")
  35931. },
  35932. {
  35933. name: "Normal",
  35934. height: math.unit(6, "meters"),
  35935. default: true
  35936. },
  35937. {
  35938. name: "Largest",
  35939. height: math.unit(55, "meters")
  35940. },
  35941. ]
  35942. ))
  35943. characterMakers.push(() => makeCharacter(
  35944. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35945. {
  35946. front: {
  35947. height: math.unit(8 + 4/12, "feet"),
  35948. weight: math.unit(535, "lb"),
  35949. name: "Front",
  35950. image: {
  35951. source: "./media/characters/beh'kah-bolger/front.svg",
  35952. extra: 1660/1603,
  35953. bottom: 37/1697
  35954. }
  35955. },
  35956. },
  35957. [
  35958. {
  35959. name: "Normal",
  35960. height: math.unit(8 + 4/12, "feet"),
  35961. default: true
  35962. },
  35963. {
  35964. name: "Kaiju",
  35965. height: math.unit(250, "feet")
  35966. },
  35967. {
  35968. name: "Still Growing",
  35969. height: math.unit(10, "miles")
  35970. },
  35971. {
  35972. name: "Continental",
  35973. height: math.unit(5000, "miles")
  35974. },
  35975. {
  35976. name: "Final Form",
  35977. height: math.unit(2500000, "miles")
  35978. },
  35979. ]
  35980. ))
  35981. characterMakers.push(() => makeCharacter(
  35982. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35983. {
  35984. front: {
  35985. height: math.unit(7 + 2/12, "feet"),
  35986. weight: math.unit(230, "kg"),
  35987. name: "Front",
  35988. image: {
  35989. source: "./media/characters/tatyana-milewska/front.svg",
  35990. extra: 1199/1150,
  35991. bottom: 86/1285
  35992. }
  35993. },
  35994. },
  35995. [
  35996. {
  35997. name: "Normal",
  35998. height: math.unit(7 + 2/12, "feet"),
  35999. default: true
  36000. },
  36001. {
  36002. name: "Big",
  36003. height: math.unit(12, "feet")
  36004. },
  36005. {
  36006. name: "Minimacro",
  36007. height: math.unit(20, "feet")
  36008. },
  36009. {
  36010. name: "Macro",
  36011. height: math.unit(120, "feet")
  36012. },
  36013. ]
  36014. ))
  36015. characterMakers.push(() => makeCharacter(
  36016. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36017. {
  36018. front: {
  36019. height: math.unit(7 + 8/12, "feet"),
  36020. weight: math.unit(152, "kg"),
  36021. name: "Front",
  36022. image: {
  36023. source: "./media/characters/helen-arri/front.svg",
  36024. extra: 440/423,
  36025. bottom: 14/454
  36026. }
  36027. },
  36028. back: {
  36029. height: math.unit(7 + 8/12, "feet"),
  36030. weight: math.unit(152, "kg"),
  36031. name: "Back",
  36032. image: {
  36033. source: "./media/characters/helen-arri/back.svg",
  36034. extra: 443/426,
  36035. bottom: 8/451
  36036. }
  36037. },
  36038. },
  36039. [
  36040. {
  36041. name: "Normal",
  36042. height: math.unit(7 + 8/12, "feet"),
  36043. default: true
  36044. },
  36045. {
  36046. name: "Big",
  36047. height: math.unit(14, "feet")
  36048. },
  36049. {
  36050. name: "Minimacro",
  36051. height: math.unit(24, "feet")
  36052. },
  36053. {
  36054. name: "Macro",
  36055. height: math.unit(140, "feet")
  36056. },
  36057. ]
  36058. ))
  36059. characterMakers.push(() => makeCharacter(
  36060. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36061. {
  36062. front: {
  36063. height: math.unit(6, "meters"),
  36064. name: "Front",
  36065. image: {
  36066. source: "./media/characters/ehanu-rehu/front.svg",
  36067. extra: 1800/1800,
  36068. bottom: 59/1859
  36069. }
  36070. },
  36071. },
  36072. [
  36073. {
  36074. name: "Normal",
  36075. height: math.unit(6, "meters"),
  36076. default: true
  36077. },
  36078. ]
  36079. ))
  36080. characterMakers.push(() => makeCharacter(
  36081. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36082. {
  36083. front: {
  36084. height: math.unit(7 + 3/12, "feet"),
  36085. name: "Front",
  36086. image: {
  36087. source: "./media/characters/renholder/front.svg",
  36088. extra: 3096/2960,
  36089. bottom: 250/3346
  36090. }
  36091. },
  36092. },
  36093. [
  36094. {
  36095. name: "Normal Bat",
  36096. height: math.unit(7 + 3/12, "feet"),
  36097. default: true
  36098. },
  36099. {
  36100. name: "Slightly Tall Bat",
  36101. height: math.unit(100, "feet")
  36102. },
  36103. {
  36104. name: "Big Bat",
  36105. height: math.unit(1000, "feet")
  36106. },
  36107. {
  36108. name: "City-Sized Bat",
  36109. height: math.unit(200000, "feet")
  36110. },
  36111. {
  36112. name: "Bigger Bat",
  36113. height: math.unit(10000, "miles")
  36114. },
  36115. {
  36116. name: "Solar Sized Bat",
  36117. height: math.unit(100, "AU")
  36118. },
  36119. {
  36120. name: "Galactic Bat",
  36121. height: math.unit(200000, "lightyears")
  36122. },
  36123. {
  36124. name: "Universally Known Bat",
  36125. height: math.unit(1, "universe")
  36126. },
  36127. ]
  36128. ))
  36129. characterMakers.push(() => makeCharacter(
  36130. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36131. {
  36132. front: {
  36133. height: math.unit(6 + 11/12, "feet"),
  36134. weight: math.unit(250, "lb"),
  36135. name: "Front",
  36136. image: {
  36137. source: "./media/characters/cookiecat/front.svg",
  36138. extra: 893/827,
  36139. bottom: 14/907
  36140. }
  36141. },
  36142. },
  36143. [
  36144. {
  36145. name: "Micro",
  36146. height: math.unit(3, "inches")
  36147. },
  36148. {
  36149. name: "Normal",
  36150. height: math.unit(6 + 11/12, "feet"),
  36151. default: true
  36152. },
  36153. {
  36154. name: "Macro",
  36155. height: math.unit(100, "feet")
  36156. },
  36157. {
  36158. name: "Macro+",
  36159. height: math.unit(404, "feet")
  36160. },
  36161. {
  36162. name: "Megamacro",
  36163. height: math.unit(165, "miles")
  36164. },
  36165. {
  36166. name: "Planetary",
  36167. height: math.unit(4600, "miles")
  36168. },
  36169. ]
  36170. ))
  36171. characterMakers.push(() => makeCharacter(
  36172. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36173. {
  36174. front: {
  36175. height: math.unit(10 + 3/12, "feet"),
  36176. weight: math.unit(1500, "lb"),
  36177. name: "Front",
  36178. image: {
  36179. source: "./media/characters/tux-kusanagi/front.svg",
  36180. extra: 944/840,
  36181. bottom: 39/983
  36182. }
  36183. },
  36184. back: {
  36185. height: math.unit(10 + 3/12, "feet"),
  36186. weight: math.unit(1500, "lb"),
  36187. name: "Back",
  36188. image: {
  36189. source: "./media/characters/tux-kusanagi/back.svg",
  36190. extra: 941/842,
  36191. bottom: 28/969
  36192. }
  36193. },
  36194. rump: {
  36195. height: math.unit(5.25, "feet"),
  36196. name: "Rump",
  36197. image: {
  36198. source: "./media/characters/tux-kusanagi/rump.svg"
  36199. }
  36200. },
  36201. beak: {
  36202. height: math.unit(1.54, "feet"),
  36203. name: "Beak",
  36204. image: {
  36205. source: "./media/characters/tux-kusanagi/beak.svg"
  36206. }
  36207. },
  36208. },
  36209. [
  36210. {
  36211. name: "Normal",
  36212. height: math.unit(10 + 3/12, "feet"),
  36213. default: true
  36214. },
  36215. ]
  36216. ))
  36217. characterMakers.push(() => makeCharacter(
  36218. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36219. {
  36220. front: {
  36221. height: math.unit(58, "feet"),
  36222. weight: math.unit(200, "tons"),
  36223. name: "Front",
  36224. image: {
  36225. source: "./media/characters/uzarmazari/front.svg",
  36226. extra: 1575/1455,
  36227. bottom: 152/1727
  36228. }
  36229. },
  36230. back: {
  36231. height: math.unit(58, "feet"),
  36232. weight: math.unit(200, "tons"),
  36233. name: "Back",
  36234. image: {
  36235. source: "./media/characters/uzarmazari/back.svg",
  36236. extra: 1585/1510,
  36237. bottom: 157/1742
  36238. }
  36239. },
  36240. head: {
  36241. height: math.unit(26, "feet"),
  36242. name: "Head",
  36243. image: {
  36244. source: "./media/characters/uzarmazari/head.svg"
  36245. }
  36246. },
  36247. },
  36248. [
  36249. {
  36250. name: "Normal",
  36251. height: math.unit(58, "feet"),
  36252. default: true
  36253. },
  36254. ]
  36255. ))
  36256. characterMakers.push(() => makeCharacter(
  36257. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36258. {
  36259. side: {
  36260. height: math.unit(15, "feet"),
  36261. name: "Side",
  36262. image: {
  36263. source: "./media/characters/akitu/side.svg",
  36264. extra: 1421/1321,
  36265. bottom: 157/1578
  36266. }
  36267. },
  36268. front: {
  36269. height: math.unit(15, "feet"),
  36270. name: "Front",
  36271. image: {
  36272. source: "./media/characters/akitu/front.svg",
  36273. extra: 1435/1326,
  36274. bottom: 232/1667
  36275. }
  36276. },
  36277. },
  36278. [
  36279. {
  36280. name: "Normal",
  36281. height: math.unit(15, "feet"),
  36282. default: true
  36283. },
  36284. ]
  36285. ))
  36286. characterMakers.push(() => makeCharacter(
  36287. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36288. {
  36289. front: {
  36290. height: math.unit(10 + 8/12, "feet"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/azalie-croixland/front.svg",
  36294. extra: 1972/1856,
  36295. bottom: 31/2003
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Original Height",
  36302. height: math.unit(5 + 4/12, "feet")
  36303. },
  36304. {
  36305. name: "Normal Height",
  36306. height: math.unit(10 + 8/12, "feet"),
  36307. default: true
  36308. },
  36309. ]
  36310. ))
  36311. characterMakers.push(() => makeCharacter(
  36312. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36313. {
  36314. side: {
  36315. height: math.unit(7 + 1/12, "feet"),
  36316. weight: math.unit(245, "lb"),
  36317. name: "Side",
  36318. image: {
  36319. source: "./media/characters/kavus-kazian/side.svg",
  36320. extra: 349/342,
  36321. bottom: 15/364
  36322. }
  36323. },
  36324. },
  36325. [
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(7 + 1/12, "feet"),
  36329. default: true
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36335. {
  36336. normalFront: {
  36337. height: math.unit(5 + 11/12, "feet"),
  36338. name: "Front",
  36339. image: {
  36340. source: "./media/characters/moonlight-rose/normal-front.svg",
  36341. extra: 1980/1825,
  36342. bottom: 18/1998
  36343. },
  36344. form: "normal",
  36345. default: true
  36346. },
  36347. normalBack: {
  36348. height: math.unit(5 + 11/12, "feet"),
  36349. name: "Back",
  36350. image: {
  36351. source: "./media/characters/moonlight-rose/normal-back.svg",
  36352. extra: 2010/1839,
  36353. bottom: 10/2020
  36354. },
  36355. form: "normal"
  36356. },
  36357. demonFront: {
  36358. height: math.unit(1.5, "earths"),
  36359. name: "Front",
  36360. image: {
  36361. source: "./media/characters/moonlight-rose/demon.svg",
  36362. extra: 1400/1294,
  36363. bottom: 45/1445
  36364. },
  36365. form: "demon",
  36366. default: true
  36367. },
  36368. terraFront: {
  36369. height: math.unit(1.5, "earths"),
  36370. name: "Front",
  36371. image: {
  36372. source: "./media/characters/moonlight-rose/terra.svg"
  36373. },
  36374. form: "terra",
  36375. default: true
  36376. },
  36377. jupiterFront: {
  36378. height: math.unit(69911*2, "km"),
  36379. name: "Front",
  36380. image: {
  36381. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36382. extra: 1367/1286,
  36383. bottom: 55/1422
  36384. },
  36385. form: "jupiter",
  36386. default: true
  36387. },
  36388. neptuneFront: {
  36389. height: math.unit(24622*2, "feet"),
  36390. name: "Front",
  36391. image: {
  36392. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36393. extra: 1851/1712,
  36394. bottom: 0/1851
  36395. },
  36396. form: "neptune",
  36397. default: true
  36398. },
  36399. },
  36400. [
  36401. {
  36402. name: "\"Natural\" Height",
  36403. height: math.unit(5 + 11/12, "feet"),
  36404. form: "normal"
  36405. },
  36406. {
  36407. name: "Smallest comfortable size",
  36408. height: math.unit(40, "meters"),
  36409. form: "normal"
  36410. },
  36411. {
  36412. name: "Common size",
  36413. height: math.unit(50, "km"),
  36414. form: "normal",
  36415. default: true
  36416. },
  36417. {
  36418. name: "Normal",
  36419. height: math.unit(1.5, "earths"),
  36420. form: "demon",
  36421. default: true
  36422. },
  36423. {
  36424. name: "Universal",
  36425. height: math.unit(15, "universes"),
  36426. form: "demon"
  36427. },
  36428. {
  36429. name: "Earth",
  36430. height: math.unit(1.5, "earths"),
  36431. form: "terra",
  36432. default: true
  36433. },
  36434. {
  36435. name: "Super Earth",
  36436. height: math.unit(67.5, "earths"),
  36437. form: "terra"
  36438. },
  36439. {
  36440. name: "Doesn't fit in a solar system...",
  36441. height: math.unit(1, "galaxy"),
  36442. form: "terra"
  36443. },
  36444. {
  36445. name: "Saturn",
  36446. height: math.unit(58232*2, "km"),
  36447. form: "jupiter"
  36448. },
  36449. {
  36450. name: "Jupiter",
  36451. height: math.unit(69911*2, "km"),
  36452. form: "jupiter",
  36453. default: true
  36454. },
  36455. {
  36456. name: "HD 100546 b",
  36457. height: math.unit(482938, "km"),
  36458. form: "jupiter"
  36459. },
  36460. {
  36461. name: "Enceladus",
  36462. height: math.unit(513*2, "km"),
  36463. form: "neptune"
  36464. },
  36465. {
  36466. name: "Europe",
  36467. height: math.unit(1560*2, "km"),
  36468. form: "neptune"
  36469. },
  36470. {
  36471. name: "Neptune",
  36472. height: math.unit(24622*2, "km"),
  36473. form: "neptune",
  36474. default: true
  36475. },
  36476. {
  36477. name: "CoRoT-9b",
  36478. height: math.unit(75067*2, "km"),
  36479. form: "neptune"
  36480. },
  36481. ],
  36482. {
  36483. "normal": {
  36484. name: "Normal",
  36485. default: true
  36486. },
  36487. "demon": {
  36488. name: "Demon"
  36489. },
  36490. "terra": {
  36491. name: "Terra"
  36492. },
  36493. "jupiter": {
  36494. name: "Jupiter"
  36495. },
  36496. "neptune": {
  36497. name: "Neptune"
  36498. }
  36499. }
  36500. ))
  36501. characterMakers.push(() => makeCharacter(
  36502. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36503. {
  36504. front: {
  36505. height: math.unit(16, "feet"),
  36506. weight: math.unit(610, "kg"),
  36507. name: "Front",
  36508. image: {
  36509. source: "./media/characters/huckle/front.svg",
  36510. extra: 1731/1625,
  36511. bottom: 33/1764
  36512. }
  36513. },
  36514. back: {
  36515. height: math.unit(16, "feet"),
  36516. weight: math.unit(610, "kg"),
  36517. name: "Back",
  36518. image: {
  36519. source: "./media/characters/huckle/back.svg",
  36520. extra: 1738/1651,
  36521. bottom: 37/1775
  36522. }
  36523. },
  36524. laughing: {
  36525. height: math.unit(3.75, "feet"),
  36526. name: "Laughing",
  36527. image: {
  36528. source: "./media/characters/huckle/laughing.svg"
  36529. }
  36530. },
  36531. angry: {
  36532. height: math.unit(4.15, "feet"),
  36533. name: "Angry",
  36534. image: {
  36535. source: "./media/characters/huckle/angry.svg"
  36536. }
  36537. },
  36538. },
  36539. [
  36540. {
  36541. name: "Normal",
  36542. height: math.unit(16, "feet"),
  36543. default: true
  36544. },
  36545. {
  36546. name: "Mini Macro",
  36547. height: math.unit(463, "feet")
  36548. },
  36549. {
  36550. name: "Macro",
  36551. height: math.unit(1680, "meters")
  36552. },
  36553. {
  36554. name: "Mega Macro",
  36555. height: math.unit(175, "km")
  36556. },
  36557. {
  36558. name: "Terra Macro",
  36559. height: math.unit(32, "gigameters")
  36560. },
  36561. {
  36562. name: "Multiverse+",
  36563. height: math.unit(2.56e23, "yottameters")
  36564. },
  36565. ]
  36566. ))
  36567. characterMakers.push(() => makeCharacter(
  36568. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36569. {
  36570. front: {
  36571. height: math.unit(6 + 9/12, "feet"),
  36572. weight: math.unit(280, "lb"),
  36573. name: "Front",
  36574. image: {
  36575. source: "./media/characters/candy/front.svg",
  36576. extra: 234/217,
  36577. bottom: 11/245
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Really Small",
  36584. height: math.unit(0.1, "nm")
  36585. },
  36586. {
  36587. name: "Micro",
  36588. height: math.unit(2, "inches")
  36589. },
  36590. {
  36591. name: "Normal",
  36592. height: math.unit(6 + 9/12, "feet"),
  36593. default: true
  36594. },
  36595. {
  36596. name: "Small Macro",
  36597. height: math.unit(69, "feet")
  36598. },
  36599. {
  36600. name: "Macro",
  36601. height: math.unit(160, "feet")
  36602. },
  36603. {
  36604. name: "Megamacro",
  36605. height: math.unit(22000, "miles")
  36606. },
  36607. {
  36608. name: "Gigamacro",
  36609. height: math.unit(50000, "miles")
  36610. },
  36611. ]
  36612. ))
  36613. characterMakers.push(() => makeCharacter(
  36614. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36615. {
  36616. front: {
  36617. height: math.unit(4, "feet"),
  36618. weight: math.unit(90, "lb"),
  36619. name: "Front",
  36620. image: {
  36621. source: "./media/characters/joey-mcdonald/front.svg",
  36622. extra: 1059/852,
  36623. bottom: 33/1092
  36624. }
  36625. },
  36626. back: {
  36627. height: math.unit(4, "feet"),
  36628. weight: math.unit(90, "lb"),
  36629. name: "Back",
  36630. image: {
  36631. source: "./media/characters/joey-mcdonald/back.svg",
  36632. extra: 1077/879,
  36633. bottom: 5/1082
  36634. }
  36635. },
  36636. frontKobold: {
  36637. height: math.unit(4, "feet"),
  36638. weight: math.unit(100, "lb"),
  36639. name: "Front-kobold",
  36640. image: {
  36641. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36642. extra: 1480/1367,
  36643. bottom: 0/1480
  36644. }
  36645. },
  36646. backKobold: {
  36647. height: math.unit(4, "feet"),
  36648. weight: math.unit(100, "lb"),
  36649. name: "Back-kobold",
  36650. image: {
  36651. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36652. extra: 1449/1361,
  36653. bottom: 0/1449
  36654. }
  36655. },
  36656. },
  36657. [
  36658. {
  36659. name: "Normal",
  36660. height: math.unit(4, "feet"),
  36661. default: true
  36662. },
  36663. ]
  36664. ))
  36665. characterMakers.push(() => makeCharacter(
  36666. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36667. {
  36668. front: {
  36669. height: math.unit(12 + 6/12, "feet"),
  36670. name: "Front",
  36671. image: {
  36672. source: "./media/characters/kass-lockheed/front.svg",
  36673. extra: 354/343,
  36674. bottom: 9/363
  36675. }
  36676. },
  36677. back: {
  36678. height: math.unit(12 + 6/12, "feet"),
  36679. name: "Back",
  36680. image: {
  36681. source: "./media/characters/kass-lockheed/back.svg",
  36682. extra: 364/352,
  36683. bottom: 3/367
  36684. }
  36685. },
  36686. dick: {
  36687. height: math.unit(3.12, "feet"),
  36688. name: "Dick",
  36689. image: {
  36690. source: "./media/characters/kass-lockheed/dick.svg"
  36691. }
  36692. },
  36693. head: {
  36694. height: math.unit(2.6, "feet"),
  36695. name: "Head",
  36696. image: {
  36697. source: "./media/characters/kass-lockheed/head.svg"
  36698. }
  36699. },
  36700. bleh: {
  36701. height: math.unit(2.85, "feet"),
  36702. name: "Bleh",
  36703. image: {
  36704. source: "./media/characters/kass-lockheed/bleh.svg"
  36705. }
  36706. },
  36707. smug: {
  36708. height: math.unit(2.85, "feet"),
  36709. name: "Smug",
  36710. image: {
  36711. source: "./media/characters/kass-lockheed/smug.svg"
  36712. }
  36713. },
  36714. },
  36715. [
  36716. {
  36717. name: "Normal",
  36718. height: math.unit(12 + 6/12, "feet"),
  36719. default: true
  36720. },
  36721. ]
  36722. ))
  36723. characterMakers.push(() => makeCharacter(
  36724. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36725. {
  36726. front: {
  36727. height: math.unit(6 + 2/12, "feet"),
  36728. name: "Front",
  36729. image: {
  36730. source: "./media/characters/taylor/front.svg",
  36731. extra: 639/495,
  36732. bottom: 12/651
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Normal",
  36739. height: math.unit(6 + 2/12, "feet"),
  36740. default: true
  36741. },
  36742. {
  36743. name: "Big",
  36744. height: math.unit(15, "feet")
  36745. },
  36746. {
  36747. name: "Lorg",
  36748. height: math.unit(80, "feet")
  36749. },
  36750. {
  36751. name: "Too Lorg",
  36752. height: math.unit(120, "feet")
  36753. },
  36754. ]
  36755. ))
  36756. characterMakers.push(() => makeCharacter(
  36757. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36758. {
  36759. front: {
  36760. height: math.unit(15, "feet"),
  36761. name: "Front",
  36762. image: {
  36763. source: "./media/characters/kaizer/front.svg",
  36764. extra: 1612/1436,
  36765. bottom: 43/1655
  36766. }
  36767. },
  36768. },
  36769. [
  36770. {
  36771. name: "Normal",
  36772. height: math.unit(15, "feet"),
  36773. default: true
  36774. },
  36775. ]
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(2, "feet"),
  36782. weight: math.unit(30, "lb"),
  36783. name: "Front",
  36784. image: {
  36785. source: "./media/characters/sandy/front.svg",
  36786. extra: 1439/1307,
  36787. bottom: 194/1633
  36788. }
  36789. },
  36790. },
  36791. [
  36792. {
  36793. name: "Normal",
  36794. height: math.unit(2, "feet"),
  36795. default: true
  36796. },
  36797. ]
  36798. ))
  36799. characterMakers.push(() => makeCharacter(
  36800. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36801. {
  36802. front: {
  36803. height: math.unit(3, "feet"),
  36804. name: "Front",
  36805. image: {
  36806. source: "./media/characters/mellvi/front.svg",
  36807. extra: 1831/1630,
  36808. bottom: 58/1889
  36809. }
  36810. },
  36811. },
  36812. [
  36813. {
  36814. name: "Normal",
  36815. height: math.unit(3, "feet"),
  36816. default: true
  36817. },
  36818. ]
  36819. ))
  36820. characterMakers.push(() => makeCharacter(
  36821. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36822. {
  36823. front: {
  36824. height: math.unit(5 + 11/12, "feet"),
  36825. weight: math.unit(200, "lb"),
  36826. name: "Front",
  36827. image: {
  36828. source: "./media/characters/shirou/front.svg",
  36829. extra: 2491/2383,
  36830. bottom: 189/2680
  36831. }
  36832. },
  36833. back: {
  36834. height: math.unit(5 + 11/12, "feet"),
  36835. weight: math.unit(200, "lb"),
  36836. name: "Back",
  36837. image: {
  36838. source: "./media/characters/shirou/back.svg",
  36839. extra: 2554/2450,
  36840. bottom: 76/2630
  36841. }
  36842. },
  36843. },
  36844. [
  36845. {
  36846. name: "Normal",
  36847. height: math.unit(5 + 11/12, "feet"),
  36848. default: true
  36849. },
  36850. ]
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36854. {
  36855. front: {
  36856. height: math.unit(6 + 3/12, "feet"),
  36857. weight: math.unit(177, "lb"),
  36858. name: "Front",
  36859. image: {
  36860. source: "./media/characters/noryu/front.svg",
  36861. extra: 973/885,
  36862. bottom: 10/983
  36863. }
  36864. },
  36865. },
  36866. [
  36867. {
  36868. name: "Normal",
  36869. height: math.unit(6 + 3/12, "feet"),
  36870. default: true
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36876. {
  36877. front: {
  36878. height: math.unit(5 + 6/12, "feet"),
  36879. weight: math.unit(170, "lb"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/mevolas-rubenido/front.svg",
  36883. extra: 2109/1901,
  36884. bottom: 96/2205
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(5 + 6/12, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(100, "feet"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/dee/front.svg",
  36904. extra: 2153/2036,
  36905. bottom: 59/2212
  36906. }
  36907. },
  36908. back: {
  36909. height: math.unit(100, "feet"),
  36910. name: "Back",
  36911. image: {
  36912. source: "./media/characters/dee/back.svg",
  36913. extra: 2183/2058,
  36914. bottom: 75/2258
  36915. }
  36916. },
  36917. foot: {
  36918. height: math.unit(19.43, "feet"),
  36919. name: "Foot",
  36920. image: {
  36921. source: "./media/characters/dee/foot.svg"
  36922. }
  36923. },
  36924. hoof: {
  36925. height: math.unit(20.6, "feet"),
  36926. name: "Hoof",
  36927. image: {
  36928. source: "./media/characters/dee/hoof.svg"
  36929. }
  36930. },
  36931. },
  36932. [
  36933. {
  36934. name: "Macro",
  36935. height: math.unit(100, "feet"),
  36936. default: true
  36937. },
  36938. ]
  36939. ))
  36940. characterMakers.push(() => makeCharacter(
  36941. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36942. {
  36943. front: {
  36944. height: math.unit(5 + 6/12, "feet"),
  36945. name: "Front",
  36946. image: {
  36947. source: "./media/characters/teh/front.svg",
  36948. extra: 1002/847,
  36949. bottom: 62/1064
  36950. }
  36951. },
  36952. },
  36953. [
  36954. {
  36955. name: "Normal",
  36956. height: math.unit(5 + 6/12, "feet"),
  36957. default: true
  36958. },
  36959. ]
  36960. ))
  36961. characterMakers.push(() => makeCharacter(
  36962. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36963. {
  36964. side: {
  36965. height: math.unit(6 + 1/12, "feet"),
  36966. weight: math.unit(204, "lb"),
  36967. name: "Side",
  36968. image: {
  36969. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36970. extra: 974/775,
  36971. bottom: 169/1143
  36972. }
  36973. },
  36974. sitting: {
  36975. height: math.unit(6 + 2/12, "feet"),
  36976. weight: math.unit(204, "lb"),
  36977. name: "Sitting",
  36978. image: {
  36979. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36980. extra: 1175/964,
  36981. bottom: 378/1553
  36982. }
  36983. },
  36984. },
  36985. [
  36986. {
  36987. name: "Normal",
  36988. height: math.unit(6 + 1/12, "feet"),
  36989. default: true
  36990. },
  36991. ]
  36992. ))
  36993. characterMakers.push(() => makeCharacter(
  36994. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36995. {
  36996. front: {
  36997. height: math.unit(6, "inches"),
  36998. name: "Front",
  36999. image: {
  37000. source: "./media/characters/tululi/front.svg",
  37001. extra: 1997/1876,
  37002. bottom: 20/2017
  37003. }
  37004. },
  37005. },
  37006. [
  37007. {
  37008. name: "Normal",
  37009. height: math.unit(6, "inches"),
  37010. default: true
  37011. },
  37012. ]
  37013. ))
  37014. characterMakers.push(() => makeCharacter(
  37015. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37016. {
  37017. front: {
  37018. height: math.unit(4 + 1/12, "feet"),
  37019. name: "Front",
  37020. image: {
  37021. source: "./media/characters/star/front.svg",
  37022. extra: 1493/1189,
  37023. bottom: 48/1541
  37024. }
  37025. },
  37026. },
  37027. [
  37028. {
  37029. name: "Normal",
  37030. height: math.unit(4 + 1/12, "feet"),
  37031. default: true
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37037. {
  37038. front: {
  37039. height: math.unit(6 + 3/12, "feet"),
  37040. name: "Front",
  37041. image: {
  37042. source: "./media/characters/comet/front.svg",
  37043. extra: 1681/1462,
  37044. bottom: 26/1707
  37045. }
  37046. },
  37047. },
  37048. [
  37049. {
  37050. name: "Normal",
  37051. height: math.unit(6 + 3/12, "feet"),
  37052. default: true
  37053. },
  37054. ]
  37055. ))
  37056. characterMakers.push(() => makeCharacter(
  37057. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37058. {
  37059. front: {
  37060. height: math.unit(950, "feet"),
  37061. name: "Front",
  37062. image: {
  37063. source: "./media/characters/vortex/front.svg",
  37064. extra: 1497/1434,
  37065. bottom: 56/1553
  37066. }
  37067. },
  37068. maw: {
  37069. height: math.unit(285, "feet"),
  37070. name: "Maw",
  37071. image: {
  37072. source: "./media/characters/vortex/maw.svg"
  37073. }
  37074. },
  37075. },
  37076. [
  37077. {
  37078. name: "Macro",
  37079. height: math.unit(950, "feet"),
  37080. default: true
  37081. },
  37082. ]
  37083. ))
  37084. characterMakers.push(() => makeCharacter(
  37085. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37086. {
  37087. front: {
  37088. height: math.unit(600, "feet"),
  37089. weight: math.unit(0.02, "grams"),
  37090. name: "Front",
  37091. image: {
  37092. source: "./media/characters/doodle/front.svg",
  37093. extra: 1578/1413,
  37094. bottom: 37/1615
  37095. }
  37096. },
  37097. },
  37098. [
  37099. {
  37100. name: "Macro",
  37101. height: math.unit(600, "feet"),
  37102. default: true
  37103. },
  37104. ]
  37105. ))
  37106. characterMakers.push(() => makeCharacter(
  37107. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37108. {
  37109. front: {
  37110. height: math.unit(6 + 6/12, "feet"),
  37111. name: "Front",
  37112. image: {
  37113. source: "./media/characters/jai/front.svg",
  37114. extra: 1645/1534,
  37115. bottom: 115/1760
  37116. }
  37117. },
  37118. },
  37119. [
  37120. {
  37121. name: "Normal",
  37122. height: math.unit(6 + 6/12, "feet"),
  37123. default: true
  37124. },
  37125. ]
  37126. ))
  37127. characterMakers.push(() => makeCharacter(
  37128. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37129. {
  37130. front: {
  37131. height: math.unit(6 + 8/12, "feet"),
  37132. name: "Front",
  37133. image: {
  37134. source: "./media/characters/pixel/front.svg",
  37135. extra: 1900/1735,
  37136. bottom: 63/1963
  37137. }
  37138. },
  37139. },
  37140. [
  37141. {
  37142. name: "Normal",
  37143. height: math.unit(6 + 8/12, "feet"),
  37144. default: true
  37145. },
  37146. ]
  37147. ))
  37148. characterMakers.push(() => makeCharacter(
  37149. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37150. {
  37151. back: {
  37152. height: math.unit(4 + 1/12, "feet"),
  37153. weight: math.unit(75, "lb"),
  37154. name: "Back",
  37155. image: {
  37156. source: "./media/characters/rhett/back.svg",
  37157. extra: 930/878,
  37158. bottom: 25/955
  37159. }
  37160. },
  37161. front: {
  37162. height: math.unit(4 + 1/12, "feet"),
  37163. weight: math.unit(75, "lb"),
  37164. name: "Front",
  37165. image: {
  37166. source: "./media/characters/rhett/front.svg",
  37167. extra: 1682/1586,
  37168. bottom: 92/1774
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Micro",
  37175. height: math.unit(8, "inches")
  37176. },
  37177. {
  37178. name: "Tiny",
  37179. height: math.unit(2, "feet")
  37180. },
  37181. {
  37182. name: "Normal",
  37183. height: math.unit(4 + 1/12, "feet"),
  37184. default: true
  37185. },
  37186. ]
  37187. ))
  37188. characterMakers.push(() => makeCharacter(
  37189. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37190. {
  37191. front: {
  37192. height: math.unit(3 + 3/12, "feet"),
  37193. name: "Front",
  37194. image: {
  37195. source: "./media/characters/penny/front.svg",
  37196. extra: 1406/1311,
  37197. bottom: 26/1432
  37198. }
  37199. },
  37200. },
  37201. [
  37202. {
  37203. name: "Normal",
  37204. height: math.unit(3 + 3/12, "feet"),
  37205. default: true
  37206. },
  37207. ]
  37208. ))
  37209. characterMakers.push(() => makeCharacter(
  37210. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37211. {
  37212. front: {
  37213. height: math.unit(4 + 11/12, "feet"),
  37214. name: "Front",
  37215. image: {
  37216. source: "./media/characters/monty/front.svg",
  37217. extra: 1479/1209,
  37218. bottom: 0/1479
  37219. }
  37220. },
  37221. },
  37222. [
  37223. {
  37224. name: "Normal",
  37225. height: math.unit(4 + 11/12, "feet"),
  37226. default: true
  37227. },
  37228. ]
  37229. ))
  37230. characterMakers.push(() => makeCharacter(
  37231. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37232. {
  37233. front: {
  37234. height: math.unit(8 + 4/12, "feet"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/sterling/front.svg",
  37238. extra: 1420/1236,
  37239. bottom: 27/1447
  37240. }
  37241. },
  37242. },
  37243. [
  37244. {
  37245. name: "Normal",
  37246. height: math.unit(8 + 4/12, "feet"),
  37247. default: true
  37248. },
  37249. ]
  37250. ))
  37251. characterMakers.push(() => makeCharacter(
  37252. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37253. {
  37254. front: {
  37255. height: math.unit(15, "feet"),
  37256. name: "Front",
  37257. image: {
  37258. source: "./media/characters/marble/front.svg",
  37259. extra: 973/937,
  37260. bottom: 32/1005
  37261. }
  37262. },
  37263. },
  37264. [
  37265. {
  37266. name: "Normal",
  37267. height: math.unit(15, "feet"),
  37268. default: true
  37269. },
  37270. ]
  37271. ))
  37272. characterMakers.push(() => makeCharacter(
  37273. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37274. {
  37275. front: {
  37276. height: math.unit(3, "inches"),
  37277. name: "Front",
  37278. image: {
  37279. source: "./media/characters/powder/front.svg",
  37280. extra: 1504/1334,
  37281. bottom: 518/2022
  37282. }
  37283. },
  37284. },
  37285. [
  37286. {
  37287. name: "Normal",
  37288. height: math.unit(3, "inches"),
  37289. default: true
  37290. },
  37291. ]
  37292. ))
  37293. characterMakers.push(() => makeCharacter(
  37294. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37295. {
  37296. front: {
  37297. height: math.unit(4 + 5/12, "feet"),
  37298. name: "Front",
  37299. image: {
  37300. source: "./media/characters/joey-raccoon/front.svg",
  37301. extra: 1273/1197,
  37302. bottom: 0/1273
  37303. }
  37304. },
  37305. },
  37306. [
  37307. {
  37308. name: "Normal",
  37309. height: math.unit(4 + 5/12, "feet"),
  37310. default: true
  37311. },
  37312. ]
  37313. ))
  37314. characterMakers.push(() => makeCharacter(
  37315. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37316. {
  37317. front: {
  37318. height: math.unit(8 + 4/12, "feet"),
  37319. name: "Front",
  37320. image: {
  37321. source: "./media/characters/vick/front.svg",
  37322. extra: 2187/2118,
  37323. bottom: 47/2234
  37324. }
  37325. },
  37326. },
  37327. [
  37328. {
  37329. name: "Normal",
  37330. height: math.unit(8 + 4/12, "feet"),
  37331. default: true
  37332. },
  37333. ]
  37334. ))
  37335. characterMakers.push(() => makeCharacter(
  37336. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37337. {
  37338. front: {
  37339. height: math.unit(5 + 5/12, "feet"),
  37340. name: "Front",
  37341. image: {
  37342. source: "./media/characters/mitsy/front.svg",
  37343. extra: 1842/1695,
  37344. bottom: 0/1842
  37345. }
  37346. },
  37347. },
  37348. [
  37349. {
  37350. name: "Normal",
  37351. height: math.unit(5 + 5/12, "feet"),
  37352. default: true
  37353. },
  37354. ]
  37355. ))
  37356. characterMakers.push(() => makeCharacter(
  37357. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37358. {
  37359. front: {
  37360. height: math.unit(6 + 3/12, "feet"),
  37361. name: "Front",
  37362. image: {
  37363. source: "./media/characters/silvy/front.svg",
  37364. extra: 1995/1836,
  37365. bottom: 225/2220
  37366. }
  37367. },
  37368. },
  37369. [
  37370. {
  37371. name: "Normal",
  37372. height: math.unit(6 + 3/12, "feet"),
  37373. default: true
  37374. },
  37375. ]
  37376. ))
  37377. characterMakers.push(() => makeCharacter(
  37378. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37379. {
  37380. front: {
  37381. height: math.unit(3 + 8/12, "feet"),
  37382. name: "Front",
  37383. image: {
  37384. source: "./media/characters/rodney/front.svg",
  37385. extra: 1956/1747,
  37386. bottom: 31/1987
  37387. }
  37388. },
  37389. frontDressed: {
  37390. height: math.unit(2.9, "feet"),
  37391. name: "Front (Dressed)",
  37392. image: {
  37393. source: "./media/characters/rodney/front-dressed.svg",
  37394. extra: 1382/1241,
  37395. bottom: 385/1767
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(3 + 8/12, "feet"),
  37403. default: true
  37404. },
  37405. ]
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37409. {
  37410. front: {
  37411. height: math.unit(5 + 9/12, "feet"),
  37412. weight: math.unit(194, "lbs"),
  37413. name: "Front",
  37414. image: {
  37415. source: "./media/characters/zakail-sudekai/front.svg",
  37416. extra: 2696/2533,
  37417. bottom: 248/2944
  37418. }
  37419. },
  37420. maw: {
  37421. height: math.unit(1.35, "feet"),
  37422. name: "Maw",
  37423. image: {
  37424. source: "./media/characters/zakail-sudekai/maw.svg"
  37425. }
  37426. },
  37427. },
  37428. [
  37429. {
  37430. name: "Normal",
  37431. height: math.unit(5 + 9/12, "feet"),
  37432. default: true
  37433. },
  37434. ]
  37435. ))
  37436. characterMakers.push(() => makeCharacter(
  37437. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37438. {
  37439. front: {
  37440. height: math.unit(8 + 4/12, "feet"),
  37441. weight: math.unit(1200, "lb"),
  37442. name: "Front",
  37443. image: {
  37444. source: "./media/characters/eleanor/front.svg",
  37445. extra: 1226/1192,
  37446. bottom: 52/1278
  37447. }
  37448. },
  37449. back: {
  37450. height: math.unit(8 + 4/12, "feet"),
  37451. weight: math.unit(1200, "lb"),
  37452. name: "Back",
  37453. image: {
  37454. source: "./media/characters/eleanor/back.svg",
  37455. extra: 1242/1184,
  37456. bottom: 60/1302
  37457. }
  37458. },
  37459. head: {
  37460. height: math.unit(2.62, "feet"),
  37461. name: "Head",
  37462. image: {
  37463. source: "./media/characters/eleanor/head.svg"
  37464. }
  37465. },
  37466. },
  37467. [
  37468. {
  37469. name: "Normal",
  37470. height: math.unit(8 + 4/12, "feet"),
  37471. default: true
  37472. },
  37473. ]
  37474. ))
  37475. characterMakers.push(() => makeCharacter(
  37476. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37477. {
  37478. front: {
  37479. height: math.unit(8 + 4/12, "feet"),
  37480. weight: math.unit(750, "lb"),
  37481. name: "Front",
  37482. image: {
  37483. source: "./media/characters/tanya/front.svg",
  37484. extra: 1749/1615,
  37485. bottom: 33/1782
  37486. }
  37487. },
  37488. },
  37489. [
  37490. {
  37491. name: "Normal",
  37492. height: math.unit(8 + 4/12, "feet"),
  37493. default: true
  37494. },
  37495. ]
  37496. ))
  37497. characterMakers.push(() => makeCharacter(
  37498. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37499. {
  37500. front: {
  37501. height: math.unit(5, "feet"),
  37502. weight: math.unit(225, "lb"),
  37503. name: "Front",
  37504. image: {
  37505. source: "./media/characters/cindy/front.svg",
  37506. extra: 1320/1250,
  37507. bottom: 42/1362
  37508. }
  37509. },
  37510. frontDressed: {
  37511. height: math.unit(5, "feet"),
  37512. weight: math.unit(225, "lb"),
  37513. name: "Front (Dressed)",
  37514. image: {
  37515. source: "./media/characters/cindy/front-dressed.svg",
  37516. extra: 1320/1250,
  37517. bottom: 42/1362
  37518. }
  37519. },
  37520. back: {
  37521. height: math.unit(5, "feet"),
  37522. weight: math.unit(225, "lb"),
  37523. name: "Back",
  37524. image: {
  37525. source: "./media/characters/cindy/back.svg",
  37526. extra: 1384/1346,
  37527. bottom: 14/1398
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Normal",
  37534. height: math.unit(5, "feet"),
  37535. default: true
  37536. },
  37537. ]
  37538. ))
  37539. characterMakers.push(() => makeCharacter(
  37540. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37541. {
  37542. front: {
  37543. height: math.unit(6 + 9/12, "feet"),
  37544. weight: math.unit(440, "lb"),
  37545. name: "Front",
  37546. image: {
  37547. source: "./media/characters/wilbur-owen/front.svg",
  37548. extra: 1575/1448,
  37549. bottom: 72/1647
  37550. }
  37551. },
  37552. back: {
  37553. height: math.unit(6 + 9/12, "feet"),
  37554. weight: math.unit(440, "lb"),
  37555. name: "Back",
  37556. image: {
  37557. source: "./media/characters/wilbur-owen/back.svg",
  37558. extra: 1578/1445,
  37559. bottom: 36/1614
  37560. }
  37561. },
  37562. },
  37563. [
  37564. {
  37565. name: "Normal",
  37566. height: math.unit(6 + 9/12, "feet"),
  37567. default: true
  37568. },
  37569. ]
  37570. ))
  37571. characterMakers.push(() => makeCharacter(
  37572. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37573. {
  37574. front: {
  37575. height: math.unit(6 + 5/12, "feet"),
  37576. weight: math.unit(650, "lb"),
  37577. name: "Front",
  37578. image: {
  37579. source: "./media/characters/keegan/front.svg",
  37580. extra: 2387/2198,
  37581. bottom: 33/2420
  37582. }
  37583. },
  37584. side: {
  37585. height: math.unit(6 + 5/12, "feet"),
  37586. weight: math.unit(650, "lb"),
  37587. name: "Side",
  37588. image: {
  37589. source: "./media/characters/keegan/side.svg",
  37590. extra: 2390/2202,
  37591. bottom: 47/2437
  37592. }
  37593. },
  37594. back: {
  37595. height: math.unit(6 + 5/12, "feet"),
  37596. weight: math.unit(650, "lb"),
  37597. name: "Back",
  37598. image: {
  37599. source: "./media/characters/keegan/back.svg",
  37600. extra: 2418/2268,
  37601. bottom: 15/2433
  37602. }
  37603. },
  37604. frontSfw: {
  37605. height: math.unit(6 + 5/12, "feet"),
  37606. weight: math.unit(650, "lb"),
  37607. name: "Front (SFW)",
  37608. image: {
  37609. source: "./media/characters/keegan/front-sfw.svg",
  37610. extra: 2387/2198,
  37611. bottom: 33/2420
  37612. }
  37613. },
  37614. beans: {
  37615. height: math.unit(1.85, "feet"),
  37616. name: "Beans",
  37617. image: {
  37618. source: "./media/characters/keegan/beans.svg"
  37619. }
  37620. },
  37621. },
  37622. [
  37623. {
  37624. name: "Normal",
  37625. height: math.unit(6 + 5/12, "feet"),
  37626. default: true
  37627. },
  37628. ]
  37629. ))
  37630. characterMakers.push(() => makeCharacter(
  37631. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37632. {
  37633. front: {
  37634. height: math.unit(9, "feet"),
  37635. name: "Front",
  37636. image: {
  37637. source: "./media/characters/colton/front.svg",
  37638. extra: 1589/1326,
  37639. bottom: 139/1728
  37640. }
  37641. },
  37642. },
  37643. [
  37644. {
  37645. name: "Normal",
  37646. height: math.unit(9, "feet"),
  37647. default: true
  37648. },
  37649. ]
  37650. ))
  37651. characterMakers.push(() => makeCharacter(
  37652. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37653. {
  37654. front: {
  37655. height: math.unit(2 + 9/12, "feet"),
  37656. name: "Front",
  37657. image: {
  37658. source: "./media/characters/bora/front.svg",
  37659. extra: 1265/1250,
  37660. bottom: 24/1289
  37661. }
  37662. },
  37663. },
  37664. [
  37665. {
  37666. name: "Normal",
  37667. height: math.unit(2 + 9/12, "feet"),
  37668. default: true
  37669. },
  37670. ]
  37671. ))
  37672. characterMakers.push(() => makeCharacter(
  37673. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37674. {
  37675. front: {
  37676. height: math.unit(8, "feet"),
  37677. name: "Front",
  37678. image: {
  37679. source: "./media/characters/myu-myu/front.svg",
  37680. extra: 1949/1857,
  37681. bottom: 90/2039
  37682. }
  37683. },
  37684. },
  37685. [
  37686. {
  37687. name: "Normal",
  37688. height: math.unit(8, "feet"),
  37689. default: true
  37690. },
  37691. {
  37692. name: "Big",
  37693. height: math.unit(15, "feet")
  37694. },
  37695. {
  37696. name: "BIG",
  37697. height: math.unit(25, "feet")
  37698. },
  37699. ]
  37700. ))
  37701. characterMakers.push(() => makeCharacter(
  37702. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37703. {
  37704. side: {
  37705. height: math.unit(7 + 5/12, "feet"),
  37706. weight: math.unit(2800, "lb"),
  37707. name: "Side",
  37708. image: {
  37709. source: "./media/characters/haloren/side.svg",
  37710. extra: 1793/409,
  37711. bottom: 59/1852
  37712. }
  37713. },
  37714. frontPaw: {
  37715. height: math.unit(2.36, "feet"),
  37716. name: "Front paw",
  37717. image: {
  37718. source: "./media/characters/haloren/front-paw.svg"
  37719. }
  37720. },
  37721. hindPaw: {
  37722. height: math.unit(3.18, "feet"),
  37723. name: "Hind paw",
  37724. image: {
  37725. source: "./media/characters/haloren/hind-paw.svg"
  37726. }
  37727. },
  37728. maw: {
  37729. height: math.unit(5.05, "feet"),
  37730. name: "Maw",
  37731. image: {
  37732. source: "./media/characters/haloren/maw.svg"
  37733. }
  37734. },
  37735. dick: {
  37736. height: math.unit(2.90, "feet"),
  37737. name: "Dick",
  37738. image: {
  37739. source: "./media/characters/haloren/dick.svg"
  37740. }
  37741. },
  37742. },
  37743. [
  37744. {
  37745. name: "Normal",
  37746. height: math.unit(7 + 5/12, "feet"),
  37747. default: true
  37748. },
  37749. {
  37750. name: "Enhanced",
  37751. height: math.unit(14 + 3/12, "feet")
  37752. },
  37753. ]
  37754. ))
  37755. characterMakers.push(() => makeCharacter(
  37756. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37757. {
  37758. front: {
  37759. height: math.unit(171, "cm"),
  37760. name: "Front",
  37761. image: {
  37762. source: "./media/characters/kimmy/front.svg",
  37763. extra: 1491/1435,
  37764. bottom: 53/1544
  37765. }
  37766. },
  37767. },
  37768. [
  37769. {
  37770. name: "Small",
  37771. height: math.unit(9, "cm")
  37772. },
  37773. {
  37774. name: "Normal",
  37775. height: math.unit(171, "cm"),
  37776. default: true
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(8, "feet"),
  37785. weight: math.unit(300, "lb"),
  37786. name: "Front",
  37787. image: {
  37788. source: "./media/characters/galeboomer/front.svg",
  37789. extra: 4651/4415,
  37790. bottom: 162/4813
  37791. }
  37792. },
  37793. back: {
  37794. height: math.unit(8, "feet"),
  37795. weight: math.unit(300, "lb"),
  37796. name: "Back",
  37797. image: {
  37798. source: "./media/characters/galeboomer/back.svg",
  37799. extra: 4544/4314,
  37800. bottom: 16/4560
  37801. }
  37802. },
  37803. frontAlt: {
  37804. height: math.unit(8, "feet"),
  37805. weight: math.unit(300, "lb"),
  37806. name: "Front (Alt)",
  37807. image: {
  37808. source: "./media/characters/galeboomer/front-alt.svg",
  37809. extra: 4458/4228,
  37810. bottom: 68/4526
  37811. }
  37812. },
  37813. maw: {
  37814. height: math.unit(1.2, "feet"),
  37815. name: "Maw",
  37816. image: {
  37817. source: "./media/characters/galeboomer/maw.svg"
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(8, "feet"),
  37825. default: true
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(5 + 9/12, "feet"),
  37834. weight: math.unit(120, "lb"),
  37835. name: "Front",
  37836. image: {
  37837. source: "./media/characters/chyr/front.svg",
  37838. extra: 1323/1254,
  37839. bottom: 63/1386
  37840. }
  37841. },
  37842. back: {
  37843. height: math.unit(5 + 9/12, "feet"),
  37844. weight: math.unit(120, "lb"),
  37845. name: "Back",
  37846. image: {
  37847. source: "./media/characters/chyr/back.svg",
  37848. extra: 1323/1252,
  37849. bottom: 48/1371
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(5 + 9/12, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(7, "feet"),
  37866. weight: math.unit(310, "lb"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/solarus/front.svg",
  37870. extra: 2415/2021,
  37871. bottom: 103/2518
  37872. }
  37873. },
  37874. back: {
  37875. height: math.unit(7, "feet"),
  37876. weight: math.unit(310, "lb"),
  37877. name: "Back",
  37878. image: {
  37879. source: "./media/characters/solarus/back.svg",
  37880. extra: 2463/2089,
  37881. bottom: 79/2542
  37882. }
  37883. },
  37884. },
  37885. [
  37886. {
  37887. name: "Normal",
  37888. height: math.unit(7, "feet"),
  37889. default: true
  37890. },
  37891. ]
  37892. ))
  37893. characterMakers.push(() => makeCharacter(
  37894. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37895. {
  37896. front: {
  37897. height: math.unit(16, "feet"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37901. extra: 1844/1780,
  37902. bottom: 58/1902
  37903. }
  37904. },
  37905. winterCoat: {
  37906. height: math.unit(16, "feet"),
  37907. name: "Winter Coat",
  37908. image: {
  37909. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37910. extra: 1807/1775,
  37911. bottom: 69/1876
  37912. }
  37913. },
  37914. },
  37915. [
  37916. {
  37917. name: "Normal",
  37918. height: math.unit(16, "feet"),
  37919. default: true
  37920. },
  37921. {
  37922. name: "Chicago Size",
  37923. height: math.unit(560, "feet")
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(11 + 6/12, "feet"),
  37932. weight: math.unit(1366, "lb"),
  37933. name: "Front",
  37934. image: {
  37935. source: "./media/characters/lexor/front.svg",
  37936. extra: 1560/1481,
  37937. bottom: 211/1771
  37938. }
  37939. },
  37940. back: {
  37941. height: math.unit(11 + 6/12, "feet"),
  37942. weight: math.unit(1366, "lb"),
  37943. name: "Back",
  37944. image: {
  37945. source: "./media/characters/lexor/back.svg",
  37946. extra: 1614/1533,
  37947. bottom: 76/1690
  37948. }
  37949. },
  37950. maw: {
  37951. height: math.unit(3, "feet"),
  37952. name: "Maw",
  37953. image: {
  37954. source: "./media/characters/lexor/maw.svg"
  37955. }
  37956. },
  37957. dick: {
  37958. height: math.unit(2.59, "feet"),
  37959. name: "Dick",
  37960. image: {
  37961. source: "./media/characters/lexor/dick.svg"
  37962. }
  37963. },
  37964. },
  37965. [
  37966. {
  37967. name: "Normal",
  37968. height: math.unit(11 + 6/12, "feet"),
  37969. default: true
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37975. {
  37976. front: {
  37977. height: math.unit(5 + 8/12, "feet"),
  37978. name: "Front",
  37979. image: {
  37980. source: "./media/characters/magnum/front.svg",
  37981. extra: 942/855,
  37982. bottom: 26/968
  37983. }
  37984. },
  37985. },
  37986. [
  37987. {
  37988. name: "Normal",
  37989. height: math.unit(5 + 8/12, "feet"),
  37990. default: true
  37991. },
  37992. ]
  37993. ))
  37994. characterMakers.push(() => makeCharacter(
  37995. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37996. {
  37997. front: {
  37998. height: math.unit(18 + 4/12, "feet"),
  37999. weight: math.unit(1500, "kg"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/solas-sharpsman/front.svg",
  38003. extra: 1698/1589,
  38004. bottom: 0/1698
  38005. }
  38006. },
  38007. },
  38008. [
  38009. {
  38010. name: "Normal",
  38011. height: math.unit(18 + 4/12, "feet"),
  38012. default: true
  38013. },
  38014. ]
  38015. ))
  38016. characterMakers.push(() => makeCharacter(
  38017. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38018. {
  38019. front: {
  38020. height: math.unit(5 + 5/12, "feet"),
  38021. weight: math.unit(180, "lb"),
  38022. name: "Front",
  38023. image: {
  38024. source: "./media/characters/october/front.svg",
  38025. extra: 1800/1650,
  38026. bottom: 0/1800
  38027. }
  38028. },
  38029. frontNsfw: {
  38030. height: math.unit(5 + 5/12, "feet"),
  38031. weight: math.unit(180, "lb"),
  38032. name: "Front (NSFW)",
  38033. image: {
  38034. source: "./media/characters/october/front-nsfw.svg",
  38035. extra: 1392/1307,
  38036. bottom: 42/1434
  38037. }
  38038. },
  38039. },
  38040. [
  38041. {
  38042. name: "Normal",
  38043. height: math.unit(5 + 5/12, "feet"),
  38044. default: true
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38050. {
  38051. front: {
  38052. height: math.unit(8 + 6/12, "feet"),
  38053. name: "Front",
  38054. image: {
  38055. source: "./media/characters/essynkardi/front.svg",
  38056. extra: 1914/1846,
  38057. bottom: 22/1936
  38058. }
  38059. },
  38060. },
  38061. [
  38062. {
  38063. name: "Normal",
  38064. height: math.unit(8 + 6/12, "feet"),
  38065. default: true
  38066. },
  38067. ]
  38068. ))
  38069. characterMakers.push(() => makeCharacter(
  38070. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38071. {
  38072. front: {
  38073. height: math.unit(6 + 6/12, "feet"),
  38074. weight: math.unit(7, "lb"),
  38075. name: "Front",
  38076. image: {
  38077. source: "./media/characters/icky/front.svg",
  38078. extra: 813/782,
  38079. bottom: 66/879
  38080. }
  38081. },
  38082. back: {
  38083. height: math.unit(6 + 6/12, "feet"),
  38084. weight: math.unit(7, "lb"),
  38085. name: "Back",
  38086. image: {
  38087. source: "./media/characters/icky/back.svg",
  38088. extra: 754/735,
  38089. bottom: 56/810
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(6 + 6/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38103. {
  38104. front: {
  38105. height: math.unit(15, "feet"),
  38106. name: "Front",
  38107. image: {
  38108. source: "./media/characters/rojas/front.svg",
  38109. extra: 1462/1408,
  38110. bottom: 95/1557
  38111. }
  38112. },
  38113. back: {
  38114. height: math.unit(15, "feet"),
  38115. name: "Back",
  38116. image: {
  38117. source: "./media/characters/rojas/back.svg",
  38118. extra: 1023/954,
  38119. bottom: 28/1051
  38120. }
  38121. },
  38122. },
  38123. [
  38124. {
  38125. name: "Normal",
  38126. height: math.unit(15, "feet"),
  38127. default: true
  38128. },
  38129. ]
  38130. ))
  38131. characterMakers.push(() => makeCharacter(
  38132. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38133. {
  38134. frontHuman: {
  38135. height: math.unit(5 + 7/12, "feet"),
  38136. name: "Front (Human)",
  38137. image: {
  38138. source: "./media/characters/alek-dryagan/front-human.svg",
  38139. extra: 1687/1667,
  38140. bottom: 69/1756
  38141. }
  38142. },
  38143. backHuman: {
  38144. height: math.unit(5 + 7/12, "feet"),
  38145. name: "Back (Human)",
  38146. image: {
  38147. source: "./media/characters/alek-dryagan/back-human.svg",
  38148. extra: 1670/1649,
  38149. bottom: 65/1735
  38150. }
  38151. },
  38152. frontDemi: {
  38153. height: math.unit(65, "feet"),
  38154. name: "Front (Demi)",
  38155. image: {
  38156. source: "./media/characters/alek-dryagan/front-demi.svg",
  38157. extra: 1669/1642,
  38158. bottom: 49/1718
  38159. }
  38160. },
  38161. backDemi: {
  38162. height: math.unit(65, "feet"),
  38163. name: "Back (Demi)",
  38164. image: {
  38165. source: "./media/characters/alek-dryagan/back-demi.svg",
  38166. extra: 1658/1637,
  38167. bottom: 40/1698
  38168. }
  38169. },
  38170. mawHuman: {
  38171. height: math.unit(0.3, "feet"),
  38172. name: "Maw (Human)",
  38173. image: {
  38174. source: "./media/characters/alek-dryagan/maw-human.svg"
  38175. }
  38176. },
  38177. mawDemi: {
  38178. height: math.unit(3.8, "feet"),
  38179. name: "Maw (Demi)",
  38180. image: {
  38181. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Normal",
  38188. height: math.unit(5 + 7/12, "feet"),
  38189. default: true
  38190. },
  38191. ]
  38192. ))
  38193. characterMakers.push(() => makeCharacter(
  38194. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38195. {
  38196. frontHuman: {
  38197. height: math.unit(5 + 2/12, "feet"),
  38198. name: "Front (Human)",
  38199. image: {
  38200. source: "./media/characters/gen/front-human.svg",
  38201. extra: 1627/1538,
  38202. bottom: 71/1698
  38203. }
  38204. },
  38205. backHuman: {
  38206. height: math.unit(5 + 2/12, "feet"),
  38207. name: "Back (Human)",
  38208. image: {
  38209. source: "./media/characters/gen/back-human.svg",
  38210. extra: 1638/1548,
  38211. bottom: 69/1707
  38212. }
  38213. },
  38214. frontDemi: {
  38215. height: math.unit(5 + 2/12, "feet"),
  38216. name: "Front (Demi)",
  38217. image: {
  38218. source: "./media/characters/gen/front-demi.svg",
  38219. extra: 1627/1538,
  38220. bottom: 71/1698
  38221. }
  38222. },
  38223. backDemi: {
  38224. height: math.unit(5 + 2/12, "feet"),
  38225. name: "Back (Demi)",
  38226. image: {
  38227. source: "./media/characters/gen/back-demi.svg",
  38228. extra: 1638/1548,
  38229. bottom: 69/1707
  38230. }
  38231. },
  38232. },
  38233. [
  38234. {
  38235. name: "Normal",
  38236. height: math.unit(5 + 2/12, "feet"),
  38237. default: true
  38238. },
  38239. ]
  38240. ))
  38241. characterMakers.push(() => makeCharacter(
  38242. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38243. {
  38244. frontImp: {
  38245. height: math.unit(1 + 11/12, "feet"),
  38246. name: "Front (Imp)",
  38247. image: {
  38248. source: "./media/characters/max-kobold/front-imp.svg",
  38249. extra: 1238/1134,
  38250. bottom: 81/1319
  38251. }
  38252. },
  38253. backImp: {
  38254. height: math.unit(1 + 11/12, "feet"),
  38255. name: "Back (Imp)",
  38256. image: {
  38257. source: "./media/characters/max-kobold/back-imp.svg",
  38258. extra: 1334/1175,
  38259. bottom: 34/1368
  38260. }
  38261. },
  38262. frontDemi: {
  38263. height: math.unit(5 + 9/12, "feet"),
  38264. name: "Front (Demi)",
  38265. image: {
  38266. source: "./media/characters/max-kobold/front-demi.svg",
  38267. extra: 1715/1685,
  38268. bottom: 54/1769
  38269. }
  38270. },
  38271. backDemi: {
  38272. height: math.unit(5 + 9/12, "feet"),
  38273. name: "Back (Demi)",
  38274. image: {
  38275. source: "./media/characters/max-kobold/back-demi.svg",
  38276. extra: 1752/1729,
  38277. bottom: 41/1793
  38278. }
  38279. },
  38280. handImp: {
  38281. height: math.unit(0.45, "feet"),
  38282. name: "Hand (Imp)",
  38283. image: {
  38284. source: "./media/characters/max-kobold/hand.svg"
  38285. }
  38286. },
  38287. pawImp: {
  38288. height: math.unit(0.46, "feet"),
  38289. name: "Paw (Imp)",
  38290. image: {
  38291. source: "./media/characters/max-kobold/paw.svg"
  38292. }
  38293. },
  38294. handDemi: {
  38295. height: math.unit(0.80, "feet"),
  38296. name: "Hand (Demi)",
  38297. image: {
  38298. source: "./media/characters/max-kobold/hand.svg"
  38299. }
  38300. },
  38301. pawDemi: {
  38302. height: math.unit(1.1, "feet"),
  38303. name: "Paw (Demi)",
  38304. image: {
  38305. source: "./media/characters/max-kobold/paw.svg"
  38306. }
  38307. },
  38308. headImp: {
  38309. height: math.unit(1.33, "feet"),
  38310. name: "Head (Imp)",
  38311. image: {
  38312. source: "./media/characters/max-kobold/head-imp.svg"
  38313. }
  38314. },
  38315. mawImp: {
  38316. height: math.unit(0.75, "feet"),
  38317. name: "Maw (Imp)",
  38318. image: {
  38319. source: "./media/characters/max-kobold/maw-imp.svg"
  38320. }
  38321. },
  38322. mawDemi: {
  38323. height: math.unit(0.42, "feet"),
  38324. name: "Maw (Demi)",
  38325. image: {
  38326. source: "./media/characters/max-kobold/maw-demi.svg"
  38327. }
  38328. },
  38329. },
  38330. [
  38331. {
  38332. name: "Normal",
  38333. height: math.unit(1 + 11/12, "feet"),
  38334. default: true
  38335. },
  38336. ]
  38337. ))
  38338. characterMakers.push(() => makeCharacter(
  38339. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38340. {
  38341. front: {
  38342. height: math.unit(7 + 5/12, "feet"),
  38343. name: "Front",
  38344. image: {
  38345. source: "./media/characters/carbon/front.svg",
  38346. extra: 1754/1689,
  38347. bottom: 65/1819
  38348. }
  38349. },
  38350. back: {
  38351. height: math.unit(7 + 5/12, "feet"),
  38352. name: "Back",
  38353. image: {
  38354. source: "./media/characters/carbon/back.svg",
  38355. extra: 1762/1695,
  38356. bottom: 24/1786
  38357. }
  38358. },
  38359. frontGigantamax: {
  38360. height: math.unit(150, "feet"),
  38361. name: "Front (Gigantamax)",
  38362. image: {
  38363. source: "./media/characters/carbon/front-gigantamax.svg",
  38364. extra: 1826/1669,
  38365. bottom: 59/1885
  38366. }
  38367. },
  38368. backGigantamax: {
  38369. height: math.unit(150, "feet"),
  38370. name: "Back (Gigantamax)",
  38371. image: {
  38372. source: "./media/characters/carbon/back-gigantamax.svg",
  38373. extra: 1796/1653,
  38374. bottom: 53/1849
  38375. }
  38376. },
  38377. maw: {
  38378. height: math.unit(0.48, "feet"),
  38379. name: "Maw",
  38380. image: {
  38381. source: "./media/characters/carbon/maw.svg"
  38382. }
  38383. },
  38384. mawGigantamax: {
  38385. height: math.unit(7.5, "feet"),
  38386. name: "Maw (Gigantamax)",
  38387. image: {
  38388. source: "./media/characters/carbon/maw-gigantamax.svg"
  38389. }
  38390. },
  38391. },
  38392. [
  38393. {
  38394. name: "Normal",
  38395. height: math.unit(7 + 5/12, "feet"),
  38396. default: true
  38397. },
  38398. ]
  38399. ))
  38400. characterMakers.push(() => makeCharacter(
  38401. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38402. {
  38403. front: {
  38404. height: math.unit(6, "feet"),
  38405. name: "Front",
  38406. image: {
  38407. source: "./media/characters/maverick/front.svg",
  38408. extra: 1672/1661,
  38409. bottom: 85/1757
  38410. }
  38411. },
  38412. back: {
  38413. height: math.unit(6, "feet"),
  38414. name: "Back",
  38415. image: {
  38416. source: "./media/characters/maverick/back.svg",
  38417. extra: 1642/1631,
  38418. bottom: 38/1680
  38419. }
  38420. },
  38421. },
  38422. [
  38423. {
  38424. name: "Normal",
  38425. height: math.unit(6, "feet"),
  38426. default: true
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38432. {
  38433. front: {
  38434. height: math.unit(15, "feet"),
  38435. weight: math.unit(615, "lb"),
  38436. name: "Front",
  38437. image: {
  38438. source: "./media/characters/grockle/front.svg",
  38439. extra: 1535/1427,
  38440. bottom: 56/1591
  38441. }
  38442. },
  38443. },
  38444. [
  38445. {
  38446. name: "Normal",
  38447. height: math.unit(15, "feet"),
  38448. default: true
  38449. },
  38450. {
  38451. name: "Large",
  38452. height: math.unit(150, "feet")
  38453. },
  38454. {
  38455. name: "Macro",
  38456. height: math.unit(1876, "feet")
  38457. },
  38458. {
  38459. name: "Mega Macro",
  38460. height: math.unit(121940, "feet")
  38461. },
  38462. {
  38463. name: "Giga Macro",
  38464. height: math.unit(750, "km")
  38465. },
  38466. {
  38467. name: "Tera Macro",
  38468. height: math.unit(750000, "km")
  38469. },
  38470. {
  38471. name: "Galactic",
  38472. height: math.unit(1.4e5, "km")
  38473. },
  38474. {
  38475. name: "Godlike",
  38476. height: math.unit(9.8e280, "galaxies")
  38477. },
  38478. ]
  38479. ))
  38480. characterMakers.push(() => makeCharacter(
  38481. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38482. {
  38483. front: {
  38484. height: math.unit(11, "meters"),
  38485. weight: math.unit(20, "tonnes"),
  38486. name: "Front",
  38487. image: {
  38488. source: "./media/characters/alistair/front.svg",
  38489. extra: 1265/1009,
  38490. bottom: 93/1358
  38491. }
  38492. },
  38493. },
  38494. [
  38495. {
  38496. name: "Normal",
  38497. height: math.unit(11, "meters"),
  38498. default: true
  38499. },
  38500. ]
  38501. ))
  38502. characterMakers.push(() => makeCharacter(
  38503. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38504. {
  38505. front: {
  38506. height: math.unit(5 + 8/12, "feet"),
  38507. name: "Front",
  38508. image: {
  38509. source: "./media/characters/haruka/front.svg",
  38510. extra: 2012/1952,
  38511. bottom: 0/2012
  38512. }
  38513. },
  38514. },
  38515. [
  38516. {
  38517. name: "Normal",
  38518. height: math.unit(5 + 8/12, "feet"),
  38519. default: true
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38525. {
  38526. back: {
  38527. height: math.unit(9, "feet"),
  38528. name: "Back",
  38529. image: {
  38530. source: "./media/characters/vivian-sylveon/back.svg",
  38531. extra: 1853/1714,
  38532. bottom: 0/1853
  38533. }
  38534. },
  38535. },
  38536. [
  38537. {
  38538. name: "Normal",
  38539. height: math.unit(9, "feet"),
  38540. default: true
  38541. },
  38542. {
  38543. name: "Macro",
  38544. height: math.unit(500, "feet")
  38545. },
  38546. {
  38547. name: "Megamacro",
  38548. height: math.unit(600, "miles")
  38549. },
  38550. {
  38551. name: "Gigamacro",
  38552. height: math.unit(30000, "miles")
  38553. },
  38554. ]
  38555. ))
  38556. characterMakers.push(() => makeCharacter(
  38557. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38558. {
  38559. anthro: {
  38560. height: math.unit(5 + 10/12, "feet"),
  38561. weight: math.unit(100, "lb"),
  38562. name: "Anthro",
  38563. image: {
  38564. source: "./media/characters/daiki/anthro.svg",
  38565. extra: 1115/1027,
  38566. bottom: 69/1184
  38567. }
  38568. },
  38569. feral: {
  38570. height: math.unit(200, "feet"),
  38571. name: "Feral",
  38572. image: {
  38573. source: "./media/characters/daiki/feral.svg",
  38574. extra: 1256/313,
  38575. bottom: 39/1295
  38576. }
  38577. },
  38578. feralHead: {
  38579. height: math.unit(171, "feet"),
  38580. name: "Feral Head",
  38581. image: {
  38582. source: "./media/characters/daiki/feral-head.svg"
  38583. }
  38584. },
  38585. manaDragon: {
  38586. height: math.unit(170, "meters"),
  38587. name: "Mana-dragon",
  38588. image: {
  38589. source: "./media/characters/daiki/mana-dragon.svg",
  38590. extra: 763/420,
  38591. bottom: 97/860
  38592. }
  38593. },
  38594. },
  38595. [
  38596. {
  38597. name: "Normal",
  38598. height: math.unit(5 + 10/12, "feet"),
  38599. default: true
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38605. {
  38606. fullyEquippedFront: {
  38607. height: math.unit(3 + 1/12, "feet"),
  38608. weight: math.unit(24, "lb"),
  38609. name: "Fully Equipped (Front)",
  38610. image: {
  38611. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38612. extra: 687/605,
  38613. bottom: 18/705
  38614. }
  38615. },
  38616. fullyEquippedBack: {
  38617. height: math.unit(3 + 1/12, "feet"),
  38618. weight: math.unit(24, "lb"),
  38619. name: "Fully Equipped (Back)",
  38620. image: {
  38621. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38622. extra: 689/590,
  38623. bottom: 18/707
  38624. }
  38625. },
  38626. dailyWear: {
  38627. height: math.unit(3 + 1/12, "feet"),
  38628. weight: math.unit(24, "lb"),
  38629. name: "Daily Wear",
  38630. image: {
  38631. source: "./media/characters/tea-spot/daily-wear.svg",
  38632. extra: 701/620,
  38633. bottom: 21/722
  38634. }
  38635. },
  38636. maidWork: {
  38637. height: math.unit(3 + 1/12, "feet"),
  38638. weight: math.unit(24, "lb"),
  38639. name: "Maid Work",
  38640. image: {
  38641. source: "./media/characters/tea-spot/maid-work.svg",
  38642. extra: 693/609,
  38643. bottom: 15/708
  38644. }
  38645. },
  38646. },
  38647. [
  38648. {
  38649. name: "Normal",
  38650. height: math.unit(3 + 1/12, "feet"),
  38651. default: true
  38652. },
  38653. ]
  38654. ))
  38655. characterMakers.push(() => makeCharacter(
  38656. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38657. {
  38658. front: {
  38659. height: math.unit(175, "cm"),
  38660. weight: math.unit(75, "kg"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/chee/front.svg",
  38664. extra: 1796/1740,
  38665. bottom: 40/1836
  38666. }
  38667. },
  38668. },
  38669. [
  38670. {
  38671. name: "Micro-Micro",
  38672. height: math.unit(1, "nm")
  38673. },
  38674. {
  38675. name: "Micro-erst",
  38676. height: math.unit(1, "micrometer")
  38677. },
  38678. {
  38679. name: "Micro-er",
  38680. height: math.unit(1, "cm")
  38681. },
  38682. {
  38683. name: "Normal",
  38684. height: math.unit(175, "cm"),
  38685. default: true
  38686. },
  38687. {
  38688. name: "Macro",
  38689. height: math.unit(100, "m")
  38690. },
  38691. {
  38692. name: "Macro-er",
  38693. height: math.unit(1, "km")
  38694. },
  38695. {
  38696. name: "Macro-erst",
  38697. height: math.unit(10, "km")
  38698. },
  38699. {
  38700. name: "Macro-Macro",
  38701. height: math.unit(100, "km")
  38702. },
  38703. ]
  38704. ))
  38705. characterMakers.push(() => makeCharacter(
  38706. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38707. {
  38708. front: {
  38709. height: math.unit(11 + 9/12, "feet"),
  38710. weight: math.unit(935, "lb"),
  38711. name: "Front",
  38712. image: {
  38713. source: "./media/characters/kingsley/front.svg",
  38714. extra: 1803/1674,
  38715. bottom: 127/1930
  38716. }
  38717. },
  38718. frontNude: {
  38719. height: math.unit(11 + 9/12, "feet"),
  38720. weight: math.unit(935, "lb"),
  38721. name: "Front (Nude)",
  38722. image: {
  38723. source: "./media/characters/kingsley/front-nude.svg",
  38724. extra: 1803/1674,
  38725. bottom: 127/1930
  38726. }
  38727. },
  38728. },
  38729. [
  38730. {
  38731. name: "Normal",
  38732. height: math.unit(11 + 9/12, "feet"),
  38733. default: true
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38739. {
  38740. side: {
  38741. height: math.unit(9, "feet"),
  38742. name: "Side",
  38743. image: {
  38744. source: "./media/characters/rymel/side.svg",
  38745. extra: 792/469,
  38746. bottom: 121/913
  38747. }
  38748. },
  38749. maw: {
  38750. height: math.unit(2.4, "meters"),
  38751. name: "Maw",
  38752. image: {
  38753. source: "./media/characters/rymel/maw.svg"
  38754. }
  38755. },
  38756. },
  38757. [
  38758. {
  38759. name: "House Drake",
  38760. height: math.unit(2, "feet")
  38761. },
  38762. {
  38763. name: "Reduced",
  38764. height: math.unit(4.5, "feet")
  38765. },
  38766. {
  38767. name: "Normal",
  38768. height: math.unit(9, "feet"),
  38769. default: true
  38770. },
  38771. ]
  38772. ))
  38773. characterMakers.push(() => makeCharacter(
  38774. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38775. {
  38776. front: {
  38777. height: math.unit(1.74, "meters"),
  38778. weight: math.unit(55, "kg"),
  38779. name: "Front",
  38780. image: {
  38781. source: "./media/characters/rubus/front.svg",
  38782. extra: 1894/1742,
  38783. bottom: 44/1938
  38784. }
  38785. },
  38786. },
  38787. [
  38788. {
  38789. name: "Normal",
  38790. height: math.unit(1.74, "meters"),
  38791. default: true
  38792. },
  38793. ]
  38794. ))
  38795. characterMakers.push(() => makeCharacter(
  38796. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38797. {
  38798. front: {
  38799. height: math.unit(5 + 2/12, "feet"),
  38800. weight: math.unit(112, "lb"),
  38801. name: "Front",
  38802. image: {
  38803. source: "./media/characters/cassie-kingston/front.svg",
  38804. extra: 1438/1390,
  38805. bottom: 47/1485
  38806. }
  38807. },
  38808. },
  38809. [
  38810. {
  38811. name: "Normal",
  38812. height: math.unit(5 + 2/12, "feet"),
  38813. default: true
  38814. },
  38815. {
  38816. name: "Macro",
  38817. height: math.unit(128, "feet")
  38818. },
  38819. {
  38820. name: "Megamacro",
  38821. height: math.unit(2.56, "miles")
  38822. },
  38823. ]
  38824. ))
  38825. characterMakers.push(() => makeCharacter(
  38826. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38827. {
  38828. front: {
  38829. height: math.unit(7, "feet"),
  38830. name: "Front",
  38831. image: {
  38832. source: "./media/characters/fox/front.svg",
  38833. extra: 1798/1703,
  38834. bottom: 55/1853
  38835. }
  38836. },
  38837. back: {
  38838. height: math.unit(7, "feet"),
  38839. name: "Back",
  38840. image: {
  38841. source: "./media/characters/fox/back.svg",
  38842. extra: 1748/1649,
  38843. bottom: 32/1780
  38844. }
  38845. },
  38846. head: {
  38847. height: math.unit(1.95, "feet"),
  38848. name: "Head",
  38849. image: {
  38850. source: "./media/characters/fox/head.svg"
  38851. }
  38852. },
  38853. dick: {
  38854. height: math.unit(1.33, "feet"),
  38855. name: "Dick",
  38856. image: {
  38857. source: "./media/characters/fox/dick.svg"
  38858. }
  38859. },
  38860. foot: {
  38861. height: math.unit(1, "feet"),
  38862. name: "Foot",
  38863. image: {
  38864. source: "./media/characters/fox/foot.svg"
  38865. }
  38866. },
  38867. paw: {
  38868. height: math.unit(0.92, "feet"),
  38869. name: "Paw",
  38870. image: {
  38871. source: "./media/characters/fox/paw.svg"
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Small",
  38878. height: math.unit(3, "inches")
  38879. },
  38880. {
  38881. name: "\"Realistic\"",
  38882. height: math.unit(7, "feet")
  38883. },
  38884. {
  38885. name: "Normal",
  38886. height: math.unit(150, "feet"),
  38887. default: true
  38888. },
  38889. {
  38890. name: "BIG",
  38891. height: math.unit(1200, "feet")
  38892. },
  38893. {
  38894. name: "👀",
  38895. height: math.unit(5, "miles")
  38896. },
  38897. {
  38898. name: "👀👀👀",
  38899. height: math.unit(64, "miles")
  38900. },
  38901. ]
  38902. ))
  38903. characterMakers.push(() => makeCharacter(
  38904. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38905. {
  38906. front: {
  38907. height: math.unit(625, "feet"),
  38908. name: "Front",
  38909. image: {
  38910. source: "./media/characters/asonja-rossa/front.svg",
  38911. extra: 1833/1686,
  38912. bottom: 24/1857
  38913. }
  38914. },
  38915. back: {
  38916. height: math.unit(625, "feet"),
  38917. name: "Back",
  38918. image: {
  38919. source: "./media/characters/asonja-rossa/back.svg",
  38920. extra: 1852/1753,
  38921. bottom: 26/1878
  38922. }
  38923. },
  38924. },
  38925. [
  38926. {
  38927. name: "Macro",
  38928. height: math.unit(625, "feet"),
  38929. default: true
  38930. },
  38931. ]
  38932. ))
  38933. characterMakers.push(() => makeCharacter(
  38934. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38935. {
  38936. side: {
  38937. height: math.unit(8, "feet"),
  38938. name: "Side",
  38939. image: {
  38940. source: "./media/characters/rezukii/side.svg",
  38941. extra: 979/542,
  38942. bottom: 87/1066
  38943. }
  38944. },
  38945. sitting: {
  38946. height: math.unit(14.6, "feet"),
  38947. name: "Sitting",
  38948. image: {
  38949. source: "./media/characters/rezukii/sitting.svg",
  38950. extra: 1023/813,
  38951. bottom: 45/1068
  38952. }
  38953. },
  38954. },
  38955. [
  38956. {
  38957. name: "Tiny",
  38958. height: math.unit(2, "feet")
  38959. },
  38960. {
  38961. name: "Smol",
  38962. height: math.unit(4, "feet")
  38963. },
  38964. {
  38965. name: "Normal",
  38966. height: math.unit(8, "feet"),
  38967. default: true
  38968. },
  38969. {
  38970. name: "Big",
  38971. height: math.unit(12, "feet")
  38972. },
  38973. {
  38974. name: "Macro",
  38975. height: math.unit(30, "feet")
  38976. },
  38977. ]
  38978. ))
  38979. characterMakers.push(() => makeCharacter(
  38980. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38981. {
  38982. front: {
  38983. height: math.unit(14, "feet"),
  38984. weight: math.unit(9.5, "tonnes"),
  38985. name: "Front",
  38986. image: {
  38987. source: "./media/characters/dawnheart/front.svg",
  38988. extra: 2792/2675,
  38989. bottom: 64/2856
  38990. }
  38991. },
  38992. },
  38993. [
  38994. {
  38995. name: "Normal",
  38996. height: math.unit(14, "feet"),
  38997. default: true
  38998. },
  38999. ]
  39000. ))
  39001. characterMakers.push(() => makeCharacter(
  39002. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39003. {
  39004. front: {
  39005. height: math.unit(1.7, "m"),
  39006. name: "Front",
  39007. image: {
  39008. source: "./media/characters/gladi/front.svg",
  39009. extra: 1460/1362,
  39010. bottom: 19/1479
  39011. }
  39012. },
  39013. back: {
  39014. height: math.unit(1.7, "m"),
  39015. name: "Back",
  39016. image: {
  39017. source: "./media/characters/gladi/back.svg",
  39018. extra: 1459/1357,
  39019. bottom: 12/1471
  39020. }
  39021. },
  39022. feral: {
  39023. height: math.unit(2.05, "m"),
  39024. name: "Feral",
  39025. image: {
  39026. source: "./media/characters/gladi/feral.svg",
  39027. extra: 821/557,
  39028. bottom: 91/912
  39029. }
  39030. },
  39031. },
  39032. [
  39033. {
  39034. name: "Shortest",
  39035. height: math.unit(70, "cm")
  39036. },
  39037. {
  39038. name: "Normal",
  39039. height: math.unit(1.7, "m")
  39040. },
  39041. {
  39042. name: "Macro",
  39043. height: math.unit(10, "m"),
  39044. default: true
  39045. },
  39046. {
  39047. name: "Tallest",
  39048. height: math.unit(200, "m")
  39049. },
  39050. ]
  39051. ))
  39052. characterMakers.push(() => makeCharacter(
  39053. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39054. {
  39055. front: {
  39056. height: math.unit(5 + 7/12, "feet"),
  39057. weight: math.unit(2, "tons"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/erdno/front.svg",
  39061. extra: 1234/1129,
  39062. bottom: 35/1269
  39063. }
  39064. },
  39065. angled: {
  39066. height: math.unit(5 + 7/12, "feet"),
  39067. weight: math.unit(2, "tons"),
  39068. name: "Angled",
  39069. image: {
  39070. source: "./media/characters/erdno/angled.svg",
  39071. extra: 1185/1139,
  39072. bottom: 36/1221
  39073. }
  39074. },
  39075. side: {
  39076. height: math.unit(5 + 7/12, "feet"),
  39077. weight: math.unit(2, "tons"),
  39078. name: "Side",
  39079. image: {
  39080. source: "./media/characters/erdno/side.svg",
  39081. extra: 1191/1144,
  39082. bottom: 40/1231
  39083. }
  39084. },
  39085. back: {
  39086. height: math.unit(5 + 7/12, "feet"),
  39087. weight: math.unit(2, "tons"),
  39088. name: "Back",
  39089. image: {
  39090. source: "./media/characters/erdno/back.svg",
  39091. extra: 1202/1146,
  39092. bottom: 17/1219
  39093. }
  39094. },
  39095. frontNsfw: {
  39096. height: math.unit(5 + 7/12, "feet"),
  39097. weight: math.unit(2, "tons"),
  39098. name: "Front (NSFW)",
  39099. image: {
  39100. source: "./media/characters/erdno/front-nsfw.svg",
  39101. extra: 1234/1129,
  39102. bottom: 35/1269
  39103. }
  39104. },
  39105. angledNsfw: {
  39106. height: math.unit(5 + 7/12, "feet"),
  39107. weight: math.unit(2, "tons"),
  39108. name: "Angled (NSFW)",
  39109. image: {
  39110. source: "./media/characters/erdno/angled-nsfw.svg",
  39111. extra: 1185/1139,
  39112. bottom: 36/1221
  39113. }
  39114. },
  39115. sideNsfw: {
  39116. height: math.unit(5 + 7/12, "feet"),
  39117. weight: math.unit(2, "tons"),
  39118. name: "Side (NSFW)",
  39119. image: {
  39120. source: "./media/characters/erdno/side-nsfw.svg",
  39121. extra: 1191/1144,
  39122. bottom: 40/1231
  39123. }
  39124. },
  39125. backNsfw: {
  39126. height: math.unit(5 + 7/12, "feet"),
  39127. weight: math.unit(2, "tons"),
  39128. name: "Back (NSFW)",
  39129. image: {
  39130. source: "./media/characters/erdno/back-nsfw.svg",
  39131. extra: 1202/1146,
  39132. bottom: 17/1219
  39133. }
  39134. },
  39135. frontHyper: {
  39136. height: math.unit(5 + 7/12, "feet"),
  39137. weight: math.unit(2, "tons"),
  39138. name: "Front (Hyper)",
  39139. image: {
  39140. source: "./media/characters/erdno/front-hyper.svg",
  39141. extra: 1298/1136,
  39142. bottom: 35/1333
  39143. }
  39144. },
  39145. },
  39146. [
  39147. {
  39148. name: "Normal",
  39149. height: math.unit(5 + 7/12, "feet"),
  39150. default: true
  39151. },
  39152. {
  39153. name: "Big",
  39154. height: math.unit(5.7, "meters")
  39155. },
  39156. {
  39157. name: "Macro",
  39158. height: math.unit(5.7, "kilometers")
  39159. },
  39160. {
  39161. name: "Megamacro",
  39162. height: math.unit(5.7, "earths")
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39168. {
  39169. front: {
  39170. height: math.unit(5 + 10/12, "feet"),
  39171. weight: math.unit(150, "lb"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/jamie/front.svg",
  39175. extra: 1908/1768,
  39176. bottom: 19/1927
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Minimum",
  39183. height: math.unit(2, "cm")
  39184. },
  39185. {
  39186. name: "Micro",
  39187. height: math.unit(3, "inches")
  39188. },
  39189. {
  39190. name: "Normal",
  39191. height: math.unit(5 + 10/12, "feet"),
  39192. default: true
  39193. },
  39194. {
  39195. name: "Macro",
  39196. height: math.unit(150, "feet")
  39197. },
  39198. {
  39199. name: "Megamacro",
  39200. height: math.unit(10000, "m")
  39201. },
  39202. ]
  39203. ))
  39204. characterMakers.push(() => makeCharacter(
  39205. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39206. {
  39207. front: {
  39208. height: math.unit(2, "meters"),
  39209. weight: math.unit(100, "kg"),
  39210. name: "Front",
  39211. image: {
  39212. source: "./media/characters/shiron/front.svg",
  39213. extra: 2103/1985,
  39214. bottom: 98/2201
  39215. }
  39216. },
  39217. back: {
  39218. height: math.unit(2, "meters"),
  39219. weight: math.unit(100, "kg"),
  39220. name: "Back",
  39221. image: {
  39222. source: "./media/characters/shiron/back.svg",
  39223. extra: 2110/2015,
  39224. bottom: 89/2199
  39225. }
  39226. },
  39227. hand: {
  39228. height: math.unit(0.96, "feet"),
  39229. name: "Hand",
  39230. image: {
  39231. source: "./media/characters/shiron/hand.svg"
  39232. }
  39233. },
  39234. foot: {
  39235. height: math.unit(1.464, "feet"),
  39236. name: "Foot",
  39237. image: {
  39238. source: "./media/characters/shiron/foot.svg"
  39239. }
  39240. },
  39241. },
  39242. [
  39243. {
  39244. name: "Normal",
  39245. height: math.unit(2, "meters")
  39246. },
  39247. {
  39248. name: "Macro",
  39249. height: math.unit(500, "meters"),
  39250. default: true
  39251. },
  39252. {
  39253. name: "Megamacro",
  39254. height: math.unit(20, "km")
  39255. },
  39256. ]
  39257. ))
  39258. characterMakers.push(() => makeCharacter(
  39259. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39260. {
  39261. front: {
  39262. height: math.unit(6, "feet"),
  39263. name: "Front",
  39264. image: {
  39265. source: "./media/characters/sam/front.svg",
  39266. extra: 849/826,
  39267. bottom: 19/868
  39268. }
  39269. },
  39270. },
  39271. [
  39272. {
  39273. name: "Normal",
  39274. height: math.unit(6, "feet"),
  39275. default: true
  39276. },
  39277. ]
  39278. ))
  39279. characterMakers.push(() => makeCharacter(
  39280. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39281. {
  39282. front: {
  39283. height: math.unit(8 + 4/12, "feet"),
  39284. weight: math.unit(122, "kg"),
  39285. name: "Front",
  39286. image: {
  39287. source: "./media/characters/namori-kurogawa/front.svg",
  39288. extra: 1894/1576,
  39289. bottom: 34/1928
  39290. }
  39291. },
  39292. },
  39293. [
  39294. {
  39295. name: "Normal",
  39296. height: math.unit(8 + 4/12, "feet"),
  39297. default: true
  39298. },
  39299. ]
  39300. ))
  39301. characterMakers.push(() => makeCharacter(
  39302. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39303. {
  39304. front: {
  39305. height: math.unit(9, "feet"),
  39306. weight: math.unit(621, "lb"),
  39307. name: "Front",
  39308. image: {
  39309. source: "./media/characters/unmru/front.svg",
  39310. extra: 1853/1747,
  39311. bottom: 73/1926
  39312. }
  39313. },
  39314. side: {
  39315. height: math.unit(9, "feet"),
  39316. weight: math.unit(621, "lb"),
  39317. name: "Side",
  39318. image: {
  39319. source: "./media/characters/unmru/side.svg",
  39320. extra: 1781/1671,
  39321. bottom: 127/1908
  39322. }
  39323. },
  39324. back: {
  39325. height: math.unit(9, "feet"),
  39326. weight: math.unit(621, "lb"),
  39327. name: "Back",
  39328. image: {
  39329. source: "./media/characters/unmru/back.svg",
  39330. extra: 1894/1765,
  39331. bottom: 75/1969
  39332. }
  39333. },
  39334. dick: {
  39335. height: math.unit(3, "feet"),
  39336. weight: math.unit(35, "lb"),
  39337. name: "Dick",
  39338. image: {
  39339. source: "./media/characters/unmru/dick.svg"
  39340. }
  39341. },
  39342. },
  39343. [
  39344. {
  39345. name: "Normal",
  39346. height: math.unit(9, "feet")
  39347. },
  39348. {
  39349. name: "Natural",
  39350. height: math.unit(27, "feet"),
  39351. default: true
  39352. },
  39353. {
  39354. name: "Giant",
  39355. height: math.unit(90, "feet")
  39356. },
  39357. {
  39358. name: "Kaiju",
  39359. height: math.unit(270, "feet")
  39360. },
  39361. {
  39362. name: "Macro",
  39363. height: math.unit(900, "feet")
  39364. },
  39365. {
  39366. name: "Macro+",
  39367. height: math.unit(2700, "feet")
  39368. },
  39369. {
  39370. name: "Megamacro",
  39371. height: math.unit(9000, "feet")
  39372. },
  39373. {
  39374. name: "City-Crushing",
  39375. height: math.unit(27000, "feet")
  39376. },
  39377. {
  39378. name: "Mountain-Mashing",
  39379. height: math.unit(90000, "feet")
  39380. },
  39381. {
  39382. name: "Earth-Eclipsing",
  39383. height: math.unit(2.7e8, "feet")
  39384. },
  39385. {
  39386. name: "Sol-Swallowing",
  39387. height: math.unit(9e10, "feet")
  39388. },
  39389. {
  39390. name: "Majoris-Munching",
  39391. height: math.unit(2.7e13, "feet")
  39392. },
  39393. ]
  39394. ))
  39395. characterMakers.push(() => makeCharacter(
  39396. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39397. {
  39398. front: {
  39399. height: math.unit(1, "inch"),
  39400. name: "Front",
  39401. image: {
  39402. source: "./media/characters/squeaks-mouse/front.svg",
  39403. extra: 352/308,
  39404. bottom: 25/377
  39405. }
  39406. },
  39407. },
  39408. [
  39409. {
  39410. name: "Micro",
  39411. height: math.unit(1, "inch"),
  39412. default: true
  39413. },
  39414. ]
  39415. ))
  39416. characterMakers.push(() => makeCharacter(
  39417. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39418. {
  39419. side: {
  39420. height: math.unit(35, "feet"),
  39421. name: "Side",
  39422. image: {
  39423. source: "./media/characters/sayko/side.svg",
  39424. extra: 1697/1021,
  39425. bottom: 82/1779
  39426. }
  39427. },
  39428. head: {
  39429. height: math.unit(16, "feet"),
  39430. name: "Head",
  39431. image: {
  39432. source: "./media/characters/sayko/head.svg"
  39433. }
  39434. },
  39435. forepaw: {
  39436. height: math.unit(7.85, "feet"),
  39437. name: "Forepaw",
  39438. image: {
  39439. source: "./media/characters/sayko/forepaw.svg"
  39440. }
  39441. },
  39442. hindpaw: {
  39443. height: math.unit(8.8, "feet"),
  39444. name: "Hindpaw",
  39445. image: {
  39446. source: "./media/characters/sayko/hindpaw.svg"
  39447. }
  39448. },
  39449. },
  39450. [
  39451. {
  39452. name: "Normal",
  39453. height: math.unit(35, "feet"),
  39454. default: true
  39455. },
  39456. {
  39457. name: "Colossus",
  39458. height: math.unit(100, "meters")
  39459. },
  39460. {
  39461. name: "\"Small\" Deity",
  39462. height: math.unit(1, "km")
  39463. },
  39464. {
  39465. name: "\"Large\" Deity",
  39466. height: math.unit(15, "km")
  39467. },
  39468. ]
  39469. ))
  39470. characterMakers.push(() => makeCharacter(
  39471. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39472. {
  39473. front: {
  39474. height: math.unit(6, "feet"),
  39475. weight: math.unit(250, "lb"),
  39476. name: "Front",
  39477. image: {
  39478. source: "./media/characters/mukiro/front.svg",
  39479. extra: 1368/1310,
  39480. bottom: 34/1402
  39481. }
  39482. },
  39483. },
  39484. [
  39485. {
  39486. name: "Normal",
  39487. height: math.unit(6, "feet"),
  39488. default: true
  39489. },
  39490. ]
  39491. ))
  39492. characterMakers.push(() => makeCharacter(
  39493. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39494. {
  39495. front: {
  39496. height: math.unit(12 + 4/12, "feet"),
  39497. name: "Front",
  39498. image: {
  39499. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39500. extra: 1346/1311,
  39501. bottom: 65/1411
  39502. }
  39503. },
  39504. },
  39505. [
  39506. {
  39507. name: "Base",
  39508. height: math.unit(12 + 4/12, "feet"),
  39509. default: true
  39510. },
  39511. {
  39512. name: "Macro",
  39513. height: math.unit(150, "feet")
  39514. },
  39515. {
  39516. name: "Mega",
  39517. height: math.unit(2, "miles")
  39518. },
  39519. {
  39520. name: "Demi God",
  39521. height: math.unit(4, "AU")
  39522. },
  39523. {
  39524. name: "God Size",
  39525. height: math.unit(1, "universe")
  39526. },
  39527. ]
  39528. ))
  39529. characterMakers.push(() => makeCharacter(
  39530. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39531. {
  39532. front: {
  39533. height: math.unit(3 + 3/12, "feet"),
  39534. weight: math.unit(88, "lb"),
  39535. name: "Front",
  39536. image: {
  39537. source: "./media/characters/trey/front.svg",
  39538. extra: 1815/1509,
  39539. bottom: 60/1875
  39540. }
  39541. },
  39542. },
  39543. [
  39544. {
  39545. name: "Normal",
  39546. height: math.unit(3 + 3/12, "feet"),
  39547. default: true
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39553. {
  39554. front: {
  39555. height: math.unit(4, "meters"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/adelonda/front.svg",
  39559. extra: 1077/982,
  39560. bottom: 39/1116
  39561. }
  39562. },
  39563. back: {
  39564. height: math.unit(4, "meters"),
  39565. name: "Back",
  39566. image: {
  39567. source: "./media/characters/adelonda/back.svg",
  39568. extra: 1105/1003,
  39569. bottom: 25/1130
  39570. }
  39571. },
  39572. feral: {
  39573. height: math.unit(40/1.5, "meters"),
  39574. name: "Feral",
  39575. image: {
  39576. source: "./media/characters/adelonda/feral.svg",
  39577. extra: 597/271,
  39578. bottom: 387/984
  39579. }
  39580. },
  39581. },
  39582. [
  39583. {
  39584. name: "Normal",
  39585. height: math.unit(4, "meters"),
  39586. default: true
  39587. },
  39588. ]
  39589. ))
  39590. characterMakers.push(() => makeCharacter(
  39591. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39592. {
  39593. front: {
  39594. height: math.unit(8 + 4/12, "feet"),
  39595. weight: math.unit(670, "lb"),
  39596. name: "Front",
  39597. image: {
  39598. source: "./media/characters/acadiel/front.svg",
  39599. extra: 1901/1595,
  39600. bottom: 142/2043
  39601. }
  39602. },
  39603. },
  39604. [
  39605. {
  39606. name: "Normal",
  39607. height: math.unit(8 + 4/12, "feet"),
  39608. default: true
  39609. },
  39610. {
  39611. name: "Macro",
  39612. height: math.unit(200, "feet")
  39613. },
  39614. ]
  39615. ))
  39616. characterMakers.push(() => makeCharacter(
  39617. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39618. {
  39619. front: {
  39620. height: math.unit(6 + 2/12, "feet"),
  39621. weight: math.unit(185, "lb"),
  39622. name: "Front",
  39623. image: {
  39624. source: "./media/characters/kayne-ein/front.svg",
  39625. extra: 1780/1560,
  39626. bottom: 81/1861
  39627. }
  39628. },
  39629. },
  39630. [
  39631. {
  39632. name: "Normal",
  39633. height: math.unit(6 + 2/12, "feet"),
  39634. default: true
  39635. },
  39636. {
  39637. name: "Transformation Stage",
  39638. height: math.unit(15, "feet")
  39639. },
  39640. {
  39641. name: "Macro",
  39642. height: math.unit(150, "feet")
  39643. },
  39644. {
  39645. name: "Earth's Shadow",
  39646. height: math.unit(6200, "miles")
  39647. },
  39648. {
  39649. name: "Universal Demon",
  39650. height: math.unit(28e9, "parsecs")
  39651. },
  39652. {
  39653. name: "Multiverse God",
  39654. height: math.unit(3, "multiverses")
  39655. },
  39656. ]
  39657. ))
  39658. characterMakers.push(() => makeCharacter(
  39659. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39660. {
  39661. front: {
  39662. height: math.unit(5 + 5/12, "feet"),
  39663. name: "Front",
  39664. image: {
  39665. source: "./media/characters/fawn/front.svg",
  39666. extra: 1873/1731,
  39667. bottom: 95/1968
  39668. }
  39669. },
  39670. back: {
  39671. height: math.unit(5 + 5/12, "feet"),
  39672. name: "Back",
  39673. image: {
  39674. source: "./media/characters/fawn/back.svg",
  39675. extra: 1813/1700,
  39676. bottom: 14/1827
  39677. }
  39678. },
  39679. hoof: {
  39680. height: math.unit(1.45, "feet"),
  39681. name: "Hoof",
  39682. image: {
  39683. source: "./media/characters/fawn/hoof.svg"
  39684. }
  39685. },
  39686. },
  39687. [
  39688. {
  39689. name: "Normal",
  39690. height: math.unit(5 + 5/12, "feet"),
  39691. default: true
  39692. },
  39693. ]
  39694. ))
  39695. characterMakers.push(() => makeCharacter(
  39696. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39697. {
  39698. front: {
  39699. height: math.unit(2 + 5/12, "feet"),
  39700. name: "Front",
  39701. image: {
  39702. source: "./media/characters/orion/front.svg",
  39703. extra: 1366/1304,
  39704. bottom: 43/1409
  39705. }
  39706. },
  39707. paw: {
  39708. height: math.unit(0.52, "feet"),
  39709. name: "Paw",
  39710. image: {
  39711. source: "./media/characters/orion/paw.svg"
  39712. }
  39713. },
  39714. },
  39715. [
  39716. {
  39717. name: "Normal",
  39718. height: math.unit(2 + 5/12, "feet"),
  39719. default: true
  39720. },
  39721. ]
  39722. ))
  39723. characterMakers.push(() => makeCharacter(
  39724. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39725. {
  39726. front: {
  39727. height: math.unit(5 + 10/12, "feet"),
  39728. name: "Front",
  39729. image: {
  39730. source: "./media/characters/vera/front.svg",
  39731. extra: 1680/1575,
  39732. bottom: 49/1729
  39733. }
  39734. },
  39735. back: {
  39736. height: math.unit(5 + 10/12, "feet"),
  39737. name: "Back",
  39738. image: {
  39739. source: "./media/characters/vera/back.svg",
  39740. extra: 1700/1588,
  39741. bottom: 18/1718
  39742. }
  39743. },
  39744. arcanine: {
  39745. height: math.unit(6 + 8/12, "feet"),
  39746. name: "Arcanine",
  39747. image: {
  39748. source: "./media/characters/vera/arcanine.svg",
  39749. extra: 1590/1511,
  39750. bottom: 71/1661
  39751. }
  39752. },
  39753. maw: {
  39754. height: math.unit(0.82, "feet"),
  39755. name: "Maw",
  39756. image: {
  39757. source: "./media/characters/vera/maw.svg"
  39758. }
  39759. },
  39760. mawArcanine: {
  39761. height: math.unit(0.97, "feet"),
  39762. name: "Maw (Arcanine)",
  39763. image: {
  39764. source: "./media/characters/vera/maw-arcanine.svg"
  39765. }
  39766. },
  39767. paw: {
  39768. height: math.unit(0.75, "feet"),
  39769. name: "Paw",
  39770. image: {
  39771. source: "./media/characters/vera/paw.svg"
  39772. }
  39773. },
  39774. pawprint: {
  39775. height: math.unit(0.52, "feet"),
  39776. name: "Pawprint",
  39777. image: {
  39778. source: "./media/characters/vera/pawprint.svg"
  39779. }
  39780. },
  39781. },
  39782. [
  39783. {
  39784. name: "Normal",
  39785. height: math.unit(5 + 10/12, "feet"),
  39786. default: true
  39787. },
  39788. {
  39789. name: "Macro",
  39790. height: math.unit(75, "feet")
  39791. },
  39792. ]
  39793. ))
  39794. characterMakers.push(() => makeCharacter(
  39795. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39796. {
  39797. front: {
  39798. height: math.unit(4, "feet"),
  39799. weight: math.unit(40, "lb"),
  39800. name: "Front",
  39801. image: {
  39802. source: "./media/characters/orvan-rabbit/front.svg",
  39803. extra: 1896/1642,
  39804. bottom: 29/1925
  39805. }
  39806. },
  39807. },
  39808. [
  39809. {
  39810. name: "Normal",
  39811. height: math.unit(4, "feet"),
  39812. default: true
  39813. },
  39814. ]
  39815. ))
  39816. characterMakers.push(() => makeCharacter(
  39817. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39818. {
  39819. front: {
  39820. height: math.unit(6, "feet"),
  39821. weight: math.unit(168, "lb"),
  39822. name: "Front",
  39823. image: {
  39824. source: "./media/characters/lisa/front.svg",
  39825. extra: 2065/1867,
  39826. bottom: 46/2111
  39827. }
  39828. },
  39829. back: {
  39830. height: math.unit(6, "feet"),
  39831. weight: math.unit(168, "lb"),
  39832. name: "Back",
  39833. image: {
  39834. source: "./media/characters/lisa/back.svg",
  39835. extra: 1982/1838,
  39836. bottom: 29/2011
  39837. }
  39838. },
  39839. maw: {
  39840. height: math.unit(0.81, "feet"),
  39841. name: "Maw",
  39842. image: {
  39843. source: "./media/characters/lisa/maw.svg"
  39844. }
  39845. },
  39846. paw: {
  39847. height: math.unit(0.9, "feet"),
  39848. name: "Paw",
  39849. image: {
  39850. source: "./media/characters/lisa/paw.svg"
  39851. }
  39852. },
  39853. caribousune: {
  39854. height: math.unit(7 + 2/12, "feet"),
  39855. weight: math.unit(268, "lb"),
  39856. name: "Caribousune",
  39857. image: {
  39858. source: "./media/characters/lisa/caribousune.svg",
  39859. extra: 1843/1633,
  39860. bottom: 29/1872
  39861. }
  39862. },
  39863. frontCaribousune: {
  39864. height: math.unit(7 + 2/12, "feet"),
  39865. weight: math.unit(268, "lb"),
  39866. name: "Front (Caribousune)",
  39867. image: {
  39868. source: "./media/characters/lisa/front-caribousune.svg",
  39869. extra: 1818/1638,
  39870. bottom: 52/1870
  39871. }
  39872. },
  39873. sideCaribousune: {
  39874. height: math.unit(7 + 2/12, "feet"),
  39875. weight: math.unit(268, "lb"),
  39876. name: "Side (Caribousune)",
  39877. image: {
  39878. source: "./media/characters/lisa/side-caribousune.svg",
  39879. extra: 1851/1635,
  39880. bottom: 16/1867
  39881. }
  39882. },
  39883. backCaribousune: {
  39884. height: math.unit(7 + 2/12, "feet"),
  39885. weight: math.unit(268, "lb"),
  39886. name: "Back (Caribousune)",
  39887. image: {
  39888. source: "./media/characters/lisa/back-caribousune.svg",
  39889. extra: 1801/1604,
  39890. bottom: 44/1845
  39891. }
  39892. },
  39893. caribou: {
  39894. height: math.unit(7 + 2/12, "feet"),
  39895. weight: math.unit(268, "lb"),
  39896. name: "Caribou",
  39897. image: {
  39898. source: "./media/characters/lisa/caribou.svg",
  39899. extra: 1843/1633,
  39900. bottom: 29/1872
  39901. }
  39902. },
  39903. frontCaribou: {
  39904. height: math.unit(7 + 2/12, "feet"),
  39905. weight: math.unit(268, "lb"),
  39906. name: "Front (Caribou)",
  39907. image: {
  39908. source: "./media/characters/lisa/front-caribou.svg",
  39909. extra: 1818/1638,
  39910. bottom: 52/1870
  39911. }
  39912. },
  39913. sideCaribou: {
  39914. height: math.unit(7 + 2/12, "feet"),
  39915. weight: math.unit(268, "lb"),
  39916. name: "Side (Caribou)",
  39917. image: {
  39918. source: "./media/characters/lisa/side-caribou.svg",
  39919. extra: 1851/1635,
  39920. bottom: 16/1867
  39921. }
  39922. },
  39923. backCaribou: {
  39924. height: math.unit(7 + 2/12, "feet"),
  39925. weight: math.unit(268, "lb"),
  39926. name: "Back (Caribou)",
  39927. image: {
  39928. source: "./media/characters/lisa/back-caribou.svg",
  39929. extra: 1801/1604,
  39930. bottom: 44/1845
  39931. }
  39932. },
  39933. mawCaribou: {
  39934. height: math.unit(1.45, "feet"),
  39935. name: "Maw (Caribou)",
  39936. image: {
  39937. source: "./media/characters/lisa/maw-caribou.svg"
  39938. }
  39939. },
  39940. mawCaribousune: {
  39941. height: math.unit(1.45, "feet"),
  39942. name: "Maw (Caribousune)",
  39943. image: {
  39944. source: "./media/characters/lisa/maw-caribousune.svg"
  39945. }
  39946. },
  39947. pawCaribousune: {
  39948. height: math.unit(1.61, "feet"),
  39949. name: "Paw (Caribou)",
  39950. image: {
  39951. source: "./media/characters/lisa/paw-caribousune.svg"
  39952. }
  39953. },
  39954. },
  39955. [
  39956. {
  39957. name: "Normal",
  39958. height: math.unit(6, "feet")
  39959. },
  39960. {
  39961. name: "God Size",
  39962. height: math.unit(72, "feet"),
  39963. default: true
  39964. },
  39965. {
  39966. name: "Towering",
  39967. height: math.unit(288, "feet")
  39968. },
  39969. {
  39970. name: "City Size",
  39971. height: math.unit(48384, "feet")
  39972. },
  39973. {
  39974. name: "Continental",
  39975. height: math.unit(4200, "miles")
  39976. },
  39977. {
  39978. name: "Planet Eater",
  39979. height: math.unit(42, "earths")
  39980. },
  39981. {
  39982. name: "Star Swallower",
  39983. height: math.unit(42, "solarradii")
  39984. },
  39985. {
  39986. name: "System Swallower",
  39987. height: math.unit(84000, "AU")
  39988. },
  39989. {
  39990. name: "Galaxy Gobbler",
  39991. height: math.unit(42, "galaxies")
  39992. },
  39993. {
  39994. name: "Universe Devourer",
  39995. height: math.unit(42, "universes")
  39996. },
  39997. {
  39998. name: "Multiverse Muncher",
  39999. height: math.unit(42, "multiverses")
  40000. },
  40001. ]
  40002. ))
  40003. characterMakers.push(() => makeCharacter(
  40004. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40005. {
  40006. front: {
  40007. height: math.unit(36, "feet"),
  40008. name: "Front",
  40009. image: {
  40010. source: "./media/characters/shadow-rat/front.svg",
  40011. extra: 1845/1758,
  40012. bottom: 83/1928
  40013. }
  40014. },
  40015. },
  40016. [
  40017. {
  40018. name: "Macro",
  40019. height: math.unit(36, "feet"),
  40020. default: true
  40021. },
  40022. ]
  40023. ))
  40024. characterMakers.push(() => makeCharacter(
  40025. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40026. {
  40027. side: {
  40028. height: math.unit(8, "feet"),
  40029. weight: math.unit(2630, "lb"),
  40030. name: "Side",
  40031. image: {
  40032. source: "./media/characters/torallia/side.svg",
  40033. extra: 2164/2021,
  40034. bottom: 371/2535
  40035. }
  40036. },
  40037. },
  40038. [
  40039. {
  40040. name: "Mortal Interaction",
  40041. height: math.unit(8, "feet")
  40042. },
  40043. {
  40044. name: "Natural",
  40045. height: math.unit(24, "feet"),
  40046. default: true
  40047. },
  40048. {
  40049. name: "Giant",
  40050. height: math.unit(80, "feet")
  40051. },
  40052. {
  40053. name: "Kaiju",
  40054. height: math.unit(240, "feet")
  40055. },
  40056. {
  40057. name: "Macro",
  40058. height: math.unit(800, "feet")
  40059. },
  40060. {
  40061. name: "Macro+",
  40062. height: math.unit(2400, "feet")
  40063. },
  40064. {
  40065. name: "Macro++",
  40066. height: math.unit(8000, "feet")
  40067. },
  40068. {
  40069. name: "City-Crushing",
  40070. height: math.unit(24000, "feet")
  40071. },
  40072. {
  40073. name: "Mountain-Mashing",
  40074. height: math.unit(80000, "feet")
  40075. },
  40076. {
  40077. name: "District Demolisher",
  40078. height: math.unit(240000, "feet")
  40079. },
  40080. {
  40081. name: "Tri-County Terror",
  40082. height: math.unit(800000, "feet")
  40083. },
  40084. {
  40085. name: "State Smasher",
  40086. height: math.unit(2.4e6, "feet")
  40087. },
  40088. {
  40089. name: "Nation Nemesis",
  40090. height: math.unit(8e6, "feet")
  40091. },
  40092. {
  40093. name: "Continent Cracker",
  40094. height: math.unit(2.4e7, "feet")
  40095. },
  40096. {
  40097. name: "Planet-Pillaging",
  40098. height: math.unit(8e7, "feet")
  40099. },
  40100. {
  40101. name: "Earth-Eclipsing",
  40102. height: math.unit(2.4e8, "feet")
  40103. },
  40104. {
  40105. name: "Jovian-Jostling",
  40106. height: math.unit(8e8, "feet")
  40107. },
  40108. {
  40109. name: "Gas Giant Gulper",
  40110. height: math.unit(2.4e9, "feet")
  40111. },
  40112. {
  40113. name: "Astral Annihilator",
  40114. height: math.unit(8e9, "feet")
  40115. },
  40116. {
  40117. name: "Celestial Conqueror",
  40118. height: math.unit(2.4e10, "feet")
  40119. },
  40120. {
  40121. name: "Sol-Swallowing",
  40122. height: math.unit(8e10, "feet")
  40123. },
  40124. {
  40125. name: "Hunter of the Heavens",
  40126. height: math.unit(2.4e13, "feet")
  40127. },
  40128. ]
  40129. ))
  40130. characterMakers.push(() => makeCharacter(
  40131. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40132. {
  40133. front: {
  40134. height: math.unit(6 + 8/12, "feet"),
  40135. weight: math.unit(250, "kilograms"),
  40136. volume: math.unit(28, "liters"),
  40137. name: "Front",
  40138. image: {
  40139. source: "./media/characters/rebecca-pawlson/front.svg",
  40140. extra: 1737/1596,
  40141. bottom: 107/1844
  40142. }
  40143. },
  40144. back: {
  40145. height: math.unit(6 + 8/12, "feet"),
  40146. weight: math.unit(250, "kilograms"),
  40147. volume: math.unit(28, "liters"),
  40148. name: "Back",
  40149. image: {
  40150. source: "./media/characters/rebecca-pawlson/back.svg",
  40151. extra: 1702/1523,
  40152. bottom: 86/1788
  40153. }
  40154. },
  40155. },
  40156. [
  40157. {
  40158. name: "Normal",
  40159. height: math.unit(6 + 8/12, "feet")
  40160. },
  40161. {
  40162. name: "Mini Macro",
  40163. height: math.unit(10, "feet"),
  40164. default: true
  40165. },
  40166. {
  40167. name: "Macro",
  40168. height: math.unit(100, "feet")
  40169. },
  40170. {
  40171. name: "Mega Macro",
  40172. height: math.unit(2500, "feet")
  40173. },
  40174. {
  40175. name: "Giga Macro",
  40176. height: math.unit(50, "miles")
  40177. },
  40178. ]
  40179. ))
  40180. characterMakers.push(() => makeCharacter(
  40181. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40182. {
  40183. front: {
  40184. height: math.unit(7 + 6/12, "feet"),
  40185. weight: math.unit(600, "lb"),
  40186. name: "Front",
  40187. image: {
  40188. source: "./media/characters/moxie-nova/front.svg",
  40189. extra: 1734/1652,
  40190. bottom: 41/1775
  40191. }
  40192. },
  40193. },
  40194. [
  40195. {
  40196. name: "Normal",
  40197. height: math.unit(7 + 6/12, "feet"),
  40198. default: true
  40199. },
  40200. ]
  40201. ))
  40202. characterMakers.push(() => makeCharacter(
  40203. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40204. {
  40205. goat: {
  40206. height: math.unit(4, "feet"),
  40207. weight: math.unit(180, "lb"),
  40208. name: "Goat",
  40209. image: {
  40210. source: "./media/characters/tiffany/goat.svg",
  40211. extra: 1845/1595,
  40212. bottom: 106/1951
  40213. }
  40214. },
  40215. front: {
  40216. height: math.unit(5, "feet"),
  40217. weight: math.unit(150, "lb"),
  40218. name: "Foxcoon",
  40219. image: {
  40220. source: "./media/characters/tiffany/foxcoon.svg",
  40221. extra: 1941/1845,
  40222. bottom: 58/1999
  40223. }
  40224. },
  40225. },
  40226. [
  40227. {
  40228. name: "Normal",
  40229. height: math.unit(5, "feet"),
  40230. default: true
  40231. },
  40232. ]
  40233. ))
  40234. characterMakers.push(() => makeCharacter(
  40235. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40236. {
  40237. front: {
  40238. height: math.unit(8, "feet"),
  40239. weight: math.unit(300, "lb"),
  40240. name: "Front",
  40241. image: {
  40242. source: "./media/characters/raxinath/front.svg",
  40243. extra: 1407/1309,
  40244. bottom: 39/1446
  40245. }
  40246. },
  40247. back: {
  40248. height: math.unit(8, "feet"),
  40249. weight: math.unit(300, "lb"),
  40250. name: "Back",
  40251. image: {
  40252. source: "./media/characters/raxinath/back.svg",
  40253. extra: 1405/1315,
  40254. bottom: 9/1414
  40255. }
  40256. },
  40257. },
  40258. [
  40259. {
  40260. name: "Speck",
  40261. height: math.unit(0.5, "nm")
  40262. },
  40263. {
  40264. name: "Micro",
  40265. height: math.unit(3, "inches")
  40266. },
  40267. {
  40268. name: "Kobold",
  40269. height: math.unit(3, "feet")
  40270. },
  40271. {
  40272. name: "Normal",
  40273. height: math.unit(8, "feet"),
  40274. default: true
  40275. },
  40276. {
  40277. name: "Giant",
  40278. height: math.unit(50, "feet")
  40279. },
  40280. {
  40281. name: "Macro",
  40282. height: math.unit(1000, "feet")
  40283. },
  40284. {
  40285. name: "Megamacro",
  40286. height: math.unit(1, "mile")
  40287. },
  40288. ]
  40289. ))
  40290. characterMakers.push(() => makeCharacter(
  40291. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40292. {
  40293. front: {
  40294. height: math.unit(10, "feet"),
  40295. weight: math.unit(1442, "lb"),
  40296. name: "Front",
  40297. image: {
  40298. source: "./media/characters/mal-dragon/front.svg",
  40299. extra: 1515/1444,
  40300. bottom: 113/1628
  40301. }
  40302. },
  40303. back: {
  40304. height: math.unit(10, "feet"),
  40305. weight: math.unit(1442, "lb"),
  40306. name: "Back",
  40307. image: {
  40308. source: "./media/characters/mal-dragon/back.svg",
  40309. extra: 1527/1434,
  40310. bottom: 25/1552
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Mortal Interaction",
  40317. height: math.unit(10, "feet"),
  40318. default: true
  40319. },
  40320. {
  40321. name: "Large",
  40322. height: math.unit(30, "feet")
  40323. },
  40324. {
  40325. name: "Kaiju",
  40326. height: math.unit(300, "feet")
  40327. },
  40328. {
  40329. name: "Megamacro",
  40330. height: math.unit(10000, "feet")
  40331. },
  40332. {
  40333. name: "Continent Cracker",
  40334. height: math.unit(30000000, "feet")
  40335. },
  40336. {
  40337. name: "Sol-Swallowing",
  40338. height: math.unit(1e11, "feet")
  40339. },
  40340. {
  40341. name: "Light Universal",
  40342. height: math.unit(5, "universes")
  40343. },
  40344. {
  40345. name: "Universe Atoms",
  40346. height: math.unit(1.829e9, "universes")
  40347. },
  40348. {
  40349. name: "Light Multiversal",
  40350. height: math.unit(5, "multiverses")
  40351. },
  40352. {
  40353. name: "Multiverse Atoms",
  40354. height: math.unit(1.829e9, "multiverses")
  40355. },
  40356. {
  40357. name: "Fabric of Time",
  40358. height: math.unit(1e262, "multiverses")
  40359. },
  40360. ]
  40361. ))
  40362. characterMakers.push(() => makeCharacter(
  40363. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40364. {
  40365. front: {
  40366. height: math.unit(9, "feet"),
  40367. weight: math.unit(1050, "lb"),
  40368. name: "Front",
  40369. image: {
  40370. source: "./media/characters/tabitha/front.svg",
  40371. extra: 2083/1994,
  40372. bottom: 68/2151
  40373. }
  40374. },
  40375. },
  40376. [
  40377. {
  40378. name: "Baseline",
  40379. height: math.unit(9, "feet"),
  40380. default: true
  40381. },
  40382. {
  40383. name: "Giant",
  40384. height: math.unit(90, "feet")
  40385. },
  40386. {
  40387. name: "Macro",
  40388. height: math.unit(900, "feet")
  40389. },
  40390. {
  40391. name: "Megamacro",
  40392. height: math.unit(9000, "feet")
  40393. },
  40394. {
  40395. name: "City-Crushing",
  40396. height: math.unit(27000, "feet")
  40397. },
  40398. {
  40399. name: "Mountain-Mashing",
  40400. height: math.unit(90000, "feet")
  40401. },
  40402. {
  40403. name: "Nation Nemesis",
  40404. height: math.unit(9e6, "feet")
  40405. },
  40406. {
  40407. name: "Continent Cracker",
  40408. height: math.unit(27e6, "feet")
  40409. },
  40410. {
  40411. name: "Earth-Eclipsing",
  40412. height: math.unit(2.7e8, "feet")
  40413. },
  40414. {
  40415. name: "Gas Giant Gulper",
  40416. height: math.unit(2.7e9, "feet")
  40417. },
  40418. {
  40419. name: "Sol-Swallowing",
  40420. height: math.unit(9e10, "feet")
  40421. },
  40422. {
  40423. name: "Galaxy Gulper",
  40424. height: math.unit(9, "galaxies")
  40425. },
  40426. {
  40427. name: "Cosmos Churner",
  40428. height: math.unit(9, "universes")
  40429. },
  40430. ]
  40431. ))
  40432. characterMakers.push(() => makeCharacter(
  40433. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40434. {
  40435. front: {
  40436. height: math.unit(160, "cm"),
  40437. weight: math.unit(55, "kg"),
  40438. name: "Front",
  40439. image: {
  40440. source: "./media/characters/tow/front.svg",
  40441. extra: 1751/1722,
  40442. bottom: 74/1825
  40443. }
  40444. },
  40445. },
  40446. [
  40447. {
  40448. name: "Norm",
  40449. height: math.unit(160, "cm")
  40450. },
  40451. {
  40452. name: "Casual",
  40453. height: math.unit(3200, "m"),
  40454. default: true
  40455. },
  40456. {
  40457. name: "Show-Off",
  40458. height: math.unit(160, "km")
  40459. },
  40460. ]
  40461. ))
  40462. characterMakers.push(() => makeCharacter(
  40463. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40464. {
  40465. front: {
  40466. height: math.unit(7 + 11/12, "feet"),
  40467. weight: math.unit(342.8, "lb"),
  40468. name: "Front",
  40469. image: {
  40470. source: "./media/characters/vivian-orca-dragon/front.svg",
  40471. extra: 1890/1865,
  40472. bottom: 28/1918
  40473. }
  40474. },
  40475. },
  40476. [
  40477. {
  40478. name: "Micro",
  40479. height: math.unit(5, "inches")
  40480. },
  40481. {
  40482. name: "Normal",
  40483. height: math.unit(7 + 11/12, "feet"),
  40484. default: true
  40485. },
  40486. {
  40487. name: "Macro",
  40488. height: math.unit(395 + 7/12, "feet")
  40489. },
  40490. ]
  40491. ))
  40492. characterMakers.push(() => makeCharacter(
  40493. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40494. {
  40495. side: {
  40496. height: math.unit(10, "feet"),
  40497. weight: math.unit(1442, "lb"),
  40498. name: "Side",
  40499. image: {
  40500. source: "./media/characters/lotherakon/side.svg",
  40501. extra: 1604/1497,
  40502. bottom: 89/1693
  40503. }
  40504. },
  40505. },
  40506. [
  40507. {
  40508. name: "Mortal Interaction",
  40509. height: math.unit(10, "feet")
  40510. },
  40511. {
  40512. name: "Large",
  40513. height: math.unit(30, "feet"),
  40514. default: true
  40515. },
  40516. {
  40517. name: "Giant",
  40518. height: math.unit(100, "feet")
  40519. },
  40520. {
  40521. name: "Kaiju",
  40522. height: math.unit(300, "feet")
  40523. },
  40524. {
  40525. name: "Macro",
  40526. height: math.unit(1000, "feet")
  40527. },
  40528. {
  40529. name: "Macro+",
  40530. height: math.unit(3000, "feet")
  40531. },
  40532. {
  40533. name: "Megamacro",
  40534. height: math.unit(10000, "feet")
  40535. },
  40536. {
  40537. name: "City-Crushing",
  40538. height: math.unit(30000, "feet")
  40539. },
  40540. {
  40541. name: "Continent Cracker",
  40542. height: math.unit(30e6, "feet")
  40543. },
  40544. {
  40545. name: "Earth Eclipsing",
  40546. height: math.unit(3e8, "feet")
  40547. },
  40548. {
  40549. name: "Gas Giant Gulper",
  40550. height: math.unit(3e9, "feet")
  40551. },
  40552. {
  40553. name: "Sol-Swallowing",
  40554. height: math.unit(1e11, "feet")
  40555. },
  40556. {
  40557. name: "System Swallower",
  40558. height: math.unit(3e14, "feet")
  40559. },
  40560. {
  40561. name: "Galaxy Gulper",
  40562. height: math.unit(10, "galaxies")
  40563. },
  40564. {
  40565. name: "Light Universal",
  40566. height: math.unit(5, "universes")
  40567. },
  40568. {
  40569. name: "Universe Palm",
  40570. height: math.unit(20, "universes")
  40571. },
  40572. {
  40573. name: "Light Multiversal",
  40574. height: math.unit(5, "multiverses")
  40575. },
  40576. {
  40577. name: "Multiverse Palm",
  40578. height: math.unit(20, "multiverses")
  40579. },
  40580. {
  40581. name: "Inferno Incarnate",
  40582. height: math.unit(1e7, "multiverses")
  40583. },
  40584. ]
  40585. ))
  40586. characterMakers.push(() => makeCharacter(
  40587. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40588. {
  40589. front: {
  40590. height: math.unit(8, "feet"),
  40591. weight: math.unit(1200, "lb"),
  40592. name: "Front",
  40593. image: {
  40594. source: "./media/characters/malithee/front.svg",
  40595. extra: 1675/1640,
  40596. bottom: 162/1837
  40597. }
  40598. },
  40599. },
  40600. [
  40601. {
  40602. name: "Mortal Interaction",
  40603. height: math.unit(8, "feet"),
  40604. default: true
  40605. },
  40606. {
  40607. name: "Large",
  40608. height: math.unit(24, "feet")
  40609. },
  40610. {
  40611. name: "Kaiju",
  40612. height: math.unit(240, "feet")
  40613. },
  40614. {
  40615. name: "Megamacro",
  40616. height: math.unit(8000, "feet")
  40617. },
  40618. {
  40619. name: "Continent Cracker",
  40620. height: math.unit(24e6, "feet")
  40621. },
  40622. {
  40623. name: "Earth-Eclipsing",
  40624. height: math.unit(2.4e8, "feet")
  40625. },
  40626. {
  40627. name: "Sol-Swallowing",
  40628. height: math.unit(8e10, "feet")
  40629. },
  40630. {
  40631. name: "Galaxy Gulper",
  40632. height: math.unit(8, "galaxies")
  40633. },
  40634. {
  40635. name: "Light Universal",
  40636. height: math.unit(4, "universes")
  40637. },
  40638. {
  40639. name: "Universe Atoms",
  40640. height: math.unit(1.829e9, "universes")
  40641. },
  40642. {
  40643. name: "Light Multiversal",
  40644. height: math.unit(4, "multiverses")
  40645. },
  40646. {
  40647. name: "Multiverse Atoms",
  40648. height: math.unit(1.829e9, "multiverses")
  40649. },
  40650. {
  40651. name: "Nigh-Omnipresence",
  40652. height: math.unit(8e261, "multiverses")
  40653. },
  40654. ]
  40655. ))
  40656. characterMakers.push(() => makeCharacter(
  40657. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40658. {
  40659. front: {
  40660. height: math.unit(10, "feet"),
  40661. weight: math.unit(1500, "lb"),
  40662. name: "Front",
  40663. image: {
  40664. source: "./media/characters/miles-thestia/front.svg",
  40665. extra: 1812/1727,
  40666. bottom: 86/1898
  40667. }
  40668. },
  40669. back: {
  40670. height: math.unit(10, "feet"),
  40671. weight: math.unit(1500, "lb"),
  40672. name: "Back",
  40673. image: {
  40674. source: "./media/characters/miles-thestia/back.svg",
  40675. extra: 1799/1690,
  40676. bottom: 47/1846
  40677. }
  40678. },
  40679. frontNsfw: {
  40680. height: math.unit(10, "feet"),
  40681. weight: math.unit(1500, "lb"),
  40682. name: "Front (NSFW)",
  40683. image: {
  40684. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40685. extra: 1812/1727,
  40686. bottom: 86/1898
  40687. }
  40688. },
  40689. },
  40690. [
  40691. {
  40692. name: "Mini-Macro",
  40693. height: math.unit(10, "feet"),
  40694. default: true
  40695. },
  40696. ]
  40697. ))
  40698. characterMakers.push(() => makeCharacter(
  40699. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40700. {
  40701. front: {
  40702. height: math.unit(25, "feet"),
  40703. name: "Front",
  40704. image: {
  40705. source: "./media/characters/titan-s-wulf/front.svg",
  40706. extra: 1560/1484,
  40707. bottom: 76/1636
  40708. }
  40709. },
  40710. },
  40711. [
  40712. {
  40713. name: "Smallest",
  40714. height: math.unit(25, "feet"),
  40715. default: true
  40716. },
  40717. {
  40718. name: "Normal",
  40719. height: math.unit(200, "feet")
  40720. },
  40721. {
  40722. name: "Macro",
  40723. height: math.unit(200000, "feet")
  40724. },
  40725. {
  40726. name: "Multiversal Original",
  40727. height: math.unit(10000, "multiverses")
  40728. },
  40729. ]
  40730. ))
  40731. characterMakers.push(() => makeCharacter(
  40732. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40733. {
  40734. front: {
  40735. height: math.unit(8, "feet"),
  40736. weight: math.unit(553, "lb"),
  40737. name: "Front",
  40738. image: {
  40739. source: "./media/characters/tawendeh/front.svg",
  40740. extra: 2365/2268,
  40741. bottom: 83/2448
  40742. }
  40743. },
  40744. frontClothed: {
  40745. height: math.unit(8, "feet"),
  40746. weight: math.unit(553, "lb"),
  40747. name: "Front (Clothed)",
  40748. image: {
  40749. source: "./media/characters/tawendeh/front-clothed.svg",
  40750. extra: 2365/2268,
  40751. bottom: 83/2448
  40752. }
  40753. },
  40754. back: {
  40755. height: math.unit(8, "feet"),
  40756. weight: math.unit(553, "lb"),
  40757. name: "Back",
  40758. image: {
  40759. source: "./media/characters/tawendeh/back.svg",
  40760. extra: 2397/2294,
  40761. bottom: 42/2439
  40762. }
  40763. },
  40764. },
  40765. [
  40766. {
  40767. name: "Mortal Interaction",
  40768. height: math.unit(8, "feet"),
  40769. default: true
  40770. },
  40771. {
  40772. name: "Giant",
  40773. height: math.unit(80, "feet")
  40774. },
  40775. {
  40776. name: "Macro",
  40777. height: math.unit(800, "feet")
  40778. },
  40779. {
  40780. name: "Megamacro",
  40781. height: math.unit(8000, "feet")
  40782. },
  40783. {
  40784. name: "City-Crushing",
  40785. height: math.unit(24000, "feet")
  40786. },
  40787. {
  40788. name: "Mountain-Mashing",
  40789. height: math.unit(80000, "feet")
  40790. },
  40791. {
  40792. name: "Nation Nemesis",
  40793. height: math.unit(8e6, "feet")
  40794. },
  40795. {
  40796. name: "Continent Cracker",
  40797. height: math.unit(24e6, "feet")
  40798. },
  40799. {
  40800. name: "Earth-Eclipsing",
  40801. height: math.unit(2.4e8, "feet")
  40802. },
  40803. {
  40804. name: "Gas Giant Gulper",
  40805. height: math.unit(2.4e9, "feet")
  40806. },
  40807. {
  40808. name: "Sol-Swallowing",
  40809. height: math.unit(8e10, "feet")
  40810. },
  40811. {
  40812. name: "Galaxy Gulper",
  40813. height: math.unit(8, "galaxies")
  40814. },
  40815. {
  40816. name: "Cosmos Churner",
  40817. height: math.unit(8, "universes")
  40818. },
  40819. {
  40820. name: "Omnipotent Otter",
  40821. height: math.unit(80, "universes")
  40822. },
  40823. ]
  40824. ))
  40825. characterMakers.push(() => makeCharacter(
  40826. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40827. {
  40828. front: {
  40829. height: math.unit(2.6, "meters"),
  40830. weight: math.unit(900, "kg"),
  40831. name: "Front",
  40832. image: {
  40833. source: "./media/characters/neesha/front.svg",
  40834. extra: 1803/1653,
  40835. bottom: 128/1931
  40836. }
  40837. },
  40838. },
  40839. [
  40840. {
  40841. name: "Normal",
  40842. height: math.unit(2.6, "meters"),
  40843. default: true
  40844. },
  40845. {
  40846. name: "Macro",
  40847. height: math.unit(50, "meters")
  40848. },
  40849. ]
  40850. ))
  40851. characterMakers.push(() => makeCharacter(
  40852. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40853. {
  40854. front: {
  40855. height: math.unit(5, "feet"),
  40856. weight: math.unit(185, "lb"),
  40857. name: "Front",
  40858. image: {
  40859. source: "./media/characters/kyera/front.svg",
  40860. extra: 1875/1790,
  40861. bottom: 96/1971
  40862. }
  40863. },
  40864. },
  40865. [
  40866. {
  40867. name: "Normal",
  40868. height: math.unit(5, "feet"),
  40869. default: true
  40870. },
  40871. ]
  40872. ))
  40873. characterMakers.push(() => makeCharacter(
  40874. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40875. {
  40876. front: {
  40877. height: math.unit(7 + 6/12, "feet"),
  40878. weight: math.unit(540, "lb"),
  40879. name: "Front",
  40880. image: {
  40881. source: "./media/characters/yuko/front.svg",
  40882. extra: 1282/1222,
  40883. bottom: 101/1383
  40884. }
  40885. },
  40886. frontClothed: {
  40887. height: math.unit(7 + 6/12, "feet"),
  40888. weight: math.unit(540, "lb"),
  40889. name: "Front (Clothed)",
  40890. image: {
  40891. source: "./media/characters/yuko/front-clothed.svg",
  40892. extra: 1282/1222,
  40893. bottom: 101/1383
  40894. }
  40895. },
  40896. },
  40897. [
  40898. {
  40899. name: "Normal",
  40900. height: math.unit(7 + 6/12, "feet"),
  40901. default: true
  40902. },
  40903. {
  40904. name: "Macro",
  40905. height: math.unit(26 + 9/12, "feet")
  40906. },
  40907. {
  40908. name: "Megamacro",
  40909. height: math.unit(300, "feet")
  40910. },
  40911. {
  40912. name: "Gigamacro",
  40913. height: math.unit(5000, "feet")
  40914. },
  40915. {
  40916. name: "Planetary",
  40917. height: math.unit(10000, "miles")
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40923. {
  40924. front: {
  40925. height: math.unit(8 + 2/12, "feet"),
  40926. weight: math.unit(600, "lb"),
  40927. name: "Front",
  40928. image: {
  40929. source: "./media/characters/deam-nitrel/front.svg",
  40930. extra: 1308/1234,
  40931. bottom: 125/1433
  40932. }
  40933. },
  40934. },
  40935. [
  40936. {
  40937. name: "Normal",
  40938. height: math.unit(8 + 2/12, "feet"),
  40939. default: true
  40940. },
  40941. ]
  40942. ))
  40943. characterMakers.push(() => makeCharacter(
  40944. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40945. {
  40946. front: {
  40947. height: math.unit(6.1, "feet"),
  40948. weight: math.unit(180, "lb"),
  40949. name: "Front",
  40950. image: {
  40951. source: "./media/characters/skyress/front.svg",
  40952. extra: 1045/915,
  40953. bottom: 28/1073
  40954. }
  40955. },
  40956. maw: {
  40957. height: math.unit(1, "feet"),
  40958. name: "Maw",
  40959. image: {
  40960. source: "./media/characters/skyress/maw.svg"
  40961. }
  40962. },
  40963. },
  40964. [
  40965. {
  40966. name: "Normal",
  40967. height: math.unit(6.1, "feet"),
  40968. default: true
  40969. },
  40970. {
  40971. name: "Macro",
  40972. height: math.unit(200, "feet")
  40973. },
  40974. ]
  40975. ))
  40976. characterMakers.push(() => makeCharacter(
  40977. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40978. {
  40979. front: {
  40980. height: math.unit(4 + 2/12, "feet"),
  40981. weight: math.unit(40, "kg"),
  40982. name: "Front",
  40983. image: {
  40984. source: "./media/characters/amethyst-jones/front.svg",
  40985. extra: 1220/1150,
  40986. bottom: 101/1321
  40987. }
  40988. },
  40989. },
  40990. [
  40991. {
  40992. name: "Normal",
  40993. height: math.unit(4 + 2/12, "feet"),
  40994. default: true
  40995. },
  40996. ]
  40997. ))
  40998. characterMakers.push(() => makeCharacter(
  40999. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41000. {
  41001. front: {
  41002. height: math.unit(1.7, "m"),
  41003. weight: math.unit(135, "lb"),
  41004. name: "Front",
  41005. image: {
  41006. source: "./media/characters/jade/front.svg",
  41007. extra: 1818/1767,
  41008. bottom: 32/1850
  41009. }
  41010. },
  41011. back: {
  41012. height: math.unit(1.7, "m"),
  41013. weight: math.unit(135, "lb"),
  41014. name: "Back",
  41015. image: {
  41016. source: "./media/characters/jade/back.svg",
  41017. extra: 1869/1809,
  41018. bottom: 35/1904
  41019. }
  41020. },
  41021. hand: {
  41022. height: math.unit(0.24, "m"),
  41023. name: "Hand",
  41024. image: {
  41025. source: "./media/characters/jade/hand.svg"
  41026. }
  41027. },
  41028. foot: {
  41029. height: math.unit(0.263, "m"),
  41030. name: "Foot",
  41031. image: {
  41032. source: "./media/characters/jade/foot.svg"
  41033. }
  41034. },
  41035. dick: {
  41036. height: math.unit(0.47, "m"),
  41037. name: "Dick",
  41038. image: {
  41039. source: "./media/characters/jade/dick.svg"
  41040. }
  41041. },
  41042. },
  41043. [
  41044. {
  41045. name: "Micro",
  41046. height: math.unit(22, "cm")
  41047. },
  41048. {
  41049. name: "Normal",
  41050. height: math.unit(1.7, "m"),
  41051. default: true
  41052. },
  41053. {
  41054. name: "Macro",
  41055. height: math.unit(152, "m")
  41056. },
  41057. ]
  41058. ))
  41059. characterMakers.push(() => makeCharacter(
  41060. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41061. {
  41062. front: {
  41063. height: math.unit(100, "miles"),
  41064. weight: math.unit(20000, "tons"),
  41065. name: "Front",
  41066. image: {
  41067. source: "./media/characters/cookie/front.svg",
  41068. extra: 1125/1070,
  41069. bottom: 30/1155
  41070. }
  41071. },
  41072. },
  41073. [
  41074. {
  41075. name: "Big",
  41076. height: math.unit(50, "feet")
  41077. },
  41078. {
  41079. name: "Macro",
  41080. height: math.unit(100, "miles"),
  41081. default: true
  41082. },
  41083. {
  41084. name: "Megamacro",
  41085. height: math.unit(90000, "miles")
  41086. },
  41087. ]
  41088. ))
  41089. characterMakers.push(() => makeCharacter(
  41090. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41091. {
  41092. front: {
  41093. height: math.unit(6, "feet"),
  41094. weight: math.unit(145, "lb"),
  41095. name: "Front",
  41096. image: {
  41097. source: "./media/characters/farzian/front.svg",
  41098. extra: 1902/1693,
  41099. bottom: 108/2010
  41100. }
  41101. },
  41102. },
  41103. [
  41104. {
  41105. name: "Macro",
  41106. height: math.unit(500, "feet"),
  41107. default: true
  41108. },
  41109. ]
  41110. ))
  41111. characterMakers.push(() => makeCharacter(
  41112. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41113. {
  41114. front: {
  41115. height: math.unit(3 + 6/12, "feet"),
  41116. weight: math.unit(50, "lb"),
  41117. name: "Front",
  41118. image: {
  41119. source: "./media/characters/kimberly-tilson/front.svg",
  41120. extra: 1400/1322,
  41121. bottom: 36/1436
  41122. }
  41123. },
  41124. back: {
  41125. height: math.unit(3 + 6/12, "feet"),
  41126. weight: math.unit(50, "lb"),
  41127. name: "Back",
  41128. image: {
  41129. source: "./media/characters/kimberly-tilson/back.svg",
  41130. extra: 1370/1307,
  41131. bottom: 20/1390
  41132. }
  41133. },
  41134. },
  41135. [
  41136. {
  41137. name: "Normal",
  41138. height: math.unit(3 + 6/12, "feet"),
  41139. default: true
  41140. },
  41141. ]
  41142. ))
  41143. characterMakers.push(() => makeCharacter(
  41144. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41145. {
  41146. front: {
  41147. height: math.unit(1148, "feet"),
  41148. weight: math.unit(34057, "lb"),
  41149. name: "Front",
  41150. image: {
  41151. source: "./media/characters/harthos/front.svg",
  41152. extra: 1391/1339,
  41153. bottom: 13/1404
  41154. }
  41155. },
  41156. },
  41157. [
  41158. {
  41159. name: "Macro",
  41160. height: math.unit(1148, "feet"),
  41161. default: true
  41162. },
  41163. ]
  41164. ))
  41165. characterMakers.push(() => makeCharacter(
  41166. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41167. {
  41168. front: {
  41169. height: math.unit(15, "feet"),
  41170. name: "Front",
  41171. image: {
  41172. source: "./media/characters/hypatia/front.svg",
  41173. extra: 1653/1591,
  41174. bottom: 79/1732
  41175. }
  41176. },
  41177. },
  41178. [
  41179. {
  41180. name: "Normal",
  41181. height: math.unit(15, "feet")
  41182. },
  41183. {
  41184. name: "Small",
  41185. height: math.unit(300, "feet")
  41186. },
  41187. {
  41188. name: "Macro",
  41189. height: math.unit(2500, "feet"),
  41190. default: true
  41191. },
  41192. {
  41193. name: "Mega Macro",
  41194. height: math.unit(1500, "miles")
  41195. },
  41196. {
  41197. name: "Giga Macro",
  41198. height: math.unit(1.5e6, "miles")
  41199. },
  41200. ]
  41201. ))
  41202. characterMakers.push(() => makeCharacter(
  41203. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41204. {
  41205. front: {
  41206. height: math.unit(6, "feet"),
  41207. weight: math.unit(200, "lb"),
  41208. name: "Front",
  41209. image: {
  41210. source: "./media/characters/wulver/front.svg",
  41211. extra: 1724/1632,
  41212. bottom: 130/1854
  41213. }
  41214. },
  41215. frontNsfw: {
  41216. height: math.unit(6, "feet"),
  41217. weight: math.unit(200, "lb"),
  41218. name: "Front (NSFW)",
  41219. image: {
  41220. source: "./media/characters/wulver/front-nsfw.svg",
  41221. extra: 1724/1632,
  41222. bottom: 130/1854
  41223. }
  41224. },
  41225. },
  41226. [
  41227. {
  41228. name: "Human-Sized",
  41229. height: math.unit(6, "feet")
  41230. },
  41231. {
  41232. name: "Normal",
  41233. height: math.unit(4, "meters"),
  41234. default: true
  41235. },
  41236. {
  41237. name: "Large",
  41238. height: math.unit(6, "m")
  41239. },
  41240. ]
  41241. ))
  41242. characterMakers.push(() => makeCharacter(
  41243. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41244. {
  41245. front: {
  41246. height: math.unit(7, "feet"),
  41247. name: "Front",
  41248. image: {
  41249. source: "./media/characters/maru/front.svg",
  41250. extra: 1595/1570,
  41251. bottom: 0/1595
  41252. }
  41253. },
  41254. },
  41255. [
  41256. {
  41257. name: "Normal",
  41258. height: math.unit(7, "feet"),
  41259. default: true
  41260. },
  41261. {
  41262. name: "Macro",
  41263. height: math.unit(700, "feet")
  41264. },
  41265. {
  41266. name: "Mega Macro",
  41267. height: math.unit(25, "miles")
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41273. {
  41274. front: {
  41275. height: math.unit(6, "feet"),
  41276. weight: math.unit(170, "lb"),
  41277. name: "Front",
  41278. image: {
  41279. source: "./media/characters/xenon/front.svg",
  41280. extra: 1376/1305,
  41281. bottom: 56/1432
  41282. }
  41283. },
  41284. back: {
  41285. height: math.unit(6, "feet"),
  41286. weight: math.unit(170, "lb"),
  41287. name: "Back",
  41288. image: {
  41289. source: "./media/characters/xenon/back.svg",
  41290. extra: 1328/1259,
  41291. bottom: 95/1423
  41292. }
  41293. },
  41294. maw: {
  41295. height: math.unit(0.52, "feet"),
  41296. name: "Maw",
  41297. image: {
  41298. source: "./media/characters/xenon/maw.svg"
  41299. }
  41300. },
  41301. hand: {
  41302. height: math.unit(0.82, "feet"),
  41303. name: "Hand",
  41304. image: {
  41305. source: "./media/characters/xenon/hand.svg"
  41306. }
  41307. },
  41308. foot: {
  41309. height: math.unit(1.13, "feet"),
  41310. name: "Foot",
  41311. image: {
  41312. source: "./media/characters/xenon/foot.svg"
  41313. }
  41314. },
  41315. },
  41316. [
  41317. {
  41318. name: "Micro",
  41319. height: math.unit(0.8, "inches")
  41320. },
  41321. {
  41322. name: "Normal",
  41323. height: math.unit(6, "feet")
  41324. },
  41325. {
  41326. name: "Macro",
  41327. height: math.unit(50, "feet"),
  41328. default: true
  41329. },
  41330. {
  41331. name: "Macro+",
  41332. height: math.unit(250, "feet")
  41333. },
  41334. {
  41335. name: "Megamacro",
  41336. height: math.unit(1500, "feet")
  41337. },
  41338. ]
  41339. ))
  41340. characterMakers.push(() => makeCharacter(
  41341. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41342. {
  41343. front: {
  41344. height: math.unit(7 + 5/12, "feet"),
  41345. name: "Front",
  41346. image: {
  41347. source: "./media/characters/zane/front.svg",
  41348. extra: 1260/1203,
  41349. bottom: 94/1354
  41350. }
  41351. },
  41352. back: {
  41353. height: math.unit(5.05, "feet"),
  41354. name: "Back",
  41355. image: {
  41356. source: "./media/characters/zane/back.svg",
  41357. extra: 893/829,
  41358. bottom: 30/923
  41359. }
  41360. },
  41361. werewolf: {
  41362. height: math.unit(11, "feet"),
  41363. name: "Werewolf",
  41364. image: {
  41365. source: "./media/characters/zane/werewolf.svg",
  41366. extra: 1383/1323,
  41367. bottom: 89/1472
  41368. }
  41369. },
  41370. foot: {
  41371. height: math.unit(1.46, "feet"),
  41372. name: "Foot",
  41373. image: {
  41374. source: "./media/characters/zane/foot.svg"
  41375. }
  41376. },
  41377. footFront: {
  41378. height: math.unit(0.784, "feet"),
  41379. name: "Foot (Front)",
  41380. image: {
  41381. source: "./media/characters/zane/foot-front.svg"
  41382. }
  41383. },
  41384. dick: {
  41385. height: math.unit(1.95, "feet"),
  41386. name: "Dick",
  41387. image: {
  41388. source: "./media/characters/zane/dick.svg"
  41389. }
  41390. },
  41391. dickWerewolf: {
  41392. height: math.unit(3.77, "feet"),
  41393. name: "Dick (Werewolf)",
  41394. image: {
  41395. source: "./media/characters/zane/dick.svg"
  41396. }
  41397. },
  41398. },
  41399. [
  41400. {
  41401. name: "Normal",
  41402. height: math.unit(7 + 5/12, "feet"),
  41403. default: true
  41404. },
  41405. ]
  41406. ))
  41407. characterMakers.push(() => makeCharacter(
  41408. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41409. {
  41410. front: {
  41411. height: math.unit(6 + 2/12, "feet"),
  41412. weight: math.unit(284, "lb"),
  41413. name: "Front",
  41414. image: {
  41415. source: "./media/characters/benni-desparque/front.svg",
  41416. extra: 1353/1126,
  41417. bottom: 69/1422
  41418. }
  41419. },
  41420. },
  41421. [
  41422. {
  41423. name: "Civilian",
  41424. height: math.unit(6 + 2/12, "feet")
  41425. },
  41426. {
  41427. name: "Normal",
  41428. height: math.unit(98, "feet"),
  41429. default: true
  41430. },
  41431. {
  41432. name: "Kaiju Fighter",
  41433. height: math.unit(268, "feet")
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41439. {
  41440. front: {
  41441. height: math.unit(5, "feet"),
  41442. weight: math.unit(105, "lb"),
  41443. name: "Front",
  41444. image: {
  41445. source: "./media/characters/maxine/front.svg",
  41446. extra: 1386/1250,
  41447. bottom: 71/1457
  41448. }
  41449. },
  41450. },
  41451. [
  41452. {
  41453. name: "Normal",
  41454. height: math.unit(5, "feet"),
  41455. default: true
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41461. {
  41462. front: {
  41463. height: math.unit(11 + 7/12, "feet"),
  41464. weight: math.unit(9576, "lb"),
  41465. name: "Front",
  41466. image: {
  41467. source: "./media/characters/scaly/front.svg",
  41468. extra: 888/867,
  41469. bottom: 36/924
  41470. }
  41471. },
  41472. },
  41473. [
  41474. {
  41475. name: "Normal",
  41476. height: math.unit(11 + 7/12, "feet"),
  41477. default: true
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41483. {
  41484. front: {
  41485. height: math.unit(6 + 3/12, "feet"),
  41486. name: "Front",
  41487. image: {
  41488. source: "./media/characters/saelria/front.svg",
  41489. extra: 1243/1138,
  41490. bottom: 46/1289
  41491. }
  41492. },
  41493. },
  41494. [
  41495. {
  41496. name: "Micro",
  41497. height: math.unit(6, "inches"),
  41498. },
  41499. {
  41500. name: "Normal",
  41501. height: math.unit(6 + 3/12, "feet"),
  41502. default: true
  41503. },
  41504. {
  41505. name: "Macro",
  41506. height: math.unit(25, "feet")
  41507. },
  41508. ]
  41509. ))
  41510. characterMakers.push(() => makeCharacter(
  41511. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41512. {
  41513. front: {
  41514. height: math.unit(80, "meters"),
  41515. weight: math.unit(7000, "tonnes"),
  41516. name: "Front",
  41517. image: {
  41518. source: "./media/characters/tef/front.svg",
  41519. extra: 2036/1991,
  41520. bottom: 54/2090
  41521. }
  41522. },
  41523. back: {
  41524. height: math.unit(80, "meters"),
  41525. weight: math.unit(7000, "tonnes"),
  41526. name: "Back",
  41527. image: {
  41528. source: "./media/characters/tef/back.svg",
  41529. extra: 2036/1991,
  41530. bottom: 54/2090
  41531. }
  41532. },
  41533. },
  41534. [
  41535. {
  41536. name: "Macro",
  41537. height: math.unit(80, "meters"),
  41538. default: true
  41539. },
  41540. ]
  41541. ))
  41542. characterMakers.push(() => makeCharacter(
  41543. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41544. {
  41545. front: {
  41546. height: math.unit(13, "feet"),
  41547. weight: math.unit(6, "tons"),
  41548. name: "Front",
  41549. image: {
  41550. source: "./media/characters/rover/front.svg",
  41551. extra: 1233/1156,
  41552. bottom: 50/1283
  41553. }
  41554. },
  41555. back: {
  41556. height: math.unit(13, "feet"),
  41557. weight: math.unit(6, "tons"),
  41558. name: "Back",
  41559. image: {
  41560. source: "./media/characters/rover/back.svg",
  41561. extra: 1327/1258,
  41562. bottom: 39/1366
  41563. }
  41564. },
  41565. },
  41566. [
  41567. {
  41568. name: "Normal",
  41569. height: math.unit(13, "feet"),
  41570. default: true
  41571. },
  41572. {
  41573. name: "Macro",
  41574. height: math.unit(1300, "feet")
  41575. },
  41576. {
  41577. name: "Megamacro",
  41578. height: math.unit(1300, "miles")
  41579. },
  41580. {
  41581. name: "Gigamacro",
  41582. height: math.unit(1300000, "miles")
  41583. },
  41584. ]
  41585. ))
  41586. characterMakers.push(() => makeCharacter(
  41587. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41588. {
  41589. front: {
  41590. height: math.unit(6, "feet"),
  41591. weight: math.unit(150, "lb"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/ariz/front.svg",
  41595. extra: 1401/1346,
  41596. bottom: 5/1406
  41597. }
  41598. },
  41599. },
  41600. [
  41601. {
  41602. name: "Normal",
  41603. height: math.unit(10, "feet"),
  41604. default: true
  41605. },
  41606. ]
  41607. ))
  41608. characterMakers.push(() => makeCharacter(
  41609. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41610. {
  41611. front: {
  41612. height: math.unit(6, "feet"),
  41613. weight: math.unit(140, "lb"),
  41614. name: "Front",
  41615. image: {
  41616. source: "./media/characters/sigrun/front.svg",
  41617. extra: 1418/1359,
  41618. bottom: 27/1445
  41619. }
  41620. },
  41621. },
  41622. [
  41623. {
  41624. name: "Macro",
  41625. height: math.unit(35, "feet"),
  41626. default: true
  41627. },
  41628. ]
  41629. ))
  41630. characterMakers.push(() => makeCharacter(
  41631. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41632. {
  41633. front: {
  41634. height: math.unit(6, "feet"),
  41635. weight: math.unit(150, "lb"),
  41636. name: "Front",
  41637. image: {
  41638. source: "./media/characters/numin/front.svg",
  41639. extra: 1433/1388,
  41640. bottom: 12/1445
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Macro",
  41647. height: math.unit(21.5, "km"),
  41648. default: true
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(6, "feet"),
  41657. weight: math.unit(463, "lb"),
  41658. name: "Front",
  41659. image: {
  41660. source: "./media/characters/melwa/front.svg",
  41661. extra: 1307/1248,
  41662. bottom: 93/1400
  41663. }
  41664. },
  41665. },
  41666. [
  41667. {
  41668. name: "Macro",
  41669. height: math.unit(50, "meters"),
  41670. default: true
  41671. },
  41672. ]
  41673. ))
  41674. characterMakers.push(() => makeCharacter(
  41675. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41676. {
  41677. front: {
  41678. height: math.unit(325, "feet"),
  41679. name: "Front",
  41680. image: {
  41681. source: "./media/characters/zorkaiju/front.svg",
  41682. extra: 1955/1814,
  41683. bottom: 40/1995
  41684. }
  41685. },
  41686. frontExtended: {
  41687. height: math.unit(325, "feet"),
  41688. name: "Front (Extended)",
  41689. image: {
  41690. source: "./media/characters/zorkaiju/front-extended.svg",
  41691. extra: 1955/1814,
  41692. bottom: 40/1995
  41693. }
  41694. },
  41695. side: {
  41696. height: math.unit(325, "feet"),
  41697. name: "Side",
  41698. image: {
  41699. source: "./media/characters/zorkaiju/side.svg",
  41700. extra: 1495/1396,
  41701. bottom: 17/1512
  41702. }
  41703. },
  41704. sideExtended: {
  41705. height: math.unit(325, "feet"),
  41706. name: "Side (Extended)",
  41707. image: {
  41708. source: "./media/characters/zorkaiju/side-extended.svg",
  41709. extra: 1495/1396,
  41710. bottom: 17/1512
  41711. }
  41712. },
  41713. back: {
  41714. height: math.unit(325, "feet"),
  41715. name: "Back",
  41716. image: {
  41717. source: "./media/characters/zorkaiju/back.svg",
  41718. extra: 1959/1821,
  41719. bottom: 31/1990
  41720. }
  41721. },
  41722. backExtended: {
  41723. height: math.unit(325, "feet"),
  41724. name: "Back (Extended)",
  41725. image: {
  41726. source: "./media/characters/zorkaiju/back-extended.svg",
  41727. extra: 1959/1821,
  41728. bottom: 31/1990
  41729. }
  41730. },
  41731. hand: {
  41732. height: math.unit(58.4, "feet"),
  41733. name: "Hand",
  41734. image: {
  41735. source: "./media/characters/zorkaiju/hand.svg"
  41736. }
  41737. },
  41738. handExtended: {
  41739. height: math.unit(61.4, "feet"),
  41740. name: "Hand (Extended)",
  41741. image: {
  41742. source: "./media/characters/zorkaiju/hand-extended.svg"
  41743. }
  41744. },
  41745. foot: {
  41746. height: math.unit(95, "feet"),
  41747. name: "Foot",
  41748. image: {
  41749. source: "./media/characters/zorkaiju/foot.svg"
  41750. }
  41751. },
  41752. leftArm: {
  41753. height: math.unit(59, "feet"),
  41754. name: "Left Arm",
  41755. image: {
  41756. source: "./media/characters/zorkaiju/left-arm.svg"
  41757. }
  41758. },
  41759. rightArm: {
  41760. height: math.unit(59, "feet"),
  41761. name: "Right Arm",
  41762. image: {
  41763. source: "./media/characters/zorkaiju/right-arm.svg"
  41764. }
  41765. },
  41766. leftArmExtended: {
  41767. height: math.unit(59 * 1.033546, "feet"),
  41768. name: "Left Arm (Extended)",
  41769. image: {
  41770. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41771. }
  41772. },
  41773. rightArmExtended: {
  41774. height: math.unit(59 * 1.0496, "feet"),
  41775. name: "Right Arm (Extended)",
  41776. image: {
  41777. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41778. }
  41779. },
  41780. tail: {
  41781. height: math.unit(104, "feet"),
  41782. name: "Tail",
  41783. image: {
  41784. source: "./media/characters/zorkaiju/tail.svg"
  41785. }
  41786. },
  41787. tailExtended: {
  41788. height: math.unit(104, "feet"),
  41789. name: "Tail (Extended)",
  41790. image: {
  41791. source: "./media/characters/zorkaiju/tail-extended.svg"
  41792. }
  41793. },
  41794. tailBottom: {
  41795. height: math.unit(104, "feet"),
  41796. name: "Tail Bottom",
  41797. image: {
  41798. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41799. }
  41800. },
  41801. crystal: {
  41802. height: math.unit(27.54, "feet"),
  41803. name: "Crystal",
  41804. image: {
  41805. source: "./media/characters/zorkaiju/crystal.svg"
  41806. }
  41807. },
  41808. },
  41809. [
  41810. {
  41811. name: "Kaiju",
  41812. height: math.unit(325, "feet"),
  41813. default: true
  41814. },
  41815. ]
  41816. ))
  41817. characterMakers.push(() => makeCharacter(
  41818. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41819. {
  41820. front: {
  41821. height: math.unit(6 + 1/12, "feet"),
  41822. weight: math.unit(115, "lb"),
  41823. name: "Front",
  41824. image: {
  41825. source: "./media/characters/bailey-belfry/front.svg",
  41826. extra: 1240/1121,
  41827. bottom: 101/1341
  41828. }
  41829. },
  41830. },
  41831. [
  41832. {
  41833. name: "Normal",
  41834. height: math.unit(6 + 1/12, "feet"),
  41835. default: true
  41836. },
  41837. ]
  41838. ))
  41839. characterMakers.push(() => makeCharacter(
  41840. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41841. {
  41842. side: {
  41843. height: math.unit(4, "meters"),
  41844. weight: math.unit(250, "kg"),
  41845. name: "Side",
  41846. image: {
  41847. source: "./media/characters/blacky/side.svg",
  41848. extra: 1027/919,
  41849. bottom: 43/1070
  41850. }
  41851. },
  41852. maw: {
  41853. height: math.unit(1, "meters"),
  41854. name: "Maw",
  41855. image: {
  41856. source: "./media/characters/blacky/maw.svg"
  41857. }
  41858. },
  41859. paw: {
  41860. height: math.unit(1, "meters"),
  41861. name: "Paw",
  41862. image: {
  41863. source: "./media/characters/blacky/paw.svg"
  41864. }
  41865. },
  41866. },
  41867. [
  41868. {
  41869. name: "Normal",
  41870. height: math.unit(4, "meters"),
  41871. default: true
  41872. },
  41873. ]
  41874. ))
  41875. characterMakers.push(() => makeCharacter(
  41876. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41877. {
  41878. front: {
  41879. height: math.unit(170, "cm"),
  41880. weight: math.unit(66, "kg"),
  41881. name: "Front",
  41882. image: {
  41883. source: "./media/characters/thux-ei/front.svg",
  41884. extra: 1109/1011,
  41885. bottom: 8/1117
  41886. }
  41887. },
  41888. },
  41889. [
  41890. {
  41891. name: "Normal",
  41892. height: math.unit(170, "cm"),
  41893. default: true
  41894. },
  41895. ]
  41896. ))
  41897. characterMakers.push(() => makeCharacter(
  41898. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41899. {
  41900. front: {
  41901. height: math.unit(5, "feet"),
  41902. weight: math.unit(120, "lb"),
  41903. name: "Front",
  41904. image: {
  41905. source: "./media/characters/roxanne-voltaire/front.svg",
  41906. extra: 1901/1779,
  41907. bottom: 53/1954
  41908. }
  41909. },
  41910. },
  41911. [
  41912. {
  41913. name: "Normal",
  41914. height: math.unit(5, "feet"),
  41915. default: true
  41916. },
  41917. {
  41918. name: "Giant",
  41919. height: math.unit(50, "feet")
  41920. },
  41921. {
  41922. name: "Titan",
  41923. height: math.unit(500, "feet")
  41924. },
  41925. {
  41926. name: "Macro",
  41927. height: math.unit(5000, "feet")
  41928. },
  41929. {
  41930. name: "Megamacro",
  41931. height: math.unit(50000, "feet")
  41932. },
  41933. {
  41934. name: "Gigamacro",
  41935. height: math.unit(500000, "feet")
  41936. },
  41937. {
  41938. name: "Teramacro",
  41939. height: math.unit(5e6, "feet")
  41940. },
  41941. ]
  41942. ))
  41943. characterMakers.push(() => makeCharacter(
  41944. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41945. {
  41946. front: {
  41947. height: math.unit(6 + 2/12, "feet"),
  41948. name: "Front",
  41949. image: {
  41950. source: "./media/characters/squeaks/front.svg",
  41951. extra: 1823/1768,
  41952. bottom: 138/1961
  41953. }
  41954. },
  41955. },
  41956. [
  41957. {
  41958. name: "Micro",
  41959. height: math.unit(0.5, "inches")
  41960. },
  41961. {
  41962. name: "Normal",
  41963. height: math.unit(6 + 2/12, "feet"),
  41964. default: true
  41965. },
  41966. {
  41967. name: "Macro",
  41968. height: math.unit(600, "feet")
  41969. },
  41970. ]
  41971. ))
  41972. characterMakers.push(() => makeCharacter(
  41973. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41974. {
  41975. front: {
  41976. height: math.unit(1.72, "meters"),
  41977. name: "Front",
  41978. image: {
  41979. source: "./media/characters/archinger/front.svg",
  41980. extra: 1861/1675,
  41981. bottom: 125/1986
  41982. }
  41983. },
  41984. back: {
  41985. height: math.unit(1.72, "meters"),
  41986. name: "Back",
  41987. image: {
  41988. source: "./media/characters/archinger/back.svg",
  41989. extra: 1844/1701,
  41990. bottom: 104/1948
  41991. }
  41992. },
  41993. cock: {
  41994. height: math.unit(0.59, "feet"),
  41995. name: "Cock",
  41996. image: {
  41997. source: "./media/characters/archinger/cock.svg"
  41998. }
  41999. },
  42000. },
  42001. [
  42002. {
  42003. name: "Normal",
  42004. height: math.unit(1.72, "meters"),
  42005. default: true
  42006. },
  42007. {
  42008. name: "Macro",
  42009. height: math.unit(84, "meters")
  42010. },
  42011. {
  42012. name: "Macro+",
  42013. height: math.unit(112, "meters")
  42014. },
  42015. {
  42016. name: "Macro++",
  42017. height: math.unit(960, "meters")
  42018. },
  42019. {
  42020. name: "Macro+++",
  42021. height: math.unit(4, "km")
  42022. },
  42023. {
  42024. name: "Macro++++",
  42025. height: math.unit(48, "km")
  42026. },
  42027. {
  42028. name: "Macro+++++",
  42029. height: math.unit(4500, "km")
  42030. },
  42031. ]
  42032. ))
  42033. characterMakers.push(() => makeCharacter(
  42034. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42035. {
  42036. front: {
  42037. height: math.unit(5 + 5/12, "feet"),
  42038. name: "Front",
  42039. image: {
  42040. source: "./media/characters/alsnapz/front.svg",
  42041. extra: 1157/1065,
  42042. bottom: 42/1199
  42043. }
  42044. },
  42045. },
  42046. [
  42047. {
  42048. name: "Normal",
  42049. height: math.unit(5 + 5/12, "feet"),
  42050. default: true
  42051. },
  42052. ]
  42053. ))
  42054. characterMakers.push(() => makeCharacter(
  42055. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42056. {
  42057. side: {
  42058. height: math.unit(3.2, "earths"),
  42059. name: "Side",
  42060. image: {
  42061. source: "./media/characters/mag/side.svg",
  42062. extra: 1331/1008,
  42063. bottom: 52/1383
  42064. }
  42065. },
  42066. wing: {
  42067. height: math.unit(1.94, "earths"),
  42068. name: "Wing",
  42069. image: {
  42070. source: "./media/characters/mag/wing.svg"
  42071. }
  42072. },
  42073. dick: {
  42074. height: math.unit(1.8, "earths"),
  42075. name: "Dick",
  42076. image: {
  42077. source: "./media/characters/mag/dick.svg"
  42078. }
  42079. },
  42080. ass: {
  42081. height: math.unit(1.33, "earths"),
  42082. name: "Ass",
  42083. image: {
  42084. source: "./media/characters/mag/ass.svg"
  42085. }
  42086. },
  42087. head: {
  42088. height: math.unit(1.1, "earths"),
  42089. name: "Head",
  42090. image: {
  42091. source: "./media/characters/mag/head.svg"
  42092. }
  42093. },
  42094. maw: {
  42095. height: math.unit(1.62, "earths"),
  42096. name: "Maw",
  42097. image: {
  42098. source: "./media/characters/mag/maw.svg"
  42099. }
  42100. },
  42101. },
  42102. [
  42103. {
  42104. name: "Small",
  42105. height: math.unit(162, "feet")
  42106. },
  42107. {
  42108. name: "Normal",
  42109. height: math.unit(3.2, "earths"),
  42110. default: true
  42111. },
  42112. ]
  42113. ))
  42114. characterMakers.push(() => makeCharacter(
  42115. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42116. {
  42117. front: {
  42118. height: math.unit(512, "feet"),
  42119. weight: math.unit(63509, "tonnes"),
  42120. name: "Front",
  42121. image: {
  42122. source: "./media/characters/vorrel-harroc/front.svg",
  42123. extra: 1075/1063,
  42124. bottom: 62/1137
  42125. }
  42126. },
  42127. },
  42128. [
  42129. {
  42130. name: "Normal",
  42131. height: math.unit(10, "feet")
  42132. },
  42133. {
  42134. name: "Macro",
  42135. height: math.unit(512, "feet"),
  42136. default: true
  42137. },
  42138. {
  42139. name: "Megamacro",
  42140. height: math.unit(256, "miles")
  42141. },
  42142. {
  42143. name: "Gigamacro",
  42144. height: math.unit(4096, "miles")
  42145. },
  42146. ]
  42147. ))
  42148. characterMakers.push(() => makeCharacter(
  42149. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42150. {
  42151. side: {
  42152. height: math.unit(50, "feet"),
  42153. name: "Side",
  42154. image: {
  42155. source: "./media/characters/froimar/side.svg",
  42156. extra: 855/638,
  42157. bottom: 99/954
  42158. }
  42159. },
  42160. },
  42161. [
  42162. {
  42163. name: "Macro",
  42164. height: math.unit(50, "feet"),
  42165. default: true
  42166. },
  42167. ]
  42168. ))
  42169. characterMakers.push(() => makeCharacter(
  42170. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42171. {
  42172. front: {
  42173. height: math.unit(210, "miles"),
  42174. name: "Front",
  42175. image: {
  42176. source: "./media/characters/timothy/front.svg",
  42177. extra: 1007/943,
  42178. bottom: 62/1069
  42179. }
  42180. },
  42181. frontSkirt: {
  42182. height: math.unit(210, "miles"),
  42183. name: "Front (Skirt)",
  42184. image: {
  42185. source: "./media/characters/timothy/front-skirt.svg",
  42186. extra: 1007/943,
  42187. bottom: 62/1069
  42188. }
  42189. },
  42190. frontCoat: {
  42191. height: math.unit(210, "miles"),
  42192. name: "Front (Coat)",
  42193. image: {
  42194. source: "./media/characters/timothy/front-coat.svg",
  42195. extra: 1007/943,
  42196. bottom: 62/1069
  42197. }
  42198. },
  42199. },
  42200. [
  42201. {
  42202. name: "Macro",
  42203. height: math.unit(210, "miles"),
  42204. default: true
  42205. },
  42206. {
  42207. name: "Megamacro",
  42208. height: math.unit(210000, "miles")
  42209. },
  42210. ]
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42214. {
  42215. front: {
  42216. height: math.unit(188, "feet"),
  42217. name: "Front",
  42218. image: {
  42219. source: "./media/characters/pyotr/front.svg",
  42220. extra: 1912/1826,
  42221. bottom: 18/1930
  42222. }
  42223. },
  42224. },
  42225. [
  42226. {
  42227. name: "Macro",
  42228. height: math.unit(188, "feet"),
  42229. default: true
  42230. },
  42231. {
  42232. name: "Megamacro",
  42233. height: math.unit(8, "miles")
  42234. },
  42235. ]
  42236. ))
  42237. characterMakers.push(() => makeCharacter(
  42238. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42239. {
  42240. side: {
  42241. height: math.unit(10, "feet"),
  42242. weight: math.unit(4500, "lb"),
  42243. name: "Side",
  42244. image: {
  42245. source: "./media/characters/ackart/side.svg",
  42246. extra: 1776/1668,
  42247. bottom: 116/1892
  42248. }
  42249. },
  42250. },
  42251. [
  42252. {
  42253. name: "Normal",
  42254. height: math.unit(10, "feet"),
  42255. default: true
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42261. {
  42262. side: {
  42263. height: math.unit(21, "feet"),
  42264. name: "Side",
  42265. image: {
  42266. source: "./media/characters/nolow/side.svg",
  42267. extra: 1484/1434,
  42268. bottom: 85/1569
  42269. }
  42270. },
  42271. sideErect: {
  42272. height: math.unit(21, "feet"),
  42273. name: "Side-erect",
  42274. image: {
  42275. source: "./media/characters/nolow/side-erect.svg",
  42276. extra: 1484/1434,
  42277. bottom: 85/1569
  42278. }
  42279. },
  42280. },
  42281. [
  42282. {
  42283. name: "Regular",
  42284. height: math.unit(12, "feet")
  42285. },
  42286. {
  42287. name: "Big Chee",
  42288. height: math.unit(21, "feet"),
  42289. default: true
  42290. },
  42291. ]
  42292. ))
  42293. characterMakers.push(() => makeCharacter(
  42294. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42295. {
  42296. front: {
  42297. height: math.unit(7, "feet"),
  42298. weight: math.unit(250, "lb"),
  42299. name: "Front",
  42300. image: {
  42301. source: "./media/characters/nines/front.svg",
  42302. extra: 1741/1607,
  42303. bottom: 41/1782
  42304. }
  42305. },
  42306. side: {
  42307. height: math.unit(7, "feet"),
  42308. weight: math.unit(250, "lb"),
  42309. name: "Side",
  42310. image: {
  42311. source: "./media/characters/nines/side.svg",
  42312. extra: 1854/1735,
  42313. bottom: 93/1947
  42314. }
  42315. },
  42316. back: {
  42317. height: math.unit(7, "feet"),
  42318. weight: math.unit(250, "lb"),
  42319. name: "Back",
  42320. image: {
  42321. source: "./media/characters/nines/back.svg",
  42322. extra: 1748/1615,
  42323. bottom: 20/1768
  42324. }
  42325. },
  42326. },
  42327. [
  42328. {
  42329. name: "Megamacro",
  42330. height: math.unit(99, "km"),
  42331. default: true
  42332. },
  42333. ]
  42334. ))
  42335. characterMakers.push(() => makeCharacter(
  42336. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42337. {
  42338. front: {
  42339. height: math.unit(5 + 10/12, "feet"),
  42340. weight: math.unit(210, "lb"),
  42341. name: "Front",
  42342. image: {
  42343. source: "./media/characters/zenith/front.svg",
  42344. extra: 1531/1452,
  42345. bottom: 198/1729
  42346. }
  42347. },
  42348. back: {
  42349. height: math.unit(5 + 10/12, "feet"),
  42350. weight: math.unit(210, "lb"),
  42351. name: "Back",
  42352. image: {
  42353. source: "./media/characters/zenith/back.svg",
  42354. extra: 1571/1487,
  42355. bottom: 75/1646
  42356. }
  42357. },
  42358. },
  42359. [
  42360. {
  42361. name: "Normal",
  42362. height: math.unit(5 + 10/12, "feet"),
  42363. default: true
  42364. }
  42365. ]
  42366. ))
  42367. characterMakers.push(() => makeCharacter(
  42368. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42369. {
  42370. front: {
  42371. height: math.unit(4, "feet"),
  42372. weight: math.unit(60, "lb"),
  42373. name: "Front",
  42374. image: {
  42375. source: "./media/characters/jasper/front.svg",
  42376. extra: 1450/1379,
  42377. bottom: 19/1469
  42378. }
  42379. },
  42380. },
  42381. [
  42382. {
  42383. name: "Normal",
  42384. height: math.unit(4, "feet"),
  42385. default: true
  42386. },
  42387. ]
  42388. ))
  42389. characterMakers.push(() => makeCharacter(
  42390. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42391. {
  42392. front: {
  42393. height: math.unit(6 + 5/12, "feet"),
  42394. weight: math.unit(290, "lb"),
  42395. name: "Front",
  42396. image: {
  42397. source: "./media/characters/tiberius-thyben/front.svg",
  42398. extra: 757/739,
  42399. bottom: 39/796
  42400. }
  42401. },
  42402. },
  42403. [
  42404. {
  42405. name: "Micro",
  42406. height: math.unit(1.5, "inches")
  42407. },
  42408. {
  42409. name: "Normal",
  42410. height: math.unit(6 + 5/12, "feet"),
  42411. default: true
  42412. },
  42413. {
  42414. name: "Macro",
  42415. height: math.unit(300, "feet")
  42416. },
  42417. ]
  42418. ))
  42419. characterMakers.push(() => makeCharacter(
  42420. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42421. {
  42422. front: {
  42423. height: math.unit(5 + 6/12, "feet"),
  42424. weight: math.unit(60, "kg"),
  42425. name: "Front",
  42426. image: {
  42427. source: "./media/characters/sabre/front.svg",
  42428. extra: 738/671,
  42429. bottom: 27/765
  42430. }
  42431. },
  42432. },
  42433. [
  42434. {
  42435. name: "Teeny",
  42436. height: math.unit(2, "inches")
  42437. },
  42438. {
  42439. name: "Smol",
  42440. height: math.unit(8, "inches")
  42441. },
  42442. {
  42443. name: "Normal",
  42444. height: math.unit(5 + 6/12, "feet"),
  42445. default: true
  42446. },
  42447. {
  42448. name: "Mini-Macro",
  42449. height: math.unit(15, "feet")
  42450. },
  42451. {
  42452. name: "Macro",
  42453. height: math.unit(50, "feet")
  42454. },
  42455. ]
  42456. ))
  42457. characterMakers.push(() => makeCharacter(
  42458. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42459. {
  42460. front: {
  42461. height: math.unit(6 + 4/12, "feet"),
  42462. weight: math.unit(170, "lb"),
  42463. name: "Front",
  42464. image: {
  42465. source: "./media/characters/charlie/front.svg",
  42466. extra: 1348/1228,
  42467. bottom: 15/1363
  42468. }
  42469. },
  42470. },
  42471. [
  42472. {
  42473. name: "Macro",
  42474. height: math.unit(1700, "meters"),
  42475. default: true
  42476. },
  42477. {
  42478. name: "MegaMacro",
  42479. height: math.unit(20400, "meters")
  42480. },
  42481. ]
  42482. ))
  42483. characterMakers.push(() => makeCharacter(
  42484. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42485. {
  42486. front: {
  42487. height: math.unit(6 + 3/12, "feet"),
  42488. weight: math.unit(185, "lb"),
  42489. name: "Front",
  42490. image: {
  42491. source: "./media/characters/susan-grant/front.svg",
  42492. extra: 1351/1327,
  42493. bottom: 26/1377
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Normal",
  42500. height: math.unit(6 + 3/12, "feet"),
  42501. default: true
  42502. },
  42503. {
  42504. name: "Macro",
  42505. height: math.unit(225, "feet")
  42506. },
  42507. {
  42508. name: "Macro+",
  42509. height: math.unit(900, "feet")
  42510. },
  42511. {
  42512. name: "MegaMacro",
  42513. height: math.unit(14400, "feet")
  42514. },
  42515. ]
  42516. ))
  42517. characterMakers.push(() => makeCharacter(
  42518. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42519. {
  42520. front: {
  42521. height: math.unit(5 + 4/12, "feet"),
  42522. weight: math.unit(110, "lb"),
  42523. name: "Front",
  42524. image: {
  42525. source: "./media/characters/axel-isanov/front.svg",
  42526. extra: 1096/1065,
  42527. bottom: 13/1109
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Normal",
  42534. height: math.unit(5 + 4/12, "feet"),
  42535. default: true
  42536. },
  42537. ]
  42538. ))
  42539. characterMakers.push(() => makeCharacter(
  42540. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42541. {
  42542. front: {
  42543. height: math.unit(9, "feet"),
  42544. weight: math.unit(467, "lb"),
  42545. name: "Front",
  42546. image: {
  42547. source: "./media/characters/necahual/front.svg",
  42548. extra: 920/873,
  42549. bottom: 26/946
  42550. }
  42551. },
  42552. back: {
  42553. height: math.unit(9, "feet"),
  42554. weight: math.unit(467, "lb"),
  42555. name: "Back",
  42556. image: {
  42557. source: "./media/characters/necahual/back.svg",
  42558. extra: 930/884,
  42559. bottom: 16/946
  42560. }
  42561. },
  42562. frontUnderwear: {
  42563. height: math.unit(9, "feet"),
  42564. weight: math.unit(467, "lb"),
  42565. name: "Front (Underwear)",
  42566. image: {
  42567. source: "./media/characters/necahual/front-underwear.svg",
  42568. extra: 920/873,
  42569. bottom: 26/946
  42570. }
  42571. },
  42572. frontDressed: {
  42573. height: math.unit(9, "feet"),
  42574. weight: math.unit(467, "lb"),
  42575. name: "Front (Dressed)",
  42576. image: {
  42577. source: "./media/characters/necahual/front-dressed.svg",
  42578. extra: 920/873,
  42579. bottom: 26/946
  42580. }
  42581. },
  42582. },
  42583. [
  42584. {
  42585. name: "Comprsesed",
  42586. height: math.unit(9, "feet")
  42587. },
  42588. {
  42589. name: "Natural",
  42590. height: math.unit(15, "feet"),
  42591. default: true
  42592. },
  42593. {
  42594. name: "Boosted",
  42595. height: math.unit(50, "feet")
  42596. },
  42597. {
  42598. name: "Boosted+",
  42599. height: math.unit(150, "feet")
  42600. },
  42601. {
  42602. name: "Max",
  42603. height: math.unit(500, "feet")
  42604. },
  42605. ]
  42606. ))
  42607. characterMakers.push(() => makeCharacter(
  42608. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42609. {
  42610. front: {
  42611. height: math.unit(22 + 1/12, "feet"),
  42612. weight: math.unit(3200, "lb"),
  42613. name: "Front",
  42614. image: {
  42615. source: "./media/characters/theo-acacia/front.svg",
  42616. extra: 1796/1741,
  42617. bottom: 83/1879
  42618. }
  42619. },
  42620. frontUnderwear: {
  42621. height: math.unit(22 + 1/12, "feet"),
  42622. weight: math.unit(3200, "lb"),
  42623. name: "Front (Underwear)",
  42624. image: {
  42625. source: "./media/characters/theo-acacia/front-underwear.svg",
  42626. extra: 1796/1741,
  42627. bottom: 83/1879
  42628. }
  42629. },
  42630. frontNude: {
  42631. height: math.unit(22 + 1/12, "feet"),
  42632. weight: math.unit(3200, "lb"),
  42633. name: "Front (Nude)",
  42634. image: {
  42635. source: "./media/characters/theo-acacia/front-nude.svg",
  42636. extra: 1796/1741,
  42637. bottom: 83/1879
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Normal",
  42644. height: math.unit(22 + 1/12, "feet"),
  42645. default: true
  42646. },
  42647. ]
  42648. ))
  42649. characterMakers.push(() => makeCharacter(
  42650. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42651. {
  42652. front: {
  42653. height: math.unit(20, "feet"),
  42654. name: "Front",
  42655. image: {
  42656. source: "./media/characters/astra/front.svg",
  42657. extra: 1850/1714,
  42658. bottom: 106/1956
  42659. }
  42660. },
  42661. frontUndressed: {
  42662. height: math.unit(20, "feet"),
  42663. name: "Front (Undressed)",
  42664. image: {
  42665. source: "./media/characters/astra/front-undressed.svg",
  42666. extra: 1926/1749,
  42667. bottom: 0/1926
  42668. }
  42669. },
  42670. hand: {
  42671. height: math.unit(1.53, "feet"),
  42672. name: "Hand",
  42673. image: {
  42674. source: "./media/characters/astra/hand.svg"
  42675. }
  42676. },
  42677. paw: {
  42678. height: math.unit(1.53, "feet"),
  42679. name: "Paw",
  42680. image: {
  42681. source: "./media/characters/astra/paw.svg"
  42682. }
  42683. },
  42684. },
  42685. [
  42686. {
  42687. name: "Smallest",
  42688. height: math.unit(20, "feet")
  42689. },
  42690. {
  42691. name: "Normal",
  42692. height: math.unit(1e9, "miles"),
  42693. default: true
  42694. },
  42695. {
  42696. name: "Larger",
  42697. height: math.unit(5, "multiverses")
  42698. },
  42699. {
  42700. name: "Largest",
  42701. height: math.unit(1e9, "multiverses")
  42702. },
  42703. ]
  42704. ))
  42705. characterMakers.push(() => makeCharacter(
  42706. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42707. {
  42708. front: {
  42709. height: math.unit(8, "feet"),
  42710. name: "Front",
  42711. image: {
  42712. source: "./media/characters/breanna/front.svg",
  42713. extra: 1912/1632,
  42714. bottom: 33/1945
  42715. }
  42716. },
  42717. },
  42718. [
  42719. {
  42720. name: "Smallest",
  42721. height: math.unit(8, "feet")
  42722. },
  42723. {
  42724. name: "Normal",
  42725. height: math.unit(1, "mile"),
  42726. default: true
  42727. },
  42728. {
  42729. name: "Maximum",
  42730. height: math.unit(1500000000000, "lightyears")
  42731. },
  42732. ]
  42733. ))
  42734. characterMakers.push(() => makeCharacter(
  42735. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42736. {
  42737. front: {
  42738. height: math.unit(5 + 11/12, "feet"),
  42739. weight: math.unit(155, "lb"),
  42740. name: "Front",
  42741. image: {
  42742. source: "./media/characters/cai/front.svg",
  42743. extra: 1823/1702,
  42744. bottom: 32/1855
  42745. }
  42746. },
  42747. back: {
  42748. height: math.unit(5 + 11/12, "feet"),
  42749. weight: math.unit(155, "lb"),
  42750. name: "Back",
  42751. image: {
  42752. source: "./media/characters/cai/back.svg",
  42753. extra: 1809/1708,
  42754. bottom: 31/1840
  42755. }
  42756. },
  42757. },
  42758. [
  42759. {
  42760. name: "Normal",
  42761. height: math.unit(5 + 11/12, "feet"),
  42762. default: true
  42763. },
  42764. {
  42765. name: "Big",
  42766. height: math.unit(15, "feet")
  42767. },
  42768. {
  42769. name: "Macro",
  42770. height: math.unit(200, "feet")
  42771. },
  42772. ]
  42773. ))
  42774. characterMakers.push(() => makeCharacter(
  42775. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42776. {
  42777. front: {
  42778. height: math.unit(5 + 6/12, "feet"),
  42779. weight: math.unit(160, "lb"),
  42780. name: "Front",
  42781. image: {
  42782. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42783. extra: 1227/1174,
  42784. bottom: 37/1264
  42785. }
  42786. },
  42787. },
  42788. [
  42789. {
  42790. name: "Macro",
  42791. height: math.unit(444, "meters"),
  42792. default: true
  42793. },
  42794. ]
  42795. ))
  42796. characterMakers.push(() => makeCharacter(
  42797. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42798. {
  42799. front: {
  42800. height: math.unit(18 + 7/12, "feet"),
  42801. name: "Front",
  42802. image: {
  42803. source: "./media/characters/rex/front.svg",
  42804. extra: 1941/1807,
  42805. bottom: 66/2007
  42806. }
  42807. },
  42808. back: {
  42809. height: math.unit(18 + 7/12, "feet"),
  42810. name: "Back",
  42811. image: {
  42812. source: "./media/characters/rex/back.svg",
  42813. extra: 1937/1822,
  42814. bottom: 42/1979
  42815. }
  42816. },
  42817. boot: {
  42818. height: math.unit(3.45, "feet"),
  42819. name: "Boot",
  42820. image: {
  42821. source: "./media/characters/rex/boot.svg"
  42822. }
  42823. },
  42824. paw: {
  42825. height: math.unit(4.17, "feet"),
  42826. name: "Paw",
  42827. image: {
  42828. source: "./media/characters/rex/paw.svg"
  42829. }
  42830. },
  42831. head: {
  42832. height: math.unit(6.728, "feet"),
  42833. name: "Head",
  42834. image: {
  42835. source: "./media/characters/rex/head.svg"
  42836. }
  42837. },
  42838. },
  42839. [
  42840. {
  42841. name: "Nano",
  42842. height: math.unit(18 + 7/12, "feet")
  42843. },
  42844. {
  42845. name: "Micro",
  42846. height: math.unit(1.5, "megameters")
  42847. },
  42848. {
  42849. name: "Normal",
  42850. height: math.unit(440, "megameters"),
  42851. default: true
  42852. },
  42853. {
  42854. name: "Macro",
  42855. height: math.unit(2.5, "gigameters")
  42856. },
  42857. {
  42858. name: "Gigamacro",
  42859. height: math.unit(2, "galaxies")
  42860. },
  42861. ]
  42862. ))
  42863. characterMakers.push(() => makeCharacter(
  42864. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42865. {
  42866. side: {
  42867. height: math.unit(32, "feet"),
  42868. weight: math.unit(250000, "lb"),
  42869. name: "Side",
  42870. image: {
  42871. source: "./media/characters/silverwing/side.svg",
  42872. extra: 1100/1019,
  42873. bottom: 204/1304
  42874. }
  42875. },
  42876. },
  42877. [
  42878. {
  42879. name: "Normal",
  42880. height: math.unit(32, "feet"),
  42881. default: true
  42882. },
  42883. ]
  42884. ))
  42885. characterMakers.push(() => makeCharacter(
  42886. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42887. {
  42888. front: {
  42889. height: math.unit(6 + 6/12, "feet"),
  42890. weight: math.unit(350, "lb"),
  42891. name: "Front",
  42892. image: {
  42893. source: "./media/characters/tristan-hawthorne/front.svg",
  42894. extra: 1159/1124,
  42895. bottom: 37/1196
  42896. },
  42897. form: "labrador",
  42898. default: true
  42899. },
  42900. skunkFront: {
  42901. height: math.unit(4 + 6/12, "feet"),
  42902. weight: math.unit(120, "lb"),
  42903. name: "Front",
  42904. image: {
  42905. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42906. extra: 1609/1551,
  42907. bottom: 169/1778
  42908. },
  42909. form: "skunk",
  42910. default: true
  42911. },
  42912. },
  42913. [
  42914. {
  42915. name: "Normal",
  42916. height: math.unit(6 + 6/12, "feet"),
  42917. form: "labrador",
  42918. default: true
  42919. },
  42920. {
  42921. name: "Normal",
  42922. height: math.unit(4 + 6/12, "feet"),
  42923. form: "skunk",
  42924. default: true
  42925. },
  42926. ],
  42927. {
  42928. "labrador": {
  42929. name: "Labrador",
  42930. default: true
  42931. },
  42932. "skunk": {
  42933. name: "Skunk"
  42934. }
  42935. }
  42936. ))
  42937. characterMakers.push(() => makeCharacter(
  42938. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42939. {
  42940. front: {
  42941. height: math.unit(5 + 11/12, "feet"),
  42942. weight: math.unit(190, "lb"),
  42943. name: "Front",
  42944. image: {
  42945. source: "./media/characters/mizu/front.svg",
  42946. extra: 1988/1788,
  42947. bottom: 14/2002
  42948. }
  42949. },
  42950. },
  42951. [
  42952. {
  42953. name: "Normal",
  42954. height: math.unit(5 + 11/12, "feet"),
  42955. default: true
  42956. },
  42957. ]
  42958. ))
  42959. characterMakers.push(() => makeCharacter(
  42960. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42961. {
  42962. front: {
  42963. height: math.unit(1.7, "feet"),
  42964. weight: math.unit(50, "lb"),
  42965. name: "Front",
  42966. image: {
  42967. source: "./media/characters/dechroma/front.svg",
  42968. extra: 1095/859,
  42969. bottom: 64/1159
  42970. }
  42971. },
  42972. },
  42973. [
  42974. {
  42975. name: "Normal",
  42976. height: math.unit(1.7, "feet"),
  42977. default: true
  42978. },
  42979. ]
  42980. ))
  42981. characterMakers.push(() => makeCharacter(
  42982. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42983. {
  42984. side: {
  42985. height: math.unit(30, "feet"),
  42986. name: "Side",
  42987. image: {
  42988. source: "./media/characters/veluren-thanazel/side.svg",
  42989. extra: 1611/633,
  42990. bottom: 118/1729
  42991. }
  42992. },
  42993. front: {
  42994. height: math.unit(30, "feet"),
  42995. name: "Front",
  42996. image: {
  42997. source: "./media/characters/veluren-thanazel/front.svg",
  42998. extra: 1486/636,
  42999. bottom: 238/1724
  43000. }
  43001. },
  43002. head: {
  43003. height: math.unit(21.4, "feet"),
  43004. name: "Head",
  43005. image: {
  43006. source: "./media/characters/veluren-thanazel/head.svg"
  43007. }
  43008. },
  43009. genitals: {
  43010. height: math.unit(19.4, "feet"),
  43011. name: "Genitals",
  43012. image: {
  43013. source: "./media/characters/veluren-thanazel/genitals.svg"
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Social",
  43020. height: math.unit(6, "feet")
  43021. },
  43022. {
  43023. name: "Play",
  43024. height: math.unit(12, "feet")
  43025. },
  43026. {
  43027. name: "True",
  43028. height: math.unit(30, "feet"),
  43029. default: true
  43030. },
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43035. {
  43036. front: {
  43037. height: math.unit(7 + 6/12, "feet"),
  43038. weight: math.unit(500, "kg"),
  43039. name: "Front",
  43040. image: {
  43041. source: "./media/characters/arcturas/front.svg",
  43042. extra: 1700/1500,
  43043. bottom: 145/1845
  43044. }
  43045. },
  43046. },
  43047. [
  43048. {
  43049. name: "Normal",
  43050. height: math.unit(7 + 6/12, "feet"),
  43051. default: true
  43052. },
  43053. ]
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43057. {
  43058. side: {
  43059. height: math.unit(6, "feet"),
  43060. weight: math.unit(2, "tons"),
  43061. name: "Side",
  43062. image: {
  43063. source: "./media/characters/vitaen/side.svg",
  43064. extra: 1157/617,
  43065. bottom: 122/1279
  43066. }
  43067. },
  43068. },
  43069. [
  43070. {
  43071. name: "Normal",
  43072. height: math.unit(6, "feet"),
  43073. default: true
  43074. },
  43075. ]
  43076. ))
  43077. characterMakers.push(() => makeCharacter(
  43078. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43079. {
  43080. front: {
  43081. height: math.unit(19, "feet"),
  43082. name: "Front",
  43083. image: {
  43084. source: "./media/characters/fia-dreamweaver/front.svg",
  43085. extra: 1630/1504,
  43086. bottom: 25/1655
  43087. }
  43088. },
  43089. },
  43090. [
  43091. {
  43092. name: "Normal",
  43093. height: math.unit(19, "feet"),
  43094. default: true
  43095. },
  43096. ]
  43097. ))
  43098. characterMakers.push(() => makeCharacter(
  43099. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43100. {
  43101. front: {
  43102. height: math.unit(5 + 4/12, "feet"),
  43103. name: "Front",
  43104. image: {
  43105. source: "./media/characters/artan/front.svg",
  43106. extra: 1618/1535,
  43107. bottom: 46/1664
  43108. }
  43109. },
  43110. back: {
  43111. height: math.unit(5 + 4/12, "feet"),
  43112. name: "Back",
  43113. image: {
  43114. source: "./media/characters/artan/back.svg",
  43115. extra: 1618/1543,
  43116. bottom: 31/1649
  43117. }
  43118. },
  43119. },
  43120. [
  43121. {
  43122. name: "Normal",
  43123. height: math.unit(5 + 4/12, "feet"),
  43124. default: true
  43125. },
  43126. ]
  43127. ))
  43128. characterMakers.push(() => makeCharacter(
  43129. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43130. {
  43131. side: {
  43132. height: math.unit(182, "cm"),
  43133. weight: math.unit(1000, "lb"),
  43134. name: "Side",
  43135. image: {
  43136. source: "./media/characters/silver-dragon/side.svg",
  43137. extra: 710/287,
  43138. bottom: 88/798
  43139. }
  43140. },
  43141. },
  43142. [
  43143. {
  43144. name: "Normal",
  43145. height: math.unit(182, "cm"),
  43146. default: true
  43147. },
  43148. ]
  43149. ))
  43150. characterMakers.push(() => makeCharacter(
  43151. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43152. {
  43153. side: {
  43154. height: math.unit(6 + 6/12, "feet"),
  43155. weight: math.unit(1.5, "tons"),
  43156. name: "Side",
  43157. image: {
  43158. source: "./media/characters/zephyr/side.svg",
  43159. extra: 1433/586,
  43160. bottom: 109/1542
  43161. }
  43162. },
  43163. },
  43164. [
  43165. {
  43166. name: "Normal",
  43167. height: math.unit(6 + 6/12, "feet"),
  43168. default: true
  43169. },
  43170. ]
  43171. ))
  43172. characterMakers.push(() => makeCharacter(
  43173. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43174. {
  43175. side: {
  43176. height: math.unit(1, "feet"),
  43177. name: "Side",
  43178. image: {
  43179. source: "./media/characters/vixye/side.svg",
  43180. extra: 632/541,
  43181. bottom: 0/632
  43182. }
  43183. },
  43184. },
  43185. [
  43186. {
  43187. name: "Normal",
  43188. height: math.unit(1, "feet"),
  43189. default: true
  43190. },
  43191. {
  43192. name: "True",
  43193. height: math.unit(1e15, "multiverses")
  43194. },
  43195. ]
  43196. ))
  43197. characterMakers.push(() => makeCharacter(
  43198. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43199. {
  43200. front: {
  43201. height: math.unit(8 + 2/12, "feet"),
  43202. weight: math.unit(650, "lb"),
  43203. name: "Front",
  43204. image: {
  43205. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43206. extra: 1174/1137,
  43207. bottom: 82/1256
  43208. }
  43209. },
  43210. back: {
  43211. height: math.unit(8 + 2/12, "feet"),
  43212. weight: math.unit(650, "lb"),
  43213. name: "Back",
  43214. image: {
  43215. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43216. extra: 1204/1157,
  43217. bottom: 46/1250
  43218. }
  43219. },
  43220. },
  43221. [
  43222. {
  43223. name: "Wildform",
  43224. height: math.unit(8 + 2/12, "feet"),
  43225. default: true
  43226. },
  43227. ]
  43228. ))
  43229. characterMakers.push(() => makeCharacter(
  43230. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43231. {
  43232. front: {
  43233. height: math.unit(18, "feet"),
  43234. name: "Front",
  43235. image: {
  43236. source: "./media/characters/cyphin/front.svg",
  43237. extra: 970/886,
  43238. bottom: 42/1012
  43239. }
  43240. },
  43241. back: {
  43242. height: math.unit(18, "feet"),
  43243. name: "Back",
  43244. image: {
  43245. source: "./media/characters/cyphin/back.svg",
  43246. extra: 1009/894,
  43247. bottom: 24/1033
  43248. }
  43249. },
  43250. head: {
  43251. height: math.unit(5.05, "feet"),
  43252. name: "Head",
  43253. image: {
  43254. source: "./media/characters/cyphin/head.svg"
  43255. }
  43256. },
  43257. tailbud: {
  43258. height: math.unit(5, "feet"),
  43259. name: "Tailbud",
  43260. image: {
  43261. source: "./media/characters/cyphin/tailbud.svg"
  43262. }
  43263. },
  43264. },
  43265. [
  43266. ]
  43267. ))
  43268. characterMakers.push(() => makeCharacter(
  43269. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43270. {
  43271. side: {
  43272. height: math.unit(10, "feet"),
  43273. weight: math.unit(6, "tons"),
  43274. name: "Side",
  43275. image: {
  43276. source: "./media/characters/raijin/side.svg",
  43277. extra: 1529/613,
  43278. bottom: 337/1866
  43279. }
  43280. },
  43281. },
  43282. [
  43283. {
  43284. name: "Normal",
  43285. height: math.unit(10, "feet"),
  43286. default: true
  43287. },
  43288. ]
  43289. ))
  43290. characterMakers.push(() => makeCharacter(
  43291. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43292. {
  43293. side: {
  43294. height: math.unit(9, "feet"),
  43295. name: "Side",
  43296. image: {
  43297. source: "./media/characters/nilghais/side.svg",
  43298. extra: 1047/744,
  43299. bottom: 91/1138
  43300. }
  43301. },
  43302. head: {
  43303. height: math.unit(3.14, "feet"),
  43304. name: "Head",
  43305. image: {
  43306. source: "./media/characters/nilghais/head.svg"
  43307. }
  43308. },
  43309. mouth: {
  43310. height: math.unit(4.6, "feet"),
  43311. name: "Mouth",
  43312. image: {
  43313. source: "./media/characters/nilghais/mouth.svg"
  43314. }
  43315. },
  43316. wings: {
  43317. height: math.unit(24, "feet"),
  43318. name: "Wings",
  43319. image: {
  43320. source: "./media/characters/nilghais/wings.svg"
  43321. }
  43322. },
  43323. ass: {
  43324. height: math.unit(6.12, "feet"),
  43325. name: "Ass",
  43326. image: {
  43327. source: "./media/characters/nilghais/ass.svg"
  43328. }
  43329. },
  43330. },
  43331. [
  43332. {
  43333. name: "Normal",
  43334. height: math.unit(9, "feet"),
  43335. default: true
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43341. {
  43342. regular: {
  43343. height: math.unit(16 + 2/12, "feet"),
  43344. weight: math.unit(2300, "lb"),
  43345. name: "Regular",
  43346. image: {
  43347. source: "./media/characters/zolgar/regular.svg",
  43348. extra: 1246/1004,
  43349. bottom: 124/1370
  43350. }
  43351. },
  43352. boxers: {
  43353. height: math.unit(16 + 2/12, "feet"),
  43354. weight: math.unit(2300, "lb"),
  43355. name: "Boxers",
  43356. image: {
  43357. source: "./media/characters/zolgar/boxers.svg",
  43358. extra: 1246/1004,
  43359. bottom: 124/1370
  43360. }
  43361. },
  43362. armored: {
  43363. height: math.unit(16 + 2/12, "feet"),
  43364. weight: math.unit(2300, "lb"),
  43365. name: "Armored",
  43366. image: {
  43367. source: "./media/characters/zolgar/armored.svg",
  43368. extra: 1246/1004,
  43369. bottom: 124/1370
  43370. }
  43371. },
  43372. goth: {
  43373. height: math.unit(16 + 2/12, "feet"),
  43374. weight: math.unit(2300, "lb"),
  43375. name: "Goth",
  43376. image: {
  43377. source: "./media/characters/zolgar/goth.svg",
  43378. extra: 1246/1004,
  43379. bottom: 124/1370
  43380. }
  43381. },
  43382. },
  43383. [
  43384. {
  43385. name: "Shrunken Down",
  43386. height: math.unit(9 + 2/12, "feet")
  43387. },
  43388. {
  43389. name: "Normal",
  43390. height: math.unit(16 + 2/12, "feet"),
  43391. default: true
  43392. },
  43393. ]
  43394. ))
  43395. characterMakers.push(() => makeCharacter(
  43396. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43397. {
  43398. front: {
  43399. height: math.unit(6, "feet"),
  43400. weight: math.unit(168, "lb"),
  43401. name: "Front",
  43402. image: {
  43403. source: "./media/characters/luca/front.svg",
  43404. extra: 841/667,
  43405. bottom: 102/943
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Normal",
  43412. height: math.unit(6, "feet"),
  43413. default: true
  43414. },
  43415. ]
  43416. ))
  43417. characterMakers.push(() => makeCharacter(
  43418. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43419. {
  43420. side: {
  43421. height: math.unit(7 + 3/12, "feet"),
  43422. weight: math.unit(312, "lb"),
  43423. name: "Side",
  43424. image: {
  43425. source: "./media/characters/zezo/side.svg",
  43426. extra: 1192/1067,
  43427. bottom: 63/1255
  43428. }
  43429. },
  43430. },
  43431. [
  43432. {
  43433. name: "Normal",
  43434. height: math.unit(7 + 3/12, "feet"),
  43435. default: true
  43436. },
  43437. ]
  43438. ))
  43439. characterMakers.push(() => makeCharacter(
  43440. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43441. {
  43442. front: {
  43443. height: math.unit(5 + 5/12, "feet"),
  43444. weight: math.unit(170, "lb"),
  43445. name: "Front",
  43446. image: {
  43447. source: "./media/characters/mayso/front.svg",
  43448. extra: 1215/1108,
  43449. bottom: 16/1231
  43450. }
  43451. },
  43452. },
  43453. [
  43454. {
  43455. name: "Normal",
  43456. height: math.unit(5 + 5/12, "feet"),
  43457. default: true
  43458. },
  43459. ]
  43460. ))
  43461. characterMakers.push(() => makeCharacter(
  43462. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43463. {
  43464. front: {
  43465. height: math.unit(4 + 3/12, "feet"),
  43466. weight: math.unit(80, "lb"),
  43467. name: "Front",
  43468. image: {
  43469. source: "./media/characters/hess/front.svg",
  43470. extra: 1200/1123,
  43471. bottom: 16/1216
  43472. }
  43473. },
  43474. },
  43475. [
  43476. {
  43477. name: "Normal",
  43478. height: math.unit(4 + 3/12, "feet"),
  43479. default: true
  43480. },
  43481. ]
  43482. ))
  43483. characterMakers.push(() => makeCharacter(
  43484. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43485. {
  43486. front: {
  43487. height: math.unit(1.9, "meters"),
  43488. name: "Front",
  43489. image: {
  43490. source: "./media/characters/ashgar/front.svg",
  43491. extra: 1177/1146,
  43492. bottom: 99/1276
  43493. }
  43494. },
  43495. back: {
  43496. height: math.unit(1.9, "meters"),
  43497. name: "Back",
  43498. image: {
  43499. source: "./media/characters/ashgar/back.svg",
  43500. extra: 1201/1183,
  43501. bottom: 53/1254
  43502. }
  43503. },
  43504. feral: {
  43505. height: math.unit(1.4, "meters"),
  43506. name: "Feral",
  43507. image: {
  43508. source: "./media/characters/ashgar/feral.svg",
  43509. extra: 370/345,
  43510. bottom: 45/415
  43511. }
  43512. },
  43513. },
  43514. [
  43515. {
  43516. name: "Normal",
  43517. height: math.unit(1.9, "meters"),
  43518. default: true
  43519. },
  43520. ]
  43521. ))
  43522. characterMakers.push(() => makeCharacter(
  43523. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43524. {
  43525. regular: {
  43526. height: math.unit(6, "feet"),
  43527. weight: math.unit(220, "lb"),
  43528. name: "Regular",
  43529. image: {
  43530. source: "./media/characters/phillip/regular.svg",
  43531. extra: 1373/1277,
  43532. bottom: 75/1448
  43533. }
  43534. },
  43535. dressed: {
  43536. height: math.unit(6, "feet"),
  43537. weight: math.unit(220, "lb"),
  43538. name: "Dressed",
  43539. image: {
  43540. source: "./media/characters/phillip/dressed.svg",
  43541. extra: 1373/1277,
  43542. bottom: 75/1448
  43543. }
  43544. },
  43545. paw: {
  43546. height: math.unit(1.44, "feet"),
  43547. name: "Paw",
  43548. image: {
  43549. source: "./media/characters/phillip/paw.svg"
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(6, "feet"),
  43557. default: true
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43563. {
  43564. side: {
  43565. height: math.unit(42, "feet"),
  43566. name: "Side",
  43567. image: {
  43568. source: "./media/characters/uvula/side.svg",
  43569. extra: 683/586,
  43570. bottom: 60/743
  43571. }
  43572. },
  43573. front: {
  43574. height: math.unit(42, "feet"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/uvula/front.svg",
  43578. extra: 705/613,
  43579. bottom: 54/759
  43580. }
  43581. },
  43582. maw: {
  43583. height: math.unit(23.5, "feet"),
  43584. name: "Maw",
  43585. image: {
  43586. source: "./media/characters/uvula/maw.svg"
  43587. }
  43588. },
  43589. },
  43590. [
  43591. {
  43592. name: "Original Size",
  43593. height: math.unit(14, "inches")
  43594. },
  43595. {
  43596. name: "Human Size",
  43597. height: math.unit(6, "feet")
  43598. },
  43599. {
  43600. name: "Big",
  43601. height: math.unit(42, "feet"),
  43602. default: true
  43603. },
  43604. {
  43605. name: "Bigger",
  43606. height: math.unit(100, "feet")
  43607. },
  43608. ]
  43609. ))
  43610. characterMakers.push(() => makeCharacter(
  43611. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43612. {
  43613. front: {
  43614. height: math.unit(5 + 11/12, "feet"),
  43615. name: "Front",
  43616. image: {
  43617. source: "./media/characters/lannah/front.svg",
  43618. extra: 1208/1113,
  43619. bottom: 97/1305
  43620. }
  43621. },
  43622. },
  43623. [
  43624. {
  43625. name: "Normal",
  43626. height: math.unit(5 + 11/12, "feet"),
  43627. default: true
  43628. },
  43629. ]
  43630. ))
  43631. characterMakers.push(() => makeCharacter(
  43632. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43633. {
  43634. front: {
  43635. height: math.unit(6 + 3/12, "feet"),
  43636. weight: math.unit(3.5, "tons"),
  43637. name: "Front",
  43638. image: {
  43639. source: "./media/characters/emberflame/front.svg",
  43640. extra: 1198/672,
  43641. bottom: 82/1280
  43642. }
  43643. },
  43644. side: {
  43645. height: math.unit(6 + 3/12, "feet"),
  43646. weight: math.unit(3.5, "tons"),
  43647. name: "Side",
  43648. image: {
  43649. source: "./media/characters/emberflame/side.svg",
  43650. extra: 938/527,
  43651. bottom: 56/994
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Normal",
  43658. height: math.unit(6 + 3/12, "feet"),
  43659. default: true
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43665. {
  43666. side: {
  43667. height: math.unit(17.5, "feet"),
  43668. weight: math.unit(35, "tons"),
  43669. name: "Side",
  43670. image: {
  43671. source: "./media/characters/sophie-ambrose/side.svg",
  43672. extra: 1573/1242,
  43673. bottom: 71/1644
  43674. }
  43675. },
  43676. maw: {
  43677. height: math.unit(7.4, "feet"),
  43678. name: "Maw",
  43679. image: {
  43680. source: "./media/characters/sophie-ambrose/maw.svg"
  43681. }
  43682. },
  43683. },
  43684. [
  43685. {
  43686. name: "Normal",
  43687. height: math.unit(17.5, "feet"),
  43688. default: true
  43689. },
  43690. ]
  43691. ))
  43692. characterMakers.push(() => makeCharacter(
  43693. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43694. {
  43695. front: {
  43696. height: math.unit(280, "feet"),
  43697. weight: math.unit(550, "tons"),
  43698. name: "Front",
  43699. image: {
  43700. source: "./media/characters/king-mugi/front.svg",
  43701. extra: 1102/947,
  43702. bottom: 104/1206
  43703. }
  43704. },
  43705. },
  43706. [
  43707. {
  43708. name: "King Mugi",
  43709. height: math.unit(280, "feet"),
  43710. default: true
  43711. },
  43712. ]
  43713. ))
  43714. characterMakers.push(() => makeCharacter(
  43715. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43716. {
  43717. front: {
  43718. height: math.unit(64, "meters"),
  43719. name: "Front",
  43720. image: {
  43721. source: "./media/characters/nova-fox/front.svg",
  43722. extra: 1310/1246,
  43723. bottom: 65/1375
  43724. }
  43725. },
  43726. },
  43727. [
  43728. {
  43729. name: "Macro",
  43730. height: math.unit(64, "meters"),
  43731. default: true
  43732. },
  43733. ]
  43734. ))
  43735. characterMakers.push(() => makeCharacter(
  43736. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43737. {
  43738. front: {
  43739. height: math.unit(6 + 3/12, "feet"),
  43740. weight: math.unit(170, "lb"),
  43741. name: "Front",
  43742. image: {
  43743. source: "./media/characters/sam-bat/front.svg",
  43744. extra: 1601/1411,
  43745. bottom: 125/1726
  43746. }
  43747. },
  43748. back: {
  43749. height: math.unit(6 + 3/12, "feet"),
  43750. weight: math.unit(170, "lb"),
  43751. name: "Back",
  43752. image: {
  43753. source: "./media/characters/sam-bat/back.svg",
  43754. extra: 1577/1405,
  43755. bottom: 58/1635
  43756. }
  43757. },
  43758. },
  43759. [
  43760. {
  43761. name: "Normal",
  43762. height: math.unit(6 + 3/12, "feet"),
  43763. default: true
  43764. },
  43765. ]
  43766. ))
  43767. characterMakers.push(() => makeCharacter(
  43768. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43769. {
  43770. front: {
  43771. height: math.unit(59, "feet"),
  43772. weight: math.unit(40000, "lb"),
  43773. name: "Front",
  43774. image: {
  43775. source: "./media/characters/inari/front.svg",
  43776. extra: 1884/1350,
  43777. bottom: 95/1979
  43778. }
  43779. },
  43780. },
  43781. [
  43782. {
  43783. name: "Gigantamax",
  43784. height: math.unit(59, "feet"),
  43785. default: true
  43786. },
  43787. ]
  43788. ))
  43789. characterMakers.push(() => makeCharacter(
  43790. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43791. {
  43792. front: {
  43793. height: math.unit(5 + 8/12, "feet"),
  43794. name: "Front",
  43795. image: {
  43796. source: "./media/characters/elizabeth/front.svg",
  43797. extra: 1395/1298,
  43798. bottom: 54/1449
  43799. }
  43800. },
  43801. mouth: {
  43802. height: math.unit(1.97, "feet"),
  43803. name: "Mouth",
  43804. image: {
  43805. source: "./media/characters/elizabeth/mouth.svg"
  43806. }
  43807. },
  43808. foot: {
  43809. height: math.unit(1.17, "feet"),
  43810. name: "Foot",
  43811. image: {
  43812. source: "./media/characters/elizabeth/foot.svg"
  43813. }
  43814. },
  43815. },
  43816. [
  43817. {
  43818. name: "Normal",
  43819. height: math.unit(5 + 8/12, "feet"),
  43820. default: true
  43821. },
  43822. {
  43823. name: "Minimacro",
  43824. height: math.unit(18, "feet")
  43825. },
  43826. {
  43827. name: "Macro",
  43828. height: math.unit(180, "feet")
  43829. },
  43830. ]
  43831. ))
  43832. characterMakers.push(() => makeCharacter(
  43833. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43834. {
  43835. front: {
  43836. height: math.unit(5 + 2/12, "feet"),
  43837. name: "Front",
  43838. image: {
  43839. source: "./media/characters/october-gossamer/front.svg",
  43840. extra: 505/454,
  43841. bottom: 7/512
  43842. }
  43843. },
  43844. back: {
  43845. height: math.unit(5 + 2/12, "feet"),
  43846. name: "Back",
  43847. image: {
  43848. source: "./media/characters/october-gossamer/back.svg",
  43849. extra: 501/454,
  43850. bottom: 11/512
  43851. }
  43852. },
  43853. },
  43854. [
  43855. {
  43856. name: "Normal",
  43857. height: math.unit(5 + 2/12, "feet"),
  43858. default: true
  43859. },
  43860. ]
  43861. ))
  43862. characterMakers.push(() => makeCharacter(
  43863. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43864. {
  43865. front: {
  43866. height: math.unit(5, "feet"),
  43867. name: "Front",
  43868. image: {
  43869. source: "./media/characters/epiglottis/front.svg",
  43870. extra: 923/849,
  43871. bottom: 17/940
  43872. }
  43873. },
  43874. },
  43875. [
  43876. {
  43877. name: "Original Size",
  43878. height: math.unit(10, "inches")
  43879. },
  43880. {
  43881. name: "Human Size",
  43882. height: math.unit(5, "feet"),
  43883. default: true
  43884. },
  43885. {
  43886. name: "Big",
  43887. height: math.unit(25, "feet")
  43888. },
  43889. {
  43890. name: "Bigger",
  43891. height: math.unit(50, "feet")
  43892. },
  43893. {
  43894. name: "oh lawd",
  43895. height: math.unit(75, "feet")
  43896. },
  43897. ]
  43898. ))
  43899. characterMakers.push(() => makeCharacter(
  43900. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43901. {
  43902. front: {
  43903. height: math.unit(2 + 4/12, "feet"),
  43904. weight: math.unit(60, "lb"),
  43905. name: "Front",
  43906. image: {
  43907. source: "./media/characters/lerm/front.svg",
  43908. extra: 796/790,
  43909. bottom: 79/875
  43910. }
  43911. },
  43912. },
  43913. [
  43914. {
  43915. name: "Normal",
  43916. height: math.unit(2 + 4/12, "feet"),
  43917. default: true
  43918. },
  43919. ]
  43920. ))
  43921. characterMakers.push(() => makeCharacter(
  43922. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43923. {
  43924. front: {
  43925. height: math.unit(5.5, "feet"),
  43926. weight: math.unit(130, "lb"),
  43927. name: "Front",
  43928. image: {
  43929. source: "./media/characters/xena-nebadon/front.svg",
  43930. extra: 1828/1730,
  43931. bottom: 79/1907
  43932. }
  43933. },
  43934. },
  43935. [
  43936. {
  43937. name: "Tiny Puppy",
  43938. height: math.unit(3, "inches")
  43939. },
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(5.5, "feet"),
  43943. default: true
  43944. },
  43945. {
  43946. name: "Lotta Lady",
  43947. height: math.unit(12, "feet")
  43948. },
  43949. {
  43950. name: "Pretty Big",
  43951. height: math.unit(100, "feet")
  43952. },
  43953. {
  43954. name: "Big",
  43955. height: math.unit(500, "feet")
  43956. },
  43957. {
  43958. name: "Skyscraper Toys",
  43959. height: math.unit(2500, "feet")
  43960. },
  43961. {
  43962. name: "Plane Catcher",
  43963. height: math.unit(8, "miles")
  43964. },
  43965. {
  43966. name: "Planet Toys",
  43967. height: math.unit(15, "earths")
  43968. },
  43969. {
  43970. name: "Stardust",
  43971. height: math.unit(0.25, "galaxies")
  43972. },
  43973. {
  43974. name: "Snacks",
  43975. height: math.unit(70, "universes")
  43976. },
  43977. ]
  43978. ))
  43979. characterMakers.push(() => makeCharacter(
  43980. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43981. {
  43982. front: {
  43983. height: math.unit(1.6, "meters"),
  43984. weight: math.unit(60, "kg"),
  43985. name: "Front",
  43986. image: {
  43987. source: "./media/characters/bounty/front.svg",
  43988. extra: 1426/1308,
  43989. bottom: 15/1441
  43990. }
  43991. },
  43992. back: {
  43993. height: math.unit(1.6, "meters"),
  43994. weight: math.unit(60, "kg"),
  43995. name: "Back",
  43996. image: {
  43997. source: "./media/characters/bounty/back.svg",
  43998. extra: 1417/1307,
  43999. bottom: 8/1425
  44000. }
  44001. },
  44002. },
  44003. [
  44004. {
  44005. name: "Normal",
  44006. height: math.unit(1.6, "meters"),
  44007. default: true
  44008. },
  44009. {
  44010. name: "Macro",
  44011. height: math.unit(300, "meters")
  44012. },
  44013. ]
  44014. ))
  44015. characterMakers.push(() => makeCharacter(
  44016. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44017. {
  44018. front: {
  44019. height: math.unit(2 + 8/12, "feet"),
  44020. weight: math.unit(15, "lb"),
  44021. name: "Front",
  44022. image: {
  44023. source: "./media/characters/mochi/front.svg",
  44024. extra: 1022/852,
  44025. bottom: 435/1457
  44026. }
  44027. },
  44028. back: {
  44029. height: math.unit(2 + 8/12, "feet"),
  44030. weight: math.unit(15, "lb"),
  44031. name: "Back",
  44032. image: {
  44033. source: "./media/characters/mochi/back.svg",
  44034. extra: 1335/1119,
  44035. bottom: 39/1374
  44036. }
  44037. },
  44038. bird: {
  44039. height: math.unit(2 + 8/12, "feet"),
  44040. weight: math.unit(15, "lb"),
  44041. name: "Bird",
  44042. image: {
  44043. source: "./media/characters/mochi/bird.svg",
  44044. extra: 1251/1113,
  44045. bottom: 178/1429
  44046. }
  44047. },
  44048. kaiju: {
  44049. height: math.unit(154, "feet"),
  44050. weight: math.unit(1e7, "lb"),
  44051. name: "Kaiju",
  44052. image: {
  44053. source: "./media/characters/mochi/kaiju.svg",
  44054. extra: 460/324,
  44055. bottom: 40/500
  44056. }
  44057. },
  44058. head: {
  44059. height: math.unit(1.21, "feet"),
  44060. name: "Head",
  44061. image: {
  44062. source: "./media/characters/mochi/head.svg"
  44063. }
  44064. },
  44065. alternateTail: {
  44066. height: math.unit(2 + 8/12, "feet"),
  44067. weight: math.unit(45, "lb"),
  44068. name: "Alternate Tail",
  44069. image: {
  44070. source: "./media/characters/mochi/alternate-tail.svg",
  44071. extra: 139/76,
  44072. bottom: 45/184
  44073. }
  44074. },
  44075. },
  44076. [
  44077. {
  44078. name: "Micro",
  44079. height: math.unit(2, "inches")
  44080. },
  44081. {
  44082. name: "Normal",
  44083. height: math.unit(2 + 8/12, "feet"),
  44084. default: true
  44085. },
  44086. {
  44087. name: "Macro",
  44088. height: math.unit(106, "feet")
  44089. },
  44090. ]
  44091. ))
  44092. characterMakers.push(() => makeCharacter(
  44093. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44094. {
  44095. front: {
  44096. height: math.unit(5.67, "feet"),
  44097. weight: math.unit(135, "lb"),
  44098. name: "Front",
  44099. image: {
  44100. source: "./media/characters/sarel/front.svg",
  44101. extra: 865/788,
  44102. bottom: 97/962
  44103. }
  44104. },
  44105. back: {
  44106. height: math.unit(5.67, "feet"),
  44107. weight: math.unit(135, "lb"),
  44108. name: "Back",
  44109. image: {
  44110. source: "./media/characters/sarel/back.svg",
  44111. extra: 857/777,
  44112. bottom: 32/889
  44113. }
  44114. },
  44115. chozoan: {
  44116. height: math.unit(5.67, "feet"),
  44117. weight: math.unit(135, "lb"),
  44118. name: "Chozoan",
  44119. image: {
  44120. source: "./media/characters/sarel/chozoan.svg",
  44121. extra: 865/788,
  44122. bottom: 97/962
  44123. }
  44124. },
  44125. current: {
  44126. height: math.unit(5.67, "feet"),
  44127. weight: math.unit(135, "lb"),
  44128. name: "Current",
  44129. image: {
  44130. source: "./media/characters/sarel/current.svg",
  44131. extra: 865/788,
  44132. bottom: 97/962
  44133. }
  44134. },
  44135. head: {
  44136. height: math.unit(1.77, "feet"),
  44137. name: "Head",
  44138. image: {
  44139. source: "./media/characters/sarel/head.svg"
  44140. }
  44141. },
  44142. claws: {
  44143. height: math.unit(1.8, "feet"),
  44144. name: "Claws",
  44145. image: {
  44146. source: "./media/characters/sarel/claws.svg"
  44147. }
  44148. },
  44149. clawsAlt: {
  44150. height: math.unit(1.8, "feet"),
  44151. name: "Claws-alt",
  44152. image: {
  44153. source: "./media/characters/sarel/claws-alt.svg"
  44154. }
  44155. },
  44156. },
  44157. [
  44158. {
  44159. name: "Normal",
  44160. height: math.unit(5.67, "feet"),
  44161. default: true
  44162. },
  44163. ]
  44164. ))
  44165. characterMakers.push(() => makeCharacter(
  44166. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44167. {
  44168. front: {
  44169. height: math.unit(5500, "feet"),
  44170. name: "Front",
  44171. image: {
  44172. source: "./media/characters/alyonia/front.svg",
  44173. extra: 1200/1135,
  44174. bottom: 29/1229
  44175. }
  44176. },
  44177. back: {
  44178. height: math.unit(5500, "feet"),
  44179. name: "Back",
  44180. image: {
  44181. source: "./media/characters/alyonia/back.svg",
  44182. extra: 1205/1138,
  44183. bottom: 10/1215
  44184. }
  44185. },
  44186. },
  44187. [
  44188. {
  44189. name: "Small",
  44190. height: math.unit(10, "feet")
  44191. },
  44192. {
  44193. name: "Macro",
  44194. height: math.unit(500, "feet")
  44195. },
  44196. {
  44197. name: "Mega Macro",
  44198. height: math.unit(5500, "feet"),
  44199. default: true
  44200. },
  44201. {
  44202. name: "Mega Macro+",
  44203. height: math.unit(500000, "feet")
  44204. },
  44205. {
  44206. name: "Giga Macro",
  44207. height: math.unit(3000, "miles")
  44208. },
  44209. {
  44210. name: "Tera Macro",
  44211. height: math.unit(2.8e6, "miles")
  44212. },
  44213. {
  44214. name: "Galactic",
  44215. height: math.unit(120000, "lightyears")
  44216. },
  44217. ]
  44218. ))
  44219. characterMakers.push(() => makeCharacter(
  44220. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44221. {
  44222. werewolf: {
  44223. height: math.unit(8, "feet"),
  44224. weight: math.unit(425, "lb"),
  44225. name: "Werewolf",
  44226. image: {
  44227. source: "./media/characters/autumn/werewolf.svg",
  44228. extra: 2154/2031,
  44229. bottom: 160/2314
  44230. }
  44231. },
  44232. human: {
  44233. height: math.unit(5 + 8/12, "feet"),
  44234. weight: math.unit(150, "lb"),
  44235. name: "Human",
  44236. image: {
  44237. source: "./media/characters/autumn/human.svg",
  44238. extra: 1200/1149,
  44239. bottom: 30/1230
  44240. }
  44241. },
  44242. },
  44243. [
  44244. {
  44245. name: "Normal",
  44246. height: math.unit(8, "feet"),
  44247. default: true
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44253. {
  44254. front: {
  44255. height: math.unit(8 + 5/12, "feet"),
  44256. weight: math.unit(825, "lb"),
  44257. name: "Front",
  44258. image: {
  44259. source: "./media/characters/cobalt-charizard/front.svg",
  44260. extra: 1268/1155,
  44261. bottom: 122/1390
  44262. }
  44263. },
  44264. side: {
  44265. height: math.unit(8 + 5/12, "feet"),
  44266. weight: math.unit(825, "lb"),
  44267. name: "Side",
  44268. image: {
  44269. source: "./media/characters/cobalt-charizard/side.svg",
  44270. extra: 1348/1257,
  44271. bottom: 58/1406
  44272. }
  44273. },
  44274. gMax: {
  44275. height: math.unit(134 + 11/12, "feet"),
  44276. name: "G-Max",
  44277. image: {
  44278. source: "./media/characters/cobalt-charizard/g-max.svg",
  44279. extra: 1835/1541,
  44280. bottom: 151/1986
  44281. }
  44282. },
  44283. },
  44284. [
  44285. {
  44286. name: "Normal",
  44287. height: math.unit(8 + 5/12, "feet"),
  44288. default: true
  44289. },
  44290. ]
  44291. ))
  44292. characterMakers.push(() => makeCharacter(
  44293. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44294. {
  44295. front: {
  44296. height: math.unit(6 + 3/12, "feet"),
  44297. weight: math.unit(210, "lb"),
  44298. name: "Front",
  44299. image: {
  44300. source: "./media/characters/stella/front.svg",
  44301. extra: 3549/3335,
  44302. bottom: 51/3600
  44303. }
  44304. },
  44305. },
  44306. [
  44307. {
  44308. name: "Normal",
  44309. height: math.unit(6 + 3/12, "feet"),
  44310. default: true
  44311. },
  44312. ]
  44313. ))
  44314. characterMakers.push(() => makeCharacter(
  44315. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44316. {
  44317. front: {
  44318. height: math.unit(5, "feet"),
  44319. weight: math.unit(90, "lb"),
  44320. name: "Front",
  44321. image: {
  44322. source: "./media/characters/riley-bishop/front.svg",
  44323. extra: 1450/1428,
  44324. bottom: 152/1602
  44325. }
  44326. },
  44327. },
  44328. [
  44329. {
  44330. name: "Normal",
  44331. height: math.unit(5, "feet"),
  44332. default: true
  44333. },
  44334. ]
  44335. ))
  44336. characterMakers.push(() => makeCharacter(
  44337. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44338. {
  44339. side: {
  44340. height: math.unit(8 + 2/12, "feet"),
  44341. weight: math.unit(500, "kg"),
  44342. name: "Side",
  44343. image: {
  44344. source: "./media/characters/theo-arcanine/side.svg",
  44345. extra: 1342/1074,
  44346. bottom: 111/1453
  44347. }
  44348. },
  44349. },
  44350. [
  44351. {
  44352. name: "Normal",
  44353. height: math.unit(8 + 2/12, "feet"),
  44354. default: true
  44355. },
  44356. ]
  44357. ))
  44358. characterMakers.push(() => makeCharacter(
  44359. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44360. {
  44361. front: {
  44362. height: math.unit(4, "feet"),
  44363. name: "Front",
  44364. image: {
  44365. source: "./media/characters/kali/front.svg",
  44366. extra: 1921/1357,
  44367. bottom: 70/1991
  44368. }
  44369. },
  44370. },
  44371. [
  44372. {
  44373. name: "Normal",
  44374. height: math.unit(4, "feet"),
  44375. default: true
  44376. },
  44377. {
  44378. name: "Macro",
  44379. height: math.unit(32, "meters")
  44380. },
  44381. {
  44382. name: "Macro+",
  44383. height: math.unit(150, "meters")
  44384. },
  44385. {
  44386. name: "Megamacro",
  44387. height: math.unit(7500, "meters")
  44388. },
  44389. {
  44390. name: "Megamacro+",
  44391. height: math.unit(80, "kilometers")
  44392. },
  44393. ]
  44394. ))
  44395. characterMakers.push(() => makeCharacter(
  44396. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44397. {
  44398. side: {
  44399. height: math.unit(5 + 11/12, "feet"),
  44400. weight: math.unit(236, "lb"),
  44401. name: "Side",
  44402. image: {
  44403. source: "./media/characters/gapp/side.svg",
  44404. extra: 775/340,
  44405. bottom: 58/833
  44406. }
  44407. },
  44408. mouth: {
  44409. height: math.unit(2.98, "feet"),
  44410. name: "Mouth",
  44411. image: {
  44412. source: "./media/characters/gapp/mouth.svg"
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Normal",
  44419. height: math.unit(5 + 1/12, "feet"),
  44420. default: true
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44426. {
  44427. front: {
  44428. height: math.unit(6, "feet"),
  44429. name: "Front",
  44430. image: {
  44431. source: "./media/characters/persephone/front.svg",
  44432. extra: 1895/1717,
  44433. bottom: 96/1991
  44434. }
  44435. },
  44436. back: {
  44437. height: math.unit(6, "feet"),
  44438. name: "Back",
  44439. image: {
  44440. source: "./media/characters/persephone/back.svg",
  44441. extra: 1868/1679,
  44442. bottom: 26/1894
  44443. }
  44444. },
  44445. casual: {
  44446. height: math.unit(6, "feet"),
  44447. name: "Casual",
  44448. image: {
  44449. source: "./media/characters/persephone/casual.svg",
  44450. extra: 1713/1541,
  44451. bottom: 76/1789
  44452. }
  44453. },
  44454. },
  44455. [
  44456. {
  44457. name: "Human Size",
  44458. height: math.unit(6, "feet")
  44459. },
  44460. {
  44461. name: "Big Steppy",
  44462. height: math.unit(600, "meters"),
  44463. default: true
  44464. },
  44465. {
  44466. name: "Galaxy Brain",
  44467. height: math.unit(1, "zettameter")
  44468. },
  44469. ]
  44470. ))
  44471. characterMakers.push(() => makeCharacter(
  44472. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44473. {
  44474. front: {
  44475. height: math.unit(1.85, "meters"),
  44476. name: "Front",
  44477. image: {
  44478. source: "./media/characters/riley-foxthing/front.svg",
  44479. extra: 1495/1354,
  44480. bottom: 122/1617
  44481. }
  44482. },
  44483. frontAlt: {
  44484. height: math.unit(1.85, "meters"),
  44485. name: "Front (Alt)",
  44486. image: {
  44487. source: "./media/characters/riley-foxthing/front-alt.svg",
  44488. extra: 1572/1389,
  44489. bottom: 116/1688
  44490. }
  44491. },
  44492. },
  44493. [
  44494. {
  44495. name: "Normal Sized",
  44496. height: math.unit(1.85, "meters"),
  44497. default: true
  44498. },
  44499. {
  44500. name: "Quite Sizable",
  44501. height: math.unit(5, "meters")
  44502. },
  44503. {
  44504. name: "Rather Large",
  44505. height: math.unit(20, "meters")
  44506. },
  44507. {
  44508. name: "Macro",
  44509. height: math.unit(450, "meters")
  44510. },
  44511. {
  44512. name: "Giga",
  44513. height: math.unit(5, "km")
  44514. },
  44515. ]
  44516. ))
  44517. characterMakers.push(() => makeCharacter(
  44518. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44519. {
  44520. front: {
  44521. height: math.unit(6, "feet"),
  44522. weight: math.unit(200, "lb"),
  44523. name: "Front",
  44524. image: {
  44525. source: "./media/characters/blizzard/front.svg",
  44526. extra: 1136/990,
  44527. bottom: 136/1272
  44528. }
  44529. },
  44530. back: {
  44531. height: math.unit(6, "feet"),
  44532. weight: math.unit(200, "lb"),
  44533. name: "Back",
  44534. image: {
  44535. source: "./media/characters/blizzard/back.svg",
  44536. extra: 1175/1034,
  44537. bottom: 97/1272
  44538. }
  44539. },
  44540. sitting: {
  44541. height: math.unit(3.725, "feet"),
  44542. weight: math.unit(200, "lb"),
  44543. name: "Sitting",
  44544. image: {
  44545. source: "./media/characters/blizzard/sitting.svg",
  44546. extra: 581/485,
  44547. bottom: 90/671
  44548. }
  44549. },
  44550. frontWizard: {
  44551. height: math.unit(7.9, "feet"),
  44552. weight: math.unit(200, "lb"),
  44553. name: "Front (Wizard)",
  44554. image: {
  44555. source: "./media/characters/blizzard/front-wizard.svg"
  44556. }
  44557. },
  44558. backWizard: {
  44559. height: math.unit(7.9, "feet"),
  44560. weight: math.unit(200, "lb"),
  44561. name: "Back (Wizard)",
  44562. image: {
  44563. source: "./media/characters/blizzard/back-wizard.svg"
  44564. }
  44565. },
  44566. frontNsfw: {
  44567. height: math.unit(6, "feet"),
  44568. weight: math.unit(200, "lb"),
  44569. name: "Front (NSFW)",
  44570. image: {
  44571. source: "./media/characters/blizzard/front-nsfw.svg",
  44572. extra: 1136/990,
  44573. bottom: 136/1272
  44574. }
  44575. },
  44576. backNsfw: {
  44577. height: math.unit(6, "feet"),
  44578. weight: math.unit(200, "lb"),
  44579. name: "Back (NSFW)",
  44580. image: {
  44581. source: "./media/characters/blizzard/back-nsfw.svg",
  44582. extra: 1175/1034,
  44583. bottom: 97/1272
  44584. }
  44585. },
  44586. sittingNsfw: {
  44587. height: math.unit(3.725, "feet"),
  44588. weight: math.unit(200, "lb"),
  44589. name: "Sitting (NSFW)",
  44590. image: {
  44591. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44592. extra: 581/485,
  44593. bottom: 90/671
  44594. }
  44595. },
  44596. wizardFrontNsfw: {
  44597. height: math.unit(7.9, "feet"),
  44598. weight: math.unit(200, "lb"),
  44599. name: "Wizard (Front, NSFW)",
  44600. image: {
  44601. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44602. }
  44603. },
  44604. },
  44605. [
  44606. {
  44607. name: "Normal",
  44608. height: math.unit(6, "feet"),
  44609. default: true
  44610. },
  44611. ]
  44612. ))
  44613. characterMakers.push(() => makeCharacter(
  44614. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44615. {
  44616. front: {
  44617. height: math.unit(5 + 2/12, "feet"),
  44618. name: "Front",
  44619. image: {
  44620. source: "./media/characters/lumi/front.svg",
  44621. extra: 1328/1268,
  44622. bottom: 103/1431
  44623. }
  44624. },
  44625. back: {
  44626. height: math.unit(5 + 2/12, "feet"),
  44627. name: "Back",
  44628. image: {
  44629. source: "./media/characters/lumi/back.svg",
  44630. extra: 1381/1327,
  44631. bottom: 43/1424
  44632. }
  44633. },
  44634. },
  44635. [
  44636. {
  44637. name: "Normal",
  44638. height: math.unit(5 + 2/12, "feet"),
  44639. default: true
  44640. },
  44641. ]
  44642. ))
  44643. characterMakers.push(() => makeCharacter(
  44644. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44645. {
  44646. front: {
  44647. height: math.unit(5 + 9/12, "feet"),
  44648. name: "Front",
  44649. image: {
  44650. source: "./media/characters/aliya-cotton/front.svg",
  44651. extra: 577/564,
  44652. bottom: 29/606
  44653. }
  44654. },
  44655. },
  44656. [
  44657. {
  44658. name: "Normal",
  44659. height: math.unit(5 + 9/12, "feet"),
  44660. default: true
  44661. },
  44662. ]
  44663. ))
  44664. characterMakers.push(() => makeCharacter(
  44665. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44666. {
  44667. front: {
  44668. height: math.unit(2.7, "meters"),
  44669. weight: math.unit(25000, "lb"),
  44670. name: "Front",
  44671. image: {
  44672. source: "./media/characters/noah-luxray/front.svg",
  44673. extra: 1644/825,
  44674. bottom: 339/1983
  44675. }
  44676. },
  44677. side: {
  44678. height: math.unit(2.97, "meters"),
  44679. weight: math.unit(25000, "lb"),
  44680. name: "Side",
  44681. image: {
  44682. source: "./media/characters/noah-luxray/side.svg",
  44683. extra: 1319/650,
  44684. bottom: 163/1482
  44685. }
  44686. },
  44687. dick: {
  44688. height: math.unit(7.4, "feet"),
  44689. weight: math.unit(2500, "lb"),
  44690. name: "Dick",
  44691. image: {
  44692. source: "./media/characters/noah-luxray/dick.svg"
  44693. }
  44694. },
  44695. dickAlt: {
  44696. height: math.unit(10.83, "feet"),
  44697. weight: math.unit(2500, "lb"),
  44698. name: "Dick-alt",
  44699. image: {
  44700. source: "./media/characters/noah-luxray/dick-alt.svg"
  44701. }
  44702. },
  44703. },
  44704. [
  44705. {
  44706. name: "BIG",
  44707. height: math.unit(2.7, "meters"),
  44708. default: true
  44709. },
  44710. ]
  44711. ))
  44712. characterMakers.push(() => makeCharacter(
  44713. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44714. {
  44715. standing: {
  44716. height: math.unit(183, "cm"),
  44717. weight: math.unit(68, "kg"),
  44718. name: "Standing",
  44719. image: {
  44720. source: "./media/characters/arion/standing.svg",
  44721. extra: 1869/1807,
  44722. bottom: 93/1962
  44723. }
  44724. },
  44725. reclining: {
  44726. height: math.unit(70.5, "cm"),
  44727. weight: math.unit(68, "lb"),
  44728. name: "Reclining",
  44729. image: {
  44730. source: "./media/characters/arion/reclining.svg",
  44731. extra: 937/870,
  44732. bottom: 63/1000
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Colossus Size, Low",
  44739. height: math.unit(33, "meters"),
  44740. default: true
  44741. },
  44742. {
  44743. name: "Colossus Size, Mid",
  44744. height: math.unit(52, "meters")
  44745. },
  44746. {
  44747. name: "Colossus Size, High",
  44748. height: math.unit(60, "meters")
  44749. },
  44750. {
  44751. name: "Titan Size, Low",
  44752. height: math.unit(91, "meters"),
  44753. },
  44754. {
  44755. name: "Titan Size, Mid",
  44756. height: math.unit(122, "meters")
  44757. },
  44758. {
  44759. name: "Titan Size, High",
  44760. height: math.unit(162, "meters")
  44761. },
  44762. ]
  44763. ))
  44764. characterMakers.push(() => makeCharacter(
  44765. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44766. {
  44767. front: {
  44768. height: math.unit(53, "meters"),
  44769. name: "Front",
  44770. image: {
  44771. source: "./media/characters/stellar-marbey/front.svg",
  44772. extra: 1913/1805,
  44773. bottom: 92/2005
  44774. }
  44775. },
  44776. back: {
  44777. height: math.unit(53, "meters"),
  44778. name: "Back",
  44779. image: {
  44780. source: "./media/characters/stellar-marbey/back.svg",
  44781. extra: 1960/1851,
  44782. bottom: 28/1988
  44783. }
  44784. },
  44785. mouth: {
  44786. height: math.unit(3.5, "meters"),
  44787. name: "Mouth",
  44788. image: {
  44789. source: "./media/characters/stellar-marbey/mouth.svg"
  44790. }
  44791. },
  44792. },
  44793. [
  44794. {
  44795. name: "Macro",
  44796. height: math.unit(53, "meters"),
  44797. default: true
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(8 + 1/12, "feet"),
  44806. weight: math.unit(233, "lb"),
  44807. name: "Front",
  44808. image: {
  44809. source: "./media/characters/matsu/front.svg",
  44810. extra: 832/772,
  44811. bottom: 40/872
  44812. }
  44813. },
  44814. back: {
  44815. height: math.unit(8 + 1/12, "feet"),
  44816. weight: math.unit(233, "lb"),
  44817. name: "Back",
  44818. image: {
  44819. source: "./media/characters/matsu/back.svg",
  44820. extra: 839/780,
  44821. bottom: 47/886
  44822. }
  44823. },
  44824. },
  44825. [
  44826. {
  44827. name: "Normal",
  44828. height: math.unit(8 + 1/12, "feet"),
  44829. default: true
  44830. },
  44831. ]
  44832. ))
  44833. characterMakers.push(() => makeCharacter(
  44834. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44835. {
  44836. front: {
  44837. height: math.unit(4, "feet"),
  44838. weight: math.unit(148, "lb"),
  44839. name: "Front",
  44840. image: {
  44841. source: "./media/characters/thiz/front.svg",
  44842. extra: 1913/1748,
  44843. bottom: 62/1975
  44844. }
  44845. },
  44846. },
  44847. [
  44848. {
  44849. name: "Normal",
  44850. height: math.unit(4, "feet"),
  44851. default: true
  44852. },
  44853. ]
  44854. ))
  44855. characterMakers.push(() => makeCharacter(
  44856. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44857. {
  44858. front: {
  44859. height: math.unit(7 + 6/12, "feet"),
  44860. weight: math.unit(267, "lb"),
  44861. name: "Front",
  44862. image: {
  44863. source: "./media/characters/marcel/front.svg",
  44864. extra: 1221/1096,
  44865. bottom: 76/1297
  44866. }
  44867. },
  44868. },
  44869. [
  44870. {
  44871. name: "Normal",
  44872. height: math.unit(7 + 6/12, "feet"),
  44873. default: true
  44874. },
  44875. ]
  44876. ))
  44877. characterMakers.push(() => makeCharacter(
  44878. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44879. {
  44880. side: {
  44881. height: math.unit(42, "meters"),
  44882. name: "Side",
  44883. image: {
  44884. source: "./media/characters/flake/side.svg",
  44885. extra: 1525/1306,
  44886. bottom: 209/1734
  44887. }
  44888. },
  44889. },
  44890. [
  44891. {
  44892. name: "Normal",
  44893. height: math.unit(42, "meters"),
  44894. default: true
  44895. },
  44896. ]
  44897. ))
  44898. characterMakers.push(() => makeCharacter(
  44899. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44900. {
  44901. dressed: {
  44902. height: math.unit(6 + 4/12, "feet"),
  44903. weight: math.unit(520, "lb"),
  44904. name: "Dressed",
  44905. image: {
  44906. source: "./media/characters/someonne/dressed.svg",
  44907. extra: 1020/1010,
  44908. bottom: 178/1198
  44909. }
  44910. },
  44911. undressed: {
  44912. height: math.unit(6 + 4/12, "feet"),
  44913. weight: math.unit(520, "lb"),
  44914. name: "Undressed",
  44915. image: {
  44916. source: "./media/characters/someonne/undressed.svg",
  44917. extra: 1019/1014,
  44918. bottom: 169/1188
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Normal",
  44925. height: math.unit(6 + 4/12, "feet"),
  44926. default: true
  44927. },
  44928. ]
  44929. ))
  44930. characterMakers.push(() => makeCharacter(
  44931. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44932. {
  44933. front: {
  44934. height: math.unit(3, "feet"),
  44935. weight: math.unit(30, "lb"),
  44936. name: "Front",
  44937. image: {
  44938. source: "./media/characters/till/front.svg",
  44939. extra: 892/823,
  44940. bottom: 55/947
  44941. }
  44942. },
  44943. },
  44944. [
  44945. {
  44946. name: "Normal",
  44947. height: math.unit(3, "feet"),
  44948. default: true
  44949. },
  44950. ]
  44951. ))
  44952. characterMakers.push(() => makeCharacter(
  44953. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44954. {
  44955. front: {
  44956. height: math.unit(9 + 8/12, "feet"),
  44957. weight: math.unit(800, "lb"),
  44958. name: "Front",
  44959. image: {
  44960. source: "./media/characters/sydney-heki/front.svg",
  44961. extra: 1360/1300,
  44962. bottom: 22/1382
  44963. }
  44964. },
  44965. back: {
  44966. height: math.unit(9 + 8/12, "feet"),
  44967. weight: math.unit(800, "lb"),
  44968. name: "Back",
  44969. image: {
  44970. source: "./media/characters/sydney-heki/back.svg",
  44971. extra: 1356/1293,
  44972. bottom: 12/1368
  44973. }
  44974. },
  44975. frontDressed: {
  44976. height: math.unit(9 + 8/12, "feet"),
  44977. weight: math.unit(800, "lb"),
  44978. name: "Front-dressed",
  44979. image: {
  44980. source: "./media/characters/sydney-heki/front-dressed.svg",
  44981. extra: 1360/1300,
  44982. bottom: 22/1382
  44983. }
  44984. },
  44985. },
  44986. [
  44987. {
  44988. name: "Normal",
  44989. height: math.unit(9 + 8/12, "feet"),
  44990. default: true
  44991. },
  44992. {
  44993. name: "Macro",
  44994. height: math.unit(500, "feet")
  44995. },
  44996. {
  44997. name: "Megamacro",
  44998. height: math.unit(3.6, "miles")
  44999. },
  45000. ]
  45001. ))
  45002. characterMakers.push(() => makeCharacter(
  45003. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45004. {
  45005. front: {
  45006. height: math.unit(200, "cm"),
  45007. weight: math.unit(250, "lb"),
  45008. name: "Front",
  45009. image: {
  45010. source: "./media/characters/fowler-karlsson/front.svg",
  45011. extra: 897/845,
  45012. bottom: 123/1020
  45013. }
  45014. },
  45015. back: {
  45016. height: math.unit(200, "cm"),
  45017. weight: math.unit(250, "lb"),
  45018. name: "Back",
  45019. image: {
  45020. source: "./media/characters/fowler-karlsson/back.svg",
  45021. extra: 999/944,
  45022. bottom: 26/1025
  45023. }
  45024. },
  45025. dick: {
  45026. height: math.unit(1.92, "feet"),
  45027. weight: math.unit(150, "lb"),
  45028. name: "Dick",
  45029. image: {
  45030. source: "./media/characters/fowler-karlsson/dick.svg"
  45031. }
  45032. },
  45033. },
  45034. [
  45035. {
  45036. name: "Normal",
  45037. height: math.unit(200, "cm"),
  45038. default: true
  45039. },
  45040. {
  45041. name: "Smaller Macro",
  45042. height: math.unit(90, "m")
  45043. },
  45044. {
  45045. name: "Macro",
  45046. height: math.unit(150, "m")
  45047. },
  45048. {
  45049. name: "Bigger Macro",
  45050. height: math.unit(300, "m")
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45056. {
  45057. side: {
  45058. height: math.unit(8 + 2/12, "feet"),
  45059. weight: math.unit(1, "tonne"),
  45060. name: "Side",
  45061. image: {
  45062. source: "./media/characters/rylide/side.svg",
  45063. extra: 1318/1034,
  45064. bottom: 106/1424
  45065. }
  45066. },
  45067. sitting: {
  45068. height: math.unit(303, "cm"),
  45069. weight: math.unit(1, "tonne"),
  45070. name: "Sitting",
  45071. image: {
  45072. source: "./media/characters/rylide/sitting.svg",
  45073. extra: 1303/1103,
  45074. bottom: 36/1339
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Normal",
  45081. height: math.unit(8 + 2/12, "feet"),
  45082. default: true
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45088. {
  45089. front: {
  45090. height: math.unit(5 + 10/12, "feet"),
  45091. weight: math.unit(160, "lb"),
  45092. name: "Front",
  45093. image: {
  45094. source: "./media/characters/pudask/front.svg",
  45095. extra: 1616/1590,
  45096. bottom: 161/1777
  45097. }
  45098. },
  45099. },
  45100. [
  45101. {
  45102. name: "Ferret Height",
  45103. height: math.unit(2 + 5/12, "feet")
  45104. },
  45105. {
  45106. name: "Canon Height",
  45107. height: math.unit(5 + 10/12, "feet"),
  45108. default: true
  45109. },
  45110. ]
  45111. ))
  45112. characterMakers.push(() => makeCharacter(
  45113. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45114. {
  45115. front: {
  45116. height: math.unit(3 + 6/12, "feet"),
  45117. weight: math.unit(60, "lb"),
  45118. name: "Front",
  45119. image: {
  45120. source: "./media/characters/ramita/front.svg",
  45121. extra: 1402/1232,
  45122. bottom: 62/1464
  45123. }
  45124. },
  45125. dressed: {
  45126. height: math.unit(3 + 6/12, "feet"),
  45127. weight: math.unit(60, "lb"),
  45128. name: "Dressed",
  45129. image: {
  45130. source: "./media/characters/ramita/dressed.svg",
  45131. extra: 1534/1249,
  45132. bottom: 50/1584
  45133. }
  45134. },
  45135. },
  45136. [
  45137. {
  45138. name: "Normal",
  45139. height: math.unit(3 + 6/12, "feet"),
  45140. default: true
  45141. },
  45142. ]
  45143. ))
  45144. characterMakers.push(() => makeCharacter(
  45145. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45146. {
  45147. front: {
  45148. height: math.unit(8, "feet"),
  45149. name: "Front",
  45150. image: {
  45151. source: "./media/characters/ark/front.svg",
  45152. extra: 772/693,
  45153. bottom: 45/817
  45154. }
  45155. },
  45156. },
  45157. [
  45158. {
  45159. name: "Normal",
  45160. height: math.unit(8, "feet"),
  45161. default: true
  45162. },
  45163. ]
  45164. ))
  45165. characterMakers.push(() => makeCharacter(
  45166. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45167. {
  45168. front: {
  45169. height: math.unit(6, "feet"),
  45170. weight: math.unit(250, "lb"),
  45171. volume: math.unit(5/8, "gallons"),
  45172. name: "Front",
  45173. image: {
  45174. source: "./media/characters/ludwig-horn/front.svg",
  45175. extra: 1782/1635,
  45176. bottom: 96/1878
  45177. }
  45178. },
  45179. back: {
  45180. height: math.unit(6, "feet"),
  45181. weight: math.unit(250, "lb"),
  45182. volume: math.unit(5/8, "gallons"),
  45183. name: "Back",
  45184. image: {
  45185. source: "./media/characters/ludwig-horn/back.svg",
  45186. extra: 1874/1729,
  45187. bottom: 27/1901
  45188. }
  45189. },
  45190. dick: {
  45191. height: math.unit(1.05, "feet"),
  45192. weight: math.unit(15, "lb"),
  45193. volume: math.unit(5/8, "gallons"),
  45194. name: "Dick",
  45195. image: {
  45196. source: "./media/characters/ludwig-horn/dick.svg"
  45197. }
  45198. },
  45199. },
  45200. [
  45201. {
  45202. name: "Small",
  45203. height: math.unit(6, "feet")
  45204. },
  45205. {
  45206. name: "Typical",
  45207. height: math.unit(12, "feet"),
  45208. default: true
  45209. },
  45210. {
  45211. name: "Building",
  45212. height: math.unit(80, "feet")
  45213. },
  45214. {
  45215. name: "Town",
  45216. height: math.unit(800, "feet")
  45217. },
  45218. {
  45219. name: "Kingdom",
  45220. height: math.unit(80000, "feet")
  45221. },
  45222. {
  45223. name: "Planet",
  45224. height: math.unit(8000000, "feet")
  45225. },
  45226. {
  45227. name: "Universe",
  45228. height: math.unit(8000000000, "feet")
  45229. },
  45230. {
  45231. name: "Transcended",
  45232. height: math.unit(8e27, "feet")
  45233. },
  45234. ]
  45235. ))
  45236. characterMakers.push(() => makeCharacter(
  45237. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45238. {
  45239. front: {
  45240. height: math.unit(5, "feet"),
  45241. weight: math.unit(50, "kg"),
  45242. name: "Front",
  45243. image: {
  45244. source: "./media/characters/biot-avery/front.svg",
  45245. extra: 1295/1232,
  45246. bottom: 86/1381
  45247. }
  45248. },
  45249. },
  45250. [
  45251. {
  45252. name: "Normal",
  45253. height: math.unit(5, "feet"),
  45254. default: true
  45255. },
  45256. ]
  45257. ))
  45258. characterMakers.push(() => makeCharacter(
  45259. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45260. {
  45261. front: {
  45262. height: math.unit(6, "feet"),
  45263. name: "Front",
  45264. image: {
  45265. source: "./media/characters/kitsune-kiro/front.svg",
  45266. extra: 1270/1158,
  45267. bottom: 42/1312
  45268. }
  45269. },
  45270. frontAlt: {
  45271. height: math.unit(6, "feet"),
  45272. name: "Front-alt",
  45273. image: {
  45274. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45275. extra: 1130/1081,
  45276. bottom: 36/1166
  45277. }
  45278. },
  45279. },
  45280. [
  45281. {
  45282. name: "Smol",
  45283. height: math.unit(3, "feet")
  45284. },
  45285. {
  45286. name: "Normal",
  45287. height: math.unit(6, "feet"),
  45288. default: true
  45289. },
  45290. ]
  45291. ))
  45292. characterMakers.push(() => makeCharacter(
  45293. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45294. {
  45295. front: {
  45296. height: math.unit(6, "feet"),
  45297. weight: math.unit(125, "lb"),
  45298. name: "Front",
  45299. image: {
  45300. source: "./media/characters/jack-thatcher/front.svg",
  45301. extra: 1474/1370,
  45302. bottom: 26/1500
  45303. }
  45304. },
  45305. back: {
  45306. height: math.unit(6, "feet"),
  45307. weight: math.unit(125, "lb"),
  45308. name: "Back",
  45309. image: {
  45310. source: "./media/characters/jack-thatcher/back.svg",
  45311. extra: 1489/1384,
  45312. bottom: 18/1507
  45313. }
  45314. },
  45315. },
  45316. [
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(6, "feet"),
  45320. default: true
  45321. },
  45322. {
  45323. name: "Macro",
  45324. height: math.unit(75, "feet")
  45325. },
  45326. {
  45327. name: "Macro-er",
  45328. height: math.unit(250, "feet")
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45334. {
  45335. front: {
  45336. height: math.unit(7, "feet"),
  45337. weight: math.unit(110, "kg"),
  45338. name: "Front",
  45339. image: {
  45340. source: "./media/characters/max-hyper/front.svg",
  45341. extra: 1969/1881,
  45342. bottom: 49/2018
  45343. }
  45344. },
  45345. },
  45346. [
  45347. {
  45348. name: "Normal",
  45349. height: math.unit(7, "feet"),
  45350. default: true
  45351. },
  45352. ]
  45353. ))
  45354. characterMakers.push(() => makeCharacter(
  45355. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45356. {
  45357. front: {
  45358. height: math.unit(5 + 5/12, "feet"),
  45359. weight: math.unit(160, "lb"),
  45360. name: "Front",
  45361. image: {
  45362. source: "./media/characters/spook/front.svg",
  45363. extra: 794/791,
  45364. bottom: 54/848
  45365. }
  45366. },
  45367. back: {
  45368. height: math.unit(5 + 5/12, "feet"),
  45369. weight: math.unit(160, "lb"),
  45370. name: "Back",
  45371. image: {
  45372. source: "./media/characters/spook/back.svg",
  45373. extra: 812/798,
  45374. bottom: 32/844
  45375. }
  45376. },
  45377. },
  45378. [
  45379. {
  45380. name: "Normal",
  45381. height: math.unit(5 + 5/12, "feet"),
  45382. default: true
  45383. },
  45384. ]
  45385. ))
  45386. characterMakers.push(() => makeCharacter(
  45387. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45388. {
  45389. front: {
  45390. height: math.unit(18, "feet"),
  45391. name: "Front",
  45392. image: {
  45393. source: "./media/characters/xeaduulix/front.svg",
  45394. extra: 1380/1166,
  45395. bottom: 110/1490
  45396. }
  45397. },
  45398. back: {
  45399. height: math.unit(18, "feet"),
  45400. name: "Back",
  45401. image: {
  45402. source: "./media/characters/xeaduulix/back.svg",
  45403. extra: 1592/1170,
  45404. bottom: 128/1720
  45405. }
  45406. },
  45407. frontNsfw: {
  45408. height: math.unit(18, "feet"),
  45409. name: "Front (NSFW)",
  45410. image: {
  45411. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45412. extra: 1380/1166,
  45413. bottom: 110/1490
  45414. }
  45415. },
  45416. backNsfw: {
  45417. height: math.unit(18, "feet"),
  45418. name: "Back (NSFW)",
  45419. image: {
  45420. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45421. extra: 1592/1170,
  45422. bottom: 128/1720
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(18, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45436. {
  45437. spreadWings: {
  45438. height: math.unit(20, "feet"),
  45439. name: "Spread Wings",
  45440. image: {
  45441. source: "./media/characters/fledge/spread-wings.svg",
  45442. extra: 693/635,
  45443. bottom: 26/719
  45444. }
  45445. },
  45446. front: {
  45447. height: math.unit(20, "feet"),
  45448. name: "Front",
  45449. image: {
  45450. source: "./media/characters/fledge/front.svg",
  45451. extra: 684/637,
  45452. bottom: 18/702
  45453. }
  45454. },
  45455. frontAlt: {
  45456. height: math.unit(20, "feet"),
  45457. name: "Front (Alt)",
  45458. image: {
  45459. source: "./media/characters/fledge/front-alt.svg",
  45460. extra: 708/664,
  45461. bottom: 13/721
  45462. }
  45463. },
  45464. back: {
  45465. height: math.unit(20, "feet"),
  45466. name: "Back",
  45467. image: {
  45468. source: "./media/characters/fledge/back.svg",
  45469. extra: 718/634,
  45470. bottom: 22/740
  45471. }
  45472. },
  45473. head: {
  45474. height: math.unit(5.55, "feet"),
  45475. name: "Head",
  45476. image: {
  45477. source: "./media/characters/fledge/head.svg"
  45478. }
  45479. },
  45480. headAlt: {
  45481. height: math.unit(5.1, "feet"),
  45482. name: "Head (Alt)",
  45483. image: {
  45484. source: "./media/characters/fledge/head-alt.svg"
  45485. }
  45486. },
  45487. },
  45488. [
  45489. {
  45490. name: "Small",
  45491. height: math.unit(6 + 2/12, "feet")
  45492. },
  45493. {
  45494. name: "Big",
  45495. height: math.unit(20, "feet"),
  45496. default: true
  45497. },
  45498. {
  45499. name: "Giant",
  45500. height: math.unit(100, "feet")
  45501. },
  45502. {
  45503. name: "Macro",
  45504. height: math.unit(200, "feet")
  45505. },
  45506. ]
  45507. ))
  45508. characterMakers.push(() => makeCharacter(
  45509. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45510. {
  45511. front: {
  45512. height: math.unit(1, "meter"),
  45513. name: "Front",
  45514. image: {
  45515. source: "./media/characters/atlas-morenai/front.svg",
  45516. extra: 1275/1043,
  45517. bottom: 19/1294
  45518. }
  45519. },
  45520. back: {
  45521. height: math.unit(1, "meter"),
  45522. name: "Back",
  45523. image: {
  45524. source: "./media/characters/atlas-morenai/back.svg",
  45525. extra: 1141/1001,
  45526. bottom: 25/1166
  45527. }
  45528. },
  45529. },
  45530. [
  45531. {
  45532. name: "Normal",
  45533. height: math.unit(1, "meter"),
  45534. default: true
  45535. },
  45536. {
  45537. name: "Magic-Infused",
  45538. height: math.unit(5, "meters")
  45539. },
  45540. ]
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45544. {
  45545. front: {
  45546. height: math.unit(5, "meters"),
  45547. name: "Front",
  45548. image: {
  45549. source: "./media/characters/cintia/front.svg",
  45550. extra: 1312/1228,
  45551. bottom: 38/1350
  45552. }
  45553. },
  45554. back: {
  45555. height: math.unit(5, "meters"),
  45556. name: "Back",
  45557. image: {
  45558. source: "./media/characters/cintia/back.svg",
  45559. extra: 1260/1166,
  45560. bottom: 98/1358
  45561. }
  45562. },
  45563. frontDick: {
  45564. height: math.unit(5, "meters"),
  45565. name: "Front (Dick)",
  45566. image: {
  45567. source: "./media/characters/cintia/front-dick.svg",
  45568. extra: 1312/1228,
  45569. bottom: 38/1350
  45570. }
  45571. },
  45572. backDick: {
  45573. height: math.unit(5, "meters"),
  45574. name: "Back (Dick)",
  45575. image: {
  45576. source: "./media/characters/cintia/back-dick.svg",
  45577. extra: 1260/1166,
  45578. bottom: 98/1358
  45579. }
  45580. },
  45581. bust: {
  45582. height: math.unit(1.97, "meters"),
  45583. name: "Bust",
  45584. image: {
  45585. source: "./media/characters/cintia/bust.svg",
  45586. extra: 617/565,
  45587. bottom: 0/617
  45588. }
  45589. },
  45590. },
  45591. [
  45592. {
  45593. name: "Normal",
  45594. height: math.unit(5, "meters"),
  45595. default: true
  45596. },
  45597. ]
  45598. ))
  45599. characterMakers.push(() => makeCharacter(
  45600. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45601. {
  45602. side: {
  45603. height: math.unit(100, "feet"),
  45604. name: "Side",
  45605. image: {
  45606. source: "./media/characters/denora/side.svg",
  45607. extra: 875/803,
  45608. bottom: 9/884
  45609. }
  45610. },
  45611. },
  45612. [
  45613. {
  45614. name: "Standard",
  45615. height: math.unit(100, "feet"),
  45616. default: true
  45617. },
  45618. {
  45619. name: "Grand",
  45620. height: math.unit(1000, "feet")
  45621. },
  45622. {
  45623. name: "Conquering",
  45624. height: math.unit(10000, "feet")
  45625. },
  45626. ]
  45627. ))
  45628. characterMakers.push(() => makeCharacter(
  45629. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45630. {
  45631. dressed: {
  45632. height: math.unit(8 + 5/12, "feet"),
  45633. weight: math.unit(700, "lb"),
  45634. name: "Dressed",
  45635. image: {
  45636. source: "./media/characters/kiva/dressed.svg",
  45637. extra: 1102/1055,
  45638. bottom: 60/1162
  45639. }
  45640. },
  45641. nude: {
  45642. height: math.unit(8 + 5/12, "feet"),
  45643. weight: math.unit(700, "lb"),
  45644. name: "Nude",
  45645. image: {
  45646. source: "./media/characters/kiva/nude.svg",
  45647. extra: 1102/1055,
  45648. bottom: 60/1162
  45649. }
  45650. },
  45651. },
  45652. [
  45653. {
  45654. name: "Base Height",
  45655. height: math.unit(8 + 5/12, "feet"),
  45656. default: true
  45657. },
  45658. {
  45659. name: "Macro",
  45660. height: math.unit(100, "feet")
  45661. },
  45662. {
  45663. name: "Max",
  45664. height: math.unit(3280, "feet")
  45665. },
  45666. ]
  45667. ))
  45668. characterMakers.push(() => makeCharacter(
  45669. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45670. {
  45671. front: {
  45672. height: math.unit(6 + 8/12, "feet"),
  45673. weight: math.unit(250, "lb"),
  45674. name: "Front",
  45675. image: {
  45676. source: "./media/characters/ztragon/front.svg",
  45677. extra: 1825/1684,
  45678. bottom: 98/1923
  45679. }
  45680. },
  45681. },
  45682. [
  45683. {
  45684. name: "Normal",
  45685. height: math.unit(6 + 8/12, "feet"),
  45686. default: true
  45687. },
  45688. {
  45689. name: "Macro",
  45690. height: math.unit(80, "feet")
  45691. },
  45692. ]
  45693. ))
  45694. characterMakers.push(() => makeCharacter(
  45695. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45696. {
  45697. front: {
  45698. height: math.unit(10.4, "feet"),
  45699. weight: math.unit(2, "tons"),
  45700. name: "Front",
  45701. image: {
  45702. source: "./media/characters/yesenia/front.svg",
  45703. extra: 1479/1474,
  45704. bottom: 233/1712
  45705. }
  45706. },
  45707. },
  45708. [
  45709. {
  45710. name: "Normal",
  45711. height: math.unit(10.4, "feet"),
  45712. default: true
  45713. },
  45714. ]
  45715. ))
  45716. characterMakers.push(() => makeCharacter(
  45717. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45718. {
  45719. normal: {
  45720. height: math.unit(6 + 1/12, "feet"),
  45721. weight: math.unit(180, "lb"),
  45722. name: "Normal",
  45723. image: {
  45724. source: "./media/characters/leanne-lycheborne/normal.svg",
  45725. extra: 1748/1660,
  45726. bottom: 98/1846
  45727. }
  45728. },
  45729. were: {
  45730. height: math.unit(12, "feet"),
  45731. weight: math.unit(1600, "lb"),
  45732. name: "Were",
  45733. image: {
  45734. source: "./media/characters/leanne-lycheborne/were.svg",
  45735. extra: 1485/1432,
  45736. bottom: 66/1551
  45737. }
  45738. },
  45739. },
  45740. [
  45741. {
  45742. name: "Normal",
  45743. height: math.unit(6 + 1/12, "feet"),
  45744. default: true
  45745. },
  45746. ]
  45747. ))
  45748. characterMakers.push(() => makeCharacter(
  45749. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45750. {
  45751. side: {
  45752. height: math.unit(13, "feet"),
  45753. name: "Side",
  45754. image: {
  45755. source: "./media/characters/kira-tyler/side.svg",
  45756. extra: 693/393,
  45757. bottom: 58/751
  45758. }
  45759. },
  45760. },
  45761. [
  45762. {
  45763. name: "Normal",
  45764. height: math.unit(13, "feet"),
  45765. default: true
  45766. },
  45767. ]
  45768. ))
  45769. characterMakers.push(() => makeCharacter(
  45770. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45771. {
  45772. front: {
  45773. height: math.unit(10.3, "feet"),
  45774. weight: math.unit(150, "lb"),
  45775. name: "Front",
  45776. image: {
  45777. source: "./media/characters/blaze/front.svg",
  45778. extra: 1378/1286,
  45779. bottom: 172/1550
  45780. }
  45781. },
  45782. },
  45783. [
  45784. {
  45785. name: "Normal",
  45786. height: math.unit(10.3, "feet"),
  45787. default: true
  45788. },
  45789. ]
  45790. ))
  45791. characterMakers.push(() => makeCharacter(
  45792. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45793. {
  45794. side: {
  45795. height: math.unit(2, "meters"),
  45796. weight: math.unit(400, "kg"),
  45797. name: "Side",
  45798. image: {
  45799. source: "./media/characters/anu/side.svg",
  45800. extra: 506/394,
  45801. bottom: 18/524
  45802. }
  45803. },
  45804. },
  45805. [
  45806. {
  45807. name: "Humanoid",
  45808. height: math.unit(2, "meters")
  45809. },
  45810. {
  45811. name: "Normal",
  45812. height: math.unit(5, "meters"),
  45813. default: true
  45814. },
  45815. ]
  45816. ))
  45817. characterMakers.push(() => makeCharacter(
  45818. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45819. {
  45820. front: {
  45821. height: math.unit(5 + 5/12, "feet"),
  45822. weight: math.unit(170, "lb"),
  45823. name: "Front",
  45824. image: {
  45825. source: "./media/characters/synx-the-lynx/front.svg",
  45826. extra: 1893/1745,
  45827. bottom: 17/1910
  45828. }
  45829. },
  45830. side: {
  45831. height: math.unit(5 + 5/12, "feet"),
  45832. weight: math.unit(170, "lb"),
  45833. name: "Side",
  45834. image: {
  45835. source: "./media/characters/synx-the-lynx/side.svg",
  45836. extra: 1884/1740,
  45837. bottom: 39/1923
  45838. }
  45839. },
  45840. back: {
  45841. height: math.unit(5 + 5/12, "feet"),
  45842. weight: math.unit(170, "lb"),
  45843. name: "Back",
  45844. image: {
  45845. source: "./media/characters/synx-the-lynx/back.svg",
  45846. extra: 1903/1755,
  45847. bottom: 14/1917
  45848. }
  45849. },
  45850. },
  45851. [
  45852. {
  45853. name: "Normal",
  45854. height: math.unit(5 + 5/12, "feet"),
  45855. default: true
  45856. },
  45857. ]
  45858. ))
  45859. characterMakers.push(() => makeCharacter(
  45860. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45861. {
  45862. back: {
  45863. height: math.unit(15, "feet"),
  45864. name: "Back",
  45865. image: {
  45866. source: "./media/characters/nadezda-fex/back.svg",
  45867. extra: 1695/1481,
  45868. bottom: 25/1720
  45869. }
  45870. },
  45871. },
  45872. [
  45873. {
  45874. name: "Normal",
  45875. height: math.unit(15, "feet"),
  45876. default: true
  45877. },
  45878. {
  45879. name: "Macro",
  45880. height: math.unit(2.5, "miles")
  45881. },
  45882. {
  45883. name: "Goddess",
  45884. height: math.unit(2, "multiverses")
  45885. },
  45886. ]
  45887. ))
  45888. characterMakers.push(() => makeCharacter(
  45889. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45890. {
  45891. front: {
  45892. height: math.unit(216, "cm"),
  45893. name: "Front",
  45894. image: {
  45895. source: "./media/characters/lev/front.svg",
  45896. extra: 1728/1670,
  45897. bottom: 82/1810
  45898. }
  45899. },
  45900. back: {
  45901. height: math.unit(216, "cm"),
  45902. name: "Back",
  45903. image: {
  45904. source: "./media/characters/lev/back.svg",
  45905. extra: 1738/1675,
  45906. bottom: 24/1762
  45907. }
  45908. },
  45909. dressed: {
  45910. height: math.unit(216, "cm"),
  45911. name: "Dressed",
  45912. image: {
  45913. source: "./media/characters/lev/dressed.svg",
  45914. extra: 1397/1351,
  45915. bottom: 73/1470
  45916. }
  45917. },
  45918. head: {
  45919. height: math.unit(0.51, "meter"),
  45920. name: "Head",
  45921. image: {
  45922. source: "./media/characters/lev/head.svg"
  45923. }
  45924. },
  45925. },
  45926. [
  45927. {
  45928. name: "Normal",
  45929. height: math.unit(216, "cm"),
  45930. default: true
  45931. },
  45932. {
  45933. name: "Relatively Macro",
  45934. height: math.unit(80, "meters")
  45935. },
  45936. {
  45937. name: "Megamacro",
  45938. height: math.unit(21600, "meters")
  45939. },
  45940. {
  45941. name: "Megamacro+",
  45942. height: math.unit(64800, "meters")
  45943. },
  45944. ]
  45945. ))
  45946. characterMakers.push(() => makeCharacter(
  45947. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45948. {
  45949. front: {
  45950. height: math.unit(2, "meters"),
  45951. weight: math.unit(80, "kg"),
  45952. name: "Front",
  45953. image: {
  45954. source: "./media/characters/moka/front.svg",
  45955. extra: 1337/1255,
  45956. bottom: 58/1395
  45957. }
  45958. },
  45959. },
  45960. [
  45961. {
  45962. name: "Micro",
  45963. height: math.unit(15, "cm")
  45964. },
  45965. {
  45966. name: "Normal",
  45967. height: math.unit(2, "meters"),
  45968. default: true
  45969. },
  45970. {
  45971. name: "Macro",
  45972. height: math.unit(20, "meters"),
  45973. },
  45974. ]
  45975. ))
  45976. characterMakers.push(() => makeCharacter(
  45977. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45978. {
  45979. front: {
  45980. height: math.unit(9, "feet"),
  45981. weight: math.unit(240, "lb"),
  45982. name: "Front",
  45983. image: {
  45984. source: "./media/characters/kuzco/front.svg",
  45985. extra: 1593/1487,
  45986. bottom: 32/1625
  45987. }
  45988. },
  45989. side: {
  45990. height: math.unit(9, "feet"),
  45991. weight: math.unit(240, "lb"),
  45992. name: "Side",
  45993. image: {
  45994. source: "./media/characters/kuzco/side.svg",
  45995. extra: 1575/1485,
  45996. bottom: 30/1605
  45997. }
  45998. },
  45999. back: {
  46000. height: math.unit(9, "feet"),
  46001. weight: math.unit(240, "lb"),
  46002. name: "Back",
  46003. image: {
  46004. source: "./media/characters/kuzco/back.svg",
  46005. extra: 1603/1514,
  46006. bottom: 14/1617
  46007. }
  46008. },
  46009. },
  46010. [
  46011. {
  46012. name: "Normal",
  46013. height: math.unit(9, "feet"),
  46014. default: true
  46015. },
  46016. ]
  46017. ))
  46018. characterMakers.push(() => makeCharacter(
  46019. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46020. {
  46021. side: {
  46022. height: math.unit(2, "meters"),
  46023. weight: math.unit(300, "kg"),
  46024. name: "Side",
  46025. image: {
  46026. source: "./media/characters/ceruleus/side.svg",
  46027. extra: 1068/974,
  46028. bottom: 126/1194
  46029. }
  46030. },
  46031. },
  46032. [
  46033. {
  46034. name: "Normal",
  46035. height: math.unit(16, "meters"),
  46036. default: true
  46037. },
  46038. ]
  46039. ))
  46040. characterMakers.push(() => makeCharacter(
  46041. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46042. {
  46043. front: {
  46044. height: math.unit(9, "feet"),
  46045. weight: math.unit(500, "kg"),
  46046. name: "Front",
  46047. image: {
  46048. source: "./media/characters/acouya/front.svg",
  46049. extra: 1660/1473,
  46050. bottom: 28/1688
  46051. }
  46052. },
  46053. },
  46054. [
  46055. {
  46056. name: "Normal",
  46057. height: math.unit(9, "feet"),
  46058. default: true
  46059. },
  46060. ]
  46061. ))
  46062. characterMakers.push(() => makeCharacter(
  46063. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46064. {
  46065. front: {
  46066. height: math.unit(5 + 6/12, "feet"),
  46067. weight: math.unit(195, "lb"),
  46068. name: "Front",
  46069. image: {
  46070. source: "./media/characters/vant/front.svg",
  46071. extra: 1396/1320,
  46072. bottom: 20/1416
  46073. }
  46074. },
  46075. back: {
  46076. height: math.unit(5 + 6/12, "feet"),
  46077. weight: math.unit(195, "lb"),
  46078. name: "Back",
  46079. image: {
  46080. source: "./media/characters/vant/back.svg",
  46081. extra: 1396/1320,
  46082. bottom: 20/1416
  46083. }
  46084. },
  46085. maw: {
  46086. height: math.unit(0.75, "feet"),
  46087. name: "Maw",
  46088. image: {
  46089. source: "./media/characters/vant/maw.svg"
  46090. }
  46091. },
  46092. paw: {
  46093. height: math.unit(1.07, "feet"),
  46094. name: "Paw",
  46095. image: {
  46096. source: "./media/characters/vant/paw.svg"
  46097. }
  46098. },
  46099. },
  46100. [
  46101. {
  46102. name: "Micro",
  46103. height: math.unit(0.25, "inches")
  46104. },
  46105. {
  46106. name: "Normal",
  46107. height: math.unit(5 + 6/12, "feet"),
  46108. default: true
  46109. },
  46110. {
  46111. name: "Macro",
  46112. height: math.unit(75, "feet")
  46113. },
  46114. ]
  46115. ))
  46116. characterMakers.push(() => makeCharacter(
  46117. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46118. {
  46119. front: {
  46120. height: math.unit(30, "meters"),
  46121. weight: math.unit(363, "tons"),
  46122. name: "Front",
  46123. image: {
  46124. source: "./media/characters/ahra/front.svg",
  46125. extra: 1914/1814,
  46126. bottom: 46/1960
  46127. }
  46128. },
  46129. },
  46130. [
  46131. {
  46132. name: "Macro",
  46133. height: math.unit(30, "meters"),
  46134. default: true
  46135. },
  46136. ]
  46137. ))
  46138. characterMakers.push(() => makeCharacter(
  46139. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46140. {
  46141. undressed: {
  46142. height: math.unit(2, "m"),
  46143. weight: math.unit(250, "kg"),
  46144. name: "Undressed",
  46145. image: {
  46146. source: "./media/characters/coriander/undressed.svg",
  46147. extra: 1757/1606,
  46148. bottom: 107/1864
  46149. }
  46150. },
  46151. dressed: {
  46152. height: math.unit(2, "m"),
  46153. weight: math.unit(250, "kg"),
  46154. name: "Dressed",
  46155. image: {
  46156. source: "./media/characters/coriander/dressed.svg",
  46157. extra: 1757/1606,
  46158. bottom: 107/1864
  46159. }
  46160. },
  46161. },
  46162. [
  46163. {
  46164. name: "Normal",
  46165. height: math.unit(4, "meters"),
  46166. default: true
  46167. },
  46168. {
  46169. name: "XL",
  46170. height: math.unit(6, "meters")
  46171. },
  46172. {
  46173. name: "XXL",
  46174. height: math.unit(8, "meters")
  46175. },
  46176. ]
  46177. ))
  46178. characterMakers.push(() => makeCharacter(
  46179. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46180. {
  46181. front: {
  46182. height: math.unit(6, "feet"),
  46183. name: "Front",
  46184. image: {
  46185. source: "./media/characters/syrinx/front.svg",
  46186. extra: 1557/1259,
  46187. bottom: 171/1728
  46188. }
  46189. },
  46190. },
  46191. [
  46192. {
  46193. name: "Normal",
  46194. height: math.unit(6 + 3/12, "feet"),
  46195. default: true
  46196. },
  46197. ]
  46198. ))
  46199. characterMakers.push(() => makeCharacter(
  46200. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46201. {
  46202. front: {
  46203. height: math.unit(11 + 6/12, "feet"),
  46204. weight: math.unit(1.5, "tons"),
  46205. name: "Front",
  46206. image: {
  46207. source: "./media/characters/bor/front.svg",
  46208. extra: 1189/1109,
  46209. bottom: 170/1359
  46210. }
  46211. },
  46212. },
  46213. [
  46214. {
  46215. name: "Normal",
  46216. height: math.unit(11 + 6/12, "feet"),
  46217. default: true
  46218. },
  46219. {
  46220. name: "Macro",
  46221. height: math.unit(32 + 9/12, "feet")
  46222. },
  46223. ]
  46224. ))
  46225. characterMakers.push(() => makeCharacter(
  46226. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46227. {
  46228. anthro: {
  46229. height: math.unit(9, "feet"),
  46230. weight: math.unit(2076, "lb"),
  46231. name: "Anthro",
  46232. image: {
  46233. source: "./media/characters/abacus/anthro.svg",
  46234. extra: 1540/1494,
  46235. bottom: 233/1773
  46236. }
  46237. },
  46238. pigeon: {
  46239. height: math.unit(1, "feet"),
  46240. name: "Pigeon",
  46241. image: {
  46242. source: "./media/characters/abacus/pigeon.svg",
  46243. extra: 528/525,
  46244. bottom: 46/574
  46245. }
  46246. },
  46247. },
  46248. [
  46249. {
  46250. name: "Normal",
  46251. height: math.unit(9, "feet"),
  46252. default: true
  46253. },
  46254. ]
  46255. ))
  46256. characterMakers.push(() => makeCharacter(
  46257. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46258. {
  46259. side: {
  46260. height: math.unit(6, "feet"),
  46261. name: "Side",
  46262. image: {
  46263. source: "./media/characters/delkhan/side.svg",
  46264. extra: 1884/1786,
  46265. bottom: 308/2192
  46266. }
  46267. },
  46268. head: {
  46269. height: math.unit(3.38, "feet"),
  46270. name: "Head",
  46271. image: {
  46272. source: "./media/characters/delkhan/head.svg"
  46273. }
  46274. },
  46275. },
  46276. [
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(72, "feet"),
  46280. default: true
  46281. },
  46282. {
  46283. name: "Giant",
  46284. height: math.unit(172, "feet")
  46285. },
  46286. ]
  46287. ))
  46288. characterMakers.push(() => makeCharacter(
  46289. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46290. {
  46291. standing: {
  46292. height: math.unit(6, "feet"),
  46293. name: "Standing",
  46294. image: {
  46295. source: "./media/characters/euchidat/standing.svg",
  46296. extra: 1612/1553,
  46297. bottom: 116/1728
  46298. }
  46299. },
  46300. leaning: {
  46301. height: math.unit(6, "feet"),
  46302. name: "Leaning",
  46303. image: {
  46304. source: "./media/characters/euchidat/leaning.svg",
  46305. extra: 1719/1674,
  46306. bottom: 27/1746
  46307. }
  46308. },
  46309. },
  46310. [
  46311. {
  46312. name: "Normal",
  46313. height: math.unit(175, "feet"),
  46314. default: true
  46315. },
  46316. {
  46317. name: "Megamacro",
  46318. height: math.unit(190, "miles")
  46319. },
  46320. {
  46321. name: "Gigamacro",
  46322. height: math.unit(190000, "miles")
  46323. },
  46324. ]
  46325. ))
  46326. characterMakers.push(() => makeCharacter(
  46327. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46328. {
  46329. front: {
  46330. height: math.unit(6, "feet"),
  46331. weight: math.unit(150, "lb"),
  46332. name: "Front",
  46333. image: {
  46334. source: "./media/characters/rebecca-stack/front.svg",
  46335. extra: 1256/1201,
  46336. bottom: 18/1274
  46337. }
  46338. },
  46339. },
  46340. [
  46341. {
  46342. name: "Normal",
  46343. height: math.unit(5 + 8/12, "feet"),
  46344. default: true
  46345. },
  46346. {
  46347. name: "Demolitionist",
  46348. height: math.unit(200, "feet")
  46349. },
  46350. {
  46351. name: "Out of Control",
  46352. height: math.unit(2, "miles")
  46353. },
  46354. {
  46355. name: "Giga",
  46356. height: math.unit(7200, "miles")
  46357. },
  46358. ]
  46359. ))
  46360. characterMakers.push(() => makeCharacter(
  46361. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46362. {
  46363. front: {
  46364. height: math.unit(6, "feet"),
  46365. weight: math.unit(150, "lb"),
  46366. name: "Front",
  46367. image: {
  46368. source: "./media/characters/jenny-cartwright/front.svg",
  46369. extra: 1384/1376,
  46370. bottom: 58/1442
  46371. }
  46372. },
  46373. },
  46374. [
  46375. {
  46376. name: "Normal",
  46377. height: math.unit(6 + 7/12, "feet"),
  46378. default: true
  46379. },
  46380. {
  46381. name: "Librarian",
  46382. height: math.unit(55, "feet")
  46383. },
  46384. {
  46385. name: "Sightseer",
  46386. height: math.unit(50, "miles")
  46387. },
  46388. {
  46389. name: "Giga",
  46390. height: math.unit(30000, "miles")
  46391. },
  46392. ]
  46393. ))
  46394. characterMakers.push(() => makeCharacter(
  46395. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46396. {
  46397. nude: {
  46398. height: math.unit(8, "feet"),
  46399. weight: math.unit(225, "lb"),
  46400. name: "Nude",
  46401. image: {
  46402. source: "./media/characters/marvy/nude.svg",
  46403. extra: 1900/1683,
  46404. bottom: 89/1989
  46405. }
  46406. },
  46407. dressed: {
  46408. height: math.unit(8, "feet"),
  46409. weight: math.unit(225, "lb"),
  46410. name: "Dressed",
  46411. image: {
  46412. source: "./media/characters/marvy/dressed.svg",
  46413. extra: 1900/1683,
  46414. bottom: 89/1989
  46415. }
  46416. },
  46417. head: {
  46418. height: math.unit(2.85, "feet"),
  46419. name: "Head",
  46420. image: {
  46421. source: "./media/characters/marvy/head.svg"
  46422. }
  46423. },
  46424. },
  46425. [
  46426. {
  46427. name: "Normal",
  46428. height: math.unit(8, "feet"),
  46429. default: true
  46430. },
  46431. ]
  46432. ))
  46433. characterMakers.push(() => makeCharacter(
  46434. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46435. {
  46436. front: {
  46437. height: math.unit(8, "feet"),
  46438. weight: math.unit(250, "lb"),
  46439. name: "Front",
  46440. image: {
  46441. source: "./media/characters/leah/front.svg",
  46442. extra: 1257/1149,
  46443. bottom: 109/1366
  46444. }
  46445. },
  46446. },
  46447. [
  46448. {
  46449. name: "Normal",
  46450. height: math.unit(8, "feet"),
  46451. default: true
  46452. },
  46453. {
  46454. name: "Minimacro",
  46455. height: math.unit(40, "feet")
  46456. },
  46457. {
  46458. name: "Macro",
  46459. height: math.unit(124, "feet")
  46460. },
  46461. {
  46462. name: "Megamacro",
  46463. height: math.unit(850, "feet")
  46464. },
  46465. ]
  46466. ))
  46467. characterMakers.push(() => makeCharacter(
  46468. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46469. {
  46470. side: {
  46471. height: math.unit(13 + 6/12, "feet"),
  46472. weight: math.unit(3200, "lb"),
  46473. name: "Side",
  46474. image: {
  46475. source: "./media/characters/alvir/side.svg",
  46476. extra: 896/589,
  46477. bottom: 26/922
  46478. }
  46479. },
  46480. },
  46481. [
  46482. {
  46483. name: "Normal",
  46484. height: math.unit(13 + 6/12, "feet"),
  46485. default: true
  46486. },
  46487. ]
  46488. ))
  46489. characterMakers.push(() => makeCharacter(
  46490. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46491. {
  46492. front: {
  46493. height: math.unit(5 + 4/12, "feet"),
  46494. weight: math.unit(236, "lb"),
  46495. name: "Front",
  46496. image: {
  46497. source: "./media/characters/zaina-khalil/front.svg",
  46498. extra: 1533/1485,
  46499. bottom: 94/1627
  46500. }
  46501. },
  46502. side: {
  46503. height: math.unit(5 + 4/12, "feet"),
  46504. weight: math.unit(236, "lb"),
  46505. name: "Side",
  46506. image: {
  46507. source: "./media/characters/zaina-khalil/side.svg",
  46508. extra: 1537/1498,
  46509. bottom: 66/1603
  46510. }
  46511. },
  46512. back: {
  46513. height: math.unit(5 + 4/12, "feet"),
  46514. weight: math.unit(236, "lb"),
  46515. name: "Back",
  46516. image: {
  46517. source: "./media/characters/zaina-khalil/back.svg",
  46518. extra: 1546/1494,
  46519. bottom: 89/1635
  46520. }
  46521. },
  46522. },
  46523. [
  46524. {
  46525. name: "Normal",
  46526. height: math.unit(5 + 4/12, "feet"),
  46527. default: true
  46528. },
  46529. ]
  46530. ))
  46531. characterMakers.push(() => makeCharacter(
  46532. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46533. {
  46534. side: {
  46535. height: math.unit(12, "feet"),
  46536. weight: math.unit(4000, "lb"),
  46537. name: "Side",
  46538. image: {
  46539. source: "./media/characters/terry/side.svg",
  46540. extra: 1518/1439,
  46541. bottom: 149/1667
  46542. }
  46543. },
  46544. },
  46545. [
  46546. {
  46547. name: "Normal",
  46548. height: math.unit(12, "feet"),
  46549. default: true
  46550. },
  46551. ]
  46552. ))
  46553. characterMakers.push(() => makeCharacter(
  46554. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46555. {
  46556. front: {
  46557. height: math.unit(12, "feet"),
  46558. weight: math.unit(1500, "lb"),
  46559. name: "Front",
  46560. image: {
  46561. source: "./media/characters/kahea/front.svg",
  46562. extra: 1722/1617,
  46563. bottom: 179/1901
  46564. }
  46565. },
  46566. },
  46567. [
  46568. {
  46569. name: "Normal",
  46570. height: math.unit(12, "feet"),
  46571. default: true
  46572. },
  46573. ]
  46574. ))
  46575. characterMakers.push(() => makeCharacter(
  46576. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46577. {
  46578. demonFront: {
  46579. height: math.unit(36, "feet"),
  46580. name: "Front",
  46581. image: {
  46582. source: "./media/characters/alex-xuria/demon-front.svg",
  46583. extra: 1705/1673,
  46584. bottom: 198/1903
  46585. },
  46586. form: "demon",
  46587. default: true
  46588. },
  46589. demonBack: {
  46590. height: math.unit(36, "feet"),
  46591. name: "Back",
  46592. image: {
  46593. source: "./media/characters/alex-xuria/demon-back.svg",
  46594. extra: 1725/1693,
  46595. bottom: 70/1795
  46596. },
  46597. form: "demon"
  46598. },
  46599. demonHead: {
  46600. height: math.unit(2.14, "meters"),
  46601. name: "Head",
  46602. image: {
  46603. source: "./media/characters/alex-xuria/demon-head.svg"
  46604. },
  46605. form: "demon"
  46606. },
  46607. demonHand: {
  46608. height: math.unit(1.61, "meters"),
  46609. name: "Hand",
  46610. image: {
  46611. source: "./media/characters/alex-xuria/demon-hand.svg"
  46612. },
  46613. form: "demon"
  46614. },
  46615. demonPaw: {
  46616. height: math.unit(1.35, "meters"),
  46617. name: "Paw",
  46618. image: {
  46619. source: "./media/characters/alex-xuria/demon-paw.svg"
  46620. },
  46621. form: "demon"
  46622. },
  46623. demonFoot: {
  46624. height: math.unit(2.2, "meters"),
  46625. name: "Foot",
  46626. image: {
  46627. source: "./media/characters/alex-xuria/demon-foot.svg"
  46628. },
  46629. form: "demon"
  46630. },
  46631. demonCock: {
  46632. height: math.unit(1.74, "meters"),
  46633. name: "Cock",
  46634. image: {
  46635. source: "./media/characters/alex-xuria/demon-cock.svg"
  46636. },
  46637. form: "demon"
  46638. },
  46639. demonTailClosed: {
  46640. height: math.unit(1.47, "meters"),
  46641. name: "Tail (Closed)",
  46642. image: {
  46643. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46644. },
  46645. form: "demon"
  46646. },
  46647. demonTailOpen: {
  46648. height: math.unit(2.85, "meters"),
  46649. name: "Tail (Open)",
  46650. image: {
  46651. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46652. },
  46653. form: "demon"
  46654. },
  46655. incubusFront: {
  46656. height: math.unit(12, "feet"),
  46657. name: "Front",
  46658. image: {
  46659. source: "./media/characters/alex-xuria/incubus-front.svg",
  46660. extra: 1754/1677,
  46661. bottom: 125/1879
  46662. },
  46663. form: "incubus",
  46664. default: true
  46665. },
  46666. incubusBack: {
  46667. height: math.unit(12, "feet"),
  46668. name: "Back",
  46669. image: {
  46670. source: "./media/characters/alex-xuria/incubus-back.svg",
  46671. extra: 1702/1647,
  46672. bottom: 30/1732
  46673. },
  46674. form: "incubus"
  46675. },
  46676. incubusHead: {
  46677. height: math.unit(3.45, "feet"),
  46678. name: "Head",
  46679. image: {
  46680. source: "./media/characters/alex-xuria/incubus-head.svg"
  46681. },
  46682. form: "incubus"
  46683. },
  46684. rabbitFront: {
  46685. height: math.unit(6, "feet"),
  46686. name: "Front",
  46687. image: {
  46688. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46689. extra: 1369/1349,
  46690. bottom: 45/1414
  46691. },
  46692. form: "rabbit",
  46693. default: true
  46694. },
  46695. rabbitSide: {
  46696. height: math.unit(6, "feet"),
  46697. name: "Side",
  46698. image: {
  46699. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46700. extra: 1370/1356,
  46701. bottom: 37/1407
  46702. },
  46703. form: "rabbit"
  46704. },
  46705. rabbitBack: {
  46706. height: math.unit(6, "feet"),
  46707. name: "Back",
  46708. image: {
  46709. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46710. extra: 1375/1358,
  46711. bottom: 43/1418
  46712. },
  46713. form: "rabbit"
  46714. },
  46715. },
  46716. [
  46717. {
  46718. name: "Normal",
  46719. height: math.unit(6, "feet"),
  46720. default: true,
  46721. form: "rabbit"
  46722. },
  46723. {
  46724. name: "Incubus",
  46725. height: math.unit(12, "feet"),
  46726. default: true,
  46727. form: "incubus"
  46728. },
  46729. {
  46730. name: "Demon",
  46731. height: math.unit(36, "feet"),
  46732. default: true,
  46733. form: "demon"
  46734. }
  46735. ],
  46736. {
  46737. "demon": {
  46738. name: "Demon",
  46739. default: true
  46740. },
  46741. "incubus": {
  46742. name: "Incubus",
  46743. },
  46744. "rabbit": {
  46745. name: "Rabbit"
  46746. }
  46747. }
  46748. ))
  46749. characterMakers.push(() => makeCharacter(
  46750. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46751. {
  46752. front: {
  46753. height: math.unit(7 + 5/12, "feet"),
  46754. weight: math.unit(510, "lb"),
  46755. name: "Front",
  46756. image: {
  46757. source: "./media/characters/syrup/front.svg",
  46758. extra: 932/916,
  46759. bottom: 26/958
  46760. }
  46761. },
  46762. },
  46763. [
  46764. {
  46765. name: "Normal",
  46766. height: math.unit(7 + 5/12, "feet"),
  46767. default: true
  46768. },
  46769. {
  46770. name: "Big",
  46771. height: math.unit(50, "feet")
  46772. },
  46773. {
  46774. name: "Macro",
  46775. height: math.unit(300, "feet")
  46776. },
  46777. {
  46778. name: "Megamacro",
  46779. height: math.unit(1, "mile")
  46780. },
  46781. ]
  46782. ))
  46783. characterMakers.push(() => makeCharacter(
  46784. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46785. {
  46786. front: {
  46787. height: math.unit(6 + 9/12, "feet"),
  46788. name: "Front",
  46789. image: {
  46790. source: "./media/characters/zeimne/front.svg",
  46791. extra: 1969/1806,
  46792. bottom: 53/2022
  46793. }
  46794. },
  46795. },
  46796. [
  46797. {
  46798. name: "Normal",
  46799. height: math.unit(6 + 9/12, "feet"),
  46800. default: true
  46801. },
  46802. {
  46803. name: "Giant",
  46804. height: math.unit(550, "feet")
  46805. },
  46806. {
  46807. name: "Mega",
  46808. height: math.unit(3, "miles")
  46809. },
  46810. {
  46811. name: "Giga",
  46812. height: math.unit(250, "miles")
  46813. },
  46814. {
  46815. name: "Tera",
  46816. height: math.unit(1, "AU")
  46817. },
  46818. ]
  46819. ))
  46820. characterMakers.push(() => makeCharacter(
  46821. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46822. {
  46823. front: {
  46824. height: math.unit(5 + 2/12, "feet"),
  46825. name: "Front",
  46826. image: {
  46827. source: "./media/characters/grar/front.svg",
  46828. extra: 1331/1119,
  46829. bottom: 60/1391
  46830. }
  46831. },
  46832. back: {
  46833. height: math.unit(5 + 2/12, "feet"),
  46834. name: "Back",
  46835. image: {
  46836. source: "./media/characters/grar/back.svg",
  46837. extra: 1385/1169,
  46838. bottom: 23/1408
  46839. }
  46840. },
  46841. },
  46842. [
  46843. {
  46844. name: "Normal",
  46845. height: math.unit(5 + 2/12, "feet"),
  46846. default: true
  46847. },
  46848. ]
  46849. ))
  46850. characterMakers.push(() => makeCharacter(
  46851. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46852. {
  46853. front: {
  46854. height: math.unit(13 + 7/12, "feet"),
  46855. weight: math.unit(2200, "lb"),
  46856. name: "Front",
  46857. image: {
  46858. source: "./media/characters/endraya/front.svg",
  46859. extra: 1289/1215,
  46860. bottom: 50/1339
  46861. }
  46862. },
  46863. nude: {
  46864. height: math.unit(13 + 7/12, "feet"),
  46865. weight: math.unit(2200, "lb"),
  46866. name: "Nude",
  46867. image: {
  46868. source: "./media/characters/endraya/nude.svg",
  46869. extra: 1247/1171,
  46870. bottom: 40/1287
  46871. }
  46872. },
  46873. head: {
  46874. height: math.unit(2.6, "feet"),
  46875. name: "Head",
  46876. image: {
  46877. source: "./media/characters/endraya/head.svg"
  46878. }
  46879. },
  46880. slit: {
  46881. height: math.unit(3.4, "feet"),
  46882. name: "Slit",
  46883. image: {
  46884. source: "./media/characters/endraya/slit.svg"
  46885. }
  46886. },
  46887. },
  46888. [
  46889. {
  46890. name: "Normal",
  46891. height: math.unit(13 + 7/12, "feet"),
  46892. default: true
  46893. },
  46894. {
  46895. name: "Macro",
  46896. height: math.unit(200, "feet")
  46897. },
  46898. ]
  46899. ))
  46900. characterMakers.push(() => makeCharacter(
  46901. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46902. {
  46903. front: {
  46904. height: math.unit(1.81, "meters"),
  46905. weight: math.unit(69, "kg"),
  46906. name: "Front",
  46907. image: {
  46908. source: "./media/characters/rodryana/front.svg",
  46909. extra: 2002/1921,
  46910. bottom: 53/2055
  46911. }
  46912. },
  46913. back: {
  46914. height: math.unit(1.81, "meters"),
  46915. weight: math.unit(69, "kg"),
  46916. name: "Back",
  46917. image: {
  46918. source: "./media/characters/rodryana/back.svg",
  46919. extra: 1993/1926,
  46920. bottom: 48/2041
  46921. }
  46922. },
  46923. maw: {
  46924. height: math.unit(0.19769417475, "meters"),
  46925. name: "Maw",
  46926. image: {
  46927. source: "./media/characters/rodryana/maw.svg"
  46928. }
  46929. },
  46930. slit: {
  46931. height: math.unit(0.31631067961, "meters"),
  46932. name: "Slit",
  46933. image: {
  46934. source: "./media/characters/rodryana/slit.svg"
  46935. }
  46936. },
  46937. },
  46938. [
  46939. {
  46940. name: "Normal",
  46941. height: math.unit(1.81, "meters")
  46942. },
  46943. {
  46944. name: "Mini Macro",
  46945. height: math.unit(181, "meters")
  46946. },
  46947. {
  46948. name: "Macro",
  46949. height: math.unit(452, "meters"),
  46950. default: true
  46951. },
  46952. {
  46953. name: "Mega Macro",
  46954. height: math.unit(1.375, "km")
  46955. },
  46956. {
  46957. name: "Giga Macro",
  46958. height: math.unit(13.575, "km")
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46964. {
  46965. front: {
  46966. height: math.unit(6, "feet"),
  46967. weight: math.unit(1000, "lb"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/asaya/front.svg",
  46971. extra: 1460/1200,
  46972. bottom: 71/1531
  46973. }
  46974. },
  46975. },
  46976. [
  46977. {
  46978. name: "Normal",
  46979. height: math.unit(8, "km"),
  46980. default: true
  46981. },
  46982. ]
  46983. ))
  46984. characterMakers.push(() => makeCharacter(
  46985. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46986. {
  46987. front: {
  46988. height: math.unit(3.5, "meters"),
  46989. name: "Front",
  46990. image: {
  46991. source: "./media/characters/sarzu-and-israz/front.svg",
  46992. extra: 1570/1558,
  46993. bottom: 150/1720
  46994. },
  46995. },
  46996. back: {
  46997. height: math.unit(3.5, "meters"),
  46998. name: "Back",
  46999. image: {
  47000. source: "./media/characters/sarzu-and-israz/back.svg",
  47001. extra: 1523/1509,
  47002. bottom: 132/1655
  47003. },
  47004. },
  47005. frontFemale: {
  47006. height: math.unit(3.5, "meters"),
  47007. name: "Front (Female)",
  47008. image: {
  47009. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47010. extra: 1570/1558,
  47011. bottom: 150/1720
  47012. },
  47013. },
  47014. frontHerm: {
  47015. height: math.unit(3.5, "meters"),
  47016. name: "Front (Herm)",
  47017. image: {
  47018. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47019. extra: 1570/1558,
  47020. bottom: 150/1720
  47021. },
  47022. },
  47023. },
  47024. [
  47025. {
  47026. name: "Normal",
  47027. height: math.unit(3.5, "meters"),
  47028. default: true,
  47029. },
  47030. {
  47031. name: "Macro",
  47032. height: math.unit(65.5, "meters"),
  47033. },
  47034. ],
  47035. ))
  47036. characterMakers.push(() => makeCharacter(
  47037. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47038. {
  47039. front: {
  47040. height: math.unit(6, "feet"),
  47041. weight: math.unit(250, "lb"),
  47042. name: "Front",
  47043. image: {
  47044. source: "./media/characters/zenimma/front.svg",
  47045. extra: 1346/1320,
  47046. bottom: 58/1404
  47047. }
  47048. },
  47049. back: {
  47050. height: math.unit(6, "feet"),
  47051. weight: math.unit(250, "lb"),
  47052. name: "Back",
  47053. image: {
  47054. source: "./media/characters/zenimma/back.svg",
  47055. extra: 1324/1308,
  47056. bottom: 44/1368
  47057. }
  47058. },
  47059. dick: {
  47060. height: math.unit(1.44, "feet"),
  47061. name: "Dick",
  47062. image: {
  47063. source: "./media/characters/zenimma/dick.svg"
  47064. }
  47065. },
  47066. },
  47067. [
  47068. {
  47069. name: "Canon Height",
  47070. height: math.unit(66, "miles"),
  47071. default: true
  47072. },
  47073. ]
  47074. ))
  47075. characterMakers.push(() => makeCharacter(
  47076. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47077. {
  47078. nude: {
  47079. height: math.unit(6, "feet"),
  47080. weight: math.unit(150, "lb"),
  47081. name: "Nude",
  47082. image: {
  47083. source: "./media/characters/shavon/nude.svg",
  47084. extra: 1242/1096,
  47085. bottom: 98/1340
  47086. }
  47087. },
  47088. dressed: {
  47089. height: math.unit(6, "feet"),
  47090. weight: math.unit(150, "lb"),
  47091. name: "Dressed",
  47092. image: {
  47093. source: "./media/characters/shavon/dressed.svg",
  47094. extra: 1242/1096,
  47095. bottom: 98/1340
  47096. }
  47097. },
  47098. },
  47099. [
  47100. {
  47101. name: "Macro",
  47102. height: math.unit(255, "feet"),
  47103. default: true
  47104. },
  47105. ]
  47106. ))
  47107. characterMakers.push(() => makeCharacter(
  47108. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47109. {
  47110. front: {
  47111. height: math.unit(6, "feet"),
  47112. name: "Front",
  47113. image: {
  47114. source: "./media/characters/steph/front.svg",
  47115. extra: 1430/1330,
  47116. bottom: 54/1484
  47117. }
  47118. },
  47119. },
  47120. [
  47121. {
  47122. name: "Normal",
  47123. height: math.unit(6, "feet"),
  47124. default: true
  47125. },
  47126. ]
  47127. ))
  47128. characterMakers.push(() => makeCharacter(
  47129. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47130. {
  47131. front: {
  47132. height: math.unit(9, "feet"),
  47133. weight: math.unit(400, "lb"),
  47134. name: "Front",
  47135. image: {
  47136. source: "./media/characters/kil'aman/front.svg",
  47137. extra: 1210/1159,
  47138. bottom: 109/1319
  47139. }
  47140. },
  47141. head: {
  47142. height: math.unit(2.14, "feet"),
  47143. name: "Head",
  47144. image: {
  47145. source: "./media/characters/kil'aman/head.svg"
  47146. }
  47147. },
  47148. maw: {
  47149. height: math.unit(1.21, "feet"),
  47150. name: "Maw",
  47151. image: {
  47152. source: "./media/characters/kil'aman/maw.svg"
  47153. }
  47154. },
  47155. foot: {
  47156. height: math.unit(1.7, "feet"),
  47157. name: "Foot",
  47158. image: {
  47159. source: "./media/characters/kil'aman/foot.svg"
  47160. }
  47161. },
  47162. dick: {
  47163. height: math.unit(2.1, "feet"),
  47164. name: "Dick",
  47165. image: {
  47166. source: "./media/characters/kil'aman/dick.svg"
  47167. }
  47168. },
  47169. },
  47170. [
  47171. {
  47172. name: "Normal",
  47173. height: math.unit(9, "feet")
  47174. },
  47175. {
  47176. name: "Canon Height",
  47177. height: math.unit(10, "miles"),
  47178. default: true
  47179. },
  47180. {
  47181. name: "Maximum",
  47182. height: math.unit(6e9, "miles")
  47183. },
  47184. ]
  47185. ))
  47186. characterMakers.push(() => makeCharacter(
  47187. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47188. {
  47189. front: {
  47190. height: math.unit(90, "feet"),
  47191. weight: math.unit(675000, "lb"),
  47192. name: "Front",
  47193. image: {
  47194. source: "./media/characters/qadan/front.svg",
  47195. extra: 1012/1004,
  47196. bottom: 78/1090
  47197. }
  47198. },
  47199. back: {
  47200. height: math.unit(90, "feet"),
  47201. weight: math.unit(675000, "lb"),
  47202. name: "Back",
  47203. image: {
  47204. source: "./media/characters/qadan/back.svg",
  47205. extra: 1042/1031,
  47206. bottom: 55/1097
  47207. }
  47208. },
  47209. armored: {
  47210. height: math.unit(90, "feet"),
  47211. weight: math.unit(675000, "lb"),
  47212. name: "Armored",
  47213. image: {
  47214. source: "./media/characters/qadan/armored.svg",
  47215. extra: 1047/1037,
  47216. bottom: 48/1095
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Normal",
  47223. height: math.unit(90, "feet"),
  47224. default: true
  47225. },
  47226. ]
  47227. ))
  47228. characterMakers.push(() => makeCharacter(
  47229. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47230. {
  47231. front: {
  47232. height: math.unit(6, "feet"),
  47233. weight: math.unit(225, "lb"),
  47234. name: "Front",
  47235. image: {
  47236. source: "./media/characters/brooke/front.svg",
  47237. extra: 1050/1010,
  47238. bottom: 66/1116
  47239. }
  47240. },
  47241. back: {
  47242. height: math.unit(6, "feet"),
  47243. weight: math.unit(225, "lb"),
  47244. name: "Back",
  47245. image: {
  47246. source: "./media/characters/brooke/back.svg",
  47247. extra: 1053/1013,
  47248. bottom: 41/1094
  47249. }
  47250. },
  47251. dressed: {
  47252. height: math.unit(6, "feet"),
  47253. weight: math.unit(225, "lb"),
  47254. name: "Dressed",
  47255. image: {
  47256. source: "./media/characters/brooke/dressed.svg",
  47257. extra: 1050/1010,
  47258. bottom: 66/1116
  47259. }
  47260. },
  47261. },
  47262. [
  47263. {
  47264. name: "Canon Height",
  47265. height: math.unit(500, "miles"),
  47266. default: true
  47267. },
  47268. ]
  47269. ))
  47270. characterMakers.push(() => makeCharacter(
  47271. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47272. {
  47273. front: {
  47274. height: math.unit(6 + 2/12, "feet"),
  47275. weight: math.unit(210, "lb"),
  47276. name: "Front",
  47277. image: {
  47278. source: "./media/characters/wubs/front.svg",
  47279. extra: 1345/1325,
  47280. bottom: 70/1415
  47281. }
  47282. },
  47283. back: {
  47284. height: math.unit(6 + 2/12, "feet"),
  47285. weight: math.unit(210, "lb"),
  47286. name: "Back",
  47287. image: {
  47288. source: "./media/characters/wubs/back.svg",
  47289. extra: 1296/1275,
  47290. bottom: 58/1354
  47291. }
  47292. },
  47293. },
  47294. [
  47295. {
  47296. name: "Normal",
  47297. height: math.unit(6 + 2/12, "feet"),
  47298. default: true
  47299. },
  47300. {
  47301. name: "Macro",
  47302. height: math.unit(1000, "feet")
  47303. },
  47304. {
  47305. name: "Megamacro",
  47306. height: math.unit(1, "mile")
  47307. },
  47308. ]
  47309. ))
  47310. characterMakers.push(() => makeCharacter(
  47311. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47312. {
  47313. front: {
  47314. height: math.unit(4, "feet"),
  47315. weight: math.unit(120, "lb"),
  47316. name: "Front",
  47317. image: {
  47318. source: "./media/characters/blue/front.svg",
  47319. extra: 1636/1525,
  47320. bottom: 43/1679
  47321. }
  47322. },
  47323. back: {
  47324. height: math.unit(4, "feet"),
  47325. weight: math.unit(120, "lb"),
  47326. name: "Back",
  47327. image: {
  47328. source: "./media/characters/blue/back.svg",
  47329. extra: 1660/1560,
  47330. bottom: 57/1717
  47331. }
  47332. },
  47333. paws: {
  47334. height: math.unit(0.826, "feet"),
  47335. name: "Paws",
  47336. image: {
  47337. source: "./media/characters/blue/paws.svg"
  47338. }
  47339. },
  47340. },
  47341. [
  47342. {
  47343. name: "Micro",
  47344. height: math.unit(3, "inches")
  47345. },
  47346. {
  47347. name: "Normal",
  47348. height: math.unit(4, "feet"),
  47349. default: true
  47350. },
  47351. {
  47352. name: "Femenine Form",
  47353. height: math.unit(14, "feet")
  47354. },
  47355. {
  47356. name: "Werebat Form",
  47357. height: math.unit(18, "feet")
  47358. },
  47359. ]
  47360. ))
  47361. characterMakers.push(() => makeCharacter(
  47362. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47363. {
  47364. female: {
  47365. height: math.unit(7 + 4/12, "feet"),
  47366. weight: math.unit(243, "lb"),
  47367. name: "Female",
  47368. image: {
  47369. source: "./media/characters/kaya/female.svg",
  47370. extra: 975/898,
  47371. bottom: 34/1009
  47372. }
  47373. },
  47374. herm: {
  47375. height: math.unit(7 + 4/12, "feet"),
  47376. weight: math.unit(243, "lb"),
  47377. name: "Herm",
  47378. image: {
  47379. source: "./media/characters/kaya/herm.svg",
  47380. extra: 975/898,
  47381. bottom: 34/1009
  47382. }
  47383. },
  47384. },
  47385. [
  47386. {
  47387. name: "Normal",
  47388. height: math.unit(7 + 4/12, "feet"),
  47389. default: true
  47390. },
  47391. ]
  47392. ))
  47393. characterMakers.push(() => makeCharacter(
  47394. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47395. {
  47396. female: {
  47397. height: math.unit(9 + 4/12, "feet"),
  47398. weight: math.unit(398, "lb"),
  47399. name: "Female",
  47400. image: {
  47401. source: "./media/characters/kassandra/female.svg",
  47402. extra: 908/839,
  47403. bottom: 61/969
  47404. }
  47405. },
  47406. intersex: {
  47407. height: math.unit(9 + 4/12, "feet"),
  47408. weight: math.unit(398, "lb"),
  47409. name: "Intersex",
  47410. image: {
  47411. source: "./media/characters/kassandra/intersex.svg",
  47412. extra: 908/839,
  47413. bottom: 61/969
  47414. }
  47415. },
  47416. },
  47417. [
  47418. {
  47419. name: "Normal",
  47420. height: math.unit(9 + 4/12, "feet"),
  47421. default: true
  47422. },
  47423. ]
  47424. ))
  47425. characterMakers.push(() => makeCharacter(
  47426. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47427. {
  47428. front: {
  47429. height: math.unit(3, "meters"),
  47430. name: "Front",
  47431. image: {
  47432. source: "./media/characters/amy/front.svg",
  47433. extra: 1380/1343,
  47434. bottom: 70/1450
  47435. }
  47436. },
  47437. back: {
  47438. height: math.unit(3, "meters"),
  47439. name: "Back",
  47440. image: {
  47441. source: "./media/characters/amy/back.svg",
  47442. extra: 1380/1347,
  47443. bottom: 66/1446
  47444. }
  47445. },
  47446. },
  47447. [
  47448. {
  47449. name: "Normal",
  47450. height: math.unit(3, "meters"),
  47451. default: true
  47452. },
  47453. ]
  47454. ))
  47455. characterMakers.push(() => makeCharacter(
  47456. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47457. {
  47458. side: {
  47459. height: math.unit(47, "cm"),
  47460. weight: math.unit(10.8, "kg"),
  47461. name: "Side",
  47462. image: {
  47463. source: "./media/characters/alphaschakal/side.svg",
  47464. extra: 1058/568,
  47465. bottom: 62/1120
  47466. }
  47467. },
  47468. back: {
  47469. height: math.unit(78, "cm"),
  47470. weight: math.unit(10.8, "kg"),
  47471. name: "Back",
  47472. image: {
  47473. source: "./media/characters/alphaschakal/back.svg",
  47474. extra: 1102/942,
  47475. bottom: 185/1287
  47476. }
  47477. },
  47478. head: {
  47479. height: math.unit(28, "cm"),
  47480. name: "Head",
  47481. image: {
  47482. source: "./media/characters/alphaschakal/head.svg",
  47483. extra: 696/508,
  47484. bottom: 0/696
  47485. }
  47486. },
  47487. paw: {
  47488. height: math.unit(16, "cm"),
  47489. name: "Paw",
  47490. image: {
  47491. source: "./media/characters/alphaschakal/paw.svg"
  47492. }
  47493. },
  47494. },
  47495. [
  47496. {
  47497. name: "Normal",
  47498. height: math.unit(47, "cm"),
  47499. default: true
  47500. },
  47501. {
  47502. name: "Macro",
  47503. height: math.unit(340, "cm")
  47504. },
  47505. ]
  47506. ))
  47507. characterMakers.push(() => makeCharacter(
  47508. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47509. {
  47510. front: {
  47511. height: math.unit(36, "earths"),
  47512. name: "Front",
  47513. image: {
  47514. source: "./media/characters/ecobyss/front.svg",
  47515. extra: 1282/1215,
  47516. bottom: 11/1293
  47517. }
  47518. },
  47519. back: {
  47520. height: math.unit(36, "earths"),
  47521. name: "Back",
  47522. image: {
  47523. source: "./media/characters/ecobyss/back.svg",
  47524. extra: 1291/1222,
  47525. bottom: 8/1299
  47526. }
  47527. },
  47528. },
  47529. [
  47530. {
  47531. name: "Normal",
  47532. height: math.unit(36, "earths"),
  47533. default: true
  47534. },
  47535. ]
  47536. ))
  47537. characterMakers.push(() => makeCharacter(
  47538. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47539. {
  47540. front: {
  47541. height: math.unit(12, "feet"),
  47542. name: "Front",
  47543. image: {
  47544. source: "./media/characters/vasuk/front.svg",
  47545. extra: 1326/1207,
  47546. bottom: 64/1390
  47547. }
  47548. },
  47549. },
  47550. [
  47551. {
  47552. name: "Normal",
  47553. height: math.unit(12, "feet"),
  47554. default: true
  47555. },
  47556. ]
  47557. ))
  47558. characterMakers.push(() => makeCharacter(
  47559. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47560. {
  47561. side: {
  47562. height: math.unit(100, "feet"),
  47563. name: "Side",
  47564. image: {
  47565. source: "./media/characters/linneaus/side.svg",
  47566. extra: 987/807,
  47567. bottom: 47/1034
  47568. }
  47569. },
  47570. },
  47571. [
  47572. {
  47573. name: "Macro",
  47574. height: math.unit(100, "feet"),
  47575. default: true
  47576. },
  47577. ]
  47578. ))
  47579. characterMakers.push(() => makeCharacter(
  47580. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47581. {
  47582. front: {
  47583. height: math.unit(8, "feet"),
  47584. weight: math.unit(1200, "lb"),
  47585. name: "Front",
  47586. image: {
  47587. source: "./media/characters/nyterious-daligdig/front.svg",
  47588. extra: 1284/1094,
  47589. bottom: 84/1368
  47590. }
  47591. },
  47592. back: {
  47593. height: math.unit(8, "feet"),
  47594. weight: math.unit(1200, "lb"),
  47595. name: "Back",
  47596. image: {
  47597. source: "./media/characters/nyterious-daligdig/back.svg",
  47598. extra: 1301/1121,
  47599. bottom: 129/1430
  47600. }
  47601. },
  47602. mouth: {
  47603. height: math.unit(1.464, "feet"),
  47604. name: "Mouth",
  47605. image: {
  47606. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47607. }
  47608. },
  47609. },
  47610. [
  47611. {
  47612. name: "Small",
  47613. height: math.unit(8, "feet"),
  47614. default: true
  47615. },
  47616. {
  47617. name: "Normal",
  47618. height: math.unit(15, "feet")
  47619. },
  47620. {
  47621. name: "Macro",
  47622. height: math.unit(90, "feet")
  47623. },
  47624. ]
  47625. ))
  47626. characterMakers.push(() => makeCharacter(
  47627. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47628. {
  47629. front: {
  47630. height: math.unit(7 + 4/12, "feet"),
  47631. weight: math.unit(252, "lb"),
  47632. name: "Front",
  47633. image: {
  47634. source: "./media/characters/bandel/front.svg",
  47635. extra: 1946/1775,
  47636. bottom: 26/1972
  47637. }
  47638. },
  47639. back: {
  47640. height: math.unit(7 + 4/12, "feet"),
  47641. weight: math.unit(252, "lb"),
  47642. name: "Back",
  47643. image: {
  47644. source: "./media/characters/bandel/back.svg",
  47645. extra: 1940/1770,
  47646. bottom: 25/1965
  47647. }
  47648. },
  47649. maw: {
  47650. height: math.unit(2.15, "feet"),
  47651. name: "Maw",
  47652. image: {
  47653. source: "./media/characters/bandel/maw.svg"
  47654. }
  47655. },
  47656. stomach: {
  47657. height: math.unit(1.95, "feet"),
  47658. name: "Stomach",
  47659. image: {
  47660. source: "./media/characters/bandel/stomach.svg"
  47661. }
  47662. },
  47663. },
  47664. [
  47665. {
  47666. name: "Normal",
  47667. height: math.unit(7 + 4/12, "feet"),
  47668. default: true
  47669. },
  47670. ]
  47671. ))
  47672. characterMakers.push(() => makeCharacter(
  47673. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47674. {
  47675. front: {
  47676. height: math.unit(10 + 5/12, "feet"),
  47677. weight: math.unit(773.5, "kg"),
  47678. name: "Front",
  47679. image: {
  47680. source: "./media/characters/zed/front.svg",
  47681. extra: 987/941,
  47682. bottom: 52/1039
  47683. }
  47684. },
  47685. },
  47686. [
  47687. {
  47688. name: "Short",
  47689. height: math.unit(5 + 4/12, "feet")
  47690. },
  47691. {
  47692. name: "Average",
  47693. height: math.unit(10 + 5/12, "feet"),
  47694. default: true
  47695. },
  47696. {
  47697. name: "Mini-Macro",
  47698. height: math.unit(24 + 9/12, "feet")
  47699. },
  47700. {
  47701. name: "Macro",
  47702. height: math.unit(249, "feet")
  47703. },
  47704. {
  47705. name: "Mega-Macro",
  47706. height: math.unit(12490, "feet")
  47707. },
  47708. {
  47709. name: "Giga-Macro",
  47710. height: math.unit(24.9, "miles")
  47711. },
  47712. {
  47713. name: "Tera-Macro",
  47714. height: math.unit(24900, "miles")
  47715. },
  47716. {
  47717. name: "Cosmic Scale",
  47718. height: math.unit(38.9, "lightyears")
  47719. },
  47720. {
  47721. name: "Universal Scale",
  47722. height: math.unit(138e12, "lightyears")
  47723. },
  47724. ]
  47725. ))
  47726. characterMakers.push(() => makeCharacter(
  47727. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47728. {
  47729. front: {
  47730. height: math.unit(1561, "inches"),
  47731. name: "Front",
  47732. image: {
  47733. source: "./media/characters/ivan/front.svg",
  47734. extra: 1126/1071,
  47735. bottom: 26/1152
  47736. }
  47737. },
  47738. back: {
  47739. height: math.unit(1561, "inches"),
  47740. name: "Back",
  47741. image: {
  47742. source: "./media/characters/ivan/back.svg",
  47743. extra: 1134/1079,
  47744. bottom: 30/1164
  47745. }
  47746. },
  47747. },
  47748. [
  47749. {
  47750. name: "Normal",
  47751. height: math.unit(1561, "inches"),
  47752. default: true
  47753. },
  47754. ]
  47755. ))
  47756. characterMakers.push(() => makeCharacter(
  47757. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47758. {
  47759. front: {
  47760. height: math.unit(5 + 7/12, "feet"),
  47761. weight: math.unit(150, "lb"),
  47762. name: "Front",
  47763. image: {
  47764. source: "./media/characters/robin-arctic-hare/front.svg",
  47765. extra: 1148/974,
  47766. bottom: 20/1168
  47767. }
  47768. },
  47769. },
  47770. [
  47771. {
  47772. name: "Normal",
  47773. height: math.unit(5 + 7/12, "feet"),
  47774. default: true
  47775. },
  47776. ]
  47777. ))
  47778. characterMakers.push(() => makeCharacter(
  47779. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47780. {
  47781. side: {
  47782. height: math.unit(5, "feet"),
  47783. name: "Side",
  47784. image: {
  47785. source: "./media/characters/birch/side.svg",
  47786. extra: 985/796,
  47787. bottom: 111/1096
  47788. }
  47789. },
  47790. },
  47791. [
  47792. {
  47793. name: "Normal",
  47794. height: math.unit(5, "feet"),
  47795. default: true
  47796. },
  47797. ]
  47798. ))
  47799. characterMakers.push(() => makeCharacter(
  47800. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47801. {
  47802. front: {
  47803. height: math.unit(4, "feet"),
  47804. name: "Front",
  47805. image: {
  47806. source: "./media/characters/rasp/front.svg",
  47807. extra: 561/478,
  47808. bottom: 74/635
  47809. }
  47810. },
  47811. },
  47812. [
  47813. {
  47814. name: "Normal",
  47815. height: math.unit(4, "feet"),
  47816. default: true
  47817. },
  47818. ]
  47819. ))
  47820. characterMakers.push(() => makeCharacter(
  47821. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47822. {
  47823. front: {
  47824. height: math.unit(4 + 6/12, "feet"),
  47825. name: "Front",
  47826. image: {
  47827. source: "./media/characters/agatha/front.svg",
  47828. extra: 947/933,
  47829. bottom: 42/989
  47830. }
  47831. },
  47832. back: {
  47833. height: math.unit(4 + 6/12, "feet"),
  47834. name: "Back",
  47835. image: {
  47836. source: "./media/characters/agatha/back.svg",
  47837. extra: 935/922,
  47838. bottom: 48/983
  47839. }
  47840. },
  47841. },
  47842. [
  47843. {
  47844. name: "Normal",
  47845. height: math.unit(4 + 6 /12, "feet"),
  47846. default: true
  47847. },
  47848. {
  47849. name: "Max Size",
  47850. height: math.unit(500, "feet")
  47851. },
  47852. ]
  47853. ))
  47854. characterMakers.push(() => makeCharacter(
  47855. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47856. {
  47857. side: {
  47858. height: math.unit(30, "feet"),
  47859. name: "Side",
  47860. image: {
  47861. source: "./media/characters/roggy/side.svg",
  47862. extra: 909/643,
  47863. bottom: 63/972
  47864. }
  47865. },
  47866. lounging: {
  47867. height: math.unit(20, "feet"),
  47868. name: "Lounging",
  47869. image: {
  47870. source: "./media/characters/roggy/lounging.svg",
  47871. extra: 643/479,
  47872. bottom: 145/788
  47873. }
  47874. },
  47875. handpaw: {
  47876. height: math.unit(13.1, "feet"),
  47877. name: "Handpaw",
  47878. image: {
  47879. source: "./media/characters/roggy/handpaw.svg"
  47880. }
  47881. },
  47882. footpaw: {
  47883. height: math.unit(15.8, "feet"),
  47884. name: "Footpaw",
  47885. image: {
  47886. source: "./media/characters/roggy/footpaw.svg"
  47887. }
  47888. },
  47889. },
  47890. [
  47891. {
  47892. name: "Menacing",
  47893. height: math.unit(30, "feet"),
  47894. default: true
  47895. },
  47896. ]
  47897. ))
  47898. characterMakers.push(() => makeCharacter(
  47899. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47900. {
  47901. front: {
  47902. height: math.unit(5 + 7/12, "feet"),
  47903. weight: math.unit(135, "lb"),
  47904. name: "Front",
  47905. image: {
  47906. source: "./media/characters/naomi/front.svg",
  47907. extra: 1209/1154,
  47908. bottom: 129/1338
  47909. }
  47910. },
  47911. back: {
  47912. height: math.unit(5 + 7/12, "feet"),
  47913. weight: math.unit(135, "lb"),
  47914. name: "Back",
  47915. image: {
  47916. source: "./media/characters/naomi/back.svg",
  47917. extra: 1252/1190,
  47918. bottom: 23/1275
  47919. }
  47920. },
  47921. },
  47922. [
  47923. {
  47924. name: "Normal",
  47925. height: math.unit(5 + 7 /12, "feet"),
  47926. default: true
  47927. },
  47928. ]
  47929. ))
  47930. characterMakers.push(() => makeCharacter(
  47931. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47932. {
  47933. side: {
  47934. height: math.unit(35, "meters"),
  47935. name: "Side",
  47936. image: {
  47937. source: "./media/characters/kimpi/side.svg",
  47938. extra: 419/382,
  47939. bottom: 63/482
  47940. }
  47941. },
  47942. hand: {
  47943. height: math.unit(8.96, "meters"),
  47944. name: "Hand",
  47945. image: {
  47946. source: "./media/characters/kimpi/hand.svg"
  47947. }
  47948. },
  47949. },
  47950. [
  47951. {
  47952. name: "Normal",
  47953. height: math.unit(35, "meters"),
  47954. default: true
  47955. },
  47956. ]
  47957. ))
  47958. characterMakers.push(() => makeCharacter(
  47959. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47960. {
  47961. front: {
  47962. height: math.unit(4 + 4/12, "feet"),
  47963. name: "Front",
  47964. image: {
  47965. source: "./media/characters/pepper-purrloin/front.svg",
  47966. extra: 1141/1024,
  47967. bottom: 21/1162
  47968. }
  47969. },
  47970. },
  47971. [
  47972. {
  47973. name: "Normal",
  47974. height: math.unit(4 + 4/12, "feet"),
  47975. default: true
  47976. },
  47977. ]
  47978. ))
  47979. characterMakers.push(() => makeCharacter(
  47980. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47981. {
  47982. front: {
  47983. height: math.unit(6 + 2/12, "feet"),
  47984. name: "Front",
  47985. image: {
  47986. source: "./media/characters/raphael/front.svg",
  47987. extra: 1101/962,
  47988. bottom: 59/1160
  47989. }
  47990. },
  47991. },
  47992. [
  47993. {
  47994. name: "Normal",
  47995. height: math.unit(6 + 2/12, "feet"),
  47996. default: true
  47997. },
  47998. ]
  47999. ))
  48000. characterMakers.push(() => makeCharacter(
  48001. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48002. {
  48003. front: {
  48004. height: math.unit(6, "feet"),
  48005. weight: math.unit(150, "lb"),
  48006. name: "Front",
  48007. image: {
  48008. source: "./media/characters/victor-williams/front.svg",
  48009. extra: 1894/1825,
  48010. bottom: 67/1961
  48011. }
  48012. },
  48013. },
  48014. [
  48015. {
  48016. name: "Normal",
  48017. height: math.unit(6, "feet"),
  48018. default: true
  48019. },
  48020. ]
  48021. ))
  48022. characterMakers.push(() => makeCharacter(
  48023. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48024. {
  48025. front: {
  48026. height: math.unit(5 + 8/12, "feet"),
  48027. weight: math.unit(150, "lb"),
  48028. name: "Front",
  48029. image: {
  48030. source: "./media/characters/rachel/front.svg",
  48031. extra: 1902/1787,
  48032. bottom: 46/1948
  48033. }
  48034. },
  48035. },
  48036. [
  48037. {
  48038. name: "Base Height",
  48039. height: math.unit(5 + 8/12, "feet"),
  48040. default: true
  48041. },
  48042. {
  48043. name: "Macro",
  48044. height: math.unit(200, "feet")
  48045. },
  48046. {
  48047. name: "Mega Macro",
  48048. height: math.unit(1, "mile")
  48049. },
  48050. {
  48051. name: "Giga Macro",
  48052. height: math.unit(1500, "miles")
  48053. },
  48054. {
  48055. name: "Tera Macro",
  48056. height: math.unit(8000, "miles")
  48057. },
  48058. {
  48059. name: "Tera Macro+",
  48060. height: math.unit(2e5, "miles")
  48061. },
  48062. ]
  48063. ))
  48064. characterMakers.push(() => makeCharacter(
  48065. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48066. {
  48067. front: {
  48068. height: math.unit(6.5, "feet"),
  48069. name: "Front",
  48070. image: {
  48071. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48072. extra: 860/819,
  48073. bottom: 307/1167
  48074. }
  48075. },
  48076. back: {
  48077. height: math.unit(6.5, "feet"),
  48078. name: "Back",
  48079. image: {
  48080. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48081. extra: 880/837,
  48082. bottom: 395/1275
  48083. }
  48084. },
  48085. sleeping: {
  48086. height: math.unit(2.79, "feet"),
  48087. name: "Sleeping",
  48088. image: {
  48089. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48090. extra: 465/383,
  48091. bottom: 263/728
  48092. }
  48093. },
  48094. maw: {
  48095. height: math.unit(2.52, "feet"),
  48096. name: "Maw",
  48097. image: {
  48098. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48099. }
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(6.5, "feet"),
  48106. default: true
  48107. },
  48108. ]
  48109. ))
  48110. characterMakers.push(() => makeCharacter(
  48111. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48112. {
  48113. front: {
  48114. height: math.unit(5, "feet"),
  48115. name: "Front",
  48116. image: {
  48117. source: "./media/characters/nova-nerium/front.svg",
  48118. extra: 1548/1392,
  48119. bottom: 374/1922
  48120. }
  48121. },
  48122. back: {
  48123. height: math.unit(5, "feet"),
  48124. name: "Back",
  48125. image: {
  48126. source: "./media/characters/nova-nerium/back.svg",
  48127. extra: 1658/1468,
  48128. bottom: 257/1915
  48129. }
  48130. },
  48131. },
  48132. [
  48133. {
  48134. name: "Normal",
  48135. height: math.unit(5, "feet"),
  48136. default: true
  48137. },
  48138. ]
  48139. ))
  48140. characterMakers.push(() => makeCharacter(
  48141. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48142. {
  48143. front: {
  48144. height: math.unit(5 + 4/12, "feet"),
  48145. name: "Front",
  48146. image: {
  48147. source: "./media/characters/ashe-pyriph/front.svg",
  48148. extra: 1935/1747,
  48149. bottom: 60/1995
  48150. }
  48151. },
  48152. },
  48153. [
  48154. {
  48155. name: "Normal",
  48156. height: math.unit(5 + 4/12, "feet"),
  48157. default: true
  48158. },
  48159. ]
  48160. ))
  48161. characterMakers.push(() => makeCharacter(
  48162. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48163. {
  48164. front: {
  48165. height: math.unit(8.7, "feet"),
  48166. name: "Front",
  48167. image: {
  48168. source: "./media/characters/flicker-wisp/front.svg",
  48169. extra: 1835/1613,
  48170. bottom: 449/2284
  48171. }
  48172. },
  48173. side: {
  48174. height: math.unit(8.7, "feet"),
  48175. name: "Side",
  48176. image: {
  48177. source: "./media/characters/flicker-wisp/side.svg",
  48178. extra: 1841/1642,
  48179. bottom: 336/2177
  48180. },
  48181. default: true
  48182. },
  48183. maw: {
  48184. height: math.unit(3.35, "feet"),
  48185. name: "Maw",
  48186. image: {
  48187. source: "./media/characters/flicker-wisp/maw.svg",
  48188. extra: 2338/1506,
  48189. bottom: 0/2338
  48190. }
  48191. },
  48192. ovipositor: {
  48193. height: math.unit(4.95, "feet"),
  48194. name: "Ovipositor",
  48195. image: {
  48196. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48197. }
  48198. },
  48199. egg: {
  48200. height: math.unit(0.385, "feet"),
  48201. weight: math.unit(2, "lb"),
  48202. name: "Egg",
  48203. image: {
  48204. source: "./media/characters/flicker-wisp/egg.svg"
  48205. }
  48206. },
  48207. },
  48208. [
  48209. {
  48210. name: "Normal",
  48211. height: math.unit(8.7, "feet"),
  48212. default: true
  48213. },
  48214. ]
  48215. ))
  48216. characterMakers.push(() => makeCharacter(
  48217. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48218. {
  48219. side: {
  48220. height: math.unit(11, "feet"),
  48221. name: "Side",
  48222. image: {
  48223. source: "./media/characters/faefnul/side.svg",
  48224. extra: 1100/1007,
  48225. bottom: 0/1100
  48226. }
  48227. },
  48228. },
  48229. [
  48230. {
  48231. name: "Normal",
  48232. height: math.unit(11, "feet"),
  48233. default: true
  48234. },
  48235. ]
  48236. ))
  48237. characterMakers.push(() => makeCharacter(
  48238. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48239. {
  48240. front: {
  48241. height: math.unit(6 + 2/12, "feet"),
  48242. name: "Front",
  48243. image: {
  48244. source: "./media/characters/shady/front.svg",
  48245. extra: 502/461,
  48246. bottom: 9/511
  48247. }
  48248. },
  48249. kneeling: {
  48250. height: math.unit(4.6, "feet"),
  48251. name: "Kneeling",
  48252. image: {
  48253. source: "./media/characters/shady/kneeling.svg",
  48254. extra: 1328/1219,
  48255. bottom: 117/1445
  48256. }
  48257. },
  48258. maw: {
  48259. height: math.unit(2, "feet"),
  48260. name: "Maw",
  48261. image: {
  48262. source: "./media/characters/shady/maw.svg"
  48263. }
  48264. },
  48265. },
  48266. [
  48267. {
  48268. name: "Nano",
  48269. height: math.unit(1, "mm")
  48270. },
  48271. {
  48272. name: "Micro",
  48273. height: math.unit(12, "mm")
  48274. },
  48275. {
  48276. name: "Tiny",
  48277. height: math.unit(3, "inches")
  48278. },
  48279. {
  48280. name: "Normal",
  48281. height: math.unit(6 + 2/12, "feet"),
  48282. default: true
  48283. },
  48284. {
  48285. name: "Big",
  48286. height: math.unit(15, "feet")
  48287. },
  48288. {
  48289. name: "Macro",
  48290. height: math.unit(150, "feet")
  48291. },
  48292. {
  48293. name: "Titanic",
  48294. height: math.unit(500, "feet")
  48295. },
  48296. ]
  48297. ))
  48298. characterMakers.push(() => makeCharacter(
  48299. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48300. {
  48301. front: {
  48302. height: math.unit(12, "feet"),
  48303. name: "Front",
  48304. image: {
  48305. source: "./media/characters/fenrir/front.svg",
  48306. extra: 968/875,
  48307. bottom: 22/990
  48308. }
  48309. },
  48310. },
  48311. [
  48312. {
  48313. name: "Big",
  48314. height: math.unit(12, "feet"),
  48315. default: true
  48316. },
  48317. ]
  48318. ))
  48319. characterMakers.push(() => makeCharacter(
  48320. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48321. {
  48322. front: {
  48323. height: math.unit(5 + 4/12, "feet"),
  48324. name: "Front",
  48325. image: {
  48326. source: "./media/characters/makar/front.svg",
  48327. extra: 1181/1112,
  48328. bottom: 78/1259
  48329. }
  48330. },
  48331. },
  48332. [
  48333. {
  48334. name: "Normal",
  48335. height: math.unit(5 + 4/12, "feet"),
  48336. default: true
  48337. },
  48338. ]
  48339. ))
  48340. characterMakers.push(() => makeCharacter(
  48341. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48342. {
  48343. front: {
  48344. height: math.unit(5 + 7/12, "feet"),
  48345. name: "Front",
  48346. image: {
  48347. source: "./media/characters/callow/front.svg",
  48348. extra: 1482/1304,
  48349. bottom: 23/1505
  48350. }
  48351. },
  48352. back: {
  48353. height: math.unit(5 + 7/12, "feet"),
  48354. name: "Back",
  48355. image: {
  48356. source: "./media/characters/callow/back.svg",
  48357. extra: 1484/1296,
  48358. bottom: 25/1509
  48359. }
  48360. },
  48361. },
  48362. [
  48363. {
  48364. name: "Micro",
  48365. height: math.unit(3, "inches"),
  48366. default: true
  48367. },
  48368. {
  48369. name: "Normal",
  48370. height: math.unit(5 + 7/12, "feet")
  48371. },
  48372. ]
  48373. ))
  48374. characterMakers.push(() => makeCharacter(
  48375. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48376. {
  48377. front: {
  48378. height: math.unit(6 + 2/12, "feet"),
  48379. name: "Front",
  48380. image: {
  48381. source: "./media/characters/natel/front.svg",
  48382. extra: 1833/1692,
  48383. bottom: 166/1999
  48384. }
  48385. },
  48386. },
  48387. [
  48388. {
  48389. name: "Normal",
  48390. height: math.unit(6 + 2/12, "feet"),
  48391. default: true
  48392. },
  48393. ]
  48394. ))
  48395. characterMakers.push(() => makeCharacter(
  48396. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48397. {
  48398. front: {
  48399. height: math.unit(1.75, "meters"),
  48400. name: "Front",
  48401. image: {
  48402. source: "./media/characters/misu/front.svg",
  48403. extra: 1690/1558,
  48404. bottom: 234/1924
  48405. }
  48406. },
  48407. back: {
  48408. height: math.unit(1.75, "meters"),
  48409. name: "Back",
  48410. image: {
  48411. source: "./media/characters/misu/back.svg",
  48412. extra: 1762/1618,
  48413. bottom: 146/1908
  48414. }
  48415. },
  48416. frontNude: {
  48417. height: math.unit(1.75, "meters"),
  48418. name: "Front (Nude)",
  48419. image: {
  48420. source: "./media/characters/misu/front-nude.svg",
  48421. extra: 1690/1558,
  48422. bottom: 234/1924
  48423. }
  48424. },
  48425. backNude: {
  48426. height: math.unit(1.75, "meters"),
  48427. name: "Back (Nude)",
  48428. image: {
  48429. source: "./media/characters/misu/back-nude.svg",
  48430. extra: 1762/1618,
  48431. bottom: 146/1908
  48432. }
  48433. },
  48434. frontErect: {
  48435. height: math.unit(1.75, "meters"),
  48436. name: "Front (Erect)",
  48437. image: {
  48438. source: "./media/characters/misu/front-erect.svg",
  48439. extra: 1690/1558,
  48440. bottom: 234/1924
  48441. }
  48442. },
  48443. maw: {
  48444. height: math.unit(0.47, "meters"),
  48445. name: "Maw",
  48446. image: {
  48447. source: "./media/characters/misu/maw.svg"
  48448. }
  48449. },
  48450. head: {
  48451. height: math.unit(0.35, "meters"),
  48452. name: "Head",
  48453. image: {
  48454. source: "./media/characters/misu/head.svg"
  48455. }
  48456. },
  48457. rear: {
  48458. height: math.unit(0.47, "meters"),
  48459. name: "Rear",
  48460. image: {
  48461. source: "./media/characters/misu/rear.svg"
  48462. }
  48463. },
  48464. },
  48465. [
  48466. {
  48467. name: "Normal",
  48468. height: math.unit(1.75, "meters")
  48469. },
  48470. {
  48471. name: "Not good for the people",
  48472. height: math.unit(42, "meters")
  48473. },
  48474. {
  48475. name: "Not good for the neighborhood",
  48476. height: math.unit(135, "meters")
  48477. },
  48478. {
  48479. name: "Bit bigger problem",
  48480. height: math.unit(380, "meters"),
  48481. default: true
  48482. },
  48483. {
  48484. name: "Not good for the city",
  48485. height: math.unit(1.5, "km")
  48486. },
  48487. {
  48488. name: "Not good for the county",
  48489. height: math.unit(5.5, "km")
  48490. },
  48491. {
  48492. name: "Not good for the state",
  48493. height: math.unit(25, "km")
  48494. },
  48495. {
  48496. name: "Not good for the country",
  48497. height: math.unit(125, "km")
  48498. },
  48499. {
  48500. name: "Not good for the continent",
  48501. height: math.unit(2100, "km")
  48502. },
  48503. {
  48504. name: "Not good for the planet",
  48505. height: math.unit(35000, "km")
  48506. },
  48507. {
  48508. name: "Just no",
  48509. height: math.unit(8.5e18, "km")
  48510. },
  48511. ]
  48512. ))
  48513. characterMakers.push(() => makeCharacter(
  48514. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48515. {
  48516. front: {
  48517. height: math.unit(6.5, "feet"),
  48518. name: "Front",
  48519. image: {
  48520. source: "./media/characters/poppy/front.svg",
  48521. extra: 1878/1812,
  48522. bottom: 43/1921
  48523. }
  48524. },
  48525. feet: {
  48526. height: math.unit(1.06, "feet"),
  48527. name: "Feet",
  48528. image: {
  48529. source: "./media/characters/poppy/feet.svg",
  48530. extra: 1083/1083,
  48531. bottom: 87/1170
  48532. }
  48533. },
  48534. },
  48535. [
  48536. {
  48537. name: "Human",
  48538. height: math.unit(6.5, "feet")
  48539. },
  48540. {
  48541. name: "Default",
  48542. height: math.unit(300, "feet"),
  48543. default: true
  48544. },
  48545. {
  48546. name: "Huge",
  48547. height: math.unit(850, "feet")
  48548. },
  48549. {
  48550. name: "Mega",
  48551. height: math.unit(8000, "feet")
  48552. },
  48553. {
  48554. name: "Giga",
  48555. height: math.unit(300, "miles")
  48556. },
  48557. ]
  48558. ))
  48559. characterMakers.push(() => makeCharacter(
  48560. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48561. {
  48562. bipedal: {
  48563. height: math.unit(7, "feet"),
  48564. name: "Bipedal",
  48565. image: {
  48566. source: "./media/characters/zener/bipedal.svg",
  48567. extra: 874/805,
  48568. bottom: 109/983
  48569. }
  48570. },
  48571. quadrupedal: {
  48572. height: math.unit(4.64, "feet"),
  48573. name: "Quadrupedal",
  48574. image: {
  48575. source: "./media/characters/zener/quadrupedal.svg",
  48576. extra: 638/507,
  48577. bottom: 190/828
  48578. }
  48579. },
  48580. cock: {
  48581. height: math.unit(18, "inches"),
  48582. name: "Cock",
  48583. image: {
  48584. source: "./media/characters/zener/cock.svg"
  48585. }
  48586. },
  48587. },
  48588. [
  48589. {
  48590. name: "Normal",
  48591. height: math.unit(7, "feet"),
  48592. default: true
  48593. },
  48594. ]
  48595. ))
  48596. characterMakers.push(() => makeCharacter(
  48597. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48598. {
  48599. nude: {
  48600. height: math.unit(5 + 6/12, "feet"),
  48601. name: "Nude",
  48602. image: {
  48603. source: "./media/characters/charlie-dog/nude.svg",
  48604. extra: 768/734,
  48605. bottom: 26/794
  48606. }
  48607. },
  48608. dressed: {
  48609. height: math.unit(5 + 6/12, "feet"),
  48610. name: "Dressed",
  48611. image: {
  48612. source: "./media/characters/charlie-dog/dressed.svg",
  48613. extra: 768/734,
  48614. bottom: 26/794
  48615. }
  48616. },
  48617. },
  48618. [
  48619. {
  48620. name: "Normal",
  48621. height: math.unit(5 + 6/12, "feet"),
  48622. default: true
  48623. },
  48624. ]
  48625. ))
  48626. characterMakers.push(() => makeCharacter(
  48627. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48628. {
  48629. front: {
  48630. height: math.unit(6 + 4/12, "feet"),
  48631. name: "Front",
  48632. image: {
  48633. source: "./media/characters/ir'istrasz/front.svg",
  48634. extra: 1014/977,
  48635. bottom: 65/1079
  48636. }
  48637. },
  48638. back: {
  48639. height: math.unit(6 + 4/12, "feet"),
  48640. name: "Back",
  48641. image: {
  48642. source: "./media/characters/ir'istrasz/back.svg",
  48643. extra: 1024/992,
  48644. bottom: 34/1058
  48645. }
  48646. },
  48647. },
  48648. [
  48649. {
  48650. name: "Normal",
  48651. height: math.unit(6 + 4/12, "feet"),
  48652. default: true
  48653. },
  48654. ]
  48655. ))
  48656. characterMakers.push(() => makeCharacter(
  48657. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48658. {
  48659. front: {
  48660. height: math.unit(5 + 8/12, "feet"),
  48661. name: "Front",
  48662. image: {
  48663. source: "./media/characters/dee-ditto/front.svg",
  48664. extra: 1874/1785,
  48665. bottom: 68/1942
  48666. }
  48667. },
  48668. back: {
  48669. height: math.unit(5 + 8/12, "feet"),
  48670. name: "Back",
  48671. image: {
  48672. source: "./media/characters/dee-ditto/back.svg",
  48673. extra: 1870/1783,
  48674. bottom: 77/1947
  48675. }
  48676. },
  48677. },
  48678. [
  48679. {
  48680. name: "Normal",
  48681. height: math.unit(5 + 8/12, "feet"),
  48682. default: true
  48683. },
  48684. ]
  48685. ))
  48686. characterMakers.push(() => makeCharacter(
  48687. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48688. {
  48689. front: {
  48690. height: math.unit(7 + 6/12, "feet"),
  48691. name: "Front",
  48692. image: {
  48693. source: "./media/characters/fey/front.svg",
  48694. extra: 995/979,
  48695. bottom: 30/1025
  48696. }
  48697. },
  48698. back: {
  48699. height: math.unit(7 + 6/12, "feet"),
  48700. name: "Back",
  48701. image: {
  48702. source: "./media/characters/fey/back.svg",
  48703. extra: 1079/1008,
  48704. bottom: 5/1084
  48705. }
  48706. },
  48707. dressed: {
  48708. height: math.unit(7 + 6/12, "feet"),
  48709. name: "Dressed",
  48710. image: {
  48711. source: "./media/characters/fey/dressed.svg",
  48712. extra: 995/979,
  48713. bottom: 30/1025
  48714. }
  48715. },
  48716. },
  48717. [
  48718. {
  48719. name: "Normal",
  48720. height: math.unit(7 + 6/12, "feet"),
  48721. default: true
  48722. },
  48723. ]
  48724. ))
  48725. characterMakers.push(() => makeCharacter(
  48726. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48727. {
  48728. standing: {
  48729. height: math.unit(17, "feet"),
  48730. name: "Standing",
  48731. image: {
  48732. source: "./media/characters/aster/standing.svg",
  48733. extra: 1798/1598,
  48734. bottom: 117/1915
  48735. }
  48736. },
  48737. },
  48738. [
  48739. {
  48740. name: "Normal",
  48741. height: math.unit(17, "feet"),
  48742. default: true
  48743. },
  48744. {
  48745. name: "Homewrecker",
  48746. height: math.unit(95, "feet")
  48747. },
  48748. {
  48749. name: "Planet Devourer",
  48750. height: math.unit(1008000, "miles")
  48751. },
  48752. ]
  48753. ))
  48754. characterMakers.push(() => makeCharacter(
  48755. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48756. {
  48757. front: {
  48758. height: math.unit(6 + 5/12, "feet"),
  48759. weight: math.unit(265, "lb"),
  48760. name: "Front",
  48761. image: {
  48762. source: "./media/characters/devon-childs/front.svg",
  48763. extra: 1795/1721,
  48764. bottom: 41/1836
  48765. }
  48766. },
  48767. side: {
  48768. height: math.unit(6 + 5/12, "feet"),
  48769. weight: math.unit(265, "lb"),
  48770. name: "Side",
  48771. image: {
  48772. source: "./media/characters/devon-childs/side.svg",
  48773. extra: 1812/1738,
  48774. bottom: 30/1842
  48775. }
  48776. },
  48777. back: {
  48778. height: math.unit(6 + 5/12, "feet"),
  48779. weight: math.unit(265, "lb"),
  48780. name: "Back",
  48781. image: {
  48782. source: "./media/characters/devon-childs/back.svg",
  48783. extra: 1808/1735,
  48784. bottom: 23/1831
  48785. }
  48786. },
  48787. hand: {
  48788. height: math.unit(1.464, "feet"),
  48789. name: "Hand",
  48790. image: {
  48791. source: "./media/characters/devon-childs/hand.svg"
  48792. }
  48793. },
  48794. foot: {
  48795. height: math.unit(1.6, "feet"),
  48796. name: "Foot",
  48797. image: {
  48798. source: "./media/characters/devon-childs/foot.svg"
  48799. }
  48800. },
  48801. },
  48802. [
  48803. {
  48804. name: "Micro",
  48805. height: math.unit(7, "cm")
  48806. },
  48807. {
  48808. name: "Normal",
  48809. height: math.unit(6 + 5/12, "feet"),
  48810. default: true
  48811. },
  48812. {
  48813. name: "Macro",
  48814. height: math.unit(154, "feet")
  48815. },
  48816. ]
  48817. ))
  48818. characterMakers.push(() => makeCharacter(
  48819. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48820. {
  48821. front: {
  48822. height: math.unit(6, "feet"),
  48823. weight: math.unit(180, "lb"),
  48824. name: "Front",
  48825. image: {
  48826. source: "./media/characters/lydemox-vir/front.svg",
  48827. extra: 1632/1435,
  48828. bottom: 58/1690
  48829. }
  48830. },
  48831. frontSFW: {
  48832. height: math.unit(6, "feet"),
  48833. weight: math.unit(180, "lb"),
  48834. name: "Front (SFW)",
  48835. image: {
  48836. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48837. extra: 1632/1435,
  48838. bottom: 58/1690
  48839. }
  48840. },
  48841. back: {
  48842. height: math.unit(6, "feet"),
  48843. weight: math.unit(180, "lb"),
  48844. name: "Back",
  48845. image: {
  48846. source: "./media/characters/lydemox-vir/back.svg",
  48847. extra: 1593/1408,
  48848. bottom: 31/1624
  48849. }
  48850. },
  48851. paw: {
  48852. height: math.unit(1.85, "feet"),
  48853. name: "Paw",
  48854. image: {
  48855. source: "./media/characters/lydemox-vir/paw.svg"
  48856. }
  48857. },
  48858. dick: {
  48859. height: math.unit(1.8, "feet"),
  48860. name: "Dick",
  48861. image: {
  48862. source: "./media/characters/lydemox-vir/dick.svg"
  48863. }
  48864. },
  48865. },
  48866. [
  48867. {
  48868. name: "Macro",
  48869. height: math.unit(100, "feet"),
  48870. default: true
  48871. },
  48872. {
  48873. name: "Teramacro",
  48874. height: math.unit(1, "earth")
  48875. },
  48876. {
  48877. name: "Planetary",
  48878. height: math.unit(20, "earths")
  48879. },
  48880. ]
  48881. ))
  48882. characterMakers.push(() => makeCharacter(
  48883. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48884. {
  48885. front: {
  48886. height: math.unit(15 + 8/12, "feet"),
  48887. weight: math.unit(1237, "kg"),
  48888. name: "Front",
  48889. image: {
  48890. source: "./media/characters/mia/front.svg",
  48891. extra: 1573/1446,
  48892. bottom: 58/1631
  48893. }
  48894. },
  48895. },
  48896. [
  48897. {
  48898. name: "Small",
  48899. height: math.unit(9 + 5/12, "feet")
  48900. },
  48901. {
  48902. name: "Normal",
  48903. height: math.unit(15 + 8/12, "feet"),
  48904. default: true
  48905. },
  48906. ]
  48907. ))
  48908. characterMakers.push(() => makeCharacter(
  48909. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48910. {
  48911. front: {
  48912. height: math.unit(10 + 6/12, "feet"),
  48913. weight: math.unit(1.3, "tons"),
  48914. name: "Front",
  48915. image: {
  48916. source: "./media/characters/mr-graves/front.svg",
  48917. extra: 1779/1695,
  48918. bottom: 198/1977
  48919. }
  48920. },
  48921. },
  48922. [
  48923. {
  48924. name: "Normal",
  48925. height: math.unit(10 + 6 /12, "feet"),
  48926. default: true
  48927. },
  48928. ]
  48929. ))
  48930. characterMakers.push(() => makeCharacter(
  48931. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48932. {
  48933. dressedFront: {
  48934. height: math.unit(5 + 8/12, "feet"),
  48935. weight: math.unit(125, "lb"),
  48936. name: "Dressed (Front)",
  48937. image: {
  48938. source: "./media/characters/jess/dressed-front.svg",
  48939. extra: 1176/1152,
  48940. bottom: 42/1218
  48941. }
  48942. },
  48943. dressedSide: {
  48944. height: math.unit(5 + 8/12, "feet"),
  48945. weight: math.unit(125, "lb"),
  48946. name: "Dressed (Side)",
  48947. image: {
  48948. source: "./media/characters/jess/dressed-side.svg",
  48949. extra: 1204/1190,
  48950. bottom: 6/1210
  48951. }
  48952. },
  48953. nudeFront: {
  48954. height: math.unit(5 + 8/12, "feet"),
  48955. weight: math.unit(125, "lb"),
  48956. name: "Nude (Front)",
  48957. image: {
  48958. source: "./media/characters/jess/nude-front.svg",
  48959. extra: 1176/1152,
  48960. bottom: 42/1218
  48961. }
  48962. },
  48963. nudeSide: {
  48964. height: math.unit(5 + 8/12, "feet"),
  48965. weight: math.unit(125, "lb"),
  48966. name: "Nude (Side)",
  48967. image: {
  48968. source: "./media/characters/jess/nude-side.svg",
  48969. extra: 1204/1190,
  48970. bottom: 6/1210
  48971. }
  48972. },
  48973. organsFront: {
  48974. height: math.unit(2.83799342105, "feet"),
  48975. name: "Organs (Front)",
  48976. image: {
  48977. source: "./media/characters/jess/organs-front.svg"
  48978. }
  48979. },
  48980. organsSide: {
  48981. height: math.unit(2.64225290474, "feet"),
  48982. name: "Organs (Side)",
  48983. image: {
  48984. source: "./media/characters/jess/organs-side.svg"
  48985. }
  48986. },
  48987. digestiveTractFront: {
  48988. height: math.unit(2.8106580871, "feet"),
  48989. name: "Digestive Tract (Front)",
  48990. image: {
  48991. source: "./media/characters/jess/digestive-tract-front.svg"
  48992. }
  48993. },
  48994. digestiveTractSide: {
  48995. height: math.unit(2.54365045014, "feet"),
  48996. name: "Digestive Tract (Side)",
  48997. image: {
  48998. source: "./media/characters/jess/digestive-tract-side.svg"
  48999. }
  49000. },
  49001. respiratorySystemFront: {
  49002. height: math.unit(1.11196233456, "feet"),
  49003. name: "Respiratory System (Front)",
  49004. image: {
  49005. source: "./media/characters/jess/respiratory-system-front.svg"
  49006. }
  49007. },
  49008. respiratorySystemSide: {
  49009. height: math.unit(0.89327966297, "feet"),
  49010. name: "Respiratory System (Side)",
  49011. image: {
  49012. source: "./media/characters/jess/respiratory-system-side.svg"
  49013. }
  49014. },
  49015. urinaryTractFront: {
  49016. height: math.unit(1.16126356186, "feet"),
  49017. name: "Urinary Tract (Front)",
  49018. image: {
  49019. source: "./media/characters/jess/urinary-tract-front.svg"
  49020. }
  49021. },
  49022. urinaryTractSide: {
  49023. height: math.unit(1.20910039627, "feet"),
  49024. name: "Urinary Tract (Side)",
  49025. image: {
  49026. source: "./media/characters/jess/urinary-tract-side.svg"
  49027. }
  49028. },
  49029. reproductiveOrgansFront: {
  49030. height: math.unit(0.48422591566, "feet"),
  49031. name: "Reproductive Organs (Front)",
  49032. image: {
  49033. source: "./media/characters/jess/reproductive-organs-front.svg"
  49034. }
  49035. },
  49036. reproductiveOrgansSide: {
  49037. height: math.unit(0.61553314481, "feet"),
  49038. name: "Reproductive Organs (Side)",
  49039. image: {
  49040. source: "./media/characters/jess/reproductive-organs-side.svg"
  49041. }
  49042. },
  49043. breastsFront: {
  49044. height: math.unit(0.47690395121, "feet"),
  49045. name: "Breasts (Front)",
  49046. image: {
  49047. source: "./media/characters/jess/breasts-front.svg"
  49048. }
  49049. },
  49050. breastsSide: {
  49051. height: math.unit(0.30556998307, "feet"),
  49052. name: "Breasts (Side)",
  49053. image: {
  49054. source: "./media/characters/jess/breasts-side.svg"
  49055. }
  49056. },
  49057. heartFront: {
  49058. height: math.unit(0.53011022622, "feet"),
  49059. name: "Heart (Front)",
  49060. image: {
  49061. source: "./media/characters/jess/heart-front.svg"
  49062. }
  49063. },
  49064. heartSide: {
  49065. height: math.unit(0.51790695213, "feet"),
  49066. name: "Heart (Side)",
  49067. image: {
  49068. source: "./media/characters/jess/heart-side.svg"
  49069. }
  49070. },
  49071. earsAndNoseFront: {
  49072. height: math.unit(0.29385483995, "feet"),
  49073. name: "Ears and Nose (Front)",
  49074. image: {
  49075. source: "./media/characters/jess/ears-and-nose-front.svg"
  49076. }
  49077. },
  49078. earsAndNoseSide: {
  49079. height: math.unit(0.18109658741, "feet"),
  49080. name: "Ears and Nose (Side)",
  49081. image: {
  49082. source: "./media/characters/jess/ears-and-nose-side.svg"
  49083. }
  49084. },
  49085. },
  49086. [
  49087. {
  49088. name: "Normal",
  49089. height: math.unit(5 + 8/12, "feet"),
  49090. default: true
  49091. },
  49092. ]
  49093. ))
  49094. characterMakers.push(() => makeCharacter(
  49095. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49096. {
  49097. front: {
  49098. height: math.unit(6, "feet"),
  49099. weight: math.unit(6.64467e-7, "grams"),
  49100. name: "Front",
  49101. image: {
  49102. source: "./media/characters/wimpering/front.svg",
  49103. extra: 597/587,
  49104. bottom: 34/631
  49105. }
  49106. },
  49107. },
  49108. [
  49109. {
  49110. name: "Micro",
  49111. height: math.unit(0.4, "mm"),
  49112. default: true
  49113. },
  49114. ]
  49115. ))
  49116. characterMakers.push(() => makeCharacter(
  49117. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49118. {
  49119. front: {
  49120. height: math.unit(5 + 2/12, "feet"),
  49121. weight: math.unit(110, "lb"),
  49122. name: "Front",
  49123. image: {
  49124. source: "./media/characters/keltre/front.svg",
  49125. extra: 1099/1057,
  49126. bottom: 22/1121
  49127. }
  49128. },
  49129. back: {
  49130. height: math.unit(5 + 2/12, "feet"),
  49131. weight: math.unit(110, "lb"),
  49132. name: "Back",
  49133. image: {
  49134. source: "./media/characters/keltre/back.svg",
  49135. extra: 1095/1053,
  49136. bottom: 17/1112
  49137. }
  49138. },
  49139. dressed: {
  49140. height: math.unit(5 + 2/12, "feet"),
  49141. weight: math.unit(110, "lb"),
  49142. name: "Dressed",
  49143. image: {
  49144. source: "./media/characters/keltre/dressed.svg",
  49145. extra: 1099/1057,
  49146. bottom: 22/1121
  49147. }
  49148. },
  49149. winter: {
  49150. height: math.unit(5 + 2/12, "feet"),
  49151. weight: math.unit(110, "lb"),
  49152. name: "Winter",
  49153. image: {
  49154. source: "./media/characters/keltre/winter.svg",
  49155. extra: 1099/1057,
  49156. bottom: 22/1121
  49157. }
  49158. },
  49159. head: {
  49160. height: math.unit(1.61 * 0.86, "feet"),
  49161. name: "Head",
  49162. image: {
  49163. source: "./media/characters/keltre/head.svg",
  49164. extra: 534/421,
  49165. bottom: 0/534
  49166. }
  49167. },
  49168. hand: {
  49169. height: math.unit(1.3 * 0.86, "feet"),
  49170. name: "Hand",
  49171. image: {
  49172. source: "./media/characters/keltre/hand.svg"
  49173. }
  49174. },
  49175. foot: {
  49176. height: math.unit(1.8 * 0.86, "feet"),
  49177. name: "Foot",
  49178. image: {
  49179. source: "./media/characters/keltre/foot.svg"
  49180. }
  49181. },
  49182. },
  49183. [
  49184. {
  49185. name: "Fine",
  49186. height: math.unit(1, "inch")
  49187. },
  49188. {
  49189. name: "Dimnutive",
  49190. height: math.unit(4, "inches")
  49191. },
  49192. {
  49193. name: "Tiny",
  49194. height: math.unit(1, "foot")
  49195. },
  49196. {
  49197. name: "Small",
  49198. height: math.unit(3, "feet")
  49199. },
  49200. {
  49201. name: "Normal",
  49202. height: math.unit(5 + 2/12, "feet"),
  49203. default: true
  49204. },
  49205. ]
  49206. ))
  49207. characterMakers.push(() => makeCharacter(
  49208. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49209. {
  49210. front: {
  49211. height: math.unit(6 + 2/12, "feet"),
  49212. name: "Front",
  49213. image: {
  49214. source: "./media/characters/nox/front.svg",
  49215. extra: 1917/1830,
  49216. bottom: 74/1991
  49217. }
  49218. },
  49219. back: {
  49220. height: math.unit(6 + 2/12, "feet"),
  49221. name: "Back",
  49222. image: {
  49223. source: "./media/characters/nox/back.svg",
  49224. extra: 1896/1815,
  49225. bottom: 21/1917
  49226. }
  49227. },
  49228. head: {
  49229. height: math.unit(1.1, "feet"),
  49230. name: "Head",
  49231. image: {
  49232. source: "./media/characters/nox/head.svg",
  49233. extra: 874/704,
  49234. bottom: 0/874
  49235. }
  49236. },
  49237. tattoo: {
  49238. height: math.unit(0.729, "feet"),
  49239. name: "Tattoo",
  49240. image: {
  49241. source: "./media/characters/nox/tattoo.svg"
  49242. }
  49243. },
  49244. },
  49245. [
  49246. {
  49247. name: "Normal",
  49248. height: math.unit(6 + 2/12, "feet")
  49249. },
  49250. {
  49251. name: "Gigamacro",
  49252. height: math.unit(2, "earths"),
  49253. default: true
  49254. },
  49255. {
  49256. name: "Cosmic",
  49257. height: math.unit(867, "yottameters")
  49258. },
  49259. ]
  49260. ))
  49261. characterMakers.push(() => makeCharacter(
  49262. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49263. {
  49264. front: {
  49265. height: math.unit(6, "feet"),
  49266. weight: math.unit(150, "lb"),
  49267. name: "Front",
  49268. image: {
  49269. source: "./media/characters/caspian/front.svg",
  49270. extra: 1443/1359,
  49271. bottom: 0/1443
  49272. }
  49273. },
  49274. back: {
  49275. height: math.unit(6, "feet"),
  49276. weight: math.unit(150, "lb"),
  49277. name: "Back",
  49278. image: {
  49279. source: "./media/characters/caspian/back.svg",
  49280. extra: 1379/1309,
  49281. bottom: 0/1379
  49282. }
  49283. },
  49284. head: {
  49285. height: math.unit(0.9, "feet"),
  49286. name: "Head",
  49287. image: {
  49288. source: "./media/characters/caspian/head.svg",
  49289. extra: 692/492,
  49290. bottom: 0/692
  49291. }
  49292. },
  49293. headAlt: {
  49294. height: math.unit(0.95, "feet"),
  49295. name: "Head (Alt)",
  49296. image: {
  49297. source: "./media/characters/caspian/head-alt.svg",
  49298. extra: 668/508,
  49299. bottom: 0/668
  49300. }
  49301. },
  49302. hand: {
  49303. height: math.unit(0.8, "feet"),
  49304. name: "Hand",
  49305. image: {
  49306. source: "./media/characters/caspian/hand.svg"
  49307. }
  49308. },
  49309. paw: {
  49310. height: math.unit(0.95, "feet"),
  49311. name: "Paw",
  49312. image: {
  49313. source: "./media/characters/caspian/paw.svg"
  49314. }
  49315. },
  49316. },
  49317. [
  49318. {
  49319. name: "Normal",
  49320. height: math.unit(162, "feet"),
  49321. default: true
  49322. },
  49323. ]
  49324. ))
  49325. characterMakers.push(() => makeCharacter(
  49326. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49327. {
  49328. front: {
  49329. height: math.unit(6, "feet"),
  49330. name: "Front",
  49331. image: {
  49332. source: "./media/characters/myra-aisling/front.svg",
  49333. extra: 1268/1166,
  49334. bottom: 73/1341
  49335. }
  49336. },
  49337. back: {
  49338. height: math.unit(6, "feet"),
  49339. name: "Back",
  49340. image: {
  49341. source: "./media/characters/myra-aisling/back.svg",
  49342. extra: 1249/1149,
  49343. bottom: 79/1328
  49344. }
  49345. },
  49346. dressed: {
  49347. height: math.unit(6, "feet"),
  49348. name: "Dressed",
  49349. image: {
  49350. source: "./media/characters/myra-aisling/dressed.svg",
  49351. extra: 1290/1189,
  49352. bottom: 47/1337
  49353. }
  49354. },
  49355. hand: {
  49356. height: math.unit(1.1, "feet"),
  49357. name: "Hand",
  49358. image: {
  49359. source: "./media/characters/myra-aisling/hand.svg"
  49360. }
  49361. },
  49362. paw: {
  49363. height: math.unit(1.23, "feet"),
  49364. name: "Paw",
  49365. image: {
  49366. source: "./media/characters/myra-aisling/paw.svg"
  49367. }
  49368. },
  49369. },
  49370. [
  49371. {
  49372. name: "Normal",
  49373. height: math.unit(160, "feet"),
  49374. default: true
  49375. },
  49376. ]
  49377. ))
  49378. characterMakers.push(() => makeCharacter(
  49379. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49380. {
  49381. front: {
  49382. height: math.unit(6, "feet"),
  49383. name: "Front",
  49384. image: {
  49385. source: "./media/characters/tenley-sidero/front.svg",
  49386. extra: 1365/1276,
  49387. bottom: 47/1412
  49388. }
  49389. },
  49390. back: {
  49391. height: math.unit(6, "feet"),
  49392. name: "Back",
  49393. image: {
  49394. source: "./media/characters/tenley-sidero/back.svg",
  49395. extra: 1383/1283,
  49396. bottom: 35/1418
  49397. }
  49398. },
  49399. dressed: {
  49400. height: math.unit(6, "feet"),
  49401. name: "Dressed",
  49402. image: {
  49403. source: "./media/characters/tenley-sidero/dressed.svg",
  49404. extra: 1364/1275,
  49405. bottom: 42/1406
  49406. }
  49407. },
  49408. head: {
  49409. height: math.unit(1.47, "feet"),
  49410. name: "Head",
  49411. image: {
  49412. source: "./media/characters/tenley-sidero/head.svg",
  49413. extra: 610/490,
  49414. bottom: 0/610
  49415. }
  49416. },
  49417. },
  49418. [
  49419. {
  49420. name: "Normal",
  49421. height: math.unit(154, "feet"),
  49422. default: true
  49423. },
  49424. ]
  49425. ))
  49426. characterMakers.push(() => makeCharacter(
  49427. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49428. {
  49429. front: {
  49430. height: math.unit(5, "inches"),
  49431. name: "Front",
  49432. image: {
  49433. source: "./media/characters/mallory/front.svg",
  49434. extra: 1919/1678,
  49435. bottom: 29/1948
  49436. }
  49437. },
  49438. hand: {
  49439. height: math.unit(0.73, "inches"),
  49440. name: "Hand",
  49441. image: {
  49442. source: "./media/characters/mallory/hand.svg"
  49443. }
  49444. },
  49445. paw: {
  49446. height: math.unit(0.68, "inches"),
  49447. name: "Paw",
  49448. image: {
  49449. source: "./media/characters/mallory/paw.svg"
  49450. }
  49451. },
  49452. },
  49453. [
  49454. {
  49455. name: "Small",
  49456. height: math.unit(5, "inches"),
  49457. default: true
  49458. },
  49459. ]
  49460. ))
  49461. characterMakers.push(() => makeCharacter(
  49462. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49463. {
  49464. naked: {
  49465. height: math.unit(6, "feet"),
  49466. name: "Naked",
  49467. image: {
  49468. source: "./media/characters/mab/naked.svg",
  49469. extra: 1855/1757,
  49470. bottom: 208/2063
  49471. }
  49472. },
  49473. outside: {
  49474. height: math.unit(6, "feet"),
  49475. name: "Outside",
  49476. image: {
  49477. source: "./media/characters/mab/outside.svg",
  49478. extra: 1855/1757,
  49479. bottom: 208/2063
  49480. }
  49481. },
  49482. party: {
  49483. height: math.unit(6, "feet"),
  49484. name: "Party",
  49485. image: {
  49486. source: "./media/characters/mab/party.svg",
  49487. extra: 1855/1757,
  49488. bottom: 208/2063
  49489. }
  49490. },
  49491. },
  49492. [
  49493. {
  49494. name: "Normal",
  49495. height: math.unit(165, "feet"),
  49496. default: true
  49497. },
  49498. ]
  49499. ))
  49500. characterMakers.push(() => makeCharacter(
  49501. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49502. {
  49503. front: {
  49504. height: math.unit(12, "feet"),
  49505. weight: math.unit(20000, "lb"),
  49506. name: "Front",
  49507. image: {
  49508. source: "./media/characters/winter/front.svg",
  49509. extra: 1286/943,
  49510. bottom: 112/1398
  49511. }
  49512. },
  49513. frontNsfw: {
  49514. height: math.unit(12, "feet"),
  49515. weight: math.unit(20000, "lb"),
  49516. name: "Front (NSFW)",
  49517. image: {
  49518. source: "./media/characters/winter/front-nsfw.svg",
  49519. extra: 1286/943,
  49520. bottom: 112/1398
  49521. }
  49522. },
  49523. dick: {
  49524. height: math.unit(3.79, "feet"),
  49525. name: "Dick",
  49526. image: {
  49527. source: "./media/characters/winter/dick.svg"
  49528. }
  49529. },
  49530. },
  49531. [
  49532. {
  49533. name: "Big",
  49534. height: math.unit(12, "feet"),
  49535. default: true
  49536. },
  49537. ]
  49538. ))
  49539. characterMakers.push(() => makeCharacter(
  49540. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49541. {
  49542. front: {
  49543. height: math.unit(4.1, "inches"),
  49544. name: "Front",
  49545. image: {
  49546. source: "./media/characters/alto/front.svg",
  49547. extra: 736/627,
  49548. bottom: 90/826
  49549. }
  49550. },
  49551. },
  49552. [
  49553. {
  49554. name: "Normal",
  49555. height: math.unit(4.1, "inches"),
  49556. default: true
  49557. },
  49558. ]
  49559. ))
  49560. characterMakers.push(() => makeCharacter(
  49561. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49562. {
  49563. sitting: {
  49564. height: math.unit(3, "feet"),
  49565. name: "Sitting",
  49566. image: {
  49567. source: "./media/characters/ratstrid-v/sitting.svg",
  49568. extra: 355/310,
  49569. bottom: 136/491
  49570. }
  49571. },
  49572. },
  49573. [
  49574. {
  49575. name: "Normal",
  49576. height: math.unit(3, "feet"),
  49577. default: true
  49578. },
  49579. ]
  49580. ))
  49581. characterMakers.push(() => makeCharacter(
  49582. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49583. {
  49584. back: {
  49585. height: math.unit(6, "feet"),
  49586. weight: math.unit(350, "lb"),
  49587. name: "Back",
  49588. image: {
  49589. source: "./media/characters/siz/back.svg",
  49590. extra: 1449/1274,
  49591. bottom: 13/1462
  49592. }
  49593. },
  49594. },
  49595. [
  49596. {
  49597. name: "Over-Overcompressed",
  49598. height: math.unit(8, "feet")
  49599. },
  49600. {
  49601. name: "Overcompressed",
  49602. height: math.unit(32, "feet")
  49603. },
  49604. {
  49605. name: "Compressed",
  49606. height: math.unit(128, "feet"),
  49607. default: true
  49608. },
  49609. {
  49610. name: "Half-Compressed",
  49611. height: math.unit(512, "feet")
  49612. },
  49613. {
  49614. name: "Quarter-Compressed",
  49615. height: math.unit(2048, "feet")
  49616. },
  49617. {
  49618. name: "Uncompressed?",
  49619. height: math.unit(8192, "feet")
  49620. },
  49621. ]
  49622. ))
  49623. characterMakers.push(() => makeCharacter(
  49624. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49625. {
  49626. front: {
  49627. height: math.unit(5 + 9/12, "feet"),
  49628. weight: math.unit(150, "lb"),
  49629. name: "Front",
  49630. image: {
  49631. source: "./media/characters/ven/front.svg",
  49632. extra: 1372/1320,
  49633. bottom: 73/1445
  49634. }
  49635. },
  49636. side: {
  49637. height: math.unit(5 + 9/12, "feet"),
  49638. weight: math.unit(1150, "lb"),
  49639. name: "Side",
  49640. image: {
  49641. source: "./media/characters/ven/side.svg",
  49642. extra: 1119/1070,
  49643. bottom: 42/1161
  49644. },
  49645. default: true
  49646. },
  49647. },
  49648. [
  49649. {
  49650. name: "Normal",
  49651. height: math.unit(5 + 9/12, "feet"),
  49652. default: true
  49653. },
  49654. ]
  49655. ))
  49656. characterMakers.push(() => makeCharacter(
  49657. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49658. {
  49659. front: {
  49660. height: math.unit(12, "feet"),
  49661. weight: math.unit(1000, "kg"),
  49662. name: "Front",
  49663. image: {
  49664. source: "./media/characters/maple/front.svg",
  49665. extra: 1193/1081,
  49666. bottom: 22/1215
  49667. }
  49668. },
  49669. },
  49670. [
  49671. {
  49672. name: "Compressed",
  49673. height: math.unit(7, "feet")
  49674. },
  49675. {
  49676. name: "Normal",
  49677. height: math.unit(12, "feet"),
  49678. default: true
  49679. },
  49680. ]
  49681. ))
  49682. characterMakers.push(() => makeCharacter(
  49683. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49684. {
  49685. front: {
  49686. height: math.unit(9, "feet"),
  49687. weight: math.unit(1500, "lb"),
  49688. name: "Front",
  49689. image: {
  49690. source: "./media/characters/nora/front.svg",
  49691. extra: 1348/1286,
  49692. bottom: 218/1566
  49693. }
  49694. },
  49695. erect: {
  49696. height: math.unit(9, "feet"),
  49697. weight: math.unit(11500, "lb"),
  49698. name: "Erect",
  49699. image: {
  49700. source: "./media/characters/nora/erect.svg",
  49701. extra: 1488/1433,
  49702. bottom: 133/1621
  49703. }
  49704. },
  49705. },
  49706. [
  49707. {
  49708. name: "Normal",
  49709. height: math.unit(9, "feet"),
  49710. default: true
  49711. },
  49712. ]
  49713. ))
  49714. characterMakers.push(() => makeCharacter(
  49715. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49716. {
  49717. front: {
  49718. height: math.unit(25, "feet"),
  49719. weight: math.unit(27500, "lb"),
  49720. name: "Front",
  49721. image: {
  49722. source: "./media/characters/north-caudin/front.svg",
  49723. extra: 1184/1082,
  49724. bottom: 23/1207
  49725. }
  49726. },
  49727. },
  49728. [
  49729. {
  49730. name: "Compressed",
  49731. height: math.unit(10, "feet")
  49732. },
  49733. {
  49734. name: "Normal",
  49735. height: math.unit(25, "feet"),
  49736. default: true
  49737. },
  49738. ]
  49739. ))
  49740. characterMakers.push(() => makeCharacter(
  49741. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49742. {
  49743. front: {
  49744. height: math.unit(9, "feet"),
  49745. weight: math.unit(1250, "lb"),
  49746. name: "Front",
  49747. image: {
  49748. source: "./media/characters/merrian/front.svg",
  49749. extra: 2393/2304,
  49750. bottom: 40/2433
  49751. }
  49752. },
  49753. },
  49754. [
  49755. {
  49756. name: "Normal",
  49757. height: math.unit(9, "feet"),
  49758. default: true
  49759. },
  49760. ]
  49761. ))
  49762. characterMakers.push(() => makeCharacter(
  49763. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49764. {
  49765. front: {
  49766. height: math.unit(9, "feet"),
  49767. weight: math.unit(1000, "lb"),
  49768. name: "Front",
  49769. image: {
  49770. source: "./media/characters/hazel/front.svg",
  49771. extra: 2351/2298,
  49772. bottom: 38/2389
  49773. }
  49774. },
  49775. },
  49776. [
  49777. {
  49778. name: "Normal",
  49779. height: math.unit(9, "feet"),
  49780. default: true
  49781. },
  49782. ]
  49783. ))
  49784. characterMakers.push(() => makeCharacter(
  49785. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49786. {
  49787. front: {
  49788. height: math.unit(13, "feet"),
  49789. weight: math.unit(3200, "lb"),
  49790. name: "Front",
  49791. image: {
  49792. source: "./media/characters/emma/front.svg",
  49793. extra: 2263/2029,
  49794. bottom: 68/2331
  49795. }
  49796. },
  49797. },
  49798. [
  49799. {
  49800. name: "Normal",
  49801. height: math.unit(13, "feet"),
  49802. default: true
  49803. },
  49804. ]
  49805. ))
  49806. characterMakers.push(() => makeCharacter(
  49807. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49808. {
  49809. front: {
  49810. height: math.unit(11 + 9/12, "feet"),
  49811. weight: math.unit(2500, "lb"),
  49812. name: "Front",
  49813. image: {
  49814. source: "./media/characters/ilumina/front.svg",
  49815. extra: 2248/2209,
  49816. bottom: 164/2412
  49817. }
  49818. },
  49819. },
  49820. [
  49821. {
  49822. name: "Normal",
  49823. height: math.unit(11 + 9/12, "feet"),
  49824. default: true
  49825. },
  49826. ]
  49827. ))
  49828. characterMakers.push(() => makeCharacter(
  49829. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49830. {
  49831. front: {
  49832. height: math.unit(8 + 10/12, "feet"),
  49833. weight: math.unit(1350, "lb"),
  49834. name: "Front",
  49835. image: {
  49836. source: "./media/characters/moonshine/front.svg",
  49837. extra: 2395/2288,
  49838. bottom: 40/2435
  49839. }
  49840. },
  49841. },
  49842. [
  49843. {
  49844. name: "Normal",
  49845. height: math.unit(8 + 10/12, "feet"),
  49846. default: true
  49847. },
  49848. ]
  49849. ))
  49850. characterMakers.push(() => makeCharacter(
  49851. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49852. {
  49853. front: {
  49854. height: math.unit(14, "feet"),
  49855. weight: math.unit(3400, "lb"),
  49856. name: "Front",
  49857. image: {
  49858. source: "./media/characters/aletia/front.svg",
  49859. extra: 1185/1052,
  49860. bottom: 21/1206
  49861. }
  49862. },
  49863. },
  49864. [
  49865. {
  49866. name: "Compressed",
  49867. height: math.unit(8, "feet")
  49868. },
  49869. {
  49870. name: "Normal",
  49871. height: math.unit(14, "feet"),
  49872. default: true
  49873. },
  49874. ]
  49875. ))
  49876. characterMakers.push(() => makeCharacter(
  49877. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49878. {
  49879. front: {
  49880. height: math.unit(17, "feet"),
  49881. weight: math.unit(6500, "lb"),
  49882. name: "Front",
  49883. image: {
  49884. source: "./media/characters/deidra/front.svg",
  49885. extra: 1201/1081,
  49886. bottom: 16/1217
  49887. }
  49888. },
  49889. },
  49890. [
  49891. {
  49892. name: "Compressed",
  49893. height: math.unit(9 + 6/12, "feet")
  49894. },
  49895. {
  49896. name: "Normal",
  49897. height: math.unit(17, "feet"),
  49898. default: true
  49899. },
  49900. ]
  49901. ))
  49902. characterMakers.push(() => makeCharacter(
  49903. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49904. {
  49905. front: {
  49906. height: math.unit(7 + 4/12, "feet"),
  49907. weight: math.unit(280, "lb"),
  49908. name: "Front",
  49909. image: {
  49910. source: "./media/characters/freki-yrmori/front.svg",
  49911. extra: 1286/1182,
  49912. bottom: 29/1315
  49913. }
  49914. },
  49915. maw: {
  49916. height: math.unit(0.9, "feet"),
  49917. name: "Maw",
  49918. image: {
  49919. source: "./media/characters/freki-yrmori/maw.svg"
  49920. }
  49921. },
  49922. },
  49923. [
  49924. {
  49925. name: "Normal",
  49926. height: math.unit(7 + 4/12, "feet"),
  49927. default: true
  49928. },
  49929. {
  49930. name: "Macro",
  49931. height: math.unit(38.5, "meters")
  49932. },
  49933. ]
  49934. ))
  49935. characterMakers.push(() => makeCharacter(
  49936. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49937. {
  49938. side: {
  49939. height: math.unit(47.2, "meters"),
  49940. weight: math.unit(10000, "tons"),
  49941. name: "Side",
  49942. image: {
  49943. source: "./media/characters/aetherios/side.svg",
  49944. extra: 2363/642,
  49945. bottom: 221/2584
  49946. }
  49947. },
  49948. top: {
  49949. height: math.unit(240, "meters"),
  49950. weight: math.unit(10000, "tons"),
  49951. name: "Top",
  49952. image: {
  49953. source: "./media/characters/aetherios/top.svg"
  49954. }
  49955. },
  49956. bottom: {
  49957. height: math.unit(240, "meters"),
  49958. weight: math.unit(10000, "tons"),
  49959. name: "Bottom",
  49960. image: {
  49961. source: "./media/characters/aetherios/bottom.svg"
  49962. }
  49963. },
  49964. head: {
  49965. height: math.unit(38.6, "meters"),
  49966. name: "Head",
  49967. image: {
  49968. source: "./media/characters/aetherios/head.svg",
  49969. extra: 1335/1112,
  49970. bottom: 0/1335
  49971. }
  49972. },
  49973. front: {
  49974. height: math.unit(29, "meters"),
  49975. name: "Front",
  49976. image: {
  49977. source: "./media/characters/aetherios/front.svg",
  49978. extra: 1266/953,
  49979. bottom: 158/1424
  49980. }
  49981. },
  49982. maw: {
  49983. height: math.unit(16.37, "meters"),
  49984. name: "Maw",
  49985. image: {
  49986. source: "./media/characters/aetherios/maw.svg",
  49987. extra: 748/637,
  49988. bottom: 0/748
  49989. },
  49990. extraAttributes: {
  49991. preyCapacity: {
  49992. name: "Capacity",
  49993. power: 3,
  49994. type: "volume",
  49995. base: math.unit(1000, "people")
  49996. },
  49997. tongueSize: {
  49998. name: "Tongue Size",
  49999. power: 2,
  50000. type: "area",
  50001. base: math.unit(21, "m^2")
  50002. }
  50003. }
  50004. },
  50005. forepaw: {
  50006. height: math.unit(18, "meters"),
  50007. name: "Forepaw",
  50008. image: {
  50009. source: "./media/characters/aetherios/forepaw.svg"
  50010. }
  50011. },
  50012. hindpaw: {
  50013. height: math.unit(23, "meters"),
  50014. name: "Hindpaw",
  50015. image: {
  50016. source: "./media/characters/aetherios/hindpaw.svg"
  50017. }
  50018. },
  50019. genitals: {
  50020. height: math.unit(42, "meters"),
  50021. name: "Genitals",
  50022. image: {
  50023. source: "./media/characters/aetherios/genitals.svg"
  50024. }
  50025. },
  50026. },
  50027. [
  50028. {
  50029. name: "Normal",
  50030. height: math.unit(47.2, "meters"),
  50031. default: true
  50032. },
  50033. {
  50034. name: "Macro",
  50035. height: math.unit(160, "meters")
  50036. },
  50037. {
  50038. name: "Mega",
  50039. height: math.unit(1.87, "km")
  50040. },
  50041. {
  50042. name: "Giga",
  50043. height: math.unit(40000, "km")
  50044. },
  50045. {
  50046. name: "Stellar",
  50047. height: math.unit(158000000, "km")
  50048. },
  50049. {
  50050. name: "Cosmic",
  50051. height: math.unit(9.46e12, "km")
  50052. },
  50053. ]
  50054. ))
  50055. characterMakers.push(() => makeCharacter(
  50056. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50057. {
  50058. front: {
  50059. height: math.unit(5 + 4/12, "feet"),
  50060. weight: math.unit(80, "lb"),
  50061. name: "Front",
  50062. image: {
  50063. source: "./media/characters/mizu-gieeg/front.svg",
  50064. extra: 850/709,
  50065. bottom: 52/902
  50066. }
  50067. },
  50068. back: {
  50069. height: math.unit(5 + 4/12, "feet"),
  50070. weight: math.unit(80, "lb"),
  50071. name: "Back",
  50072. image: {
  50073. source: "./media/characters/mizu-gieeg/back.svg",
  50074. extra: 882/745,
  50075. bottom: 25/907
  50076. }
  50077. },
  50078. },
  50079. [
  50080. {
  50081. name: "Normal",
  50082. height: math.unit(5 + 4/12, "feet"),
  50083. default: true
  50084. },
  50085. ]
  50086. ))
  50087. characterMakers.push(() => makeCharacter(
  50088. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50089. {
  50090. front: {
  50091. height: math.unit(6, "feet"),
  50092. name: "Front",
  50093. image: {
  50094. source: "./media/characters/roselle-st-papier/front.svg",
  50095. extra: 1430/1280,
  50096. bottom: 37/1467
  50097. }
  50098. },
  50099. back: {
  50100. height: math.unit(6, "feet"),
  50101. name: "Back",
  50102. image: {
  50103. source: "./media/characters/roselle-st-papier/back.svg",
  50104. extra: 1491/1296,
  50105. bottom: 23/1514
  50106. }
  50107. },
  50108. ear: {
  50109. height: math.unit(1.26, "feet"),
  50110. name: "Ear",
  50111. image: {
  50112. source: "./media/characters/roselle-st-papier/ear.svg"
  50113. }
  50114. },
  50115. },
  50116. [
  50117. {
  50118. name: "Normal",
  50119. height: math.unit(150, "feet"),
  50120. default: true
  50121. },
  50122. ]
  50123. ))
  50124. characterMakers.push(() => makeCharacter(
  50125. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50126. {
  50127. front: {
  50128. height: math.unit(1, "inches"),
  50129. name: "Front",
  50130. image: {
  50131. source: "./media/characters/valargent/front.svg",
  50132. extra: 1825/1694,
  50133. bottom: 62/1887
  50134. }
  50135. },
  50136. back: {
  50137. height: math.unit(1, "inches"),
  50138. name: "Back",
  50139. image: {
  50140. source: "./media/characters/valargent/back.svg",
  50141. extra: 1775/1682,
  50142. bottom: 88/1863
  50143. }
  50144. },
  50145. },
  50146. [
  50147. {
  50148. name: "Micro",
  50149. height: math.unit(1, "inch"),
  50150. default: true
  50151. },
  50152. ]
  50153. ))
  50154. characterMakers.push(() => makeCharacter(
  50155. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50156. {
  50157. front: {
  50158. height: math.unit(3.4, "meters"),
  50159. name: "Front",
  50160. image: {
  50161. source: "./media/characters/zarina/front.svg",
  50162. extra: 1733/1425,
  50163. bottom: 93/1826
  50164. }
  50165. },
  50166. squatting: {
  50167. height: math.unit(2.14, "meters"),
  50168. name: "Squatting",
  50169. image: {
  50170. source: "./media/characters/zarina/squatting.svg",
  50171. extra: 1073/788,
  50172. bottom: 63/1136
  50173. }
  50174. },
  50175. back: {
  50176. height: math.unit(2.14, "meters"),
  50177. name: "Back",
  50178. image: {
  50179. source: "./media/characters/zarina/back.svg",
  50180. extra: 1128/885,
  50181. bottom: 0/1128
  50182. }
  50183. },
  50184. },
  50185. [
  50186. {
  50187. name: "Normal",
  50188. height: math.unit(3.4, "meters"),
  50189. default: true
  50190. },
  50191. {
  50192. name: "Big",
  50193. height: math.unit(5, "meters")
  50194. },
  50195. {
  50196. name: "Macro",
  50197. height: math.unit(110, "meters")
  50198. },
  50199. ]
  50200. ))
  50201. characterMakers.push(() => makeCharacter(
  50202. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50203. {
  50204. front: {
  50205. height: math.unit(7, "feet"),
  50206. name: "Front",
  50207. image: {
  50208. source: "./media/characters/ventus-astro-fox/front.svg",
  50209. extra: 1792/1623,
  50210. bottom: 28/1820
  50211. }
  50212. },
  50213. back: {
  50214. height: math.unit(7, "feet"),
  50215. name: "Back",
  50216. image: {
  50217. source: "./media/characters/ventus-astro-fox/back.svg",
  50218. extra: 1789/1620,
  50219. bottom: 31/1820
  50220. }
  50221. },
  50222. outfit: {
  50223. height: math.unit(7, "feet"),
  50224. name: "Outfit",
  50225. image: {
  50226. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50227. extra: 1054/925,
  50228. bottom: 15/1069
  50229. }
  50230. },
  50231. head: {
  50232. height: math.unit(1.12, "feet"),
  50233. name: "Head",
  50234. image: {
  50235. source: "./media/characters/ventus-astro-fox/head.svg",
  50236. extra: 866/504,
  50237. bottom: 0/866
  50238. }
  50239. },
  50240. hand: {
  50241. height: math.unit(1, "feet"),
  50242. name: "Hand",
  50243. image: {
  50244. source: "./media/characters/ventus-astro-fox/hand.svg"
  50245. }
  50246. },
  50247. paw: {
  50248. height: math.unit(1.5, "feet"),
  50249. name: "Paw",
  50250. image: {
  50251. source: "./media/characters/ventus-astro-fox/paw.svg"
  50252. }
  50253. },
  50254. },
  50255. [
  50256. {
  50257. name: "Normal",
  50258. height: math.unit(7, "feet"),
  50259. default: true
  50260. },
  50261. {
  50262. name: "Macro",
  50263. height: math.unit(200, "feet")
  50264. },
  50265. {
  50266. name: "Cosmic",
  50267. height: math.unit(3, "universes")
  50268. },
  50269. ]
  50270. ))
  50271. characterMakers.push(() => makeCharacter(
  50272. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50273. {
  50274. front: {
  50275. height: math.unit(3, "meters"),
  50276. weight: math.unit(7000, "lb"),
  50277. name: "Front",
  50278. image: {
  50279. source: "./media/characters/core-t/front.svg",
  50280. extra: 5729/4941,
  50281. bottom: 1129/6858
  50282. }
  50283. },
  50284. },
  50285. [
  50286. {
  50287. name: "Big",
  50288. height: math.unit(3, "meters"),
  50289. default: true
  50290. },
  50291. ]
  50292. ))
  50293. characterMakers.push(() => makeCharacter(
  50294. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50295. {
  50296. normal: {
  50297. height: math.unit(6 + 6/12, "feet"),
  50298. weight: math.unit(275, "lb"),
  50299. name: "Front",
  50300. image: {
  50301. source: "./media/characters/cadbunny/normal.svg",
  50302. extra: 1129/947,
  50303. bottom: 93/1222
  50304. },
  50305. default: true,
  50306. form: "normal"
  50307. },
  50308. gigantamax: {
  50309. height: math.unit(26, "feet"),
  50310. weight: math.unit(16000, "lb"),
  50311. name: "Front",
  50312. image: {
  50313. source: "./media/characters/cadbunny/gigantamax.svg",
  50314. extra: 1133/944,
  50315. bottom: 90/1223
  50316. },
  50317. default: true,
  50318. form: "gigantamax"
  50319. },
  50320. },
  50321. [
  50322. {
  50323. name: "Normal",
  50324. height: math.unit(6 + 6/12, "feet"),
  50325. default: true,
  50326. form: "normal"
  50327. },
  50328. {
  50329. name: "Small",
  50330. height: math.unit(26, "feet"),
  50331. default: true,
  50332. form: "gigantamax"
  50333. },
  50334. {
  50335. name: "Large",
  50336. height: math.unit(78, "feet"),
  50337. form: "gigantamax"
  50338. },
  50339. ],
  50340. {
  50341. "normal": {
  50342. name: "Normal",
  50343. default: true
  50344. },
  50345. "gigantamax": {
  50346. name: "Gigantamax"
  50347. }
  50348. }
  50349. ))
  50350. characterMakers.push(() => makeCharacter(
  50351. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50352. {
  50353. anthroFront: {
  50354. height: math.unit(8, "feet"),
  50355. weight: math.unit(300, "lb"),
  50356. name: "Front",
  50357. image: {
  50358. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50359. extra: 1272/1176,
  50360. bottom: 53/1325
  50361. },
  50362. form: "anthro",
  50363. default: true
  50364. },
  50365. feralSide: {
  50366. height: math.unit(4, "feet"),
  50367. weight: math.unit(250, "lb"),
  50368. name: "Side",
  50369. image: {
  50370. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50371. extra: 731/621,
  50372. bottom: 0/731
  50373. },
  50374. form: "feral",
  50375. default: true
  50376. },
  50377. },
  50378. [
  50379. {
  50380. name: "Regular",
  50381. height: math.unit(8, "feet"),
  50382. form: "anthro"
  50383. },
  50384. {
  50385. name: "Macro",
  50386. height: math.unit(250, "feet"),
  50387. form: "anthro",
  50388. default: true
  50389. },
  50390. {
  50391. name: "Regular",
  50392. height: math.unit(4, "feet"),
  50393. form: "feral"
  50394. },
  50395. {
  50396. name: "Macro",
  50397. height: math.unit(125, "feet"),
  50398. form: "feral",
  50399. default: true
  50400. },
  50401. ],
  50402. {
  50403. "anthro": {
  50404. name: "Anthro",
  50405. default: true
  50406. },
  50407. "feral": {
  50408. name: "Feral",
  50409. },
  50410. }
  50411. ))
  50412. characterMakers.push(() => makeCharacter(
  50413. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50414. {
  50415. front: {
  50416. height: math.unit(11 + 10/12, "feet"),
  50417. weight: math.unit(1587, "kg"),
  50418. name: "Front",
  50419. image: {
  50420. source: "./media/characters/maple-javira-dragon/front.svg",
  50421. extra: 1136/744,
  50422. bottom: 73/1209
  50423. }
  50424. },
  50425. side: {
  50426. height: math.unit(11 + 10/12, "feet"),
  50427. weight: math.unit(1587, "kg"),
  50428. name: "Side",
  50429. image: {
  50430. source: "./media/characters/maple-javira-dragon/side.svg",
  50431. extra: 712/505,
  50432. bottom: 17/729
  50433. }
  50434. },
  50435. head: {
  50436. height: math.unit(8.05, "feet"),
  50437. name: "Head",
  50438. image: {
  50439. source: "./media/characters/maple-javira-dragon/head.svg",
  50440. extra: 1420/1344,
  50441. bottom: 0/1420
  50442. }
  50443. },
  50444. },
  50445. [
  50446. {
  50447. name: "Normal",
  50448. height: math.unit(11 + 10/12, "feet"),
  50449. default: true
  50450. },
  50451. ]
  50452. ))
  50453. characterMakers.push(() => makeCharacter(
  50454. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50455. {
  50456. front: {
  50457. height: math.unit(117, "cm"),
  50458. weight: math.unit(50, "kg"),
  50459. name: "Front",
  50460. image: {
  50461. source: "./media/characters/sonia-wyverntail/front.svg",
  50462. extra: 708/592,
  50463. bottom: 25/733
  50464. }
  50465. },
  50466. },
  50467. [
  50468. {
  50469. name: "Normal",
  50470. height: math.unit(117, "cm"),
  50471. default: true
  50472. },
  50473. ]
  50474. ))
  50475. characterMakers.push(() => makeCharacter(
  50476. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50477. {
  50478. front: {
  50479. height: math.unit(6 + 5/12, "feet"),
  50480. name: "Front",
  50481. image: {
  50482. source: "./media/characters/micah/front.svg",
  50483. extra: 1758/1546,
  50484. bottom: 214/1972
  50485. }
  50486. },
  50487. },
  50488. [
  50489. {
  50490. name: "Normal",
  50491. height: math.unit(6 + 5/12, "feet"),
  50492. default: true
  50493. },
  50494. ]
  50495. ))
  50496. characterMakers.push(() => makeCharacter(
  50497. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50498. {
  50499. front: {
  50500. height: math.unit(5 + 10/12, "feet"),
  50501. weight: math.unit(220, "lb"),
  50502. name: "Front",
  50503. image: {
  50504. source: "./media/characters/zarya/front.svg",
  50505. extra: 593/572,
  50506. bottom: 50/643
  50507. }
  50508. },
  50509. back: {
  50510. height: math.unit(5 + 10/12, "feet"),
  50511. weight: math.unit(220, "lb"),
  50512. name: "Back",
  50513. image: {
  50514. source: "./media/characters/zarya/back.svg",
  50515. extra: 603/582,
  50516. bottom: 38/641
  50517. }
  50518. },
  50519. },
  50520. [
  50521. {
  50522. name: "Normal",
  50523. height: math.unit(5 + 10/12, "feet"),
  50524. default: true
  50525. },
  50526. ]
  50527. ))
  50528. characterMakers.push(() => makeCharacter(
  50529. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50530. {
  50531. front: {
  50532. height: math.unit(7.5, "feet"),
  50533. name: "Front",
  50534. image: {
  50535. source: "./media/characters/sven-hatisson/front.svg",
  50536. extra: 917/857,
  50537. bottom: 42/959
  50538. }
  50539. },
  50540. back: {
  50541. height: math.unit(7.5, "feet"),
  50542. name: "Back",
  50543. image: {
  50544. source: "./media/characters/sven-hatisson/back.svg",
  50545. extra: 903/856,
  50546. bottom: 15/918
  50547. }
  50548. },
  50549. },
  50550. [
  50551. {
  50552. name: "Base Height",
  50553. height: math.unit(7.5, "feet")
  50554. },
  50555. {
  50556. name: "Usual Height",
  50557. height: math.unit(13.5, "feet"),
  50558. default: true
  50559. },
  50560. {
  50561. name: "Smaller Macro",
  50562. height: math.unit(85, "feet")
  50563. },
  50564. {
  50565. name: "Moderate Macro",
  50566. height: math.unit(320, "feet")
  50567. },
  50568. {
  50569. name: "Large Macro",
  50570. height: math.unit(1000, "feet")
  50571. },
  50572. {
  50573. name: "Largest Size",
  50574. height: math.unit(2, "miles")
  50575. },
  50576. ]
  50577. ))
  50578. characterMakers.push(() => makeCharacter(
  50579. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50580. {
  50581. side: {
  50582. height: math.unit(1.8, "meters"),
  50583. weight: math.unit(275, "kg"),
  50584. name: "Side",
  50585. image: {
  50586. source: "./media/characters/terra/side.svg",
  50587. extra: 1273/1147,
  50588. bottom: 0/1273
  50589. }
  50590. },
  50591. },
  50592. [
  50593. {
  50594. name: "Normal",
  50595. height: math.unit(16.2, "meters"),
  50596. default: true
  50597. },
  50598. ]
  50599. ))
  50600. characterMakers.push(() => makeCharacter(
  50601. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50602. {
  50603. borzoiFront: {
  50604. height: math.unit(6 + 9/12, "feet"),
  50605. name: "Front",
  50606. image: {
  50607. source: "./media/characters/rae/borzoi-front.svg",
  50608. extra: 1161/1098,
  50609. bottom: 31/1192
  50610. },
  50611. form: "borzoi",
  50612. default: true
  50613. },
  50614. werewolfFront: {
  50615. height: math.unit(8 + 7/12, "feet"),
  50616. name: "Front",
  50617. image: {
  50618. source: "./media/characters/rae/werewolf-front.svg",
  50619. extra: 1411/1334,
  50620. bottom: 127/1538
  50621. },
  50622. form: "werewolf",
  50623. default: true
  50624. },
  50625. },
  50626. [
  50627. {
  50628. name: "Normal",
  50629. height: math.unit(6 + 9/12, "feet"),
  50630. default: true,
  50631. form: "borzoi"
  50632. },
  50633. {
  50634. name: "Normal",
  50635. height: math.unit(8 + 7/12, "feet"),
  50636. default: true,
  50637. form: "werewolf"
  50638. },
  50639. ],
  50640. {
  50641. "borzoi": {
  50642. name: "Borzoi",
  50643. default: true
  50644. },
  50645. "werewolf": {
  50646. name: "Werewolf",
  50647. },
  50648. }
  50649. ))
  50650. characterMakers.push(() => makeCharacter(
  50651. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50652. {
  50653. front: {
  50654. height: math.unit(8 + 7/12, "feet"),
  50655. weight: math.unit(482, "lb"),
  50656. name: "Front",
  50657. image: {
  50658. source: "./media/characters/kit/front.svg",
  50659. extra: 1247/1103,
  50660. bottom: 41/1288
  50661. }
  50662. },
  50663. back: {
  50664. height: math.unit(8 + 7/12, "feet"),
  50665. weight: math.unit(482, "lb"),
  50666. name: "Back",
  50667. image: {
  50668. source: "./media/characters/kit/back.svg",
  50669. extra: 1252/1123,
  50670. bottom: 21/1273
  50671. }
  50672. },
  50673. paw: {
  50674. height: math.unit(1.46, "feet"),
  50675. name: "Paw",
  50676. image: {
  50677. source: "./media/characters/kit/paw.svg"
  50678. }
  50679. },
  50680. },
  50681. [
  50682. {
  50683. name: "Normal",
  50684. height: math.unit(2.61, "meters"),
  50685. default: true
  50686. },
  50687. {
  50688. name: "\"Tall\"",
  50689. height: math.unit(8.21, "meters")
  50690. },
  50691. {
  50692. name: "Tall",
  50693. height: math.unit(19.6, "meters")
  50694. },
  50695. {
  50696. name: "Very Tall",
  50697. height: math.unit(57.91, "meters")
  50698. },
  50699. {
  50700. name: "Semi-Macro",
  50701. height: math.unit(138.64, "meters")
  50702. },
  50703. {
  50704. name: "Macro",
  50705. height: math.unit(831.99, "meters")
  50706. },
  50707. {
  50708. name: "EX-Macro",
  50709. height: math.unit(96451121, "meters")
  50710. },
  50711. {
  50712. name: "S1-Omnipotent",
  50713. height: math.unit(4.42074e+9, "meters")
  50714. },
  50715. {
  50716. name: "S2-Omnipotent",
  50717. height: math.unit(9.42074e+17, "meters")
  50718. },
  50719. {
  50720. name: "Omnipotent",
  50721. height: math.unit(4.23112e+24, "meters")
  50722. },
  50723. {
  50724. name: "Hypergod",
  50725. height: math.unit(5.05176e+27, "meters")
  50726. },
  50727. {
  50728. name: "Hypergod-EX",
  50729. height: math.unit(9.45532e+49, "meters")
  50730. },
  50731. {
  50732. name: "Hypergod-SP",
  50733. height: math.unit(9.45532e+195, "meters")
  50734. },
  50735. ]
  50736. ))
  50737. characterMakers.push(() => makeCharacter(
  50738. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50739. {
  50740. side: {
  50741. height: math.unit(0.6, "meters"),
  50742. weight: math.unit(24, "kg"),
  50743. name: "Side",
  50744. image: {
  50745. source: "./media/characters/celeste/side.svg",
  50746. extra: 810/517,
  50747. bottom: 53/863
  50748. }
  50749. },
  50750. },
  50751. [
  50752. {
  50753. name: "Velociraptor",
  50754. height: math.unit(0.6, "meters"),
  50755. default: true
  50756. },
  50757. {
  50758. name: "Utahraptor",
  50759. height: math.unit(1.8, "meters")
  50760. },
  50761. {
  50762. name: "Gallimimus",
  50763. height: math.unit(4.0, "meters")
  50764. },
  50765. {
  50766. name: "Large",
  50767. height: math.unit(20, "meters")
  50768. },
  50769. {
  50770. name: "Planetary",
  50771. height: math.unit(50, "megameters")
  50772. },
  50773. {
  50774. name: "Stellar",
  50775. height: math.unit(1.5, "gigameters")
  50776. },
  50777. {
  50778. name: "Galactic",
  50779. height: math.unit(100, "exameters")
  50780. },
  50781. ]
  50782. ))
  50783. characterMakers.push(() => makeCharacter(
  50784. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50785. {
  50786. front: {
  50787. height: math.unit(6, "feet"),
  50788. weight: math.unit(210, "lb"),
  50789. name: "Front",
  50790. image: {
  50791. source: "./media/characters/glacia/front.svg",
  50792. extra: 958/901,
  50793. bottom: 45/1003
  50794. }
  50795. },
  50796. },
  50797. [
  50798. {
  50799. name: "Macro",
  50800. height: math.unit(1000, "meters"),
  50801. default: true
  50802. },
  50803. ]
  50804. ))
  50805. characterMakers.push(() => makeCharacter(
  50806. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50807. {
  50808. front: {
  50809. height: math.unit(4, "meters"),
  50810. name: "Front",
  50811. image: {
  50812. source: "./media/characters/giri/front.svg",
  50813. extra: 966/894,
  50814. bottom: 21/987
  50815. }
  50816. },
  50817. },
  50818. [
  50819. {
  50820. name: "Normal",
  50821. height: math.unit(4, "meters"),
  50822. default: true
  50823. },
  50824. ]
  50825. ))
  50826. characterMakers.push(() => makeCharacter(
  50827. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50828. {
  50829. back: {
  50830. height: math.unit(4, "feet"),
  50831. weight: math.unit(37, "lb"),
  50832. name: "Back",
  50833. image: {
  50834. source: "./media/characters/tin/back.svg",
  50835. extra: 845/780,
  50836. bottom: 28/873
  50837. }
  50838. },
  50839. },
  50840. [
  50841. {
  50842. name: "Normal",
  50843. height: math.unit(4, "feet"),
  50844. default: true
  50845. },
  50846. ]
  50847. ))
  50848. characterMakers.push(() => makeCharacter(
  50849. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50850. {
  50851. front: {
  50852. height: math.unit(25, "feet"),
  50853. name: "Front",
  50854. image: {
  50855. source: "./media/characters/cadenza-vivace/front.svg",
  50856. extra: 1842/1578,
  50857. bottom: 30/1872
  50858. }
  50859. },
  50860. },
  50861. [
  50862. {
  50863. name: "Macro",
  50864. height: math.unit(25, "feet"),
  50865. default: true
  50866. },
  50867. ]
  50868. ))
  50869. characterMakers.push(() => makeCharacter(
  50870. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50871. {
  50872. front: {
  50873. height: math.unit(10, "feet"),
  50874. weight: math.unit(625, "kg"),
  50875. name: "Front",
  50876. image: {
  50877. source: "./media/characters/zain/front.svg",
  50878. extra: 1682/1498,
  50879. bottom: 223/1905
  50880. }
  50881. },
  50882. back: {
  50883. height: math.unit(10, "feet"),
  50884. weight: math.unit(625, "kg"),
  50885. name: "Back",
  50886. image: {
  50887. source: "./media/characters/zain/back.svg",
  50888. extra: 1814/1657,
  50889. bottom: 152/1966
  50890. }
  50891. },
  50892. head: {
  50893. height: math.unit(10, "feet"),
  50894. weight: math.unit(625, "kg"),
  50895. name: "Head",
  50896. image: {
  50897. source: "./media/characters/zain/head.svg",
  50898. extra: 1059/762,
  50899. bottom: 0/1059
  50900. }
  50901. },
  50902. },
  50903. [
  50904. {
  50905. name: "Normal",
  50906. height: math.unit(10, "feet"),
  50907. default: true
  50908. },
  50909. ]
  50910. ))
  50911. characterMakers.push(() => makeCharacter(
  50912. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50913. {
  50914. front: {
  50915. height: math.unit(6 + 5/12, "feet"),
  50916. weight: math.unit(750, "lb"),
  50917. name: "Front",
  50918. image: {
  50919. source: "./media/characters/ruchex/front.svg",
  50920. extra: 877/820,
  50921. bottom: 17/894
  50922. },
  50923. extraAttributes: {
  50924. "width": {
  50925. name: "Width",
  50926. power: 1,
  50927. type: "length",
  50928. base: math.unit(4.757, "feet")
  50929. },
  50930. }
  50931. },
  50932. },
  50933. [
  50934. {
  50935. name: "Normal",
  50936. height: math.unit(6 + 5/12, "feet"),
  50937. default: true
  50938. },
  50939. ]
  50940. ))
  50941. characterMakers.push(() => makeCharacter(
  50942. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50943. {
  50944. dressedFront: {
  50945. height: math.unit(191, "cm"),
  50946. weight: math.unit(80, "kg"),
  50947. name: "Front",
  50948. image: {
  50949. source: "./media/characters/buster/dressed-front.svg",
  50950. extra: 1022/973,
  50951. bottom: 69/1091
  50952. }
  50953. },
  50954. dressedBack: {
  50955. height: math.unit(191, "cm"),
  50956. weight: math.unit(80, "kg"),
  50957. name: "Back",
  50958. image: {
  50959. source: "./media/characters/buster/dressed-back.svg",
  50960. extra: 1018/970,
  50961. bottom: 55/1073
  50962. }
  50963. },
  50964. nudeFront: {
  50965. height: math.unit(191, "cm"),
  50966. weight: math.unit(80, "kg"),
  50967. name: "Front (Nude)",
  50968. image: {
  50969. source: "./media/characters/buster/nude-front.svg",
  50970. extra: 1022/973,
  50971. bottom: 69/1091
  50972. }
  50973. },
  50974. nudeBack: {
  50975. height: math.unit(191, "cm"),
  50976. weight: math.unit(80, "kg"),
  50977. name: "Back (Nude)",
  50978. image: {
  50979. source: "./media/characters/buster/nude-back.svg",
  50980. extra: 1018/970,
  50981. bottom: 55/1073
  50982. }
  50983. },
  50984. dick: {
  50985. height: math.unit(2.59, "feet"),
  50986. name: "Dick",
  50987. image: {
  50988. source: "./media/characters/buster/dick.svg"
  50989. }
  50990. },
  50991. ass: {
  50992. height: math.unit(1.2, "feet"),
  50993. name: "Ass",
  50994. image: {
  50995. source: "./media/characters/buster/ass.svg"
  50996. }
  50997. },
  50998. },
  50999. [
  51000. {
  51001. name: "Normal",
  51002. height: math.unit(191, "cm"),
  51003. default: true
  51004. },
  51005. ]
  51006. ))
  51007. characterMakers.push(() => makeCharacter(
  51008. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51009. {
  51010. side: {
  51011. height: math.unit(8.1, "feet"),
  51012. weight: math.unit(3500, "lb"),
  51013. name: "Side",
  51014. image: {
  51015. source: "./media/characters/sonya/side.svg",
  51016. extra: 1730/1317,
  51017. bottom: 86/1816
  51018. }
  51019. },
  51020. },
  51021. [
  51022. {
  51023. name: "Normal",
  51024. height: math.unit(8.1, "feet"),
  51025. default: true
  51026. },
  51027. ]
  51028. ))
  51029. characterMakers.push(() => makeCharacter(
  51030. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51031. {
  51032. front: {
  51033. height: math.unit(6, "feet"),
  51034. weight: math.unit(150, "lb"),
  51035. name: "Front",
  51036. image: {
  51037. source: "./media/characters/cadence-andrysiak/front.svg",
  51038. extra: 1164/1121,
  51039. bottom: 60/1224
  51040. }
  51041. },
  51042. back: {
  51043. height: math.unit(6, "feet"),
  51044. weight: math.unit(150, "lb"),
  51045. name: "Back",
  51046. image: {
  51047. source: "./media/characters/cadence-andrysiak/back.svg",
  51048. extra: 1200/1165,
  51049. bottom: 9/1209
  51050. }
  51051. },
  51052. dressed: {
  51053. height: math.unit(6, "feet"),
  51054. weight: math.unit(150, "lb"),
  51055. name: "Dressed",
  51056. image: {
  51057. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51058. extra: 1164/1121,
  51059. bottom: 60/1224
  51060. }
  51061. },
  51062. },
  51063. [
  51064. {
  51065. name: "Micro",
  51066. height: math.unit(1, "mm")
  51067. },
  51068. {
  51069. name: "Normal",
  51070. height: math.unit(6, "feet"),
  51071. default: true
  51072. },
  51073. ]
  51074. ))
  51075. characterMakers.push(() => makeCharacter(
  51076. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51077. {
  51078. front: {
  51079. height: math.unit(60, "inches"),
  51080. weight: math.unit(16, "lb"),
  51081. preyCapacity: math.unit(80, "liters"),
  51082. name: "Front",
  51083. image: {
  51084. source: "./media/characters/penny-lynx/front.svg",
  51085. extra: 1959/1769,
  51086. bottom: 49/2008
  51087. }
  51088. },
  51089. },
  51090. [
  51091. {
  51092. name: "Nokia",
  51093. height: math.unit(2, "inches")
  51094. },
  51095. {
  51096. name: "Desktop",
  51097. height: math.unit(24, "inches")
  51098. },
  51099. {
  51100. name: "TV",
  51101. height: math.unit(60, "inches")
  51102. },
  51103. {
  51104. name: "Jumbotron",
  51105. height: math.unit(12, "feet")
  51106. },
  51107. {
  51108. name: "Billboard",
  51109. height: math.unit(48, "feet"),
  51110. default: true
  51111. },
  51112. {
  51113. name: "IMAX",
  51114. height: math.unit(96, "feet")
  51115. },
  51116. {
  51117. name: "SINGULARITY",
  51118. height: math.unit(864938, "miles")
  51119. },
  51120. ]
  51121. ))
  51122. characterMakers.push(() => makeCharacter(
  51123. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51124. {
  51125. front: {
  51126. height: math.unit(5 + 4/12, "feet"),
  51127. weight: math.unit(230, "lb"),
  51128. name: "Front",
  51129. image: {
  51130. source: "./media/characters/sukebe/front.svg",
  51131. extra: 2130/2038,
  51132. bottom: 90/2220
  51133. }
  51134. },
  51135. back: {
  51136. height: math.unit(3.48, "feet"),
  51137. weight: math.unit(230, "lb"),
  51138. name: "Back",
  51139. image: {
  51140. source: "./media/characters/sukebe/back.svg",
  51141. extra: 1670/1604,
  51142. bottom: 0/1670
  51143. }
  51144. },
  51145. },
  51146. [
  51147. {
  51148. name: "Normal",
  51149. height: math.unit(5 + 4/12, "feet"),
  51150. default: true
  51151. },
  51152. ]
  51153. ))
  51154. characterMakers.push(() => makeCharacter(
  51155. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51156. {
  51157. front: {
  51158. height: math.unit(6, "feet"),
  51159. name: "Front",
  51160. image: {
  51161. source: "./media/characters/nylla/front.svg",
  51162. extra: 1868/1699,
  51163. bottom: 97/1965
  51164. }
  51165. },
  51166. back: {
  51167. height: math.unit(6, "feet"),
  51168. name: "Back",
  51169. image: {
  51170. source: "./media/characters/nylla/back.svg",
  51171. extra: 1889/1712,
  51172. bottom: 93/1982
  51173. }
  51174. },
  51175. frontNsfw: {
  51176. height: math.unit(6, "feet"),
  51177. name: "Front (NSFW)",
  51178. image: {
  51179. source: "./media/characters/nylla/front-nsfw.svg",
  51180. extra: 1868/1699,
  51181. bottom: 97/1965
  51182. },
  51183. extraAttributes: {
  51184. "dickLength": {
  51185. name: "Dick Length",
  51186. power: 1,
  51187. type: "length",
  51188. base: math.unit(1.4, "feet")
  51189. },
  51190. "cumVolume": {
  51191. name: "Cum Volume",
  51192. power: 3,
  51193. type: "volume",
  51194. base: math.unit(100, "mL")
  51195. },
  51196. }
  51197. },
  51198. backNsfw: {
  51199. height: math.unit(6, "feet"),
  51200. name: "Back (NSFW)",
  51201. image: {
  51202. source: "./media/characters/nylla/back-nsfw.svg",
  51203. extra: 1889/1712,
  51204. bottom: 93/1982
  51205. }
  51206. },
  51207. maw: {
  51208. height: math.unit(2.10, "feet"),
  51209. name: "Maw",
  51210. image: {
  51211. source: "./media/characters/nylla/maw.svg"
  51212. }
  51213. },
  51214. paws: {
  51215. height: math.unit(2.06, "feet"),
  51216. name: "Paws",
  51217. image: {
  51218. source: "./media/characters/nylla/paws.svg"
  51219. }
  51220. },
  51221. muzzle: {
  51222. height: math.unit(0.61, "feet"),
  51223. name: "Muzzle",
  51224. image: {
  51225. source: "./media/characters/nylla/muzzle.svg"
  51226. }
  51227. },
  51228. sheath: {
  51229. height: math.unit(1.305, "feet"),
  51230. name: "Sheath",
  51231. image: {
  51232. source: "./media/characters/nylla/sheath.svg"
  51233. }
  51234. },
  51235. },
  51236. [
  51237. {
  51238. name: "Micro",
  51239. height: math.unit(7.5, "inches")
  51240. },
  51241. {
  51242. name: "Normal",
  51243. height: math.unit(7, "feet"),
  51244. default: true
  51245. },
  51246. {
  51247. name: "Macro",
  51248. height: math.unit(60, "feet")
  51249. },
  51250. {
  51251. name: "Mega",
  51252. height: math.unit(200, "feet")
  51253. },
  51254. ]
  51255. ))
  51256. characterMakers.push(() => makeCharacter(
  51257. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51258. {
  51259. front: {
  51260. height: math.unit(10, "feet"),
  51261. weight: math.unit(2300, "lb"),
  51262. name: "Front",
  51263. image: {
  51264. source: "./media/characters/hunt3r/front.svg",
  51265. extra: 1909/1742,
  51266. bottom: 46/1955
  51267. }
  51268. },
  51269. },
  51270. [
  51271. {
  51272. name: "Normal",
  51273. height: math.unit(10, "feet"),
  51274. default: true
  51275. },
  51276. ]
  51277. ))
  51278. characterMakers.push(() => makeCharacter(
  51279. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51280. {
  51281. dressed: {
  51282. height: math.unit(11, "feet"),
  51283. weight: math.unit(18500, "lb"),
  51284. preyCapacity: math.unit(9, "people"),
  51285. name: "Dressed",
  51286. image: {
  51287. source: "./media/characters/cylphis/dressed.svg",
  51288. extra: 1028/1003,
  51289. bottom: 75/1103
  51290. },
  51291. },
  51292. undressed: {
  51293. height: math.unit(11, "feet"),
  51294. weight: math.unit(18500, "lb"),
  51295. preyCapacity: math.unit(9, "people"),
  51296. name: "Undressed",
  51297. image: {
  51298. source: "./media/characters/cylphis/undressed.svg",
  51299. extra: 1028/1003,
  51300. bottom: 75/1103
  51301. }
  51302. },
  51303. full: {
  51304. height: math.unit(11, "feet"),
  51305. weight: math.unit(18500 + 150*9, "lb"),
  51306. preyCapacity: math.unit(9, "people"),
  51307. name: "Full",
  51308. image: {
  51309. source: "./media/characters/cylphis/full.svg",
  51310. extra: 1028/1003,
  51311. bottom: 75/1103
  51312. }
  51313. },
  51314. },
  51315. [
  51316. {
  51317. name: "Small",
  51318. height: math.unit(8, "feet")
  51319. },
  51320. {
  51321. name: "Normal",
  51322. height: math.unit(11, "feet"),
  51323. default: true
  51324. },
  51325. ]
  51326. ))
  51327. characterMakers.push(() => makeCharacter(
  51328. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51329. {
  51330. front: {
  51331. height: math.unit(2 + 7/12, "feet"),
  51332. name: "Front",
  51333. image: {
  51334. source: "./media/characters/orishan/front.svg",
  51335. extra: 1058/1023,
  51336. bottom: 23/1081
  51337. }
  51338. },
  51339. back: {
  51340. height: math.unit(2 + 7/12, "feet"),
  51341. name: "Back",
  51342. image: {
  51343. source: "./media/characters/orishan/back.svg",
  51344. extra: 1058/1023,
  51345. bottom: 23/1081
  51346. }
  51347. },
  51348. },
  51349. [
  51350. {
  51351. name: "Micro",
  51352. height: math.unit(2, "cm")
  51353. },
  51354. {
  51355. name: "Normal",
  51356. height: math.unit(2 + 7/12, "feet"),
  51357. default: true
  51358. },
  51359. ]
  51360. ))
  51361. characterMakers.push(() => makeCharacter(
  51362. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51363. {
  51364. front: {
  51365. height: math.unit(3, "meters"),
  51366. weight: math.unit(508, "kg"),
  51367. name: "Front",
  51368. image: {
  51369. source: "./media/characters/seranis/front.svg",
  51370. extra: 1478/1454,
  51371. bottom: 41/1519
  51372. }
  51373. },
  51374. },
  51375. [
  51376. {
  51377. name: "Normal",
  51378. height: math.unit(3, "meters"),
  51379. default: true
  51380. },
  51381. {
  51382. name: "Macro",
  51383. height: math.unit(108, "meters")
  51384. },
  51385. {
  51386. name: "Megamacro",
  51387. height: math.unit(1250, "meters")
  51388. },
  51389. ]
  51390. ))
  51391. characterMakers.push(() => makeCharacter(
  51392. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51393. {
  51394. undressed: {
  51395. height: math.unit(5 + 3/12, "feet"),
  51396. name: "Undressed",
  51397. image: {
  51398. source: "./media/characters/ankou/undressed.svg",
  51399. extra: 1301/1213,
  51400. bottom: 87/1388
  51401. }
  51402. },
  51403. dressed: {
  51404. height: math.unit(5 + 3/12, "feet"),
  51405. name: "Dressed",
  51406. image: {
  51407. source: "./media/characters/ankou/dressed.svg",
  51408. extra: 1301/1213,
  51409. bottom: 87/1388
  51410. }
  51411. },
  51412. head: {
  51413. height: math.unit(1.61, "feet"),
  51414. name: "Head",
  51415. image: {
  51416. source: "./media/characters/ankou/head.svg"
  51417. }
  51418. },
  51419. },
  51420. [
  51421. {
  51422. name: "Normal",
  51423. height: math.unit(5 + 3/12, "feet"),
  51424. default: true
  51425. },
  51426. ]
  51427. ))
  51428. characterMakers.push(() => makeCharacter(
  51429. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51430. {
  51431. side: {
  51432. height: math.unit(6 + 3/12, "feet"),
  51433. weight: math.unit(200, "kg"),
  51434. name: "Side",
  51435. image: {
  51436. source: "./media/characters/juniper-skunktaur/side.svg",
  51437. extra: 1574/1229,
  51438. bottom: 38/1612
  51439. }
  51440. },
  51441. front: {
  51442. height: math.unit(6 + 3/12, "feet"),
  51443. weight: math.unit(200, "kg"),
  51444. name: "Front",
  51445. image: {
  51446. source: "./media/characters/juniper-skunktaur/front.svg",
  51447. extra: 1337/1278,
  51448. bottom: 22/1359
  51449. }
  51450. },
  51451. back: {
  51452. height: math.unit(6 + 3/12, "feet"),
  51453. weight: math.unit(200, "kg"),
  51454. name: "Back",
  51455. image: {
  51456. source: "./media/characters/juniper-skunktaur/back.svg",
  51457. extra: 1618/1273,
  51458. bottom: 13/1631
  51459. }
  51460. },
  51461. top: {
  51462. height: math.unit(2.62, "feet"),
  51463. weight: math.unit(200, "kg"),
  51464. name: "Top",
  51465. image: {
  51466. source: "./media/characters/juniper-skunktaur/top.svg"
  51467. }
  51468. },
  51469. },
  51470. [
  51471. {
  51472. name: "Normal",
  51473. height: math.unit(6 + 3/12, "feet"),
  51474. default: true
  51475. },
  51476. ]
  51477. ))
  51478. characterMakers.push(() => makeCharacter(
  51479. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51480. {
  51481. front: {
  51482. height: math.unit(20.5, "feet"),
  51483. name: "Front",
  51484. image: {
  51485. source: "./media/characters/rei/front.svg",
  51486. extra: 1349/1195,
  51487. bottom: 31/1380
  51488. }
  51489. },
  51490. back: {
  51491. height: math.unit(20.5, "feet"),
  51492. name: "Back",
  51493. image: {
  51494. source: "./media/characters/rei/back.svg",
  51495. extra: 1358/1204,
  51496. bottom: 22/1380
  51497. }
  51498. },
  51499. pawsDigi: {
  51500. height: math.unit(3.45, "feet"),
  51501. name: "Paws (Digi)",
  51502. image: {
  51503. source: "./media/characters/rei/paws-digi.svg"
  51504. }
  51505. },
  51506. pawsPlanti: {
  51507. height: math.unit(3.45, "feet"),
  51508. name: "Paws (Planti)",
  51509. image: {
  51510. source: "./media/characters/rei/paws-planti.svg"
  51511. }
  51512. },
  51513. },
  51514. [
  51515. {
  51516. name: "Normal",
  51517. height: math.unit(20.5, "feet"),
  51518. default: true
  51519. },
  51520. ]
  51521. ))
  51522. characterMakers.push(() => makeCharacter(
  51523. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51524. {
  51525. front: {
  51526. height: math.unit(5 + 11/12, "feet"),
  51527. name: "Front",
  51528. image: {
  51529. source: "./media/characters/carina/front.svg",
  51530. extra: 1720/1449,
  51531. bottom: 14/1734
  51532. }
  51533. },
  51534. back: {
  51535. height: math.unit(5 + 11/12, "feet"),
  51536. name: "Back",
  51537. image: {
  51538. source: "./media/characters/carina/back.svg",
  51539. extra: 1493/1445,
  51540. bottom: 17/1510
  51541. }
  51542. },
  51543. paw: {
  51544. height: math.unit(0.92, "feet"),
  51545. name: "Paw",
  51546. image: {
  51547. source: "./media/characters/carina/paw.svg"
  51548. }
  51549. },
  51550. },
  51551. [
  51552. {
  51553. name: "Normal",
  51554. height: math.unit(5 + 11/12, "feet"),
  51555. default: true
  51556. },
  51557. ]
  51558. ))
  51559. characterMakers.push(() => makeCharacter(
  51560. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51561. {
  51562. front: {
  51563. height: math.unit(4.88, "meters"),
  51564. name: "Front",
  51565. image: {
  51566. source: "./media/characters/maya/front.svg",
  51567. extra: 1222/1145,
  51568. bottom: 57/1279
  51569. }
  51570. },
  51571. },
  51572. [
  51573. {
  51574. name: "Normal",
  51575. height: math.unit(4.88, "meters"),
  51576. default: true
  51577. },
  51578. {
  51579. name: "Macro",
  51580. height: math.unit(38.1, "meters")
  51581. },
  51582. {
  51583. name: "Macro+",
  51584. height: math.unit(152.4, "meters")
  51585. },
  51586. {
  51587. name: "Macro++",
  51588. height: math.unit(16.09, "km")
  51589. },
  51590. {
  51591. name: "Mega-macro",
  51592. height: math.unit(700, "megameters")
  51593. },
  51594. ]
  51595. ))
  51596. characterMakers.push(() => makeCharacter(
  51597. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51598. {
  51599. front: {
  51600. height: math.unit(6 + 2/12, "feet"),
  51601. weight: math.unit(500, "lb"),
  51602. preyCapacity: math.unit(4, "people"),
  51603. name: "Front",
  51604. image: {
  51605. source: "./media/characters/yepir/front.svg"
  51606. }
  51607. },
  51608. side: {
  51609. height: math.unit(6 + 2/12, "feet"),
  51610. weight: math.unit(500, "lb"),
  51611. preyCapacity: math.unit(4, "people"),
  51612. name: "Side",
  51613. image: {
  51614. source: "./media/characters/yepir/side.svg"
  51615. }
  51616. },
  51617. paw: {
  51618. height: math.unit(1.05, "feet"),
  51619. name: "Paw",
  51620. image: {
  51621. source: "./media/characters/yepir/paw.svg"
  51622. }
  51623. },
  51624. },
  51625. [
  51626. {
  51627. name: "Normal",
  51628. height: math.unit(6 + 2/12, "feet"),
  51629. default: true
  51630. },
  51631. ]
  51632. ))
  51633. characterMakers.push(() => makeCharacter(
  51634. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51635. {
  51636. front: {
  51637. height: math.unit(5 + 4/12, "feet"),
  51638. name: "Front",
  51639. image: {
  51640. source: "./media/characters/russec/front.svg",
  51641. extra: 1926/1626,
  51642. bottom: 72/1998
  51643. }
  51644. },
  51645. back: {
  51646. height: math.unit(5 + 4/12, "feet"),
  51647. name: "Back",
  51648. image: {
  51649. source: "./media/characters/russec/back.svg",
  51650. extra: 1910/1591,
  51651. bottom: 48/1958
  51652. }
  51653. },
  51654. },
  51655. [
  51656. {
  51657. name: "Small",
  51658. height: math.unit(5 + 4/12, "feet")
  51659. },
  51660. {
  51661. name: "Normal",
  51662. height: math.unit(72, "feet"),
  51663. default: true
  51664. },
  51665. ]
  51666. ))
  51667. characterMakers.push(() => makeCharacter(
  51668. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51669. {
  51670. side: {
  51671. height: math.unit(12, "feet"),
  51672. name: "Side",
  51673. image: {
  51674. source: "./media/characters/cianus/side.svg",
  51675. extra: 808/526,
  51676. bottom: 61/869
  51677. }
  51678. },
  51679. },
  51680. [
  51681. {
  51682. name: "Normal",
  51683. height: math.unit(12, "feet"),
  51684. default: true
  51685. },
  51686. ]
  51687. ))
  51688. //characters
  51689. function makeCharacters() {
  51690. const results = [];
  51691. characterMakers.forEach(character => {
  51692. results.push(character());
  51693. });
  51694. return results;
  51695. }