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

52722 строки
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. }
  2011. //species
  2012. function getSpeciesInfo(speciesList) {
  2013. let result = new Set();
  2014. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2015. result.add(entry)
  2016. });
  2017. return Array.from(result);
  2018. };
  2019. function getSpeciesInfoHelper(species) {
  2020. if (!speciesData[species]) {
  2021. console.warn(species + " doesn't exist");
  2022. return [];
  2023. }
  2024. if (speciesData[species].parents) {
  2025. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2026. } else {
  2027. return [species];
  2028. }
  2029. }
  2030. characterMakers.push(() => makeCharacter(
  2031. {
  2032. name: "Fen",
  2033. species: ["crux"],
  2034. description: {
  2035. title: "Bio",
  2036. text: "Very furry. Sheds on everything."
  2037. },
  2038. tags: [
  2039. "anthro",
  2040. "goo"
  2041. ]
  2042. },
  2043. {
  2044. front: {
  2045. height: math.unit(12, "feet"),
  2046. weight: math.unit(2400, "lb"),
  2047. name: "Front",
  2048. image: {
  2049. source: "./media/characters/fen/front.svg",
  2050. extra: 1804/1562,
  2051. bottom: 205/2009
  2052. },
  2053. extraAttributes: {
  2054. pawSize: {
  2055. name: "Paw Size",
  2056. power: 2,
  2057. type: "area",
  2058. base: math.unit(0.35, "m^2")
  2059. }
  2060. }
  2061. },
  2062. diving: {
  2063. height: math.unit(4.9, "meters"),
  2064. weight: math.unit(2400, "lb"),
  2065. name: "Diving",
  2066. image: {
  2067. source: "./media/characters/fen/diving.svg"
  2068. }
  2069. },
  2070. goo: {
  2071. height: math.unit(12, "feet"),
  2072. weight: math.unit(3600, "lb"),
  2073. volume: math.unit(1000, "liters"),
  2074. preyCapacity: math.unit(6, "people"),
  2075. name: "Goo",
  2076. image: {
  2077. source: "./media/characters/fen/goo.svg",
  2078. extra: 1307/1071,
  2079. bottom: 134/1441
  2080. }
  2081. },
  2082. maw: {
  2083. height: math.unit(5.03, "feet"),
  2084. name: "Maw",
  2085. image: {
  2086. source: "./media/characters/fen/maw.svg"
  2087. }
  2088. },
  2089. gooCeiling: {
  2090. height: math.unit(6.6, "feet"),
  2091. weight: math.unit(3000, "lb"),
  2092. volume: math.unit(1000, "liters"),
  2093. preyCapacity: math.unit(6, "people"),
  2094. name: "Goo (Ceiling)",
  2095. image: {
  2096. source: "./media/characters/fen/goo-ceiling.svg"
  2097. }
  2098. },
  2099. paw: {
  2100. height: math.unit(3.77, "feet"),
  2101. name: "Paw",
  2102. image: {
  2103. source: "./media/characters/fen/paw.svg"
  2104. },
  2105. extraAttributes: {
  2106. "toeSize": {
  2107. name: "Toe Size",
  2108. power: 2,
  2109. type: "area",
  2110. base: math.unit(0.02875, "m^2")
  2111. },
  2112. "pawSize": {
  2113. name: "Paw Size",
  2114. power: 2,
  2115. type: "area",
  2116. base: math.unit(0.378, "m^2")
  2117. },
  2118. }
  2119. },
  2120. tail: {
  2121. height: math.unit(12.1, "feet"),
  2122. name: "Tail",
  2123. image: {
  2124. source: "./media/characters/fen/tail.svg"
  2125. }
  2126. },
  2127. tailFull: {
  2128. height: math.unit(12.1, "feet"),
  2129. name: "Full Tail",
  2130. image: {
  2131. source: "./media/characters/fen/tail-full.svg"
  2132. }
  2133. },
  2134. back: {
  2135. height: math.unit(12, "feet"),
  2136. weight: math.unit(2400, "lb"),
  2137. name: "Back",
  2138. image: {
  2139. source: "./media/characters/fen/back.svg",
  2140. },
  2141. info: {
  2142. description: {
  2143. mode: "append",
  2144. text: "\n\nHe is not currently looking at you."
  2145. }
  2146. }
  2147. },
  2148. full: {
  2149. height: math.unit(1.85, "meter"),
  2150. weight: math.unit(3200, "lb"),
  2151. name: "Full",
  2152. image: {
  2153. source: "./media/characters/fen/full.svg",
  2154. extra: 1133/859,
  2155. bottom: 145/1278
  2156. },
  2157. info: {
  2158. description: {
  2159. mode: "append",
  2160. text: "\n\nMunch."
  2161. }
  2162. }
  2163. },
  2164. gooLounging: {
  2165. height: math.unit(4.53, "feet"),
  2166. weight: math.unit(3000, "lb"),
  2167. preyCapacity: math.unit(6, "people"),
  2168. name: "Goo (Lounging)",
  2169. image: {
  2170. source: "./media/characters/fen/goo-lounging.svg",
  2171. bottom: 116 / 613
  2172. }
  2173. },
  2174. lounging: {
  2175. height: math.unit(10.52, "feet"),
  2176. weight: math.unit(2400, "lb"),
  2177. name: "Lounging",
  2178. image: {
  2179. source: "./media/characters/fen/lounging.svg"
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Small",
  2186. height: math.unit(2.2428, "meter")
  2187. },
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(12, "feet"),
  2191. default: true,
  2192. },
  2193. {
  2194. name: "Big",
  2195. height: math.unit(20, "feet")
  2196. },
  2197. {
  2198. name: "Minimacro",
  2199. height: math.unit(40, "feet"),
  2200. info: {
  2201. description: {
  2202. mode: "append",
  2203. text: "\n\nTOO DAMN BIG"
  2204. }
  2205. }
  2206. },
  2207. {
  2208. name: "Macro",
  2209. height: math.unit(100, "feet"),
  2210. info: {
  2211. description: {
  2212. mode: "append",
  2213. text: "\n\nTOO DAMN BIG"
  2214. }
  2215. }
  2216. },
  2217. {
  2218. name: "Megamacro",
  2219. height: math.unit(2, "miles")
  2220. },
  2221. {
  2222. name: "Gigamacro",
  2223. height: math.unit(10, "earths")
  2224. },
  2225. ]
  2226. ))
  2227. characterMakers.push(() => makeCharacter(
  2228. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2229. {
  2230. front: {
  2231. height: math.unit(183, "cm"),
  2232. weight: math.unit(80, "kg"),
  2233. name: "Front",
  2234. image: {
  2235. source: "./media/characters/sofia-fluttertail/front.svg",
  2236. bottom: 0.01,
  2237. extra: 2154 / 2081
  2238. }
  2239. },
  2240. frontAlt: {
  2241. height: math.unit(183, "cm"),
  2242. weight: math.unit(80, "kg"),
  2243. name: "Front (alt)",
  2244. image: {
  2245. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2246. }
  2247. },
  2248. back: {
  2249. height: math.unit(183, "cm"),
  2250. weight: math.unit(80, "kg"),
  2251. name: "Back",
  2252. image: {
  2253. source: "./media/characters/sofia-fluttertail/back.svg"
  2254. }
  2255. },
  2256. kneeling: {
  2257. height: math.unit(125, "cm"),
  2258. weight: math.unit(80, "kg"),
  2259. name: "Kneeling",
  2260. image: {
  2261. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2262. extra: 1033 / 977,
  2263. bottom: 23.7 / 1057
  2264. }
  2265. },
  2266. maw: {
  2267. height: math.unit(183 / 5, "cm"),
  2268. name: "Maw",
  2269. image: {
  2270. source: "./media/characters/sofia-fluttertail/maw.svg"
  2271. }
  2272. },
  2273. mawcloseup: {
  2274. height: math.unit(183 / 5 * 0.41, "cm"),
  2275. name: "Maw (Closeup)",
  2276. image: {
  2277. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2278. }
  2279. },
  2280. paws: {
  2281. height: math.unit(1.17, "feet"),
  2282. name: "Paws",
  2283. image: {
  2284. source: "./media/characters/sofia-fluttertail/paws.svg",
  2285. extra: 851 / 851,
  2286. bottom: 17 / 868
  2287. }
  2288. },
  2289. },
  2290. [
  2291. {
  2292. name: "Normal",
  2293. height: math.unit(1.83, "meter")
  2294. },
  2295. {
  2296. name: "Size Thief",
  2297. height: math.unit(18, "feet")
  2298. },
  2299. {
  2300. name: "50 Foot Collie",
  2301. height: math.unit(50, "feet")
  2302. },
  2303. {
  2304. name: "Macro",
  2305. height: math.unit(96, "feet"),
  2306. default: true
  2307. },
  2308. {
  2309. name: "Megamerger",
  2310. height: math.unit(650, "feet")
  2311. },
  2312. ]
  2313. ))
  2314. characterMakers.push(() => makeCharacter(
  2315. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2316. {
  2317. front: {
  2318. height: math.unit(7, "feet"),
  2319. weight: math.unit(100, "kg"),
  2320. name: "Front",
  2321. image: {
  2322. source: "./media/characters/march/front.svg",
  2323. extra: 1992/1851,
  2324. bottom: 39/2031
  2325. }
  2326. },
  2327. foot: {
  2328. height: math.unit(0.9, "feet"),
  2329. name: "Foot",
  2330. image: {
  2331. source: "./media/characters/march/foot.svg"
  2332. }
  2333. },
  2334. },
  2335. [
  2336. {
  2337. name: "Normal",
  2338. height: math.unit(7.9, "feet")
  2339. },
  2340. {
  2341. name: "Macro",
  2342. height: math.unit(220, "meters")
  2343. },
  2344. {
  2345. name: "Megamacro",
  2346. height: math.unit(2.98, "km"),
  2347. default: true
  2348. },
  2349. {
  2350. name: "Gigamacro",
  2351. height: math.unit(15963, "km")
  2352. },
  2353. {
  2354. name: "Teramacro",
  2355. height: math.unit(2980000000, "km")
  2356. },
  2357. {
  2358. name: "Examacro",
  2359. height: math.unit(250, "parsecs")
  2360. },
  2361. ]
  2362. ))
  2363. characterMakers.push(() => makeCharacter(
  2364. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2365. {
  2366. front: {
  2367. height: math.unit(6, "feet"),
  2368. weight: math.unit(60, "kg"),
  2369. name: "Front",
  2370. image: {
  2371. source: "./media/characters/noir/front.svg",
  2372. extra: 1,
  2373. bottom: 0.032
  2374. }
  2375. },
  2376. },
  2377. [
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(6.6, "feet")
  2381. },
  2382. {
  2383. name: "Macro",
  2384. height: math.unit(500, "feet")
  2385. },
  2386. {
  2387. name: "Megamacro",
  2388. height: math.unit(2.5, "km"),
  2389. default: true
  2390. },
  2391. {
  2392. name: "Gigamacro",
  2393. height: math.unit(22500, "km")
  2394. },
  2395. {
  2396. name: "Teramacro",
  2397. height: math.unit(2500000000, "km")
  2398. },
  2399. {
  2400. name: "Examacro",
  2401. height: math.unit(200, "parsecs")
  2402. },
  2403. ]
  2404. ))
  2405. characterMakers.push(() => makeCharacter(
  2406. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2407. {
  2408. front: {
  2409. height: math.unit(7, "feet"),
  2410. weight: math.unit(100, "kg"),
  2411. name: "Front",
  2412. image: {
  2413. source: "./media/characters/okuri/front.svg",
  2414. extra: 739/665,
  2415. bottom: 39/778
  2416. }
  2417. },
  2418. back: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Back",
  2422. image: {
  2423. source: "./media/characters/okuri/back.svg",
  2424. extra: 734/653,
  2425. bottom: 13/747
  2426. }
  2427. },
  2428. sitting: {
  2429. height: math.unit(2.95, "feet"),
  2430. weight: math.unit(100, "kg"),
  2431. name: "Sitting",
  2432. image: {
  2433. source: "./media/characters/okuri/sitting.svg",
  2434. extra: 370/318,
  2435. bottom: 99/469
  2436. }
  2437. },
  2438. },
  2439. [
  2440. {
  2441. name: "Smallest",
  2442. height: math.unit(5 + 2/12, "feet")
  2443. },
  2444. {
  2445. name: "Smaller",
  2446. height: math.unit(300, "feet")
  2447. },
  2448. {
  2449. name: "Small",
  2450. height: math.unit(1000, "feet")
  2451. },
  2452. {
  2453. name: "Macro",
  2454. height: math.unit(1, "mile")
  2455. },
  2456. {
  2457. name: "Mega Macro (Small)",
  2458. height: math.unit(20, "km")
  2459. },
  2460. {
  2461. name: "Mega Macro (Large)",
  2462. height: math.unit(600, "km")
  2463. },
  2464. {
  2465. name: "Giga Macro",
  2466. height: math.unit(10000, "km")
  2467. },
  2468. {
  2469. name: "Normal",
  2470. height: math.unit(577560, "km"),
  2471. default: true
  2472. },
  2473. {
  2474. name: "Large",
  2475. height: math.unit(4, "galaxies")
  2476. },
  2477. {
  2478. name: "Largest",
  2479. height: math.unit(15, "multiverses")
  2480. },
  2481. ]
  2482. ))
  2483. characterMakers.push(() => makeCharacter(
  2484. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2485. {
  2486. front: {
  2487. height: math.unit(7, "feet"),
  2488. weight: math.unit(100, "kg"),
  2489. name: "Front",
  2490. image: {
  2491. source: "./media/characters/manny/front.svg",
  2492. extra: 1,
  2493. bottom: 0.06
  2494. }
  2495. },
  2496. back: {
  2497. height: math.unit(7, "feet"),
  2498. weight: math.unit(100, "kg"),
  2499. name: "Back",
  2500. image: {
  2501. source: "./media/characters/manny/back.svg",
  2502. extra: 1,
  2503. bottom: 0.014
  2504. }
  2505. },
  2506. },
  2507. [
  2508. {
  2509. name: "Normal",
  2510. height: math.unit(7, "feet"),
  2511. },
  2512. {
  2513. name: "Macro",
  2514. height: math.unit(78, "feet"),
  2515. default: true
  2516. },
  2517. {
  2518. name: "Macro+",
  2519. height: math.unit(300, "meters")
  2520. },
  2521. {
  2522. name: "Macro++",
  2523. height: math.unit(2400, "meters")
  2524. },
  2525. {
  2526. name: "Megamacro",
  2527. height: math.unit(5167, "meters")
  2528. },
  2529. {
  2530. name: "Gigamacro",
  2531. height: math.unit(41769, "miles")
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2537. {
  2538. front: {
  2539. height: math.unit(7, "feet"),
  2540. weight: math.unit(100, "kg"),
  2541. name: "Front",
  2542. image: {
  2543. source: "./media/characters/adake/front-1.svg"
  2544. }
  2545. },
  2546. frontAlt: {
  2547. height: math.unit(7, "feet"),
  2548. weight: math.unit(100, "kg"),
  2549. name: "Front (Alt)",
  2550. image: {
  2551. source: "./media/characters/adake/front-2.svg",
  2552. extra: 1,
  2553. bottom: 0.01
  2554. }
  2555. },
  2556. back: {
  2557. height: math.unit(7, "feet"),
  2558. weight: math.unit(100, "kg"),
  2559. name: "Back",
  2560. image: {
  2561. source: "./media/characters/adake/back.svg",
  2562. }
  2563. },
  2564. kneel: {
  2565. height: math.unit(5.385, "feet"),
  2566. weight: math.unit(100, "kg"),
  2567. name: "Kneeling",
  2568. image: {
  2569. source: "./media/characters/adake/kneel.svg",
  2570. bottom: 0.052
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(7, "feet"),
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(78, "feet"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Macro+",
  2586. height: math.unit(300, "meters")
  2587. },
  2588. {
  2589. name: "Macro++",
  2590. height: math.unit(2400, "meters")
  2591. },
  2592. {
  2593. name: "Megamacro",
  2594. height: math.unit(5167, "meters")
  2595. },
  2596. {
  2597. name: "Gigamacro",
  2598. height: math.unit(41769, "miles")
  2599. },
  2600. ]
  2601. ))
  2602. characterMakers.push(() => makeCharacter(
  2603. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2604. {
  2605. front: {
  2606. height: math.unit(1.65, "meters"),
  2607. weight: math.unit(50, "kg"),
  2608. name: "Front",
  2609. image: {
  2610. source: "./media/characters/elijah/front.svg",
  2611. extra: 858 / 830,
  2612. bottom: 95.5 / 953.8559
  2613. }
  2614. },
  2615. back: {
  2616. height: math.unit(1.65, "meters"),
  2617. weight: math.unit(50, "kg"),
  2618. name: "Back",
  2619. image: {
  2620. source: "./media/characters/elijah/back.svg",
  2621. extra: 895 / 850,
  2622. bottom: 5.3 / 897.956
  2623. }
  2624. },
  2625. frontNsfw: {
  2626. height: math.unit(1.65, "meters"),
  2627. weight: math.unit(50, "kg"),
  2628. name: "Front (NSFW)",
  2629. image: {
  2630. source: "./media/characters/elijah/front-nsfw.svg",
  2631. extra: 858 / 830,
  2632. bottom: 95.5 / 953.8559
  2633. }
  2634. },
  2635. backNsfw: {
  2636. height: math.unit(1.65, "meters"),
  2637. weight: math.unit(50, "kg"),
  2638. name: "Back (NSFW)",
  2639. image: {
  2640. source: "./media/characters/elijah/back-nsfw.svg",
  2641. extra: 895 / 850,
  2642. bottom: 5.3 / 897.956
  2643. }
  2644. },
  2645. dick: {
  2646. height: math.unit(1, "feet"),
  2647. name: "Dick",
  2648. image: {
  2649. source: "./media/characters/elijah/dick.svg"
  2650. }
  2651. },
  2652. beakOpen: {
  2653. height: math.unit(1.25, "feet"),
  2654. name: "Beak (Open)",
  2655. image: {
  2656. source: "./media/characters/elijah/beak-open.svg"
  2657. }
  2658. },
  2659. beakShut: {
  2660. height: math.unit(1.25, "feet"),
  2661. name: "Beak (Shut)",
  2662. image: {
  2663. source: "./media/characters/elijah/beak-shut.svg"
  2664. }
  2665. },
  2666. footFlexing: {
  2667. height: math.unit(1.61, "feet"),
  2668. name: "Foot (Flexing)",
  2669. image: {
  2670. source: "./media/characters/elijah/foot-flexing.svg"
  2671. }
  2672. },
  2673. footStepping: {
  2674. height: math.unit(1.44, "feet"),
  2675. name: "Foot (Stepping)",
  2676. image: {
  2677. source: "./media/characters/elijah/foot-stepping.svg"
  2678. }
  2679. },
  2680. plantigradeLeg: {
  2681. height: math.unit(2.34, "feet"),
  2682. name: "Plantigrade Leg",
  2683. image: {
  2684. source: "./media/characters/elijah/plantigrade-leg.svg"
  2685. }
  2686. },
  2687. plantigradeFootLeft: {
  2688. height: math.unit(0.9, "feet"),
  2689. name: "Plantigrade Foot (Left)",
  2690. image: {
  2691. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2692. }
  2693. },
  2694. plantigradeFootRight: {
  2695. height: math.unit(0.9, "feet"),
  2696. name: "Plantigrade Foot (Right)",
  2697. image: {
  2698. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2699. }
  2700. },
  2701. },
  2702. [
  2703. {
  2704. name: "Normal",
  2705. height: math.unit(1.65, "meters")
  2706. },
  2707. {
  2708. name: "Macro",
  2709. height: math.unit(55, "meters"),
  2710. default: true
  2711. },
  2712. {
  2713. name: "Macro+",
  2714. height: math.unit(105, "meters")
  2715. },
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2720. {
  2721. front: {
  2722. height: math.unit(7 + 2/12, "feet"),
  2723. weight: math.unit(320, "kg"),
  2724. name: "Front",
  2725. image: {
  2726. source: "./media/characters/rai/front.svg",
  2727. extra: 1802/1696,
  2728. bottom: 68/1870
  2729. }
  2730. },
  2731. frontDressed: {
  2732. height: math.unit(7 + 2/12, "feet"),
  2733. weight: math.unit(320, "kg"),
  2734. name: "Front (Dressed)",
  2735. image: {
  2736. source: "./media/characters/rai/front-dressed.svg",
  2737. extra: 1802/1696,
  2738. bottom: 68/1870
  2739. }
  2740. },
  2741. side: {
  2742. height: math.unit(7 + 2/12, "feet"),
  2743. weight: math.unit(320, "kg"),
  2744. name: "Side",
  2745. image: {
  2746. source: "./media/characters/rai/side.svg",
  2747. extra: 1789/1710,
  2748. bottom: 115/1904
  2749. }
  2750. },
  2751. back: {
  2752. height: math.unit(7 + 2/12, "feet"),
  2753. weight: math.unit(320, "kg"),
  2754. name: "Back",
  2755. image: {
  2756. source: "./media/characters/rai/back.svg",
  2757. extra: 1770/1707,
  2758. bottom: 28/1798
  2759. }
  2760. },
  2761. feral: {
  2762. height: math.unit(9.5, "feet"),
  2763. weight: math.unit(640, "kg"),
  2764. name: "Feral",
  2765. image: {
  2766. source: "./media/characters/rai/feral.svg",
  2767. extra: 945/553,
  2768. bottom: 176/1121
  2769. }
  2770. },
  2771. dragon: {
  2772. height: math.unit(23, "feet"),
  2773. weight: math.unit(50000, "lb"),
  2774. name: "Dragon",
  2775. image: {
  2776. source: "./media/characters/rai/dragon.svg",
  2777. extra: 2498 / 2030,
  2778. bottom: 85.2 / 2584
  2779. }
  2780. },
  2781. maw: {
  2782. height: math.unit(1.69, "feet"),
  2783. name: "Maw",
  2784. image: {
  2785. source: "./media/characters/rai/maw.svg"
  2786. }
  2787. },
  2788. },
  2789. [
  2790. {
  2791. name: "Normal",
  2792. height: math.unit(7 + 2/12, "feet")
  2793. },
  2794. {
  2795. name: "Big",
  2796. height: math.unit(11, "feet")
  2797. },
  2798. {
  2799. name: "Macro",
  2800. height: math.unit(302, "feet"),
  2801. default: true
  2802. },
  2803. ]
  2804. ))
  2805. characterMakers.push(() => makeCharacter(
  2806. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2807. {
  2808. frontDressed: {
  2809. height: math.unit(216, "feet"),
  2810. weight: math.unit(7000000, "lb"),
  2811. name: "Front (Dressed)",
  2812. image: {
  2813. source: "./media/characters/jazzy/front-dressed.svg",
  2814. extra: 2738 / 2651,
  2815. bottom: 41.8 / 2786
  2816. }
  2817. },
  2818. backDressed: {
  2819. height: math.unit(216, "feet"),
  2820. weight: math.unit(7000000, "lb"),
  2821. name: "Back (Dressed)",
  2822. image: {
  2823. source: "./media/characters/jazzy/back-dressed.svg",
  2824. extra: 2775 / 2673,
  2825. bottom: 36.8 / 2817
  2826. }
  2827. },
  2828. front: {
  2829. height: math.unit(216, "feet"),
  2830. weight: math.unit(7000000, "lb"),
  2831. name: "Front",
  2832. image: {
  2833. source: "./media/characters/jazzy/front.svg",
  2834. extra: 2738 / 2651,
  2835. bottom: 41.8 / 2786
  2836. }
  2837. },
  2838. back: {
  2839. height: math.unit(216, "feet"),
  2840. weight: math.unit(7000000, "lb"),
  2841. name: "Back",
  2842. image: {
  2843. source: "./media/characters/jazzy/back.svg",
  2844. extra: 2775 / 2673,
  2845. bottom: 36.8 / 2817
  2846. }
  2847. },
  2848. maw: {
  2849. height: math.unit(20, "feet"),
  2850. name: "Maw",
  2851. image: {
  2852. source: "./media/characters/jazzy/maw.svg"
  2853. }
  2854. },
  2855. paws: {
  2856. height: math.unit(27.5, "feet"),
  2857. name: "Paws",
  2858. image: {
  2859. source: "./media/characters/jazzy/paws.svg"
  2860. }
  2861. },
  2862. eye: {
  2863. height: math.unit(4.4, "feet"),
  2864. name: "Eye",
  2865. image: {
  2866. source: "./media/characters/jazzy/eye.svg"
  2867. }
  2868. },
  2869. droneOffense: {
  2870. height: math.unit(9.5, "inches"),
  2871. name: "Drone (Offense)",
  2872. image: {
  2873. source: "./media/characters/jazzy/drone-offense.svg"
  2874. }
  2875. },
  2876. droneRecon: {
  2877. height: math.unit(9.5, "inches"),
  2878. name: "Drone (Recon)",
  2879. image: {
  2880. source: "./media/characters/jazzy/drone-recon.svg"
  2881. }
  2882. },
  2883. droneDefense: {
  2884. height: math.unit(9.5, "inches"),
  2885. name: "Drone (Defense)",
  2886. image: {
  2887. source: "./media/characters/jazzy/drone-defense.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(216, "feet"),
  2895. default: true
  2896. },
  2897. ]
  2898. ))
  2899. characterMakers.push(() => makeCharacter(
  2900. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2901. {
  2902. front: {
  2903. height: math.unit(9 + 6/12, "feet"),
  2904. weight: math.unit(700, "lb"),
  2905. name: "Front",
  2906. image: {
  2907. source: "./media/characters/flamm/front.svg",
  2908. extra: 1751/1632,
  2909. bottom: 46/1797
  2910. }
  2911. },
  2912. buff: {
  2913. height: math.unit(9 + 6/12, "feet"),
  2914. weight: math.unit(950, "lb"),
  2915. name: "Buff",
  2916. image: {
  2917. source: "./media/characters/flamm/buff.svg",
  2918. extra: 3018/2874,
  2919. bottom: 221/3239
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(9.5, "feet")
  2927. },
  2928. {
  2929. name: "Macro",
  2930. height: math.unit(200, "feet"),
  2931. default: true
  2932. },
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(5 + 3/12, "feet"),
  2940. weight: math.unit(60, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/zephiro/front.svg",
  2944. extra: 2309 / 2162,
  2945. bottom: 0.069
  2946. }
  2947. },
  2948. side: {
  2949. height: math.unit(5 + 3/12, "feet"),
  2950. weight: math.unit(60, "kg"),
  2951. name: "Side",
  2952. image: {
  2953. source: "./media/characters/zephiro/side.svg",
  2954. extra: 2403 / 2279,
  2955. bottom: 0.015
  2956. }
  2957. },
  2958. back: {
  2959. height: math.unit(5 + 3/12, "feet"),
  2960. weight: math.unit(60, "kg"),
  2961. name: "Back",
  2962. image: {
  2963. source: "./media/characters/zephiro/back.svg",
  2964. extra: 2373 / 2244,
  2965. bottom: 0.013
  2966. }
  2967. },
  2968. hand: {
  2969. height: math.unit(0.68, "feet"),
  2970. name: "Hand",
  2971. image: {
  2972. source: "./media/characters/zephiro/hand.svg"
  2973. }
  2974. },
  2975. paw: {
  2976. height: math.unit(1, "feet"),
  2977. name: "Paw",
  2978. image: {
  2979. source: "./media/characters/zephiro/paw.svg"
  2980. }
  2981. },
  2982. beans: {
  2983. height: math.unit(0.93, "feet"),
  2984. name: "Beans",
  2985. image: {
  2986. source: "./media/characters/zephiro/beans.svg"
  2987. }
  2988. },
  2989. },
  2990. [
  2991. {
  2992. name: "Micro",
  2993. height: math.unit(3, "inches")
  2994. },
  2995. {
  2996. name: "Normal",
  2997. height: math.unit(5 + 3 / 12, "feet"),
  2998. default: true
  2999. },
  3000. {
  3001. name: "Macro",
  3002. height: math.unit(118, "feet")
  3003. },
  3004. ]
  3005. ))
  3006. characterMakers.push(() => makeCharacter(
  3007. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3008. {
  3009. front: {
  3010. height: math.unit(5, "feet"),
  3011. weight: math.unit(90, "kg"),
  3012. name: "Front",
  3013. image: {
  3014. source: "./media/characters/fory/front.svg",
  3015. extra: 2862 / 2674,
  3016. bottom: 180 / 3043.8
  3017. }
  3018. },
  3019. back: {
  3020. height: math.unit(5, "feet"),
  3021. weight: math.unit(90, "kg"),
  3022. name: "Back",
  3023. image: {
  3024. source: "./media/characters/fory/back.svg",
  3025. extra: 2962 / 2791,
  3026. bottom: 106 / 3071.8
  3027. }
  3028. },
  3029. foot: {
  3030. height: math.unit(2.14, "feet"),
  3031. name: "Foot",
  3032. image: {
  3033. source: "./media/characters/fory/foot.svg"
  3034. }
  3035. },
  3036. },
  3037. [
  3038. {
  3039. name: "Normal",
  3040. height: math.unit(5, "feet")
  3041. },
  3042. {
  3043. name: "Macro",
  3044. height: math.unit(50, "feet"),
  3045. default: true
  3046. },
  3047. {
  3048. name: "Megamacro",
  3049. height: math.unit(10, "miles")
  3050. },
  3051. {
  3052. name: "Gigamacro",
  3053. height: math.unit(5, "earths")
  3054. },
  3055. ]
  3056. ))
  3057. characterMakers.push(() => makeCharacter(
  3058. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3059. {
  3060. front: {
  3061. height: math.unit(7, "feet"),
  3062. weight: math.unit(90, "kg"),
  3063. name: "Front",
  3064. image: {
  3065. source: "./media/characters/kurrikage/front.svg",
  3066. extra: 1845/1733,
  3067. bottom: 119/1964
  3068. }
  3069. },
  3070. back: {
  3071. height: math.unit(7, "feet"),
  3072. weight: math.unit(90, "kg"),
  3073. name: "Back",
  3074. image: {
  3075. source: "./media/characters/kurrikage/back.svg",
  3076. extra: 1790/1677,
  3077. bottom: 61/1851
  3078. }
  3079. },
  3080. dressed: {
  3081. height: math.unit(7, "feet"),
  3082. weight: math.unit(90, "kg"),
  3083. name: "Dressed",
  3084. image: {
  3085. source: "./media/characters/kurrikage/dressed.svg",
  3086. extra: 1845/1733,
  3087. bottom: 119/1964
  3088. }
  3089. },
  3090. foot: {
  3091. height: math.unit(1.5, "feet"),
  3092. name: "Foot",
  3093. image: {
  3094. source: "./media/characters/kurrikage/foot.svg"
  3095. }
  3096. },
  3097. staff: {
  3098. height: math.unit(6.7, "feet"),
  3099. name: "Staff",
  3100. image: {
  3101. source: "./media/characters/kurrikage/staff.svg"
  3102. }
  3103. },
  3104. peek: {
  3105. height: math.unit(1.05, "feet"),
  3106. name: "Peeking",
  3107. image: {
  3108. source: "./media/characters/kurrikage/peek.svg",
  3109. bottom: 0.08
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(12, "feet"),
  3117. default: true
  3118. },
  3119. {
  3120. name: "Big",
  3121. height: math.unit(20, "feet")
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(500, "feet")
  3126. },
  3127. {
  3128. name: "Megamacro",
  3129. height: math.unit(20, "miles")
  3130. },
  3131. ]
  3132. ))
  3133. characterMakers.push(() => makeCharacter(
  3134. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3135. {
  3136. front: {
  3137. height: math.unit(6, "feet"),
  3138. weight: math.unit(75, "kg"),
  3139. name: "Front",
  3140. image: {
  3141. source: "./media/characters/shingo/front.svg",
  3142. extra: 1900/1825,
  3143. bottom: 82/1982
  3144. }
  3145. },
  3146. side: {
  3147. height: math.unit(6, "feet"),
  3148. weight: math.unit(75, "kg"),
  3149. name: "Side",
  3150. image: {
  3151. source: "./media/characters/shingo/side.svg",
  3152. extra: 1930/1865,
  3153. bottom: 16/1946
  3154. }
  3155. },
  3156. back: {
  3157. height: math.unit(6, "feet"),
  3158. weight: math.unit(75, "kg"),
  3159. name: "Back",
  3160. image: {
  3161. source: "./media/characters/shingo/back.svg",
  3162. extra: 1922/1852,
  3163. bottom: 16/1938
  3164. }
  3165. },
  3166. frontDressed: {
  3167. height: math.unit(6, "feet"),
  3168. weight: math.unit(150, "lb"),
  3169. name: "Front-dressed",
  3170. image: {
  3171. source: "./media/characters/shingo/front-dressed.svg",
  3172. extra: 1900/1825,
  3173. bottom: 82/1982
  3174. }
  3175. },
  3176. paw: {
  3177. height: math.unit(1.29, "feet"),
  3178. name: "Paw",
  3179. image: {
  3180. source: "./media/characters/shingo/paw.svg"
  3181. }
  3182. },
  3183. hand: {
  3184. height: math.unit(1.07, "feet"),
  3185. name: "Hand",
  3186. image: {
  3187. source: "./media/characters/shingo/hand.svg"
  3188. }
  3189. },
  3190. frontAlt: {
  3191. height: math.unit(6, "feet"),
  3192. weight: math.unit(75, "kg"),
  3193. name: "Front (Alt)",
  3194. image: {
  3195. source: "./media/characters/shingo/front-alt.svg",
  3196. extra: 3511 / 3338,
  3197. bottom: 0.005
  3198. }
  3199. },
  3200. frontAlt2: {
  3201. height: math.unit(6, "feet"),
  3202. weight: math.unit(75, "kg"),
  3203. name: "Front (Alt 2)",
  3204. image: {
  3205. source: "./media/characters/shingo/front-alt-2.svg",
  3206. extra: 706/681,
  3207. bottom: 11/717
  3208. }
  3209. },
  3210. pawAlt: {
  3211. height: math.unit(1, "feet"),
  3212. name: "Paw (Alt)",
  3213. image: {
  3214. source: "./media/characters/shingo/paw-alt.svg"
  3215. }
  3216. },
  3217. },
  3218. [
  3219. {
  3220. name: "Micro",
  3221. height: math.unit(4, "inches")
  3222. },
  3223. {
  3224. name: "Normal",
  3225. height: math.unit(6, "feet"),
  3226. default: true
  3227. },
  3228. {
  3229. name: "Macro",
  3230. height: math.unit(108, "feet")
  3231. },
  3232. {
  3233. name: "Macro+",
  3234. height: math.unit(1500, "feet")
  3235. },
  3236. ]
  3237. ))
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3240. {
  3241. side: {
  3242. height: math.unit(6, "feet"),
  3243. weight: math.unit(75, "kg"),
  3244. name: "Side",
  3245. image: {
  3246. source: "./media/characters/aigey/side.svg"
  3247. }
  3248. },
  3249. },
  3250. [
  3251. {
  3252. name: "Macro",
  3253. height: math.unit(200, "feet"),
  3254. default: true
  3255. },
  3256. {
  3257. name: "Megamacro",
  3258. height: math.unit(100, "miles")
  3259. },
  3260. ]
  3261. )
  3262. )
  3263. characterMakers.push(() => makeCharacter(
  3264. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3265. {
  3266. front: {
  3267. height: math.unit(5 + 5 / 12, "feet"),
  3268. weight: math.unit(75, "kg"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/natasha/front.svg",
  3272. extra: 859 / 824,
  3273. bottom: 23 / 879.6
  3274. }
  3275. },
  3276. frontNsfw: {
  3277. height: math.unit(5 + 5 / 12, "feet"),
  3278. weight: math.unit(75, "kg"),
  3279. name: "Front (NSFW)",
  3280. image: {
  3281. source: "./media/characters/natasha/front-nsfw.svg",
  3282. extra: 859 / 824,
  3283. bottom: 23 / 879.6
  3284. }
  3285. },
  3286. frontErect: {
  3287. height: math.unit(5 + 5 / 12, "feet"),
  3288. weight: math.unit(75, "kg"),
  3289. name: "Front (Erect)",
  3290. image: {
  3291. source: "./media/characters/natasha/front-erect.svg",
  3292. extra: 859 / 824,
  3293. bottom: 23 / 879.6
  3294. }
  3295. },
  3296. back: {
  3297. height: math.unit(5 + 5 / 12, "feet"),
  3298. weight: math.unit(75, "kg"),
  3299. name: "Back",
  3300. image: {
  3301. source: "./media/characters/natasha/back.svg",
  3302. extra: 887.9 / 852.6,
  3303. bottom: 9.7 / 896.4
  3304. }
  3305. },
  3306. backAlt: {
  3307. height: math.unit(5 + 5 / 12, "feet"),
  3308. weight: math.unit(75, "kg"),
  3309. name: "Back (Alt)",
  3310. image: {
  3311. source: "./media/characters/natasha/back-alt.svg",
  3312. extra: 1236.7 / 1192,
  3313. bottom: 22.3 / 1258.2
  3314. }
  3315. },
  3316. dick: {
  3317. height: math.unit(1.772, "feet"),
  3318. name: "Dick",
  3319. image: {
  3320. source: "./media/characters/natasha/dick.svg"
  3321. }
  3322. },
  3323. paw: {
  3324. height: math.unit(0.250, "meters"),
  3325. name: "Paw",
  3326. image: {
  3327. source: "./media/characters/natasha/paw.svg"
  3328. },
  3329. extraAttributes: {
  3330. "toeSize": {
  3331. name: "Toe Size",
  3332. power: 2,
  3333. type: "area",
  3334. base: math.unit(0.0024, "m^2")
  3335. },
  3336. "padSize": {
  3337. name: "Pad Size",
  3338. power: 2,
  3339. type: "area",
  3340. base: math.unit(0.00889, "m^2")
  3341. },
  3342. "pawSize": {
  3343. name: "Paw Size",
  3344. power: 2,
  3345. type: "area",
  3346. base: math.unit(0.023667, "m^2")
  3347. },
  3348. }
  3349. },
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(5 + 5 / 12, "feet")
  3355. },
  3356. {
  3357. name: "Large",
  3358. height: math.unit(12, "feet")
  3359. },
  3360. {
  3361. name: "Macro",
  3362. height: math.unit(100, "feet"),
  3363. default: true
  3364. },
  3365. {
  3366. name: "Macro+",
  3367. height: math.unit(260, "feet")
  3368. },
  3369. {
  3370. name: "Macro++",
  3371. height: math.unit(1, "mile")
  3372. },
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3377. {
  3378. front: {
  3379. height: math.unit(6, "feet"),
  3380. weight: math.unit(75, "kg"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/malik/front.svg",
  3384. extra: 1750/1561,
  3385. bottom: 80/1830
  3386. },
  3387. extraAttributes: {
  3388. "toeSize": {
  3389. name: "Toe Size",
  3390. power: 2,
  3391. type: "area",
  3392. base: math.unit(0.0159, "m^2")
  3393. },
  3394. "pawSize": {
  3395. name: "Paw Size",
  3396. power: 2,
  3397. type: "area",
  3398. base: math.unit(0.09834, "m^2")
  3399. },
  3400. }
  3401. },
  3402. side: {
  3403. height: math.unit(6, "feet"),
  3404. weight: math.unit(75, "kg"),
  3405. name: "Side",
  3406. image: {
  3407. source: "./media/characters/malik/side.svg",
  3408. extra: 1802/1685,
  3409. bottom: 42/1844
  3410. },
  3411. extraAttributes: {
  3412. "toeSize": {
  3413. name: "Toe Size",
  3414. power: 2,
  3415. type: "area",
  3416. base: math.unit(0.0159, "m^2")
  3417. },
  3418. "pawSize": {
  3419. name: "Paw Size",
  3420. power: 2,
  3421. type: "area",
  3422. base: math.unit(0.09834, "m^2")
  3423. },
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(6, "feet"),
  3428. weight: math.unit(75, "kg"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/malik/back.svg",
  3432. extra: 1803/1607,
  3433. bottom: 33/1836
  3434. },
  3435. extraAttributes: {
  3436. "toeSize": {
  3437. name: "Toe Size",
  3438. power: 2,
  3439. type: "area",
  3440. base: math.unit(0.0159, "m^2")
  3441. },
  3442. "pawSize": {
  3443. name: "Paw Size",
  3444. power: 2,
  3445. type: "area",
  3446. base: math.unit(0.09834, "m^2")
  3447. },
  3448. }
  3449. },
  3450. },
  3451. [
  3452. {
  3453. name: "Macro",
  3454. height: math.unit(156, "feet"),
  3455. default: true
  3456. },
  3457. {
  3458. name: "Macro+",
  3459. height: math.unit(1188, "feet")
  3460. },
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(75, "kg"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/sefer/front.svg",
  3472. extra: 848 / 659,
  3473. bottom: 28.3 / 876.442
  3474. }
  3475. },
  3476. back: {
  3477. height: math.unit(6, "feet"),
  3478. weight: math.unit(75, "kg"),
  3479. name: "Back",
  3480. image: {
  3481. source: "./media/characters/sefer/back.svg",
  3482. extra: 864 / 695,
  3483. bottom: 10 / 871
  3484. }
  3485. },
  3486. frontDressed: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(75, "kg"),
  3489. name: "Front (Dressed)",
  3490. image: {
  3491. source: "./media/characters/sefer/front-dressed.svg",
  3492. extra: 839 / 653,
  3493. bottom: 37.6 / 878
  3494. }
  3495. },
  3496. },
  3497. [
  3498. {
  3499. name: "Normal",
  3500. height: math.unit(6, "feet"),
  3501. default: true
  3502. },
  3503. ]
  3504. ))
  3505. characterMakers.push(() => makeCharacter(
  3506. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3507. {
  3508. body: {
  3509. height: math.unit(2.2428, "meter"),
  3510. weight: math.unit(124.738, "kg"),
  3511. name: "Body",
  3512. image: {
  3513. extra: 1225 / 1050,
  3514. source: "./media/characters/north/front.svg"
  3515. }
  3516. }
  3517. },
  3518. [
  3519. {
  3520. name: "Micro",
  3521. height: math.unit(4, "inches")
  3522. },
  3523. {
  3524. name: "Macro",
  3525. height: math.unit(63, "meters")
  3526. },
  3527. {
  3528. name: "Megamacro",
  3529. height: math.unit(101, "miles"),
  3530. default: true
  3531. }
  3532. ]
  3533. ))
  3534. characterMakers.push(() => makeCharacter(
  3535. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3536. {
  3537. angled: {
  3538. height: math.unit(4, "meter"),
  3539. weight: math.unit(150, "kg"),
  3540. name: "Angled",
  3541. image: {
  3542. source: "./media/characters/talan/angled-sfw.svg",
  3543. bottom: 29 / 3734
  3544. }
  3545. },
  3546. angledNsfw: {
  3547. height: math.unit(4, "meter"),
  3548. weight: math.unit(150, "kg"),
  3549. name: "Angled (NSFW)",
  3550. image: {
  3551. source: "./media/characters/talan/angled-nsfw.svg",
  3552. bottom: 29 / 3734
  3553. }
  3554. },
  3555. frontNsfw: {
  3556. height: math.unit(4, "meter"),
  3557. weight: math.unit(150, "kg"),
  3558. name: "Front (NSFW)",
  3559. image: {
  3560. source: "./media/characters/talan/front-nsfw.svg",
  3561. bottom: 29 / 3734
  3562. }
  3563. },
  3564. sideNsfw: {
  3565. height: math.unit(4, "meter"),
  3566. weight: math.unit(150, "kg"),
  3567. name: "Side (NSFW)",
  3568. image: {
  3569. source: "./media/characters/talan/side-nsfw.svg",
  3570. bottom: 29 / 3734
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(4, "meter"),
  3575. weight: math.unit(150, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/talan/back.svg"
  3579. }
  3580. },
  3581. dickBottom: {
  3582. height: math.unit(0.621, "meter"),
  3583. name: "Dick (Bottom)",
  3584. image: {
  3585. source: "./media/characters/talan/dick-bottom.svg"
  3586. }
  3587. },
  3588. dickTop: {
  3589. height: math.unit(0.621, "meter"),
  3590. name: "Dick (Top)",
  3591. image: {
  3592. source: "./media/characters/talan/dick-top.svg"
  3593. }
  3594. },
  3595. dickSide: {
  3596. height: math.unit(0.305, "meter"),
  3597. name: "Dick (Side)",
  3598. image: {
  3599. source: "./media/characters/talan/dick-side.svg"
  3600. }
  3601. },
  3602. dickFront: {
  3603. height: math.unit(0.305, "meter"),
  3604. name: "Dick (Front)",
  3605. image: {
  3606. source: "./media/characters/talan/dick-front.svg"
  3607. }
  3608. },
  3609. },
  3610. [
  3611. {
  3612. name: "Normal",
  3613. height: math.unit(4, "meters")
  3614. },
  3615. {
  3616. name: "Macro",
  3617. height: math.unit(100, "meters")
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(2, "miles"),
  3622. default: true
  3623. },
  3624. {
  3625. name: "Gigamacro",
  3626. height: math.unit(5000, "miles")
  3627. },
  3628. {
  3629. name: "Teramacro",
  3630. height: math.unit(100, "parsecs")
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(90, "kg"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/gael'rathus/front.svg"
  3643. }
  3644. },
  3645. frontAlt: {
  3646. height: math.unit(2, "meter"),
  3647. weight: math.unit(90, "kg"),
  3648. name: "Front (alt)",
  3649. image: {
  3650. source: "./media/characters/gael'rathus/front-alt.svg"
  3651. }
  3652. },
  3653. frontAlt2: {
  3654. height: math.unit(2, "meter"),
  3655. weight: math.unit(90, "kg"),
  3656. name: "Front (alt 2)",
  3657. image: {
  3658. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3659. }
  3660. }
  3661. },
  3662. [
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(9, "feet"),
  3666. default: true
  3667. },
  3668. {
  3669. name: "Large",
  3670. height: math.unit(25, "feet")
  3671. },
  3672. {
  3673. name: "Macro",
  3674. height: math.unit(0.25, "miles")
  3675. },
  3676. {
  3677. name: "Megamacro",
  3678. height: math.unit(10, "miles")
  3679. }
  3680. ]
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3684. {
  3685. side: {
  3686. height: math.unit(2, "meter"),
  3687. weight: math.unit(140, "kg"),
  3688. name: "Side",
  3689. image: {
  3690. source: "./media/characters/sosha/side.svg",
  3691. extra: 1170/1006,
  3692. bottom: 94/1264
  3693. }
  3694. },
  3695. maw: {
  3696. height: math.unit(2.87, "feet"),
  3697. name: "Maw",
  3698. image: {
  3699. source: "./media/characters/sosha/maw.svg",
  3700. extra: 966/865,
  3701. bottom: 0/966
  3702. }
  3703. },
  3704. cooch: {
  3705. height: math.unit(5.6, "feet"),
  3706. name: "Cooch",
  3707. image: {
  3708. source: "./media/characters/sosha/cooch.svg"
  3709. }
  3710. },
  3711. },
  3712. [
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(12, "feet"),
  3716. default: true
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3722. {
  3723. side: {
  3724. height: math.unit(5 + 5 / 12, "feet"),
  3725. weight: math.unit(170, "kg"),
  3726. name: "Side",
  3727. image: {
  3728. source: "./media/characters/runnola/side.svg",
  3729. extra: 741 / 448,
  3730. bottom: 0.05
  3731. }
  3732. },
  3733. },
  3734. [
  3735. {
  3736. name: "Small",
  3737. height: math.unit(3, "feet")
  3738. },
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(5 + 5 / 12, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Big",
  3746. height: math.unit(10, "feet")
  3747. },
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(2, "meter"),
  3755. weight: math.unit(50, "kg"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/kurribird/front.svg",
  3759. bottom: 0.015
  3760. }
  3761. },
  3762. frontAlt: {
  3763. height: math.unit(1.5, "meter"),
  3764. weight: math.unit(50, "kg"),
  3765. name: "Front (Alt)",
  3766. image: {
  3767. source: "./media/characters/kurribird/front-alt.svg",
  3768. extra: 1.45
  3769. }
  3770. },
  3771. },
  3772. [
  3773. {
  3774. name: "Normal",
  3775. height: math.unit(7, "feet")
  3776. },
  3777. {
  3778. name: "Big",
  3779. height: math.unit(12, "feet"),
  3780. default: true
  3781. },
  3782. {
  3783. name: "Macro",
  3784. height: math.unit(1500, "feet")
  3785. },
  3786. {
  3787. name: "Megamacro",
  3788. height: math.unit(2, "miles")
  3789. }
  3790. ]
  3791. ))
  3792. characterMakers.push(() => makeCharacter(
  3793. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3794. {
  3795. front: {
  3796. height: math.unit(2, "meter"),
  3797. weight: math.unit(80, "kg"),
  3798. name: "Front",
  3799. image: {
  3800. source: "./media/characters/elbial/front.svg",
  3801. extra: 1643 / 1556,
  3802. bottom: 60.2 / 1696
  3803. }
  3804. },
  3805. side: {
  3806. height: math.unit(2, "meter"),
  3807. weight: math.unit(80, "kg"),
  3808. name: "Side",
  3809. image: {
  3810. source: "./media/characters/elbial/side.svg",
  3811. extra: 1601/1528,
  3812. bottom: 97/1698
  3813. }
  3814. },
  3815. back: {
  3816. height: math.unit(2, "meter"),
  3817. weight: math.unit(80, "kg"),
  3818. name: "Back",
  3819. image: {
  3820. source: "./media/characters/elbial/back.svg",
  3821. extra: 1653/1569,
  3822. bottom: 20/1673
  3823. }
  3824. },
  3825. frontDressed: {
  3826. height: math.unit(2, "meter"),
  3827. weight: math.unit(80, "kg"),
  3828. name: "Front (Dressed)",
  3829. image: {
  3830. source: "./media/characters/elbial/front-dressed.svg",
  3831. extra: 1638/1569,
  3832. bottom: 70/1708
  3833. }
  3834. },
  3835. genitals: {
  3836. height: math.unit(2 / 3.367, "meter"),
  3837. name: "Genitals",
  3838. image: {
  3839. source: "./media/characters/elbial/genitals.svg"
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Large",
  3846. height: math.unit(100, "feet")
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(500, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Megamacro",
  3855. height: math.unit(10, "miles")
  3856. },
  3857. {
  3858. name: "Gigamacro",
  3859. height: math.unit(25000, "miles")
  3860. },
  3861. {
  3862. name: "Full-Size",
  3863. height: math.unit(8000000, "gigaparsecs")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(60, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/noah/front.svg"
  3876. }
  3877. },
  3878. talons: {
  3879. height: math.unit(0.315, "meter"),
  3880. name: "Talons",
  3881. image: {
  3882. source: "./media/characters/noah/talons.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Large",
  3889. height: math.unit(50, "feet")
  3890. },
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(750, "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Megamacro",
  3898. height: math.unit(50, "miles")
  3899. },
  3900. {
  3901. name: "Gigamacro",
  3902. height: math.unit(100000, "miles")
  3903. },
  3904. {
  3905. name: "Full-Size",
  3906. height: math.unit(3000000000, "miles")
  3907. }
  3908. ]
  3909. ))
  3910. characterMakers.push(() => makeCharacter(
  3911. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3912. {
  3913. front: {
  3914. height: math.unit(2, "meter"),
  3915. weight: math.unit(80, "kg"),
  3916. name: "Front",
  3917. image: {
  3918. source: "./media/characters/natalya/front.svg"
  3919. }
  3920. },
  3921. back: {
  3922. height: math.unit(2, "meter"),
  3923. weight: math.unit(80, "kg"),
  3924. name: "Back",
  3925. image: {
  3926. source: "./media/characters/natalya/back.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Normal",
  3933. height: math.unit(150, "feet"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Megamacro",
  3938. height: math.unit(5, "miles")
  3939. },
  3940. {
  3941. name: "Full-Size",
  3942. height: math.unit(600, "kiloparsecs")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(2, "meter"),
  3951. weight: math.unit(50, "kg"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/erestrebah/front.svg",
  3955. extra: 1262/1162,
  3956. bottom: 96/1358
  3957. }
  3958. },
  3959. back: {
  3960. height: math.unit(2, "meter"),
  3961. weight: math.unit(50, "kg"),
  3962. name: "Back",
  3963. image: {
  3964. source: "./media/characters/erestrebah/back.svg",
  3965. extra: 1257/1139,
  3966. bottom: 13/1270
  3967. }
  3968. },
  3969. wing: {
  3970. height: math.unit(2, "meter"),
  3971. weight: math.unit(50, "kg"),
  3972. name: "Wing",
  3973. image: {
  3974. source: "./media/characters/erestrebah/wing.svg",
  3975. extra: 1262/1162,
  3976. bottom: 96/1358
  3977. }
  3978. },
  3979. mouth: {
  3980. height: math.unit(0.39, "feet"),
  3981. name: "Mouth",
  3982. image: {
  3983. source: "./media/characters/erestrebah/mouth.svg"
  3984. }
  3985. }
  3986. },
  3987. [
  3988. {
  3989. name: "Normal",
  3990. height: math.unit(10, "feet")
  3991. },
  3992. {
  3993. name: "Large",
  3994. height: math.unit(50, "feet"),
  3995. default: true
  3996. },
  3997. {
  3998. name: "Macro",
  3999. height: math.unit(300, "feet")
  4000. },
  4001. {
  4002. name: "Macro+",
  4003. height: math.unit(750, "feet")
  4004. },
  4005. {
  4006. name: "Megamacro",
  4007. height: math.unit(3, "miles")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(80, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/jennifer/front.svg",
  4020. bottom: 0.11,
  4021. extra: 1.16
  4022. }
  4023. },
  4024. frontAlt: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(80, "kg"),
  4027. name: "Front (Alt)",
  4028. image: {
  4029. source: "./media/characters/jennifer/front-alt.svg"
  4030. }
  4031. }
  4032. },
  4033. [
  4034. {
  4035. name: "Canon Height",
  4036. height: math.unit(120, "feet"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Macro+",
  4041. height: math.unit(300, "feet")
  4042. },
  4043. {
  4044. name: "Megamacro",
  4045. height: math.unit(20000, "feet")
  4046. }
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(50, "kg"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/kalista/front.svg",
  4058. extra: 1314/1145,
  4059. bottom: 101/1415
  4060. }
  4061. },
  4062. back: {
  4063. height: math.unit(2, "meter"),
  4064. weight: math.unit(50, "kg"),
  4065. name: "Back",
  4066. image: {
  4067. source: "./media/characters/kalista/back.svg",
  4068. extra: 1366 / 1156,
  4069. bottom: 33.9 / 1362.78
  4070. }
  4071. }
  4072. },
  4073. [
  4074. {
  4075. name: "Uncomfortably Small",
  4076. height: math.unit(10, "feet")
  4077. },
  4078. {
  4079. name: "Small",
  4080. height: math.unit(30, "feet")
  4081. },
  4082. {
  4083. name: "Macro",
  4084. height: math.unit(100, "feet"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Macro+",
  4089. height: math.unit(2000, "feet")
  4090. },
  4091. {
  4092. name: "True Form",
  4093. height: math.unit(8924, "miles")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(120, "kg"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/ggv/front.svg"
  4106. }
  4107. },
  4108. side: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(120, "kg"),
  4111. name: "Side",
  4112. image: {
  4113. source: "./media/characters/ggv/side.svg"
  4114. }
  4115. }
  4116. },
  4117. [
  4118. {
  4119. name: "Extremely Puny",
  4120. height: math.unit(9 + 5 / 12, "feet")
  4121. },
  4122. {
  4123. name: "Horribly Small",
  4124. height: math.unit(47.7, "miles"),
  4125. default: true
  4126. },
  4127. {
  4128. name: "Reasonably Sized",
  4129. height: math.unit(25000, "parsecs")
  4130. },
  4131. {
  4132. name: "Slightly Uncompressed",
  4133. height: math.unit(7.77e31, "parsecs")
  4134. },
  4135. {
  4136. name: "Omniversal",
  4137. height: math.unit(1e300, "meters")
  4138. },
  4139. ]
  4140. ))
  4141. characterMakers.push(() => makeCharacter(
  4142. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4143. {
  4144. front: {
  4145. height: math.unit(2, "meter"),
  4146. weight: math.unit(75, "lb"),
  4147. name: "Front",
  4148. image: {
  4149. source: "./media/characters/napalm/front.svg"
  4150. }
  4151. },
  4152. back: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(75, "lb"),
  4155. name: "Back",
  4156. image: {
  4157. source: "./media/characters/napalm/back.svg"
  4158. }
  4159. }
  4160. },
  4161. [
  4162. {
  4163. name: "Standard",
  4164. height: math.unit(55, "feet"),
  4165. default: true
  4166. }
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4171. {
  4172. front: {
  4173. height: math.unit(7 + 5 / 6, "feet"),
  4174. weight: math.unit(325, "lb"),
  4175. name: "Front",
  4176. image: {
  4177. source: "./media/characters/asana/front.svg",
  4178. extra: 1133 / 1060,
  4179. bottom: 15.2 / 1148.6
  4180. }
  4181. },
  4182. back: {
  4183. height: math.unit(7 + 5 / 6, "feet"),
  4184. weight: math.unit(325, "lb"),
  4185. name: "Back",
  4186. image: {
  4187. source: "./media/characters/asana/back.svg",
  4188. extra: 1114 / 1043,
  4189. bottom: 5 / 1120
  4190. }
  4191. },
  4192. dressedDark: {
  4193. height: math.unit(7 + 5 / 6, "feet"),
  4194. weight: math.unit(325, "lb"),
  4195. name: "Dressed (Dark)",
  4196. image: {
  4197. source: "./media/characters/asana/dressed-dark.svg",
  4198. extra: 1133 / 1060,
  4199. bottom: 15.2 / 1148.6
  4200. }
  4201. },
  4202. dressedLight: {
  4203. height: math.unit(7 + 5 / 6, "feet"),
  4204. weight: math.unit(325, "lb"),
  4205. name: "Dressed (Light)",
  4206. image: {
  4207. source: "./media/characters/asana/dressed-light.svg",
  4208. extra: 1133 / 1060,
  4209. bottom: 15.2 / 1148.6
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Standard",
  4216. height: math.unit(7 + 5 / 6, "feet"),
  4217. default: true
  4218. },
  4219. {
  4220. name: "Large",
  4221. height: math.unit(10, "meters")
  4222. },
  4223. {
  4224. name: "Macro",
  4225. height: math.unit(2500, "meters")
  4226. },
  4227. {
  4228. name: "Megamacro",
  4229. height: math.unit(5e6, "meters")
  4230. },
  4231. {
  4232. name: "Examacro",
  4233. height: math.unit(5e12, "lightyears")
  4234. },
  4235. {
  4236. name: "Max Size",
  4237. height: math.unit(1e31, "lightyears")
  4238. }
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(2, "meter"),
  4246. weight: math.unit(60, "kg"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/ebony/front.svg",
  4250. bottom: 0.03,
  4251. extra: 1045 / 810 + 0.03
  4252. }
  4253. },
  4254. side: {
  4255. height: math.unit(2, "meter"),
  4256. weight: math.unit(60, "kg"),
  4257. name: "Side",
  4258. image: {
  4259. source: "./media/characters/ebony/side.svg",
  4260. bottom: 0.03,
  4261. extra: 1045 / 810 + 0.03
  4262. }
  4263. },
  4264. back: {
  4265. height: math.unit(2, "meter"),
  4266. weight: math.unit(60, "kg"),
  4267. name: "Back",
  4268. image: {
  4269. source: "./media/characters/ebony/back.svg",
  4270. bottom: 0.01,
  4271. extra: 1045 / 810 + 0.01
  4272. }
  4273. },
  4274. },
  4275. [
  4276. // TODO check why I did this lol
  4277. {
  4278. name: "Standard",
  4279. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(200, "feet")
  4285. },
  4286. {
  4287. name: "Gigamacro",
  4288. height: math.unit(13000, "km")
  4289. }
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4294. {
  4295. front: {
  4296. height: math.unit(6, "feet"),
  4297. weight: math.unit(175, "lb"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/mountain/front.svg",
  4301. extra: 972 / 955,
  4302. bottom: 64 / 1036.6
  4303. }
  4304. },
  4305. back: {
  4306. height: math.unit(6, "feet"),
  4307. weight: math.unit(175, "lb"),
  4308. name: "Back",
  4309. image: {
  4310. source: "./media/characters/mountain/back.svg",
  4311. extra: 970 / 950,
  4312. bottom: 28.25 / 999
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Large",
  4319. height: math.unit(20, "meters")
  4320. },
  4321. {
  4322. name: "Macro",
  4323. height: math.unit(300, "meters")
  4324. },
  4325. {
  4326. name: "Gigamacro",
  4327. height: math.unit(10000, "km"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Examacro",
  4332. height: math.unit(10e9, "lightyears")
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4338. {
  4339. front: {
  4340. height: math.unit(8, "feet"),
  4341. weight: math.unit(500, "lb"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/rick/front.svg"
  4345. }
  4346. }
  4347. },
  4348. [
  4349. {
  4350. name: "Normal",
  4351. height: math.unit(8, "feet"),
  4352. default: true
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(5, "km")
  4357. }
  4358. ]
  4359. ))
  4360. characterMakers.push(() => makeCharacter(
  4361. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4362. {
  4363. front: {
  4364. height: math.unit(8, "feet"),
  4365. weight: math.unit(120, "lb"),
  4366. name: "Front",
  4367. image: {
  4368. source: "./media/characters/ona/front.svg"
  4369. }
  4370. },
  4371. frontAlt: {
  4372. height: math.unit(8, "feet"),
  4373. weight: math.unit(120, "lb"),
  4374. name: "Front (Alt)",
  4375. image: {
  4376. source: "./media/characters/ona/front-alt.svg"
  4377. }
  4378. },
  4379. back: {
  4380. height: math.unit(8, "feet"),
  4381. weight: math.unit(120, "lb"),
  4382. name: "Back",
  4383. image: {
  4384. source: "./media/characters/ona/back.svg"
  4385. }
  4386. },
  4387. foot: {
  4388. height: math.unit(1.1, "feet"),
  4389. name: "Foot",
  4390. image: {
  4391. source: "./media/characters/ona/foot.svg"
  4392. }
  4393. }
  4394. },
  4395. [
  4396. {
  4397. name: "Megamacro",
  4398. height: math.unit(70, "km"),
  4399. default: true
  4400. },
  4401. {
  4402. name: "Gigamacro",
  4403. height: math.unit(681818, "miles")
  4404. },
  4405. {
  4406. name: "Examacro",
  4407. height: math.unit(3800000, "lightyears")
  4408. },
  4409. ]
  4410. ))
  4411. characterMakers.push(() => makeCharacter(
  4412. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4413. {
  4414. front: {
  4415. height: math.unit(12, "feet"),
  4416. weight: math.unit(3000, "lb"),
  4417. name: "Front",
  4418. image: {
  4419. source: "./media/characters/mech/front.svg",
  4420. extra: 2900 / 2770,
  4421. bottom: 110 / 3010
  4422. }
  4423. },
  4424. back: {
  4425. height: math.unit(12, "feet"),
  4426. weight: math.unit(3000, "lb"),
  4427. name: "Back",
  4428. image: {
  4429. source: "./media/characters/mech/back.svg",
  4430. extra: 3011 / 2890,
  4431. bottom: 94 / 3105
  4432. }
  4433. },
  4434. maw: {
  4435. height: math.unit(3.07, "feet"),
  4436. name: "Maw",
  4437. image: {
  4438. source: "./media/characters/mech/maw.svg"
  4439. }
  4440. },
  4441. head: {
  4442. height: math.unit(3.07, "feet"),
  4443. name: "Head",
  4444. image: {
  4445. source: "./media/characters/mech/head.svg"
  4446. }
  4447. },
  4448. dick: {
  4449. height: math.unit(1.43, "feet"),
  4450. name: "Dick",
  4451. image: {
  4452. source: "./media/characters/mech/dick.svg"
  4453. }
  4454. },
  4455. },
  4456. [
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(12, "feet")
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(300, "feet"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Macro+",
  4468. height: math.unit(1500, "feet")
  4469. },
  4470. ]
  4471. ))
  4472. characterMakers.push(() => makeCharacter(
  4473. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4474. {
  4475. front: {
  4476. height: math.unit(1.3, "meter"),
  4477. weight: math.unit(30, "kg"),
  4478. name: "Front",
  4479. image: {
  4480. source: "./media/characters/gregory/front.svg",
  4481. }
  4482. }
  4483. },
  4484. [
  4485. {
  4486. name: "Normal",
  4487. height: math.unit(1.3, "meter"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Macro",
  4492. height: math.unit(20, "meter")
  4493. }
  4494. ]
  4495. ))
  4496. characterMakers.push(() => makeCharacter(
  4497. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4498. {
  4499. front: {
  4500. height: math.unit(2.8, "meter"),
  4501. weight: math.unit(200, "kg"),
  4502. name: "Front",
  4503. image: {
  4504. source: "./media/characters/elory/front.svg",
  4505. }
  4506. }
  4507. },
  4508. [
  4509. {
  4510. name: "Normal",
  4511. height: math.unit(2.8, "meter"),
  4512. default: true
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(38, "meter")
  4517. }
  4518. ]
  4519. ))
  4520. characterMakers.push(() => makeCharacter(
  4521. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4522. {
  4523. front: {
  4524. height: math.unit(470, "feet"),
  4525. weight: math.unit(924, "tons"),
  4526. name: "Front",
  4527. image: {
  4528. source: "./media/characters/angelpatamon/front.svg",
  4529. }
  4530. }
  4531. },
  4532. [
  4533. {
  4534. name: "Normal",
  4535. height: math.unit(470, "feet"),
  4536. default: true
  4537. },
  4538. {
  4539. name: "Deity Size I",
  4540. height: math.unit(28651.2, "km")
  4541. },
  4542. {
  4543. name: "Deity Size II",
  4544. height: math.unit(171907.2, "km")
  4545. }
  4546. ]
  4547. ))
  4548. characterMakers.push(() => makeCharacter(
  4549. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4550. {
  4551. side: {
  4552. height: math.unit(7.2, "meter"),
  4553. weight: math.unit(8.2, "tons"),
  4554. name: "Side",
  4555. image: {
  4556. source: "./media/characters/cryae/side.svg",
  4557. extra: 3500 / 1500
  4558. }
  4559. }
  4560. },
  4561. [
  4562. {
  4563. name: "Normal",
  4564. height: math.unit(7.2, "meter"),
  4565. default: true
  4566. }
  4567. ]
  4568. ))
  4569. characterMakers.push(() => makeCharacter(
  4570. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4571. {
  4572. front: {
  4573. height: math.unit(6, "feet"),
  4574. weight: math.unit(175, "lb"),
  4575. name: "Front",
  4576. image: {
  4577. source: "./media/characters/xera/front.svg",
  4578. extra: 2377 / 1972,
  4579. bottom: 75.5 / 2452
  4580. }
  4581. },
  4582. side: {
  4583. height: math.unit(6, "feet"),
  4584. weight: math.unit(175, "lb"),
  4585. name: "Side",
  4586. image: {
  4587. source: "./media/characters/xera/side.svg",
  4588. extra: 2345 / 2019,
  4589. bottom: 39.7 / 2384
  4590. }
  4591. },
  4592. back: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(175, "lb"),
  4595. name: "Back",
  4596. image: {
  4597. source: "./media/characters/xera/back.svg",
  4598. extra: 2095 / 1984,
  4599. bottom: 67 / 2166
  4600. }
  4601. },
  4602. },
  4603. [
  4604. {
  4605. name: "Small",
  4606. height: math.unit(10, "feet")
  4607. },
  4608. {
  4609. name: "Macro",
  4610. height: math.unit(500, "meters"),
  4611. default: true
  4612. },
  4613. {
  4614. name: "Macro+",
  4615. height: math.unit(10, "km")
  4616. },
  4617. {
  4618. name: "Gigamacro",
  4619. height: math.unit(25000, "km")
  4620. },
  4621. {
  4622. name: "Teramacro",
  4623. height: math.unit(3e6, "km")
  4624. }
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4629. {
  4630. front: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(175, "lb"),
  4633. name: "Front",
  4634. image: {
  4635. source: "./media/characters/nebula/front.svg",
  4636. extra: 2566 / 2362,
  4637. bottom: 81 / 2644
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Small",
  4644. height: math.unit(4.5, "meters")
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(1500, "meters"),
  4649. default: true
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(150, "km")
  4654. },
  4655. {
  4656. name: "Gigamacro",
  4657. height: math.unit(27000, "km")
  4658. }
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4663. {
  4664. front: {
  4665. height: math.unit(6, "feet"),
  4666. weight: math.unit(225, "lb"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/abysgar/front.svg",
  4670. extra: 1739/1614,
  4671. bottom: 71/1810
  4672. }
  4673. },
  4674. frontNsfw: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(225, "lb"),
  4677. name: "Front (NSFW)",
  4678. image: {
  4679. source: "./media/characters/abysgar/front-nsfw.svg",
  4680. extra: 1739/1614,
  4681. bottom: 71/1810
  4682. }
  4683. },
  4684. back: {
  4685. height: math.unit(4.6, "feet"),
  4686. weight: math.unit(225, "lb"),
  4687. name: "Back",
  4688. image: {
  4689. source: "./media/characters/abysgar/back.svg",
  4690. extra: 1384/1327,
  4691. bottom: 0/1384
  4692. }
  4693. },
  4694. head: {
  4695. height: math.unit(1.25, "feet"),
  4696. name: "Head",
  4697. image: {
  4698. source: "./media/characters/abysgar/head.svg",
  4699. extra: 669/569,
  4700. bottom: 0/669
  4701. }
  4702. },
  4703. },
  4704. [
  4705. {
  4706. name: "Small",
  4707. height: math.unit(4.5, "meters")
  4708. },
  4709. {
  4710. name: "Macro",
  4711. height: math.unit(1250, "meters"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Megamacro",
  4716. height: math.unit(125, "km")
  4717. },
  4718. {
  4719. name: "Gigamacro",
  4720. height: math.unit(26000, "km")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(180, "lb"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/yakuz/front.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Small",
  4739. height: math.unit(5, "meters")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(1500, "meters"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Megamacro",
  4748. height: math.unit(200, "km")
  4749. },
  4750. {
  4751. name: "Gigamacro",
  4752. height: math.unit(100000, "km")
  4753. }
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(175, "lb"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/mirova/front.svg",
  4765. extra: 3334 / 3071,
  4766. bottom: 42 / 3375.6
  4767. }
  4768. }
  4769. },
  4770. [
  4771. {
  4772. name: "Small",
  4773. height: math.unit(5, "meters")
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(900, "meters"),
  4778. default: true
  4779. },
  4780. {
  4781. name: "Megamacro",
  4782. height: math.unit(135, "km")
  4783. },
  4784. {
  4785. name: "Gigamacro",
  4786. height: math.unit(20000, "km")
  4787. }
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4792. {
  4793. side: {
  4794. height: math.unit(28.35, "feet"),
  4795. weight: math.unit(99.75, "tons"),
  4796. name: "Side",
  4797. image: {
  4798. source: "./media/characters/asana-mech/side.svg",
  4799. extra: 923 / 699,
  4800. bottom: 50 / 975
  4801. }
  4802. },
  4803. chaingun: {
  4804. height: math.unit(7, "feet"),
  4805. weight: math.unit(2400, "lb"),
  4806. name: "Chaingun",
  4807. image: {
  4808. source: "./media/characters/asana-mech/chaingun.svg"
  4809. }
  4810. },
  4811. laser: {
  4812. height: math.unit(7.12, "feet"),
  4813. weight: math.unit(2000, "lb"),
  4814. name: "Laser",
  4815. image: {
  4816. source: "./media/characters/asana-mech/laser.svg"
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(28.35, "feet"),
  4824. default: true
  4825. },
  4826. {
  4827. name: "Macro",
  4828. height: math.unit(2500, "feet")
  4829. },
  4830. {
  4831. name: "Megamacro",
  4832. height: math.unit(25, "miles")
  4833. },
  4834. {
  4835. name: "Examacro",
  4836. height: math.unit(6e8, "lightyears")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(5, "meters"),
  4845. weight: math.unit(1000, "kg"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/asche/front.svg",
  4849. extra: 1258 / 1190,
  4850. bottom: 47 / 1305
  4851. }
  4852. },
  4853. frontUnderwear: {
  4854. height: math.unit(5, "meters"),
  4855. weight: math.unit(1000, "kg"),
  4856. name: "Front (Underwear)",
  4857. image: {
  4858. source: "./media/characters/asche/front-underwear.svg",
  4859. extra: 1258 / 1190,
  4860. bottom: 47 / 1305
  4861. }
  4862. },
  4863. frontDressed: {
  4864. height: math.unit(5, "meters"),
  4865. weight: math.unit(1000, "kg"),
  4866. name: "Front (Dressed)",
  4867. image: {
  4868. source: "./media/characters/asche/front-dressed.svg",
  4869. extra: 1258 / 1190,
  4870. bottom: 47 / 1305
  4871. }
  4872. },
  4873. frontArmor: {
  4874. height: math.unit(5, "meters"),
  4875. weight: math.unit(1000, "kg"),
  4876. name: "Front (Armored)",
  4877. image: {
  4878. source: "./media/characters/asche/front-armored.svg",
  4879. extra: 1374 / 1308,
  4880. bottom: 23 / 1397
  4881. }
  4882. },
  4883. mp724: {
  4884. height: math.unit(0.96, "meters"),
  4885. weight: math.unit(38, "kg"),
  4886. name: "H&K MP724",
  4887. image: {
  4888. source: "./media/characters/asche/h&k-mp724.svg"
  4889. }
  4890. },
  4891. side: {
  4892. height: math.unit(5, "meters"),
  4893. weight: math.unit(1000, "kg"),
  4894. name: "Side",
  4895. image: {
  4896. source: "./media/characters/asche/side.svg",
  4897. extra: 1717 / 1609,
  4898. bottom: 0.005
  4899. }
  4900. },
  4901. back: {
  4902. height: math.unit(5, "meters"),
  4903. weight: math.unit(1000, "kg"),
  4904. name: "Back",
  4905. image: {
  4906. source: "./media/characters/asche/back.svg",
  4907. extra: 1570 / 1501
  4908. }
  4909. },
  4910. },
  4911. [
  4912. {
  4913. name: "DEFCON 5",
  4914. height: math.unit(5, "meters")
  4915. },
  4916. {
  4917. name: "DEFCON 4",
  4918. height: math.unit(500, "meters"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "DEFCON 3",
  4923. height: math.unit(5, "km")
  4924. },
  4925. {
  4926. name: "DEFCON 2",
  4927. height: math.unit(500, "km")
  4928. },
  4929. {
  4930. name: "DEFCON 1",
  4931. height: math.unit(500000, "km")
  4932. },
  4933. {
  4934. name: "DEFCON 0",
  4935. height: math.unit(3, "gigaparsecs")
  4936. },
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(2, "meters"),
  4944. weight: math.unit(76, "kg"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/gale/front.svg"
  4948. }
  4949. },
  4950. frontAlt1: {
  4951. height: math.unit(2, "meters"),
  4952. weight: math.unit(76, "kg"),
  4953. name: "Front (Alt 1)",
  4954. image: {
  4955. source: "./media/characters/gale/front-alt-1.svg"
  4956. }
  4957. },
  4958. frontAlt2: {
  4959. height: math.unit(2, "meters"),
  4960. weight: math.unit(76, "kg"),
  4961. name: "Front (Alt 2)",
  4962. image: {
  4963. source: "./media/characters/gale/front-alt-2.svg"
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Normal",
  4970. height: math.unit(7, "feet")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(150, "feet"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro+",
  4979. height: math.unit(300, "feet")
  4980. },
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(5 + 10/12, "feet"),
  4988. weight: math.unit(67, "kg"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/draylen/front.svg",
  4992. extra: 832/777,
  4993. bottom: 85/917
  4994. }
  4995. }
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(5 + 10/12, "feet")
  5001. },
  5002. {
  5003. name: "Macro",
  5004. height: math.unit(150, "feet"),
  5005. default: true
  5006. }
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5011. {
  5012. front: {
  5013. height: math.unit(7 + 9 / 12, "feet"),
  5014. weight: math.unit(379, "lbs"),
  5015. name: "Front",
  5016. image: {
  5017. source: "./media/characters/chez/front.svg"
  5018. }
  5019. },
  5020. side: {
  5021. height: math.unit(7 + 9 / 12, "feet"),
  5022. weight: math.unit(379, "lbs"),
  5023. name: "Side",
  5024. image: {
  5025. source: "./media/characters/chez/side.svg"
  5026. }
  5027. }
  5028. },
  5029. [
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(7 + 9 / 12, "feet"),
  5033. default: true
  5034. },
  5035. {
  5036. name: "God King",
  5037. height: math.unit(9750000, "meters")
  5038. }
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5043. {
  5044. front: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(275, "lbs"),
  5047. name: "Front",
  5048. image: {
  5049. source: "./media/characters/kaylum/front.svg",
  5050. bottom: 0.01,
  5051. extra: 1166 / 1031
  5052. }
  5053. },
  5054. frontWingless: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(275, "lbs"),
  5057. name: "Front (Wingless)",
  5058. image: {
  5059. source: "./media/characters/kaylum/front-wingless.svg",
  5060. bottom: 0.01,
  5061. extra: 1117 / 1031
  5062. }
  5063. }
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(3.05, "meters")
  5069. },
  5070. {
  5071. name: "Master",
  5072. height: math.unit(5.5, "meters")
  5073. },
  5074. {
  5075. name: "Rampage",
  5076. height: math.unit(19, "meters")
  5077. },
  5078. {
  5079. name: "Macro Lite",
  5080. height: math.unit(37, "meters")
  5081. },
  5082. {
  5083. name: "Hyper Predator",
  5084. height: math.unit(61, "meters")
  5085. },
  5086. {
  5087. name: "Macro",
  5088. height: math.unit(138, "meters"),
  5089. default: true
  5090. }
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5095. {
  5096. front: {
  5097. height: math.unit(5 + 5 / 12, "feet"),
  5098. weight: math.unit(120, "lbs"),
  5099. name: "Front",
  5100. image: {
  5101. source: "./media/characters/geta/front.svg",
  5102. extra: 1003/933,
  5103. bottom: 21/1024
  5104. }
  5105. },
  5106. paw: {
  5107. height: math.unit(0.35, "feet"),
  5108. name: "Paw",
  5109. image: {
  5110. source: "./media/characters/geta/paw.svg"
  5111. }
  5112. },
  5113. },
  5114. [
  5115. {
  5116. name: "Micro",
  5117. height: math.unit(3, "inches"),
  5118. default: true
  5119. },
  5120. {
  5121. name: "Normal",
  5122. height: math.unit(5 + 5 / 12, "feet")
  5123. }
  5124. ]
  5125. ))
  5126. characterMakers.push(() => makeCharacter(
  5127. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5128. {
  5129. front: {
  5130. height: math.unit(6, "feet"),
  5131. weight: math.unit(300, "lbs"),
  5132. name: "Front",
  5133. image: {
  5134. source: "./media/characters/tyrnn/front.svg"
  5135. }
  5136. }
  5137. },
  5138. [
  5139. {
  5140. name: "Main Height",
  5141. height: math.unit(355, "feet"),
  5142. default: true
  5143. },
  5144. {
  5145. name: "Fave. Height",
  5146. height: math.unit(2400, "feet")
  5147. }
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5152. {
  5153. front: {
  5154. height: math.unit(6, "feet"),
  5155. weight: math.unit(300, "lbs"),
  5156. name: "Front",
  5157. image: {
  5158. source: "./media/characters/appledectomy/front.svg"
  5159. }
  5160. }
  5161. },
  5162. [
  5163. {
  5164. name: "Macro",
  5165. height: math.unit(2500, "feet")
  5166. },
  5167. {
  5168. name: "Megamacro",
  5169. height: math.unit(50, "miles"),
  5170. default: true
  5171. },
  5172. {
  5173. name: "Gigamacro",
  5174. height: math.unit(5000, "miles")
  5175. },
  5176. {
  5177. name: "Teramacro",
  5178. height: math.unit(250000, "miles")
  5179. },
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5184. {
  5185. front: {
  5186. height: math.unit(6, "feet"),
  5187. weight: math.unit(200, "lbs"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/vulpes/front.svg",
  5191. extra: 573 / 543,
  5192. bottom: 0.033
  5193. }
  5194. },
  5195. side: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(200, "lbs"),
  5198. name: "Side",
  5199. image: {
  5200. source: "./media/characters/vulpes/side.svg",
  5201. extra: 577 / 549,
  5202. bottom: 11 / 588
  5203. }
  5204. },
  5205. back: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(200, "lbs"),
  5208. name: "Back",
  5209. image: {
  5210. source: "./media/characters/vulpes/back.svg",
  5211. extra: 573 / 549,
  5212. bottom: 20 / 593
  5213. }
  5214. },
  5215. feet: {
  5216. height: math.unit(1.276, "feet"),
  5217. name: "Feet",
  5218. image: {
  5219. source: "./media/characters/vulpes/feet.svg"
  5220. }
  5221. },
  5222. maw: {
  5223. height: math.unit(1.18, "feet"),
  5224. name: "Maw",
  5225. image: {
  5226. source: "./media/characters/vulpes/maw.svg"
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Micro",
  5233. height: math.unit(2, "inches")
  5234. },
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(6.3, "feet")
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(850, "feet")
  5242. },
  5243. {
  5244. name: "Megamacro",
  5245. height: math.unit(7500, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Gigamacro",
  5250. height: math.unit(570000, "miles")
  5251. }
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5256. {
  5257. front: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(210, "lbs"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/rain-fallen/front.svg"
  5263. }
  5264. },
  5265. side: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(210, "lbs"),
  5268. name: "Side",
  5269. image: {
  5270. source: "./media/characters/rain-fallen/side.svg"
  5271. }
  5272. },
  5273. back: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(210, "lbs"),
  5276. name: "Back",
  5277. image: {
  5278. source: "./media/characters/rain-fallen/back.svg"
  5279. }
  5280. },
  5281. feral: {
  5282. height: math.unit(9, "feet"),
  5283. weight: math.unit(700, "lbs"),
  5284. name: "Feral",
  5285. image: {
  5286. source: "./media/characters/rain-fallen/feral.svg"
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Meddling with Mortals",
  5293. height: math.unit(8 + 8/12, "feet")
  5294. },
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(5, "meter")
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(150, "meter"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Megamacro",
  5306. height: math.unit(278e6, "meter")
  5307. },
  5308. {
  5309. name: "Gigamacro",
  5310. height: math.unit(2e9, "meter")
  5311. },
  5312. {
  5313. name: "Teramacro",
  5314. height: math.unit(8e12, "meter")
  5315. },
  5316. {
  5317. name: "Devourer",
  5318. height: math.unit(14, "zettameters")
  5319. },
  5320. {
  5321. name: "Scarlet King",
  5322. height: math.unit(18, "yottameters")
  5323. },
  5324. {
  5325. name: "Void",
  5326. height: math.unit(1e88, "yottameters")
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5332. {
  5333. standing: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(180, "lbs"),
  5336. name: "Standing",
  5337. image: {
  5338. source: "./media/characters/zaakira/standing.svg",
  5339. extra: 1599/1504,
  5340. bottom: 39/1638
  5341. }
  5342. },
  5343. laying: {
  5344. height: math.unit(3.3, "feet"),
  5345. weight: math.unit(180, "lbs"),
  5346. name: "Laying",
  5347. image: {
  5348. source: "./media/characters/zaakira/laying.svg"
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(12, "feet")
  5356. },
  5357. {
  5358. name: "Macro",
  5359. height: math.unit(279, "feet"),
  5360. default: true
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5366. {
  5367. femSfw: {
  5368. height: math.unit(8, "feet"),
  5369. weight: math.unit(350, "lb"),
  5370. name: "Fem",
  5371. image: {
  5372. source: "./media/characters/sigvald/fem-sfw.svg",
  5373. extra: 182 / 164,
  5374. bottom: 8.7 / 190.5
  5375. }
  5376. },
  5377. femNsfw: {
  5378. height: math.unit(8, "feet"),
  5379. weight: math.unit(350, "lb"),
  5380. name: "Fem (NSFW)",
  5381. image: {
  5382. source: "./media/characters/sigvald/fem-nsfw.svg",
  5383. extra: 182 / 164,
  5384. bottom: 8.7 / 190.5
  5385. }
  5386. },
  5387. maleNsfw: {
  5388. height: math.unit(8, "feet"),
  5389. weight: math.unit(350, "lb"),
  5390. name: "Male (NSFW)",
  5391. image: {
  5392. source: "./media/characters/sigvald/male-nsfw.svg",
  5393. extra: 182 / 164,
  5394. bottom: 8.7 / 190.5
  5395. }
  5396. },
  5397. hermNsfw: {
  5398. height: math.unit(8, "feet"),
  5399. weight: math.unit(350, "lb"),
  5400. name: "Herm (NSFW)",
  5401. image: {
  5402. source: "./media/characters/sigvald/herm-nsfw.svg",
  5403. extra: 182 / 164,
  5404. bottom: 8.7 / 190.5
  5405. }
  5406. },
  5407. dick: {
  5408. height: math.unit(2.36, "feet"),
  5409. name: "Dick",
  5410. image: {
  5411. source: "./media/characters/sigvald/dick.svg"
  5412. }
  5413. },
  5414. eye: {
  5415. height: math.unit(0.31, "feet"),
  5416. name: "Eye",
  5417. image: {
  5418. source: "./media/characters/sigvald/eye.svg"
  5419. }
  5420. },
  5421. mouth: {
  5422. height: math.unit(0.92, "feet"),
  5423. name: "Mouth",
  5424. image: {
  5425. source: "./media/characters/sigvald/mouth.svg"
  5426. }
  5427. },
  5428. paws: {
  5429. height: math.unit(2.2, "feet"),
  5430. name: "Paws",
  5431. image: {
  5432. source: "./media/characters/sigvald/paws.svg"
  5433. }
  5434. }
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(8, "feet")
  5440. },
  5441. {
  5442. name: "Large",
  5443. height: math.unit(12, "feet")
  5444. },
  5445. {
  5446. name: "Larger",
  5447. height: math.unit(20, "feet")
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(150, "feet")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(200, "feet"),
  5456. default: true
  5457. },
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5462. {
  5463. side: {
  5464. height: math.unit(12, "feet"),
  5465. weight: math.unit(2000, "kg"),
  5466. name: "Side",
  5467. image: {
  5468. source: "./media/characters/scott/side.svg",
  5469. extra: 754 / 724,
  5470. bottom: 0.069
  5471. }
  5472. },
  5473. upright: {
  5474. height: math.unit(12, "feet"),
  5475. weight: math.unit(2000, "kg"),
  5476. name: "Upright",
  5477. image: {
  5478. source: "./media/characters/scott/upright.svg",
  5479. extra: 3881 / 3722,
  5480. bottom: 0.05
  5481. }
  5482. },
  5483. },
  5484. [
  5485. {
  5486. name: "Normal",
  5487. height: math.unit(12, "feet"),
  5488. default: true
  5489. },
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5494. {
  5495. side: {
  5496. height: math.unit(8, "meters"),
  5497. weight: math.unit(84755, "lbs"),
  5498. name: "Side",
  5499. image: {
  5500. source: "./media/characters/tobias/side.svg",
  5501. extra: 1474 / 1096,
  5502. bottom: 38.9 / 1513.1235
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(8, "meters"),
  5510. default: true
  5511. },
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5516. {
  5517. front: {
  5518. height: math.unit(5.5, "feet"),
  5519. weight: math.unit(400, "lbs"),
  5520. name: "Front",
  5521. image: {
  5522. source: "./media/characters/kieran/front.svg",
  5523. extra: 2694 / 2364,
  5524. bottom: 217 / 2908
  5525. }
  5526. },
  5527. side: {
  5528. height: math.unit(5.5, "feet"),
  5529. weight: math.unit(400, "lbs"),
  5530. name: "Side",
  5531. image: {
  5532. source: "./media/characters/kieran/side.svg",
  5533. extra: 875 / 777,
  5534. bottom: 84.6 / 959
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(5.5, "feet"),
  5542. default: true
  5543. },
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5548. {
  5549. side: {
  5550. height: math.unit(2, "meters"),
  5551. weight: math.unit(70, "kg"),
  5552. name: "Side",
  5553. image: {
  5554. source: "./media/characters/sanya/side.svg",
  5555. bottom: 0.02,
  5556. extra: 1.02
  5557. }
  5558. },
  5559. },
  5560. [
  5561. {
  5562. name: "Small",
  5563. height: math.unit(2, "meters")
  5564. },
  5565. {
  5566. name: "Normal",
  5567. height: math.unit(3, "meters")
  5568. },
  5569. {
  5570. name: "Macro",
  5571. height: math.unit(16, "meters"),
  5572. default: true
  5573. },
  5574. ]
  5575. ))
  5576. characterMakers.push(() => makeCharacter(
  5577. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5578. {
  5579. front: {
  5580. height: math.unit(2, "meters"),
  5581. weight: math.unit(120, "kg"),
  5582. name: "Front",
  5583. image: {
  5584. source: "./media/characters/miranda/front.svg",
  5585. extra: 195 / 185,
  5586. bottom: 10.9 / 206.5
  5587. }
  5588. },
  5589. back: {
  5590. height: math.unit(2, "meters"),
  5591. weight: math.unit(120, "kg"),
  5592. name: "Back",
  5593. image: {
  5594. source: "./media/characters/miranda/back.svg",
  5595. extra: 201 / 193,
  5596. bottom: 2.3 / 203.7
  5597. }
  5598. },
  5599. },
  5600. [
  5601. {
  5602. name: "Normal",
  5603. height: math.unit(10, "feet"),
  5604. default: true
  5605. }
  5606. ]
  5607. ))
  5608. characterMakers.push(() => makeCharacter(
  5609. { name: "James", species: ["deer"], tags: ["anthro"] },
  5610. {
  5611. side: {
  5612. height: math.unit(2, "meters"),
  5613. weight: math.unit(100, "kg"),
  5614. name: "Front",
  5615. image: {
  5616. source: "./media/characters/james/front.svg",
  5617. extra: 10 / 8.5
  5618. }
  5619. },
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(8.5, "feet"),
  5625. default: true
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5631. {
  5632. side: {
  5633. height: math.unit(9.5, "feet"),
  5634. weight: math.unit(2500, "lbs"),
  5635. name: "Side",
  5636. image: {
  5637. source: "./media/characters/heather/side.svg"
  5638. }
  5639. },
  5640. },
  5641. [
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(9.5, "feet"),
  5645. default: true
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5651. {
  5652. side: {
  5653. height: math.unit(6.5, "feet"),
  5654. weight: math.unit(400, "lbs"),
  5655. name: "Side",
  5656. image: {
  5657. source: "./media/characters/lukas/side.svg",
  5658. extra: 7.25 / 6.5
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(6.5, "feet"),
  5666. default: true
  5667. }
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5672. {
  5673. side: {
  5674. height: math.unit(5, "feet"),
  5675. weight: math.unit(3000, "lbs"),
  5676. name: "Side",
  5677. image: {
  5678. source: "./media/characters/louise/side.svg"
  5679. }
  5680. },
  5681. },
  5682. [
  5683. {
  5684. name: "Normal",
  5685. height: math.unit(5, "feet"),
  5686. default: true
  5687. }
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5692. {
  5693. side: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(150, "lbs"),
  5696. name: "Side",
  5697. image: {
  5698. source: "./media/characters/ramona/side.svg",
  5699. extra: 871/854,
  5700. bottom: 41/912
  5701. }
  5702. },
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(6 + 4/12, "feet")
  5708. },
  5709. {
  5710. name: "Minimacro",
  5711. height: math.unit(5.3, "meters"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "Macro",
  5716. height: math.unit(20, "stories")
  5717. },
  5718. {
  5719. name: "Macro+",
  5720. height: math.unit(50, "stories")
  5721. },
  5722. ]
  5723. ))
  5724. characterMakers.push(() => makeCharacter(
  5725. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5726. {
  5727. standing: {
  5728. height: math.unit(5.75, "feet"),
  5729. weight: math.unit(160, "lbs"),
  5730. name: "Standing",
  5731. image: {
  5732. source: "./media/characters/deerpuff/standing.svg",
  5733. extra: 682 / 624
  5734. }
  5735. },
  5736. sitting: {
  5737. height: math.unit(5.75 / 1.79, "feet"),
  5738. weight: math.unit(160, "lbs"),
  5739. name: "Sitting",
  5740. image: {
  5741. source: "./media/characters/deerpuff/sitting.svg",
  5742. bottom: 44 / 400,
  5743. extra: 1
  5744. }
  5745. },
  5746. taurLaying: {
  5747. height: math.unit(6, "feet"),
  5748. weight: math.unit(400, "lbs"),
  5749. name: "Taur (Laying)",
  5750. image: {
  5751. source: "./media/characters/deerpuff/taur-laying.svg"
  5752. }
  5753. },
  5754. },
  5755. [
  5756. {
  5757. name: "Puffball",
  5758. height: math.unit(6, "inches")
  5759. },
  5760. {
  5761. name: "Normalpuff",
  5762. height: math.unit(5.75, "feet")
  5763. },
  5764. {
  5765. name: "Macropuff",
  5766. height: math.unit(1500, "feet"),
  5767. default: true
  5768. },
  5769. {
  5770. name: "Megapuff",
  5771. height: math.unit(500, "miles")
  5772. },
  5773. {
  5774. name: "Gigapuff",
  5775. height: math.unit(250000, "miles")
  5776. },
  5777. {
  5778. name: "Omegapuff",
  5779. height: math.unit(1000, "lightyears")
  5780. },
  5781. ]
  5782. ))
  5783. characterMakers.push(() => makeCharacter(
  5784. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5785. {
  5786. stomping: {
  5787. height: math.unit(6, "feet"),
  5788. weight: math.unit(170, "lbs"),
  5789. name: "Stomping",
  5790. image: {
  5791. source: "./media/characters/vivian/stomping.svg"
  5792. }
  5793. },
  5794. sitting: {
  5795. height: math.unit(6 / 1.75, "feet"),
  5796. weight: math.unit(170, "lbs"),
  5797. name: "Sitting",
  5798. image: {
  5799. source: "./media/characters/vivian/sitting.svg",
  5800. bottom: 1 / 6.4,
  5801. extra: 1,
  5802. }
  5803. },
  5804. },
  5805. [
  5806. {
  5807. name: "Normal",
  5808. height: math.unit(7, "feet"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Macro",
  5813. height: math.unit(10, "stories")
  5814. },
  5815. {
  5816. name: "Macro+",
  5817. height: math.unit(30, "stories")
  5818. },
  5819. {
  5820. name: "Megamacro",
  5821. height: math.unit(10, "miles")
  5822. },
  5823. {
  5824. name: "Megamacro+",
  5825. height: math.unit(2750000, "meters")
  5826. },
  5827. ]
  5828. ))
  5829. characterMakers.push(() => makeCharacter(
  5830. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5831. {
  5832. front: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(160, "lbs"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/prince/front.svg",
  5838. extra: 3400 / 3000
  5839. }
  5840. },
  5841. jumping: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(160, "lbs"),
  5844. name: "Jumping",
  5845. image: {
  5846. source: "./media/characters/prince/jump.svg",
  5847. extra: 2555 / 2134
  5848. }
  5849. },
  5850. },
  5851. [
  5852. {
  5853. name: "Normal",
  5854. height: math.unit(7.75, "feet"),
  5855. default: true
  5856. },
  5857. {
  5858. name: "Not cute",
  5859. height: math.unit(17, "feet")
  5860. },
  5861. {
  5862. name: "I said NOT",
  5863. height: math.unit(91, "feet")
  5864. },
  5865. {
  5866. name: "Please stop",
  5867. height: math.unit(560, "feet")
  5868. },
  5869. {
  5870. name: "What have you done",
  5871. height: math.unit(2200, "feet")
  5872. },
  5873. {
  5874. name: "Deer God",
  5875. height: math.unit(3.6, "miles")
  5876. },
  5877. ]
  5878. ))
  5879. characterMakers.push(() => makeCharacter(
  5880. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5881. {
  5882. standing: {
  5883. height: math.unit(6, "feet"),
  5884. weight: math.unit(300, "lbs"),
  5885. name: "Standing",
  5886. image: {
  5887. source: "./media/characters/psymon/standing.svg",
  5888. extra: 1888 / 1810,
  5889. bottom: 0.05
  5890. }
  5891. },
  5892. slithering: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(300, "lbs"),
  5895. name: "Slithering",
  5896. image: {
  5897. source: "./media/characters/psymon/slithering.svg",
  5898. extra: 1330 / 1224
  5899. }
  5900. },
  5901. slitheringAlt: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(300, "lbs"),
  5904. name: "Slithering (Alt)",
  5905. image: {
  5906. source: "./media/characters/psymon/slithering-alt.svg",
  5907. extra: 1330 / 1224
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(11.25, "feet"),
  5915. default: true
  5916. },
  5917. {
  5918. name: "Large",
  5919. height: math.unit(27, "feet")
  5920. },
  5921. {
  5922. name: "Giant",
  5923. height: math.unit(87, "feet")
  5924. },
  5925. {
  5926. name: "Macro",
  5927. height: math.unit(365, "feet")
  5928. },
  5929. {
  5930. name: "Megamacro",
  5931. height: math.unit(3, "miles")
  5932. },
  5933. {
  5934. name: "World Serpent",
  5935. height: math.unit(8000, "miles")
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(180, "lbs"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/daimos/front.svg",
  5948. extra: 4160 / 3897,
  5949. bottom: 0.021
  5950. }
  5951. }
  5952. },
  5953. [
  5954. {
  5955. name: "Normal",
  5956. height: math.unit(8, "feet"),
  5957. default: true
  5958. },
  5959. {
  5960. name: "Big Dog",
  5961. height: math.unit(22, "feet")
  5962. },
  5963. {
  5964. name: "Macro",
  5965. height: math.unit(127, "feet")
  5966. },
  5967. {
  5968. name: "Megamacro",
  5969. height: math.unit(3600, "feet")
  5970. },
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5975. {
  5976. side: {
  5977. height: math.unit(6, "feet"),
  5978. weight: math.unit(180, "lbs"),
  5979. name: "Side",
  5980. image: {
  5981. source: "./media/characters/blake/side.svg",
  5982. extra: 1212 / 1120,
  5983. bottom: 0.05
  5984. }
  5985. },
  5986. crouched: {
  5987. height: math.unit(6 * 0.57, "feet"),
  5988. weight: math.unit(180, "lbs"),
  5989. name: "Crouched",
  5990. image: {
  5991. source: "./media/characters/blake/crouched.svg",
  5992. extra: 840 / 587,
  5993. bottom: 0.04
  5994. }
  5995. },
  5996. bent: {
  5997. height: math.unit(6 * 0.75, "feet"),
  5998. weight: math.unit(180, "lbs"),
  5999. name: "Bent",
  6000. image: {
  6001. source: "./media/characters/blake/bent.svg",
  6002. extra: 592 / 544,
  6003. bottom: 0.035
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(8 + 1 / 6, "feet"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Big Backside",
  6015. height: math.unit(37, "feet")
  6016. },
  6017. {
  6018. name: "Subway Shredder",
  6019. height: math.unit(72, "feet")
  6020. },
  6021. {
  6022. name: "City Carver",
  6023. height: math.unit(1675, "feet")
  6024. },
  6025. {
  6026. name: "Tectonic Tweaker",
  6027. height: math.unit(2300, "miles")
  6028. },
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6033. {
  6034. front: {
  6035. height: math.unit(6, "feet"),
  6036. weight: math.unit(180, "lbs"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/guisetto/front.svg",
  6040. extra: 856 / 817,
  6041. bottom: 0.06
  6042. }
  6043. },
  6044. airborne: {
  6045. height: math.unit(6, "feet"),
  6046. weight: math.unit(180, "lbs"),
  6047. name: "Airborne",
  6048. image: {
  6049. source: "./media/characters/guisetto/airborne.svg",
  6050. extra: 584 / 525
  6051. }
  6052. },
  6053. },
  6054. [
  6055. {
  6056. name: "Normal",
  6057. height: math.unit(10 + 11 / 12, "feet"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Large",
  6062. height: math.unit(35, "feet")
  6063. },
  6064. {
  6065. name: "Macro",
  6066. height: math.unit(475, "feet")
  6067. },
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6072. {
  6073. front: {
  6074. height: math.unit(6, "feet"),
  6075. weight: math.unit(180, "lbs"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/luxor/front.svg",
  6079. extra: 2940 / 2152
  6080. }
  6081. },
  6082. back: {
  6083. height: math.unit(6, "feet"),
  6084. weight: math.unit(180, "lbs"),
  6085. name: "Back",
  6086. image: {
  6087. source: "./media/characters/luxor/back.svg",
  6088. extra: 1083 / 960
  6089. }
  6090. },
  6091. },
  6092. [
  6093. {
  6094. name: "Normal",
  6095. height: math.unit(5 + 5 / 6, "feet"),
  6096. default: true
  6097. },
  6098. {
  6099. name: "Lamp",
  6100. height: math.unit(50, "feet")
  6101. },
  6102. {
  6103. name: "Lämp",
  6104. height: math.unit(300, "feet")
  6105. },
  6106. {
  6107. name: "The sun is a lamp",
  6108. height: math.unit(250000, "miles")
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6114. {
  6115. front: {
  6116. height: math.unit(6, "feet"),
  6117. weight: math.unit(50, "lbs"),
  6118. name: "Front",
  6119. image: {
  6120. source: "./media/characters/huoyan/front.svg"
  6121. }
  6122. },
  6123. side: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(180, "lbs"),
  6126. name: "Side",
  6127. image: {
  6128. source: "./media/characters/huoyan/side.svg"
  6129. }
  6130. },
  6131. },
  6132. [
  6133. {
  6134. name: "Chef",
  6135. height: math.unit(9, "feet")
  6136. },
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(65, "feet"),
  6140. default: true
  6141. },
  6142. {
  6143. name: "Macro",
  6144. height: math.unit(780, "feet")
  6145. },
  6146. {
  6147. name: "Flaming Mountain",
  6148. height: math.unit(4.8, "miles")
  6149. },
  6150. {
  6151. name: "Celestial",
  6152. height: math.unit(765000, "miles")
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(5 + 3 / 4, "feet"),
  6161. weight: math.unit(120, "lbs"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/tails/front.svg"
  6165. }
  6166. }
  6167. },
  6168. [
  6169. {
  6170. name: "Normal",
  6171. height: math.unit(5 + 3 / 4, "feet"),
  6172. default: true
  6173. }
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6178. {
  6179. front: {
  6180. height: math.unit(4, "feet"),
  6181. weight: math.unit(50, "lbs"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/rainy/front.svg"
  6185. }
  6186. }
  6187. },
  6188. [
  6189. {
  6190. name: "Macro",
  6191. height: math.unit(800, "feet"),
  6192. default: true
  6193. }
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6198. {
  6199. front: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(150, "lbs"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/rainier/front.svg"
  6205. }
  6206. }
  6207. },
  6208. [
  6209. {
  6210. name: "Micro",
  6211. height: math.unit(2, "mm"),
  6212. default: true
  6213. }
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6218. {
  6219. front: {
  6220. height: math.unit(8 + 4/12, "feet"),
  6221. weight: math.unit(450, "kilograms"),
  6222. volume: math.unit(5, "cups"),
  6223. name: "Front",
  6224. image: {
  6225. source: "./media/characters/andy-renard/front.svg",
  6226. extra: 1839/1726,
  6227. bottom: 134/1973
  6228. }
  6229. },
  6230. back: {
  6231. height: math.unit(8 + 4/12, "feet"),
  6232. weight: math.unit(450, "kilograms"),
  6233. volume: math.unit(5, "cups"),
  6234. name: "Back",
  6235. image: {
  6236. source: "./media/characters/andy-renard/back.svg",
  6237. extra: 1838/1710,
  6238. bottom: 105/1943
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Tall",
  6245. height: math.unit(8 + 4/12, "feet")
  6246. },
  6247. {
  6248. name: "Mini Macro",
  6249. height: math.unit(15, "feet"),
  6250. default: true
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(100, "feet")
  6255. },
  6256. {
  6257. name: "Mega Macro",
  6258. height: math.unit(1000, "feet")
  6259. },
  6260. {
  6261. name: "Giga Macro",
  6262. height: math.unit(10, "miles")
  6263. },
  6264. {
  6265. name: "God Macro",
  6266. height: math.unit(1, "multiverse")
  6267. },
  6268. ]
  6269. ))
  6270. characterMakers.push(() => makeCharacter(
  6271. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6272. {
  6273. front: {
  6274. height: math.unit(6, "feet"),
  6275. weight: math.unit(210, "lbs"),
  6276. name: "Front",
  6277. image: {
  6278. source: "./media/characters/cimmaron/front-sfw.svg",
  6279. extra: 701 / 676,
  6280. bottom: 0.046
  6281. }
  6282. },
  6283. back: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(210, "lbs"),
  6286. name: "Back",
  6287. image: {
  6288. source: "./media/characters/cimmaron/back-sfw.svg",
  6289. extra: 701 / 676,
  6290. bottom: 0.046
  6291. }
  6292. },
  6293. frontNsfw: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(210, "lbs"),
  6296. name: "Front (NSFW)",
  6297. image: {
  6298. source: "./media/characters/cimmaron/front-nsfw.svg",
  6299. extra: 701 / 676,
  6300. bottom: 0.046
  6301. }
  6302. },
  6303. backNsfw: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(210, "lbs"),
  6306. name: "Back (NSFW)",
  6307. image: {
  6308. source: "./media/characters/cimmaron/back-nsfw.svg",
  6309. extra: 701 / 676,
  6310. bottom: 0.046
  6311. }
  6312. },
  6313. dick: {
  6314. height: math.unit(1.714, "feet"),
  6315. name: "Dick",
  6316. image: {
  6317. source: "./media/characters/cimmaron/dick.svg"
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(6, "feet"),
  6325. default: true
  6326. },
  6327. {
  6328. name: "Macro Mayor",
  6329. height: math.unit(350, "meters")
  6330. },
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(6, "feet"),
  6338. weight: math.unit(200, "lbs"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/akari/front.svg",
  6342. extra: 962 / 901,
  6343. bottom: 0.04
  6344. }
  6345. }
  6346. },
  6347. [
  6348. {
  6349. name: "Micro",
  6350. height: math.unit(5, "inches"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Normal",
  6355. height: math.unit(7, "feet")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6361. {
  6362. front: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(140, "lbs"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/cynosura/front.svg",
  6368. extra: 896 / 847
  6369. }
  6370. },
  6371. back: {
  6372. height: math.unit(6, "feet"),
  6373. weight: math.unit(140, "lbs"),
  6374. name: "Back",
  6375. image: {
  6376. source: "./media/characters/cynosura/back.svg",
  6377. extra: 1365 / 1250
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Micro",
  6384. height: math.unit(4, "inches")
  6385. },
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(5.75, "feet"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Tall",
  6393. height: math.unit(10, "feet")
  6394. },
  6395. {
  6396. name: "Big",
  6397. height: math.unit(20, "feet")
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(50, "feet")
  6402. },
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6407. {
  6408. front: {
  6409. height: math.unit(13 + 2/12, "feet"),
  6410. weight: math.unit(800, "kg"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/gin/front.svg",
  6414. extra: 1312/1191,
  6415. bottom: 45/1357
  6416. }
  6417. },
  6418. mouth: {
  6419. height: math.unit(2.39 * 1.8, "feet"),
  6420. name: "Mouth",
  6421. image: {
  6422. source: "./media/characters/gin/mouth.svg"
  6423. }
  6424. },
  6425. hand: {
  6426. height: math.unit(1.57 * 2.19, "feet"),
  6427. name: "Hand",
  6428. image: {
  6429. source: "./media/characters/gin/hand.svg"
  6430. }
  6431. },
  6432. foot: {
  6433. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6434. name: "Foot",
  6435. image: {
  6436. source: "./media/characters/gin/foot.svg"
  6437. }
  6438. },
  6439. sole: {
  6440. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6441. name: "Sole",
  6442. image: {
  6443. source: "./media/characters/gin/sole.svg"
  6444. }
  6445. },
  6446. },
  6447. [
  6448. {
  6449. name: "Very Small",
  6450. height: math.unit(13 + 2 / 12, "feet")
  6451. },
  6452. {
  6453. name: "Micro",
  6454. height: math.unit(600, "miles")
  6455. },
  6456. {
  6457. name: "Regular",
  6458. height: math.unit(20, "earths"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(2.2, "solarradii")
  6464. },
  6465. {
  6466. name: "Teramacro",
  6467. height: math.unit(1.2, "galaxies")
  6468. },
  6469. {
  6470. name: "Omegamacro",
  6471. height: math.unit(200, "universes")
  6472. },
  6473. ]
  6474. ))
  6475. characterMakers.push(() => makeCharacter(
  6476. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6477. {
  6478. front: {
  6479. height: math.unit(6 + 1 / 6, "feet"),
  6480. weight: math.unit(178, "lbs"),
  6481. name: "Front",
  6482. image: {
  6483. source: "./media/characters/guy/front.svg"
  6484. }
  6485. }
  6486. },
  6487. [
  6488. {
  6489. name: "Normal",
  6490. height: math.unit(6 + 1 / 6, "feet"),
  6491. default: true
  6492. },
  6493. {
  6494. name: "Large",
  6495. height: math.unit(25 + 7 / 12, "feet")
  6496. },
  6497. {
  6498. name: "Macro",
  6499. height: math.unit(60 + 9 / 12, "feet")
  6500. },
  6501. {
  6502. name: "Macro+",
  6503. height: math.unit(246, "feet")
  6504. },
  6505. {
  6506. name: "Macro++",
  6507. height: math.unit(878, "feet")
  6508. }
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6513. {
  6514. front: {
  6515. height: math.unit(9, "feet"),
  6516. weight: math.unit(800, "lbs"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/tiberius/front.svg",
  6520. extra: 2295 / 2071
  6521. }
  6522. },
  6523. back: {
  6524. height: math.unit(9, "feet"),
  6525. weight: math.unit(800, "lbs"),
  6526. name: "Back",
  6527. image: {
  6528. source: "./media/characters/tiberius/back.svg",
  6529. extra: 2373 / 2160
  6530. }
  6531. },
  6532. },
  6533. [
  6534. {
  6535. name: "Normal",
  6536. height: math.unit(9, "feet"),
  6537. default: true
  6538. }
  6539. ]
  6540. ))
  6541. characterMakers.push(() => makeCharacter(
  6542. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6543. {
  6544. front: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(600, "lbs"),
  6547. name: "Front",
  6548. image: {
  6549. source: "./media/characters/surgo/front.svg",
  6550. extra: 3591 / 2227
  6551. }
  6552. },
  6553. back: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(600, "lbs"),
  6556. name: "Back",
  6557. image: {
  6558. source: "./media/characters/surgo/back.svg",
  6559. extra: 3557 / 2228
  6560. }
  6561. },
  6562. laying: {
  6563. height: math.unit(6 * 0.85, "feet"),
  6564. weight: math.unit(600, "lbs"),
  6565. name: "Laying",
  6566. image: {
  6567. source: "./media/characters/surgo/laying.svg"
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(6, "feet"),
  6575. default: true
  6576. }
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6581. {
  6582. side: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(150, "lbs"),
  6585. name: "Side",
  6586. image: {
  6587. source: "./media/characters/cibus/side.svg",
  6588. extra: 800 / 400
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(6, "feet"),
  6596. default: true
  6597. }
  6598. ]
  6599. ))
  6600. characterMakers.push(() => makeCharacter(
  6601. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6602. {
  6603. front: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(240, "lbs"),
  6606. name: "Front",
  6607. image: {
  6608. source: "./media/characters/nibbles/front.svg"
  6609. }
  6610. },
  6611. side: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(240, "lbs"),
  6614. name: "Side",
  6615. image: {
  6616. source: "./media/characters/nibbles/side.svg"
  6617. }
  6618. },
  6619. },
  6620. [
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(9, "feet"),
  6624. default: true
  6625. }
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6630. {
  6631. side: {
  6632. height: math.unit(5 + 1 / 6, "feet"),
  6633. weight: math.unit(130, "lbs"),
  6634. name: "Side",
  6635. image: {
  6636. source: "./media/characters/rikky/side.svg",
  6637. extra: 851 / 801
  6638. }
  6639. },
  6640. },
  6641. [
  6642. {
  6643. name: "Normal",
  6644. height: math.unit(5 + 1 / 6, "feet")
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(152, "feet"),
  6649. default: true
  6650. },
  6651. {
  6652. name: "Megamacro",
  6653. height: math.unit(7, "miles")
  6654. }
  6655. ]
  6656. ))
  6657. characterMakers.push(() => makeCharacter(
  6658. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6659. {
  6660. side: {
  6661. height: math.unit(370, "cm"),
  6662. weight: math.unit(350, "lbs"),
  6663. name: "Side",
  6664. image: {
  6665. source: "./media/characters/malfressa/side.svg"
  6666. }
  6667. },
  6668. walking: {
  6669. height: math.unit(370, "cm"),
  6670. weight: math.unit(350, "lbs"),
  6671. name: "Walking",
  6672. image: {
  6673. source: "./media/characters/malfressa/walking.svg"
  6674. }
  6675. },
  6676. feral: {
  6677. height: math.unit(2500, "cm"),
  6678. weight: math.unit(100000, "lbs"),
  6679. name: "Feral",
  6680. image: {
  6681. source: "./media/characters/malfressa/feral.svg",
  6682. extra: 2108 / 837,
  6683. bottom: 0.02
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(370, "cm")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(300, "meters"),
  6695. default: true
  6696. }
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(60, "kg"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/jaro/front.svg",
  6708. extra: 845/817,
  6709. bottom: 45/890
  6710. }
  6711. },
  6712. back: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(60, "kg"),
  6715. name: "Back",
  6716. image: {
  6717. source: "./media/characters/jaro/back.svg",
  6718. extra: 847/817,
  6719. bottom: 34/881
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Micro",
  6726. height: math.unit(7, "inches")
  6727. },
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(5.5, "feet"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "Minimacro",
  6735. height: math.unit(20, "feet")
  6736. },
  6737. {
  6738. name: "Macro",
  6739. height: math.unit(200, "meters")
  6740. }
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(6, "feet"),
  6748. weight: math.unit(195, "lb"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/rogue/front.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(90, "feet"),
  6759. default: true
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6765. {
  6766. standing: {
  6767. height: math.unit(5 + 8 / 12, "feet"),
  6768. weight: math.unit(140, "lb"),
  6769. name: "Standing",
  6770. image: {
  6771. source: "./media/characters/piper/standing.svg",
  6772. extra: 1440/1284,
  6773. bottom: 66/1506
  6774. }
  6775. },
  6776. running: {
  6777. height: math.unit(5 + 8 / 12, "feet"),
  6778. weight: math.unit(140, "lb"),
  6779. name: "Running",
  6780. image: {
  6781. source: "./media/characters/piper/running.svg",
  6782. extra: 3948/3655,
  6783. bottom: 0/3948
  6784. }
  6785. },
  6786. sole: {
  6787. height: math.unit(0.81, "feet"),
  6788. weight: math.unit(2, "kg"),
  6789. name: "Sole",
  6790. image: {
  6791. source: "./media/characters/piper/sole.svg"
  6792. }
  6793. },
  6794. nipple: {
  6795. height: math.unit(0.25, "feet"),
  6796. weight: math.unit(1.5, "lb"),
  6797. name: "Nipple",
  6798. image: {
  6799. source: "./media/characters/piper/nipple.svg"
  6800. }
  6801. },
  6802. head: {
  6803. height: math.unit(1.1, "feet"),
  6804. name: "Head",
  6805. image: {
  6806. source: "./media/characters/piper/head.svg"
  6807. }
  6808. },
  6809. },
  6810. [
  6811. {
  6812. name: "Micro",
  6813. height: math.unit(2, "inches")
  6814. },
  6815. {
  6816. name: "Normal",
  6817. height: math.unit(5 + 8 / 12, "feet")
  6818. },
  6819. {
  6820. name: "Macro",
  6821. height: math.unit(250, "feet"),
  6822. default: true
  6823. },
  6824. {
  6825. name: "Megamacro",
  6826. height: math.unit(7, "miles")
  6827. },
  6828. ]
  6829. ))
  6830. characterMakers.push(() => makeCharacter(
  6831. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6832. {
  6833. front: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(220, "lb"),
  6836. name: "Front",
  6837. image: {
  6838. source: "./media/characters/gemini/front.svg"
  6839. }
  6840. },
  6841. back: {
  6842. height: math.unit(6, "feet"),
  6843. weight: math.unit(220, "lb"),
  6844. name: "Back",
  6845. image: {
  6846. source: "./media/characters/gemini/back.svg"
  6847. }
  6848. },
  6849. kneeling: {
  6850. height: math.unit(6 / 1.5, "feet"),
  6851. weight: math.unit(220, "lb"),
  6852. name: "Kneeling",
  6853. image: {
  6854. source: "./media/characters/gemini/kneeling.svg",
  6855. bottom: 0.02
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(300, "meters"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Megamacro",
  6867. height: math.unit(6900, "meters")
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6873. {
  6874. anthro: {
  6875. height: math.unit(2.35, "meters"),
  6876. weight: math.unit(73, "kg"),
  6877. name: "Anthro",
  6878. image: {
  6879. source: "./media/characters/alicia/anthro.svg",
  6880. extra: 2571 / 2385,
  6881. bottom: 75 / 2648
  6882. }
  6883. },
  6884. paw: {
  6885. height: math.unit(1.32, "feet"),
  6886. name: "Paw",
  6887. image: {
  6888. source: "./media/characters/alicia/paw.svg"
  6889. }
  6890. },
  6891. feral: {
  6892. height: math.unit(1.69, "meters"),
  6893. weight: math.unit(73, "kg"),
  6894. name: "Feral",
  6895. image: {
  6896. source: "./media/characters/alicia/feral.svg",
  6897. extra: 2123 / 1715,
  6898. bottom: 222 / 2349
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "Normal",
  6905. height: math.unit(2.35, "meters")
  6906. },
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(60, "meters"),
  6910. default: true
  6911. },
  6912. {
  6913. name: "Megamacro",
  6914. height: math.unit(10000, "kilometers")
  6915. },
  6916. ]
  6917. ))
  6918. characterMakers.push(() => makeCharacter(
  6919. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6920. {
  6921. front: {
  6922. height: math.unit(7, "feet"),
  6923. weight: math.unit(250, "lbs"),
  6924. name: "Front",
  6925. image: {
  6926. source: "./media/characters/archy/front.svg"
  6927. }
  6928. }
  6929. },
  6930. [
  6931. {
  6932. name: "Micro",
  6933. height: math.unit(1, "inch")
  6934. },
  6935. {
  6936. name: "Shorty",
  6937. height: math.unit(5, "feet")
  6938. },
  6939. {
  6940. name: "Normal",
  6941. height: math.unit(7, "feet")
  6942. },
  6943. {
  6944. name: "Macro",
  6945. height: math.unit(600, "meters"),
  6946. default: true
  6947. },
  6948. {
  6949. name: "Megamacro",
  6950. height: math.unit(1, "mile")
  6951. },
  6952. ]
  6953. ))
  6954. characterMakers.push(() => makeCharacter(
  6955. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6956. {
  6957. front: {
  6958. height: math.unit(1.65, "meters"),
  6959. weight: math.unit(74, "kg"),
  6960. name: "Front",
  6961. image: {
  6962. source: "./media/characters/berri/front.svg",
  6963. extra: 857 / 837,
  6964. bottom: 18 / 877
  6965. }
  6966. },
  6967. bum: {
  6968. height: math.unit(1.46, "feet"),
  6969. name: "Bum",
  6970. image: {
  6971. source: "./media/characters/berri/bum.svg"
  6972. }
  6973. },
  6974. mouth: {
  6975. height: math.unit(0.44, "feet"),
  6976. name: "Mouth",
  6977. image: {
  6978. source: "./media/characters/berri/mouth.svg"
  6979. }
  6980. },
  6981. paw: {
  6982. height: math.unit(0.826, "feet"),
  6983. name: "Paw",
  6984. image: {
  6985. source: "./media/characters/berri/paw.svg"
  6986. }
  6987. },
  6988. },
  6989. [
  6990. {
  6991. name: "Normal",
  6992. height: math.unit(1.65, "meters")
  6993. },
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(60, "m"),
  6997. default: true
  6998. },
  6999. {
  7000. name: "Megamacro",
  7001. height: math.unit(9.213, "km")
  7002. },
  7003. {
  7004. name: "Planet Eater",
  7005. height: math.unit(489, "megameters")
  7006. },
  7007. {
  7008. name: "Teramacro",
  7009. height: math.unit(2471635000000, "meters")
  7010. },
  7011. {
  7012. name: "Examacro",
  7013. height: math.unit(8.0624e+26, "meters")
  7014. }
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7019. {
  7020. front: {
  7021. height: math.unit(1.72, "meters"),
  7022. weight: math.unit(68, "kg"),
  7023. name: "Front",
  7024. image: {
  7025. source: "./media/characters/lexi/front.svg"
  7026. }
  7027. }
  7028. },
  7029. [
  7030. {
  7031. name: "Very Smol",
  7032. height: math.unit(10, "mm")
  7033. },
  7034. {
  7035. name: "Micro",
  7036. height: math.unit(6.8, "cm"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Normal",
  7041. height: math.unit(1.72, "m")
  7042. }
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7047. {
  7048. front: {
  7049. height: math.unit(1.69, "meters"),
  7050. weight: math.unit(68, "kg"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/martin/front.svg",
  7054. extra: 596 / 581
  7055. }
  7056. }
  7057. },
  7058. [
  7059. {
  7060. name: "Micro",
  7061. height: math.unit(6.85, "cm"),
  7062. default: true
  7063. },
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(1.69, "m")
  7067. }
  7068. ]
  7069. ))
  7070. characterMakers.push(() => makeCharacter(
  7071. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7072. {
  7073. front: {
  7074. height: math.unit(1.69, "meters"),
  7075. weight: math.unit(68, "kg"),
  7076. name: "Front",
  7077. image: {
  7078. source: "./media/characters/juno/front.svg"
  7079. }
  7080. }
  7081. },
  7082. [
  7083. {
  7084. name: "Micro",
  7085. height: math.unit(7, "cm")
  7086. },
  7087. {
  7088. name: "Normal",
  7089. height: math.unit(1.89, "m")
  7090. },
  7091. {
  7092. name: "Macro",
  7093. height: math.unit(353, "meters"),
  7094. default: true
  7095. }
  7096. ]
  7097. ))
  7098. characterMakers.push(() => makeCharacter(
  7099. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7100. {
  7101. front: {
  7102. height: math.unit(1.93, "meters"),
  7103. weight: math.unit(83, "kg"),
  7104. name: "Front",
  7105. image: {
  7106. source: "./media/characters/samantha/front.svg"
  7107. }
  7108. },
  7109. frontClothed: {
  7110. height: math.unit(1.93, "meters"),
  7111. weight: math.unit(83, "kg"),
  7112. name: "Front (Clothed)",
  7113. image: {
  7114. source: "./media/characters/samantha/front-clothed.svg"
  7115. }
  7116. },
  7117. back: {
  7118. height: math.unit(1.93, "meters"),
  7119. weight: math.unit(83, "kg"),
  7120. name: "Back",
  7121. image: {
  7122. source: "./media/characters/samantha/back.svg"
  7123. }
  7124. },
  7125. },
  7126. [
  7127. {
  7128. name: "Normal",
  7129. height: math.unit(1.93, "m")
  7130. },
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(74, "meters"),
  7134. default: true
  7135. },
  7136. {
  7137. name: "Macro+",
  7138. height: math.unit(223, "meters"),
  7139. },
  7140. {
  7141. name: "Megamacro",
  7142. height: math.unit(8381, "meters"),
  7143. },
  7144. {
  7145. name: "Megamacro+",
  7146. height: math.unit(12000, "kilometers")
  7147. },
  7148. ]
  7149. ))
  7150. characterMakers.push(() => makeCharacter(
  7151. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7152. {
  7153. front: {
  7154. height: math.unit(1.92, "meters"),
  7155. weight: math.unit(80, "kg"),
  7156. name: "Front",
  7157. image: {
  7158. source: "./media/characters/dr-clay/front.svg"
  7159. }
  7160. },
  7161. frontClothed: {
  7162. height: math.unit(1.92, "meters"),
  7163. weight: math.unit(80, "kg"),
  7164. name: "Front (Clothed)",
  7165. image: {
  7166. source: "./media/characters/dr-clay/front-clothed.svg"
  7167. }
  7168. }
  7169. },
  7170. [
  7171. {
  7172. name: "Normal",
  7173. height: math.unit(1.92, "m")
  7174. },
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(214, "meters"),
  7178. default: true
  7179. },
  7180. {
  7181. name: "Macro+",
  7182. height: math.unit(12.237, "meters"),
  7183. },
  7184. {
  7185. name: "Megamacro",
  7186. height: math.unit(557, "megameters"),
  7187. },
  7188. {
  7189. name: "Unimaginable",
  7190. height: math.unit(120e9, "lightyears")
  7191. },
  7192. ]
  7193. ))
  7194. characterMakers.push(() => makeCharacter(
  7195. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7196. {
  7197. front: {
  7198. height: math.unit(2, "meters"),
  7199. weight: math.unit(80, "kg"),
  7200. name: "Front",
  7201. image: {
  7202. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7203. }
  7204. }
  7205. },
  7206. [
  7207. {
  7208. name: "Teramacro",
  7209. height: math.unit(500000, "lightyears"),
  7210. default: true
  7211. },
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7216. {
  7217. crux: {
  7218. height: math.unit(2, "meters"),
  7219. weight: math.unit(150, "kg"),
  7220. name: "Crux",
  7221. image: {
  7222. source: "./media/characters/vemus/crux.svg",
  7223. extra: 1074/936,
  7224. bottom: 23/1097
  7225. }
  7226. },
  7227. skunkTanuki: {
  7228. height: math.unit(2, "meters"),
  7229. weight: math.unit(150, "kg"),
  7230. name: "Skunk-Tanuki",
  7231. image: {
  7232. source: "./media/characters/vemus/skunk-tanuki.svg",
  7233. extra: 926/893,
  7234. bottom: 20/946
  7235. }
  7236. },
  7237. },
  7238. [
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(4, "meters"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Big",
  7246. height: math.unit(8, "meters")
  7247. },
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(100, "meters")
  7251. },
  7252. {
  7253. name: "Macro+",
  7254. height: math.unit(1500, "meters")
  7255. },
  7256. {
  7257. name: "Stellar",
  7258. height: math.unit(14e8, "meters")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(2, "meters"),
  7267. weight: math.unit(70, "kg"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/beherit/front.svg",
  7271. extra: 1234/1109,
  7272. bottom: 55/1289
  7273. }
  7274. }
  7275. },
  7276. [
  7277. {
  7278. name: "Normal",
  7279. height: math.unit(6, "feet")
  7280. },
  7281. {
  7282. name: "Lorg",
  7283. height: math.unit(25, "feet"),
  7284. default: true
  7285. },
  7286. {
  7287. name: "Lorger",
  7288. height: math.unit(75, "feet")
  7289. },
  7290. {
  7291. name: "Macro",
  7292. height: math.unit(200, "meters")
  7293. },
  7294. ]
  7295. ))
  7296. characterMakers.push(() => makeCharacter(
  7297. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7298. {
  7299. front: {
  7300. height: math.unit(2, "meters"),
  7301. weight: math.unit(150, "kg"),
  7302. name: "Front",
  7303. image: {
  7304. source: "./media/characters/everett/front.svg",
  7305. extra: 1017/866,
  7306. bottom: 86/1103
  7307. }
  7308. },
  7309. paw: {
  7310. height: math.unit(2 / 3.6, "meters"),
  7311. name: "Paw",
  7312. image: {
  7313. source: "./media/characters/everett/paw.svg"
  7314. }
  7315. },
  7316. },
  7317. [
  7318. {
  7319. name: "Normal",
  7320. height: math.unit(15, "feet"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Lorg",
  7325. height: math.unit(70, "feet"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Lorger",
  7330. height: math.unit(250, "feet")
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(500, "meters")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(2, "meters"),
  7343. weight: math.unit(86, "kg"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/rose/front.svg",
  7347. extra: 1785/1636,
  7348. bottom: 30/1815
  7349. },
  7350. form: "liom",
  7351. default: true
  7352. },
  7353. frontSporty: {
  7354. height: math.unit(2, "meters"),
  7355. weight: math.unit(86, "kg"),
  7356. name: "Front (Sporty)",
  7357. image: {
  7358. source: "./media/characters/rose/front-sporty.svg",
  7359. extra: 350/335,
  7360. bottom: 10/360
  7361. },
  7362. form: "liom"
  7363. },
  7364. frontAlt: {
  7365. height: math.unit(1.6, "meters"),
  7366. weight: math.unit(86, "kg"),
  7367. name: "Front (Alt)",
  7368. image: {
  7369. source: "./media/characters/rose/front-alt.svg",
  7370. extra: 299/283,
  7371. bottom: 3/302
  7372. },
  7373. form: "liom"
  7374. },
  7375. plush: {
  7376. height: math.unit(2, "meters"),
  7377. weight: math.unit(86/3, "kg"),
  7378. name: "Plush",
  7379. image: {
  7380. source: "./media/characters/rose/plush.svg",
  7381. extra: 361/337,
  7382. bottom: 11/372
  7383. },
  7384. form: "plush",
  7385. default: true
  7386. },
  7387. faeStanding: {
  7388. height: math.unit(10, "cm"),
  7389. weight: math.unit(10, "grams"),
  7390. name: "Standing",
  7391. image: {
  7392. source: "./media/characters/rose/fae-standing.svg",
  7393. extra: 1189/1060,
  7394. bottom: 27/1216
  7395. },
  7396. form: "fae",
  7397. default: true
  7398. },
  7399. faeSitting: {
  7400. height: math.unit(5, "cm"),
  7401. weight: math.unit(10, "grams"),
  7402. name: "Sitting",
  7403. image: {
  7404. source: "./media/characters/rose/fae-sitting.svg",
  7405. extra: 737/577,
  7406. bottom: 356/1093
  7407. },
  7408. form: "fae"
  7409. },
  7410. faePaw: {
  7411. height: math.unit(1.35, "cm"),
  7412. name: "Paw",
  7413. image: {
  7414. source: "./media/characters/rose/fae-paw.svg"
  7415. },
  7416. form: "fae"
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "True Micro",
  7422. height: math.unit(9, "cm"),
  7423. form: "liom"
  7424. },
  7425. {
  7426. name: "Micro",
  7427. height: math.unit(16, "cm"),
  7428. form: "liom"
  7429. },
  7430. {
  7431. name: "Normal",
  7432. height: math.unit(1.85, "meters"),
  7433. default: true,
  7434. form: "liom"
  7435. },
  7436. {
  7437. name: "Mini-Macro",
  7438. height: math.unit(5, "meters"),
  7439. form: "liom"
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(15, "meters"),
  7444. form: "liom"
  7445. },
  7446. {
  7447. name: "True Macro",
  7448. height: math.unit(40, "meters"),
  7449. form: "liom"
  7450. },
  7451. {
  7452. name: "City Scale",
  7453. height: math.unit(1, "km"),
  7454. form: "liom"
  7455. },
  7456. {
  7457. name: "Plushie",
  7458. height: math.unit(9, "cm"),
  7459. form: "plush",
  7460. default: true
  7461. },
  7462. {
  7463. name: "Fae",
  7464. height: math.unit(10, "cm"),
  7465. form: "fae",
  7466. default: true
  7467. },
  7468. ],
  7469. {
  7470. "liom": {
  7471. name: "Liom"
  7472. },
  7473. "plush": {
  7474. name: "Plush"
  7475. },
  7476. "fae": {
  7477. name: "Fae Fox",
  7478. default: true
  7479. }
  7480. }
  7481. ))
  7482. characterMakers.push(() => makeCharacter(
  7483. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7484. {
  7485. front: {
  7486. height: math.unit(2, "meters"),
  7487. weight: math.unit(350, "lbs"),
  7488. name: "Front",
  7489. image: {
  7490. source: "./media/characters/regal/front.svg"
  7491. }
  7492. },
  7493. back: {
  7494. height: math.unit(2, "meters"),
  7495. weight: math.unit(350, "lbs"),
  7496. name: "Back",
  7497. image: {
  7498. source: "./media/characters/regal/back.svg"
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Macro",
  7505. height: math.unit(350, "feet"),
  7506. default: true
  7507. }
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(4 + 11 / 12, "feet"),
  7515. weight: math.unit(100, "lbs"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/opal/front.svg"
  7519. }
  7520. },
  7521. frontAlt: {
  7522. height: math.unit(4 + 11 / 12, "feet"),
  7523. weight: math.unit(100, "lbs"),
  7524. name: "Front (Alt)",
  7525. image: {
  7526. source: "./media/characters/opal/front-alt.svg"
  7527. }
  7528. },
  7529. },
  7530. [
  7531. {
  7532. name: "Small",
  7533. height: math.unit(4 + 11 / 12, "feet")
  7534. },
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(20, "feet"),
  7538. default: true
  7539. },
  7540. {
  7541. name: "Macro",
  7542. height: math.unit(120, "feet")
  7543. },
  7544. {
  7545. name: "Megamacro",
  7546. height: math.unit(80, "miles")
  7547. },
  7548. {
  7549. name: "True Size",
  7550. height: math.unit(100000, "lightyears")
  7551. },
  7552. ]
  7553. ))
  7554. characterMakers.push(() => makeCharacter(
  7555. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7556. {
  7557. front: {
  7558. height: math.unit(6, "feet"),
  7559. weight: math.unit(200, "lbs"),
  7560. name: "Front",
  7561. image: {
  7562. source: "./media/characters/vector-wuff/front.svg"
  7563. }
  7564. }
  7565. },
  7566. [
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(2.8, "meters")
  7570. },
  7571. {
  7572. name: "Macro",
  7573. height: math.unit(450, "meters"),
  7574. default: true
  7575. },
  7576. {
  7577. name: "Megamacro",
  7578. height: math.unit(15, "kilometers")
  7579. }
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(6, "feet"),
  7587. weight: math.unit(256, "lbs"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/dannik/front.svg"
  7591. }
  7592. }
  7593. },
  7594. [
  7595. {
  7596. name: "Macro",
  7597. height: math.unit(69.57, "meters"),
  7598. default: true
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7604. {
  7605. front: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(120, "lbs"),
  7608. name: "Front",
  7609. image: {
  7610. source: "./media/characters/azura-saharah/front.svg"
  7611. }
  7612. },
  7613. back: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(120, "lbs"),
  7616. name: "Back",
  7617. image: {
  7618. source: "./media/characters/azura-saharah/back.svg"
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(100, "feet"),
  7626. default: true
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7632. {
  7633. side: {
  7634. height: math.unit(5 + 4 / 12, "feet"),
  7635. weight: math.unit(163, "lbs"),
  7636. name: "Side",
  7637. image: {
  7638. source: "./media/characters/kennedy/side.svg"
  7639. }
  7640. }
  7641. },
  7642. [
  7643. {
  7644. name: "Standard Doggo",
  7645. height: math.unit(5 + 4 / 12, "feet")
  7646. },
  7647. {
  7648. name: "Big Doggo",
  7649. height: math.unit(25 + 3 / 12, "feet"),
  7650. default: true
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(5 + 5/12, "feet"),
  7659. weight: math.unit(100, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/odios-de-lunar/front.svg",
  7663. extra: 1468/1323,
  7664. bottom: 22/1490
  7665. }
  7666. }
  7667. },
  7668. [
  7669. {
  7670. name: "Micro",
  7671. height: math.unit(3, "inches")
  7672. },
  7673. {
  7674. name: "Normal",
  7675. height: math.unit(5.5, "feet"),
  7676. default: true
  7677. },
  7678. {
  7679. name: "Macro",
  7680. height: math.unit(100, "feet")
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7686. {
  7687. back: {
  7688. height: math.unit(6, "feet"),
  7689. weight: math.unit(220, "lbs"),
  7690. name: "Back",
  7691. image: {
  7692. source: "./media/characters/mandake/back.svg"
  7693. }
  7694. }
  7695. },
  7696. [
  7697. {
  7698. name: "Normal",
  7699. height: math.unit(7, "feet"),
  7700. default: true
  7701. },
  7702. {
  7703. name: "Macro",
  7704. height: math.unit(78, "feet")
  7705. },
  7706. {
  7707. name: "Macro+",
  7708. height: math.unit(300, "meters")
  7709. },
  7710. {
  7711. name: "Macro++",
  7712. height: math.unit(2400, "feet")
  7713. },
  7714. {
  7715. name: "Megamacro",
  7716. height: math.unit(5167, "meters")
  7717. },
  7718. {
  7719. name: "Gigamacro",
  7720. height: math.unit(41769, "miles")
  7721. },
  7722. ]
  7723. ))
  7724. characterMakers.push(() => makeCharacter(
  7725. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7726. {
  7727. front: {
  7728. height: math.unit(6, "feet"),
  7729. weight: math.unit(120, "lbs"),
  7730. name: "Front",
  7731. image: {
  7732. source: "./media/characters/yozey/front.svg"
  7733. }
  7734. },
  7735. frontAlt: {
  7736. height: math.unit(6, "feet"),
  7737. weight: math.unit(120, "lbs"),
  7738. name: "Front (Alt)",
  7739. image: {
  7740. source: "./media/characters/yozey/front-alt.svg"
  7741. }
  7742. },
  7743. side: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(120, "lbs"),
  7746. name: "Side",
  7747. image: {
  7748. source: "./media/characters/yozey/side.svg"
  7749. }
  7750. },
  7751. },
  7752. [
  7753. {
  7754. name: "Micro",
  7755. height: math.unit(3, "inches"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Normal",
  7760. height: math.unit(6, "feet")
  7761. }
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(103, "lbs"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/valeska-voss/front.svg"
  7773. }
  7774. }
  7775. },
  7776. [
  7777. {
  7778. name: "Mini-Sized Sub",
  7779. height: math.unit(3.1, "inches")
  7780. },
  7781. {
  7782. name: "Mid-Sized Sub",
  7783. height: math.unit(6.2, "inches")
  7784. },
  7785. {
  7786. name: "Full-Sized Sub",
  7787. height: math.unit(9.3, "inches")
  7788. },
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(5 + 2 / 12, "foot"),
  7792. default: true
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(160, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/gene-zeta/front.svg",
  7805. extra: 3006 / 2826,
  7806. bottom: 182 / 3188
  7807. }
  7808. }
  7809. },
  7810. [
  7811. {
  7812. name: "Micro",
  7813. height: math.unit(6, "inches")
  7814. },
  7815. {
  7816. name: "Normal",
  7817. height: math.unit(5 + 11 / 12, "foot"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Macro",
  7822. height: math.unit(140, "feet")
  7823. },
  7824. {
  7825. name: "Supercharged",
  7826. height: math.unit(2500, "feet")
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(350, "lbs"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/razinox/front.svg",
  7839. extra: 1686 / 1548,
  7840. bottom: 28.2 / 1868
  7841. }
  7842. },
  7843. back: {
  7844. height: math.unit(6, "feet"),
  7845. weight: math.unit(350, "lbs"),
  7846. name: "Back",
  7847. image: {
  7848. source: "./media/characters/razinox/back.svg",
  7849. extra: 1660 / 1590,
  7850. bottom: 15 / 1665
  7851. }
  7852. },
  7853. },
  7854. [
  7855. {
  7856. name: "Normal",
  7857. height: math.unit(10 + 8 / 12, "foot")
  7858. },
  7859. {
  7860. name: "Minimacro",
  7861. height: math.unit(15, "foot")
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(60, "foot"),
  7866. default: true
  7867. },
  7868. {
  7869. name: "Megamacro",
  7870. height: math.unit(5, "miles")
  7871. },
  7872. {
  7873. name: "Gigamacro",
  7874. height: math.unit(6000, "miles")
  7875. },
  7876. ]
  7877. ))
  7878. characterMakers.push(() => makeCharacter(
  7879. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7880. {
  7881. front: {
  7882. height: math.unit(6, "feet"),
  7883. weight: math.unit(150, "lbs"),
  7884. name: "Front",
  7885. image: {
  7886. source: "./media/characters/cobalt/front.svg"
  7887. }
  7888. }
  7889. },
  7890. [
  7891. {
  7892. name: "Normal",
  7893. height: math.unit(8 + 1 / 12, "foot")
  7894. },
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(111, "foot"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Supracosmic",
  7902. height: math.unit(1e42, "feet")
  7903. },
  7904. ]
  7905. ))
  7906. characterMakers.push(() => makeCharacter(
  7907. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7908. {
  7909. front: {
  7910. height: math.unit(5, "inches"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/amanda/front.svg",
  7914. extra: 926/791,
  7915. bottom: 38/964
  7916. }
  7917. },
  7918. back: {
  7919. height: math.unit(5, "inches"),
  7920. name: "Back",
  7921. image: {
  7922. source: "./media/characters/amanda/back.svg",
  7923. extra: 909/805,
  7924. bottom: 43/952
  7925. }
  7926. },
  7927. },
  7928. [
  7929. {
  7930. name: "Micro",
  7931. height: math.unit(5, "inches"),
  7932. default: true
  7933. },
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7938. {
  7939. front: {
  7940. height: math.unit(2.75, "meters"),
  7941. weight: math.unit(1200, "lb"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/teal/front.svg",
  7945. extra: 2463 / 2320,
  7946. bottom: 166 / 2629
  7947. }
  7948. },
  7949. back: {
  7950. height: math.unit(2.75, "meters"),
  7951. weight: math.unit(1200, "lb"),
  7952. name: "Back",
  7953. image: {
  7954. source: "./media/characters/teal/back.svg",
  7955. extra: 2580 / 2489,
  7956. bottom: 151 / 2731
  7957. }
  7958. },
  7959. sitting: {
  7960. height: math.unit(1.9, "meters"),
  7961. weight: math.unit(1200, "lb"),
  7962. name: "Sitting",
  7963. image: {
  7964. source: "./media/characters/teal/sitting.svg",
  7965. extra: 623 / 590,
  7966. bottom: 121 / 744
  7967. }
  7968. },
  7969. standing: {
  7970. height: math.unit(2.75, "meters"),
  7971. weight: math.unit(1200, "lb"),
  7972. name: "Standing",
  7973. image: {
  7974. source: "./media/characters/teal/standing.svg",
  7975. extra: 923 / 893,
  7976. bottom: 60 / 983
  7977. }
  7978. },
  7979. stretching: {
  7980. height: math.unit(3.65, "meters"),
  7981. weight: math.unit(1200, "lb"),
  7982. name: "Stretching",
  7983. image: {
  7984. source: "./media/characters/teal/stretching.svg",
  7985. extra: 1276 / 1244,
  7986. bottom: 0 / 1276
  7987. }
  7988. },
  7989. legged: {
  7990. height: math.unit(1.3, "meters"),
  7991. weight: math.unit(100, "lb"),
  7992. name: "Legged",
  7993. image: {
  7994. source: "./media/characters/teal/legged.svg",
  7995. extra: 462 / 437,
  7996. bottom: 24 / 486
  7997. }
  7998. },
  7999. naga: {
  8000. height: math.unit(5.4, "meters"),
  8001. weight: math.unit(4000, "lb"),
  8002. name: "Naga",
  8003. image: {
  8004. source: "./media/characters/teal/naga.svg",
  8005. extra: 1902 / 1858,
  8006. bottom: 0 / 1902
  8007. }
  8008. },
  8009. hand: {
  8010. height: math.unit(0.52, "meters"),
  8011. name: "Hand",
  8012. image: {
  8013. source: "./media/characters/teal/hand.svg"
  8014. }
  8015. },
  8016. maw: {
  8017. height: math.unit(0.43, "meters"),
  8018. name: "Maw",
  8019. image: {
  8020. source: "./media/characters/teal/maw.svg"
  8021. }
  8022. },
  8023. slit: {
  8024. height: math.unit(0.25, "meters"),
  8025. name: "Slit",
  8026. image: {
  8027. source: "./media/characters/teal/slit.svg"
  8028. }
  8029. },
  8030. },
  8031. [
  8032. {
  8033. name: "Normal",
  8034. height: math.unit(2.75, "meters"),
  8035. default: true
  8036. },
  8037. {
  8038. name: "Macro",
  8039. height: math.unit(300, "feet")
  8040. },
  8041. {
  8042. name: "Macro+",
  8043. height: math.unit(2000, "feet")
  8044. },
  8045. ]
  8046. ))
  8047. characterMakers.push(() => makeCharacter(
  8048. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8049. {
  8050. frontCat: {
  8051. height: math.unit(6, "feet"),
  8052. weight: math.unit(180, "lbs"),
  8053. name: "Front (Cat)",
  8054. image: {
  8055. source: "./media/characters/ravin-amulet/front-cat.svg"
  8056. }
  8057. },
  8058. frontCatAlt: {
  8059. height: math.unit(6, "feet"),
  8060. weight: math.unit(180, "lbs"),
  8061. name: "Front (Alt, Cat)",
  8062. image: {
  8063. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8064. }
  8065. },
  8066. frontWerewolf: {
  8067. height: math.unit(6 * 1.2, "feet"),
  8068. weight: math.unit(225, "lbs"),
  8069. name: "Front (Werewolf)",
  8070. image: {
  8071. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8072. }
  8073. },
  8074. backWerewolf: {
  8075. height: math.unit(6 * 1.2, "feet"),
  8076. weight: math.unit(225, "lbs"),
  8077. name: "Back (Werewolf)",
  8078. image: {
  8079. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8080. }
  8081. },
  8082. },
  8083. [
  8084. {
  8085. name: "Nano",
  8086. height: math.unit(1, "micrometer")
  8087. },
  8088. {
  8089. name: "Micro",
  8090. height: math.unit(1, "inch")
  8091. },
  8092. {
  8093. name: "Normal",
  8094. height: math.unit(6, "feet"),
  8095. default: true
  8096. },
  8097. {
  8098. name: "Macro",
  8099. height: math.unit(60, "feet")
  8100. }
  8101. ]
  8102. ))
  8103. characterMakers.push(() => makeCharacter(
  8104. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8105. {
  8106. front: {
  8107. height: math.unit(6, "feet"),
  8108. weight: math.unit(165, "lbs"),
  8109. name: "Front",
  8110. image: {
  8111. source: "./media/characters/fluoresce/front.svg"
  8112. }
  8113. }
  8114. },
  8115. [
  8116. {
  8117. name: "Micro",
  8118. height: math.unit(6, "cm")
  8119. },
  8120. {
  8121. name: "Normal",
  8122. height: math.unit(5 + 7 / 12, "feet"),
  8123. default: true
  8124. },
  8125. {
  8126. name: "Macro",
  8127. height: math.unit(56, "feet")
  8128. },
  8129. {
  8130. name: "Megamacro",
  8131. height: math.unit(1.9, "miles")
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8137. {
  8138. front: {
  8139. height: math.unit(9 + 6 / 12, "feet"),
  8140. weight: math.unit(523, "lbs"),
  8141. name: "Side",
  8142. image: {
  8143. source: "./media/characters/aurora/side.svg"
  8144. }
  8145. }
  8146. },
  8147. [
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(9 + 6 / 12, "feet")
  8151. },
  8152. {
  8153. name: "Macro",
  8154. height: math.unit(96, "feet"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Macro+",
  8159. height: math.unit(243, "feet")
  8160. },
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8165. {
  8166. front: {
  8167. height: math.unit(194, "cm"),
  8168. weight: math.unit(90, "kg"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/ranek/front.svg",
  8172. extra: 1862/1791,
  8173. bottom: 80/1942
  8174. }
  8175. },
  8176. back: {
  8177. height: math.unit(194, "cm"),
  8178. weight: math.unit(90, "kg"),
  8179. name: "Back",
  8180. image: {
  8181. source: "./media/characters/ranek/back.svg",
  8182. extra: 1853/1787,
  8183. bottom: 74/1927
  8184. }
  8185. },
  8186. feral: {
  8187. height: math.unit(30, "cm"),
  8188. weight: math.unit(1.6, "lbs"),
  8189. name: "Feral",
  8190. image: {
  8191. source: "./media/characters/ranek/feral.svg",
  8192. extra: 990/631,
  8193. bottom: 29/1019
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Normal",
  8200. height: math.unit(194, "cm"),
  8201. default: true
  8202. },
  8203. {
  8204. name: "Macro",
  8205. height: math.unit(100, "meters")
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(5 + 6 / 12, "feet"),
  8214. weight: math.unit(153, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/andrew-cooper/front.svg"
  8218. }
  8219. },
  8220. },
  8221. [
  8222. {
  8223. name: "Nano",
  8224. height: math.unit(1, "mm")
  8225. },
  8226. {
  8227. name: "Micro",
  8228. height: math.unit(2, "inches")
  8229. },
  8230. {
  8231. name: "Normal",
  8232. height: math.unit(5 + 6 / 12, "feet"),
  8233. default: true
  8234. }
  8235. ]
  8236. ))
  8237. characterMakers.push(() => makeCharacter(
  8238. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8239. {
  8240. front: {
  8241. height: math.unit(6, "feet"),
  8242. weight: math.unit(180, "lbs"),
  8243. name: "Front",
  8244. image: {
  8245. source: "./media/characters/akane-sato/front.svg",
  8246. extra: 1219 / 1140
  8247. }
  8248. },
  8249. back: {
  8250. height: math.unit(6, "feet"),
  8251. weight: math.unit(180, "lbs"),
  8252. name: "Back",
  8253. image: {
  8254. source: "./media/characters/akane-sato/back.svg",
  8255. extra: 1219 / 1170
  8256. }
  8257. },
  8258. },
  8259. [
  8260. {
  8261. name: "Normal",
  8262. height: math.unit(2.5, "meters")
  8263. },
  8264. {
  8265. name: "Macro",
  8266. height: math.unit(250, "meters"),
  8267. default: true
  8268. },
  8269. {
  8270. name: "Megamacro",
  8271. height: math.unit(25, "km")
  8272. },
  8273. ]
  8274. ))
  8275. characterMakers.push(() => makeCharacter(
  8276. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8277. {
  8278. front: {
  8279. height: math.unit(6, "feet"),
  8280. weight: math.unit(65, "kg"),
  8281. name: "Front",
  8282. image: {
  8283. source: "./media/characters/rook/front.svg",
  8284. extra: 960 / 950
  8285. }
  8286. }
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(8.8, "feet")
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(88, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(8, "miles")
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(12 + 2 / 12, "feet"),
  8309. weight: math.unit(808, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/prodigy/front.svg"
  8313. }
  8314. }
  8315. },
  8316. [
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(12 + 2 / 12, "feet"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(143, "feet")
  8325. },
  8326. {
  8327. name: "Macro+",
  8328. height: math.unit(400, "feet")
  8329. },
  8330. ]
  8331. ))
  8332. characterMakers.push(() => makeCharacter(
  8333. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8334. {
  8335. front: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(225, "lbs"),
  8338. name: "Front",
  8339. image: {
  8340. source: "./media/characters/daniel/front.svg"
  8341. }
  8342. },
  8343. leaning: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(225, "lbs"),
  8346. name: "Leaning",
  8347. image: {
  8348. source: "./media/characters/daniel/leaning.svg"
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(1000, "feet"),
  8356. default: true
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(6, "feet"),
  8365. weight: math.unit(88, "lbs"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/chiros/front.svg",
  8369. extra: 306 / 226
  8370. }
  8371. },
  8372. side: {
  8373. height: math.unit(6, "feet"),
  8374. weight: math.unit(88, "lbs"),
  8375. name: "Side",
  8376. image: {
  8377. source: "./media/characters/chiros/side.svg",
  8378. extra: 306 / 226
  8379. }
  8380. },
  8381. },
  8382. [
  8383. {
  8384. name: "Normal",
  8385. height: math.unit(6, "cm"),
  8386. default: true
  8387. },
  8388. ]
  8389. ))
  8390. characterMakers.push(() => makeCharacter(
  8391. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8392. {
  8393. front: {
  8394. height: math.unit(6, "feet"),
  8395. weight: math.unit(100, "lbs"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/selka/front.svg",
  8399. extra: 947 / 887
  8400. }
  8401. }
  8402. },
  8403. [
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(5, "cm"),
  8407. default: true
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8413. {
  8414. front: {
  8415. height: math.unit(8 + 3 / 12, "feet"),
  8416. weight: math.unit(424, "lbs"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/verin/front.svg",
  8420. extra: 1845 / 1550
  8421. }
  8422. },
  8423. frontArmored: {
  8424. height: math.unit(8 + 3 / 12, "feet"),
  8425. weight: math.unit(424, "lbs"),
  8426. name: "Front (Armored)",
  8427. image: {
  8428. source: "./media/characters/verin/front-armor.svg",
  8429. extra: 1845 / 1550,
  8430. bottom: 0.01
  8431. }
  8432. },
  8433. back: {
  8434. height: math.unit(8 + 3 / 12, "feet"),
  8435. weight: math.unit(424, "lbs"),
  8436. name: "Back",
  8437. image: {
  8438. source: "./media/characters/verin/back.svg",
  8439. bottom: 0.1,
  8440. extra: 1
  8441. }
  8442. },
  8443. foot: {
  8444. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8445. name: "Foot",
  8446. image: {
  8447. source: "./media/characters/verin/foot.svg"
  8448. }
  8449. },
  8450. },
  8451. [
  8452. {
  8453. name: "Normal",
  8454. height: math.unit(8 + 3 / 12, "feet")
  8455. },
  8456. {
  8457. name: "Minimacro",
  8458. height: math.unit(21, "feet"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(626, "feet")
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(2.718, "meters"),
  8472. weight: math.unit(150, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/sovrim-terraquian/front.svg",
  8476. extra: 1752/1689,
  8477. bottom: 36/1788
  8478. }
  8479. },
  8480. back: {
  8481. height: math.unit(2.718, "meters"),
  8482. weight: math.unit(150, "lbs"),
  8483. name: "Back",
  8484. image: {
  8485. source: "./media/characters/sovrim-terraquian/back.svg",
  8486. extra: 1698/1657,
  8487. bottom: 58/1756
  8488. }
  8489. },
  8490. tongue: {
  8491. height: math.unit(2.865, "feet"),
  8492. name: "Tongue",
  8493. image: {
  8494. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8495. }
  8496. },
  8497. hand: {
  8498. height: math.unit(1.61, "feet"),
  8499. name: "Hand",
  8500. image: {
  8501. source: "./media/characters/sovrim-terraquian/hand.svg"
  8502. }
  8503. },
  8504. foot: {
  8505. height: math.unit(1.05, "feet"),
  8506. name: "Foot",
  8507. image: {
  8508. source: "./media/characters/sovrim-terraquian/foot.svg"
  8509. }
  8510. },
  8511. footAlt: {
  8512. height: math.unit(0.88, "feet"),
  8513. name: "Foot (Alt)",
  8514. image: {
  8515. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8516. }
  8517. },
  8518. },
  8519. [
  8520. {
  8521. name: "Micro",
  8522. height: math.unit(2, "inches")
  8523. },
  8524. {
  8525. name: "Small",
  8526. height: math.unit(1, "meter")
  8527. },
  8528. {
  8529. name: "Normal",
  8530. height: math.unit(Math.E, "meters"),
  8531. default: true
  8532. },
  8533. {
  8534. name: "Macro",
  8535. height: math.unit(20, "meters")
  8536. },
  8537. {
  8538. name: "Macro+",
  8539. height: math.unit(400, "meters")
  8540. },
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8545. {
  8546. front: {
  8547. height: math.unit(7, "feet"),
  8548. weight: math.unit(489, "lbs"),
  8549. name: "Front",
  8550. image: {
  8551. source: "./media/characters/reece-silvermane/front.svg",
  8552. bottom: 0.02,
  8553. extra: 1
  8554. }
  8555. },
  8556. },
  8557. [
  8558. {
  8559. name: "Macro",
  8560. height: math.unit(1.5, "miles"),
  8561. default: true
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(6, "feet"),
  8570. weight: math.unit(78, "kg"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/kane/front.svg",
  8574. extra: 978 / 899
  8575. }
  8576. },
  8577. },
  8578. [
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(2.1, "m"),
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(1, "km"),
  8586. default: true
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(200, "kg"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/tegon/front.svg",
  8599. bottom: 0.01,
  8600. extra: 1
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Micro",
  8607. height: math.unit(1, "inch")
  8608. },
  8609. {
  8610. name: "Normal",
  8611. height: math.unit(6 + 3 / 12, "feet"),
  8612. default: true
  8613. },
  8614. {
  8615. name: "Macro",
  8616. height: math.unit(300, "feet")
  8617. },
  8618. {
  8619. name: "Megamacro",
  8620. height: math.unit(69, "miles")
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8626. {
  8627. side: {
  8628. height: math.unit(6, "feet"),
  8629. weight: math.unit(2304, "lbs"),
  8630. name: "Side",
  8631. image: {
  8632. source: "./media/characters/arcturax/side.svg",
  8633. extra: 790 / 376,
  8634. bottom: 0.01
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Micro",
  8641. height: math.unit(2, "inch")
  8642. },
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(6, "feet")
  8646. },
  8647. {
  8648. name: "Macro",
  8649. height: math.unit(39, "feet"),
  8650. default: true
  8651. },
  8652. {
  8653. name: "Megamacro",
  8654. height: math.unit(7, "miles")
  8655. },
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8660. {
  8661. front: {
  8662. height: math.unit(6, "feet"),
  8663. weight: math.unit(50, "lbs"),
  8664. name: "Front",
  8665. image: {
  8666. source: "./media/characters/sentri/front.svg",
  8667. extra: 1750 / 1570,
  8668. bottom: 0.025
  8669. }
  8670. },
  8671. frontAlt: {
  8672. height: math.unit(6, "feet"),
  8673. weight: math.unit(50, "lbs"),
  8674. name: "Front (Alt)",
  8675. image: {
  8676. source: "./media/characters/sentri/front-alt.svg",
  8677. extra: 1750 / 1570,
  8678. bottom: 0.025
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(15, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Macro",
  8690. height: math.unit(2500, "feet")
  8691. }
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(5 + 8 / 12, "feet"),
  8699. weight: math.unit(130, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/corvin/front.svg",
  8703. extra: 1803 / 1629
  8704. }
  8705. },
  8706. frontShirt: {
  8707. height: math.unit(5 + 8 / 12, "feet"),
  8708. weight: math.unit(130, "lbs"),
  8709. name: "Front (Shirt)",
  8710. image: {
  8711. source: "./media/characters/corvin/front-shirt.svg",
  8712. extra: 1803 / 1629
  8713. }
  8714. },
  8715. frontPoncho: {
  8716. height: math.unit(5 + 8 / 12, "feet"),
  8717. weight: math.unit(130, "lbs"),
  8718. name: "Front (Poncho)",
  8719. image: {
  8720. source: "./media/characters/corvin/front-poncho.svg",
  8721. extra: 1803 / 1629
  8722. }
  8723. },
  8724. side: {
  8725. height: math.unit(5 + 8 / 12, "feet"),
  8726. weight: math.unit(130, "lbs"),
  8727. name: "Side",
  8728. image: {
  8729. source: "./media/characters/corvin/side.svg",
  8730. extra: 1012 / 945
  8731. }
  8732. },
  8733. back: {
  8734. height: math.unit(5 + 8 / 12, "feet"),
  8735. weight: math.unit(130, "lbs"),
  8736. name: "Back",
  8737. image: {
  8738. source: "./media/characters/corvin/back.svg",
  8739. extra: 1803 / 1629
  8740. }
  8741. },
  8742. },
  8743. [
  8744. {
  8745. name: "Micro",
  8746. height: math.unit(3, "inches")
  8747. },
  8748. {
  8749. name: "Normal",
  8750. height: math.unit(5 + 8 / 12, "feet")
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(300, "feet"),
  8755. default: true
  8756. },
  8757. {
  8758. name: "Megamacro",
  8759. height: math.unit(500, "miles")
  8760. }
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8765. {
  8766. front: {
  8767. height: math.unit(6, "feet"),
  8768. weight: math.unit(135, "lbs"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/q/front.svg",
  8772. extra: 854 / 752,
  8773. bottom: 0.005
  8774. }
  8775. },
  8776. back: {
  8777. height: math.unit(6, "feet"),
  8778. weight: math.unit(130, "lbs"),
  8779. name: "Back",
  8780. image: {
  8781. source: "./media/characters/q/back.svg",
  8782. extra: 854 / 752
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Macro",
  8789. height: math.unit(90, "feet"),
  8790. default: true
  8791. },
  8792. {
  8793. name: "Extra Macro",
  8794. height: math.unit(300, "feet"),
  8795. },
  8796. {
  8797. name: "BIG WALF",
  8798. height: math.unit(750, "feet"),
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8804. {
  8805. front: {
  8806. height: math.unit(6, "feet"),
  8807. weight: math.unit(150, "lbs"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/carley/front.svg",
  8811. extra: 3927 / 3540,
  8812. bottom: 29.2 / 735
  8813. }
  8814. }
  8815. },
  8816. [
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(6 + 3 / 12, "feet")
  8820. },
  8821. {
  8822. name: "Macro",
  8823. height: math.unit(185, "feet"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Megamacro",
  8828. height: math.unit(8, "miles"),
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(3, "feet"),
  8837. weight: math.unit(28, "lbs"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/citrine/front.svg"
  8841. }
  8842. }
  8843. },
  8844. [
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(3, "feet"),
  8848. default: true
  8849. }
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8854. {
  8855. front: {
  8856. height: math.unit(14, "feet"),
  8857. weight: math.unit(1450, "kg"),
  8858. preyCapacity: math.unit(15, "people"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/aura-starwind/front.svg",
  8862. extra: 1440/1327,
  8863. bottom: 11/1451
  8864. }
  8865. },
  8866. side: {
  8867. height: math.unit(14, "feet"),
  8868. weight: math.unit(1450, "kg"),
  8869. preyCapacity: math.unit(15, "people"),
  8870. name: "Side",
  8871. image: {
  8872. source: "./media/characters/aura-starwind/side.svg",
  8873. extra: 1654 / 1497
  8874. }
  8875. },
  8876. taur: {
  8877. height: math.unit(18, "feet"),
  8878. weight: math.unit(5500, "kg"),
  8879. preyCapacity: math.unit(50, "people"),
  8880. name: "Taur",
  8881. image: {
  8882. source: "./media/characters/aura-starwind/taur.svg",
  8883. extra: 1760 / 1650
  8884. }
  8885. },
  8886. feral: {
  8887. height: math.unit(46, "feet"),
  8888. weight: math.unit(25000, "kg"),
  8889. preyCapacity: math.unit(120, "people"),
  8890. name: "Feral",
  8891. image: {
  8892. source: "./media/characters/aura-starwind/feral.svg"
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(14, "feet"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(50, "meters")
  8905. },
  8906. {
  8907. name: "Megamacro",
  8908. height: math.unit(5000, "meters")
  8909. },
  8910. {
  8911. name: "Gigamacro",
  8912. height: math.unit(100000, "kilometers")
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(2 + 7 / 12, "feet"),
  8921. weight: math.unit(32, "lbs"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/rivet/front.svg",
  8925. extra: 1716 / 1658,
  8926. bottom: 0.03
  8927. }
  8928. },
  8929. foot: {
  8930. height: math.unit(0.551, "feet"),
  8931. name: "Rivet's Foot",
  8932. image: {
  8933. source: "./media/characters/rivet/foot.svg"
  8934. },
  8935. rename: true
  8936. }
  8937. },
  8938. [
  8939. {
  8940. name: "Micro",
  8941. height: math.unit(1.5, "inches"),
  8942. },
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(2 + 7 / 12, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(85, "feet")
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(2.2, "km")
  8955. }
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(5 + 9 / 12, "feet"),
  8963. weight: math.unit(150, "lbs"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/coffee/front.svg",
  8967. extra: 3666 / 3032,
  8968. bottom: 0.04
  8969. }
  8970. },
  8971. foot: {
  8972. height: math.unit(1.29, "feet"),
  8973. name: "Foot",
  8974. image: {
  8975. source: "./media/characters/coffee/foot.svg"
  8976. }
  8977. },
  8978. },
  8979. [
  8980. {
  8981. name: "Micro",
  8982. height: math.unit(2, "inches"),
  8983. },
  8984. {
  8985. name: "Normal",
  8986. height: math.unit(5 + 9 / 12, "feet"),
  8987. default: true
  8988. },
  8989. {
  8990. name: "Macro",
  8991. height: math.unit(800, "feet")
  8992. },
  8993. {
  8994. name: "Megamacro",
  8995. height: math.unit(25, "miles")
  8996. }
  8997. ]
  8998. ))
  8999. characterMakers.push(() => makeCharacter(
  9000. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9001. {
  9002. front: {
  9003. height: math.unit(6, "feet"),
  9004. weight: math.unit(200, "lbs"),
  9005. name: "Front",
  9006. image: {
  9007. source: "./media/characters/chari-gal/front.svg",
  9008. extra: 1568 / 1385,
  9009. bottom: 0.047
  9010. }
  9011. },
  9012. gigantamax: {
  9013. height: math.unit(6 * 16, "feet"),
  9014. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9015. name: "Gigantamax",
  9016. image: {
  9017. source: "./media/characters/chari-gal/gigantamax.svg",
  9018. extra: 1124 / 888,
  9019. bottom: 0.03
  9020. }
  9021. },
  9022. },
  9023. [
  9024. {
  9025. name: "Normal",
  9026. height: math.unit(5 + 7 / 12, "feet")
  9027. },
  9028. {
  9029. name: "Macro",
  9030. height: math.unit(200, "feet"),
  9031. default: true
  9032. }
  9033. ]
  9034. ))
  9035. characterMakers.push(() => makeCharacter(
  9036. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9037. {
  9038. front: {
  9039. height: math.unit(6, "feet"),
  9040. weight: math.unit(150, "lbs"),
  9041. name: "Front",
  9042. image: {
  9043. source: "./media/characters/nova/front.svg",
  9044. extra: 5000 / 4722,
  9045. bottom: 0.02
  9046. }
  9047. }
  9048. },
  9049. [
  9050. {
  9051. name: "Micro-",
  9052. height: math.unit(0.8, "inches")
  9053. },
  9054. {
  9055. name: "Micro",
  9056. height: math.unit(2, "inches"),
  9057. default: true
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(3 + 1 / 12, "feet"),
  9066. weight: math.unit(21.7, "lbs"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/argent/front.svg",
  9070. extra: 1471 / 1331,
  9071. bottom: 100.8 / 1575.5
  9072. }
  9073. }
  9074. },
  9075. [
  9076. {
  9077. name: "Micro",
  9078. height: math.unit(2, "inches")
  9079. },
  9080. {
  9081. name: "Normal",
  9082. height: math.unit(3 + 1 / 12, "feet"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Macro",
  9087. height: math.unit(120, "feet")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9093. {
  9094. lamp: {
  9095. height: math.unit(7 * 1559 / 989, "feet"),
  9096. name: "Magic Lamp",
  9097. image: {
  9098. source: "./media/characters/mira-al-cul/lamp.svg",
  9099. extra: 1617 / 1559
  9100. }
  9101. },
  9102. front: {
  9103. height: math.unit(7, "feet"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/mira-al-cul/front.svg",
  9107. extra: 1044 / 990
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Heavily Restricted",
  9114. height: math.unit(7 * 1559 / 989, "feet")
  9115. },
  9116. {
  9117. name: "Freshly Freed",
  9118. height: math.unit(50 * 1559 / 989, "feet")
  9119. },
  9120. {
  9121. name: "World Encompassing",
  9122. height: math.unit(10000 * 1559 / 989, "miles")
  9123. },
  9124. {
  9125. name: "Galactic",
  9126. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9127. },
  9128. {
  9129. name: "Palmed Universe",
  9130. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9131. default: true
  9132. },
  9133. {
  9134. name: "Multiversal Matriarch",
  9135. height: math.unit(8.87e10, "yottameters")
  9136. },
  9137. {
  9138. name: "Void Mother",
  9139. height: math.unit(3.14e110, "yottaparsecs")
  9140. },
  9141. {
  9142. name: "Toying with Transcendence",
  9143. height: math.unit(1e307, "meters")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9149. {
  9150. front: {
  9151. height: math.unit(17 + 1 / 12, "feet"),
  9152. weight: math.unit(476.2 * 5, "lbs"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/kuro-shi-uchū/front.svg",
  9156. extra: 2329 / 1835,
  9157. bottom: 0.02
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(2, "inches")
  9165. },
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(12, "meters")
  9169. },
  9170. {
  9171. name: "Planetary",
  9172. height: math.unit(0.00929, "AU"),
  9173. default: true
  9174. },
  9175. {
  9176. name: "Universal",
  9177. height: math.unit(20, "gigaparsecs")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9183. {
  9184. front: {
  9185. height: math.unit(5 + 2 / 12, "feet"),
  9186. weight: math.unit(120, "lbs"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/katherine/front.svg",
  9190. extra: 2075 / 1969
  9191. }
  9192. },
  9193. dress: {
  9194. height: math.unit(5 + 2 / 12, "feet"),
  9195. weight: math.unit(120, "lbs"),
  9196. name: "Dress",
  9197. image: {
  9198. source: "./media/characters/katherine/dress.svg",
  9199. extra: 2258 / 2064
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Micro",
  9206. height: math.unit(1, "inches"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Normal",
  9211. height: math.unit(5 + 2 / 12, "feet")
  9212. },
  9213. {
  9214. name: "Macro",
  9215. height: math.unit(100, "meters")
  9216. },
  9217. {
  9218. name: "Megamacro",
  9219. height: math.unit(80, "miles")
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(7 + 8 / 12, "feet"),
  9228. weight: math.unit(250, "lbs"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/yevis/front.svg",
  9232. extra: 1938 / 1755
  9233. }
  9234. }
  9235. },
  9236. [
  9237. {
  9238. name: "Mortal",
  9239. height: math.unit(7 + 8 / 12, "feet")
  9240. },
  9241. {
  9242. name: "Battle",
  9243. height: math.unit(25 + 11 / 12, "feet")
  9244. },
  9245. {
  9246. name: "Wrath",
  9247. height: math.unit(1654 + 11 / 12, "feet")
  9248. },
  9249. {
  9250. name: "Planet Destroyer",
  9251. height: math.unit(12000, "miles")
  9252. },
  9253. {
  9254. name: "Galaxy Conqueror",
  9255. height: math.unit(1.45, "zettameters"),
  9256. default: true
  9257. },
  9258. {
  9259. name: "Universal War",
  9260. height: math.unit(184, "gigaparsecs")
  9261. },
  9262. {
  9263. name: "Eternity War",
  9264. height: math.unit(1.98e55, "yottaparsecs")
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(5 + 8 / 12, "feet"),
  9273. weight: math.unit(63, "kg"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/xavier/front.svg",
  9277. extra: 944 / 883
  9278. }
  9279. },
  9280. frontStretch: {
  9281. height: math.unit(5 + 8 / 12, "feet"),
  9282. weight: math.unit(63, "kg"),
  9283. name: "Stretching",
  9284. image: {
  9285. source: "./media/characters/xavier/front-stretch.svg",
  9286. extra: 962 / 820
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(5 + 8 / 12, "feet")
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(100, "meters"),
  9298. default: true
  9299. },
  9300. {
  9301. name: "McLargeHuge",
  9302. height: math.unit(10, "miles")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(5 + 5 / 12, "feet"),
  9311. weight: math.unit(150, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/joshii/front.svg",
  9315. extra: 765 / 653,
  9316. bottom: 51 / 816
  9317. }
  9318. },
  9319. foot: {
  9320. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9321. name: "Foot",
  9322. image: {
  9323. source: "./media/characters/joshii/foot.svg"
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Micro",
  9330. height: math.unit(2, "inches"),
  9331. default: true
  9332. },
  9333. {
  9334. name: "Normal",
  9335. height: math.unit(5 + 5 / 12, "feet")
  9336. },
  9337. {
  9338. name: "Macro",
  9339. height: math.unit(785, "feet")
  9340. },
  9341. {
  9342. name: "Megamacro",
  9343. height: math.unit(24.5, "miles")
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9349. {
  9350. front: {
  9351. height: math.unit(6, "feet"),
  9352. weight: math.unit(150, "lb"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/goddess-elizabeth/front.svg",
  9356. extra: 1800 / 1525,
  9357. bottom: 0.005
  9358. }
  9359. },
  9360. foot: {
  9361. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9362. name: "Foot",
  9363. image: {
  9364. source: "./media/characters/goddess-elizabeth/foot.svg"
  9365. }
  9366. },
  9367. mouth: {
  9368. height: math.unit(6, "feet"),
  9369. name: "Mouth",
  9370. image: {
  9371. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9372. }
  9373. },
  9374. },
  9375. [
  9376. {
  9377. name: "Micro",
  9378. height: math.unit(12, "feet")
  9379. },
  9380. {
  9381. name: "Normal",
  9382. height: math.unit(80, "miles"),
  9383. default: true
  9384. },
  9385. {
  9386. name: "Macro",
  9387. height: math.unit(15000, "parsecs")
  9388. },
  9389. ]
  9390. ))
  9391. characterMakers.push(() => makeCharacter(
  9392. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9393. {
  9394. front: {
  9395. height: math.unit(5 + 9 / 12, "feet"),
  9396. weight: math.unit(144, "lb"),
  9397. name: "Front",
  9398. image: {
  9399. source: "./media/characters/kara/front.svg"
  9400. }
  9401. },
  9402. feet: {
  9403. height: math.unit(6 / 6.765, "feet"),
  9404. name: "Kara's Feet",
  9405. rename: true,
  9406. image: {
  9407. source: "./media/characters/kara/feet.svg"
  9408. }
  9409. },
  9410. },
  9411. [
  9412. {
  9413. name: "Normal",
  9414. height: math.unit(5 + 9 / 12, "feet")
  9415. },
  9416. {
  9417. name: "Macro",
  9418. height: math.unit(174, "feet"),
  9419. default: true
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9425. {
  9426. front: {
  9427. height: math.unit(18, "feet"),
  9428. weight: math.unit(4050, "lb"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/tyrone/front.svg",
  9432. extra: 2405 / 2270,
  9433. bottom: 182 / 2587
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(18, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(300, "feet")
  9446. },
  9447. {
  9448. name: "Megamacro",
  9449. height: math.unit(15, "km")
  9450. },
  9451. {
  9452. name: "Gigamacro",
  9453. height: math.unit(500, "km")
  9454. },
  9455. {
  9456. name: "Teramacro",
  9457. height: math.unit(0.5, "gigameters")
  9458. },
  9459. {
  9460. name: "Omnimacro",
  9461. height: math.unit(1e252, "yottauniverse")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(7 + 8 / 12, "feet"),
  9470. weight: math.unit(120, "lb"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/danny/front.svg",
  9474. extra: 1490 / 1350
  9475. }
  9476. },
  9477. back: {
  9478. height: math.unit(7 + 8 / 12, "feet"),
  9479. weight: math.unit(120, "lb"),
  9480. name: "Back",
  9481. image: {
  9482. source: "./media/characters/danny/back.svg",
  9483. extra: 1490 / 1350
  9484. }
  9485. },
  9486. },
  9487. [
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(7 + 8 / 12, "feet"),
  9491. default: true
  9492. },
  9493. ]
  9494. ))
  9495. characterMakers.push(() => makeCharacter(
  9496. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9497. {
  9498. front: {
  9499. height: math.unit(3.5, "inches"),
  9500. weight: math.unit(19, "grams"),
  9501. name: "Front",
  9502. image: {
  9503. source: "./media/characters/mallow/front.svg",
  9504. extra: 471 / 431
  9505. }
  9506. },
  9507. back: {
  9508. height: math.unit(3.5, "inches"),
  9509. weight: math.unit(19, "grams"),
  9510. name: "Back",
  9511. image: {
  9512. source: "./media/characters/mallow/back.svg",
  9513. extra: 471 / 431
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(3.5, "inches"),
  9521. default: true
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(9, "feet"),
  9530. weight: math.unit(230, "kg"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/starry-aqua/front.svg"
  9534. }
  9535. },
  9536. back: {
  9537. height: math.unit(9, "feet"),
  9538. weight: math.unit(230, "kg"),
  9539. name: "Back",
  9540. image: {
  9541. source: "./media/characters/starry-aqua/back.svg"
  9542. }
  9543. },
  9544. hand: {
  9545. height: math.unit(9 * 0.1168, "feet"),
  9546. name: "Hand",
  9547. image: {
  9548. source: "./media/characters/starry-aqua/hand.svg"
  9549. }
  9550. },
  9551. foot: {
  9552. height: math.unit(9 * 0.18, "feet"),
  9553. name: "Foot",
  9554. image: {
  9555. source: "./media/characters/starry-aqua/foot.svg"
  9556. }
  9557. }
  9558. },
  9559. [
  9560. {
  9561. name: "Micro",
  9562. height: math.unit(3, "inches")
  9563. },
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(9, "feet")
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(300, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Megamacro",
  9575. height: math.unit(3200, "feet")
  9576. }
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(15, "feet"),
  9584. weight: math.unit(5026, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/luka-towers/front.svg",
  9588. extra: 1269/1133,
  9589. bottom: 51/1320
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(15, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Minimacro",
  9601. height: math.unit(25, "feet")
  9602. },
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(320, "feet")
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(35000, "feet")
  9610. },
  9611. {
  9612. name: "Gigamacro",
  9613. height: math.unit(4000, "miles")
  9614. },
  9615. {
  9616. name: "Teramacro",
  9617. height: math.unit(15000, "miles")
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(6, "feet"),
  9626. weight: math.unit(150, "lb"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/natalie-nightring/front.svg",
  9630. extra: 1,
  9631. bottom: 0.06
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Uh Oh",
  9638. height: math.unit(0.1, "mm")
  9639. },
  9640. {
  9641. name: "Small",
  9642. height: math.unit(3, "inches")
  9643. },
  9644. {
  9645. name: "Human Scale",
  9646. height: math.unit(6, "feet")
  9647. },
  9648. {
  9649. name: "Librarian",
  9650. height: math.unit(50, "feet"),
  9651. default: true
  9652. },
  9653. {
  9654. name: "Immense",
  9655. height: math.unit(200, "miles")
  9656. },
  9657. ]
  9658. ))
  9659. characterMakers.push(() => makeCharacter(
  9660. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9661. {
  9662. front: {
  9663. height: math.unit(6, "feet"),
  9664. weight: math.unit(180, "lbs"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/danni-rosie/front.svg",
  9668. extra: 1260 / 1128,
  9669. bottom: 0.022
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Micro",
  9676. height: math.unit(2, "inches"),
  9677. default: true
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(5 + 9 / 12, "feet"),
  9686. weight: math.unit(220, "lb"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/samantha-kruse/front.svg",
  9690. extra: (985 / 935),
  9691. bottom: 0.03
  9692. }
  9693. },
  9694. frontUndressed: {
  9695. height: math.unit(5 + 9 / 12, "feet"),
  9696. weight: math.unit(220, "lb"),
  9697. name: "Front (Undressed)",
  9698. image: {
  9699. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9700. extra: (973 / 923),
  9701. bottom: 0.025
  9702. }
  9703. },
  9704. fat: {
  9705. height: math.unit(5 + 9 / 12, "feet"),
  9706. weight: math.unit(900, "lb"),
  9707. name: "Front (Fat)",
  9708. image: {
  9709. source: "./media/characters/samantha-kruse/fat.svg",
  9710. extra: 2688 / 2561
  9711. }
  9712. },
  9713. },
  9714. [
  9715. {
  9716. name: "Normal",
  9717. height: math.unit(5 + 9 / 12, "feet"),
  9718. default: true
  9719. }
  9720. ]
  9721. ))
  9722. characterMakers.push(() => makeCharacter(
  9723. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9724. {
  9725. back: {
  9726. height: math.unit(5 + 4 / 12, "feet"),
  9727. weight: math.unit(4963, "lb"),
  9728. name: "Back",
  9729. image: {
  9730. source: "./media/characters/amelia-rosie/back.svg",
  9731. extra: 1113 / 963,
  9732. bottom: 0.01
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Level 0",
  9739. height: math.unit(5 + 4 / 12, "feet")
  9740. },
  9741. {
  9742. name: "Level 1",
  9743. height: math.unit(164597, "feet"),
  9744. default: true
  9745. },
  9746. {
  9747. name: "Level 2",
  9748. height: math.unit(956243, "miles")
  9749. },
  9750. {
  9751. name: "Level 3",
  9752. height: math.unit(29421709423, "miles")
  9753. },
  9754. {
  9755. name: "Level 4",
  9756. height: math.unit(154, "lightyears")
  9757. },
  9758. {
  9759. name: "Level 5",
  9760. height: math.unit(4738272, "lightyears")
  9761. },
  9762. {
  9763. name: "Level 6",
  9764. height: math.unit(145787152896, "lightyears")
  9765. },
  9766. ]
  9767. ))
  9768. characterMakers.push(() => makeCharacter(
  9769. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9770. {
  9771. front: {
  9772. height: math.unit(5 + 11 / 12, "feet"),
  9773. weight: math.unit(65, "kg"),
  9774. name: "Front",
  9775. image: {
  9776. source: "./media/characters/rook-kitara/front.svg",
  9777. extra: 1347 / 1274,
  9778. bottom: 0.005
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Totally Unfair",
  9785. height: math.unit(1.8, "mm")
  9786. },
  9787. {
  9788. name: "Lap Rookie",
  9789. height: math.unit(1.4, "feet")
  9790. },
  9791. {
  9792. name: "Normal",
  9793. height: math.unit(5 + 11 / 12, "feet"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "How Did This Happen",
  9798. height: math.unit(80, "miles")
  9799. }
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9804. {
  9805. front: {
  9806. height: math.unit(7, "feet"),
  9807. weight: math.unit(300, "lb"),
  9808. name: "Front",
  9809. image: {
  9810. source: "./media/characters/pisces/front.svg",
  9811. extra: 2255 / 2115,
  9812. bottom: 0.03
  9813. }
  9814. },
  9815. back: {
  9816. height: math.unit(7, "feet"),
  9817. weight: math.unit(300, "lb"),
  9818. name: "Back",
  9819. image: {
  9820. source: "./media/characters/pisces/back.svg",
  9821. extra: 2146 / 2055,
  9822. bottom: 0.04
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Normal",
  9829. height: math.unit(7, "feet"),
  9830. default: true
  9831. },
  9832. {
  9833. name: "Swimming Pool",
  9834. height: math.unit(12.2, "meters")
  9835. },
  9836. {
  9837. name: "Olympic Swimming Pool",
  9838. height: math.unit(56.3, "meters")
  9839. },
  9840. {
  9841. name: "Lake Superior",
  9842. height: math.unit(93900, "meters")
  9843. },
  9844. {
  9845. name: "Mediterranean Sea",
  9846. height: math.unit(644457, "meters")
  9847. },
  9848. {
  9849. name: "World's Oceans",
  9850. height: math.unit(4567491, "meters")
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(2.3, "meters"),
  9859. weight: math.unit(120, "kg"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/zelas/front.svg"
  9863. }
  9864. },
  9865. side: {
  9866. height: math.unit(2.3, "meters"),
  9867. weight: math.unit(120, "kg"),
  9868. name: "Side",
  9869. image: {
  9870. source: "./media/characters/zelas/side.svg"
  9871. }
  9872. },
  9873. back: {
  9874. height: math.unit(2.3, "meters"),
  9875. weight: math.unit(120, "kg"),
  9876. name: "Back",
  9877. image: {
  9878. source: "./media/characters/zelas/back.svg"
  9879. }
  9880. },
  9881. foot: {
  9882. height: math.unit(1.116, "feet"),
  9883. name: "Foot",
  9884. image: {
  9885. source: "./media/characters/zelas/foot.svg"
  9886. }
  9887. },
  9888. },
  9889. [
  9890. {
  9891. name: "Normal",
  9892. height: math.unit(2.3, "meters")
  9893. },
  9894. {
  9895. name: "Macro",
  9896. height: math.unit(30, "meters"),
  9897. default: true
  9898. },
  9899. ]
  9900. ))
  9901. characterMakers.push(() => makeCharacter(
  9902. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9903. {
  9904. front: {
  9905. height: math.unit(1, "inch"),
  9906. weight: math.unit(0.21, "grams"),
  9907. name: "Front",
  9908. image: {
  9909. source: "./media/characters/talbot/front.svg",
  9910. extra: 594 / 544
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(1, "inch"),
  9918. default: true
  9919. },
  9920. ]
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9924. {
  9925. front: {
  9926. height: math.unit(3 + 3 / 12, "feet"),
  9927. weight: math.unit(51.8, "lb"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/fliss/front.svg",
  9931. extra: 840 / 640
  9932. }
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Teeny Tiny",
  9938. height: math.unit(1, "mm")
  9939. },
  9940. {
  9941. name: "Small",
  9942. height: math.unit(1, "inch"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Standard Sylveon",
  9947. height: math.unit(3 + 3 / 12, "feet")
  9948. },
  9949. {
  9950. name: "Large Nuisance",
  9951. height: math.unit(33, "feet")
  9952. },
  9953. {
  9954. name: "City Filler",
  9955. height: math.unit(3000, "feet")
  9956. },
  9957. {
  9958. name: "New Horizon",
  9959. height: math.unit(6000, "miles")
  9960. },
  9961. ]
  9962. ))
  9963. characterMakers.push(() => makeCharacter(
  9964. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9965. {
  9966. front: {
  9967. height: math.unit(5, "cm"),
  9968. weight: math.unit(1.94, "g"),
  9969. name: "Front",
  9970. image: {
  9971. source: "./media/characters/fleta/front.svg",
  9972. extra: 835 / 803
  9973. }
  9974. },
  9975. back: {
  9976. height: math.unit(5, "cm"),
  9977. weight: math.unit(1.94, "g"),
  9978. name: "Back",
  9979. image: {
  9980. source: "./media/characters/fleta/back.svg",
  9981. extra: 835 / 803
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Micro",
  9988. height: math.unit(5, "cm"),
  9989. default: true
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(225, "lb"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/dominic/front.svg",
  10002. extra: 1770 / 1620,
  10003. bottom: 0.025
  10004. }
  10005. },
  10006. back: {
  10007. height: math.unit(6, "feet"),
  10008. weight: math.unit(225, "lb"),
  10009. name: "Back",
  10010. image: {
  10011. source: "./media/characters/dominic/back.svg",
  10012. extra: 1745 / 1620,
  10013. bottom: 0.065
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Nano",
  10020. height: math.unit(0.1, "mm")
  10021. },
  10022. {
  10023. name: "Micro-",
  10024. height: math.unit(1, "mm")
  10025. },
  10026. {
  10027. name: "Micro",
  10028. height: math.unit(4, "inches")
  10029. },
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(6 + 4 / 12, "feet"),
  10033. default: true
  10034. },
  10035. {
  10036. name: "Macro",
  10037. height: math.unit(115, "feet")
  10038. },
  10039. {
  10040. name: "Macro+",
  10041. height: math.unit(955, "feet")
  10042. },
  10043. {
  10044. name: "Megamacro",
  10045. height: math.unit(8990, "feet")
  10046. },
  10047. {
  10048. name: "Gigmacro",
  10049. height: math.unit(9310, "miles")
  10050. },
  10051. {
  10052. name: "Teramacro",
  10053. height: math.unit(1567005010, "miles")
  10054. },
  10055. {
  10056. name: "Examacro",
  10057. height: math.unit(1425, "parsecs")
  10058. },
  10059. ]
  10060. ))
  10061. characterMakers.push(() => makeCharacter(
  10062. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10063. {
  10064. front: {
  10065. height: math.unit(400, "feet"),
  10066. weight: math.unit(44444444, "lb"),
  10067. name: "Front",
  10068. image: {
  10069. source: "./media/characters/major-colonel/front.svg"
  10070. }
  10071. },
  10072. back: {
  10073. height: math.unit(400, "feet"),
  10074. weight: math.unit(44444444, "lb"),
  10075. name: "Back",
  10076. image: {
  10077. source: "./media/characters/major-colonel/back.svg"
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Macro",
  10084. height: math.unit(400, "feet"),
  10085. default: true
  10086. },
  10087. ]
  10088. ))
  10089. characterMakers.push(() => makeCharacter(
  10090. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10091. {
  10092. catFront: {
  10093. height: math.unit(6, "feet"),
  10094. weight: math.unit(120, "lb"),
  10095. name: "Front (Cat Side)",
  10096. image: {
  10097. source: "./media/characters/axel-lycan/cat-front.svg",
  10098. extra: 430 / 402,
  10099. bottom: 43 / 472.35
  10100. }
  10101. },
  10102. catBack: {
  10103. height: math.unit(6, "feet"),
  10104. weight: math.unit(120, "lb"),
  10105. name: "Back (Cat Side)",
  10106. image: {
  10107. source: "./media/characters/axel-lycan/cat-back.svg",
  10108. extra: 447 / 419,
  10109. bottom: 23.3 / 469
  10110. }
  10111. },
  10112. wolfFront: {
  10113. height: math.unit(6, "feet"),
  10114. weight: math.unit(120, "lb"),
  10115. name: "Front (Wolf Side)",
  10116. image: {
  10117. source: "./media/characters/axel-lycan/wolf-front.svg",
  10118. extra: 485 / 456,
  10119. bottom: 19 / 504
  10120. }
  10121. },
  10122. wolfBack: {
  10123. height: math.unit(6, "feet"),
  10124. weight: math.unit(120, "lb"),
  10125. name: "Back (Wolf Side)",
  10126. image: {
  10127. source: "./media/characters/axel-lycan/wolf-back.svg",
  10128. extra: 475 / 438,
  10129. bottom: 39.2 / 514
  10130. }
  10131. },
  10132. },
  10133. [
  10134. {
  10135. name: "Macro",
  10136. height: math.unit(1, "km"),
  10137. default: true
  10138. },
  10139. ]
  10140. ))
  10141. characterMakers.push(() => makeCharacter(
  10142. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10143. {
  10144. front: {
  10145. height: math.unit(5 + 9 / 12, "feet"),
  10146. weight: math.unit(175, "lb"),
  10147. name: "Front",
  10148. image: {
  10149. source: "./media/characters/vanrel-hyena/front.svg",
  10150. extra: 1086 / 1010,
  10151. bottom: 0.04
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Normal",
  10158. height: math.unit(5 + 9 / 12, "feet"),
  10159. default: true
  10160. },
  10161. ]
  10162. ))
  10163. characterMakers.push(() => makeCharacter(
  10164. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10165. {
  10166. front: {
  10167. height: math.unit(6, "feet"),
  10168. weight: math.unit(103, "lb"),
  10169. name: "Front",
  10170. image: {
  10171. source: "./media/characters/abbott-absol/front.svg",
  10172. extra: 2010 / 1842
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Megamicro",
  10179. height: math.unit(0.1, "mm")
  10180. },
  10181. {
  10182. name: "Micro",
  10183. height: math.unit(1, "inch")
  10184. },
  10185. {
  10186. name: "Normal",
  10187. height: math.unit(6, "feet"),
  10188. default: true
  10189. },
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(6, "feet"),
  10197. weight: math.unit(264, "lb"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/hector/front.svg",
  10201. extra: 2280 / 2130,
  10202. bottom: 0.07
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(12.25, "foot"),
  10210. default: true
  10211. },
  10212. {
  10213. name: "Macro",
  10214. height: math.unit(160, "feet")
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(6, "feet"),
  10223. weight: math.unit(150, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/sal/front.svg",
  10227. extra: 1846 / 1699,
  10228. bottom: 0.04
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Megamacro",
  10235. height: math.unit(10, "miles"),
  10236. default: true
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10242. {
  10243. front: {
  10244. height: math.unit(3, "meters"),
  10245. weight: math.unit(450, "kg"),
  10246. name: "front",
  10247. image: {
  10248. source: "./media/characters/ranger/front.svg",
  10249. extra: 2401 / 2243,
  10250. bottom: 0.05
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(3, "meters"),
  10258. default: true
  10259. },
  10260. ]
  10261. ))
  10262. characterMakers.push(() => makeCharacter(
  10263. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10264. {
  10265. front: {
  10266. height: math.unit(14, "feet"),
  10267. weight: math.unit(800, "kg"),
  10268. name: "Front",
  10269. image: {
  10270. source: "./media/characters/theresa/front.svg",
  10271. extra: 3575 / 3346,
  10272. bottom: 0.03
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(14, "feet"),
  10280. default: true
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10286. {
  10287. front: {
  10288. height: math.unit(6, "feet"),
  10289. weight: math.unit(3, "kg"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/ine/front.svg",
  10293. extra: 678 / 539,
  10294. bottom: 0.023
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(2.265, "feet"),
  10302. default: true
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(5, "feet"),
  10311. weight: math.unit(30, "kg"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/vial/front.svg",
  10315. extra: 1365 / 1277,
  10316. bottom: 0.04
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(5, "feet"),
  10324. default: true
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10330. {
  10331. side: {
  10332. height: math.unit(3.4, "meters"),
  10333. weight: math.unit(1000, "lb"),
  10334. name: "Side",
  10335. image: {
  10336. source: "./media/characters/rovoska/side.svg",
  10337. extra: 4403 / 1515
  10338. }
  10339. },
  10340. },
  10341. [
  10342. {
  10343. name: "Normal",
  10344. height: math.unit(3.4, "meters"),
  10345. default: true
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(8, "feet"),
  10354. weight: math.unit(315, "lb"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/gunner-rotthbauer/front.svg"
  10358. }
  10359. },
  10360. back: {
  10361. height: math.unit(8, "feet"),
  10362. weight: math.unit(315, "lb"),
  10363. name: "Back",
  10364. image: {
  10365. source: "./media/characters/gunner-rotthbauer/back.svg"
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Micro",
  10372. height: math.unit(3.5, "inches")
  10373. },
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(8, "feet"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(250, "feet")
  10382. },
  10383. {
  10384. name: "Megamacro",
  10385. height: math.unit(1, "AU")
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10391. {
  10392. front: {
  10393. height: math.unit(5 + 5 / 12, "feet"),
  10394. weight: math.unit(140, "lb"),
  10395. name: "Front",
  10396. image: {
  10397. source: "./media/characters/allatia/front.svg",
  10398. extra: 1227 / 1180,
  10399. bottom: 0.027
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(5 + 5 / 12, "feet")
  10407. },
  10408. {
  10409. name: "Macro",
  10410. height: math.unit(250, "feet"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Megamacro",
  10415. height: math.unit(8, "miles")
  10416. }
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(6, "feet"),
  10424. weight: math.unit(120, "lb"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/tene/front.svg",
  10428. extra: 814/750,
  10429. bottom: 36/850
  10430. }
  10431. },
  10432. stomping: {
  10433. height: math.unit(2.025, "meters"),
  10434. weight: math.unit(120, "lb"),
  10435. name: "Stomping",
  10436. image: {
  10437. source: "./media/characters/tene/stomping.svg",
  10438. extra: 885/821,
  10439. bottom: 15/900
  10440. }
  10441. },
  10442. sitting: {
  10443. height: math.unit(1, "meter"),
  10444. weight: math.unit(120, "lb"),
  10445. name: "Sitting",
  10446. image: {
  10447. source: "./media/characters/tene/sitting.svg",
  10448. extra: 396/366,
  10449. bottom: 79/475
  10450. }
  10451. },
  10452. smiling: {
  10453. height: math.unit(1.2, "feet"),
  10454. name: "Smiling",
  10455. image: {
  10456. source: "./media/characters/tene/smiling.svg",
  10457. extra: 1364/1071,
  10458. bottom: 0/1364
  10459. }
  10460. },
  10461. smug: {
  10462. height: math.unit(1.3, "feet"),
  10463. name: "Smug",
  10464. image: {
  10465. source: "./media/characters/tene/smug.svg",
  10466. extra: 1323/1082,
  10467. bottom: 0/1323
  10468. }
  10469. },
  10470. feral: {
  10471. height: math.unit(3.9, "feet"),
  10472. weight: math.unit(250, "lb"),
  10473. name: "Feral",
  10474. image: {
  10475. source: "./media/characters/tene/feral.svg",
  10476. extra: 717 / 458,
  10477. bottom: 0.179
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Normal",
  10484. height: math.unit(6, "feet")
  10485. },
  10486. {
  10487. name: "Macro",
  10488. height: math.unit(300, "feet"),
  10489. default: true
  10490. },
  10491. {
  10492. name: "Megamacro",
  10493. height: math.unit(5, "miles")
  10494. },
  10495. ]
  10496. ))
  10497. characterMakers.push(() => makeCharacter(
  10498. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10499. {
  10500. side: {
  10501. height: math.unit(6, "feet"),
  10502. name: "Side",
  10503. image: {
  10504. source: "./media/characters/evander/side.svg",
  10505. extra: 877 / 477
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(0.83, "meters"),
  10513. default: true
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10519. {
  10520. front: {
  10521. height: math.unit(12, "feet"),
  10522. weight: math.unit(1000, "lb"),
  10523. name: "Front",
  10524. image: {
  10525. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10526. extra: 1762 / 1611
  10527. }
  10528. },
  10529. back: {
  10530. height: math.unit(12, "feet"),
  10531. weight: math.unit(1000, "lb"),
  10532. name: "Back",
  10533. image: {
  10534. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10535. extra: 1762 / 1611
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Normal",
  10542. height: math.unit(12, "feet"),
  10543. default: true
  10544. },
  10545. {
  10546. name: "Kaiju",
  10547. height: math.unit(150, "feet")
  10548. },
  10549. ]
  10550. ))
  10551. characterMakers.push(() => makeCharacter(
  10552. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10553. {
  10554. front: {
  10555. height: math.unit(6, "feet"),
  10556. weight: math.unit(150, "lb"),
  10557. name: "Front",
  10558. image: {
  10559. source: "./media/characters/zero-alurus/front.svg"
  10560. }
  10561. },
  10562. back: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Back",
  10566. image: {
  10567. source: "./media/characters/zero-alurus/back.svg"
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Normal",
  10574. height: math.unit(5 + 10 / 12, "feet")
  10575. },
  10576. {
  10577. name: "Macro",
  10578. height: math.unit(60, "feet"),
  10579. default: true
  10580. },
  10581. {
  10582. name: "Macro+",
  10583. height: math.unit(450, "feet")
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10589. {
  10590. front: {
  10591. height: math.unit(6, "feet"),
  10592. weight: math.unit(200, "lb"),
  10593. name: "Front",
  10594. image: {
  10595. source: "./media/characters/mega-shi/front.svg",
  10596. extra: 1279 / 1250,
  10597. bottom: 0.02
  10598. }
  10599. },
  10600. back: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(200, "lb"),
  10603. name: "Back",
  10604. image: {
  10605. source: "./media/characters/mega-shi/back.svg",
  10606. extra: 1279 / 1250,
  10607. bottom: 0.02
  10608. }
  10609. },
  10610. },
  10611. [
  10612. {
  10613. name: "Micro",
  10614. height: math.unit(16 + 6 / 12, "feet")
  10615. },
  10616. {
  10617. name: "Third Dimension",
  10618. height: math.unit(40, "meters")
  10619. },
  10620. {
  10621. name: "Normal",
  10622. height: math.unit(660, "feet"),
  10623. default: true
  10624. },
  10625. {
  10626. name: "Megamacro",
  10627. height: math.unit(10, "miles")
  10628. },
  10629. {
  10630. name: "Planetary Launch",
  10631. height: math.unit(500, "miles")
  10632. },
  10633. {
  10634. name: "Interstellar",
  10635. height: math.unit(1e9, "miles")
  10636. },
  10637. {
  10638. name: "Leaving the Universe",
  10639. height: math.unit(1, "gigaparsec")
  10640. },
  10641. {
  10642. name: "Travelling Universes",
  10643. height: math.unit(30e15, "parsecs")
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(5 + 4/12, "feet"),
  10652. weight: math.unit(120, "lb"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/odyssey/front.svg",
  10656. extra: 1747/1571,
  10657. bottom: 47/1794
  10658. }
  10659. },
  10660. side: {
  10661. height: math.unit(5.1, "feet"),
  10662. weight: math.unit(120, "lb"),
  10663. name: "Side",
  10664. image: {
  10665. source: "./media/characters/odyssey/side.svg",
  10666. extra: 1847/1619,
  10667. bottom: 47/1894
  10668. }
  10669. },
  10670. lounging: {
  10671. height: math.unit(1.464, "feet"),
  10672. weight: math.unit(120, "lb"),
  10673. name: "Lounging",
  10674. image: {
  10675. source: "./media/characters/odyssey/lounging.svg",
  10676. extra: 1235/837,
  10677. bottom: 551/1786
  10678. }
  10679. },
  10680. },
  10681. [
  10682. {
  10683. name: "Normal",
  10684. height: math.unit(5 + 4 / 12, "feet")
  10685. },
  10686. {
  10687. name: "Macro",
  10688. height: math.unit(1, "km")
  10689. },
  10690. {
  10691. name: "Megamacro",
  10692. height: math.unit(3000, "km")
  10693. },
  10694. {
  10695. name: "Gigamacro",
  10696. height: math.unit(1, "AU"),
  10697. default: true
  10698. },
  10699. {
  10700. name: "Omniversal",
  10701. height: math.unit(100e14, "lightyears")
  10702. },
  10703. ]
  10704. ))
  10705. characterMakers.push(() => makeCharacter(
  10706. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10707. {
  10708. front: {
  10709. height: math.unit(6, "feet"),
  10710. weight: math.unit(300, "lb"),
  10711. name: "Front",
  10712. image: {
  10713. source: "./media/characters/mekuto/front.svg",
  10714. extra: 921 / 832,
  10715. bottom: 0.03
  10716. }
  10717. },
  10718. hand: {
  10719. height: math.unit(6 / 10.24, "feet"),
  10720. name: "Hand",
  10721. image: {
  10722. source: "./media/characters/mekuto/hand.svg"
  10723. }
  10724. },
  10725. foot: {
  10726. height: math.unit(6 / 5.05, "feet"),
  10727. name: "Foot",
  10728. image: {
  10729. source: "./media/characters/mekuto/foot.svg"
  10730. }
  10731. },
  10732. },
  10733. [
  10734. {
  10735. name: "Minimicro",
  10736. height: math.unit(0.2, "inches")
  10737. },
  10738. {
  10739. name: "Micro",
  10740. height: math.unit(1.5, "inches")
  10741. },
  10742. {
  10743. name: "Normal",
  10744. height: math.unit(5 + 11 / 12, "feet"),
  10745. default: true
  10746. },
  10747. {
  10748. name: "Minimacro",
  10749. height: math.unit(17 + 9 / 12, "feet")
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(177.5, "feet")
  10754. },
  10755. {
  10756. name: "Megamacro",
  10757. height: math.unit(152, "miles")
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10763. {
  10764. front: {
  10765. height: math.unit(6.5, "inches"),
  10766. weight: math.unit(13, "oz"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/dafydd-tomos/front.svg",
  10770. extra: 2990 / 2603,
  10771. bottom: 0.03
  10772. }
  10773. },
  10774. },
  10775. [
  10776. {
  10777. name: "Micro",
  10778. height: math.unit(6.5, "inches"),
  10779. default: true
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10785. {
  10786. front: {
  10787. height: math.unit(6, "feet"),
  10788. weight: math.unit(150, "lb"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/splinter/front.svg",
  10792. extra: 2990 / 2882,
  10793. bottom: 0.04
  10794. }
  10795. },
  10796. back: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(150, "lb"),
  10799. name: "Back",
  10800. image: {
  10801. source: "./media/characters/splinter/back.svg",
  10802. extra: 2990 / 2882,
  10803. bottom: 0.04
  10804. }
  10805. },
  10806. },
  10807. [
  10808. {
  10809. name: "Normal",
  10810. height: math.unit(6, "feet")
  10811. },
  10812. {
  10813. name: "Macro",
  10814. height: math.unit(230, "meters"),
  10815. default: true
  10816. },
  10817. ]
  10818. ))
  10819. characterMakers.push(() => makeCharacter(
  10820. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10821. {
  10822. front: {
  10823. height: math.unit(4 + 10 / 12, "feet"),
  10824. weight: math.unit(480, "lb"),
  10825. name: "Front",
  10826. image: {
  10827. source: "./media/characters/snow-gabumon/front.svg",
  10828. extra: 1140 / 963,
  10829. bottom: 0.058
  10830. }
  10831. },
  10832. back: {
  10833. height: math.unit(4 + 10 / 12, "feet"),
  10834. weight: math.unit(480, "lb"),
  10835. name: "Back",
  10836. image: {
  10837. source: "./media/characters/snow-gabumon/back.svg",
  10838. extra: 1115 / 962,
  10839. bottom: 0.041
  10840. }
  10841. },
  10842. frontUndresed: {
  10843. height: math.unit(4 + 10 / 12, "feet"),
  10844. weight: math.unit(480, "lb"),
  10845. name: "Front (Undressed)",
  10846. image: {
  10847. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10848. extra: 1061 / 960,
  10849. bottom: 0.045
  10850. }
  10851. },
  10852. },
  10853. [
  10854. {
  10855. name: "Micro",
  10856. height: math.unit(1, "inch")
  10857. },
  10858. {
  10859. name: "Normal",
  10860. height: math.unit(4 + 10 / 12, "feet"),
  10861. default: true
  10862. },
  10863. {
  10864. name: "Macro",
  10865. height: math.unit(200, "feet")
  10866. },
  10867. {
  10868. name: "Megamacro",
  10869. height: math.unit(120, "miles")
  10870. },
  10871. {
  10872. name: "Gigamacro",
  10873. height: math.unit(9800, "miles")
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10879. {
  10880. front: {
  10881. height: math.unit(1.7, "meters"),
  10882. weight: math.unit(140, "lb"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/moody/front.svg",
  10886. extra: 3226 / 3007,
  10887. bottom: 0.087
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Micro",
  10894. height: math.unit(1, "mm")
  10895. },
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(1.7, "meters"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Macro",
  10903. height: math.unit(80, "meters")
  10904. },
  10905. {
  10906. name: "Macro+",
  10907. height: math.unit(500, "meters")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(6, "feet"),
  10916. weight: math.unit(150, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/zyas/front.svg",
  10920. extra: 1180 / 1120,
  10921. bottom: 0.045
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Normal",
  10928. height: math.unit(10, "feet"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(500, "feet")
  10934. },
  10935. {
  10936. name: "Megamacro",
  10937. height: math.unit(5, "miles")
  10938. },
  10939. {
  10940. name: "Teramacro",
  10941. height: math.unit(150000, "miles")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10947. {
  10948. front: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/cuon/front.svg",
  10954. extra: 1390 / 1320,
  10955. bottom: 0.008
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Micro",
  10962. height: math.unit(3, "inches")
  10963. },
  10964. {
  10965. name: "Normal",
  10966. height: math.unit(18 + 9 / 12, "feet"),
  10967. default: true
  10968. },
  10969. {
  10970. name: "Macro",
  10971. height: math.unit(360, "feet")
  10972. },
  10973. {
  10974. name: "Megamacro",
  10975. height: math.unit(360, "miles")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10981. {
  10982. front: {
  10983. height: math.unit(2.4, "meters"),
  10984. weight: math.unit(70, "kg"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/nyanuxk/front.svg",
  10988. extra: 1172 / 1084,
  10989. bottom: 0.065
  10990. }
  10991. },
  10992. side: {
  10993. height: math.unit(2.4, "meters"),
  10994. weight: math.unit(70, "kg"),
  10995. name: "Side",
  10996. image: {
  10997. source: "./media/characters/nyanuxk/side.svg",
  10998. extra: 1190 / 1132,
  10999. bottom: 0.007
  11000. }
  11001. },
  11002. back: {
  11003. height: math.unit(2.4, "meters"),
  11004. weight: math.unit(70, "kg"),
  11005. name: "Back",
  11006. image: {
  11007. source: "./media/characters/nyanuxk/back.svg",
  11008. extra: 1200 / 1141,
  11009. bottom: 0.015
  11010. }
  11011. },
  11012. foot: {
  11013. height: math.unit(0.52, "meters"),
  11014. name: "Foot",
  11015. image: {
  11016. source: "./media/characters/nyanuxk/foot.svg"
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Micro",
  11023. height: math.unit(2, "cm")
  11024. },
  11025. {
  11026. name: "Normal",
  11027. height: math.unit(2.4, "meters"),
  11028. default: true
  11029. },
  11030. {
  11031. name: "Smaller Macro",
  11032. height: math.unit(120, "meters")
  11033. },
  11034. {
  11035. name: "Bigger Macro",
  11036. height: math.unit(1.2, "km")
  11037. },
  11038. {
  11039. name: "Megamacro",
  11040. height: math.unit(15, "kilometers")
  11041. },
  11042. {
  11043. name: "Gigamacro",
  11044. height: math.unit(2000, "km")
  11045. },
  11046. {
  11047. name: "Teramacro",
  11048. height: math.unit(500000, "km")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11054. {
  11055. side: {
  11056. height: math.unit(6, "feet"),
  11057. name: "Side",
  11058. image: {
  11059. source: "./media/characters/ailbhe/side.svg",
  11060. extra: 757 / 464,
  11061. bottom: 0.041
  11062. }
  11063. },
  11064. },
  11065. [
  11066. {
  11067. name: "Normal",
  11068. height: math.unit(1.07, "meters"),
  11069. default: true
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11075. {
  11076. front: {
  11077. height: math.unit(6, "feet"),
  11078. weight: math.unit(120, "kg"),
  11079. name: "Front",
  11080. image: {
  11081. source: "./media/characters/zevulfius/front.svg",
  11082. extra: 965 / 903
  11083. }
  11084. },
  11085. side: {
  11086. height: math.unit(6, "feet"),
  11087. weight: math.unit(120, "kg"),
  11088. name: "Side",
  11089. image: {
  11090. source: "./media/characters/zevulfius/side.svg",
  11091. extra: 939 / 900
  11092. }
  11093. },
  11094. back: {
  11095. height: math.unit(6, "feet"),
  11096. weight: math.unit(120, "kg"),
  11097. name: "Back",
  11098. image: {
  11099. source: "./media/characters/zevulfius/back.svg",
  11100. extra: 918 / 854,
  11101. bottom: 0.005
  11102. }
  11103. },
  11104. foot: {
  11105. height: math.unit(6 / 3.72, "feet"),
  11106. name: "Foot",
  11107. image: {
  11108. source: "./media/characters/zevulfius/foot.svg"
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Macro",
  11115. height: math.unit(750, "meters")
  11116. },
  11117. {
  11118. name: "Megamacro",
  11119. height: math.unit(20, "km"),
  11120. default: true
  11121. },
  11122. {
  11123. name: "Gigamacro",
  11124. height: math.unit(2000, "km")
  11125. },
  11126. {
  11127. name: "Teramacro",
  11128. height: math.unit(250000, "km")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(100, "feet"),
  11137. weight: math.unit(350, "kg"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/rikes/front.svg",
  11141. extra: 1565 / 1483,
  11142. bottom: 0.017
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Macro",
  11149. height: math.unit(100, "feet"),
  11150. default: true
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11156. {
  11157. front: {
  11158. height: math.unit(8, "feet"),
  11159. weight: math.unit(356, "lb"),
  11160. name: "Front",
  11161. image: {
  11162. source: "./media/characters/adam-silver-mane/front.svg",
  11163. extra: 1036/937,
  11164. bottom: 63/1099
  11165. }
  11166. },
  11167. side: {
  11168. height: math.unit(8, "feet"),
  11169. weight: math.unit(356, "lb"),
  11170. name: "Side",
  11171. image: {
  11172. source: "./media/characters/adam-silver-mane/side.svg",
  11173. extra: 997/901,
  11174. bottom: 59/1056
  11175. }
  11176. },
  11177. frontNsfw: {
  11178. height: math.unit(8, "feet"),
  11179. weight: math.unit(356, "lb"),
  11180. name: "Front (NSFW)",
  11181. image: {
  11182. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11183. extra: 1036/937,
  11184. bottom: 63/1099
  11185. }
  11186. },
  11187. sideNsfw: {
  11188. height: math.unit(8, "feet"),
  11189. weight: math.unit(356, "lb"),
  11190. name: "Side (NSFW)",
  11191. image: {
  11192. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11193. extra: 997/901,
  11194. bottom: 59/1056
  11195. }
  11196. },
  11197. dick: {
  11198. height: math.unit(2.1, "feet"),
  11199. name: "Dick",
  11200. image: {
  11201. source: "./media/characters/adam-silver-mane/dick.svg"
  11202. }
  11203. },
  11204. taur: {
  11205. height: math.unit(16, "feet"),
  11206. weight: math.unit(1500, "kg"),
  11207. name: "Taur",
  11208. image: {
  11209. source: "./media/characters/adam-silver-mane/taur.svg",
  11210. extra: 1713 / 1571,
  11211. bottom: 0.01
  11212. }
  11213. },
  11214. },
  11215. [
  11216. {
  11217. name: "Normal",
  11218. height: math.unit(8, "feet")
  11219. },
  11220. {
  11221. name: "Minimacro",
  11222. height: math.unit(80, "feet")
  11223. },
  11224. {
  11225. name: "MDA",
  11226. height: math.unit(80, "meters")
  11227. },
  11228. {
  11229. name: "Macro",
  11230. height: math.unit(800, "feet"),
  11231. default: true
  11232. },
  11233. {
  11234. name: "Megamacro",
  11235. height: math.unit(8000, "feet")
  11236. },
  11237. {
  11238. name: "Gigamacro",
  11239. height: math.unit(800, "miles")
  11240. },
  11241. {
  11242. name: "Teramacro",
  11243. height: math.unit(80000, "miles")
  11244. },
  11245. {
  11246. name: "Celestial",
  11247. height: math.unit(8e6, "miles")
  11248. },
  11249. {
  11250. name: "Star Dragon",
  11251. height: math.unit(800000, "parsecs")
  11252. },
  11253. {
  11254. name: "Godly",
  11255. height: math.unit(800, "teraparsecs")
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(150, "lb"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/ky'owin/front.svg",
  11268. extra: 3888 / 3068,
  11269. bottom: 0.015
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Normal",
  11276. height: math.unit(6 + 8 / 12, "feet")
  11277. },
  11278. {
  11279. name: "Large",
  11280. height: math.unit(68, "feet")
  11281. },
  11282. {
  11283. name: "Macro",
  11284. height: math.unit(132, "feet")
  11285. },
  11286. {
  11287. name: "Macro+",
  11288. height: math.unit(340, "feet")
  11289. },
  11290. {
  11291. name: "Macro++",
  11292. height: math.unit(680, "feet"),
  11293. default: true
  11294. },
  11295. {
  11296. name: "Megamacro",
  11297. height: math.unit(1, "mile")
  11298. },
  11299. {
  11300. name: "Megamacro+",
  11301. height: math.unit(10, "miles")
  11302. },
  11303. ]
  11304. ))
  11305. characterMakers.push(() => makeCharacter(
  11306. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11307. {
  11308. front: {
  11309. height: math.unit(4, "feet"),
  11310. weight: math.unit(50, "lb"),
  11311. name: "Front",
  11312. image: {
  11313. source: "./media/characters/mal/front.svg",
  11314. extra: 785 / 724,
  11315. bottom: 0.07
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Micro",
  11322. height: math.unit(4, "inches")
  11323. },
  11324. {
  11325. name: "Normal",
  11326. height: math.unit(4, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Macro",
  11331. height: math.unit(200, "feet")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(6, "feet"),
  11340. weight: math.unit(150, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/jordan-deware/front.svg",
  11344. extra: 1191 / 1012
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Nano",
  11351. height: math.unit(0.01, "mm")
  11352. },
  11353. {
  11354. name: "Minimicro",
  11355. height: math.unit(1, "mm")
  11356. },
  11357. {
  11358. name: "Micro",
  11359. height: math.unit(0.5, "inches")
  11360. },
  11361. {
  11362. name: "Normal",
  11363. height: math.unit(4, "feet"),
  11364. default: true
  11365. },
  11366. {
  11367. name: "Minimacro",
  11368. height: math.unit(40, "meters")
  11369. },
  11370. {
  11371. name: "Small Macro",
  11372. height: math.unit(400, "meters")
  11373. },
  11374. {
  11375. name: "Macro",
  11376. height: math.unit(4, "miles")
  11377. },
  11378. {
  11379. name: "Megamacro",
  11380. height: math.unit(40, "miles")
  11381. },
  11382. {
  11383. name: "Megamacro+",
  11384. height: math.unit(400, "miles")
  11385. },
  11386. {
  11387. name: "Gigamacro",
  11388. height: math.unit(400000, "miles")
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11394. {
  11395. side: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(150, "lb"),
  11398. name: "Side",
  11399. image: {
  11400. source: "./media/characters/kimiko/side.svg",
  11401. extra: 600 / 358
  11402. }
  11403. },
  11404. },
  11405. [
  11406. {
  11407. name: "Normal",
  11408. height: math.unit(15, "feet"),
  11409. default: true
  11410. },
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(220, "feet")
  11414. },
  11415. {
  11416. name: "Macro+",
  11417. height: math.unit(1450, "feet")
  11418. },
  11419. {
  11420. name: "Megamacro",
  11421. height: math.unit(11500, "feet")
  11422. },
  11423. {
  11424. name: "Gigamacro",
  11425. height: math.unit(9500, "miles")
  11426. },
  11427. {
  11428. name: "Teramacro",
  11429. height: math.unit(2208005005, "miles")
  11430. },
  11431. {
  11432. name: "Examacro",
  11433. height: math.unit(2750, "parsecs")
  11434. },
  11435. {
  11436. name: "Zettamacro",
  11437. height: math.unit(101500, "parsecs")
  11438. },
  11439. ]
  11440. ))
  11441. characterMakers.push(() => makeCharacter(
  11442. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11443. {
  11444. front: {
  11445. height: math.unit(6, "feet"),
  11446. weight: math.unit(70, "kg"),
  11447. name: "Front",
  11448. image: {
  11449. source: "./media/characters/andrew-sleepy/front.svg"
  11450. }
  11451. },
  11452. side: {
  11453. height: math.unit(6, "feet"),
  11454. weight: math.unit(70, "kg"),
  11455. name: "Side",
  11456. image: {
  11457. source: "./media/characters/andrew-sleepy/side.svg"
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Micro",
  11464. height: math.unit(1, "mm"),
  11465. default: true
  11466. },
  11467. ]
  11468. ))
  11469. characterMakers.push(() => makeCharacter(
  11470. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11471. {
  11472. front: {
  11473. height: math.unit(6, "feet"),
  11474. weight: math.unit(150, "lb"),
  11475. name: "Front",
  11476. image: {
  11477. source: "./media/characters/judio/front.svg",
  11478. extra: 1258 / 1110
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(5 + 6 / 12, "feet")
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(1000, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Megamacro",
  11494. height: math.unit(10, "miles")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11500. {
  11501. frontDressed: {
  11502. height: math.unit(6, "feet"),
  11503. weight: math.unit(68, "kg"),
  11504. name: "Front (Dressed)",
  11505. image: {
  11506. source: "./media/characters/nomaxice/front-dressed.svg",
  11507. extra: 1137/824,
  11508. bottom: 74/1211
  11509. }
  11510. },
  11511. frontShorts: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(68, "kg"),
  11514. name: "Front (Shorts)",
  11515. image: {
  11516. source: "./media/characters/nomaxice/front-shorts.svg",
  11517. extra: 1137/824,
  11518. bottom: 74/1211
  11519. }
  11520. },
  11521. back: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(68, "kg"),
  11524. name: "Back",
  11525. image: {
  11526. source: "./media/characters/nomaxice/back.svg",
  11527. extra: 822/786,
  11528. bottom: 39/861
  11529. }
  11530. },
  11531. hand: {
  11532. height: math.unit(0.565, "feet"),
  11533. name: "Hand",
  11534. image: {
  11535. source: "./media/characters/nomaxice/hand.svg"
  11536. }
  11537. },
  11538. foot: {
  11539. height: math.unit(1, "feet"),
  11540. name: "Foot",
  11541. image: {
  11542. source: "./media/characters/nomaxice/foot.svg"
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Micro",
  11549. height: math.unit(8, "cm")
  11550. },
  11551. {
  11552. name: "Norm",
  11553. height: math.unit(1.82, "m")
  11554. },
  11555. {
  11556. name: "Norm+",
  11557. height: math.unit(8.8, "feet"),
  11558. default: true
  11559. },
  11560. {
  11561. name: "Big",
  11562. height: math.unit(8, "meters")
  11563. },
  11564. {
  11565. name: "Macro",
  11566. height: math.unit(18, "meters")
  11567. },
  11568. {
  11569. name: "Macro+",
  11570. height: math.unit(88, "meters")
  11571. },
  11572. ]
  11573. ))
  11574. characterMakers.push(() => makeCharacter(
  11575. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11576. {
  11577. front: {
  11578. height: math.unit(12, "feet"),
  11579. weight: math.unit(1.5, "tons"),
  11580. name: "Front",
  11581. image: {
  11582. source: "./media/characters/dydros/front.svg",
  11583. extra: 863 / 800,
  11584. bottom: 0.015
  11585. }
  11586. },
  11587. back: {
  11588. height: math.unit(12, "feet"),
  11589. weight: math.unit(1.5, "tons"),
  11590. name: "Back",
  11591. image: {
  11592. source: "./media/characters/dydros/back.svg",
  11593. extra: 900 / 843,
  11594. bottom: 0.005
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(12, "feet"),
  11602. default: true
  11603. },
  11604. ]
  11605. ))
  11606. characterMakers.push(() => makeCharacter(
  11607. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11608. {
  11609. front: {
  11610. height: math.unit(6, "feet"),
  11611. weight: math.unit(100, "kg"),
  11612. name: "Front",
  11613. image: {
  11614. source: "./media/characters/riggi/front.svg",
  11615. extra: 5787 / 5303
  11616. }
  11617. },
  11618. hyper: {
  11619. height: math.unit(6 * 5 / 3, "feet"),
  11620. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11621. name: "Hyper",
  11622. image: {
  11623. source: "./media/characters/riggi/hyper.svg",
  11624. extra: 3595 / 3485
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Small Macro",
  11631. height: math.unit(50, "feet")
  11632. },
  11633. {
  11634. name: "Default",
  11635. height: math.unit(200, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Loom",
  11640. height: math.unit(10000, "feet")
  11641. },
  11642. {
  11643. name: "Cruising Altitude",
  11644. height: math.unit(30000, "feet")
  11645. },
  11646. {
  11647. name: "Megamacro",
  11648. height: math.unit(100, "miles")
  11649. },
  11650. {
  11651. name: "Continent Sized",
  11652. height: math.unit(2800, "miles")
  11653. },
  11654. {
  11655. name: "Earth Sized",
  11656. height: math.unit(8000, "miles")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(6, "feet"),
  11665. weight: math.unit(250, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/alexi/front.svg",
  11669. extra: 3483 / 3291,
  11670. bottom: 0.04
  11671. }
  11672. },
  11673. back: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(250, "lb"),
  11676. name: "Back",
  11677. image: {
  11678. source: "./media/characters/alexi/back.svg",
  11679. extra: 3533 / 3356,
  11680. bottom: 0.021
  11681. }
  11682. },
  11683. frontTransforming: {
  11684. height: math.unit(8.58, "feet"),
  11685. weight: math.unit(1300, "lb"),
  11686. name: "Transforming",
  11687. image: {
  11688. source: "./media/characters/alexi/front-transforming.svg",
  11689. extra: 437 / 409,
  11690. bottom: 19 / 458.66
  11691. }
  11692. },
  11693. frontTransformed: {
  11694. height: math.unit(12.5, "feet"),
  11695. weight: math.unit(4000, "lb"),
  11696. name: "Transformed",
  11697. image: {
  11698. source: "./media/characters/alexi/front-transformed.svg",
  11699. extra: 639 / 614,
  11700. bottom: 30.55 / 671
  11701. }
  11702. },
  11703. },
  11704. [
  11705. {
  11706. name: "Normal",
  11707. height: math.unit(14, "feet"),
  11708. default: true
  11709. },
  11710. {
  11711. name: "Minimacro",
  11712. height: math.unit(30, "meters")
  11713. },
  11714. {
  11715. name: "Macro",
  11716. height: math.unit(500, "meters")
  11717. },
  11718. {
  11719. name: "Megamacro",
  11720. height: math.unit(9000, "km")
  11721. },
  11722. {
  11723. name: "Teramacro",
  11724. height: math.unit(384000, "km")
  11725. },
  11726. ]
  11727. ))
  11728. characterMakers.push(() => makeCharacter(
  11729. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11730. {
  11731. front: {
  11732. height: math.unit(6, "feet"),
  11733. weight: math.unit(150, "lb"),
  11734. name: "Front",
  11735. image: {
  11736. source: "./media/characters/kayroo/front.svg",
  11737. extra: 1153 / 1038,
  11738. bottom: 0.06
  11739. }
  11740. },
  11741. foot: {
  11742. height: math.unit(6, "feet"),
  11743. weight: math.unit(150, "lb"),
  11744. name: "Foot",
  11745. image: {
  11746. source: "./media/characters/kayroo/foot.svg"
  11747. }
  11748. },
  11749. },
  11750. [
  11751. {
  11752. name: "Normal",
  11753. height: math.unit(8, "feet"),
  11754. default: true
  11755. },
  11756. {
  11757. name: "Minimacro",
  11758. height: math.unit(250, "feet")
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(2800, "feet")
  11763. },
  11764. {
  11765. name: "Megamacro",
  11766. height: math.unit(5200, "feet")
  11767. },
  11768. {
  11769. name: "Gigamacro",
  11770. height: math.unit(27000, "feet")
  11771. },
  11772. {
  11773. name: "Omega",
  11774. height: math.unit(45000, "feet")
  11775. },
  11776. ]
  11777. ))
  11778. characterMakers.push(() => makeCharacter(
  11779. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11780. {
  11781. front: {
  11782. height: math.unit(18, "feet"),
  11783. weight: math.unit(5800, "lb"),
  11784. name: "Front",
  11785. image: {
  11786. source: "./media/characters/rhys/front.svg",
  11787. extra: 3386 / 3090,
  11788. bottom: 0.07
  11789. }
  11790. },
  11791. },
  11792. [
  11793. {
  11794. name: "Normal",
  11795. height: math.unit(18, "feet"),
  11796. default: true
  11797. },
  11798. {
  11799. name: "Working Size",
  11800. height: math.unit(200, "feet")
  11801. },
  11802. {
  11803. name: "Demolition Size",
  11804. height: math.unit(2000, "feet")
  11805. },
  11806. {
  11807. name: "Maximum Licensed Size",
  11808. height: math.unit(5, "miles")
  11809. },
  11810. {
  11811. name: "Maximum Observed Size",
  11812. height: math.unit(10, "yottameters")
  11813. },
  11814. ]
  11815. ))
  11816. characterMakers.push(() => makeCharacter(
  11817. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11818. {
  11819. front: {
  11820. height: math.unit(6, "feet"),
  11821. weight: math.unit(250, "lb"),
  11822. name: "Front",
  11823. image: {
  11824. source: "./media/characters/toto/front.svg",
  11825. extra: 527 / 479,
  11826. bottom: 0.05
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Micro",
  11833. height: math.unit(3, "feet")
  11834. },
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(10, "feet")
  11838. },
  11839. {
  11840. name: "Macro",
  11841. height: math.unit(150, "feet"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Megamacro",
  11846. height: math.unit(1200, "feet")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "King", species: ["lion"], tags: ["anthro"] },
  11852. {
  11853. back: {
  11854. height: math.unit(6, "feet"),
  11855. weight: math.unit(150, "lb"),
  11856. name: "Back",
  11857. image: {
  11858. source: "./media/characters/king/back.svg"
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Micro",
  11865. height: math.unit(2, "inches")
  11866. },
  11867. {
  11868. name: "Normal",
  11869. height: math.unit(8, "feet")
  11870. },
  11871. {
  11872. name: "Macro",
  11873. height: math.unit(200, "feet"),
  11874. default: true
  11875. },
  11876. {
  11877. name: "Megamacro",
  11878. height: math.unit(50, "miles")
  11879. },
  11880. ]
  11881. ))
  11882. characterMakers.push(() => makeCharacter(
  11883. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11884. {
  11885. front: {
  11886. height: math.unit(11, "feet"),
  11887. weight: math.unit(1400, "lb"),
  11888. name: "Front",
  11889. image: {
  11890. source: "./media/characters/cordite/front.svg",
  11891. extra: 1919/1827,
  11892. bottom: 40/1959
  11893. }
  11894. },
  11895. side: {
  11896. height: math.unit(11, "feet"),
  11897. weight: math.unit(1400, "lb"),
  11898. name: "Side",
  11899. image: {
  11900. source: "./media/characters/cordite/side.svg",
  11901. extra: 1908/1793,
  11902. bottom: 38/1946
  11903. }
  11904. },
  11905. back: {
  11906. height: math.unit(11, "feet"),
  11907. weight: math.unit(1400, "lb"),
  11908. name: "Back",
  11909. image: {
  11910. source: "./media/characters/cordite/back.svg",
  11911. extra: 1938/1837,
  11912. bottom: 10/1948
  11913. }
  11914. },
  11915. feral: {
  11916. height: math.unit(2, "feet"),
  11917. weight: math.unit(90, "lb"),
  11918. name: "Feral",
  11919. image: {
  11920. source: "./media/characters/cordite/feral.svg",
  11921. extra: 1260 / 755,
  11922. bottom: 0.05
  11923. }
  11924. },
  11925. },
  11926. [
  11927. {
  11928. name: "Normal",
  11929. height: math.unit(11, "feet"),
  11930. default: true
  11931. },
  11932. ]
  11933. ))
  11934. characterMakers.push(() => makeCharacter(
  11935. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11936. {
  11937. front: {
  11938. height: math.unit(6, "feet"),
  11939. weight: math.unit(150, "lb"),
  11940. name: "Front",
  11941. image: {
  11942. source: "./media/characters/pianostrong/front.svg",
  11943. extra: 6577 / 6254,
  11944. bottom: 0.02
  11945. }
  11946. },
  11947. side: {
  11948. height: math.unit(6, "feet"),
  11949. weight: math.unit(150, "lb"),
  11950. name: "Side",
  11951. image: {
  11952. source: "./media/characters/pianostrong/side.svg",
  11953. extra: 6106 / 5730
  11954. }
  11955. },
  11956. back: {
  11957. height: math.unit(6, "feet"),
  11958. weight: math.unit(150, "lb"),
  11959. name: "Back",
  11960. image: {
  11961. source: "./media/characters/pianostrong/back.svg",
  11962. extra: 6085 / 5733,
  11963. bottom: 0.01
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Macro",
  11970. height: math.unit(100, "feet")
  11971. },
  11972. {
  11973. name: "Macro+",
  11974. height: math.unit(300, "feet"),
  11975. default: true
  11976. },
  11977. {
  11978. name: "Macro++",
  11979. height: math.unit(1000, "feet")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(150, "lb"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/kona/front.svg",
  11992. extra: 2960 / 2629,
  11993. bottom: 0.005
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(11 + 8 / 12, "feet")
  12001. },
  12002. {
  12003. name: "Macro",
  12004. height: math.unit(850, "feet"),
  12005. default: true
  12006. },
  12007. {
  12008. name: "Macro+",
  12009. height: math.unit(1.5, "km"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Megamacro",
  12014. height: math.unit(80, "miles")
  12015. },
  12016. {
  12017. name: "Gigamacro",
  12018. height: math.unit(3500, "miles")
  12019. },
  12020. ]
  12021. ))
  12022. characterMakers.push(() => makeCharacter(
  12023. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12024. {
  12025. side: {
  12026. height: math.unit(1.9, "meters"),
  12027. weight: math.unit(326, "kg"),
  12028. name: "Side",
  12029. image: {
  12030. source: "./media/characters/levi/side.svg",
  12031. extra: 1704 / 1334,
  12032. bottom: 0.02
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Normal",
  12039. height: math.unit(1.9, "meters"),
  12040. default: true
  12041. },
  12042. {
  12043. name: "Macro",
  12044. height: math.unit(20, "meters")
  12045. },
  12046. {
  12047. name: "Macro+",
  12048. height: math.unit(200, "meters")
  12049. },
  12050. {
  12051. name: "Megamacro",
  12052. height: math.unit(2, "km")
  12053. },
  12054. {
  12055. name: "Megamacro+",
  12056. height: math.unit(20, "km")
  12057. },
  12058. {
  12059. name: "Gigamacro",
  12060. height: math.unit(2500, "km")
  12061. },
  12062. {
  12063. name: "Gigamacro+",
  12064. height: math.unit(120000, "km")
  12065. },
  12066. {
  12067. name: "Teramacro",
  12068. height: math.unit(7.77e6, "km")
  12069. },
  12070. ]
  12071. ))
  12072. characterMakers.push(() => makeCharacter(
  12073. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12074. {
  12075. front: {
  12076. height: math.unit(6 + 4/12, "feet"),
  12077. weight: math.unit(190, "lb"),
  12078. name: "Front",
  12079. image: {
  12080. source: "./media/characters/bmc/front.svg",
  12081. extra: 1626/1472,
  12082. bottom: 79/1705
  12083. }
  12084. },
  12085. back: {
  12086. height: math.unit(6 + 4/12, "feet"),
  12087. weight: math.unit(190, "lb"),
  12088. name: "Back",
  12089. image: {
  12090. source: "./media/characters/bmc/back.svg",
  12091. extra: 1640/1479,
  12092. bottom: 45/1685
  12093. }
  12094. },
  12095. frontArmor: {
  12096. height: math.unit(6 + 4/12, "feet"),
  12097. weight: math.unit(190, "lb"),
  12098. name: "Front-armor",
  12099. image: {
  12100. source: "./media/characters/bmc/front-armor.svg",
  12101. extra: 1538/1468,
  12102. bottom: 79/1617
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Human-sized",
  12109. height: math.unit(6 + 4 / 12, "feet")
  12110. },
  12111. {
  12112. name: "Interactive Size",
  12113. height: math.unit(25, "feet")
  12114. },
  12115. {
  12116. name: "Small",
  12117. height: math.unit(250, "feet")
  12118. },
  12119. {
  12120. name: "Normal",
  12121. height: math.unit(1250, "feet"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Good Day",
  12126. height: math.unit(88, "miles")
  12127. },
  12128. {
  12129. name: "Largest Measured Size",
  12130. height: math.unit(105.960, "galaxies")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(20, "feet"),
  12139. weight: math.unit(2016, "kg"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/sven-the-kaiju/front.svg",
  12143. extra: 1277/1250,
  12144. bottom: 35/1312
  12145. }
  12146. },
  12147. mouth: {
  12148. height: math.unit(1.85, "feet"),
  12149. name: "Mouth",
  12150. image: {
  12151. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12152. }
  12153. },
  12154. },
  12155. [
  12156. {
  12157. name: "Fairy",
  12158. height: math.unit(6, "inches")
  12159. },
  12160. {
  12161. name: "Normal",
  12162. height: math.unit(20, "feet"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Rampage",
  12167. height: math.unit(200, "feet")
  12168. },
  12169. {
  12170. name: "Archfey Forest Guardian",
  12171. height: math.unit(1, "mile")
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12177. {
  12178. front: {
  12179. height: math.unit(4, "meters"),
  12180. weight: math.unit(2, "tons"),
  12181. name: "Front",
  12182. image: {
  12183. source: "./media/characters/marik/front.svg",
  12184. extra: 1057 / 1003,
  12185. bottom: 0.08
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(4, "meters"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Macro",
  12197. height: math.unit(20, "meters")
  12198. },
  12199. {
  12200. name: "Megamacro",
  12201. height: math.unit(50, "km")
  12202. },
  12203. {
  12204. name: "Gigamacro",
  12205. height: math.unit(100, "km")
  12206. },
  12207. {
  12208. name: "Alpha Macro",
  12209. height: math.unit(7.88e7, "yottameters")
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12215. {
  12216. front: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(110, "lb"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/mel/front.svg",
  12222. extra: 736 / 617,
  12223. bottom: 0.017
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Pico",
  12230. height: math.unit(3, "pm")
  12231. },
  12232. {
  12233. name: "Nano",
  12234. height: math.unit(3, "nm")
  12235. },
  12236. {
  12237. name: "Micro",
  12238. height: math.unit(0.3, "mm"),
  12239. default: true
  12240. },
  12241. {
  12242. name: "Micro+",
  12243. height: math.unit(3, "mm")
  12244. },
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(5 + 10.5 / 12, "feet")
  12248. },
  12249. ]
  12250. ))
  12251. characterMakers.push(() => makeCharacter(
  12252. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12253. {
  12254. kaiju: {
  12255. height: math.unit(1.75, "meters"),
  12256. weight: math.unit(55, "kg"),
  12257. name: "Kaiju",
  12258. image: {
  12259. source: "./media/characters/lykonous/kaiju.svg",
  12260. extra: 1055 / 946,
  12261. bottom: 0.135
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Normal",
  12268. height: math.unit(2.5, "meters"),
  12269. default: true
  12270. },
  12271. {
  12272. name: "Kaiju Dragon",
  12273. height: math.unit(60, "meters")
  12274. },
  12275. {
  12276. name: "Mega Kaiju",
  12277. height: math.unit(120, "km")
  12278. },
  12279. {
  12280. name: "Giga Kaiju",
  12281. height: math.unit(200, "megameters")
  12282. },
  12283. {
  12284. name: "Terra Kaiju",
  12285. height: math.unit(400, "gigameters")
  12286. },
  12287. {
  12288. name: "Kaiju Dragon God",
  12289. height: math.unit(13000, "exaparsecs")
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12295. {
  12296. front: {
  12297. height: math.unit(6, "feet"),
  12298. weight: math.unit(150, "lb"),
  12299. name: "Front",
  12300. image: {
  12301. source: "./media/characters/blü/front.svg",
  12302. extra: 1883 / 1564,
  12303. bottom: 0.031
  12304. }
  12305. },
  12306. },
  12307. [
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(13, "feet"),
  12311. default: true
  12312. },
  12313. {
  12314. name: "Big Boi",
  12315. height: math.unit(150, "meters")
  12316. },
  12317. {
  12318. name: "Mini Stomper",
  12319. height: math.unit(300, "meters")
  12320. },
  12321. {
  12322. name: "Macro",
  12323. height: math.unit(1000, "meters")
  12324. },
  12325. {
  12326. name: "Megamacro",
  12327. height: math.unit(11000, "meters")
  12328. },
  12329. {
  12330. name: "Gigamacro",
  12331. height: math.unit(11000, "km")
  12332. },
  12333. {
  12334. name: "Teramacro",
  12335. height: math.unit(420000, "km")
  12336. },
  12337. {
  12338. name: "Examacro",
  12339. height: math.unit(120, "parsecs")
  12340. },
  12341. {
  12342. name: "God Tho",
  12343. height: math.unit(98000000000, "parsecs")
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12349. {
  12350. taurFront: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(200, "lb"),
  12353. name: "Taur (Front)",
  12354. image: {
  12355. source: "./media/characters/scales/taur-front.svg",
  12356. extra: 1,
  12357. bottom: 0.05
  12358. }
  12359. },
  12360. taurBack: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(200, "lb"),
  12363. name: "Taur (Back)",
  12364. image: {
  12365. source: "./media/characters/scales/taur-back.svg",
  12366. extra: 1,
  12367. bottom: 0.08
  12368. }
  12369. },
  12370. anthro: {
  12371. height: math.unit(6 * 7 / 12, "feet"),
  12372. weight: math.unit(100, "lb"),
  12373. name: "Anthro",
  12374. image: {
  12375. source: "./media/characters/scales/anthro.svg",
  12376. extra: 1,
  12377. bottom: 0.06
  12378. }
  12379. },
  12380. },
  12381. [
  12382. {
  12383. name: "Normal",
  12384. height: math.unit(12, "feet"),
  12385. default: true
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12391. {
  12392. front: {
  12393. height: math.unit(6, "feet"),
  12394. weight: math.unit(150, "lb"),
  12395. name: "Front",
  12396. image: {
  12397. source: "./media/characters/koragos/front.svg",
  12398. extra: 841 / 794,
  12399. bottom: 0.035
  12400. }
  12401. },
  12402. back: {
  12403. height: math.unit(6, "feet"),
  12404. weight: math.unit(150, "lb"),
  12405. name: "Back",
  12406. image: {
  12407. source: "./media/characters/koragos/back.svg",
  12408. extra: 841 / 810,
  12409. bottom: 0.022
  12410. }
  12411. },
  12412. },
  12413. [
  12414. {
  12415. name: "Normal",
  12416. height: math.unit(6 + 11 / 12, "feet"),
  12417. default: true
  12418. },
  12419. {
  12420. name: "Macro",
  12421. height: math.unit(490, "feet")
  12422. },
  12423. {
  12424. name: "Megamacro",
  12425. height: math.unit(10, "miles")
  12426. },
  12427. {
  12428. name: "Gigamacro",
  12429. height: math.unit(50, "miles")
  12430. },
  12431. ]
  12432. ))
  12433. characterMakers.push(() => makeCharacter(
  12434. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12435. {
  12436. front: {
  12437. height: math.unit(6, "feet"),
  12438. weight: math.unit(250, "lb"),
  12439. name: "Front",
  12440. image: {
  12441. source: "./media/characters/xylrem/front.svg",
  12442. extra: 3323 / 3050,
  12443. bottom: 0.065
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Micro",
  12450. height: math.unit(4, "feet")
  12451. },
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(16, "feet"),
  12455. default: true
  12456. },
  12457. {
  12458. name: "Macro",
  12459. height: math.unit(2720, "feet")
  12460. },
  12461. {
  12462. name: "Megamacro",
  12463. height: math.unit(25000, "miles")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(8, "feet"),
  12472. weight: math.unit(250, "kg"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/ikideru/front.svg",
  12476. extra: 930 / 870,
  12477. bottom: 0.087
  12478. }
  12479. },
  12480. back: {
  12481. height: math.unit(8, "feet"),
  12482. weight: math.unit(250, "kg"),
  12483. name: "Back",
  12484. image: {
  12485. source: "./media/characters/ikideru/back.svg",
  12486. extra: 919 / 852,
  12487. bottom: 0.055
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Rare",
  12494. height: math.unit(8, "feet"),
  12495. default: true
  12496. },
  12497. {
  12498. name: "Playful Loom",
  12499. height: math.unit(80, "feet")
  12500. },
  12501. {
  12502. name: "City Leaner",
  12503. height: math.unit(230, "feet")
  12504. },
  12505. {
  12506. name: "Megamacro",
  12507. height: math.unit(2500, "feet")
  12508. },
  12509. {
  12510. name: "Gigamacro",
  12511. height: math.unit(26400, "feet")
  12512. },
  12513. {
  12514. name: "Tectonic Shifter",
  12515. height: math.unit(1.7, "megameters")
  12516. },
  12517. {
  12518. name: "Planet Carer",
  12519. height: math.unit(21, "megameters")
  12520. },
  12521. {
  12522. name: "God",
  12523. height: math.unit(11157.22, "parsecs")
  12524. },
  12525. ]
  12526. ))
  12527. characterMakers.push(() => makeCharacter(
  12528. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12529. {
  12530. front: {
  12531. height: math.unit(6, "feet"),
  12532. weight: math.unit(120, "lb"),
  12533. name: "Front",
  12534. image: {
  12535. source: "./media/characters/neo/front.svg"
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Micro",
  12542. height: math.unit(2, "inches"),
  12543. default: true
  12544. },
  12545. {
  12546. name: "Human Size",
  12547. height: math.unit(5 + 8 / 12, "feet")
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12553. {
  12554. front: {
  12555. height: math.unit(13 + 10 / 12, "feet"),
  12556. weight: math.unit(5320, "lb"),
  12557. name: "Front",
  12558. image: {
  12559. source: "./media/characters/chauncey-chantz/front.svg",
  12560. extra: 1587 / 1435,
  12561. bottom: 0.02
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Normal",
  12568. height: math.unit(13 + 10 / 12, "feet"),
  12569. default: true
  12570. },
  12571. {
  12572. name: "Macro",
  12573. height: math.unit(45, "feet")
  12574. },
  12575. {
  12576. name: "Megamacro",
  12577. height: math.unit(250, "miles")
  12578. },
  12579. {
  12580. name: "Planetary",
  12581. height: math.unit(10000, "miles")
  12582. },
  12583. {
  12584. name: "Galactic",
  12585. height: math.unit(40000, "parsecs")
  12586. },
  12587. {
  12588. name: "Universal",
  12589. height: math.unit(1, "yottameter")
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12595. {
  12596. front: {
  12597. height: math.unit(6, "feet"),
  12598. weight: math.unit(150, "lb"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/epifox/front.svg",
  12602. extra: 1,
  12603. bottom: 0.075
  12604. }
  12605. },
  12606. },
  12607. [
  12608. {
  12609. name: "Micro",
  12610. height: math.unit(6, "inches")
  12611. },
  12612. {
  12613. name: "Normal",
  12614. height: math.unit(12, "feet"),
  12615. default: true
  12616. },
  12617. {
  12618. name: "Macro",
  12619. height: math.unit(3810, "feet")
  12620. },
  12621. {
  12622. name: "Megamacro",
  12623. height: math.unit(500, "miles")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(1.8796, "m"),
  12632. weight: math.unit(230, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/colin-t/front.svg",
  12636. extra: 1272 / 1193,
  12637. bottom: 0.07
  12638. }
  12639. },
  12640. },
  12641. [
  12642. {
  12643. name: "Micro",
  12644. height: math.unit(0.571, "meters")
  12645. },
  12646. {
  12647. name: "Normal",
  12648. height: math.unit(1.8796, "meters"),
  12649. default: true
  12650. },
  12651. {
  12652. name: "Tall",
  12653. height: math.unit(4, "meters")
  12654. },
  12655. {
  12656. name: "Macro",
  12657. height: math.unit(67.241, "meters")
  12658. },
  12659. {
  12660. name: "Megamacro",
  12661. height: math.unit(371.856, "meters")
  12662. },
  12663. {
  12664. name: "Planetary",
  12665. height: math.unit(12631.5689, "km")
  12666. },
  12667. ]
  12668. ))
  12669. characterMakers.push(() => makeCharacter(
  12670. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12671. {
  12672. front: {
  12673. height: math.unit(1.85, "meters"),
  12674. weight: math.unit(80, "kg"),
  12675. name: "Front",
  12676. image: {
  12677. source: "./media/characters/matvei/front.svg",
  12678. extra: 614 / 594,
  12679. bottom: 0.01
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Normal",
  12686. height: math.unit(1.85, "meters"),
  12687. default: true
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(5 + 9 / 12, "feet"),
  12696. weight: math.unit(70, "lb"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/quincy/front.svg",
  12700. extra: 3041 / 2751
  12701. }
  12702. },
  12703. back: {
  12704. height: math.unit(5 + 9 / 12, "feet"),
  12705. weight: math.unit(70, "lb"),
  12706. name: "Back",
  12707. image: {
  12708. source: "./media/characters/quincy/back.svg",
  12709. extra: 3041 / 2751
  12710. }
  12711. },
  12712. flying: {
  12713. height: math.unit(5 + 4 / 12, "feet"),
  12714. weight: math.unit(70, "lb"),
  12715. name: "Flying",
  12716. image: {
  12717. source: "./media/characters/quincy/flying.svg",
  12718. extra: 1044 / 930
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Micro",
  12725. height: math.unit(3, "cm")
  12726. },
  12727. {
  12728. name: "Normal",
  12729. height: math.unit(5 + 9 / 12, "feet")
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(200, "meters"),
  12734. default: true
  12735. },
  12736. {
  12737. name: "Megamacro",
  12738. height: math.unit(1000, "meters")
  12739. },
  12740. ]
  12741. ))
  12742. characterMakers.push(() => makeCharacter(
  12743. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12744. {
  12745. front: {
  12746. height: math.unit(3 + 11/12, "feet"),
  12747. weight: math.unit(50, "lb"),
  12748. name: "Front",
  12749. image: {
  12750. source: "./media/characters/vanrel/front.svg",
  12751. extra: 1104/949,
  12752. bottom: 52/1156
  12753. }
  12754. },
  12755. back: {
  12756. height: math.unit(3 + 11/12, "feet"),
  12757. weight: math.unit(50, "lb"),
  12758. name: "Back",
  12759. image: {
  12760. source: "./media/characters/vanrel/back.svg",
  12761. extra: 1119/976,
  12762. bottom: 37/1156
  12763. }
  12764. },
  12765. tome: {
  12766. height: math.unit(1.35, "feet"),
  12767. weight: math.unit(10, "lb"),
  12768. name: "Vanrel's Tome",
  12769. rename: true,
  12770. image: {
  12771. source: "./media/characters/vanrel/tome.svg"
  12772. }
  12773. },
  12774. beans: {
  12775. height: math.unit(0.89, "feet"),
  12776. name: "Beans",
  12777. image: {
  12778. source: "./media/characters/vanrel/beans.svg"
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Normal",
  12785. height: math.unit(3 + 11/12, "feet"),
  12786. default: true
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12792. {
  12793. front: {
  12794. height: math.unit(7 + 5 / 12, "feet"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/kuiper-vanrel/front.svg",
  12798. extra: 1219/1169,
  12799. bottom: 69/1288
  12800. }
  12801. },
  12802. back: {
  12803. height: math.unit(7 + 5 / 12, "feet"),
  12804. name: "Back",
  12805. image: {
  12806. source: "./media/characters/kuiper-vanrel/back.svg",
  12807. extra: 1236/1193,
  12808. bottom: 27/1263
  12809. }
  12810. },
  12811. foot: {
  12812. height: math.unit(0.55, "meters"),
  12813. name: "Foot",
  12814. image: {
  12815. source: "./media/characters/kuiper-vanrel/foot.svg",
  12816. }
  12817. },
  12818. battle: {
  12819. height: math.unit(6.824, "feet"),
  12820. name: "Battle",
  12821. image: {
  12822. source: "./media/characters/kuiper-vanrel/battle.svg",
  12823. extra: 1466 / 1327,
  12824. bottom: 29 / 1492.5
  12825. }
  12826. },
  12827. meerkui: {
  12828. height: math.unit(18, "inches"),
  12829. name: "Meerkui",
  12830. image: {
  12831. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12832. extra: 1354/1289,
  12833. bottom: 69/1423
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(7 + 5 / 12, "feet"),
  12841. default: true
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(8 + 5 / 12, "feet"),
  12850. name: "Front",
  12851. image: {
  12852. source: "./media/characters/keset-vanrel/front.svg",
  12853. extra: 1231/1148,
  12854. bottom: 82/1313
  12855. }
  12856. },
  12857. back: {
  12858. height: math.unit(8 + 5 / 12, "feet"),
  12859. name: "Back",
  12860. image: {
  12861. source: "./media/characters/keset-vanrel/back.svg",
  12862. extra: 1240/1174,
  12863. bottom: 33/1273
  12864. }
  12865. },
  12866. hand: {
  12867. height: math.unit(0.6, "meters"),
  12868. name: "Hand",
  12869. image: {
  12870. source: "./media/characters/keset-vanrel/hand.svg"
  12871. }
  12872. },
  12873. foot: {
  12874. height: math.unit(0.94978, "meters"),
  12875. name: "Foot",
  12876. image: {
  12877. source: "./media/characters/keset-vanrel/foot.svg"
  12878. }
  12879. },
  12880. battle: {
  12881. height: math.unit(7.408, "feet"),
  12882. name: "Battle",
  12883. image: {
  12884. source: "./media/characters/keset-vanrel/battle.svg",
  12885. extra: 1890 / 1386,
  12886. bottom: 73.28 / 1970
  12887. }
  12888. },
  12889. },
  12890. [
  12891. {
  12892. name: "Normal",
  12893. height: math.unit(8 + 5 / 12, "feet"),
  12894. default: true
  12895. },
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12900. {
  12901. front: {
  12902. height: math.unit(6, "feet"),
  12903. weight: math.unit(150, "lb"),
  12904. name: "Front",
  12905. image: {
  12906. source: "./media/characters/neos/front.svg",
  12907. extra: 1696 / 992,
  12908. bottom: 0.14
  12909. }
  12910. },
  12911. },
  12912. [
  12913. {
  12914. name: "Normal",
  12915. height: math.unit(54, "cm"),
  12916. default: true
  12917. },
  12918. {
  12919. name: "Macro",
  12920. height: math.unit(100, "m")
  12921. },
  12922. {
  12923. name: "Megamacro",
  12924. height: math.unit(10, "km")
  12925. },
  12926. {
  12927. name: "Megamacro+",
  12928. height: math.unit(100, "km")
  12929. },
  12930. {
  12931. name: "Gigamacro",
  12932. height: math.unit(100, "Mm")
  12933. },
  12934. {
  12935. name: "Teramacro",
  12936. height: math.unit(100, "Gm")
  12937. },
  12938. {
  12939. name: "Examacro",
  12940. height: math.unit(100, "Em")
  12941. },
  12942. {
  12943. name: "Godly",
  12944. height: math.unit(10000, "Ym")
  12945. },
  12946. {
  12947. name: "Beyond Godly",
  12948. height: math.unit(25, "multiverses")
  12949. },
  12950. ]
  12951. ))
  12952. characterMakers.push(() => makeCharacter(
  12953. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12954. {
  12955. feminine: {
  12956. height: math.unit(5, "feet"),
  12957. weight: math.unit(100, "lb"),
  12958. name: "Feminine",
  12959. image: {
  12960. source: "./media/characters/sammy-mouse/feminine.svg",
  12961. extra: 2526 / 2425,
  12962. bottom: 0.123
  12963. }
  12964. },
  12965. masculine: {
  12966. height: math.unit(5, "feet"),
  12967. weight: math.unit(100, "lb"),
  12968. name: "Masculine",
  12969. image: {
  12970. source: "./media/characters/sammy-mouse/masculine.svg",
  12971. extra: 2526 / 2425,
  12972. bottom: 0.123
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Micro",
  12979. height: math.unit(5, "inches")
  12980. },
  12981. {
  12982. name: "Normal",
  12983. height: math.unit(5, "feet"),
  12984. default: true
  12985. },
  12986. {
  12987. name: "Macro",
  12988. height: math.unit(60, "feet")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(4, "feet"),
  12997. weight: math.unit(50, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/kole/front.svg",
  13001. extra: 1423 / 1303,
  13002. bottom: 0.025
  13003. }
  13004. },
  13005. back: {
  13006. height: math.unit(4, "feet"),
  13007. weight: math.unit(50, "lb"),
  13008. name: "Back",
  13009. image: {
  13010. source: "./media/characters/kole/back.svg",
  13011. extra: 1426 / 1280,
  13012. bottom: 0.02
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Normal",
  13019. height: math.unit(4, "feet"),
  13020. default: true
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(2.5, "feet"),
  13029. weight: math.unit(32, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/rufran/front.svg",
  13033. extra: 1313/885,
  13034. bottom: 94/1407
  13035. }
  13036. },
  13037. side: {
  13038. height: math.unit(2.5, "feet"),
  13039. weight: math.unit(32, "lb"),
  13040. name: "Side",
  13041. image: {
  13042. source: "./media/characters/rufran/side.svg",
  13043. extra: 1109/852,
  13044. bottom: 118/1227
  13045. }
  13046. },
  13047. back: {
  13048. height: math.unit(2.5, "feet"),
  13049. weight: math.unit(32, "lb"),
  13050. name: "Back",
  13051. image: {
  13052. source: "./media/characters/rufran/back.svg",
  13053. extra: 1280/878,
  13054. bottom: 131/1411
  13055. }
  13056. },
  13057. mouth: {
  13058. height: math.unit(1.13, "feet"),
  13059. name: "Mouth",
  13060. image: {
  13061. source: "./media/characters/rufran/mouth.svg"
  13062. }
  13063. },
  13064. foot: {
  13065. height: math.unit(1.33, "feet"),
  13066. name: "Foot",
  13067. image: {
  13068. source: "./media/characters/rufran/foot.svg"
  13069. }
  13070. },
  13071. koboldFront: {
  13072. height: math.unit(2 + 6 / 12, "feet"),
  13073. weight: math.unit(20, "lb"),
  13074. name: "Front (Kobold)",
  13075. image: {
  13076. source: "./media/characters/rufran/kobold-front.svg",
  13077. extra: 2041 / 1839,
  13078. bottom: 0.055
  13079. }
  13080. },
  13081. koboldBack: {
  13082. height: math.unit(2 + 6 / 12, "feet"),
  13083. weight: math.unit(20, "lb"),
  13084. name: "Back (Kobold)",
  13085. image: {
  13086. source: "./media/characters/rufran/kobold-back.svg",
  13087. extra: 2054 / 1839,
  13088. bottom: 0.01
  13089. }
  13090. },
  13091. koboldHand: {
  13092. height: math.unit(0.2166, "meters"),
  13093. name: "Hand (Kobold)",
  13094. image: {
  13095. source: "./media/characters/rufran/kobold-hand.svg"
  13096. }
  13097. },
  13098. koboldFoot: {
  13099. height: math.unit(0.185, "meters"),
  13100. name: "Foot (Kobold)",
  13101. image: {
  13102. source: "./media/characters/rufran/kobold-foot.svg"
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Micro",
  13109. height: math.unit(1, "inch")
  13110. },
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(2 + 6 / 12, "feet"),
  13114. default: true
  13115. },
  13116. {
  13117. name: "Big",
  13118. height: math.unit(60, "feet")
  13119. },
  13120. {
  13121. name: "Macro",
  13122. height: math.unit(325, "feet")
  13123. },
  13124. ]
  13125. ))
  13126. characterMakers.push(() => makeCharacter(
  13127. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13128. {
  13129. front: {
  13130. height: math.unit(0.3, "meters"),
  13131. weight: math.unit(3.5, "kg"),
  13132. name: "Front",
  13133. image: {
  13134. source: "./media/characters/chip/front.svg",
  13135. extra: 748 / 674
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Micro",
  13142. height: math.unit(1, "inch"),
  13143. default: true
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13149. {
  13150. side: {
  13151. height: math.unit(2.3, "meters"),
  13152. weight: math.unit(3500, "lb"),
  13153. name: "Side",
  13154. image: {
  13155. source: "./media/characters/torvid/side.svg",
  13156. extra: 1972 / 722,
  13157. bottom: 0.035
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Normal",
  13164. height: math.unit(2.3, "meters"),
  13165. default: true
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13171. {
  13172. front: {
  13173. height: math.unit(2, "meters"),
  13174. weight: math.unit(150.5, "kg"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/susan/front.svg",
  13178. extra: 693 / 635,
  13179. bottom: 0.05
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Megamacro",
  13186. height: math.unit(505, "miles"),
  13187. default: true
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6, "feet"),
  13196. weight: math.unit(150, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/raindrops/front.svg",
  13200. extra: 2655 / 2461,
  13201. bottom: 49 / 2705
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/raindrops/back.svg",
  13210. extra: 2574 / 2400,
  13211. bottom: 65 / 2634
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Micro",
  13218. height: math.unit(6, "inches")
  13219. },
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(6 + 2 / 12, "feet")
  13223. },
  13224. {
  13225. name: "Macro",
  13226. height: math.unit(131, "feet"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(15, "miles")
  13232. },
  13233. {
  13234. name: "Gigamacro",
  13235. height: math.unit(4000, "miles")
  13236. },
  13237. {
  13238. name: "Teramacro",
  13239. height: math.unit(315000, "miles")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(2.794, "meters"),
  13248. weight: math.unit(325, "kg"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/tezwa/front.svg",
  13252. extra: 2083 / 1906,
  13253. bottom: 0.031
  13254. }
  13255. },
  13256. foot: {
  13257. height: math.unit(0.687, "meters"),
  13258. name: "Foot",
  13259. image: {
  13260. source: "./media/characters/tezwa/foot.svg"
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Normal",
  13267. height: math.unit(9 + 2 / 12, "feet"),
  13268. default: true
  13269. },
  13270. ]
  13271. ))
  13272. characterMakers.push(() => makeCharacter(
  13273. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13274. {
  13275. front: {
  13276. height: math.unit(58, "feet"),
  13277. weight: math.unit(89000, "lb"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/typhus/front.svg",
  13281. extra: 816 / 800,
  13282. bottom: 0.065
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(58, "feet"),
  13290. default: true
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13296. {
  13297. front: {
  13298. height: math.unit(12, "feet"),
  13299. weight: math.unit(6, "tonnes"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/lyra-von-wulf/front.svg",
  13303. extra: 1,
  13304. bottom: 0.10
  13305. }
  13306. },
  13307. frontMecha: {
  13308. height: math.unit(12, "feet"),
  13309. weight: math.unit(12, "tonnes"),
  13310. name: "Front (Mecha)",
  13311. image: {
  13312. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13313. extra: 1,
  13314. bottom: 0.042
  13315. }
  13316. },
  13317. maw: {
  13318. height: math.unit(2.2, "feet"),
  13319. name: "Maw",
  13320. image: {
  13321. source: "./media/characters/lyra-von-wulf/maw.svg"
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Normal",
  13328. height: math.unit(12, "feet"),
  13329. default: true
  13330. },
  13331. {
  13332. name: "Classic",
  13333. height: math.unit(50, "feet")
  13334. },
  13335. {
  13336. name: "Macro",
  13337. height: math.unit(500, "feet")
  13338. },
  13339. {
  13340. name: "Megamacro",
  13341. height: math.unit(1, "mile")
  13342. },
  13343. {
  13344. name: "Gigamacro",
  13345. height: math.unit(400, "miles")
  13346. },
  13347. {
  13348. name: "Teramacro",
  13349. height: math.unit(22000, "miles")
  13350. },
  13351. {
  13352. name: "Solarmacro",
  13353. height: math.unit(8600000, "miles")
  13354. },
  13355. {
  13356. name: "Galactic",
  13357. height: math.unit(1057000, "lightyears")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13363. {
  13364. front: {
  13365. height: math.unit(6 + 10 / 12, "feet"),
  13366. weight: math.unit(150, "lb"),
  13367. name: "Front",
  13368. image: {
  13369. source: "./media/characters/dixon/front.svg",
  13370. extra: 3361 / 3209,
  13371. bottom: 0.01
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Normal",
  13378. height: math.unit(6 + 10 / 12, "feet"),
  13379. default: true
  13380. },
  13381. {
  13382. name: "Big",
  13383. height: math.unit(12, "meters")
  13384. },
  13385. {
  13386. name: "Macro",
  13387. height: math.unit(500, "meters")
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(2, "km")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(185, "cm"),
  13400. weight: math.unit(68, "kg"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/kauko/front.svg",
  13404. extra: 1455 / 1421,
  13405. bottom: 0.03
  13406. }
  13407. },
  13408. back: {
  13409. height: math.unit(185, "cm"),
  13410. weight: math.unit(68, "kg"),
  13411. name: "Back",
  13412. image: {
  13413. source: "./media/characters/kauko/back.svg",
  13414. extra: 1455 / 1421,
  13415. bottom: 0.004
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(185, "cm"),
  13423. default: true
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "kg"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/varg/front.svg",
  13436. extra: 1108 / 1018,
  13437. bottom: 0.0375
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Normal",
  13444. height: math.unit(5, "meters")
  13445. },
  13446. {
  13447. name: "Macro",
  13448. height: math.unit(200, "meters")
  13449. },
  13450. {
  13451. name: "Megamacro",
  13452. height: math.unit(20, "kilometers")
  13453. },
  13454. {
  13455. name: "True Size",
  13456. height: math.unit(211, "km"),
  13457. default: true
  13458. },
  13459. {
  13460. name: "Gigamacro",
  13461. height: math.unit(1000, "km")
  13462. },
  13463. {
  13464. name: "Gigamacro+",
  13465. height: math.unit(8000, "km")
  13466. },
  13467. {
  13468. name: "Teramacro",
  13469. height: math.unit(1000000, "km")
  13470. },
  13471. ]
  13472. ))
  13473. characterMakers.push(() => makeCharacter(
  13474. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13475. {
  13476. front: {
  13477. height: math.unit(7 + 7 / 12, "feet"),
  13478. weight: math.unit(267, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/dayza/front.svg",
  13482. extra: 1262 / 1200,
  13483. bottom: 0.035
  13484. }
  13485. },
  13486. side: {
  13487. height: math.unit(7 + 7 / 12, "feet"),
  13488. weight: math.unit(267, "lb"),
  13489. name: "Side",
  13490. image: {
  13491. source: "./media/characters/dayza/side.svg",
  13492. extra: 1295 / 1245,
  13493. bottom: 0.05
  13494. }
  13495. },
  13496. back: {
  13497. height: math.unit(7 + 7 / 12, "feet"),
  13498. weight: math.unit(267, "lb"),
  13499. name: "Back",
  13500. image: {
  13501. source: "./media/characters/dayza/back.svg",
  13502. extra: 1241 / 1170
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Normal",
  13509. height: math.unit(7 + 7 / 12, "feet"),
  13510. default: true
  13511. },
  13512. {
  13513. name: "Macro",
  13514. height: math.unit(155, "feet")
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(6 + 5 / 12, "feet"),
  13523. weight: math.unit(160, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/xanthos/front.svg",
  13527. extra: 1,
  13528. bottom: 0.04
  13529. }
  13530. },
  13531. back: {
  13532. height: math.unit(6 + 5 / 12, "feet"),
  13533. weight: math.unit(160, "lb"),
  13534. name: "Back",
  13535. image: {
  13536. source: "./media/characters/xanthos/back.svg",
  13537. extra: 1,
  13538. bottom: 0.03
  13539. }
  13540. },
  13541. hand: {
  13542. height: math.unit(0.928, "feet"),
  13543. name: "Hand",
  13544. image: {
  13545. source: "./media/characters/xanthos/hand.svg"
  13546. }
  13547. },
  13548. foot: {
  13549. height: math.unit(1.286, "feet"),
  13550. name: "Foot",
  13551. image: {
  13552. source: "./media/characters/xanthos/foot.svg"
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Normal",
  13559. height: math.unit(6 + 5 / 12, "feet"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Normal+",
  13564. height: math.unit(6, "meters")
  13565. },
  13566. {
  13567. name: "Macro",
  13568. height: math.unit(40, "feet")
  13569. },
  13570. {
  13571. name: "Macro+",
  13572. height: math.unit(200, "meters")
  13573. },
  13574. {
  13575. name: "Megamacro",
  13576. height: math.unit(20, "km")
  13577. },
  13578. {
  13579. name: "Megamacro+",
  13580. height: math.unit(100, "km")
  13581. },
  13582. {
  13583. name: "Gigamacro",
  13584. height: math.unit(200, "megameters")
  13585. },
  13586. {
  13587. name: "Gigamacro+",
  13588. height: math.unit(1.5, "gigameters")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(6 + 3 / 12, "feet"),
  13597. weight: math.unit(215, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/grynn/front.svg",
  13601. extra: 4627 / 4209,
  13602. bottom: 0.047
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Micro",
  13609. height: math.unit(6, "inches")
  13610. },
  13611. {
  13612. name: "Normal",
  13613. height: math.unit(6 + 3 / 12, "feet"),
  13614. default: true
  13615. },
  13616. {
  13617. name: "Big",
  13618. height: math.unit(104, "feet")
  13619. },
  13620. {
  13621. name: "Macro",
  13622. height: math.unit(944, "feet")
  13623. },
  13624. {
  13625. name: "Macro+",
  13626. height: math.unit(9480, "feet")
  13627. },
  13628. {
  13629. name: "Megamacro",
  13630. height: math.unit(78752, "feet")
  13631. },
  13632. {
  13633. name: "Megamacro+",
  13634. height: math.unit(630128, "feet")
  13635. },
  13636. {
  13637. name: "Megamacro++",
  13638. height: math.unit(3150695, "feet")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(7 + 5 / 12, "feet"),
  13647. weight: math.unit(450, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/mocha-aura/front.svg",
  13651. extra: 1907 / 1817,
  13652. bottom: 0.04
  13653. }
  13654. },
  13655. back: {
  13656. height: math.unit(7 + 5 / 12, "feet"),
  13657. weight: math.unit(450, "lb"),
  13658. name: "Back",
  13659. image: {
  13660. source: "./media/characters/mocha-aura/back.svg",
  13661. extra: 1900 / 1825,
  13662. bottom: 0.045
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Nano",
  13669. height: math.unit(1, "nm")
  13670. },
  13671. {
  13672. name: "Megamicro",
  13673. height: math.unit(1, "mm")
  13674. },
  13675. {
  13676. name: "Micro",
  13677. height: math.unit(3, "inches")
  13678. },
  13679. {
  13680. name: "Normal",
  13681. height: math.unit(7 + 5 / 12, "feet"),
  13682. default: true
  13683. },
  13684. {
  13685. name: "Macro",
  13686. height: math.unit(30, "feet")
  13687. },
  13688. {
  13689. name: "Megamacro",
  13690. height: math.unit(3500, "feet")
  13691. },
  13692. {
  13693. name: "Teramacro",
  13694. height: math.unit(500000, "miles")
  13695. },
  13696. {
  13697. name: "Petamacro",
  13698. height: math.unit(50000000000000000, "parsecs")
  13699. },
  13700. ]
  13701. ))
  13702. characterMakers.push(() => makeCharacter(
  13703. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13704. {
  13705. front: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(150, "lb"),
  13708. name: "Front",
  13709. image: {
  13710. source: "./media/characters/ilisha-devya/front.svg",
  13711. extra: 1053/1049,
  13712. bottom: 270/1323
  13713. }
  13714. },
  13715. back: {
  13716. height: math.unit(6, "feet"),
  13717. weight: math.unit(150, "lb"),
  13718. name: "Back",
  13719. image: {
  13720. source: "./media/characters/ilisha-devya/back.svg",
  13721. extra: 1131/1128,
  13722. bottom: 39/1170
  13723. }
  13724. },
  13725. },
  13726. [
  13727. {
  13728. name: "Macro",
  13729. height: math.unit(500, "feet"),
  13730. default: true
  13731. },
  13732. {
  13733. name: "Megamacro",
  13734. height: math.unit(10, "miles")
  13735. },
  13736. {
  13737. name: "Gigamacro",
  13738. height: math.unit(100000, "miles")
  13739. },
  13740. {
  13741. name: "Examacro",
  13742. height: math.unit(1e9, "lightyears")
  13743. },
  13744. {
  13745. name: "Omniversal",
  13746. height: math.unit(1e33, "lightyears")
  13747. },
  13748. {
  13749. name: "Beyond Infinite",
  13750. height: math.unit(1e100, "lightyears")
  13751. },
  13752. ]
  13753. ))
  13754. characterMakers.push(() => makeCharacter(
  13755. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13756. {
  13757. Side: {
  13758. height: math.unit(6, "feet"),
  13759. weight: math.unit(150, "lb"),
  13760. name: "Side",
  13761. image: {
  13762. source: "./media/characters/mira/side.svg",
  13763. extra: 900 / 799,
  13764. bottom: 0.02
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Human Size",
  13771. height: math.unit(6, "feet")
  13772. },
  13773. {
  13774. name: "Macro",
  13775. height: math.unit(100, "feet"),
  13776. default: true
  13777. },
  13778. {
  13779. name: "Megamacro",
  13780. height: math.unit(10, "miles")
  13781. },
  13782. {
  13783. name: "Gigamacro",
  13784. height: math.unit(25000, "miles")
  13785. },
  13786. {
  13787. name: "Teramacro",
  13788. height: math.unit(300, "AU")
  13789. },
  13790. {
  13791. name: "Full Size",
  13792. height: math.unit(4.5e10, "lightyears")
  13793. },
  13794. ]
  13795. ))
  13796. characterMakers.push(() => makeCharacter(
  13797. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13798. {
  13799. front: {
  13800. height: math.unit(6, "feet"),
  13801. weight: math.unit(150, "lb"),
  13802. name: "Front",
  13803. image: {
  13804. source: "./media/characters/holly/front.svg",
  13805. extra: 639 / 606
  13806. }
  13807. },
  13808. back: {
  13809. height: math.unit(6, "feet"),
  13810. weight: math.unit(150, "lb"),
  13811. name: "Back",
  13812. image: {
  13813. source: "./media/characters/holly/back.svg",
  13814. extra: 623 / 598
  13815. }
  13816. },
  13817. frontWorking: {
  13818. height: math.unit(6, "feet"),
  13819. weight: math.unit(150, "lb"),
  13820. name: "Front (Working)",
  13821. image: {
  13822. source: "./media/characters/holly/front-working.svg",
  13823. extra: 607 / 577,
  13824. bottom: 0.048
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(12 + 3 / 12, "feet"),
  13832. default: true
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(150, "lb"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/porter/front.svg",
  13845. extra: 1,
  13846. bottom: 0.01
  13847. }
  13848. },
  13849. frontRobes: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Front (Robes)",
  13853. image: {
  13854. source: "./media/characters/porter/front-robes.svg",
  13855. extra: 1.01,
  13856. bottom: 0.01
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Normal",
  13863. height: math.unit(11 + 9 / 12, "feet"),
  13864. default: true
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13870. {
  13871. legendary: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Legendary",
  13875. image: {
  13876. source: "./media/characters/lucy/legendary.svg",
  13877. extra: 1355 / 1100,
  13878. bottom: 0.045
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Legendary",
  13885. height: math.unit(86882 * 2, "miles"),
  13886. default: true
  13887. },
  13888. ]
  13889. ))
  13890. characterMakers.push(() => makeCharacter(
  13891. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13892. {
  13893. front: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(150, "lb"),
  13896. name: "Front",
  13897. image: {
  13898. source: "./media/characters/drusilla/front.svg",
  13899. extra: 678 / 635,
  13900. bottom: 0.03
  13901. }
  13902. },
  13903. back: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(150, "lb"),
  13906. name: "Back",
  13907. image: {
  13908. source: "./media/characters/drusilla/back.svg",
  13909. extra: 678 / 635,
  13910. bottom: 0.005
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Macro",
  13917. height: math.unit(100, "feet")
  13918. },
  13919. {
  13920. name: "Canon Height",
  13921. height: math.unit(2000, "feet"),
  13922. default: true
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(180, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/renard-thatch/front.svg",
  13935. extra: 2411 / 2275,
  13936. bottom: 0.01
  13937. }
  13938. },
  13939. frontPosing: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(180, "lb"),
  13942. name: "Front (Posing)",
  13943. image: {
  13944. source: "./media/characters/renard-thatch/front-posing.svg",
  13945. extra: 2381 / 2261,
  13946. bottom: 0.01
  13947. }
  13948. },
  13949. back: {
  13950. height: math.unit(6, "feet"),
  13951. weight: math.unit(180, "lb"),
  13952. name: "Back",
  13953. image: {
  13954. source: "./media/characters/renard-thatch/back.svg",
  13955. extra: 2428 / 2288
  13956. }
  13957. },
  13958. },
  13959. [
  13960. {
  13961. name: "Micro",
  13962. height: math.unit(3, "inches")
  13963. },
  13964. {
  13965. name: "Default",
  13966. height: math.unit(6, "feet"),
  13967. default: true
  13968. },
  13969. {
  13970. name: "Macro",
  13971. height: math.unit(75, "feet")
  13972. },
  13973. ]
  13974. ))
  13975. characterMakers.push(() => makeCharacter(
  13976. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13977. {
  13978. front: {
  13979. height: math.unit(1450, "feet"),
  13980. weight: math.unit(1.21e6, "tons"),
  13981. name: "Front",
  13982. image: {
  13983. source: "./media/characters/sekvra/front.svg",
  13984. extra: 1193/1190,
  13985. bottom: 78/1271
  13986. }
  13987. },
  13988. side: {
  13989. height: math.unit(1450, "feet"),
  13990. weight: math.unit(1.21e6, "tons"),
  13991. name: "Side",
  13992. image: {
  13993. source: "./media/characters/sekvra/side.svg",
  13994. extra: 1193/1190,
  13995. bottom: 52/1245
  13996. }
  13997. },
  13998. back: {
  13999. height: math.unit(1450, "feet"),
  14000. weight: math.unit(1.21e6, "tons"),
  14001. name: "Back",
  14002. image: {
  14003. source: "./media/characters/sekvra/back.svg",
  14004. extra: 1219/1216,
  14005. bottom: 21/1240
  14006. }
  14007. },
  14008. frontClothed: {
  14009. height: math.unit(1450, "feet"),
  14010. weight: math.unit(1.21e6, "tons"),
  14011. name: "Front (Clothed)",
  14012. image: {
  14013. source: "./media/characters/sekvra/front-clothed.svg",
  14014. extra: 1192/1189,
  14015. bottom: 79/1271
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Macro",
  14022. height: math.unit(1450, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Megamacro",
  14027. height: math.unit(15000, "feet")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(6, "feet"),
  14036. weight: math.unit(150, "lb"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/carmine/front.svg",
  14040. extra: 1,
  14041. bottom: 0.035
  14042. }
  14043. },
  14044. frontArmor: {
  14045. height: math.unit(6, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Front (Armor)",
  14048. image: {
  14049. source: "./media/characters/carmine/front-armor.svg",
  14050. extra: 1,
  14051. bottom: 0.035
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Large",
  14058. height: math.unit(1, "mile")
  14059. },
  14060. {
  14061. name: "Huge",
  14062. height: math.unit(40, "miles"),
  14063. default: true
  14064. },
  14065. {
  14066. name: "Colossal",
  14067. height: math.unit(2500, "miles")
  14068. },
  14069. ]
  14070. ))
  14071. characterMakers.push(() => makeCharacter(
  14072. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14073. {
  14074. front: {
  14075. height: math.unit(6, "feet"),
  14076. weight: math.unit(150, "lb"),
  14077. name: "Front",
  14078. image: {
  14079. source: "./media/characters/elyssia/front.svg",
  14080. extra: 2201 / 2035,
  14081. bottom: 0.05
  14082. }
  14083. },
  14084. frontClothed: {
  14085. height: math.unit(6, "feet"),
  14086. weight: math.unit(150, "lb"),
  14087. name: "Front (Clothed)",
  14088. image: {
  14089. source: "./media/characters/elyssia/front-clothed.svg",
  14090. extra: 2201 / 2035,
  14091. bottom: 0.05
  14092. }
  14093. },
  14094. back: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(150, "lb"),
  14097. name: "Back",
  14098. image: {
  14099. source: "./media/characters/elyssia/back.svg",
  14100. extra: 2201 / 2035,
  14101. bottom: 0.013
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Smaller",
  14108. height: math.unit(150, "feet")
  14109. },
  14110. {
  14111. name: "Standard",
  14112. height: math.unit(1400, "feet"),
  14113. default: true
  14114. },
  14115. {
  14116. name: "Distracted",
  14117. height: math.unit(15000, "feet")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(7 + 4/12, "feet"),
  14126. weight: math.unit(690, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/geno-maxwell/front.svg",
  14130. extra: 984/856,
  14131. bottom: 87/1071
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(7 + 4/12, "feet"),
  14136. weight: math.unit(690, "lb"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/geno-maxwell/back.svg",
  14140. extra: 981/854,
  14141. bottom: 57/1038
  14142. }
  14143. },
  14144. frontCostume: {
  14145. height: math.unit(7 + 4/12, "feet"),
  14146. weight: math.unit(690, "lb"),
  14147. name: "Front (Costume)",
  14148. image: {
  14149. source: "./media/characters/geno-maxwell/front-costume.svg",
  14150. extra: 984/856,
  14151. bottom: 87/1071
  14152. }
  14153. },
  14154. backcostume: {
  14155. height: math.unit(7 + 4/12, "feet"),
  14156. weight: math.unit(690, "lb"),
  14157. name: "Back (Costume)",
  14158. image: {
  14159. source: "./media/characters/geno-maxwell/back-costume.svg",
  14160. extra: 981/854,
  14161. bottom: 57/1038
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Micro",
  14168. height: math.unit(3, "inches")
  14169. },
  14170. {
  14171. name: "Normal",
  14172. height: math.unit(7 + 4 / 12, "feet"),
  14173. default: true
  14174. },
  14175. {
  14176. name: "Macro",
  14177. height: math.unit(220, "feet")
  14178. },
  14179. {
  14180. name: "Megamacro",
  14181. height: math.unit(11, "miles")
  14182. },
  14183. ]
  14184. ))
  14185. characterMakers.push(() => makeCharacter(
  14186. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14187. {
  14188. front: {
  14189. height: math.unit(7 + 4/12, "feet"),
  14190. weight: math.unit(750, "lb"),
  14191. name: "Front",
  14192. image: {
  14193. source: "./media/characters/regena-maxwell/front.svg",
  14194. extra: 984/856,
  14195. bottom: 87/1071
  14196. }
  14197. },
  14198. back: {
  14199. height: math.unit(7 + 4/12, "feet"),
  14200. weight: math.unit(750, "lb"),
  14201. name: "Back",
  14202. image: {
  14203. source: "./media/characters/regena-maxwell/back.svg",
  14204. extra: 981/854,
  14205. bottom: 57/1038
  14206. }
  14207. },
  14208. frontCostume: {
  14209. height: math.unit(7 + 4/12, "feet"),
  14210. weight: math.unit(750, "lb"),
  14211. name: "Front (Costume)",
  14212. image: {
  14213. source: "./media/characters/regena-maxwell/front-costume.svg",
  14214. extra: 984/856,
  14215. bottom: 87/1071
  14216. }
  14217. },
  14218. backcostume: {
  14219. height: math.unit(7 + 4/12, "feet"),
  14220. weight: math.unit(750, "lb"),
  14221. name: "Back (Costume)",
  14222. image: {
  14223. source: "./media/characters/regena-maxwell/back-costume.svg",
  14224. extra: 981/854,
  14225. bottom: 57/1038
  14226. }
  14227. },
  14228. },
  14229. [
  14230. {
  14231. name: "Normal",
  14232. height: math.unit(7 + 4 / 12, "feet"),
  14233. default: true
  14234. },
  14235. {
  14236. name: "Macro",
  14237. height: math.unit(220, "feet")
  14238. },
  14239. {
  14240. name: "Megamacro",
  14241. height: math.unit(11, "miles")
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(6, "feet"),
  14250. weight: math.unit(150, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14254. extra: 860 / 690,
  14255. bottom: 0.03
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(1.7, "meters"),
  14263. default: true
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(6, "feet"),
  14272. weight: math.unit(150, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/quilly/front.svg",
  14276. extra: 890 / 776
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Gigamacro",
  14283. height: math.unit(404090, "miles"),
  14284. default: true
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(7 + 8 / 12, "feet"),
  14293. weight: math.unit(350, "lb"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/tempest/front.svg",
  14297. extra: 1175 / 1086,
  14298. bottom: 0.02
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Normal",
  14305. height: math.unit(7 + 8 / 12, "feet"),
  14306. default: true
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14312. {
  14313. side: {
  14314. height: math.unit(4 + 5 / 12, "feet"),
  14315. weight: math.unit(80, "lb"),
  14316. name: "Side",
  14317. image: {
  14318. source: "./media/characters/rodger/side.svg",
  14319. extra: 1235 / 1118
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Micro",
  14326. height: math.unit(1, "inch")
  14327. },
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(4 + 5 / 12, "feet"),
  14331. default: true
  14332. },
  14333. {
  14334. name: "Macro",
  14335. height: math.unit(120, "feet")
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14341. {
  14342. front: {
  14343. height: math.unit(6, "feet"),
  14344. weight: math.unit(150, "lb"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/danyel/front.svg",
  14348. extra: 1185 / 1123,
  14349. bottom: 0.05
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Shrunken",
  14356. height: math.unit(0.5, "mm")
  14357. },
  14358. {
  14359. name: "Micro",
  14360. height: math.unit(1, "mm"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Upsized",
  14365. height: math.unit(5 + 5 / 12, "feet")
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(5 + 6 / 12, "feet"),
  14374. weight: math.unit(200, "lb"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/vivian-bijoux/front.svg",
  14378. extra: 1217/1209,
  14379. bottom: 76/1293
  14380. }
  14381. },
  14382. back: {
  14383. height: math.unit(5 + 6 / 12, "feet"),
  14384. weight: math.unit(200, "lb"),
  14385. name: "Back",
  14386. image: {
  14387. source: "./media/characters/vivian-bijoux/back.svg",
  14388. extra: 1214/1208,
  14389. bottom: 51/1265
  14390. }
  14391. },
  14392. dressed: {
  14393. height: math.unit(5 + 6 / 12, "feet"),
  14394. weight: math.unit(200, "lb"),
  14395. name: "Dressed",
  14396. image: {
  14397. source: "./media/characters/vivian-bijoux/dressed.svg",
  14398. extra: 1217/1209,
  14399. bottom: 76/1293
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(5 + 6 / 12, "feet"),
  14407. default: true
  14408. },
  14409. {
  14410. name: "Bad Dream",
  14411. height: math.unit(500, "feet")
  14412. },
  14413. {
  14414. name: "Nightmare",
  14415. height: math.unit(500, "miles")
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(6 + 1 / 12, "feet"),
  14424. weight: math.unit(260, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/zeta/front.svg",
  14428. extra: 1968 / 1889,
  14429. bottom: 0.06
  14430. }
  14431. },
  14432. back: {
  14433. height: math.unit(6 + 1 / 12, "feet"),
  14434. weight: math.unit(260, "lb"),
  14435. name: "Back",
  14436. image: {
  14437. source: "./media/characters/zeta/back.svg",
  14438. extra: 1944 / 1858,
  14439. bottom: 0.03
  14440. }
  14441. },
  14442. hand: {
  14443. height: math.unit(1.112, "feet"),
  14444. name: "Hand",
  14445. image: {
  14446. source: "./media/characters/zeta/hand.svg"
  14447. }
  14448. },
  14449. foot: {
  14450. height: math.unit(1.48, "feet"),
  14451. name: "Foot",
  14452. image: {
  14453. source: "./media/characters/zeta/foot.svg"
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Micro",
  14460. height: math.unit(6, "inches")
  14461. },
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(6 + 1 / 12, "feet"),
  14465. default: true
  14466. },
  14467. {
  14468. name: "Macro",
  14469. height: math.unit(20, "feet")
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(6, "feet"),
  14478. weight: math.unit(150, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/jamie-larsen/front.svg",
  14482. extra: 962 / 933,
  14483. bottom: 0.02
  14484. }
  14485. },
  14486. back: {
  14487. height: math.unit(6, "feet"),
  14488. weight: math.unit(150, "lb"),
  14489. name: "Back",
  14490. image: {
  14491. source: "./media/characters/jamie-larsen/back.svg",
  14492. extra: 997 / 946
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(28 + 7 / 12, "feet"),
  14500. default: true
  14501. },
  14502. {
  14503. name: "Macro+",
  14504. height: math.unit(180, "feet")
  14505. },
  14506. {
  14507. name: "Megamacro",
  14508. height: math.unit(10, "miles")
  14509. },
  14510. {
  14511. name: "Gigamacro",
  14512. height: math.unit(200000, "miles")
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(6, "feet"),
  14521. weight: math.unit(120, "lb"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/vance/front.svg",
  14525. extra: 1980 / 1890,
  14526. bottom: 0.09
  14527. }
  14528. },
  14529. back: {
  14530. height: math.unit(6, "feet"),
  14531. weight: math.unit(120, "lb"),
  14532. name: "Back",
  14533. image: {
  14534. source: "./media/characters/vance/back.svg",
  14535. extra: 2081 / 1994,
  14536. bottom: 0.014
  14537. }
  14538. },
  14539. hand: {
  14540. height: math.unit(0.88, "feet"),
  14541. name: "Hand",
  14542. image: {
  14543. source: "./media/characters/vance/hand.svg"
  14544. }
  14545. },
  14546. foot: {
  14547. height: math.unit(0.64, "feet"),
  14548. name: "Foot",
  14549. image: {
  14550. source: "./media/characters/vance/foot.svg"
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Small",
  14557. height: math.unit(90, "feet"),
  14558. default: true
  14559. },
  14560. {
  14561. name: "Macro",
  14562. height: math.unit(100, "meters")
  14563. },
  14564. {
  14565. name: "Megamacro",
  14566. height: math.unit(15, "miles")
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14572. {
  14573. front: {
  14574. height: math.unit(6, "feet"),
  14575. weight: math.unit(180, "lb"),
  14576. name: "Front",
  14577. image: {
  14578. source: "./media/characters/xochitl/front.svg",
  14579. extra: 2297 / 2261,
  14580. bottom: 0.065
  14581. }
  14582. },
  14583. back: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(180, "lb"),
  14586. name: "Back",
  14587. image: {
  14588. source: "./media/characters/xochitl/back.svg",
  14589. extra: 2386 / 2354,
  14590. bottom: 0.01
  14591. }
  14592. },
  14593. foot: {
  14594. height: math.unit(6 / 5 * 1.15, "feet"),
  14595. weight: math.unit(150, "lb"),
  14596. name: "Foot",
  14597. image: {
  14598. source: "./media/characters/xochitl/foot.svg"
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Macro",
  14605. height: math.unit(80, "feet")
  14606. },
  14607. {
  14608. name: "Macro+",
  14609. height: math.unit(400, "feet"),
  14610. default: true
  14611. },
  14612. {
  14613. name: "Gigamacro",
  14614. height: math.unit(80000, "miles")
  14615. },
  14616. {
  14617. name: "Gigamacro+",
  14618. height: math.unit(400000, "miles")
  14619. },
  14620. {
  14621. name: "Teramacro",
  14622. height: math.unit(300, "AU")
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14628. {
  14629. front: {
  14630. height: math.unit(6, "feet"),
  14631. weight: math.unit(150, "lb"),
  14632. name: "Front",
  14633. image: {
  14634. source: "./media/characters/vincent/front.svg",
  14635. extra: 1130 / 1080,
  14636. bottom: 0.055
  14637. }
  14638. },
  14639. beak: {
  14640. height: math.unit(6 * 0.1, "feet"),
  14641. name: "Beak",
  14642. image: {
  14643. source: "./media/characters/vincent/beak.svg"
  14644. }
  14645. },
  14646. hand: {
  14647. height: math.unit(6 * 0.85, "feet"),
  14648. weight: math.unit(150, "lb"),
  14649. name: "Hand",
  14650. image: {
  14651. source: "./media/characters/vincent/hand.svg"
  14652. }
  14653. },
  14654. foot: {
  14655. height: math.unit(6 * 0.19, "feet"),
  14656. weight: math.unit(150, "lb"),
  14657. name: "Foot",
  14658. image: {
  14659. source: "./media/characters/vincent/foot.svg"
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Base",
  14666. height: math.unit(6 + 5 / 12, "feet"),
  14667. default: true
  14668. },
  14669. {
  14670. name: "Macro",
  14671. height: math.unit(300, "feet")
  14672. },
  14673. {
  14674. name: "Megamacro",
  14675. height: math.unit(2, "miles")
  14676. },
  14677. {
  14678. name: "Gigamacro",
  14679. height: math.unit(1000, "miles")
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(2, "meters"),
  14688. weight: math.unit(500, "kg"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/coatl/front.svg",
  14692. extra: 3948 / 3500,
  14693. bottom: 0.082
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Normal",
  14700. height: math.unit(4, "meters")
  14701. },
  14702. {
  14703. name: "Macro",
  14704. height: math.unit(100, "meters"),
  14705. default: true
  14706. },
  14707. {
  14708. name: "Macro+",
  14709. height: math.unit(300, "meters")
  14710. },
  14711. {
  14712. name: "Megamacro",
  14713. height: math.unit(3, "gigameters")
  14714. },
  14715. {
  14716. name: "Megamacro+",
  14717. height: math.unit(300, "terameters")
  14718. },
  14719. {
  14720. name: "Megamacro++",
  14721. height: math.unit(3, "lightyears")
  14722. },
  14723. ]
  14724. ))
  14725. characterMakers.push(() => makeCharacter(
  14726. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14727. {
  14728. front: {
  14729. height: math.unit(6, "feet"),
  14730. weight: math.unit(50, "kg"),
  14731. name: "front",
  14732. image: {
  14733. source: "./media/characters/shiroryu/front.svg",
  14734. extra: 1990 / 1935
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Mortal Mingling",
  14741. height: math.unit(3, "meters")
  14742. },
  14743. {
  14744. name: "Kaiju-ish",
  14745. height: math.unit(250, "meters")
  14746. },
  14747. {
  14748. name: "Somewhat Godly",
  14749. height: math.unit(400, "km"),
  14750. default: true
  14751. },
  14752. {
  14753. name: "Planetary",
  14754. height: math.unit(300, "megameters")
  14755. },
  14756. {
  14757. name: "Galaxy-dwarfing",
  14758. height: math.unit(450, "kiloparsecs")
  14759. },
  14760. {
  14761. name: "Universe Eater",
  14762. height: math.unit(150, "gigaparsecs")
  14763. },
  14764. {
  14765. name: "Almost Immeasurable",
  14766. height: math.unit(1.3e266, "yottaparsecs")
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(6, "feet"),
  14775. weight: math.unit(150, "lb"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/umeko/front.svg",
  14779. extra: 1,
  14780. bottom: 0.019
  14781. }
  14782. },
  14783. frontArmored: {
  14784. height: math.unit(6, "feet"),
  14785. weight: math.unit(150, "lb"),
  14786. name: "Front (Armored)",
  14787. image: {
  14788. source: "./media/characters/umeko/front-armored.svg",
  14789. extra: 1,
  14790. bottom: 0.021
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Macro",
  14797. height: math.unit(220, "feet"),
  14798. default: true
  14799. },
  14800. {
  14801. name: "Guardian Dragon",
  14802. height: math.unit(50, "miles")
  14803. },
  14804. {
  14805. name: "Cosmic",
  14806. height: math.unit(800000, "miles")
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/cassidy/front.svg",
  14819. extra: 810/808,
  14820. bottom: 41/851
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Canon Height",
  14827. height: math.unit(120, "feet"),
  14828. default: true
  14829. },
  14830. {
  14831. name: "Macro+",
  14832. height: math.unit(400, "feet")
  14833. },
  14834. {
  14835. name: "Macro++",
  14836. height: math.unit(4000, "feet")
  14837. },
  14838. {
  14839. name: "Megamacro",
  14840. height: math.unit(3, "miles")
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(6, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/isaac/front.svg",
  14853. extra: 896 / 815,
  14854. bottom: 0.11
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Human Size",
  14861. height: math.unit(8, "feet"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Macro",
  14866. height: math.unit(400, "feet")
  14867. },
  14868. {
  14869. name: "Megamacro",
  14870. height: math.unit(50, "miles")
  14871. },
  14872. {
  14873. name: "Canon Height",
  14874. height: math.unit(200, "AU")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(72, "kg"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/sleekit/front.svg",
  14887. extra: 4693 / 4487,
  14888. bottom: 0.012
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Minimum Height",
  14895. height: math.unit(10, "meters")
  14896. },
  14897. {
  14898. name: "Smaller",
  14899. height: math.unit(25, "meters")
  14900. },
  14901. {
  14902. name: "Larger",
  14903. height: math.unit(38, "meters"),
  14904. default: true
  14905. },
  14906. {
  14907. name: "Maximum height",
  14908. height: math.unit(100, "meters")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(150, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/nillia/front.svg",
  14921. extra: 2195 / 2037,
  14922. bottom: 0.005
  14923. }
  14924. },
  14925. back: {
  14926. height: math.unit(6, "feet"),
  14927. weight: math.unit(150, "lb"),
  14928. name: "Back",
  14929. image: {
  14930. source: "./media/characters/nillia/back.svg",
  14931. extra: 2195 / 2037,
  14932. bottom: 0.005
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Canon Height",
  14939. height: math.unit(489, "feet"),
  14940. default: true
  14941. }
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14946. {
  14947. front: {
  14948. height: math.unit(6, "feet"),
  14949. weight: math.unit(150, "lb"),
  14950. name: "Front",
  14951. image: {
  14952. source: "./media/characters/mesmyriza/front.svg",
  14953. extra: 2067 / 1784,
  14954. bottom: 0.035
  14955. }
  14956. },
  14957. foot: {
  14958. height: math.unit(6 / (250 / 35), "feet"),
  14959. name: "Foot",
  14960. image: {
  14961. source: "./media/characters/mesmyriza/foot.svg"
  14962. }
  14963. },
  14964. },
  14965. [
  14966. {
  14967. name: "Macro",
  14968. height: math.unit(457, "meters"),
  14969. default: true
  14970. },
  14971. {
  14972. name: "Megamacro",
  14973. height: math.unit(8, "megameters")
  14974. },
  14975. ]
  14976. ))
  14977. characterMakers.push(() => makeCharacter(
  14978. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14979. {
  14980. front: {
  14981. height: math.unit(6, "feet"),
  14982. weight: math.unit(250, "lb"),
  14983. name: "Front",
  14984. image: {
  14985. source: "./media/characters/saudade/front.svg",
  14986. extra: 1172 / 1139,
  14987. bottom: 0.035
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "Micro",
  14994. height: math.unit(3, "inches")
  14995. },
  14996. {
  14997. name: "Normal",
  14998. height: math.unit(6, "feet"),
  14999. default: true
  15000. },
  15001. {
  15002. name: "Macro",
  15003. height: math.unit(50, "feet")
  15004. },
  15005. {
  15006. name: "Megamacro",
  15007. height: math.unit(2800, "feet")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(5 + 4 / 12, "feet"),
  15016. weight: math.unit(100, "lb"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/keireer/front.svg",
  15020. extra: 716 / 666,
  15021. bottom: 0.05
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Normal",
  15028. height: math.unit(5 + 4 / 12, "feet"),
  15029. default: true
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(6, "feet"),
  15038. weight: math.unit(90, "kg"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/mirja/front.svg",
  15042. extra: 1789 / 1683,
  15043. bottom: 0.05
  15044. }
  15045. },
  15046. frontDressed: {
  15047. height: math.unit(6, "feet"),
  15048. weight: math.unit(90, "lb"),
  15049. name: "Front (Dressed)",
  15050. image: {
  15051. source: "./media/characters/mirja/front-dressed.svg",
  15052. extra: 1789 / 1683,
  15053. bottom: 0.05
  15054. }
  15055. },
  15056. back: {
  15057. height: math.unit(6, "feet"),
  15058. weight: math.unit(90, "lb"),
  15059. name: "Back",
  15060. image: {
  15061. source: "./media/characters/mirja/back.svg",
  15062. extra: 953 / 917,
  15063. bottom: 0.017
  15064. }
  15065. },
  15066. },
  15067. [
  15068. {
  15069. name: "\"Incognito\"",
  15070. height: math.unit(3, "meters")
  15071. },
  15072. {
  15073. name: "Strolling Size",
  15074. height: math.unit(15, "km")
  15075. },
  15076. {
  15077. name: "Larger Strolling Size",
  15078. height: math.unit(400, "km")
  15079. },
  15080. {
  15081. name: "Preferred Size",
  15082. height: math.unit(5000, "km")
  15083. },
  15084. {
  15085. name: "True Size",
  15086. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15087. default: true
  15088. },
  15089. ]
  15090. ))
  15091. characterMakers.push(() => makeCharacter(
  15092. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15093. {
  15094. front: {
  15095. height: math.unit(15, "feet"),
  15096. weight: math.unit(880, "kg"),
  15097. name: "Front",
  15098. image: {
  15099. source: "./media/characters/nightraver/front.svg",
  15100. extra: 2444 / 2160,
  15101. bottom: 0.027
  15102. }
  15103. },
  15104. back: {
  15105. height: math.unit(15, "feet"),
  15106. weight: math.unit(880, "kg"),
  15107. name: "Back",
  15108. image: {
  15109. source: "./media/characters/nightraver/back.svg",
  15110. extra: 2309 / 2180,
  15111. bottom: 0.005
  15112. }
  15113. },
  15114. sole: {
  15115. height: math.unit(2.878, "feet"),
  15116. name: "Sole",
  15117. image: {
  15118. source: "./media/characters/nightraver/sole.svg"
  15119. }
  15120. },
  15121. foot: {
  15122. height: math.unit(2.285, "feet"),
  15123. name: "Foot",
  15124. image: {
  15125. source: "./media/characters/nightraver/foot.svg"
  15126. }
  15127. },
  15128. maw: {
  15129. height: math.unit(2.67, "feet"),
  15130. name: "Maw",
  15131. image: {
  15132. source: "./media/characters/nightraver/maw.svg"
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Micro",
  15139. height: math.unit(1, "cm")
  15140. },
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(15, "feet"),
  15144. default: true
  15145. },
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(300, "feet")
  15149. },
  15150. {
  15151. name: "Megamacro",
  15152. height: math.unit(300, "miles")
  15153. },
  15154. {
  15155. name: "Gigamacro",
  15156. height: math.unit(10000, "miles")
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15162. {
  15163. side: {
  15164. height: math.unit(2, "inches"),
  15165. weight: math.unit(5, "grams"),
  15166. name: "Side",
  15167. image: {
  15168. source: "./media/characters/arc/side.svg"
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Micro",
  15175. height: math.unit(2, "inches"),
  15176. default: true
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15182. {
  15183. front: {
  15184. height: math.unit(1.1938, "meters"),
  15185. weight: math.unit(54, "kg"),
  15186. name: "Front",
  15187. image: {
  15188. source: "./media/characters/nebula-shahar/front.svg",
  15189. extra: 1642 / 1436,
  15190. bottom: 0.06
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Megamicro",
  15197. height: math.unit(0.3, "mm")
  15198. },
  15199. {
  15200. name: "Micro",
  15201. height: math.unit(3, "cm")
  15202. },
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(138, "cm"),
  15206. default: true
  15207. },
  15208. {
  15209. name: "Macro",
  15210. height: math.unit(30, "m")
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(5.24, "feet"),
  15219. weight: math.unit(150, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/shayla/front.svg",
  15223. extra: 1512 / 1414,
  15224. bottom: 0.01
  15225. }
  15226. },
  15227. back: {
  15228. height: math.unit(5.24, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Back",
  15231. image: {
  15232. source: "./media/characters/shayla/back.svg",
  15233. extra: 1512 / 1414
  15234. }
  15235. },
  15236. hand: {
  15237. height: math.unit(0.7781496062992126, "feet"),
  15238. name: "Hand",
  15239. image: {
  15240. source: "./media/characters/shayla/hand.svg"
  15241. }
  15242. },
  15243. foot: {
  15244. height: math.unit(1.4206036745406823, "feet"),
  15245. name: "Foot",
  15246. image: {
  15247. source: "./media/characters/shayla/foot.svg"
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Micro",
  15254. height: math.unit(0.32, "feet")
  15255. },
  15256. {
  15257. name: "Normal",
  15258. height: math.unit(5.24, "feet"),
  15259. default: true
  15260. },
  15261. {
  15262. name: "Macro",
  15263. height: math.unit(492.12, "feet")
  15264. },
  15265. {
  15266. name: "Megamacro",
  15267. height: math.unit(186.41, "miles")
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15273. {
  15274. front: {
  15275. height: math.unit(2.2, "m"),
  15276. weight: math.unit(120, "kg"),
  15277. name: "Front",
  15278. image: {
  15279. source: "./media/characters/pia-jr/front.svg",
  15280. extra: 1000 / 970,
  15281. bottom: 0.035
  15282. }
  15283. },
  15284. hand: {
  15285. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15286. name: "Hand",
  15287. image: {
  15288. source: "./media/characters/pia-jr/hand.svg"
  15289. }
  15290. },
  15291. paw: {
  15292. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15293. name: "Paw",
  15294. image: {
  15295. source: "./media/characters/pia-jr/paw.svg"
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Micro",
  15302. height: math.unit(1.2, "cm")
  15303. },
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(2.2, "m"),
  15307. default: true
  15308. },
  15309. {
  15310. name: "Macro",
  15311. height: math.unit(180, "m")
  15312. },
  15313. {
  15314. name: "Megamacro",
  15315. height: math.unit(420, "km")
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(2, "m"),
  15324. weight: math.unit(115, "kg"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/pia-sr/front.svg",
  15328. extra: 760 / 730,
  15329. bottom: 0.015
  15330. }
  15331. },
  15332. back: {
  15333. height: math.unit(2, "m"),
  15334. weight: math.unit(115, "kg"),
  15335. name: "Back",
  15336. image: {
  15337. source: "./media/characters/pia-sr/back.svg",
  15338. extra: 760 / 730,
  15339. bottom: 0.01
  15340. }
  15341. },
  15342. hand: {
  15343. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15344. name: "Hand",
  15345. image: {
  15346. source: "./media/characters/pia-sr/hand.svg"
  15347. }
  15348. },
  15349. foot: {
  15350. height: math.unit(1.83, "feet"),
  15351. name: "Foot",
  15352. image: {
  15353. source: "./media/characters/pia-sr/foot.svg"
  15354. }
  15355. },
  15356. },
  15357. [
  15358. {
  15359. name: "Micro",
  15360. height: math.unit(88, "mm")
  15361. },
  15362. {
  15363. name: "Normal",
  15364. height: math.unit(2, "m"),
  15365. default: true
  15366. },
  15367. {
  15368. name: "Macro",
  15369. height: math.unit(200, "m")
  15370. },
  15371. {
  15372. name: "Megamacro",
  15373. height: math.unit(420, "km")
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15379. {
  15380. front: {
  15381. height: math.unit(8 + 2 / 12, "feet"),
  15382. weight: math.unit(300, "lb"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/kibibyte/front.svg",
  15386. extra: 2221 / 2098,
  15387. bottom: 0.04
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Normal",
  15394. height: math.unit(8 + 2 / 12, "feet"),
  15395. default: true
  15396. },
  15397. {
  15398. name: "Socialable Macro",
  15399. height: math.unit(50, "feet")
  15400. },
  15401. {
  15402. name: "Macro",
  15403. height: math.unit(300, "feet")
  15404. },
  15405. {
  15406. name: "Megamacro",
  15407. height: math.unit(500, "miles")
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(6, "feet"),
  15416. weight: math.unit(150, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/felix/front.svg",
  15420. extra: 762 / 722,
  15421. bottom: 0.02
  15422. }
  15423. },
  15424. frontClothed: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Front (Clothed)",
  15428. image: {
  15429. source: "./media/characters/felix/front-clothed.svg",
  15430. extra: 762 / 722,
  15431. bottom: 0.02
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Normal",
  15438. height: math.unit(6 + 8 / 12, "feet"),
  15439. default: true
  15440. },
  15441. {
  15442. name: "Macro",
  15443. height: math.unit(2600, "feet")
  15444. },
  15445. {
  15446. name: "Megamacro",
  15447. height: math.unit(450, "miles")
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15453. {
  15454. front: {
  15455. height: math.unit(6 + 1 / 12, "feet"),
  15456. weight: math.unit(250, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/tobo/front.svg",
  15460. extra: 608 / 586,
  15461. bottom: 0.023
  15462. }
  15463. },
  15464. back: {
  15465. height: math.unit(6 + 1 / 12, "feet"),
  15466. weight: math.unit(250, "lb"),
  15467. name: "Back",
  15468. image: {
  15469. source: "./media/characters/tobo/back.svg",
  15470. extra: 608 / 586
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Nano",
  15477. height: math.unit(2, "nm")
  15478. },
  15479. {
  15480. name: "Megamicro",
  15481. height: math.unit(0.1, "mm")
  15482. },
  15483. {
  15484. name: "Micro",
  15485. height: math.unit(1, "inch"),
  15486. default: true
  15487. },
  15488. {
  15489. name: "Human-sized",
  15490. height: math.unit(6 + 1 / 12, "feet")
  15491. },
  15492. {
  15493. name: "Macro",
  15494. height: math.unit(250, "feet")
  15495. },
  15496. {
  15497. name: "Megamacro",
  15498. height: math.unit(75, "miles")
  15499. },
  15500. {
  15501. name: "Texas-sized",
  15502. height: math.unit(750, "miles")
  15503. },
  15504. {
  15505. name: "Teramacro",
  15506. height: math.unit(50000, "miles")
  15507. },
  15508. ]
  15509. ))
  15510. characterMakers.push(() => makeCharacter(
  15511. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15512. {
  15513. front: {
  15514. height: math.unit(6, "feet"),
  15515. weight: math.unit(269, "lb"),
  15516. name: "Front",
  15517. image: {
  15518. source: "./media/characters/danny-kapowsky/front.svg",
  15519. extra: 766 / 736,
  15520. bottom: 0.044
  15521. }
  15522. },
  15523. back: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(269, "lb"),
  15526. name: "Back",
  15527. image: {
  15528. source: "./media/characters/danny-kapowsky/back.svg",
  15529. extra: 797 / 760,
  15530. bottom: 0.025
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Macro",
  15537. height: math.unit(150, "feet"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Macro+",
  15542. height: math.unit(200, "feet")
  15543. },
  15544. {
  15545. name: "Macro++",
  15546. height: math.unit(300, "feet")
  15547. },
  15548. {
  15549. name: "Macro+++",
  15550. height: math.unit(400, "feet")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15556. {
  15557. side: {
  15558. height: math.unit(6, "feet"),
  15559. weight: math.unit(170, "lb"),
  15560. name: "Side",
  15561. image: {
  15562. source: "./media/characters/finn/side.svg",
  15563. extra: 1953 / 1807,
  15564. bottom: 0.057
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Megamacro",
  15571. height: math.unit(14445, "feet"),
  15572. default: true
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(5 + 6 / 12, "feet"),
  15581. weight: math.unit(125, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/roy/front.svg",
  15585. extra: 1,
  15586. bottom: 0.11
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Micro",
  15593. height: math.unit(3, "inches"),
  15594. default: true
  15595. },
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(5 + 6 / 12, "feet")
  15599. },
  15600. {
  15601. name: "Lesser Macro",
  15602. height: math.unit(60, "feet")
  15603. },
  15604. {
  15605. name: "Greater Macro",
  15606. height: math.unit(120, "feet")
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(6, "feet"),
  15615. weight: math.unit(100, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/aevsivs/front.svg",
  15619. extra: 1,
  15620. bottom: 0.03
  15621. }
  15622. },
  15623. back: {
  15624. height: math.unit(6, "feet"),
  15625. weight: math.unit(100, "lb"),
  15626. name: "Back",
  15627. image: {
  15628. source: "./media/characters/aevsivs/back.svg"
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Micro",
  15635. height: math.unit(2, "inches"),
  15636. default: true
  15637. },
  15638. {
  15639. name: "Normal",
  15640. height: math.unit(5, "feet")
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(5 + 7 / 12, "feet"),
  15649. weight: math.unit(159, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/hildegard/front.svg",
  15653. extra: 289 / 269,
  15654. bottom: 7.63 / 297.8
  15655. }
  15656. },
  15657. back: {
  15658. height: math.unit(5 + 7 / 12, "feet"),
  15659. weight: math.unit(159, "lb"),
  15660. name: "Back",
  15661. image: {
  15662. source: "./media/characters/hildegard/back.svg",
  15663. extra: 280 / 260,
  15664. bottom: 2.3 / 282
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Normal",
  15671. height: math.unit(5 + 7 / 12, "feet"),
  15672. default: true
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15678. {
  15679. bernard: {
  15680. height: math.unit(2 + 7 / 12, "feet"),
  15681. weight: math.unit(66, "lb"),
  15682. name: "Bernard",
  15683. rename: true,
  15684. image: {
  15685. source: "./media/characters/bernard-wilder/bernard.svg",
  15686. extra: 192 / 128,
  15687. bottom: 0.05
  15688. }
  15689. },
  15690. wilder: {
  15691. height: math.unit(5 + 8 / 12, "feet"),
  15692. weight: math.unit(143, "lb"),
  15693. name: "Wilder",
  15694. rename: true,
  15695. image: {
  15696. source: "./media/characters/bernard-wilder/wilder.svg",
  15697. extra: 361 / 312,
  15698. bottom: 0.02
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(2 + 7 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15712. {
  15713. anthro: {
  15714. height: math.unit(6 + 1 / 12, "feet"),
  15715. weight: math.unit(155, "lb"),
  15716. name: "Anthro",
  15717. image: {
  15718. source: "./media/characters/hearth/anthro.svg",
  15719. extra: 1178/1136,
  15720. bottom: 28/1206
  15721. }
  15722. },
  15723. feral: {
  15724. height: math.unit(3.78, "feet"),
  15725. weight: math.unit(35, "kg"),
  15726. name: "Feral",
  15727. image: {
  15728. source: "./media/characters/hearth/feral.svg",
  15729. extra: 153 / 135,
  15730. bottom: 0.03
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Normal",
  15737. height: math.unit(6 + 1 / 12, "feet"),
  15738. default: true
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(6, "feet"),
  15747. weight: math.unit(182, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/ingrid/front.svg",
  15751. extra: 294 / 268,
  15752. bottom: 0.027
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(6, "feet"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15766. {
  15767. eevee: {
  15768. height: math.unit(2 + 10 / 12, "feet"),
  15769. weight: math.unit(86, "lb"),
  15770. name: "Malgam",
  15771. image: {
  15772. source: "./media/characters/malgam/eevee.svg",
  15773. extra: 952/784,
  15774. bottom: 38/990
  15775. }
  15776. },
  15777. sylveon: {
  15778. height: math.unit(4, "feet"),
  15779. weight: math.unit(101, "lb"),
  15780. name: "Future Malgam",
  15781. rename: true,
  15782. image: {
  15783. source: "./media/characters/malgam/sylveon.svg",
  15784. extra: 371 / 325,
  15785. bottom: 0.015
  15786. }
  15787. },
  15788. gigantamax: {
  15789. height: math.unit(50, "feet"),
  15790. name: "Gigantamax Malgam",
  15791. rename: true,
  15792. image: {
  15793. source: "./media/characters/malgam/gigantamax.svg"
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Normal",
  15800. height: math.unit(2 + 10 / 12, "feet"),
  15801. default: true
  15802. },
  15803. ]
  15804. ))
  15805. characterMakers.push(() => makeCharacter(
  15806. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15807. {
  15808. front: {
  15809. height: math.unit(5 + 11 / 12, "feet"),
  15810. weight: math.unit(188, "lb"),
  15811. name: "Front",
  15812. image: {
  15813. source: "./media/characters/fleur/front.svg",
  15814. extra: 309 / 283,
  15815. bottom: 0.007
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(5 + 11 / 12, "feet"),
  15823. default: true
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(5 + 4 / 12, "feet"),
  15832. weight: math.unit(122, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/jude/front.svg",
  15836. extra: 288 / 273,
  15837. bottom: 0.03
  15838. }
  15839. },
  15840. },
  15841. [
  15842. {
  15843. name: "Normal",
  15844. height: math.unit(5 + 4 / 12, "feet"),
  15845. default: true
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15851. {
  15852. front: {
  15853. height: math.unit(5 + 11 / 12, "feet"),
  15854. weight: math.unit(190, "lb"),
  15855. name: "Front",
  15856. image: {
  15857. source: "./media/characters/seara/front.svg",
  15858. extra: 1,
  15859. bottom: 0.05
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(5 + 11 / 12, "feet"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(16 + 5 / 12, "feet"),
  15876. weight: math.unit(524, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/caspian-lugia/front.svg",
  15880. extra: 1,
  15881. bottom: 0.04
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(16 + 5 / 12, "feet"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(5 + 7 / 12, "feet"),
  15898. weight: math.unit(170, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/mika/front.svg",
  15902. extra: 1,
  15903. bottom: 0.016
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(5 + 7 / 12, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(6 + 2 / 12, "feet"),
  15920. weight: math.unit(268, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/sol/front.svg",
  15924. extra: 247 / 231,
  15925. bottom: 0.05
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Normal",
  15932. height: math.unit(6 + 2 / 12, "feet"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15939. {
  15940. buizel: {
  15941. height: math.unit(2 + 5 / 12, "feet"),
  15942. weight: math.unit(87, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/umiko/buizel.svg",
  15946. extra: 172 / 157,
  15947. bottom: 0.01
  15948. },
  15949. form: "buizel",
  15950. default: true
  15951. },
  15952. floatzel: {
  15953. height: math.unit(5 + 9 / 12, "feet"),
  15954. weight: math.unit(250, "lb"),
  15955. name: "Front",
  15956. image: {
  15957. source: "./media/characters/umiko/floatzel.svg",
  15958. extra: 1076/1006,
  15959. bottom: 15/1091
  15960. },
  15961. form: "floatzel",
  15962. default: true
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(2 + 5 / 12, "feet"),
  15969. form: "buizel",
  15970. default: true
  15971. },
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(5 + 9 / 12, "feet"),
  15975. form: "floatzel",
  15976. default: true
  15977. },
  15978. ],
  15979. {
  15980. "buizel": {
  15981. name: "Buizel"
  15982. },
  15983. "floatzel": {
  15984. name: "Floatzel",
  15985. default: true
  15986. }
  15987. }
  15988. ))
  15989. characterMakers.push(() => makeCharacter(
  15990. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15991. {
  15992. front: {
  15993. height: math.unit(6 + 2 / 12, "feet"),
  15994. weight: math.unit(146, "lb"),
  15995. name: "Front",
  15996. image: {
  15997. source: "./media/characters/iliac/front.svg",
  15998. extra: 389 / 365,
  15999. bottom: 0.035
  16000. }
  16001. },
  16002. },
  16003. [
  16004. {
  16005. name: "Normal",
  16006. height: math.unit(6 + 2 / 12, "feet"),
  16007. default: true
  16008. },
  16009. ]
  16010. ))
  16011. characterMakers.push(() => makeCharacter(
  16012. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16013. {
  16014. front: {
  16015. height: math.unit(6, "feet"),
  16016. weight: math.unit(170, "lb"),
  16017. name: "Front",
  16018. image: {
  16019. source: "./media/characters/topaz/front.svg",
  16020. extra: 317 / 303,
  16021. bottom: 0.055
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(6, "feet"),
  16029. default: true
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(5 + 11 / 12, "feet"),
  16038. weight: math.unit(144, "lb"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/gabriel/front.svg",
  16042. extra: 285 / 262,
  16043. bottom: 0.004
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(5 + 11 / 12, "feet"),
  16051. default: true
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16057. {
  16058. side: {
  16059. height: math.unit(6 + 5 / 12, "feet"),
  16060. weight: math.unit(300, "lb"),
  16061. name: "Side",
  16062. image: {
  16063. source: "./media/characters/tempest-suicune/side.svg",
  16064. extra: 195 / 154,
  16065. bottom: 0.04
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(6 + 5 / 12, "feet"),
  16073. default: true
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16079. {
  16080. front: {
  16081. height: math.unit(7 + 2 / 12, "feet"),
  16082. weight: math.unit(322, "lb"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/vulcan/front.svg",
  16086. extra: 154 / 147,
  16087. bottom: 0.04
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Normal",
  16094. height: math.unit(7 + 2 / 12, "feet"),
  16095. default: true
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16101. {
  16102. front: {
  16103. height: math.unit(5 + 10 / 12, "feet"),
  16104. weight: math.unit(264, "lb"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/gault/front.svg",
  16108. extra: 161 / 140,
  16109. bottom: 0.028
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Normal",
  16116. height: math.unit(5 + 10 / 12, "feet"),
  16117. default: true
  16118. },
  16119. ]
  16120. ))
  16121. characterMakers.push(() => makeCharacter(
  16122. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16123. {
  16124. front: {
  16125. height: math.unit(6, "feet"),
  16126. weight: math.unit(150, "lb"),
  16127. name: "Front",
  16128. image: {
  16129. source: "./media/characters/shard/front.svg",
  16130. extra: 273 / 238,
  16131. bottom: 0.02
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(3 + 6 / 12, "feet"),
  16139. default: true
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16145. {
  16146. front: {
  16147. height: math.unit(5 + 11 / 12, "feet"),
  16148. weight: math.unit(146, "lb"),
  16149. name: "Front",
  16150. image: {
  16151. source: "./media/characters/ashe/front.svg",
  16152. extra: 400 / 373,
  16153. bottom: 0.01
  16154. }
  16155. },
  16156. },
  16157. [
  16158. {
  16159. name: "Normal",
  16160. height: math.unit(5 + 11 / 12, "feet"),
  16161. default: true
  16162. },
  16163. ]
  16164. ))
  16165. characterMakers.push(() => makeCharacter(
  16166. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16167. {
  16168. front: {
  16169. height: math.unit(5 + 5 / 12, "feet"),
  16170. weight: math.unit(135, "lb"),
  16171. name: "Front",
  16172. image: {
  16173. source: "./media/characters/beatrix/front.svg",
  16174. extra: 392 / 379,
  16175. bottom: 0.01
  16176. }
  16177. },
  16178. },
  16179. [
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(6, "feet"),
  16183. default: true
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16189. {
  16190. front: {
  16191. height: math.unit(6 + 2/12, "feet"),
  16192. weight: math.unit(135, "lb"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/ignatius/front.svg",
  16196. extra: 1380/1259,
  16197. bottom: 27/1407
  16198. }
  16199. },
  16200. },
  16201. [
  16202. {
  16203. name: "Normal",
  16204. height: math.unit(6 + 2/12, "feet"),
  16205. default: true
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16211. {
  16212. front: {
  16213. height: math.unit(6 + 2 / 12, "feet"),
  16214. weight: math.unit(138, "lb"),
  16215. name: "Front",
  16216. image: {
  16217. source: "./media/characters/mei-li/front.svg",
  16218. extra: 237 / 229,
  16219. bottom: 0.03
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(6 + 2 / 12, "feet"),
  16227. default: true
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(2 + 4 / 12, "feet"),
  16236. weight: math.unit(62, "lb"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/puru/front.svg",
  16240. extra: 206 / 149,
  16241. bottom: 0.06
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Normal",
  16248. height: math.unit(2 + 4 / 12, "feet"),
  16249. default: true
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16255. {
  16256. anthro: {
  16257. height: math.unit(5 + 8/12, "feet"),
  16258. weight: math.unit(200, "lb"),
  16259. energyNeed: math.unit(2000, "kcal"),
  16260. name: "Anthro",
  16261. image: {
  16262. source: "./media/characters/kee/anthro.svg",
  16263. extra: 3251/3184,
  16264. bottom: 250/3501
  16265. }
  16266. },
  16267. taur: {
  16268. height: math.unit(11, "feet"),
  16269. weight: math.unit(500, "lb"),
  16270. energyNeed: math.unit(5000, "kcal"),
  16271. name: "Taur",
  16272. image: {
  16273. source: "./media/characters/kee/taur.svg",
  16274. extra: 1362/1320,
  16275. bottom: 83/1445
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(5 + 8/12, "feet"),
  16283. default: true
  16284. },
  16285. {
  16286. name: "Macro",
  16287. height: math.unit(35, "feet")
  16288. },
  16289. ]
  16290. ))
  16291. characterMakers.push(() => makeCharacter(
  16292. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16293. {
  16294. anthro: {
  16295. height: math.unit(7, "feet"),
  16296. weight: math.unit(190, "lb"),
  16297. name: "Anthro",
  16298. image: {
  16299. source: "./media/characters/cobalt-dracha/anthro.svg",
  16300. extra: 231 / 225,
  16301. bottom: 0.04
  16302. }
  16303. },
  16304. feral: {
  16305. height: math.unit(9 + 7 / 12, "feet"),
  16306. weight: math.unit(294, "lb"),
  16307. name: "Feral",
  16308. image: {
  16309. source: "./media/characters/cobalt-dracha/feral.svg",
  16310. extra: 692 / 633,
  16311. bottom: 0.05
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Normal",
  16318. height: math.unit(7, "feet"),
  16319. default: true
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16325. {
  16326. fallen: {
  16327. height: math.unit(11 + 8 / 12, "feet"),
  16328. weight: math.unit(485, "lb"),
  16329. name: "Java (Fallen)",
  16330. rename: true,
  16331. image: {
  16332. source: "./media/characters/java/fallen.svg",
  16333. extra: 226 / 208,
  16334. bottom: 0.005
  16335. }
  16336. },
  16337. godkin: {
  16338. height: math.unit(10 + 6 / 12, "feet"),
  16339. weight: math.unit(328, "lb"),
  16340. name: "Java (Godkin)",
  16341. rename: true,
  16342. image: {
  16343. source: "./media/characters/java/godkin.svg",
  16344. extra: 1104/1068,
  16345. bottom: 36/1140
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(11 + 8 / 12, "feet"),
  16353. default: true
  16354. },
  16355. ]
  16356. ))
  16357. characterMakers.push(() => makeCharacter(
  16358. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16359. {
  16360. front: {
  16361. height: math.unit(5 + 9 / 12, "feet"),
  16362. weight: math.unit(170, "lb"),
  16363. name: "Front",
  16364. image: {
  16365. source: "./media/characters/purna/front.svg",
  16366. extra: 239 / 229,
  16367. bottom: 0.01
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(5 + 9 / 12, "feet"),
  16375. default: true
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(5 + 9 / 12, "feet"),
  16384. weight: math.unit(142, "lb"),
  16385. name: "Front",
  16386. image: {
  16387. source: "./media/characters/kuva/front.svg",
  16388. extra: 281 / 271,
  16389. bottom: 0.006
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Normal",
  16396. height: math.unit(5 + 9 / 12, "feet"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16403. {
  16404. anthro: {
  16405. height: math.unit(9 + 2 / 12, "feet"),
  16406. weight: math.unit(270, "lb"),
  16407. name: "Anthro",
  16408. image: {
  16409. source: "./media/characters/embra/anthro.svg",
  16410. extra: 200 / 187,
  16411. bottom: 0.02
  16412. }
  16413. },
  16414. feral: {
  16415. height: math.unit(18 + 8 / 12, "feet"),
  16416. weight: math.unit(576, "lb"),
  16417. name: "Feral",
  16418. image: {
  16419. source: "./media/characters/embra/feral.svg",
  16420. extra: 152 / 137,
  16421. bottom: 0.037
  16422. }
  16423. },
  16424. },
  16425. [
  16426. {
  16427. name: "Normal",
  16428. height: math.unit(9 + 2 / 12, "feet"),
  16429. default: true
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16435. {
  16436. anthro: {
  16437. height: math.unit(10 + 9 / 12, "feet"),
  16438. weight: math.unit(224, "lb"),
  16439. name: "Anthro",
  16440. image: {
  16441. source: "./media/characters/grottos/anthro.svg",
  16442. extra: 350 / 332,
  16443. bottom: 0.045
  16444. }
  16445. },
  16446. feral: {
  16447. height: math.unit(20 + 7 / 12, "feet"),
  16448. weight: math.unit(629, "lb"),
  16449. name: "Feral",
  16450. image: {
  16451. source: "./media/characters/grottos/feral.svg",
  16452. extra: 207 / 190,
  16453. bottom: 0.05
  16454. }
  16455. },
  16456. },
  16457. [
  16458. {
  16459. name: "Normal",
  16460. height: math.unit(10 + 9 / 12, "feet"),
  16461. default: true
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16467. {
  16468. anthro: {
  16469. height: math.unit(9 + 6 / 12, "feet"),
  16470. weight: math.unit(298, "lb"),
  16471. name: "Anthro",
  16472. image: {
  16473. source: "./media/characters/frifna/anthro.svg",
  16474. extra: 282 / 269,
  16475. bottom: 0.015
  16476. }
  16477. },
  16478. feral: {
  16479. height: math.unit(16 + 2 / 12, "feet"),
  16480. weight: math.unit(624, "lb"),
  16481. name: "Feral",
  16482. image: {
  16483. source: "./media/characters/frifna/feral.svg"
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(9 + 6 / 12, "feet"),
  16491. default: true
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16497. {
  16498. front: {
  16499. height: math.unit(6 + 2 / 12, "feet"),
  16500. weight: math.unit(168, "lb"),
  16501. name: "Front",
  16502. image: {
  16503. source: "./media/characters/elise/front.svg",
  16504. extra: 276 / 271
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(6 + 2 / 12, "feet"),
  16512. default: true
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16518. {
  16519. front: {
  16520. height: math.unit(5 + 10 / 12, "feet"),
  16521. weight: math.unit(210, "lb"),
  16522. name: "Front",
  16523. image: {
  16524. source: "./media/characters/glade/front.svg",
  16525. extra: 258 / 247,
  16526. bottom: 0.008
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(5 + 10 / 12, "feet"),
  16534. default: true
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16540. {
  16541. front: {
  16542. height: math.unit(5 + 10 / 12, "feet"),
  16543. weight: math.unit(129, "lb"),
  16544. name: "Front",
  16545. image: {
  16546. source: "./media/characters/rina/front.svg",
  16547. extra: 266 / 255,
  16548. bottom: 0.005
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(5 + 10 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(6 + 1 / 12, "feet"),
  16565. weight: math.unit(192, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/veronica/front.svg",
  16569. extra: 319 / 309,
  16570. bottom: 0.005
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(6 + 1 / 12, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(9 + 3 / 12, "feet"),
  16587. weight: math.unit(1100, "lb"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/braxton/front.svg",
  16591. extra: 1057 / 984,
  16592. bottom: 0.05
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(9 + 3 / 12, "feet")
  16600. },
  16601. {
  16602. name: "Giant",
  16603. height: math.unit(300, "feet"),
  16604. default: true
  16605. },
  16606. {
  16607. name: "Macro",
  16608. height: math.unit(700, "feet")
  16609. },
  16610. {
  16611. name: "Megamacro",
  16612. height: math.unit(6000, "feet")
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16618. {
  16619. front: {
  16620. height: math.unit(6 + 7 / 12, "feet"),
  16621. weight: math.unit(150, "lb"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/blue-feyonics/front.svg",
  16625. extra: 1403 / 1306,
  16626. bottom: 0.047
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(6 + 7 / 12, "feet"),
  16634. default: true
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(1.8, "meters"),
  16643. weight: math.unit(60, "kg"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/maxwell/front.svg",
  16647. extra: 2060 / 1873
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Micro",
  16654. height: math.unit(1, "mm")
  16655. },
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(1.8, "meter"),
  16659. default: true
  16660. },
  16661. {
  16662. name: "Macro",
  16663. height: math.unit(30, "meters")
  16664. },
  16665. {
  16666. name: "Megamacro",
  16667. height: math.unit(10, "km")
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6, "feet"),
  16676. weight: math.unit(150, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/jack/front.svg",
  16680. extra: 1754 / 1640,
  16681. bottom: 0.01
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(80000, "feet"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Max size",
  16693. height: math.unit(10, "lightyears")
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16699. {
  16700. urban: {
  16701. height: math.unit(5, "feet"),
  16702. weight: math.unit(240, "lb"),
  16703. name: "Urban",
  16704. image: {
  16705. source: "./media/characters/cafat/urban.svg",
  16706. extra: 1223/1126,
  16707. bottom: 205/1428
  16708. }
  16709. },
  16710. summer: {
  16711. height: math.unit(5, "feet"),
  16712. weight: math.unit(240, "lb"),
  16713. name: "Summer",
  16714. image: {
  16715. source: "./media/characters/cafat/summer.svg",
  16716. extra: 1223/1126,
  16717. bottom: 205/1428
  16718. }
  16719. },
  16720. winter: {
  16721. height: math.unit(5, "feet"),
  16722. weight: math.unit(240, "lb"),
  16723. name: "Winter",
  16724. image: {
  16725. source: "./media/characters/cafat/winter.svg",
  16726. extra: 1223/1126,
  16727. bottom: 205/1428
  16728. }
  16729. },
  16730. lingerie: {
  16731. height: math.unit(5, "feet"),
  16732. weight: math.unit(240, "lb"),
  16733. name: "Lingerie",
  16734. image: {
  16735. source: "./media/characters/cafat/lingerie.svg",
  16736. extra: 1223/1126,
  16737. bottom: 205/1428
  16738. }
  16739. },
  16740. upright: {
  16741. height: math.unit(6.3, "feet"),
  16742. weight: math.unit(240, "lb"),
  16743. name: "Upright",
  16744. image: {
  16745. source: "./media/characters/cafat/upright.svg",
  16746. bottom: 0.01
  16747. }
  16748. },
  16749. uprightFull: {
  16750. height: math.unit(6.3, "feet"),
  16751. weight: math.unit(240, "lb"),
  16752. name: "Upright (Full)",
  16753. image: {
  16754. source: "./media/characters/cafat/upright-full.svg",
  16755. bottom: 0.01
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Small",
  16762. height: math.unit(5, "feet"),
  16763. default: true
  16764. },
  16765. {
  16766. name: "Large",
  16767. height: math.unit(13, "feet")
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(150, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/verin-raharra/front.svg",
  16780. extra: 5019 / 4835,
  16781. bottom: 0.023
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(7 + 5 / 12, "feet"),
  16789. default: true
  16790. },
  16791. {
  16792. name: "Upsized",
  16793. height: math.unit(20, "feet")
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(7, "feet"),
  16802. weight: math.unit(230, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/nakata/front.svg",
  16806. extra: 1.005,
  16807. bottom: 0.01
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(7, "feet"),
  16815. default: true
  16816. },
  16817. {
  16818. name: "Big",
  16819. height: math.unit(14, "feet")
  16820. },
  16821. {
  16822. name: "Macro",
  16823. height: math.unit(400, "feet")
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(4.91, "feet"),
  16832. weight: math.unit(100, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/lily/front.svg",
  16836. extra: 1585 / 1415,
  16837. bottom: 0.02
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(4.91, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16851. {
  16852. laying: {
  16853. height: math.unit(4 + 4 / 12, "feet"),
  16854. weight: math.unit(600, "lb"),
  16855. name: "Laying",
  16856. image: {
  16857. source: "./media/characters/sheila/laying.svg",
  16858. extra: 1333 / 1265,
  16859. bottom: 0.16
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(4 + 4 / 12, "feet"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(6, "feet"),
  16876. weight: math.unit(190, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/sax/front.svg",
  16880. extra: 1187 / 973,
  16881. bottom: 0.042
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Micro",
  16888. height: math.unit(4, "inches"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(6, "feet"),
  16898. weight: math.unit(150, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/pandora/front.svg",
  16902. extra: 2720 / 2556,
  16903. bottom: 0.015
  16904. }
  16905. },
  16906. back: {
  16907. height: math.unit(6, "feet"),
  16908. weight: math.unit(150, "lb"),
  16909. name: "Back",
  16910. image: {
  16911. source: "./media/characters/pandora/back.svg",
  16912. extra: 2720 / 2556,
  16913. bottom: 0.01
  16914. }
  16915. },
  16916. beans: {
  16917. height: math.unit(6 / 8, "feet"),
  16918. name: "Beans",
  16919. image: {
  16920. source: "./media/characters/pandora/beans.svg"
  16921. }
  16922. },
  16923. collar: {
  16924. height: math.unit(0.31, "feet"),
  16925. name: "Collar",
  16926. image: {
  16927. source: "./media/characters/pandora/collar.svg"
  16928. }
  16929. },
  16930. skirt: {
  16931. height: math.unit(6, "feet"),
  16932. weight: math.unit(150, "lb"),
  16933. name: "Skirt",
  16934. image: {
  16935. source: "./media/characters/pandora/skirt.svg",
  16936. extra: 1622 / 1525,
  16937. bottom: 0.015
  16938. }
  16939. },
  16940. hoodie: {
  16941. height: math.unit(6, "feet"),
  16942. weight: math.unit(150, "lb"),
  16943. name: "Hoodie",
  16944. image: {
  16945. source: "./media/characters/pandora/hoodie.svg",
  16946. extra: 1622 / 1525,
  16947. bottom: 0.015
  16948. }
  16949. },
  16950. casual: {
  16951. height: math.unit(6, "feet"),
  16952. weight: math.unit(150, "lb"),
  16953. name: "Casual",
  16954. image: {
  16955. source: "./media/characters/pandora/casual.svg",
  16956. extra: 1622 / 1525,
  16957. bottom: 0.015
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(6, "feet")
  16965. },
  16966. {
  16967. name: "Big Steppy",
  16968. height: math.unit(1, "km"),
  16969. default: true
  16970. },
  16971. {
  16972. name: "Galactic Steppy",
  16973. height: math.unit(2, "gigameters")
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16979. {
  16980. side: {
  16981. height: math.unit(10, "feet"),
  16982. weight: math.unit(800, "kg"),
  16983. name: "Side",
  16984. image: {
  16985. source: "./media/characters/venio-darcony/side.svg",
  16986. extra: 1373 / 1003,
  16987. bottom: 0.037
  16988. }
  16989. },
  16990. front: {
  16991. height: math.unit(19, "feet"),
  16992. weight: math.unit(800, "kg"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/venio-darcony/front.svg"
  16996. }
  16997. },
  16998. back: {
  16999. height: math.unit(19, "feet"),
  17000. weight: math.unit(800, "kg"),
  17001. name: "Back",
  17002. image: {
  17003. source: "./media/characters/venio-darcony/back.svg"
  17004. }
  17005. },
  17006. sideNsfw: {
  17007. height: math.unit(10, "feet"),
  17008. weight: math.unit(800, "kg"),
  17009. name: "Side (NSFW)",
  17010. image: {
  17011. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17012. extra: 1373 / 1003,
  17013. bottom: 0.037
  17014. }
  17015. },
  17016. frontNsfw: {
  17017. height: math.unit(19, "feet"),
  17018. weight: math.unit(800, "kg"),
  17019. name: "Front (NSFW)",
  17020. image: {
  17021. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17022. }
  17023. },
  17024. backNsfw: {
  17025. height: math.unit(19, "feet"),
  17026. weight: math.unit(800, "kg"),
  17027. name: "Back (NSFW)",
  17028. image: {
  17029. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17030. }
  17031. },
  17032. sideArmored: {
  17033. height: math.unit(10, "feet"),
  17034. weight: math.unit(800, "kg"),
  17035. name: "Side (Armored)",
  17036. image: {
  17037. source: "./media/characters/venio-darcony/side-armored.svg",
  17038. extra: 1373 / 1003,
  17039. bottom: 0.037
  17040. }
  17041. },
  17042. frontArmored: {
  17043. height: math.unit(19, "feet"),
  17044. weight: math.unit(900, "kg"),
  17045. name: "Front (Armored)",
  17046. image: {
  17047. source: "./media/characters/venio-darcony/front-armored.svg"
  17048. }
  17049. },
  17050. backArmored: {
  17051. height: math.unit(19, "feet"),
  17052. weight: math.unit(900, "kg"),
  17053. name: "Back (Armored)",
  17054. image: {
  17055. source: "./media/characters/venio-darcony/back-armored.svg"
  17056. }
  17057. },
  17058. sword: {
  17059. height: math.unit(10, "feet"),
  17060. weight: math.unit(50, "lb"),
  17061. name: "Sword",
  17062. image: {
  17063. source: "./media/characters/venio-darcony/sword.svg"
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(10, "feet")
  17071. },
  17072. {
  17073. name: "Macro",
  17074. height: math.unit(130, "feet"),
  17075. default: true
  17076. },
  17077. {
  17078. name: "Macro+",
  17079. height: math.unit(240, "feet")
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(6, "feet"),
  17088. weight: math.unit(150, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/veski/front.svg",
  17092. extra: 1299 / 1225,
  17093. bottom: 0.04
  17094. }
  17095. },
  17096. back: {
  17097. height: math.unit(6, "feet"),
  17098. weight: math.unit(150, "lb"),
  17099. name: "Back",
  17100. image: {
  17101. source: "./media/characters/veski/back.svg",
  17102. extra: 1299 / 1225,
  17103. bottom: 0.008
  17104. }
  17105. },
  17106. maw: {
  17107. height: math.unit(1.5 * 1.21, "feet"),
  17108. name: "Maw",
  17109. image: {
  17110. source: "./media/characters/veski/maw.svg"
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Macro",
  17117. height: math.unit(2, "km"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17124. {
  17125. front: {
  17126. height: math.unit(5 + 7 / 12, "feet"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/isabelle/front.svg",
  17130. extra: 2130 / 1976,
  17131. bottom: 0.05
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Supermicro",
  17138. height: math.unit(10, "micrometers")
  17139. },
  17140. {
  17141. name: "Micro",
  17142. height: math.unit(1, "inch")
  17143. },
  17144. {
  17145. name: "Tiny",
  17146. height: math.unit(5, "inches")
  17147. },
  17148. {
  17149. name: "Standard",
  17150. height: math.unit(5 + 7 / 12, "inches")
  17151. },
  17152. {
  17153. name: "Macro",
  17154. height: math.unit(80, "meters"),
  17155. default: true
  17156. },
  17157. {
  17158. name: "Megamacro",
  17159. height: math.unit(250, "meters")
  17160. },
  17161. {
  17162. name: "Gigamacro",
  17163. height: math.unit(5, "km")
  17164. },
  17165. {
  17166. name: "Cosmic",
  17167. height: math.unit(2.5e6, "miles")
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17173. {
  17174. front: {
  17175. height: math.unit(6, "feet"),
  17176. weight: math.unit(150, "lb"),
  17177. name: "Front",
  17178. image: {
  17179. source: "./media/characters/hanzo/front.svg",
  17180. extra: 374 / 344,
  17181. bottom: 0.02
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(8, "feet"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(7, "feet"),
  17198. weight: math.unit(130, "lb"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/anna/front.svg",
  17202. extra: 169 / 145,
  17203. bottom: 0.06
  17204. }
  17205. },
  17206. full: {
  17207. height: math.unit(4.96, "feet"),
  17208. weight: math.unit(220, "lb"),
  17209. name: "Full",
  17210. image: {
  17211. source: "./media/characters/anna/full.svg",
  17212. extra: 138 / 114,
  17213. bottom: 0.15
  17214. }
  17215. },
  17216. tongue: {
  17217. height: math.unit(2.53, "feet"),
  17218. name: "Tongue",
  17219. image: {
  17220. source: "./media/characters/anna/tongue.svg"
  17221. }
  17222. },
  17223. },
  17224. [
  17225. {
  17226. name: "Normal",
  17227. height: math.unit(7, "feet"),
  17228. default: true
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17234. {
  17235. front: {
  17236. height: math.unit(7, "feet"),
  17237. weight: math.unit(150, "lb"),
  17238. name: "Front",
  17239. image: {
  17240. source: "./media/characters/ian-corvid/front.svg",
  17241. extra: 150 / 142,
  17242. bottom: 0.02
  17243. }
  17244. },
  17245. back: {
  17246. height: math.unit(7, "feet"),
  17247. weight: math.unit(150, "lb"),
  17248. name: "Back",
  17249. image: {
  17250. source: "./media/characters/ian-corvid/back.svg",
  17251. extra: 150 / 143,
  17252. bottom: 0.01
  17253. }
  17254. },
  17255. stomping: {
  17256. height: math.unit(7, "feet"),
  17257. weight: math.unit(150, "lb"),
  17258. name: "Stomping",
  17259. image: {
  17260. source: "./media/characters/ian-corvid/stomping.svg",
  17261. extra: 76 / 72
  17262. }
  17263. },
  17264. sitting: {
  17265. height: math.unit(7 / 1.8, "feet"),
  17266. weight: math.unit(150, "lb"),
  17267. name: "Sitting",
  17268. image: {
  17269. source: "./media/characters/ian-corvid/sitting.svg",
  17270. extra: 1400 / 1269,
  17271. bottom: 0.15
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Tiny Microw",
  17278. height: math.unit(1, "inch")
  17279. },
  17280. {
  17281. name: "Microw",
  17282. height: math.unit(6, "inches")
  17283. },
  17284. {
  17285. name: "Crow",
  17286. height: math.unit(7 + 1 / 12, "feet"),
  17287. default: true
  17288. },
  17289. {
  17290. name: "Macrow",
  17291. height: math.unit(176, "feet")
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(5 + 7 / 12, "feet"),
  17300. weight: math.unit(147, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/natalie-kellon/front.svg",
  17304. extra: 1214 / 1141,
  17305. bottom: 0.02
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Micro",
  17312. height: math.unit(1 / 16, "inch")
  17313. },
  17314. {
  17315. name: "Tiny",
  17316. height: math.unit(4, "inches")
  17317. },
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(5 + 7 / 12, "feet"),
  17321. default: true
  17322. },
  17323. {
  17324. name: "Amazon",
  17325. height: math.unit(12, "feet")
  17326. },
  17327. {
  17328. name: "Giantess",
  17329. height: math.unit(160, "meters")
  17330. },
  17331. {
  17332. name: "Titaness",
  17333. height: math.unit(800, "meters")
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17339. {
  17340. front: {
  17341. height: math.unit(6, "feet"),
  17342. weight: math.unit(150, "lb"),
  17343. name: "Front",
  17344. image: {
  17345. source: "./media/characters/alluria/front.svg",
  17346. extra: 806 / 738,
  17347. bottom: 0.01
  17348. }
  17349. },
  17350. side: {
  17351. height: math.unit(6, "feet"),
  17352. weight: math.unit(150, "lb"),
  17353. name: "Side",
  17354. image: {
  17355. source: "./media/characters/alluria/side.svg",
  17356. extra: 800 / 750,
  17357. }
  17358. },
  17359. back: {
  17360. height: math.unit(6, "feet"),
  17361. weight: math.unit(150, "lb"),
  17362. name: "Back",
  17363. image: {
  17364. source: "./media/characters/alluria/back.svg",
  17365. extra: 806 / 738,
  17366. }
  17367. },
  17368. frontMaid: {
  17369. height: math.unit(6, "feet"),
  17370. weight: math.unit(150, "lb"),
  17371. name: "Front (Maid)",
  17372. image: {
  17373. source: "./media/characters/alluria/front-maid.svg",
  17374. extra: 806 / 738,
  17375. bottom: 0.01
  17376. }
  17377. },
  17378. sideMaid: {
  17379. height: math.unit(6, "feet"),
  17380. weight: math.unit(150, "lb"),
  17381. name: "Side (Maid)",
  17382. image: {
  17383. source: "./media/characters/alluria/side-maid.svg",
  17384. extra: 800 / 750,
  17385. bottom: 0.005
  17386. }
  17387. },
  17388. backMaid: {
  17389. height: math.unit(6, "feet"),
  17390. weight: math.unit(150, "lb"),
  17391. name: "Back (Maid)",
  17392. image: {
  17393. source: "./media/characters/alluria/back-maid.svg",
  17394. extra: 806 / 738,
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Micro",
  17401. height: math.unit(6, "inches"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17408. {
  17409. front: {
  17410. height: math.unit(6, "feet"),
  17411. weight: math.unit(150, "lb"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/kyle/front.svg",
  17415. extra: 1069 / 962,
  17416. bottom: 77.228 / 1727.45
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Macro",
  17423. height: math.unit(150, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(300, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/duncan/front.svg",
  17437. extra: 1650 / 1482,
  17438. bottom: 0.05
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Macro",
  17445. height: math.unit(100, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(5 + 4 / 12, "feet"),
  17455. weight: math.unit(220, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/memory/front.svg",
  17459. extra: 3641 / 3545,
  17460. bottom: 0.03
  17461. }
  17462. },
  17463. back: {
  17464. height: math.unit(5 + 4 / 12, "feet"),
  17465. weight: math.unit(220, "lb"),
  17466. name: "Back",
  17467. image: {
  17468. source: "./media/characters/memory/back.svg",
  17469. extra: 3641 / 3545,
  17470. bottom: 0.025
  17471. }
  17472. },
  17473. frontSkirt: {
  17474. height: math.unit(5 + 4 / 12, "feet"),
  17475. weight: math.unit(220, "lb"),
  17476. name: "Front (Skirt)",
  17477. image: {
  17478. source: "./media/characters/memory/front-skirt.svg",
  17479. extra: 3641 / 3545,
  17480. bottom: 0.03
  17481. }
  17482. },
  17483. frontDress: {
  17484. height: math.unit(5 + 4 / 12, "feet"),
  17485. weight: math.unit(220, "lb"),
  17486. name: "Front (Dress)",
  17487. image: {
  17488. source: "./media/characters/memory/front-dress.svg",
  17489. extra: 3641 / 3545,
  17490. bottom: 0.03
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Micro",
  17497. height: math.unit(6, "inches"),
  17498. default: true
  17499. },
  17500. {
  17501. name: "Normal",
  17502. height: math.unit(5 + 4 / 12, "feet")
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17508. {
  17509. front: {
  17510. height: math.unit(4 + 11 / 12, "feet"),
  17511. weight: math.unit(100, "lb"),
  17512. name: "Front",
  17513. image: {
  17514. source: "./media/characters/luno/front.svg",
  17515. extra: 1535 / 1487,
  17516. bottom: 0.03
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Micro",
  17523. height: math.unit(3, "inches")
  17524. },
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(4 + 11 / 12, "feet"),
  17528. default: true
  17529. },
  17530. {
  17531. name: "Macro",
  17532. height: math.unit(300, "feet")
  17533. },
  17534. {
  17535. name: "Megamacro",
  17536. height: math.unit(700, "miles")
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17542. {
  17543. front: {
  17544. height: math.unit(6 + 2 / 12, "feet"),
  17545. weight: math.unit(170, "lb"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/jamesy/front.svg",
  17549. extra: 440 / 382,
  17550. bottom: 0.005
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Micro",
  17557. height: math.unit(3, "inches")
  17558. },
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(6 + 2 / 12, "feet"),
  17562. default: true
  17563. },
  17564. {
  17565. name: "Macro",
  17566. height: math.unit(300, "feet")
  17567. },
  17568. {
  17569. name: "Megamacro",
  17570. height: math.unit(700, "miles")
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(6, "feet"),
  17579. weight: math.unit(160, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/mark/front.svg",
  17583. extra: 3300 / 3100,
  17584. bottom: 136.42 / 3440.47
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Macro",
  17591. height: math.unit(120, "meters")
  17592. },
  17593. {
  17594. name: "Bigger Macro",
  17595. height: math.unit(350, "meters")
  17596. },
  17597. {
  17598. name: "Megamacro",
  17599. height: math.unit(8, "km"),
  17600. default: true
  17601. },
  17602. {
  17603. name: "Continental",
  17604. height: math.unit(4550, "km")
  17605. },
  17606. {
  17607. name: "Planetary",
  17608. height: math.unit(65000, "km")
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17614. {
  17615. front: {
  17616. height: math.unit(6, "feet"),
  17617. weight: math.unit(400, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/mac/front.svg",
  17621. extra: 1048 / 987.7,
  17622. bottom: 60 / 1107.6,
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Macro",
  17629. height: math.unit(500, "feet"),
  17630. default: true
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17636. {
  17637. front: {
  17638. height: math.unit(5 + 2 / 12, "feet"),
  17639. weight: math.unit(190, "lb"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/bari/front.svg",
  17643. extra: 3156 / 2880,
  17644. bottom: 0.03
  17645. }
  17646. },
  17647. back: {
  17648. height: math.unit(5 + 2 / 12, "feet"),
  17649. weight: math.unit(190, "lb"),
  17650. name: "Back",
  17651. image: {
  17652. source: "./media/characters/bari/back.svg",
  17653. extra: 3260 / 2834,
  17654. bottom: 0.025
  17655. }
  17656. },
  17657. frontPlush: {
  17658. height: math.unit(5 + 2 / 12, "feet"),
  17659. weight: math.unit(190, "lb"),
  17660. name: "Front (Plush)",
  17661. image: {
  17662. source: "./media/characters/bari/front-plush.svg",
  17663. extra: 1112 / 1061,
  17664. bottom: 0.002
  17665. }
  17666. },
  17667. },
  17668. [
  17669. {
  17670. name: "Micro",
  17671. height: math.unit(3, "inches")
  17672. },
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(5 + 2 / 12, "feet"),
  17676. default: true
  17677. },
  17678. {
  17679. name: "Macro",
  17680. height: math.unit(20, "feet")
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17686. {
  17687. front: {
  17688. height: math.unit(6 + 1 / 12, "feet"),
  17689. weight: math.unit(275, "lb"),
  17690. name: "Front",
  17691. image: {
  17692. source: "./media/characters/hunter-misha-raven/front.svg"
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Mortal",
  17699. height: math.unit(6 + 1 / 12, "feet")
  17700. },
  17701. {
  17702. name: "Divine",
  17703. height: math.unit(1.12134e34, "parsecs"),
  17704. default: true
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17710. {
  17711. front: {
  17712. height: math.unit(6 + 3 / 12, "feet"),
  17713. weight: math.unit(220, "lb"),
  17714. name: "Front",
  17715. image: {
  17716. source: "./media/characters/max-calore/front.svg",
  17717. extra: 1700 / 1648,
  17718. bottom: 0.01
  17719. }
  17720. },
  17721. back: {
  17722. height: math.unit(6 + 3 / 12, "feet"),
  17723. weight: math.unit(220, "lb"),
  17724. name: "Back",
  17725. image: {
  17726. source: "./media/characters/max-calore/back.svg",
  17727. extra: 1700 / 1648,
  17728. bottom: 0.01
  17729. }
  17730. },
  17731. },
  17732. [
  17733. {
  17734. name: "Normal",
  17735. height: math.unit(6 + 3 / 12, "feet"),
  17736. default: true
  17737. },
  17738. ]
  17739. ))
  17740. characterMakers.push(() => makeCharacter(
  17741. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17742. {
  17743. side: {
  17744. height: math.unit(2 + 8 / 12, "feet"),
  17745. weight: math.unit(99, "lb"),
  17746. name: "Side",
  17747. image: {
  17748. source: "./media/characters/aspen/side.svg",
  17749. extra: 152 / 138,
  17750. bottom: 0.032
  17751. }
  17752. },
  17753. },
  17754. [
  17755. {
  17756. name: "Normal",
  17757. height: math.unit(2 + 8 / 12, "feet"),
  17758. default: true
  17759. },
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17764. {
  17765. side: {
  17766. height: math.unit(3 + 2 / 12, "feet"),
  17767. weight: math.unit(224, "lb"),
  17768. name: "Side",
  17769. image: {
  17770. source: "./media/characters/sheila-feral-wolf/side.svg",
  17771. extra: 179 / 166,
  17772. bottom: 0.03
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(3 + 2 / 12, "feet"),
  17780. default: true
  17781. },
  17782. ]
  17783. ))
  17784. characterMakers.push(() => makeCharacter(
  17785. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17786. {
  17787. side: {
  17788. height: math.unit(1 + 9 / 12, "feet"),
  17789. weight: math.unit(38, "lb"),
  17790. name: "Side",
  17791. image: {
  17792. source: "./media/characters/michelle/side.svg",
  17793. extra: 147 / 136.7,
  17794. bottom: 0.03
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(1 + 9 / 12, "feet"),
  17802. default: true
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(1.54, "feet"),
  17811. weight: math.unit(50, "lb"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/nino/front.svg"
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(1.54, "feet"),
  17822. default: true
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(1.49, "feet"),
  17831. weight: math.unit(45, "lb"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/viola/front.svg"
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(1.49, "feet"),
  17842. default: true
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(6 + 5 / 12, "feet"),
  17851. weight: math.unit(580, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/atlas/front.svg",
  17855. extra: 298.5 / 290,
  17856. bottom: 0.015
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(6 + 5 / 12, "feet"),
  17864. default: true
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17870. {
  17871. side: {
  17872. height: math.unit(15.6, "inches"),
  17873. weight: math.unit(10, "lb"),
  17874. name: "Side",
  17875. image: {
  17876. source: "./media/characters/davy/side.svg",
  17877. extra: 200 / 170,
  17878. bottom: 0.01
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(15.6, "inches"),
  17886. default: true
  17887. },
  17888. ]
  17889. ))
  17890. characterMakers.push(() => makeCharacter(
  17891. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17892. {
  17893. side: {
  17894. height: math.unit(4 + 8 / 12, "feet"),
  17895. weight: math.unit(166, "lb"),
  17896. name: "Side",
  17897. image: {
  17898. source: "./media/characters/fiona/side.svg",
  17899. extra: 232 / 220,
  17900. bottom: 0.03
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(4 + 8 / 12, "feet"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17914. {
  17915. front: {
  17916. height: math.unit(26, "inches"),
  17917. weight: math.unit(35, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/lyla/front.svg",
  17921. bottom: 0.1
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(3, "feet"),
  17929. default: true
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17935. {
  17936. side: {
  17937. height: math.unit(1.8, "feet"),
  17938. weight: math.unit(44, "lb"),
  17939. name: "Side",
  17940. image: {
  17941. source: "./media/characters/perseus/side.svg",
  17942. bottom: 0.21
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(1.8, "feet"),
  17950. default: true
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17956. {
  17957. side: {
  17958. height: math.unit(4 + 2 / 12, "feet"),
  17959. weight: math.unit(20, "lb"),
  17960. name: "Side",
  17961. image: {
  17962. source: "./media/characters/remus/side.svg"
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Normal",
  17969. height: math.unit(4 + 2 / 12, "feet"),
  17970. default: true
  17971. },
  17972. ]
  17973. ))
  17974. characterMakers.push(() => makeCharacter(
  17975. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17976. {
  17977. front: {
  17978. height: math.unit(4 + 11 / 12, "feet"),
  17979. weight: math.unit(114, "lb"),
  17980. name: "Front",
  17981. image: {
  17982. source: "./media/characters/raf/front.svg",
  17983. extra: 1504/1339,
  17984. bottom: 26/1530
  17985. }
  17986. },
  17987. side: {
  17988. height: math.unit(4 + 11 / 12, "feet"),
  17989. weight: math.unit(114, "lb"),
  17990. name: "Side",
  17991. image: {
  17992. source: "./media/characters/raf/side.svg",
  17993. extra: 1466/1316,
  17994. bottom: 29/1495
  17995. }
  17996. },
  17997. paw: {
  17998. height: math.unit(1.45, "feet"),
  17999. name: "Paw",
  18000. image: {
  18001. source: "./media/characters/raf/paw.svg"
  18002. },
  18003. extraAttributes: {
  18004. "toeSize": {
  18005. name: "Toe Size",
  18006. power: 2,
  18007. type: "area",
  18008. base: math.unit(0.004, "m^2")
  18009. },
  18010. "padSize": {
  18011. name: "Pad Size",
  18012. power: 2,
  18013. type: "area",
  18014. base: math.unit(0.04, "m^2")
  18015. },
  18016. "footSize": {
  18017. name: "Foot Size",
  18018. power: 2,
  18019. type: "area",
  18020. base: math.unit(0.08, "m^2")
  18021. },
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Micro",
  18028. height: math.unit(2, "inches")
  18029. },
  18030. {
  18031. name: "Normal",
  18032. height: math.unit(4 + 11 / 12, "feet"),
  18033. default: true
  18034. },
  18035. {
  18036. name: "Macro",
  18037. height: math.unit(70, "feet")
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18043. {
  18044. front: {
  18045. height: math.unit(1.5, "meters"),
  18046. weight: math.unit(68, "kg"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/liam-einarr/front.svg",
  18050. extra: 2822 / 2666
  18051. }
  18052. },
  18053. back: {
  18054. height: math.unit(1.5, "meters"),
  18055. weight: math.unit(68, "kg"),
  18056. name: "Back",
  18057. image: {
  18058. source: "./media/characters/liam-einarr/back.svg",
  18059. extra: 2822 / 2666,
  18060. bottom: 0.015
  18061. }
  18062. },
  18063. },
  18064. [
  18065. {
  18066. name: "Normal",
  18067. height: math.unit(1.5, "meters"),
  18068. default: true
  18069. },
  18070. {
  18071. name: "Macro",
  18072. height: math.unit(150, "meters")
  18073. },
  18074. {
  18075. name: "Megamacro",
  18076. height: math.unit(35, "km")
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(6, "feet"),
  18085. weight: math.unit(75, "kg"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/linda/front.svg",
  18089. extra: 930 / 874,
  18090. bottom: 0.004
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(6, "feet"),
  18098. default: true
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(6 + 8 / 12, "feet"),
  18107. weight: math.unit(220, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/caylex/front.svg",
  18111. extra: 821 / 772,
  18112. bottom: 0.07
  18113. }
  18114. },
  18115. back: {
  18116. height: math.unit(6 + 8 / 12, "feet"),
  18117. weight: math.unit(220, "lb"),
  18118. name: "Back",
  18119. image: {
  18120. source: "./media/characters/caylex/back.svg",
  18121. extra: 821 / 772,
  18122. bottom: 0.022
  18123. }
  18124. },
  18125. hand: {
  18126. height: math.unit(1.25, "feet"),
  18127. name: "Hand",
  18128. image: {
  18129. source: "./media/characters/caylex/hand.svg"
  18130. }
  18131. },
  18132. foot: {
  18133. height: math.unit(1.6, "feet"),
  18134. name: "Foot",
  18135. image: {
  18136. source: "./media/characters/caylex/foot.svg"
  18137. }
  18138. },
  18139. armored: {
  18140. height: math.unit(6 + 8 / 12, "feet"),
  18141. weight: math.unit(250, "lb"),
  18142. name: "Armored",
  18143. image: {
  18144. source: "./media/characters/caylex/armored.svg",
  18145. extra: 1420 / 1310,
  18146. bottom: 0.045
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(6 + 8 / 12, "feet"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Normal+",
  18158. height: math.unit(12, "feet")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(7 + 6 / 12, "feet"),
  18167. weight: math.unit(288, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/alana/front.svg",
  18171. extra: 679 / 653,
  18172. bottom: 22.5 / 701
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(7 + 6 / 12, "feet")
  18180. },
  18181. {
  18182. name: "Large",
  18183. height: math.unit(50, "feet")
  18184. },
  18185. {
  18186. name: "Macro",
  18187. height: math.unit(100, "feet"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "Macro+",
  18192. height: math.unit(200, "feet")
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18198. {
  18199. front: {
  18200. height: math.unit(6 + 1 / 12, "feet"),
  18201. weight: math.unit(210, "lb"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/hasani/front.svg",
  18205. extra: 244 / 232,
  18206. bottom: 0.01
  18207. }
  18208. },
  18209. back: {
  18210. height: math.unit(6 + 1 / 12, "feet"),
  18211. weight: math.unit(210, "lb"),
  18212. name: "Back",
  18213. image: {
  18214. source: "./media/characters/hasani/back.svg",
  18215. extra: 244 / 232,
  18216. bottom: 0.01
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(6 + 1 / 12, "feet")
  18224. },
  18225. {
  18226. name: "Macro",
  18227. height: math.unit(175, "feet"),
  18228. default: true
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(1.82, "meters"),
  18237. weight: math.unit(140, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/nita/front.svg",
  18241. extra: 2473 / 2363,
  18242. bottom: 0.01
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(1.82, "m")
  18250. },
  18251. {
  18252. name: "Macro",
  18253. height: math.unit(300, "m")
  18254. },
  18255. {
  18256. name: "Mistake Canon",
  18257. height: math.unit(0.5, "miles"),
  18258. default: true
  18259. },
  18260. {
  18261. name: "Big Mistake",
  18262. height: math.unit(13, "miles")
  18263. },
  18264. {
  18265. name: "Playing God",
  18266. height: math.unit(2450, "miles")
  18267. },
  18268. ]
  18269. ))
  18270. characterMakers.push(() => makeCharacter(
  18271. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18272. {
  18273. front: {
  18274. height: math.unit(4, "feet"),
  18275. weight: math.unit(120, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/shiriko/front.svg",
  18279. extra: 970/934,
  18280. bottom: 5/975
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(4, "feet"),
  18288. default: true
  18289. },
  18290. ]
  18291. ))
  18292. characterMakers.push(() => makeCharacter(
  18293. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18294. {
  18295. front: {
  18296. height: math.unit(6, "feet"),
  18297. name: "front",
  18298. image: {
  18299. source: "./media/characters/deja/front.svg",
  18300. extra: 926 / 840,
  18301. bottom: 0.07
  18302. }
  18303. },
  18304. },
  18305. [
  18306. {
  18307. name: "Planck Length",
  18308. height: math.unit(1.6e-35, "meters")
  18309. },
  18310. {
  18311. name: "Normal",
  18312. height: math.unit(30.48, "meters"),
  18313. default: true
  18314. },
  18315. {
  18316. name: "Universal",
  18317. height: math.unit(8.8e26, "meters")
  18318. },
  18319. ]
  18320. ))
  18321. characterMakers.push(() => makeCharacter(
  18322. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18323. {
  18324. side: {
  18325. height: math.unit(8, "feet"),
  18326. weight: math.unit(6300, "lb"),
  18327. name: "Side",
  18328. image: {
  18329. source: "./media/characters/anima/side.svg",
  18330. bottom: 0.035
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(8, "feet"),
  18338. default: true
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18344. {
  18345. front: {
  18346. height: math.unit(8, "feet"),
  18347. weight: math.unit(350, "lb"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/bianca/front.svg",
  18351. extra: 234 / 225,
  18352. bottom: 0.03
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(8, "feet"),
  18360. default: true
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18366. {
  18367. front: {
  18368. height: math.unit(11 + 5/12, "feet"),
  18369. weight: math.unit(1200, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/adinia/front.svg",
  18373. extra: 1767/1641,
  18374. bottom: 44/1811
  18375. },
  18376. extraAttributes: {
  18377. "energyIntake": {
  18378. name: "Energy Intake",
  18379. power: 3,
  18380. type: "energy",
  18381. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18382. },
  18383. }
  18384. },
  18385. back: {
  18386. height: math.unit(11 + 5/12, "feet"),
  18387. weight: math.unit(1200, "lb"),
  18388. name: "Back",
  18389. image: {
  18390. source: "./media/characters/adinia/back.svg",
  18391. extra: 1834/1684,
  18392. bottom: 14/1848
  18393. },
  18394. extraAttributes: {
  18395. "energyIntake": {
  18396. name: "Energy Intake",
  18397. power: 3,
  18398. type: "energy",
  18399. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18400. },
  18401. }
  18402. },
  18403. maw: {
  18404. height: math.unit(3.79, "feet"),
  18405. name: "Maw",
  18406. image: {
  18407. source: "./media/characters/adinia/maw.svg"
  18408. }
  18409. },
  18410. rump: {
  18411. height: math.unit(4.6, "feet"),
  18412. name: "Rump",
  18413. image: {
  18414. source: "./media/characters/adinia/rump.svg"
  18415. }
  18416. },
  18417. },
  18418. [
  18419. {
  18420. name: "Normal",
  18421. height: math.unit(11 + 5 / 12, "feet"),
  18422. default: true
  18423. },
  18424. ]
  18425. ))
  18426. characterMakers.push(() => makeCharacter(
  18427. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18428. {
  18429. front: {
  18430. height: math.unit(3, "meters"),
  18431. weight: math.unit(200, "kg"),
  18432. name: "Front",
  18433. image: {
  18434. source: "./media/characters/lykasa/front.svg",
  18435. extra: 1076 / 976,
  18436. bottom: 0.06
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(3, "meters")
  18444. },
  18445. {
  18446. name: "Kaiju",
  18447. height: math.unit(120, "meters"),
  18448. default: true
  18449. },
  18450. {
  18451. name: "Mega Kaiju",
  18452. height: math.unit(240, "km")
  18453. },
  18454. {
  18455. name: "Giga Kaiju",
  18456. height: math.unit(400, "megameters")
  18457. },
  18458. {
  18459. name: "Tera Kaiju",
  18460. height: math.unit(800, "gigameters")
  18461. },
  18462. {
  18463. name: "Kaiju Dragon Goddess",
  18464. height: math.unit(26, "zettaparsecs")
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18470. {
  18471. side: {
  18472. height: math.unit(283 / 124 * 6, "feet"),
  18473. weight: math.unit(35000, "lb"),
  18474. name: "Side",
  18475. image: {
  18476. source: "./media/characters/malfaren/side.svg",
  18477. extra: 1310/529,
  18478. bottom: 24/1334
  18479. }
  18480. },
  18481. front: {
  18482. height: math.unit(22.36, "feet"),
  18483. weight: math.unit(35000, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/malfaren/front.svg",
  18487. extra: 1237/1115,
  18488. bottom: 32/1269
  18489. }
  18490. },
  18491. maw: {
  18492. height: math.unit(6.9, "feet"),
  18493. name: "Maw",
  18494. image: {
  18495. source: "./media/characters/malfaren/maw.svg"
  18496. }
  18497. },
  18498. dick: {
  18499. height: math.unit(6.19, "feet"),
  18500. name: "Dick",
  18501. image: {
  18502. source: "./media/characters/malfaren/dick.svg"
  18503. }
  18504. },
  18505. eye: {
  18506. height: math.unit(0.69, "feet"),
  18507. name: "Eye",
  18508. image: {
  18509. source: "./media/characters/malfaren/eye.svg"
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Big",
  18516. height: math.unit(283 / 162 * 6, "feet"),
  18517. },
  18518. {
  18519. name: "Bigger",
  18520. height: math.unit(283 / 124 * 6, "feet")
  18521. },
  18522. {
  18523. name: "Massive",
  18524. height: math.unit(283 / 92 * 6, "feet"),
  18525. default: true
  18526. },
  18527. {
  18528. name: "👀💦",
  18529. height: math.unit(283 / 73 * 6, "feet"),
  18530. },
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18535. {
  18536. front: {
  18537. height: math.unit(1.7, "m"),
  18538. weight: math.unit(70, "kg"),
  18539. name: "Front",
  18540. image: {
  18541. source: "./media/characters/kernel/front.svg",
  18542. extra: 222 / 210,
  18543. bottom: 0.007
  18544. }
  18545. },
  18546. },
  18547. [
  18548. {
  18549. name: "Nano",
  18550. height: math.unit(17, "micrometers")
  18551. },
  18552. {
  18553. name: "Micro",
  18554. height: math.unit(1.7, "mm")
  18555. },
  18556. {
  18557. name: "Small",
  18558. height: math.unit(1.7, "cm")
  18559. },
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(1.7, "m"),
  18563. default: true
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(1.75, "meters"),
  18572. weight: math.unit(65, "kg"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/jayne-folest/front.svg",
  18576. extra: 2115 / 2007,
  18577. bottom: 0.02
  18578. }
  18579. },
  18580. back: {
  18581. height: math.unit(1.75, "meters"),
  18582. weight: math.unit(65, "kg"),
  18583. name: "Back",
  18584. image: {
  18585. source: "./media/characters/jayne-folest/back.svg",
  18586. extra: 2115 / 2007,
  18587. bottom: 0.005
  18588. }
  18589. },
  18590. frontClothed: {
  18591. height: math.unit(1.75, "meters"),
  18592. weight: math.unit(65, "kg"),
  18593. name: "Front (Clothed)",
  18594. image: {
  18595. source: "./media/characters/jayne-folest/front-clothed.svg",
  18596. extra: 2115 / 2007,
  18597. bottom: 0.035
  18598. }
  18599. },
  18600. hand: {
  18601. height: math.unit(1 / 1.260, "feet"),
  18602. name: "Hand",
  18603. image: {
  18604. source: "./media/characters/jayne-folest/hand.svg"
  18605. }
  18606. },
  18607. foot: {
  18608. height: math.unit(1 / 0.918, "feet"),
  18609. name: "Foot",
  18610. image: {
  18611. source: "./media/characters/jayne-folest/foot.svg"
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Micro",
  18618. height: math.unit(4, "cm")
  18619. },
  18620. {
  18621. name: "Normal",
  18622. height: math.unit(1.75, "meters")
  18623. },
  18624. {
  18625. name: "Macro",
  18626. height: math.unit(47.5, "meters"),
  18627. default: true
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18633. {
  18634. front: {
  18635. height: math.unit(180, "cm"),
  18636. weight: math.unit(70, "kg"),
  18637. name: "Front",
  18638. image: {
  18639. source: "./media/characters/algier/front.svg",
  18640. extra: 596 / 572,
  18641. bottom: 0.04
  18642. }
  18643. },
  18644. back: {
  18645. height: math.unit(180, "cm"),
  18646. weight: math.unit(70, "kg"),
  18647. name: "Back",
  18648. image: {
  18649. source: "./media/characters/algier/back.svg",
  18650. extra: 596 / 572,
  18651. bottom: 0.025
  18652. }
  18653. },
  18654. frontdressed: {
  18655. height: math.unit(180, "cm"),
  18656. weight: math.unit(150, "kg"),
  18657. name: "Front-dressed",
  18658. image: {
  18659. source: "./media/characters/algier/front-dressed.svg",
  18660. extra: 596 / 572,
  18661. bottom: 0.038
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Micro",
  18668. height: math.unit(5, "cm")
  18669. },
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(180, "cm"),
  18673. default: true
  18674. },
  18675. {
  18676. name: "Macro",
  18677. height: math.unit(64, "m")
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18683. {
  18684. upright: {
  18685. height: math.unit(7, "feet"),
  18686. weight: math.unit(300, "lb"),
  18687. name: "Upright",
  18688. image: {
  18689. source: "./media/characters/pretzel/upright.svg",
  18690. extra: 534 / 522,
  18691. bottom: 0.065
  18692. }
  18693. },
  18694. sprawling: {
  18695. height: math.unit(3.75, "feet"),
  18696. weight: math.unit(300, "lb"),
  18697. name: "Sprawling",
  18698. image: {
  18699. source: "./media/characters/pretzel/sprawling.svg",
  18700. extra: 314 / 281,
  18701. bottom: 0.1
  18702. }
  18703. },
  18704. tongue: {
  18705. height: math.unit(2, "feet"),
  18706. name: "Tongue",
  18707. image: {
  18708. source: "./media/characters/pretzel/tongue.svg"
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(7, "feet"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Oversized",
  18720. height: math.unit(15, "feet")
  18721. },
  18722. {
  18723. name: "Huge",
  18724. height: math.unit(30, "feet")
  18725. },
  18726. {
  18727. name: "Macro",
  18728. height: math.unit(250, "feet")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18734. {
  18735. sideFront: {
  18736. height: math.unit(5 + 2 / 12, "feet"),
  18737. weight: math.unit(120, "lb"),
  18738. name: "Front Side",
  18739. image: {
  18740. source: "./media/characters/roxi/side-front.svg",
  18741. extra: 2924 / 2717,
  18742. bottom: 0.08
  18743. }
  18744. },
  18745. sideBack: {
  18746. height: math.unit(5 + 2 / 12, "feet"),
  18747. weight: math.unit(120, "lb"),
  18748. name: "Back Side",
  18749. image: {
  18750. source: "./media/characters/roxi/side-back.svg",
  18751. extra: 2904 / 2693,
  18752. bottom: 0.06
  18753. }
  18754. },
  18755. front: {
  18756. height: math.unit(5 + 2 / 12, "feet"),
  18757. weight: math.unit(120, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/roxi/front.svg",
  18761. extra: 2028 / 1907,
  18762. bottom: 0.01
  18763. }
  18764. },
  18765. frontAlt: {
  18766. height: math.unit(5 + 2 / 12, "feet"),
  18767. weight: math.unit(120, "lb"),
  18768. name: "Front (Alt)",
  18769. image: {
  18770. source: "./media/characters/roxi/front-alt.svg",
  18771. extra: 1828 / 1798,
  18772. bottom: 0.01
  18773. }
  18774. },
  18775. sitting: {
  18776. height: math.unit(2.8, "feet"),
  18777. weight: math.unit(120, "lb"),
  18778. name: "Sitting",
  18779. image: {
  18780. source: "./media/characters/roxi/sitting.svg",
  18781. extra: 2660 / 2462,
  18782. bottom: 0.1
  18783. }
  18784. },
  18785. },
  18786. [
  18787. {
  18788. name: "Normal",
  18789. height: math.unit(5 + 2 / 12, "feet"),
  18790. default: true
  18791. },
  18792. ]
  18793. ))
  18794. characterMakers.push(() => makeCharacter(
  18795. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18796. {
  18797. side: {
  18798. height: math.unit(55, "feet"),
  18799. weight: math.unit(153, "tons"),
  18800. name: "Side",
  18801. image: {
  18802. source: "./media/characters/shadow/side.svg",
  18803. extra: 701 / 628,
  18804. bottom: 0.02
  18805. }
  18806. },
  18807. flying: {
  18808. height: math.unit(145, "feet"),
  18809. weight: math.unit(153, "tons"),
  18810. name: "Flying",
  18811. image: {
  18812. source: "./media/characters/shadow/flying.svg"
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(55, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(6, "feet"),
  18829. weight: math.unit(200, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/marcie/front.svg",
  18833. extra: 960 / 876,
  18834. bottom: 58 / 1017.87
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Macro",
  18841. height: math.unit(1, "mile"),
  18842. default: true
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18848. {
  18849. front: {
  18850. height: math.unit(7, "feet"),
  18851. weight: math.unit(200, "lb"),
  18852. name: "Front",
  18853. image: {
  18854. source: "./media/characters/kachina/front.svg",
  18855. extra: 1290.68 / 1119,
  18856. bottom: 36.5 / 1327.18
  18857. }
  18858. },
  18859. },
  18860. [
  18861. {
  18862. name: "Normal",
  18863. height: math.unit(7, "feet"),
  18864. default: true
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18870. {
  18871. looking: {
  18872. height: math.unit(2, "meters"),
  18873. weight: math.unit(300, "kg"),
  18874. name: "Looking",
  18875. image: {
  18876. source: "./media/characters/kash/looking.svg",
  18877. extra: 474 / 344,
  18878. bottom: 0.03
  18879. }
  18880. },
  18881. side: {
  18882. height: math.unit(2, "meters"),
  18883. weight: math.unit(300, "kg"),
  18884. name: "Side",
  18885. image: {
  18886. source: "./media/characters/kash/side.svg",
  18887. extra: 302 / 251,
  18888. bottom: 0.03
  18889. }
  18890. },
  18891. front: {
  18892. height: math.unit(2, "meters"),
  18893. weight: math.unit(300, "kg"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/kash/front.svg",
  18897. extra: 495 / 360,
  18898. bottom: 0.015
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(2, "meters"),
  18906. default: true
  18907. },
  18908. {
  18909. name: "Big",
  18910. height: math.unit(3, "meters")
  18911. },
  18912. {
  18913. name: "Large",
  18914. height: math.unit(5, "meters")
  18915. },
  18916. ]
  18917. ))
  18918. characterMakers.push(() => makeCharacter(
  18919. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18920. {
  18921. feeding: {
  18922. height: math.unit(6.7, "feet"),
  18923. weight: math.unit(350, "lb"),
  18924. name: "Feeding",
  18925. image: {
  18926. source: "./media/characters/lalim/feeding.svg",
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(6.7, "feet"),
  18934. default: true
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(9.5, "feet"),
  18943. weight: math.unit(600, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/de'vout/front.svg",
  18947. extra: 1443 / 1328,
  18948. bottom: 0.025
  18949. }
  18950. },
  18951. back: {
  18952. height: math.unit(9.5, "feet"),
  18953. weight: math.unit(600, "lb"),
  18954. name: "Back",
  18955. image: {
  18956. source: "./media/characters/de'vout/back.svg",
  18957. extra: 1443 / 1328
  18958. }
  18959. },
  18960. frontDressed: {
  18961. height: math.unit(9.5, "feet"),
  18962. weight: math.unit(600, "lb"),
  18963. name: "Front (Dressed",
  18964. image: {
  18965. source: "./media/characters/de'vout/front-dressed.svg",
  18966. extra: 1443 / 1328,
  18967. bottom: 0.025
  18968. }
  18969. },
  18970. backDressed: {
  18971. height: math.unit(9.5, "feet"),
  18972. weight: math.unit(600, "lb"),
  18973. name: "Back (Dressed",
  18974. image: {
  18975. source: "./media/characters/de'vout/back-dressed.svg",
  18976. extra: 1443 / 1328
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(9.5, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(8, "feet"),
  18993. weight: math.unit(225, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/talana/front.svg",
  18997. extra: 1410 / 1300,
  18998. bottom: 0.015
  18999. }
  19000. },
  19001. frontDressed: {
  19002. height: math.unit(8, "feet"),
  19003. weight: math.unit(225, "lb"),
  19004. name: "Front (Dressed",
  19005. image: {
  19006. source: "./media/characters/talana/front-dressed.svg",
  19007. extra: 1410 / 1300,
  19008. bottom: 0.015
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(8, "feet"),
  19016. default: true
  19017. },
  19018. ]
  19019. ))
  19020. characterMakers.push(() => makeCharacter(
  19021. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19022. {
  19023. side: {
  19024. height: math.unit(7.2, "feet"),
  19025. weight: math.unit(150, "lb"),
  19026. name: "Side",
  19027. image: {
  19028. source: "./media/characters/xeauvok/side.svg",
  19029. extra: 1975 / 1523,
  19030. bottom: 0.07
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Normal",
  19037. height: math.unit(7.2, "feet"),
  19038. default: true
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19044. {
  19045. side: {
  19046. height: math.unit(4, "meters"),
  19047. weight: math.unit(2200, "kg"),
  19048. name: "Side",
  19049. image: {
  19050. source: "./media/characters/zara/side.svg",
  19051. extra: 765/744,
  19052. bottom: 156/921
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Normal",
  19059. height: math.unit(4, "meters"),
  19060. default: true
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19066. {
  19067. side: {
  19068. height: math.unit(6, "feet"),
  19069. weight: math.unit(150, "lb"),
  19070. name: "Side",
  19071. image: {
  19072. source: "./media/characters/richard-dragon/side.svg",
  19073. extra: 845 / 340,
  19074. bottom: 0.017
  19075. }
  19076. },
  19077. maw: {
  19078. height: math.unit(2.97, "feet"),
  19079. name: "Maw",
  19080. image: {
  19081. source: "./media/characters/richard-dragon/maw.svg"
  19082. }
  19083. },
  19084. },
  19085. [
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(4, "feet"),
  19093. weight: math.unit(100, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/richard-smeargle/front.svg",
  19097. extra: 2952 / 2820,
  19098. bottom: 0.028
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(4, "feet"),
  19106. default: true
  19107. },
  19108. {
  19109. name: "Dynamax",
  19110. height: math.unit(20, "meters")
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(6, "feet"),
  19119. weight: math.unit(110, "lb"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/klay/front.svg",
  19123. extra: 962 / 883,
  19124. bottom: 0.04
  19125. }
  19126. },
  19127. back: {
  19128. height: math.unit(6, "feet"),
  19129. weight: math.unit(110, "lb"),
  19130. name: "Back",
  19131. image: {
  19132. source: "./media/characters/klay/back.svg",
  19133. extra: 962 / 883
  19134. }
  19135. },
  19136. beans: {
  19137. height: math.unit(1.15, "feet"),
  19138. name: "Beans",
  19139. image: {
  19140. source: "./media/characters/klay/beans.svg"
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Micro",
  19147. height: math.unit(6, "inches")
  19148. },
  19149. {
  19150. name: "Mini",
  19151. height: math.unit(3, "feet")
  19152. },
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(6, "feet"),
  19156. default: true
  19157. },
  19158. {
  19159. name: "Big",
  19160. height: math.unit(25, "feet")
  19161. },
  19162. {
  19163. name: "Macro",
  19164. height: math.unit(100, "feet")
  19165. },
  19166. {
  19167. name: "Megamacro",
  19168. height: math.unit(400, "feet")
  19169. },
  19170. ]
  19171. ))
  19172. characterMakers.push(() => makeCharacter(
  19173. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19174. {
  19175. front: {
  19176. height: math.unit(6, "feet"),
  19177. weight: math.unit(160, "lb"),
  19178. name: "Front",
  19179. image: {
  19180. source: "./media/characters/marcus/front.svg",
  19181. extra: 734 / 676,
  19182. bottom: 0.03
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Little",
  19189. height: math.unit(6, "feet")
  19190. },
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(110, "feet"),
  19194. default: true
  19195. },
  19196. {
  19197. name: "Macro",
  19198. height: math.unit(250, "feet")
  19199. },
  19200. {
  19201. name: "Megamacro",
  19202. height: math.unit(1000, "feet")
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19208. {
  19209. front: {
  19210. height: math.unit(7, "feet"),
  19211. weight: math.unit(275, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/claude-delroute/front.svg",
  19215. extra: 902/827,
  19216. bottom: 26/928
  19217. }
  19218. },
  19219. side: {
  19220. height: math.unit(7, "feet"),
  19221. weight: math.unit(275, "lb"),
  19222. name: "Side",
  19223. image: {
  19224. source: "./media/characters/claude-delroute/side.svg",
  19225. extra: 908/853,
  19226. bottom: 16/924
  19227. }
  19228. },
  19229. back: {
  19230. height: math.unit(7, "feet"),
  19231. weight: math.unit(275, "lb"),
  19232. name: "Back",
  19233. image: {
  19234. source: "./media/characters/claude-delroute/back.svg",
  19235. extra: 911/829,
  19236. bottom: 18/929
  19237. }
  19238. },
  19239. maw: {
  19240. height: math.unit(0.6407, "meters"),
  19241. name: "Maw",
  19242. image: {
  19243. source: "./media/characters/claude-delroute/maw.svg"
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(7, "feet"),
  19251. default: true
  19252. },
  19253. {
  19254. name: "Lorge",
  19255. height: math.unit(20, "feet")
  19256. },
  19257. ]
  19258. ))
  19259. characterMakers.push(() => makeCharacter(
  19260. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19261. {
  19262. front: {
  19263. height: math.unit(8 + 4 / 12, "feet"),
  19264. weight: math.unit(600, "lb"),
  19265. name: "Front",
  19266. image: {
  19267. source: "./media/characters/dragonien/front.svg",
  19268. extra: 100 / 94,
  19269. bottom: 3.3 / 103.3445
  19270. }
  19271. },
  19272. back: {
  19273. height: math.unit(8 + 4 / 12, "feet"),
  19274. weight: math.unit(600, "lb"),
  19275. name: "Back",
  19276. image: {
  19277. source: "./media/characters/dragonien/back.svg",
  19278. extra: 776 / 746,
  19279. bottom: 6.4 / 782.0616
  19280. }
  19281. },
  19282. foot: {
  19283. height: math.unit(1.54, "feet"),
  19284. name: "Foot",
  19285. image: {
  19286. source: "./media/characters/dragonien/foot.svg",
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(8 + 4 / 12, "feet"),
  19294. default: true
  19295. },
  19296. {
  19297. name: "Macro",
  19298. height: math.unit(200, "feet")
  19299. },
  19300. {
  19301. name: "Megamacro",
  19302. height: math.unit(1, "mile")
  19303. },
  19304. {
  19305. name: "Gigamacro",
  19306. height: math.unit(1000, "miles")
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(5 + 2 / 12, "feet"),
  19315. weight: math.unit(110, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/desta/front.svg",
  19319. extra: 767 / 726,
  19320. bottom: 11.7 / 779
  19321. }
  19322. },
  19323. back: {
  19324. height: math.unit(5 + 2 / 12, "feet"),
  19325. weight: math.unit(110, "lb"),
  19326. name: "Back",
  19327. image: {
  19328. source: "./media/characters/desta/back.svg",
  19329. extra: 777 / 728,
  19330. bottom: 6 / 784
  19331. }
  19332. },
  19333. frontAlt: {
  19334. height: math.unit(5 + 2 / 12, "feet"),
  19335. weight: math.unit(110, "lb"),
  19336. name: "Front",
  19337. image: {
  19338. source: "./media/characters/desta/front-alt.svg",
  19339. extra: 1482 / 1417
  19340. }
  19341. },
  19342. side: {
  19343. height: math.unit(5 + 2 / 12, "feet"),
  19344. weight: math.unit(110, "lb"),
  19345. name: "Side",
  19346. image: {
  19347. source: "./media/characters/desta/side.svg",
  19348. extra: 2579 / 2491,
  19349. bottom: 0.053
  19350. }
  19351. },
  19352. },
  19353. [
  19354. {
  19355. name: "Micro",
  19356. height: math.unit(6, "inches")
  19357. },
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(5 + 2 / 12, "feet"),
  19361. default: true
  19362. },
  19363. {
  19364. name: "Macro",
  19365. height: math.unit(62, "feet")
  19366. },
  19367. {
  19368. name: "Megamacro",
  19369. height: math.unit(1800, "feet")
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19375. {
  19376. front: {
  19377. height: math.unit(10, "feet"),
  19378. weight: math.unit(700, "lb"),
  19379. name: "Front",
  19380. image: {
  19381. source: "./media/characters/storm-alystar/front.svg",
  19382. extra: 2112 / 1898,
  19383. bottom: 0.034
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Micro",
  19390. height: math.unit(3.5, "inches")
  19391. },
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(10, "feet"),
  19395. default: true
  19396. },
  19397. {
  19398. name: "Macro",
  19399. height: math.unit(400, "feet")
  19400. },
  19401. {
  19402. name: "Deific",
  19403. height: math.unit(60, "miles")
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(2.35, "meters"),
  19412. weight: math.unit(119, "kg"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/ilia/front.svg",
  19416. extra: 1285 / 1255,
  19417. bottom: 0.06
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(2.35, "meters")
  19425. },
  19426. {
  19427. name: "Macro",
  19428. height: math.unit(140, "meters"),
  19429. default: true
  19430. },
  19431. {
  19432. name: "Megamacro",
  19433. height: math.unit(100, "miles")
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(6 + 5 / 12, "feet"),
  19442. weight: math.unit(190, "lb"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/kingdead/front.svg",
  19446. extra: 1228 / 1177
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Micro",
  19453. height: math.unit(7, "inches")
  19454. },
  19455. {
  19456. name: "Normal",
  19457. height: math.unit(6 + 5 / 12, "feet")
  19458. },
  19459. {
  19460. name: "Macro",
  19461. height: math.unit(150, "feet"),
  19462. default: true
  19463. },
  19464. {
  19465. name: "Megamacro",
  19466. height: math.unit(200, "miles")
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19472. {
  19473. front: {
  19474. height: math.unit(8, "feet"),
  19475. weight: math.unit(600, "lb"),
  19476. name: "Front",
  19477. image: {
  19478. source: "./media/characters/kyrehx/front.svg",
  19479. extra: 1195 / 1095,
  19480. bottom: 0.034
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Micro",
  19487. height: math.unit(2, "inches")
  19488. },
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(8, "feet"),
  19492. default: true
  19493. },
  19494. {
  19495. name: "Macro",
  19496. height: math.unit(255, "feet")
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19505. weight: math.unit(184, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/xang/front.svg",
  19509. extra: 845 / 755
  19510. }
  19511. },
  19512. },
  19513. [
  19514. {
  19515. name: "Normal",
  19516. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19517. default: true
  19518. },
  19519. {
  19520. name: "Macro",
  19521. height: math.unit(0.935 * 146, "feet")
  19522. },
  19523. {
  19524. name: "Megamacro",
  19525. height: math.unit(0.935 * 3, "miles")
  19526. },
  19527. ]
  19528. ))
  19529. characterMakers.push(() => makeCharacter(
  19530. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19531. {
  19532. frontDressed: {
  19533. height: math.unit(5 + 7 / 12, "feet"),
  19534. weight: math.unit(140, "lb"),
  19535. name: "Front (Dressed)",
  19536. image: {
  19537. source: "./media/characters/doc-weardno/front-dressed.svg",
  19538. extra: 263 / 234
  19539. }
  19540. },
  19541. backDressed: {
  19542. height: math.unit(5 + 7 / 12, "feet"),
  19543. weight: math.unit(140, "lb"),
  19544. name: "Back (Dressed)",
  19545. image: {
  19546. source: "./media/characters/doc-weardno/back-dressed.svg",
  19547. extra: 266 / 238
  19548. }
  19549. },
  19550. front: {
  19551. height: math.unit(5 + 7 / 12, "feet"),
  19552. weight: math.unit(140, "lb"),
  19553. name: "Front",
  19554. image: {
  19555. source: "./media/characters/doc-weardno/front.svg",
  19556. extra: 254 / 233
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Micro",
  19563. height: math.unit(3, "inches")
  19564. },
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(5 + 7 / 12, "feet"),
  19568. default: true
  19569. },
  19570. {
  19571. name: "Macro",
  19572. height: math.unit(25, "feet")
  19573. },
  19574. {
  19575. name: "Megamacro",
  19576. height: math.unit(2, "miles")
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(6 + 2 / 12, "feet"),
  19585. weight: math.unit(153, "lb"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/seth-whilst/front.svg",
  19589. bottom: 0.07
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Micro",
  19596. height: math.unit(5, "inches")
  19597. },
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(6 + 2 / 12, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(3, "inches"),
  19610. weight: math.unit(8, "grams"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/pocket-jabari/front.svg",
  19614. extra: 1024 / 974,
  19615. bottom: 0.039
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Minimicro",
  19622. height: math.unit(8, "mm")
  19623. },
  19624. {
  19625. name: "Micro",
  19626. height: math.unit(3, "inches"),
  19627. default: true
  19628. },
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(3, "feet")
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19637. {
  19638. frontDressed: {
  19639. height: math.unit(15, "feet"),
  19640. weight: math.unit(3280, "lb"),
  19641. name: "Front (Dressed)",
  19642. image: {
  19643. source: "./media/characters/sapphy/front-dressed.svg",
  19644. extra: 1951/1654,
  19645. bottom: 194/2145
  19646. },
  19647. form: "anthro",
  19648. default: true
  19649. },
  19650. backDressed: {
  19651. height: math.unit(15, "feet"),
  19652. weight: math.unit(3280, "lb"),
  19653. name: "Back (Dressed)",
  19654. image: {
  19655. source: "./media/characters/sapphy/back-dressed.svg",
  19656. extra: 2058/1918,
  19657. bottom: 125/2183
  19658. },
  19659. form: "anthro"
  19660. },
  19661. frontNude: {
  19662. height: math.unit(15, "feet"),
  19663. weight: math.unit(3280, "lb"),
  19664. name: "Front (Nude)",
  19665. image: {
  19666. source: "./media/characters/sapphy/front-nude.svg",
  19667. extra: 1951/1654,
  19668. bottom: 194/2145
  19669. },
  19670. form: "anthro"
  19671. },
  19672. backNude: {
  19673. height: math.unit(15, "feet"),
  19674. weight: math.unit(3280, "lb"),
  19675. name: "Back (Nude)",
  19676. image: {
  19677. source: "./media/characters/sapphy/back-nude.svg",
  19678. extra: 2058/1918,
  19679. bottom: 125/2183
  19680. },
  19681. form: "anthro"
  19682. },
  19683. full: {
  19684. height: math.unit(15, "feet"),
  19685. weight: math.unit(3280, "lb"),
  19686. name: "Full",
  19687. image: {
  19688. source: "./media/characters/sapphy/full.svg",
  19689. extra: 1396/1317,
  19690. bottom: 44/1440
  19691. },
  19692. form: "anthro"
  19693. },
  19694. dick: {
  19695. height: math.unit(3.8, "feet"),
  19696. name: "Dick",
  19697. image: {
  19698. source: "./media/characters/sapphy/dick.svg"
  19699. },
  19700. form: "anthro"
  19701. },
  19702. feral: {
  19703. height: math.unit(35, "feet"),
  19704. weight: math.unit(160, "tons"),
  19705. name: "Feral",
  19706. image: {
  19707. source: "./media/characters/sapphy/feral.svg",
  19708. extra: 1050/573,
  19709. bottom: 60/1110
  19710. },
  19711. form: "feral",
  19712. default: true
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(15, "feet"),
  19719. form: "anthro"
  19720. },
  19721. {
  19722. name: "Casual Macro",
  19723. height: math.unit(120, "feet"),
  19724. form: "anthro"
  19725. },
  19726. {
  19727. name: "Macro",
  19728. height: math.unit(2150, "feet"),
  19729. default: true,
  19730. form: "anthro"
  19731. },
  19732. {
  19733. name: "Megamacro",
  19734. height: math.unit(8, "miles"),
  19735. form: "anthro"
  19736. },
  19737. {
  19738. name: "Galaxy Mom",
  19739. height: math.unit(6, "megalightyears"),
  19740. form: "anthro"
  19741. },
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(35, "feet"),
  19745. form: "feral",
  19746. default: true
  19747. },
  19748. {
  19749. name: "Macro",
  19750. height: math.unit(300, "feet"),
  19751. form: "feral"
  19752. },
  19753. {
  19754. name: "Galaxy Mom",
  19755. height: math.unit(10, "megalightyears"),
  19756. form: "feral"
  19757. },
  19758. ],
  19759. {
  19760. "anthro": {
  19761. name: "Anthro",
  19762. default: true
  19763. },
  19764. "feral": {
  19765. name: "Feral"
  19766. }
  19767. }
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19771. {
  19772. front: {
  19773. height: math.unit(6, "feet"),
  19774. weight: math.unit(170, "lb"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/kiro/front.svg",
  19778. extra: 1064 / 1012,
  19779. bottom: 0.052
  19780. }
  19781. },
  19782. },
  19783. [
  19784. {
  19785. name: "Micro",
  19786. height: math.unit(6, "inches")
  19787. },
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(6, "feet"),
  19791. default: true
  19792. },
  19793. {
  19794. name: "Macro",
  19795. height: math.unit(72, "feet")
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19801. {
  19802. front: {
  19803. height: math.unit(5 + 9 / 12, "feet"),
  19804. weight: math.unit(175, "lb"),
  19805. name: "Front",
  19806. image: {
  19807. source: "./media/characters/irishfox/front.svg",
  19808. extra: 1912 / 1680,
  19809. bottom: 0.02
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Nano",
  19816. height: math.unit(1, "mm")
  19817. },
  19818. {
  19819. name: "Micro",
  19820. height: math.unit(2, "inches")
  19821. },
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(5 + 9 / 12, "feet"),
  19825. default: true
  19826. },
  19827. {
  19828. name: "Macro",
  19829. height: math.unit(45, "feet")
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(6 + 1 / 12, "feet"),
  19838. weight: math.unit(75, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/aronai-sieyes/front.svg",
  19842. extra: 1532/1450,
  19843. bottom: 42/1574
  19844. }
  19845. },
  19846. side: {
  19847. height: math.unit(6 + 1 / 12, "feet"),
  19848. weight: math.unit(75, "lb"),
  19849. name: "Side",
  19850. image: {
  19851. source: "./media/characters/aronai-sieyes/side.svg",
  19852. extra: 1422/1365,
  19853. bottom: 148/1570
  19854. }
  19855. },
  19856. back: {
  19857. height: math.unit(6 + 1 / 12, "feet"),
  19858. weight: math.unit(75, "lb"),
  19859. name: "Back",
  19860. image: {
  19861. source: "./media/characters/aronai-sieyes/back.svg",
  19862. extra: 1526/1464,
  19863. bottom: 51/1577
  19864. }
  19865. },
  19866. dressed: {
  19867. height: math.unit(6 + 1 / 12, "feet"),
  19868. weight: math.unit(75, "lb"),
  19869. name: "Dressed",
  19870. image: {
  19871. source: "./media/characters/aronai-sieyes/dressed.svg",
  19872. extra: 1559/1483,
  19873. bottom: 39/1598
  19874. }
  19875. },
  19876. slit: {
  19877. height: math.unit(1.3, "feet"),
  19878. name: "Slit",
  19879. image: {
  19880. source: "./media/characters/aronai-sieyes/slit.svg"
  19881. }
  19882. },
  19883. slitSpread: {
  19884. height: math.unit(0.9, "feet"),
  19885. name: "Slit (Spread)",
  19886. image: {
  19887. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19888. }
  19889. },
  19890. rump: {
  19891. height: math.unit(1.3, "feet"),
  19892. name: "Rump",
  19893. image: {
  19894. source: "./media/characters/aronai-sieyes/rump.svg"
  19895. }
  19896. },
  19897. maw: {
  19898. height: math.unit(1.25, "feet"),
  19899. name: "Maw",
  19900. image: {
  19901. source: "./media/characters/aronai-sieyes/maw.svg"
  19902. }
  19903. },
  19904. feral: {
  19905. height: math.unit(18, "feet"),
  19906. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19907. name: "Feral",
  19908. image: {
  19909. source: "./media/characters/aronai-sieyes/feral.svg",
  19910. extra: 1530 / 1240,
  19911. bottom: 0.035
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Micro",
  19918. height: math.unit(2, "inches")
  19919. },
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(6 + 1 / 12, "feet"),
  19923. default: true
  19924. }
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(12, "feet"),
  19932. weight: math.unit(410, "kg"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/xuna/front.svg",
  19936. extra: 2184 / 1980
  19937. }
  19938. },
  19939. side: {
  19940. height: math.unit(12, "feet"),
  19941. weight: math.unit(410, "kg"),
  19942. name: "Side",
  19943. image: {
  19944. source: "./media/characters/xuna/side.svg",
  19945. extra: 2184 / 1980
  19946. }
  19947. },
  19948. back: {
  19949. height: math.unit(12, "feet"),
  19950. weight: math.unit(410, "kg"),
  19951. name: "Back",
  19952. image: {
  19953. source: "./media/characters/xuna/back.svg",
  19954. extra: 2184 / 1980
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Nano glow",
  19961. height: math.unit(10, "nm")
  19962. },
  19963. {
  19964. name: "Micro floof",
  19965. height: math.unit(0.3, "m")
  19966. },
  19967. {
  19968. name: "Huggable softy boi",
  19969. height: math.unit(3.6576, "m"),
  19970. default: true
  19971. },
  19972. {
  19973. name: "Admirable floof",
  19974. height: math.unit(80, "meters")
  19975. },
  19976. {
  19977. name: "Gentle macro",
  19978. height: math.unit(300, "meters")
  19979. },
  19980. {
  19981. name: "Very careful floof",
  19982. height: math.unit(3200, "meters")
  19983. },
  19984. {
  19985. name: "The mega floof",
  19986. height: math.unit(36000, "meters")
  19987. },
  19988. {
  19989. name: "Giga-fur-Wicker",
  19990. height: math.unit(4800000, "meters")
  19991. },
  19992. {
  19993. name: "Licky world",
  19994. height: math.unit(20000000, "meters")
  19995. },
  19996. {
  19997. name: "Floofy cyan sun",
  19998. height: math.unit(1500000000, "meters")
  19999. },
  20000. {
  20001. name: "Milky Wicker",
  20002. height: math.unit(1000000000000000000000, "meters")
  20003. },
  20004. {
  20005. name: "The observing Wicker",
  20006. height: math.unit(999999999999999999999999999, "meters")
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(5 + 9 / 12, "feet"),
  20015. weight: math.unit(150, "lb"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/arokha-sieyes/front.svg",
  20019. extra: 1425 / 1284,
  20020. bottom: 0.05
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(5 + 9 / 12, "feet")
  20028. },
  20029. {
  20030. name: "Macro",
  20031. height: math.unit(30, "meters"),
  20032. default: true
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20038. {
  20039. front: {
  20040. height: math.unit(6, "feet"),
  20041. weight: math.unit(180, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/arokh-sieyes/front.svg",
  20045. extra: 1830 / 1769,
  20046. bottom: 0.01
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Normal",
  20053. height: math.unit(6, "feet")
  20054. },
  20055. {
  20056. name: "Macro",
  20057. height: math.unit(30, "meters"),
  20058. default: true
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20064. {
  20065. side: {
  20066. height: math.unit(13 + 1 / 12, "feet"),
  20067. weight: math.unit(8.5, "tonnes"),
  20068. name: "Side",
  20069. image: {
  20070. source: "./media/characters/goldeneye/side.svg",
  20071. extra: 1182 / 778,
  20072. bottom: 0.067
  20073. }
  20074. },
  20075. paw: {
  20076. height: math.unit(3.4, "feet"),
  20077. name: "Paw",
  20078. image: {
  20079. source: "./media/characters/goldeneye/paw.svg"
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(13 + 1 / 12, "feet"),
  20087. default: true
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20093. {
  20094. front: {
  20095. height: math.unit(6 + 1 / 12, "feet"),
  20096. weight: math.unit(210, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/leonardo-lycheborne/front.svg",
  20100. extra: 776/723,
  20101. bottom: 34/810
  20102. }
  20103. },
  20104. side: {
  20105. height: math.unit(6 + 1 / 12, "feet"),
  20106. weight: math.unit(210, "lb"),
  20107. name: "Side",
  20108. image: {
  20109. source: "./media/characters/leonardo-lycheborne/side.svg",
  20110. extra: 780/728,
  20111. bottom: 12/792
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(6 + 1 / 12, "feet"),
  20116. weight: math.unit(210, "lb"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/leonardo-lycheborne/back.svg",
  20120. extra: 775/721,
  20121. bottom: 17/792
  20122. }
  20123. },
  20124. hand: {
  20125. height: math.unit(1.08, "feet"),
  20126. name: "Hand",
  20127. image: {
  20128. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20129. }
  20130. },
  20131. foot: {
  20132. height: math.unit(1.32, "feet"),
  20133. name: "Foot",
  20134. image: {
  20135. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20136. }
  20137. },
  20138. maw: {
  20139. height: math.unit(1, "feet"),
  20140. name: "Maw",
  20141. image: {
  20142. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20143. }
  20144. },
  20145. were: {
  20146. height: math.unit(20, "feet"),
  20147. weight: math.unit(7800, "lb"),
  20148. name: "Were",
  20149. image: {
  20150. source: "./media/characters/leonardo-lycheborne/were.svg",
  20151. extra: 1224/1165,
  20152. bottom: 72/1296
  20153. }
  20154. },
  20155. feral: {
  20156. height: math.unit(7.5, "feet"),
  20157. weight: math.unit(600, "lb"),
  20158. name: "Feral",
  20159. image: {
  20160. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20161. extra: 797/702,
  20162. bottom: 139/936
  20163. }
  20164. },
  20165. taur: {
  20166. height: math.unit(11, "feet"),
  20167. weight: math.unit(3300, "lb"),
  20168. name: "Taur",
  20169. image: {
  20170. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20171. extra: 1271/1197,
  20172. bottom: 47/1318
  20173. }
  20174. },
  20175. barghest: {
  20176. height: math.unit(11, "feet"),
  20177. weight: math.unit(1300, "lb"),
  20178. name: "Barghest",
  20179. image: {
  20180. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20181. extra: 1291/1204,
  20182. bottom: 37/1328
  20183. }
  20184. },
  20185. dick: {
  20186. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20187. name: "Dick",
  20188. image: {
  20189. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20190. }
  20191. },
  20192. dickWere: {
  20193. height: math.unit((20) / 3.8, "feet"),
  20194. name: "Dick (Were)",
  20195. image: {
  20196. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(6 + 1 / 12, "feet"),
  20204. default: true
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20210. {
  20211. front: {
  20212. height: math.unit(10, "feet"),
  20213. weight: math.unit(350, "lb"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/jet/front.svg",
  20217. extra: 2050 / 1980,
  20218. bottom: 0.013
  20219. }
  20220. },
  20221. back: {
  20222. height: math.unit(10, "feet"),
  20223. weight: math.unit(350, "lb"),
  20224. name: "Back",
  20225. image: {
  20226. source: "./media/characters/jet/back.svg",
  20227. extra: 2050 / 1980,
  20228. bottom: 0.013
  20229. }
  20230. },
  20231. },
  20232. [
  20233. {
  20234. name: "Micro",
  20235. height: math.unit(6, "inches")
  20236. },
  20237. {
  20238. name: "Normal",
  20239. height: math.unit(10, "feet"),
  20240. default: true
  20241. },
  20242. {
  20243. name: "Macro",
  20244. height: math.unit(100, "feet")
  20245. },
  20246. ]
  20247. ))
  20248. characterMakers.push(() => makeCharacter(
  20249. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20250. {
  20251. front: {
  20252. height: math.unit(15, "feet"),
  20253. weight: math.unit(2800, "lb"),
  20254. name: "Front",
  20255. image: {
  20256. source: "./media/characters/tanarath/front.svg",
  20257. extra: 2392 / 2220,
  20258. bottom: 0.03
  20259. }
  20260. },
  20261. back: {
  20262. height: math.unit(15, "feet"),
  20263. weight: math.unit(2800, "lb"),
  20264. name: "Back",
  20265. image: {
  20266. source: "./media/characters/tanarath/back.svg",
  20267. extra: 2392 / 2220,
  20268. bottom: 0.03
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(15, "feet"),
  20276. default: true
  20277. },
  20278. ]
  20279. ))
  20280. characterMakers.push(() => makeCharacter(
  20281. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20282. {
  20283. front: {
  20284. height: math.unit(7 + 1 / 12, "feet"),
  20285. weight: math.unit(175, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/patty-cattybatty/front.svg",
  20289. extra: 908 / 874,
  20290. bottom: 0.025
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Micro",
  20297. height: math.unit(1, "inch")
  20298. },
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(7 + 1 / 12, "feet")
  20302. },
  20303. {
  20304. name: "Mini Macro",
  20305. height: math.unit(155, "feet")
  20306. },
  20307. {
  20308. name: "Macro",
  20309. height: math.unit(1077, "feet")
  20310. },
  20311. {
  20312. name: "Mega Macro",
  20313. height: math.unit(47650, "feet"),
  20314. default: true
  20315. },
  20316. {
  20317. name: "Giga Macro",
  20318. height: math.unit(440, "miles")
  20319. },
  20320. {
  20321. name: "Tera Macro",
  20322. height: math.unit(8700, "miles")
  20323. },
  20324. {
  20325. name: "Planetary Macro",
  20326. height: math.unit(32700, "miles")
  20327. },
  20328. {
  20329. name: "Solar Macro",
  20330. height: math.unit(550000, "miles")
  20331. },
  20332. {
  20333. name: "Celestial Macro",
  20334. height: math.unit(2.5, "AU")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(4 + 5 / 12, "feet"),
  20343. weight: math.unit(90, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/cappu/front.svg",
  20347. extra: 1247 / 1152,
  20348. bottom: 0.012
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Normal",
  20355. height: math.unit(4 + 5 / 12, "feet"),
  20356. default: true
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20362. {
  20363. frontDressed: {
  20364. height: math.unit(70, "cm"),
  20365. weight: math.unit(6, "kg"),
  20366. name: "Front (Dressed)",
  20367. image: {
  20368. source: "./media/characters/sebi/front-dressed.svg",
  20369. extra: 713.5 / 686.5,
  20370. bottom: 0.003
  20371. }
  20372. },
  20373. front: {
  20374. height: math.unit(70, "cm"),
  20375. weight: math.unit(5, "kg"),
  20376. name: "Front",
  20377. image: {
  20378. source: "./media/characters/sebi/front.svg",
  20379. extra: 713.5 / 686.5,
  20380. bottom: 0.003
  20381. }
  20382. }
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(70, "cm"),
  20388. default: true
  20389. },
  20390. {
  20391. name: "Macro",
  20392. height: math.unit(8, "meters")
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20398. {
  20399. front: {
  20400. height: math.unit(6, "feet"),
  20401. weight: math.unit(150, "lb"),
  20402. name: "Front",
  20403. image: {
  20404. source: "./media/characters/typhek/front.svg",
  20405. extra: 1948 / 1929,
  20406. bottom: 0.025
  20407. }
  20408. },
  20409. side: {
  20410. height: math.unit(6, "feet"),
  20411. weight: math.unit(150, "lb"),
  20412. name: "Side",
  20413. image: {
  20414. source: "./media/characters/typhek/side.svg",
  20415. extra: 2034 / 2010,
  20416. bottom: 0.003
  20417. }
  20418. },
  20419. back: {
  20420. height: math.unit(6, "feet"),
  20421. weight: math.unit(150, "lb"),
  20422. name: "Back",
  20423. image: {
  20424. source: "./media/characters/typhek/back.svg",
  20425. extra: 2005 / 1978,
  20426. bottom: 0.004
  20427. }
  20428. },
  20429. palm: {
  20430. height: math.unit(1.2, "feet"),
  20431. name: "Palm",
  20432. image: {
  20433. source: "./media/characters/typhek/palm.svg"
  20434. }
  20435. },
  20436. fist: {
  20437. height: math.unit(1.1, "feet"),
  20438. name: "Fist",
  20439. image: {
  20440. source: "./media/characters/typhek/fist.svg"
  20441. }
  20442. },
  20443. foot: {
  20444. height: math.unit(1.57, "feet"),
  20445. name: "Foot",
  20446. image: {
  20447. source: "./media/characters/typhek/foot.svg"
  20448. }
  20449. },
  20450. sole: {
  20451. height: math.unit(2.05, "feet"),
  20452. name: "Sole",
  20453. image: {
  20454. source: "./media/characters/typhek/sole.svg"
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Macro",
  20461. height: math.unit(40, "stories"),
  20462. default: true
  20463. },
  20464. {
  20465. name: "Megamacro",
  20466. height: math.unit(1, "mile")
  20467. },
  20468. {
  20469. name: "Gigamacro",
  20470. height: math.unit(4000, "solarradii")
  20471. },
  20472. {
  20473. name: "Universal",
  20474. height: math.unit(1.1, "universes")
  20475. }
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20480. {
  20481. side: {
  20482. height: math.unit(5 + 7 / 12, "feet"),
  20483. weight: math.unit(150, "lb"),
  20484. name: "Side",
  20485. image: {
  20486. source: "./media/characters/kassy/side.svg",
  20487. extra: 1280 / 1225,
  20488. bottom: 0.002
  20489. }
  20490. },
  20491. front: {
  20492. height: math.unit(5 + 7 / 12, "feet"),
  20493. weight: math.unit(150, "lb"),
  20494. name: "Front",
  20495. image: {
  20496. source: "./media/characters/kassy/front.svg",
  20497. extra: 1280 / 1225,
  20498. bottom: 0.025
  20499. }
  20500. },
  20501. back: {
  20502. height: math.unit(5 + 7 / 12, "feet"),
  20503. weight: math.unit(150, "lb"),
  20504. name: "Back",
  20505. image: {
  20506. source: "./media/characters/kassy/back.svg",
  20507. extra: 1280 / 1225,
  20508. bottom: 0.002
  20509. }
  20510. },
  20511. foot: {
  20512. height: math.unit(1.266, "feet"),
  20513. name: "Foot",
  20514. image: {
  20515. source: "./media/characters/kassy/foot.svg"
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(5 + 7 / 12, "feet")
  20523. },
  20524. {
  20525. name: "Macro",
  20526. height: math.unit(137, "feet"),
  20527. default: true
  20528. },
  20529. {
  20530. name: "Megamacro",
  20531. height: math.unit(1, "mile")
  20532. },
  20533. ]
  20534. ))
  20535. characterMakers.push(() => makeCharacter(
  20536. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20537. {
  20538. front: {
  20539. height: math.unit(6 + 1 / 12, "feet"),
  20540. weight: math.unit(200, "lb"),
  20541. name: "Front",
  20542. image: {
  20543. source: "./media/characters/neil/front.svg",
  20544. extra: 1326 / 1250,
  20545. bottom: 0.023
  20546. }
  20547. },
  20548. },
  20549. [
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(6 + 1 / 12, "feet"),
  20553. default: true
  20554. },
  20555. {
  20556. name: "Macro",
  20557. height: math.unit(200, "feet")
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(5 + 9 / 12, "feet"),
  20566. weight: math.unit(190, "lb"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/atticus/front.svg",
  20570. extra: 2934 / 2785,
  20571. bottom: 0.025
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(5 + 9 / 12, "feet"),
  20579. default: true
  20580. },
  20581. {
  20582. name: "Macro",
  20583. height: math.unit(180, "feet")
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20589. {
  20590. side: {
  20591. height: math.unit(9, "feet"),
  20592. weight: math.unit(650, "lb"),
  20593. name: "Side",
  20594. image: {
  20595. source: "./media/characters/milo/side.svg",
  20596. extra: 2644 / 2310,
  20597. bottom: 0.032
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(9, "feet"),
  20605. default: true
  20606. },
  20607. {
  20608. name: "Macro",
  20609. height: math.unit(300, "feet")
  20610. },
  20611. ]
  20612. ))
  20613. characterMakers.push(() => makeCharacter(
  20614. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20615. {
  20616. side: {
  20617. height: math.unit(8, "meters"),
  20618. weight: math.unit(90000, "kg"),
  20619. name: "Side",
  20620. image: {
  20621. source: "./media/characters/ijzer/side.svg",
  20622. extra: 2756 / 1600,
  20623. bottom: 0.01
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Small",
  20630. height: math.unit(3, "meters")
  20631. },
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(8, "meters"),
  20635. default: true
  20636. },
  20637. {
  20638. name: "Normal+",
  20639. height: math.unit(10, "meters")
  20640. },
  20641. {
  20642. name: "Bigger",
  20643. height: math.unit(24, "meters")
  20644. },
  20645. {
  20646. name: "Huge",
  20647. height: math.unit(80, "meters")
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20653. {
  20654. front: {
  20655. height: math.unit(6 + 2 / 12, "feet"),
  20656. weight: math.unit(153, "lb"),
  20657. name: "Front",
  20658. image: {
  20659. source: "./media/characters/luca-cervicum/front.svg",
  20660. extra: 370 / 327,
  20661. bottom: 0.015
  20662. }
  20663. },
  20664. back: {
  20665. height: math.unit(6 + 2 / 12, "feet"),
  20666. weight: math.unit(153, "lb"),
  20667. name: "Back",
  20668. image: {
  20669. source: "./media/characters/luca-cervicum/back.svg",
  20670. extra: 367 / 333,
  20671. bottom: 0.005
  20672. }
  20673. },
  20674. frontGear: {
  20675. height: math.unit(6 + 2 / 12, "feet"),
  20676. weight: math.unit(173, "lb"),
  20677. name: "Front (Gear)",
  20678. image: {
  20679. source: "./media/characters/luca-cervicum/front-gear.svg",
  20680. extra: 377 / 333,
  20681. bottom: 0.006
  20682. }
  20683. },
  20684. },
  20685. [
  20686. {
  20687. name: "Normal",
  20688. height: math.unit(6 + 2 / 12, "feet"),
  20689. default: true
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(6 + 1 / 12, "feet"),
  20698. weight: math.unit(304, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/oliver/front.svg",
  20702. extra: 157 / 143,
  20703. bottom: 0.08
  20704. }
  20705. },
  20706. },
  20707. [
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(6 + 1 / 12, "feet"),
  20711. default: true
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20717. {
  20718. front: {
  20719. height: math.unit(5 + 7 / 12, "feet"),
  20720. weight: math.unit(140, "lb"),
  20721. name: "Front",
  20722. image: {
  20723. source: "./media/characters/shane/front.svg",
  20724. extra: 304 / 289,
  20725. bottom: 0.005
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(5 + 7 / 12, "feet"),
  20733. default: true
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(5 + 9 / 12, "feet"),
  20742. weight: math.unit(178, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/shin/front.svg",
  20746. extra: 159 / 151,
  20747. bottom: 0.015
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Normal",
  20754. height: math.unit(5 + 9 / 12, "feet"),
  20755. default: true
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20761. {
  20762. front: {
  20763. height: math.unit(5 + 10 / 12, "feet"),
  20764. weight: math.unit(168, "lb"),
  20765. name: "Front",
  20766. image: {
  20767. source: "./media/characters/xerxes/front.svg",
  20768. extra: 282 / 260,
  20769. bottom: 0.045
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Normal",
  20776. height: math.unit(5 + 10 / 12, "feet"),
  20777. default: true
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20783. {
  20784. front: {
  20785. height: math.unit(6 + 7 / 12, "feet"),
  20786. weight: math.unit(208, "lb"),
  20787. name: "Front",
  20788. image: {
  20789. source: "./media/characters/chaska/front.svg",
  20790. extra: 332 / 319,
  20791. bottom: 0.015
  20792. }
  20793. },
  20794. },
  20795. [
  20796. {
  20797. name: "Normal",
  20798. height: math.unit(6 + 7 / 12, "feet"),
  20799. default: true
  20800. },
  20801. ]
  20802. ))
  20803. characterMakers.push(() => makeCharacter(
  20804. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20805. {
  20806. front: {
  20807. height: math.unit(5 + 8 / 12, "feet"),
  20808. weight: math.unit(208, "lb"),
  20809. name: "Front",
  20810. image: {
  20811. source: "./media/characters/enuk/front.svg",
  20812. extra: 437 / 406,
  20813. bottom: 0.02
  20814. }
  20815. },
  20816. },
  20817. [
  20818. {
  20819. name: "Normal",
  20820. height: math.unit(5 + 8 / 12, "feet"),
  20821. default: true
  20822. },
  20823. ]
  20824. ))
  20825. characterMakers.push(() => makeCharacter(
  20826. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20827. {
  20828. front: {
  20829. height: math.unit(5 + 10 / 12, "feet"),
  20830. weight: math.unit(252, "lb"),
  20831. name: "Front",
  20832. image: {
  20833. source: "./media/characters/bruun/front.svg",
  20834. extra: 197 / 187,
  20835. bottom: 0.012
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Normal",
  20842. height: math.unit(5 + 10 / 12, "feet"),
  20843. default: true
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20849. {
  20850. front: {
  20851. height: math.unit(6 + 10 / 12, "feet"),
  20852. weight: math.unit(255, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/alexeev/front.svg",
  20856. extra: 213 / 200,
  20857. bottom: 0.05
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(6 + 10 / 12, "feet"),
  20865. default: true
  20866. },
  20867. ]
  20868. ))
  20869. characterMakers.push(() => makeCharacter(
  20870. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20871. {
  20872. front: {
  20873. height: math.unit(2 + 8 / 12, "feet"),
  20874. weight: math.unit(22, "lb"),
  20875. name: "Front",
  20876. image: {
  20877. source: "./media/characters/evelyn/front.svg",
  20878. extra: 208 / 180
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(2 + 8 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20892. {
  20893. front: {
  20894. height: math.unit(5 + 9 / 12, "feet"),
  20895. weight: math.unit(139, "lb"),
  20896. name: "Front",
  20897. image: {
  20898. source: "./media/characters/inca/front.svg",
  20899. extra: 294 / 291,
  20900. bottom: 0.03
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(5 + 9 / 12, "feet"),
  20908. default: true
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(6 + 3 / 12, "feet"),
  20917. weight: math.unit(185, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/mera/front.svg",
  20921. extra: 291 / 277,
  20922. bottom: 0.03
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(6 + 3 / 12, "feet"),
  20930. default: true
  20931. },
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20936. {
  20937. front: {
  20938. height: math.unit(6 + 7 / 12, "feet"),
  20939. weight: math.unit(160, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/ceres/front.svg",
  20943. extra: 1023 / 950,
  20944. bottom: 0.027
  20945. }
  20946. },
  20947. back: {
  20948. height: math.unit(6 + 7 / 12, "feet"),
  20949. weight: math.unit(160, "lb"),
  20950. name: "Back",
  20951. image: {
  20952. source: "./media/characters/ceres/back.svg",
  20953. extra: 1023 / 950
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Normal",
  20960. height: math.unit(6 + 7 / 12, "feet"),
  20961. default: true
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20967. {
  20968. front: {
  20969. height: math.unit(5 + 10 / 12, "feet"),
  20970. weight: math.unit(150, "lb"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/kris/front.svg",
  20974. extra: 885 / 803,
  20975. bottom: 0.03
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(5 + 10 / 12, "feet"),
  20983. default: true
  20984. },
  20985. ]
  20986. ))
  20987. characterMakers.push(() => makeCharacter(
  20988. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20989. {
  20990. front: {
  20991. height: math.unit(7, "feet"),
  20992. weight: math.unit(120, "kg"),
  20993. name: "Front",
  20994. image: {
  20995. source: "./media/characters/taluthus/front.svg",
  20996. extra: 903 / 833,
  20997. bottom: 0.015
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Normal",
  21004. height: math.unit(7, "feet"),
  21005. default: true
  21006. },
  21007. {
  21008. name: "Macro",
  21009. height: math.unit(300, "feet")
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(5 + 9 / 12, "feet"),
  21018. weight: math.unit(145, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/dawn/front.svg",
  21022. extra: 2094 / 2016,
  21023. bottom: 0.025
  21024. }
  21025. },
  21026. back: {
  21027. height: math.unit(5 + 9 / 12, "feet"),
  21028. weight: math.unit(160, "lb"),
  21029. name: "Back",
  21030. image: {
  21031. source: "./media/characters/dawn/back.svg",
  21032. extra: 2112 / 2080,
  21033. bottom: 0.005
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Normal",
  21040. height: math.unit(6 + 7 / 12, "feet"),
  21041. default: true
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21047. {
  21048. anthro: {
  21049. height: math.unit(8 + 3 / 12, "feet"),
  21050. weight: math.unit(450, "lb"),
  21051. name: "Anthro",
  21052. image: {
  21053. source: "./media/characters/arador/anthro.svg",
  21054. extra: 1835 / 1718,
  21055. bottom: 0.025
  21056. }
  21057. },
  21058. feral: {
  21059. height: math.unit(4, "feet"),
  21060. weight: math.unit(200, "lb"),
  21061. name: "Feral",
  21062. image: {
  21063. source: "./media/characters/arador/feral.svg",
  21064. extra: 1683 / 1514,
  21065. bottom: 0.07
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(8 + 3 / 12, "feet")
  21073. },
  21074. {
  21075. name: "Macro",
  21076. height: math.unit(82.5, "feet"),
  21077. default: true
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21083. {
  21084. front: {
  21085. height: math.unit(5 + 10 / 12, "feet"),
  21086. weight: math.unit(125, "lb"),
  21087. name: "Front",
  21088. image: {
  21089. source: "./media/characters/dharsi/front.svg",
  21090. extra: 716 / 630,
  21091. bottom: 0.035
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "Nano",
  21098. height: math.unit(100, "nm")
  21099. },
  21100. {
  21101. name: "Micro",
  21102. height: math.unit(2, "inches")
  21103. },
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(5 + 10 / 12, "feet"),
  21107. default: true
  21108. },
  21109. {
  21110. name: "Macro",
  21111. height: math.unit(1000, "feet")
  21112. },
  21113. {
  21114. name: "Megamacro",
  21115. height: math.unit(10, "miles")
  21116. },
  21117. {
  21118. name: "Gigamacro",
  21119. height: math.unit(3000, "miles")
  21120. },
  21121. {
  21122. name: "Teramacro",
  21123. height: math.unit(500000, "miles")
  21124. },
  21125. {
  21126. name: "Teramacro+",
  21127. height: math.unit(30, "galaxies")
  21128. },
  21129. ]
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21133. {
  21134. front: {
  21135. height: math.unit(6, "feet"),
  21136. weight: math.unit(150, "lb"),
  21137. name: "Front",
  21138. image: {
  21139. source: "./media/characters/deathy/front.svg",
  21140. extra: 1552 / 1463,
  21141. bottom: 0.025
  21142. }
  21143. },
  21144. side: {
  21145. height: math.unit(6, "feet"),
  21146. weight: math.unit(150, "lb"),
  21147. name: "Side",
  21148. image: {
  21149. source: "./media/characters/deathy/side.svg",
  21150. extra: 1604 / 1455,
  21151. bottom: 0.025
  21152. }
  21153. },
  21154. back: {
  21155. height: math.unit(6, "feet"),
  21156. weight: math.unit(150, "lb"),
  21157. name: "Back",
  21158. image: {
  21159. source: "./media/characters/deathy/back.svg",
  21160. extra: 1580 / 1463,
  21161. bottom: 0.005
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "Micro",
  21168. height: math.unit(5, "millimeters")
  21169. },
  21170. {
  21171. name: "Normal",
  21172. height: math.unit(6 + 5 / 12, "feet"),
  21173. default: true
  21174. },
  21175. ]
  21176. ))
  21177. characterMakers.push(() => makeCharacter(
  21178. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21179. {
  21180. front: {
  21181. height: math.unit(16, "feet"),
  21182. weight: math.unit(4000, "lb"),
  21183. name: "Front",
  21184. image: {
  21185. source: "./media/characters/juniper/front.svg",
  21186. bottom: 0.04
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Normal",
  21193. height: math.unit(16, "feet"),
  21194. default: true
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(6, "feet"),
  21203. weight: math.unit(150, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/hipster/front.svg",
  21207. extra: 1312 / 1209,
  21208. bottom: 0.025
  21209. }
  21210. },
  21211. back: {
  21212. height: math.unit(6, "feet"),
  21213. weight: math.unit(150, "lb"),
  21214. name: "Back",
  21215. image: {
  21216. source: "./media/characters/hipster/back.svg",
  21217. extra: 1281 / 1196,
  21218. bottom: 0.01
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Micro",
  21225. height: math.unit(1, "mm")
  21226. },
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(4, "inches"),
  21230. default: true
  21231. },
  21232. {
  21233. name: "Macro",
  21234. height: math.unit(500, "feet")
  21235. },
  21236. {
  21237. name: "Megamacro",
  21238. height: math.unit(1000, "miles")
  21239. },
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21244. {
  21245. front: {
  21246. height: math.unit(6, "feet"),
  21247. weight: math.unit(150, "lb"),
  21248. name: "Front",
  21249. image: {
  21250. source: "./media/characters/tendirmuldr/front.svg",
  21251. extra: 1878 / 1772,
  21252. bottom: 0.015
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Megamacro",
  21259. height: math.unit(1500, "miles"),
  21260. default: true
  21261. },
  21262. ]
  21263. ))
  21264. characterMakers.push(() => makeCharacter(
  21265. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21266. {
  21267. front: {
  21268. height: math.unit(14, "feet"),
  21269. weight: math.unit(12000, "lb"),
  21270. name: "Front",
  21271. image: {
  21272. source: "./media/characters/mort/front.svg",
  21273. extra: 365 / 318,
  21274. bottom: 0.01
  21275. }
  21276. },
  21277. side: {
  21278. height: math.unit(14, "feet"),
  21279. weight: math.unit(12000, "lb"),
  21280. name: "Side",
  21281. image: {
  21282. source: "./media/characters/mort/side.svg",
  21283. extra: 365 / 318,
  21284. bottom: 0.052
  21285. },
  21286. default: true
  21287. },
  21288. back: {
  21289. height: math.unit(14, "feet"),
  21290. weight: math.unit(12000, "lb"),
  21291. name: "Back",
  21292. image: {
  21293. source: "./media/characters/mort/back.svg",
  21294. extra: 371 / 332,
  21295. bottom: 0.18
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(14, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21309. {
  21310. front: {
  21311. height: math.unit(8, "feet"),
  21312. weight: math.unit(1, "ton"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/lycoa/front.svg",
  21316. extra: 1836/1728,
  21317. bottom: 81/1917
  21318. }
  21319. },
  21320. back: {
  21321. height: math.unit(8, "feet"),
  21322. weight: math.unit(1, "ton"),
  21323. name: "Back",
  21324. image: {
  21325. source: "./media/characters/lycoa/back.svg",
  21326. extra: 1785/1720,
  21327. bottom: 91/1876
  21328. }
  21329. },
  21330. head: {
  21331. height: math.unit(1.6243, "feet"),
  21332. name: "Head",
  21333. image: {
  21334. source: "./media/characters/lycoa/head.svg",
  21335. extra: 1011/782,
  21336. bottom: 0/1011
  21337. }
  21338. },
  21339. tailmaw: {
  21340. height: math.unit(1.9, "feet"),
  21341. name: "Tailmaw",
  21342. image: {
  21343. source: "./media/characters/lycoa/tailmaw.svg"
  21344. }
  21345. },
  21346. tentacles: {
  21347. height: math.unit(2.1, "feet"),
  21348. name: "Tentacles",
  21349. image: {
  21350. source: "./media/characters/lycoa/tentacles.svg"
  21351. }
  21352. },
  21353. dick: {
  21354. height: math.unit(1.73, "feet"),
  21355. name: "Dick",
  21356. image: {
  21357. source: "./media/characters/lycoa/dick.svg"
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Normal",
  21364. height: math.unit(8, "feet"),
  21365. default: true
  21366. },
  21367. {
  21368. name: "Macro",
  21369. height: math.unit(30, "feet")
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21375. {
  21376. front: {
  21377. height: math.unit(4 + 2 / 12, "feet"),
  21378. weight: math.unit(70, "lb"),
  21379. name: "Front",
  21380. image: {
  21381. source: "./media/characters/naldara/front.svg",
  21382. extra: 1664/1387,
  21383. bottom: 81/1745
  21384. },
  21385. form: "anthro",
  21386. default: true
  21387. },
  21388. naga: {
  21389. height: math.unit(20, "feet"),
  21390. weight: math.unit(15000, "kg"),
  21391. name: "Front",
  21392. image: {
  21393. source: "./media/characters/naldara/naga.svg",
  21394. extra: 1590/1396,
  21395. bottom: 285/1875
  21396. },
  21397. form: "naga",
  21398. default: true
  21399. },
  21400. },
  21401. [
  21402. {
  21403. name: "Normal",
  21404. height: math.unit(4 + 2 / 12, "feet"),
  21405. form: "anthro",
  21406. default: true
  21407. },
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(20, "feet"),
  21411. form: "naga",
  21412. default: true
  21413. },
  21414. ],
  21415. {
  21416. "anthro": {
  21417. name: "Anthro",
  21418. default: true
  21419. },
  21420. "naga": {
  21421. name: "Naga"
  21422. }
  21423. }
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21427. {
  21428. front: {
  21429. height: math.unit(13 + 7 / 12, "feet"),
  21430. weight: math.unit(1500, "lb"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/briar/front.svg",
  21434. extra: 1223/1157,
  21435. bottom: 123/1346
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(13 + 7 / 12, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21449. {
  21450. side: {
  21451. height: math.unit(16, "feet"),
  21452. weight: math.unit(500, "lb"),
  21453. name: "Side",
  21454. image: {
  21455. source: "./media/characters/vanguard/side.svg",
  21456. extra: 1022/914,
  21457. bottom: 30/1052
  21458. }
  21459. },
  21460. sideAlt: {
  21461. height: math.unit(10, "feet"),
  21462. weight: math.unit(500, "lb"),
  21463. name: "Side (Alt)",
  21464. image: {
  21465. source: "./media/characters/vanguard/side-alt.svg",
  21466. extra: 502 / 425,
  21467. bottom: 0.087
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(17.71, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(7.5, "feet"),
  21484. weight: math.unit(2, "lb"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/artemis/work-safe-front.svg",
  21488. extra: 1192 / 1075,
  21489. bottom: 0.07
  21490. },
  21491. form: "work-safe",
  21492. default: true
  21493. },
  21494. frontNsfw: {
  21495. height: math.unit(7.5, "feet"),
  21496. weight: math.unit(2, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/artemis/calibrating-front.svg",
  21500. extra: 1192 / 1075,
  21501. bottom: 0.07
  21502. },
  21503. form: "calibrating",
  21504. default: true
  21505. },
  21506. frontNsfwer: {
  21507. height: math.unit(7.5, "feet"),
  21508. weight: math.unit(2, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/artemis/oversize-load-front.svg",
  21512. extra: 1192 / 1075,
  21513. bottom: 0.07
  21514. },
  21515. form: "oversize-load",
  21516. default: true
  21517. },
  21518. side: {
  21519. height: math.unit(7.5, "feet"),
  21520. weight: math.unit(2, "lb"),
  21521. name: "Side",
  21522. image: {
  21523. source: "./media/characters/artemis/work-safe-side.svg",
  21524. extra: 1192 / 1075,
  21525. bottom: 0.07
  21526. },
  21527. form: "work-safe"
  21528. },
  21529. sideNsfw: {
  21530. height: math.unit(7.5, "feet"),
  21531. weight: math.unit(2, "lb"),
  21532. name: "Side",
  21533. image: {
  21534. source: "./media/characters/artemis/calibrating-side.svg",
  21535. extra: 1192 / 1075,
  21536. bottom: 0.07
  21537. },
  21538. form: "calibrating"
  21539. },
  21540. sideNsfwer: {
  21541. height: math.unit(7.5, "feet"),
  21542. weight: math.unit(2, "lb"),
  21543. name: "Side",
  21544. image: {
  21545. source: "./media/characters/artemis/oversize-load-side.svg",
  21546. extra: 1192 / 1075,
  21547. bottom: 0.07
  21548. },
  21549. form: "oversize-load"
  21550. },
  21551. maw: {
  21552. height: math.unit(1.1, "feet"),
  21553. name: "Maw",
  21554. image: {
  21555. source: "./media/characters/artemis/maw.svg"
  21556. },
  21557. form: "work-safe"
  21558. },
  21559. stomach: {
  21560. height: math.unit(0.95, "feet"),
  21561. name: "Stomach",
  21562. image: {
  21563. source: "./media/characters/artemis/stomach.svg"
  21564. },
  21565. form: "work-safe"
  21566. },
  21567. dickCanine: {
  21568. height: math.unit(1, "feet"),
  21569. name: "Dick (Canine)",
  21570. image: {
  21571. source: "./media/characters/artemis/dick-canine.svg"
  21572. },
  21573. form: "calibrating"
  21574. },
  21575. dickEquine: {
  21576. height: math.unit(0.85, "feet"),
  21577. name: "Dick (Equine)",
  21578. image: {
  21579. source: "./media/characters/artemis/dick-equine.svg"
  21580. },
  21581. form: "calibrating"
  21582. },
  21583. dickExotic: {
  21584. height: math.unit(0.85, "feet"),
  21585. name: "Dick (Exotic)",
  21586. image: {
  21587. source: "./media/characters/artemis/dick-exotic.svg"
  21588. },
  21589. form: "calibrating"
  21590. },
  21591. dickCanineBigger: {
  21592. height: math.unit(1 * 1.33, "feet"),
  21593. name: "Dick (Canine)",
  21594. image: {
  21595. source: "./media/characters/artemis/dick-canine.svg"
  21596. },
  21597. form: "oversize-load"
  21598. },
  21599. dickEquineBigger: {
  21600. height: math.unit(0.85 * 1.33, "feet"),
  21601. name: "Dick (Equine)",
  21602. image: {
  21603. source: "./media/characters/artemis/dick-equine.svg"
  21604. },
  21605. form: "oversize-load"
  21606. },
  21607. dickExoticBigger: {
  21608. height: math.unit(0.85 * 1.33, "feet"),
  21609. name: "Dick (Exotic)",
  21610. image: {
  21611. source: "./media/characters/artemis/dick-exotic.svg"
  21612. },
  21613. form: "oversize-load"
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(7.5, "feet"),
  21620. form: "work-safe",
  21621. default: true
  21622. },
  21623. {
  21624. name: "Normal",
  21625. height: math.unit(7.5, "feet"),
  21626. form: "calibrating",
  21627. default: true
  21628. },
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(7.5, "feet"),
  21632. form: "oversize-load",
  21633. default: true
  21634. },
  21635. {
  21636. name: "Enlarged",
  21637. height: math.unit(12, "feet"),
  21638. form: "work-safe",
  21639. },
  21640. {
  21641. name: "Enlarged",
  21642. height: math.unit(12, "feet"),
  21643. form: "calibrating",
  21644. },
  21645. {
  21646. name: "Enlarged",
  21647. height: math.unit(12, "feet"),
  21648. form: "oversize-load",
  21649. },
  21650. ],
  21651. {
  21652. "work-safe": {
  21653. name: "Work-Safe",
  21654. default: true
  21655. },
  21656. "calibrating": {
  21657. name: "Calibrating"
  21658. },
  21659. "oversize-load": {
  21660. name: "Oversize Load"
  21661. }
  21662. }
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(5 + 3 / 12, "feet"),
  21669. weight: math.unit(160, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/kira/front.svg",
  21673. extra: 906 / 786,
  21674. bottom: 0.01
  21675. }
  21676. },
  21677. back: {
  21678. height: math.unit(5 + 3 / 12, "feet"),
  21679. weight: math.unit(160, "lb"),
  21680. name: "Back",
  21681. image: {
  21682. source: "./media/characters/kira/back.svg",
  21683. extra: 882 / 757,
  21684. bottom: 0.005
  21685. }
  21686. },
  21687. frontDressed: {
  21688. height: math.unit(5 + 3 / 12, "feet"),
  21689. weight: math.unit(160, "lb"),
  21690. name: "Front (Dressed)",
  21691. image: {
  21692. source: "./media/characters/kira/front-dressed.svg",
  21693. extra: 906 / 786,
  21694. bottom: 0.01
  21695. }
  21696. },
  21697. beans: {
  21698. height: math.unit(0.92, "feet"),
  21699. name: "Beans",
  21700. image: {
  21701. source: "./media/characters/kira/beans.svg"
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Normal",
  21708. height: math.unit(5 + 3 / 12, "feet"),
  21709. default: true
  21710. },
  21711. ]
  21712. ))
  21713. characterMakers.push(() => makeCharacter(
  21714. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21715. {
  21716. front: {
  21717. height: math.unit(5 + 4 / 12, "feet"),
  21718. weight: math.unit(145, "lb"),
  21719. name: "Front",
  21720. image: {
  21721. source: "./media/characters/scramble/front.svg",
  21722. extra: 763 / 727,
  21723. bottom: 0.05
  21724. }
  21725. },
  21726. back: {
  21727. height: math.unit(5 + 4 / 12, "feet"),
  21728. weight: math.unit(145, "lb"),
  21729. name: "Back",
  21730. image: {
  21731. source: "./media/characters/scramble/back.svg",
  21732. extra: 826 / 737,
  21733. bottom: 0.002
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(5 + 4 / 12, "feet"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21747. {
  21748. side: {
  21749. height: math.unit(6 + 2 / 12, "feet"),
  21750. weight: math.unit(190, "lb"),
  21751. name: "Side",
  21752. image: {
  21753. source: "./media/characters/biscuit/side.svg",
  21754. extra: 858 / 791,
  21755. bottom: 0.044
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(6 + 2 / 12, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(5 + 2 / 12, "feet"),
  21772. weight: math.unit(120, "lb"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/poffin/front.svg",
  21776. extra: 786 / 680,
  21777. bottom: 0.005
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(5 + 2 / 12, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(6 + 3 / 12, "feet"),
  21794. weight: math.unit(519, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/dhari/front.svg",
  21798. extra: 1048 / 946,
  21799. bottom: 0.015
  21800. }
  21801. },
  21802. back: {
  21803. height: math.unit(6 + 3 / 12, "feet"),
  21804. weight: math.unit(519, "lb"),
  21805. name: "Back",
  21806. image: {
  21807. source: "./media/characters/dhari/back.svg",
  21808. extra: 1048 / 931,
  21809. bottom: 0.005
  21810. }
  21811. },
  21812. frontDressed: {
  21813. height: math.unit(6 + 3 / 12, "feet"),
  21814. weight: math.unit(519, "lb"),
  21815. name: "Front (Dressed)",
  21816. image: {
  21817. source: "./media/characters/dhari/front-dressed.svg",
  21818. extra: 1713 / 1546,
  21819. bottom: 0.02
  21820. }
  21821. },
  21822. backDressed: {
  21823. height: math.unit(6 + 3 / 12, "feet"),
  21824. weight: math.unit(519, "lb"),
  21825. name: "Back (Dressed)",
  21826. image: {
  21827. source: "./media/characters/dhari/back-dressed.svg",
  21828. extra: 1699 / 1537,
  21829. bottom: 0.01
  21830. }
  21831. },
  21832. maw: {
  21833. height: math.unit(0.95, "feet"),
  21834. name: "Maw",
  21835. image: {
  21836. source: "./media/characters/dhari/maw.svg"
  21837. }
  21838. },
  21839. wereFront: {
  21840. height: math.unit(12 + 8 / 12, "feet"),
  21841. weight: math.unit(4000, "lb"),
  21842. name: "Front (Were)",
  21843. image: {
  21844. source: "./media/characters/dhari/were-front.svg",
  21845. extra: 1065 / 969,
  21846. bottom: 0.015
  21847. }
  21848. },
  21849. wereBack: {
  21850. height: math.unit(12 + 8 / 12, "feet"),
  21851. weight: math.unit(4000, "lb"),
  21852. name: "Back (Were)",
  21853. image: {
  21854. source: "./media/characters/dhari/were-back.svg",
  21855. extra: 1065 / 969,
  21856. bottom: 0.012
  21857. }
  21858. },
  21859. wereMaw: {
  21860. height: math.unit(0.625, "meters"),
  21861. name: "Maw (Were)",
  21862. image: {
  21863. source: "./media/characters/dhari/were-maw.svg"
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(6 + 3 / 12, "feet"),
  21871. default: true
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21877. {
  21878. anthro: {
  21879. height: math.unit(5 + 7 / 12, "feet"),
  21880. weight: math.unit(175, "lb"),
  21881. name: "Anthro",
  21882. image: {
  21883. source: "./media/characters/rena-dyne/anthro.svg",
  21884. extra: 1849 / 1785,
  21885. bottom: 0.005
  21886. }
  21887. },
  21888. taur: {
  21889. height: math.unit(15 + 6 / 12, "feet"),
  21890. weight: math.unit(8000, "lb"),
  21891. name: "Taur",
  21892. image: {
  21893. source: "./media/characters/rena-dyne/taur.svg",
  21894. extra: 2315 / 2234,
  21895. bottom: 0.033
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(5 + 7 / 12, "feet"),
  21903. default: true
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21909. {
  21910. front: {
  21911. height: math.unit(8, "feet"),
  21912. weight: math.unit(600, "lb"),
  21913. name: "Front",
  21914. image: {
  21915. source: "./media/characters/weremeep/front.svg",
  21916. extra: 970/849,
  21917. bottom: 7/977
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(8, "feet"),
  21925. default: true
  21926. },
  21927. {
  21928. name: "Lorg",
  21929. height: math.unit(12, "feet")
  21930. },
  21931. {
  21932. name: "Oh Lawd She Comin'",
  21933. height: math.unit(20, "feet")
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21939. {
  21940. front: {
  21941. height: math.unit(4, "feet"),
  21942. weight: math.unit(90, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/reza/front.svg",
  21946. extra: 1183 / 1111,
  21947. bottom: 0.017
  21948. }
  21949. },
  21950. back: {
  21951. height: math.unit(4, "feet"),
  21952. weight: math.unit(90, "lb"),
  21953. name: "Back",
  21954. image: {
  21955. source: "./media/characters/reza/back.svg",
  21956. extra: 1183 / 1111,
  21957. bottom: 0.01
  21958. }
  21959. },
  21960. drake: {
  21961. height: math.unit(30, "feet"),
  21962. weight: math.unit(246960, "lb"),
  21963. name: "Drake",
  21964. image: {
  21965. source: "./media/characters/reza/drake.svg",
  21966. extra: 2350 / 2024,
  21967. bottom: 60.7 / 2403
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(4, "feet"),
  21975. default: true
  21976. },
  21977. ]
  21978. ))
  21979. characterMakers.push(() => makeCharacter(
  21980. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21981. {
  21982. side: {
  21983. height: math.unit(15, "feet"),
  21984. weight: math.unit(14, "tons"),
  21985. name: "Side",
  21986. image: {
  21987. source: "./media/characters/athea/side.svg",
  21988. extra: 960 / 540,
  21989. bottom: 0.003
  21990. }
  21991. },
  21992. sitting: {
  21993. height: math.unit(6 * 2.85, "feet"),
  21994. weight: math.unit(14, "tons"),
  21995. name: "Sitting",
  21996. image: {
  21997. source: "./media/characters/athea/sitting.svg",
  21998. extra: 621 / 581,
  21999. bottom: 0.075
  22000. }
  22001. },
  22002. maw: {
  22003. height: math.unit(7.59498031496063, "feet"),
  22004. name: "Maw",
  22005. image: {
  22006. source: "./media/characters/athea/maw.svg"
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Lap Cat",
  22013. height: math.unit(2.5, "feet")
  22014. },
  22015. {
  22016. name: "Minimacro",
  22017. height: math.unit(15, "feet"),
  22018. default: true
  22019. },
  22020. {
  22021. name: "Macro",
  22022. height: math.unit(120, "feet")
  22023. },
  22024. {
  22025. name: "Macro+",
  22026. height: math.unit(640, "feet")
  22027. },
  22028. {
  22029. name: "Colossus",
  22030. height: math.unit(2.2, "miles")
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22036. {
  22037. front: {
  22038. height: math.unit(8 + 8 / 12, "feet"),
  22039. weight: math.unit(130, "kg"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/seroko/front.svg",
  22043. extra: 1385 / 1280,
  22044. bottom: 0.025
  22045. }
  22046. },
  22047. back: {
  22048. height: math.unit(8 + 8 / 12, "feet"),
  22049. weight: math.unit(130, "kg"),
  22050. name: "Back",
  22051. image: {
  22052. source: "./media/characters/seroko/back.svg",
  22053. extra: 1369 / 1238,
  22054. bottom: 0.018
  22055. }
  22056. },
  22057. frontDressed: {
  22058. height: math.unit(8 + 8 / 12, "feet"),
  22059. weight: math.unit(130, "kg"),
  22060. name: "Front (Dressed)",
  22061. image: {
  22062. source: "./media/characters/seroko/front-dressed.svg",
  22063. extra: 1366 / 1275,
  22064. bottom: 0.03
  22065. }
  22066. },
  22067. },
  22068. [
  22069. {
  22070. name: "Normal",
  22071. height: math.unit(8 + 8 / 12, "feet"),
  22072. default: true
  22073. },
  22074. ]
  22075. ))
  22076. characterMakers.push(() => makeCharacter(
  22077. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22078. {
  22079. front: {
  22080. height: math.unit(5.5, "feet"),
  22081. weight: math.unit(160, "lb"),
  22082. name: "Front",
  22083. image: {
  22084. source: "./media/characters/quatzi/front.svg",
  22085. extra: 2346 / 2242,
  22086. bottom: 0.015
  22087. }
  22088. },
  22089. },
  22090. [
  22091. {
  22092. name: "Normal",
  22093. height: math.unit(5.5, "feet"),
  22094. default: true
  22095. },
  22096. {
  22097. name: "Big",
  22098. height: math.unit(7.7, "feet")
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(5 + 11 / 12, "feet"),
  22107. weight: math.unit(180, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/sen/front.svg",
  22111. extra: 1321 / 1254,
  22112. bottom: 0.015
  22113. }
  22114. },
  22115. side: {
  22116. height: math.unit(5 + 11 / 12, "feet"),
  22117. weight: math.unit(180, "lb"),
  22118. name: "Side",
  22119. image: {
  22120. source: "./media/characters/sen/side.svg",
  22121. extra: 1321 / 1254,
  22122. bottom: 0.007
  22123. }
  22124. },
  22125. back: {
  22126. height: math.unit(5 + 11 / 12, "feet"),
  22127. weight: math.unit(180, "lb"),
  22128. name: "Back",
  22129. image: {
  22130. source: "./media/characters/sen/back.svg",
  22131. extra: 1321 / 1254
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(5 + 11 / 12, "feet"),
  22139. default: true
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22145. {
  22146. front: {
  22147. height: math.unit(166.6, "cm"),
  22148. weight: math.unit(66.6, "kg"),
  22149. name: "Front",
  22150. image: {
  22151. source: "./media/characters/fruity/front.svg",
  22152. extra: 1510 / 1386,
  22153. bottom: 0.04
  22154. }
  22155. },
  22156. back: {
  22157. height: math.unit(166.6, "cm"),
  22158. weight: math.unit(66.6, "lb"),
  22159. name: "Back",
  22160. image: {
  22161. source: "./media/characters/fruity/back.svg",
  22162. extra: 1563 / 1435,
  22163. bottom: 0.005
  22164. }
  22165. },
  22166. },
  22167. [
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(166.6, "cm"),
  22171. default: true
  22172. },
  22173. {
  22174. name: "Demonic",
  22175. height: math.unit(166.6, "feet")
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22181. {
  22182. side: {
  22183. height: math.unit(10, "feet"),
  22184. weight: math.unit(500, "lb"),
  22185. name: "Side",
  22186. image: {
  22187. source: "./media/characters/zost/side.svg",
  22188. extra: 2870/2533,
  22189. bottom: 252/3122
  22190. }
  22191. },
  22192. mawFront: {
  22193. height: math.unit(1.08, "meters"),
  22194. name: "Maw (Front)",
  22195. image: {
  22196. source: "./media/characters/zost/maw-front.svg"
  22197. }
  22198. },
  22199. mawSide: {
  22200. height: math.unit(2.66, "feet"),
  22201. name: "Maw (Side)",
  22202. image: {
  22203. source: "./media/characters/zost/maw-side.svg"
  22204. }
  22205. },
  22206. wingspan: {
  22207. height: math.unit(7.4, "feet"),
  22208. name: "Wingspan",
  22209. image: {
  22210. source: "./media/characters/zost/wingspan.svg"
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Normal",
  22217. height: math.unit(10, "feet"),
  22218. default: true
  22219. },
  22220. ]
  22221. ))
  22222. characterMakers.push(() => makeCharacter(
  22223. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22224. {
  22225. front: {
  22226. height: math.unit(5 + 4 / 12, "feet"),
  22227. weight: math.unit(120, "lb"),
  22228. name: "Front",
  22229. image: {
  22230. source: "./media/characters/luci/front.svg",
  22231. extra: 1985 / 1884,
  22232. bottom: 0.04
  22233. }
  22234. },
  22235. back: {
  22236. height: math.unit(5 + 4 / 12, "feet"),
  22237. weight: math.unit(120, "lb"),
  22238. name: "Back",
  22239. image: {
  22240. source: "./media/characters/luci/back.svg",
  22241. extra: 1892 / 1791,
  22242. bottom: 0.002
  22243. }
  22244. },
  22245. },
  22246. [
  22247. {
  22248. name: "Normal",
  22249. height: math.unit(5 + 4 / 12, "feet"),
  22250. default: true
  22251. },
  22252. ]
  22253. ))
  22254. characterMakers.push(() => makeCharacter(
  22255. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22256. {
  22257. front: {
  22258. height: math.unit(1500, "feet"),
  22259. weight: math.unit(3.8e6, "tons"),
  22260. name: "Front",
  22261. image: {
  22262. source: "./media/characters/2th/front.svg",
  22263. extra: 3489 / 3350,
  22264. bottom: 0.1
  22265. }
  22266. },
  22267. foot: {
  22268. height: math.unit(461, "feet"),
  22269. name: "Foot",
  22270. image: {
  22271. source: "./media/characters/2th/foot.svg"
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "\"Micro\"",
  22278. height: math.unit(15 + 7 / 12, "feet")
  22279. },
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(1500, "feet"),
  22283. default: true
  22284. },
  22285. {
  22286. name: "Macro",
  22287. height: math.unit(5000, "feet")
  22288. },
  22289. {
  22290. name: "Megamacro",
  22291. height: math.unit(15, "miles")
  22292. },
  22293. {
  22294. name: "Gigamacro",
  22295. height: math.unit(4000, "miles")
  22296. },
  22297. {
  22298. name: "Galactic",
  22299. height: math.unit(50, "AU")
  22300. },
  22301. ]
  22302. ))
  22303. characterMakers.push(() => makeCharacter(
  22304. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22305. {
  22306. front: {
  22307. height: math.unit(5 + 6 / 12, "feet"),
  22308. weight: math.unit(220, "lb"),
  22309. name: "Front",
  22310. image: {
  22311. source: "./media/characters/amethyst/front.svg",
  22312. extra: 2078 / 2040,
  22313. bottom: 0.045
  22314. }
  22315. },
  22316. back: {
  22317. height: math.unit(5 + 6 / 12, "feet"),
  22318. weight: math.unit(220, "lb"),
  22319. name: "Back",
  22320. image: {
  22321. source: "./media/characters/amethyst/back.svg",
  22322. extra: 2021 / 1989,
  22323. bottom: 0.02
  22324. }
  22325. },
  22326. },
  22327. [
  22328. {
  22329. name: "Normal",
  22330. height: math.unit(5 + 6 / 12, "feet"),
  22331. default: true
  22332. },
  22333. ]
  22334. ))
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22337. {
  22338. front: {
  22339. height: math.unit(4 + 11 / 12, "feet"),
  22340. weight: math.unit(120, "lb"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/yumi-akiyama/front.svg",
  22344. extra: 1327 / 1235,
  22345. bottom: 0.02
  22346. }
  22347. },
  22348. back: {
  22349. height: math.unit(4 + 11 / 12, "feet"),
  22350. weight: math.unit(120, "lb"),
  22351. name: "Back",
  22352. image: {
  22353. source: "./media/characters/yumi-akiyama/back.svg",
  22354. extra: 1287 / 1245,
  22355. bottom: 0.002
  22356. }
  22357. },
  22358. },
  22359. [
  22360. {
  22361. name: "Galactic",
  22362. height: math.unit(50, "galaxies"),
  22363. default: true
  22364. },
  22365. {
  22366. name: "Universal",
  22367. height: math.unit(100, "universes")
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(8, "feet"),
  22376. weight: math.unit(500, "lb"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/rifter-yrmori/front.svg",
  22380. extra: 1180 / 1125,
  22381. bottom: 0.02
  22382. }
  22383. },
  22384. back: {
  22385. height: math.unit(8, "feet"),
  22386. weight: math.unit(500, "lb"),
  22387. name: "Back",
  22388. image: {
  22389. source: "./media/characters/rifter-yrmori/back.svg",
  22390. extra: 1190 / 1145,
  22391. bottom: 0.001
  22392. }
  22393. },
  22394. wings: {
  22395. height: math.unit(7.75, "feet"),
  22396. weight: math.unit(500, "lb"),
  22397. name: "Wings",
  22398. image: {
  22399. source: "./media/characters/rifter-yrmori/wings.svg",
  22400. extra: 1357 / 1285
  22401. }
  22402. },
  22403. maw: {
  22404. height: math.unit(0.8, "feet"),
  22405. name: "Maw",
  22406. image: {
  22407. source: "./media/characters/rifter-yrmori/maw.svg"
  22408. }
  22409. },
  22410. mawfront: {
  22411. height: math.unit(1.45, "feet"),
  22412. name: "Maw (Front)",
  22413. image: {
  22414. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(8, "feet"),
  22422. default: true
  22423. },
  22424. {
  22425. name: "Macro",
  22426. height: math.unit(42, "meters")
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22432. {
  22433. were: {
  22434. height: math.unit(25 + 6 / 12, "feet"),
  22435. weight: math.unit(10000, "lb"),
  22436. name: "Were",
  22437. image: {
  22438. source: "./media/characters/tahajin/were.svg",
  22439. extra: 801 / 770,
  22440. bottom: 0.042
  22441. }
  22442. },
  22443. aquatic: {
  22444. height: math.unit(6 + 4 / 12, "feet"),
  22445. weight: math.unit(160, "lb"),
  22446. name: "Aquatic",
  22447. image: {
  22448. source: "./media/characters/tahajin/aquatic.svg",
  22449. extra: 572 / 542,
  22450. bottom: 0.04
  22451. }
  22452. },
  22453. chow: {
  22454. height: math.unit(8 + 11 / 12, "feet"),
  22455. weight: math.unit(450, "lb"),
  22456. name: "Chow",
  22457. image: {
  22458. source: "./media/characters/tahajin/chow.svg",
  22459. extra: 660 / 640,
  22460. bottom: 0.015
  22461. }
  22462. },
  22463. demiNaga: {
  22464. height: math.unit(6 + 8 / 12, "feet"),
  22465. weight: math.unit(300, "lb"),
  22466. name: "Demi Naga",
  22467. image: {
  22468. source: "./media/characters/tahajin/demi-naga.svg",
  22469. extra: 643 / 615,
  22470. bottom: 0.1
  22471. }
  22472. },
  22473. data: {
  22474. height: math.unit(5, "inches"),
  22475. weight: math.unit(0.1, "lb"),
  22476. name: "Data",
  22477. image: {
  22478. source: "./media/characters/tahajin/data.svg"
  22479. }
  22480. },
  22481. fluu: {
  22482. height: math.unit(5 + 7 / 12, "feet"),
  22483. weight: math.unit(140, "lb"),
  22484. name: "Fluu",
  22485. image: {
  22486. source: "./media/characters/tahajin/fluu.svg",
  22487. extra: 628 / 592,
  22488. bottom: 0.02
  22489. }
  22490. },
  22491. starWarrior: {
  22492. height: math.unit(4 + 5 / 12, "feet"),
  22493. weight: math.unit(50, "lb"),
  22494. name: "Star Warrior",
  22495. image: {
  22496. source: "./media/characters/tahajin/star-warrior.svg"
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(25 + 6 / 12, "feet"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(8, "feet"),
  22513. weight: math.unit(350, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/gabira/front.svg",
  22517. extra: 1261/1154,
  22518. bottom: 51/1312
  22519. }
  22520. },
  22521. back: {
  22522. height: math.unit(8, "feet"),
  22523. weight: math.unit(350, "lb"),
  22524. name: "Back",
  22525. image: {
  22526. source: "./media/characters/gabira/back.svg",
  22527. extra: 1265/1163,
  22528. bottom: 46/1311
  22529. }
  22530. },
  22531. head: {
  22532. height: math.unit(2.85, "feet"),
  22533. name: "Head",
  22534. image: {
  22535. source: "./media/characters/gabira/head.svg"
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(8, "feet"),
  22543. default: true
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(5 + 3 / 12, "feet"),
  22552. weight: math.unit(137, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/sasha-katraine/front.svg",
  22556. extra: 1745/1694,
  22557. bottom: 37/1782
  22558. }
  22559. },
  22560. back: {
  22561. height: math.unit(5 + 3 / 12, "feet"),
  22562. weight: math.unit(137, "lb"),
  22563. name: "Back",
  22564. image: {
  22565. source: "./media/characters/sasha-katraine/back.svg",
  22566. extra: 1776/1699,
  22567. bottom: 26/1802
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Micro",
  22574. height: math.unit(5, "inches")
  22575. },
  22576. {
  22577. name: "Normal",
  22578. height: math.unit(5 + 3 / 12, "feet"),
  22579. default: true
  22580. },
  22581. ]
  22582. ))
  22583. characterMakers.push(() => makeCharacter(
  22584. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22585. {
  22586. side: {
  22587. height: math.unit(4, "inches"),
  22588. weight: math.unit(200, "grams"),
  22589. name: "Side",
  22590. image: {
  22591. source: "./media/characters/der/side.svg",
  22592. extra: 719 / 400,
  22593. bottom: 30.6 / 749.9187
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Micro",
  22600. height: math.unit(4, "inches"),
  22601. default: true
  22602. },
  22603. ]
  22604. ))
  22605. characterMakers.push(() => makeCharacter(
  22606. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22607. {
  22608. side: {
  22609. height: math.unit(30, "meters"),
  22610. weight: math.unit(700, "tonnes"),
  22611. name: "Side",
  22612. image: {
  22613. source: "./media/characters/fixerdragon/side.svg",
  22614. extra: (1293.0514 - 116.03) / 1106.86,
  22615. bottom: 116.03 / 1293.0514
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Planck",
  22622. height: math.unit(1.6e-35, "meters")
  22623. },
  22624. {
  22625. name: "Micro",
  22626. height: math.unit(0.4, "meters")
  22627. },
  22628. {
  22629. name: "Normal",
  22630. height: math.unit(30, "meters"),
  22631. default: true
  22632. },
  22633. {
  22634. name: "Megamacro",
  22635. height: math.unit(1.2, "megameters")
  22636. },
  22637. {
  22638. name: "Teramacro",
  22639. height: math.unit(130, "terameters")
  22640. },
  22641. {
  22642. name: "Yottamacro",
  22643. height: math.unit(6200, "yottameters")
  22644. },
  22645. ]
  22646. ));
  22647. characterMakers.push(() => makeCharacter(
  22648. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22649. {
  22650. front: {
  22651. height: math.unit(8, "feet"),
  22652. weight: math.unit(250, "lb"),
  22653. name: "Front",
  22654. image: {
  22655. source: "./media/characters/kite/front.svg",
  22656. extra: 2796 / 2659,
  22657. bottom: 0.002
  22658. }
  22659. },
  22660. },
  22661. [
  22662. {
  22663. name: "Normal",
  22664. height: math.unit(8, "feet"),
  22665. default: true
  22666. },
  22667. {
  22668. name: "Macro",
  22669. height: math.unit(360, "feet")
  22670. },
  22671. {
  22672. name: "Megamacro",
  22673. height: math.unit(1500, "feet")
  22674. },
  22675. ]
  22676. ))
  22677. characterMakers.push(() => makeCharacter(
  22678. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22679. {
  22680. front: {
  22681. height: math.unit(5 + 11/12, "feet"),
  22682. weight: math.unit(170, "lb"),
  22683. name: "Front",
  22684. image: {
  22685. source: "./media/characters/poojawa-vynar/front.svg",
  22686. extra: 1735/1585,
  22687. bottom: 96/1831
  22688. }
  22689. },
  22690. back: {
  22691. height: math.unit(5 + 11/12, "feet"),
  22692. weight: math.unit(170, "lb"),
  22693. name: "Back",
  22694. image: {
  22695. source: "./media/characters/poojawa-vynar/back.svg",
  22696. extra: 1749/1607,
  22697. bottom: 28/1777
  22698. }
  22699. },
  22700. male: {
  22701. height: math.unit(5 + 11/12, "feet"),
  22702. weight: math.unit(170, "lb"),
  22703. name: "Male",
  22704. image: {
  22705. source: "./media/characters/poojawa-vynar/male.svg",
  22706. extra: 1855/1713,
  22707. bottom: 63/1918
  22708. }
  22709. },
  22710. taur: {
  22711. height: math.unit(5 + 11/12, "feet"),
  22712. weight: math.unit(170, "lb"),
  22713. name: "Taur",
  22714. image: {
  22715. source: "./media/characters/poojawa-vynar/taur.svg",
  22716. extra: 1151/1059,
  22717. bottom: 356/1507
  22718. }
  22719. },
  22720. frontDressed: {
  22721. height: math.unit(5 + 11/12, "feet"),
  22722. weight: math.unit(170, "lb"),
  22723. name: "Front (Dressed)",
  22724. image: {
  22725. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22726. extra: 1735/1585,
  22727. bottom: 96/1831
  22728. }
  22729. },
  22730. backDressed: {
  22731. height: math.unit(5 + 11/12, "feet"),
  22732. weight: math.unit(170, "lb"),
  22733. name: "Back (Dressed)",
  22734. image: {
  22735. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22736. extra: 1749/1607,
  22737. bottom: 28/1777
  22738. }
  22739. },
  22740. maleDressed: {
  22741. height: math.unit(5 + 11/12, "feet"),
  22742. weight: math.unit(170, "lb"),
  22743. name: "Male (Dressed)",
  22744. image: {
  22745. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22746. extra: 1855/1713,
  22747. bottom: 63/1918
  22748. }
  22749. },
  22750. taurDressed: {
  22751. height: math.unit(5 + 11/12, "feet"),
  22752. weight: math.unit(170, "lb"),
  22753. name: "Taur (Dressed)",
  22754. image: {
  22755. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22756. extra: 1151/1059,
  22757. bottom: 356/1507
  22758. }
  22759. },
  22760. maw: {
  22761. height: math.unit(1.46, "feet"),
  22762. name: "Maw",
  22763. image: {
  22764. source: "./media/characters/poojawa-vynar/maw.svg"
  22765. }
  22766. },
  22767. head: {
  22768. height: math.unit(2.34, "feet"),
  22769. name: "Head",
  22770. image: {
  22771. source: "./media/characters/poojawa-vynar/head.svg"
  22772. }
  22773. },
  22774. paw: {
  22775. height: math.unit(1.61, "feet"),
  22776. name: "Paw",
  22777. image: {
  22778. source: "./media/characters/poojawa-vynar/paw.svg"
  22779. }
  22780. },
  22781. pawToering: {
  22782. height: math.unit(1.72, "feet"),
  22783. name: "Paw (Toering)",
  22784. image: {
  22785. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22786. }
  22787. },
  22788. toering: {
  22789. height: math.unit(2.9, "inches"),
  22790. name: "Toering",
  22791. image: {
  22792. source: "./media/characters/poojawa-vynar/toering.svg"
  22793. }
  22794. },
  22795. shaft: {
  22796. height: math.unit(0.625, "feet"),
  22797. name: "Shaft",
  22798. image: {
  22799. source: "./media/characters/poojawa-vynar/shaft.svg"
  22800. }
  22801. },
  22802. spade: {
  22803. height: math.unit(0.42, "feet"),
  22804. name: "Spade",
  22805. image: {
  22806. source: "./media/characters/poojawa-vynar/spade.svg"
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Shortstack",
  22813. height: math.unit(4, "feet")
  22814. },
  22815. {
  22816. name: "Normal",
  22817. height: math.unit(5 + 11 / 12, "feet"),
  22818. default: true
  22819. },
  22820. {
  22821. name: "Tauric",
  22822. height: math.unit(4, "meters")
  22823. },
  22824. ]
  22825. ))
  22826. characterMakers.push(() => makeCharacter(
  22827. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22828. {
  22829. front: {
  22830. height: math.unit(293, "meters"),
  22831. weight: math.unit(70400, "tons"),
  22832. name: "Front",
  22833. image: {
  22834. source: "./media/characters/violette/front.svg",
  22835. extra: 1227 / 1180,
  22836. bottom: 0.005
  22837. }
  22838. },
  22839. back: {
  22840. height: math.unit(293, "meters"),
  22841. weight: math.unit(70400, "tons"),
  22842. name: "Back",
  22843. image: {
  22844. source: "./media/characters/violette/back.svg",
  22845. extra: 1227 / 1180,
  22846. bottom: 0.005
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Macro",
  22853. height: math.unit(293, "meters"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(1050, "feet"),
  22863. weight: math.unit(200000, "tons"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/alessandra/front.svg",
  22867. extra: 960 / 912,
  22868. bottom: 0.06
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(1050, "feet")
  22876. },
  22877. {
  22878. name: "Macro+",
  22879. height: math.unit(900, "meters"),
  22880. default: true
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(5, "feet"),
  22889. weight: math.unit(187, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/person/front.svg",
  22893. extra: 3087 / 2945,
  22894. bottom: 91 / 3181
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Micro",
  22901. height: math.unit(3, "inches")
  22902. },
  22903. {
  22904. name: "Normal",
  22905. height: math.unit(5, "feet"),
  22906. default: true
  22907. },
  22908. {
  22909. name: "Macro",
  22910. height: math.unit(90, "feet")
  22911. },
  22912. {
  22913. name: "Max Size",
  22914. height: math.unit(280, "feet")
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(4.5, "meters"),
  22923. weight: math.unit(3200, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/ty/front.svg",
  22927. extra: 1038 / 960,
  22928. bottom: 31.156 / 1068
  22929. }
  22930. },
  22931. back: {
  22932. height: math.unit(4.5, "meters"),
  22933. weight: math.unit(3200, "lb"),
  22934. name: "Back",
  22935. image: {
  22936. source: "./media/characters/ty/back.svg",
  22937. extra: 1044 / 966,
  22938. bottom: 7.48 / 1049
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Normal",
  22945. height: math.unit(4.5, "meters"),
  22946. default: true
  22947. },
  22948. ]
  22949. ))
  22950. characterMakers.push(() => makeCharacter(
  22951. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22952. {
  22953. front: {
  22954. height: math.unit(5 + 4 / 12, "feet"),
  22955. weight: math.unit(115, "lb"),
  22956. name: "Front",
  22957. image: {
  22958. source: "./media/characters/rocky/front.svg",
  22959. extra: 1012 / 975,
  22960. bottom: 54 / 1066
  22961. }
  22962. },
  22963. },
  22964. [
  22965. {
  22966. name: "Normal",
  22967. height: math.unit(5 + 4 / 12, "feet"),
  22968. default: true
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22974. {
  22975. upright: {
  22976. height: math.unit(6, "meters"),
  22977. weight: math.unit(4000, "kg"),
  22978. name: "Upright",
  22979. image: {
  22980. source: "./media/characters/ruin/upright.svg",
  22981. extra: 668 / 661,
  22982. bottom: 42 / 799.8396
  22983. }
  22984. },
  22985. },
  22986. [
  22987. {
  22988. name: "Normal",
  22989. height: math.unit(6, "meters"),
  22990. default: true
  22991. },
  22992. ]
  22993. ))
  22994. characterMakers.push(() => makeCharacter(
  22995. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22996. {
  22997. front: {
  22998. height: math.unit(5, "feet"),
  22999. weight: math.unit(106, "lb"),
  23000. name: "Front",
  23001. image: {
  23002. source: "./media/characters/robin/front.svg",
  23003. extra: 862 / 799,
  23004. bottom: 42.4 / 914.8856
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Normal",
  23011. height: math.unit(5, "feet"),
  23012. default: true
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23018. {
  23019. side: {
  23020. height: math.unit(3, "feet"),
  23021. weight: math.unit(225, "lb"),
  23022. name: "Side",
  23023. image: {
  23024. source: "./media/characters/saian/side.svg",
  23025. extra: 566 / 356,
  23026. bottom: 79.7 / 643
  23027. }
  23028. },
  23029. maw: {
  23030. height: math.unit(2.85, "feet"),
  23031. name: "Maw",
  23032. image: {
  23033. source: "./media/characters/saian/maw.svg"
  23034. }
  23035. },
  23036. },
  23037. [
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(3, "feet"),
  23041. default: true
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23047. {
  23048. side: {
  23049. height: math.unit(8, "feet"),
  23050. weight: math.unit(300, "lb"),
  23051. name: "Side",
  23052. image: {
  23053. source: "./media/characters/equus-silvermane/side.svg",
  23054. extra: 2176 / 2050,
  23055. bottom: 65.7 / 2245
  23056. }
  23057. },
  23058. front: {
  23059. height: math.unit(8, "feet"),
  23060. weight: math.unit(300, "lb"),
  23061. name: "Front",
  23062. image: {
  23063. source: "./media/characters/equus-silvermane/front.svg",
  23064. extra: 4633 / 4400,
  23065. bottom: 71.3 / 4706.915
  23066. }
  23067. },
  23068. sideStepping: {
  23069. height: math.unit(8, "feet"),
  23070. weight: math.unit(300, "lb"),
  23071. name: "Side (Stepping)",
  23072. image: {
  23073. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23074. extra: 1968 / 1860,
  23075. bottom: 16.4 / 1989
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(8, "feet")
  23083. },
  23084. {
  23085. name: "Minimacro",
  23086. height: math.unit(75, "feet"),
  23087. default: true
  23088. },
  23089. {
  23090. name: "Macro",
  23091. height: math.unit(150, "feet")
  23092. },
  23093. {
  23094. name: "Macro+",
  23095. height: math.unit(1000, "feet")
  23096. },
  23097. {
  23098. name: "Megamacro",
  23099. height: math.unit(1, "mile")
  23100. },
  23101. ]
  23102. ))
  23103. characterMakers.push(() => makeCharacter(
  23104. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23105. {
  23106. side: {
  23107. height: math.unit(20, "feet"),
  23108. weight: math.unit(30000, "kg"),
  23109. name: "Side",
  23110. image: {
  23111. source: "./media/characters/windar/side.svg",
  23112. extra: 1491 / 1248,
  23113. bottom: 82.56 / 1568
  23114. }
  23115. },
  23116. },
  23117. [
  23118. {
  23119. name: "Normal",
  23120. height: math.unit(20, "feet"),
  23121. default: true
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23127. {
  23128. side: {
  23129. height: math.unit(15.66, "feet"),
  23130. weight: math.unit(150, "lb"),
  23131. name: "Side",
  23132. image: {
  23133. source: "./media/characters/melody/side.svg",
  23134. extra: 1097 / 944,
  23135. bottom: 11.8 / 1109
  23136. }
  23137. },
  23138. sideOutfit: {
  23139. height: math.unit(15.66, "feet"),
  23140. weight: math.unit(150, "lb"),
  23141. name: "Side (Outfit)",
  23142. image: {
  23143. source: "./media/characters/melody/side-outfit.svg",
  23144. extra: 1097 / 944,
  23145. bottom: 11.8 / 1109
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "Normal",
  23152. height: math.unit(15.66, "feet"),
  23153. default: true
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23159. {
  23160. armoredFront: {
  23161. height: math.unit(8, "feet"),
  23162. weight: math.unit(325, "lb"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/windera/armored-front.svg",
  23166. extra: 1830/1598,
  23167. bottom: 151/1981
  23168. },
  23169. form: "armored",
  23170. default: true
  23171. },
  23172. macroFront: {
  23173. height: math.unit(70, "feet"),
  23174. weight: math.unit(315453, "lb"),
  23175. name: "Front",
  23176. image: {
  23177. source: "./media/characters/windera/macro-front.svg",
  23178. extra: 963/883,
  23179. bottom: 23/986
  23180. },
  23181. form: "macro",
  23182. default: true
  23183. },
  23184. },
  23185. [
  23186. {
  23187. name: "Normal",
  23188. height: math.unit(8, "feet"),
  23189. default: true,
  23190. form: "armored"
  23191. },
  23192. {
  23193. name: "Normal",
  23194. height: math.unit(70, "feet"),
  23195. default: true,
  23196. form: "macro"
  23197. },
  23198. ],
  23199. {
  23200. "armored": {
  23201. name: "Armored",
  23202. default: true
  23203. },
  23204. "macro": {
  23205. name: "Macro",
  23206. },
  23207. }
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23211. {
  23212. front: {
  23213. height: math.unit(28.75, "feet"),
  23214. weight: math.unit(2000, "kg"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/sonear/front.svg",
  23218. extra: 1041.1 / 964.9,
  23219. bottom: 53.7 / 1096.6
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Normal",
  23226. height: math.unit(28.75, "feet"),
  23227. default: true
  23228. },
  23229. ]
  23230. ))
  23231. characterMakers.push(() => makeCharacter(
  23232. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23233. {
  23234. side: {
  23235. height: math.unit(25.5, "feet"),
  23236. weight: math.unit(23000, "kg"),
  23237. name: "Side",
  23238. image: {
  23239. source: "./media/characters/kanara/side.svg"
  23240. }
  23241. },
  23242. },
  23243. [
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(25.5, "feet"),
  23247. default: true
  23248. },
  23249. ]
  23250. ))
  23251. characterMakers.push(() => makeCharacter(
  23252. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23253. {
  23254. side: {
  23255. height: math.unit(10, "feet"),
  23256. weight: math.unit(1000, "kg"),
  23257. name: "Side",
  23258. image: {
  23259. source: "./media/characters/ereus/side.svg",
  23260. extra: 1157 / 959,
  23261. bottom: 153 / 1312.5
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(10, "feet"),
  23269. default: true
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23275. {
  23276. side: {
  23277. height: math.unit(4.5, "feet"),
  23278. weight: math.unit(500, "lb"),
  23279. name: "Side",
  23280. image: {
  23281. source: "./media/characters/e-ter/side.svg",
  23282. extra: 1550 / 1248,
  23283. bottom: 146 / 1694
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(4.5, "feet"),
  23291. default: true
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23297. {
  23298. side: {
  23299. height: math.unit(9.7, "feet"),
  23300. weight: math.unit(4000, "kg"),
  23301. name: "Side",
  23302. image: {
  23303. source: "./media/characters/yamie/side.svg"
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Normal",
  23310. height: math.unit(9.7, "feet"),
  23311. default: true
  23312. },
  23313. ]
  23314. ))
  23315. characterMakers.push(() => makeCharacter(
  23316. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23317. {
  23318. front: {
  23319. height: math.unit(50, "feet"),
  23320. weight: math.unit(50000, "kg"),
  23321. name: "Front",
  23322. image: {
  23323. source: "./media/characters/anders/front.svg",
  23324. extra: 570 / 539,
  23325. bottom: 14.7 / 586.7
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Large",
  23332. height: math.unit(50, "feet")
  23333. },
  23334. {
  23335. name: "Macro",
  23336. height: math.unit(2000, "feet"),
  23337. default: true
  23338. },
  23339. {
  23340. name: "Megamacro",
  23341. height: math.unit(12, "miles")
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23347. {
  23348. front: {
  23349. height: math.unit(7 + 2 / 12, "feet"),
  23350. weight: math.unit(300, "lb"),
  23351. name: "Front",
  23352. image: {
  23353. source: "./media/characters/reban/front.svg",
  23354. extra: 1287/1212,
  23355. bottom: 148/1435
  23356. }
  23357. },
  23358. head: {
  23359. height: math.unit(1.95, "feet"),
  23360. name: "Head",
  23361. image: {
  23362. source: "./media/characters/reban/head.svg"
  23363. }
  23364. },
  23365. maw: {
  23366. height: math.unit(0.95, "feet"),
  23367. name: "Maw",
  23368. image: {
  23369. source: "./media/characters/reban/maw.svg"
  23370. }
  23371. },
  23372. foot: {
  23373. height: math.unit(1.65, "feet"),
  23374. name: "Foot",
  23375. image: {
  23376. source: "./media/characters/reban/foot.svg"
  23377. }
  23378. },
  23379. dick: {
  23380. height: math.unit(7 / 5, "feet"),
  23381. name: "Dick",
  23382. image: {
  23383. source: "./media/characters/reban/dick.svg"
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Natural Height",
  23390. height: math.unit(7 + 2 / 12, "feet")
  23391. },
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(500, "feet"),
  23395. default: true
  23396. },
  23397. {
  23398. name: "Canon Height",
  23399. height: math.unit(50, "AU")
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(6, "feet"),
  23408. weight: math.unit(150, "lb"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/terrance-keayes/front.svg",
  23412. extra: 1.005,
  23413. bottom: 151 / 1615
  23414. }
  23415. },
  23416. side: {
  23417. height: math.unit(6, "feet"),
  23418. weight: math.unit(150, "lb"),
  23419. name: "Side",
  23420. image: {
  23421. source: "./media/characters/terrance-keayes/side.svg",
  23422. extra: 1.005,
  23423. bottom: 129.4 / 1544
  23424. }
  23425. },
  23426. back: {
  23427. height: math.unit(6, "feet"),
  23428. weight: math.unit(150, "lb"),
  23429. name: "Back",
  23430. image: {
  23431. source: "./media/characters/terrance-keayes/back.svg",
  23432. extra: 1.005,
  23433. bottom: 58.4 / 1557.3
  23434. }
  23435. },
  23436. dick: {
  23437. height: math.unit(6 * 0.208, "feet"),
  23438. name: "Dick",
  23439. image: {
  23440. source: "./media/characters/terrance-keayes/dick.svg"
  23441. }
  23442. },
  23443. },
  23444. [
  23445. {
  23446. name: "Canon Height",
  23447. height: math.unit(35, "miles"),
  23448. default: true
  23449. },
  23450. ]
  23451. ))
  23452. characterMakers.push(() => makeCharacter(
  23453. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23454. {
  23455. front: {
  23456. height: math.unit(6, "feet"),
  23457. weight: math.unit(150, "lb"),
  23458. name: "Front",
  23459. image: {
  23460. source: "./media/characters/ofelia/front.svg",
  23461. extra: 1130/1117,
  23462. bottom: 91/1221
  23463. }
  23464. },
  23465. back: {
  23466. height: math.unit(6, "feet"),
  23467. weight: math.unit(150, "lb"),
  23468. name: "Back",
  23469. image: {
  23470. source: "./media/characters/ofelia/back.svg",
  23471. extra: 1172/1159,
  23472. bottom: 28/1200
  23473. }
  23474. },
  23475. maw: {
  23476. height: math.unit(1, "feet"),
  23477. name: "Maw",
  23478. image: {
  23479. source: "./media/characters/ofelia/maw.svg"
  23480. }
  23481. },
  23482. foot: {
  23483. height: math.unit(1.949, "feet"),
  23484. name: "Foot",
  23485. image: {
  23486. source: "./media/characters/ofelia/foot.svg"
  23487. }
  23488. },
  23489. },
  23490. [
  23491. {
  23492. name: "Canon Height",
  23493. height: math.unit(2000, "miles"),
  23494. default: true
  23495. },
  23496. ]
  23497. ))
  23498. characterMakers.push(() => makeCharacter(
  23499. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23500. {
  23501. front: {
  23502. height: math.unit(6, "feet"),
  23503. weight: math.unit(150, "lb"),
  23504. name: "Front",
  23505. image: {
  23506. source: "./media/characters/samuel/front.svg",
  23507. extra: 265 / 258,
  23508. bottom: 2 / 266.1566
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Macro",
  23515. height: math.unit(100, "feet"),
  23516. default: true
  23517. },
  23518. {
  23519. name: "Full Size",
  23520. height: math.unit(1000, "miles")
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23526. {
  23527. front: {
  23528. height: math.unit(6, "feet"),
  23529. weight: math.unit(300, "lb"),
  23530. name: "Front",
  23531. image: {
  23532. source: "./media/characters/beishir-kiel/front.svg",
  23533. extra: 569 / 547,
  23534. bottom: 41.9 / 609
  23535. }
  23536. },
  23537. maw: {
  23538. height: math.unit(6 * 0.202, "feet"),
  23539. name: "Maw",
  23540. image: {
  23541. source: "./media/characters/beishir-kiel/maw.svg"
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Macro",
  23548. height: math.unit(300, "feet"),
  23549. default: true
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23555. {
  23556. front: {
  23557. height: math.unit(5 + 7/12, "feet"),
  23558. weight: math.unit(120, "lb"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/logan-grey/front.svg",
  23562. extra: 1836/1738,
  23563. bottom: 108/1944
  23564. }
  23565. },
  23566. back: {
  23567. height: math.unit(5 + 7/12, "feet"),
  23568. weight: math.unit(120, "lb"),
  23569. name: "Back",
  23570. image: {
  23571. source: "./media/characters/logan-grey/back.svg",
  23572. extra: 1880/1794,
  23573. bottom: 24/1904
  23574. }
  23575. },
  23576. frontSfw: {
  23577. height: math.unit(5 + 7/12, "feet"),
  23578. weight: math.unit(120, "lb"),
  23579. name: "Front (SFW)",
  23580. image: {
  23581. source: "./media/characters/logan-grey/front-sfw.svg",
  23582. extra: 1836/1738,
  23583. bottom: 108/1944
  23584. }
  23585. },
  23586. backSfw: {
  23587. height: math.unit(5 + 7/12, "feet"),
  23588. weight: math.unit(120, "lb"),
  23589. name: "Back (SFW)",
  23590. image: {
  23591. source: "./media/characters/logan-grey/back-sfw.svg",
  23592. extra: 1880/1794,
  23593. bottom: 24/1904
  23594. }
  23595. },
  23596. hands: {
  23597. height: math.unit(0.84, "feet"),
  23598. name: "Hands",
  23599. image: {
  23600. source: "./media/characters/logan-grey/hands.svg"
  23601. }
  23602. },
  23603. paws: {
  23604. height: math.unit(0.72, "feet"),
  23605. name: "Paws",
  23606. image: {
  23607. source: "./media/characters/logan-grey/paws.svg"
  23608. }
  23609. },
  23610. cock: {
  23611. height: math.unit(1.45, "feet"),
  23612. name: "Cock",
  23613. image: {
  23614. source: "./media/characters/logan-grey/cock.svg"
  23615. }
  23616. },
  23617. cockAlt: {
  23618. height: math.unit(1.437, "feet"),
  23619. name: "Cock (alt)",
  23620. image: {
  23621. source: "./media/characters/logan-grey/cock-alt.svg"
  23622. }
  23623. },
  23624. },
  23625. [
  23626. {
  23627. name: "Normal",
  23628. height: math.unit(5 + 8 / 12, "feet")
  23629. },
  23630. {
  23631. name: "The 500 Foot Femboy",
  23632. height: math.unit(500, "feet"),
  23633. default: true
  23634. },
  23635. {
  23636. name: "Megmacro",
  23637. height: math.unit(20, "miles")
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23643. {
  23644. front: {
  23645. height: math.unit(8 + 2 / 12, "feet"),
  23646. weight: math.unit(275, "lb"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/draganta/front.svg",
  23650. extra: 1177 / 1135,
  23651. bottom: 33.46 / 1212.1
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(8 + 6 / 12, "feet"),
  23659. default: true
  23660. },
  23661. {
  23662. name: "Macro",
  23663. height: math.unit(150, "feet")
  23664. },
  23665. {
  23666. name: "Megamacro",
  23667. height: math.unit(1000, "miles")
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(1.72, "m"),
  23676. weight: math.unit(80, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/voski/front.svg",
  23680. extra: 2076.22 / 2022.4,
  23681. bottom: 102.7 / 2177.3866
  23682. }
  23683. },
  23684. frontFlaccid: {
  23685. height: math.unit(1.72, "m"),
  23686. weight: math.unit(80, "lb"),
  23687. name: "Front (Flaccid)",
  23688. image: {
  23689. source: "./media/characters/voski/front-flaccid.svg",
  23690. extra: 2076.22 / 2022.4,
  23691. bottom: 102.7 / 2177.3866
  23692. }
  23693. },
  23694. frontErect: {
  23695. height: math.unit(1.72, "m"),
  23696. weight: math.unit(80, "lb"),
  23697. name: "Front (Erect)",
  23698. image: {
  23699. source: "./media/characters/voski/front-erect.svg",
  23700. extra: 2076.22 / 2022.4,
  23701. bottom: 102.7 / 2177.3866
  23702. }
  23703. },
  23704. back: {
  23705. height: math.unit(1.72, "m"),
  23706. weight: math.unit(80, "lb"),
  23707. name: "Back",
  23708. image: {
  23709. source: "./media/characters/voski/back.svg",
  23710. extra: 2104 / 2051,
  23711. bottom: 10.45 / 2113.63
  23712. }
  23713. },
  23714. },
  23715. [
  23716. {
  23717. name: "Normal",
  23718. height: math.unit(1.72, "m")
  23719. },
  23720. {
  23721. name: "Macro",
  23722. height: math.unit(55, "m"),
  23723. default: true
  23724. },
  23725. {
  23726. name: "Macro+",
  23727. height: math.unit(300, "m")
  23728. },
  23729. {
  23730. name: "Macro++",
  23731. height: math.unit(700, "m")
  23732. },
  23733. {
  23734. name: "Macro+++",
  23735. height: math.unit(4500, "m")
  23736. },
  23737. {
  23738. name: "Macro++++",
  23739. height: math.unit(45, "km")
  23740. },
  23741. {
  23742. name: "Macro+++++",
  23743. height: math.unit(1220, "km")
  23744. },
  23745. ]
  23746. ))
  23747. characterMakers.push(() => makeCharacter(
  23748. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23749. {
  23750. front: {
  23751. height: math.unit(2.3, "m"),
  23752. weight: math.unit(304, "kg"),
  23753. name: "Front",
  23754. image: {
  23755. source: "./media/characters/icowom-lee/front.svg",
  23756. extra: 985 / 955,
  23757. bottom: 25.4 / 1012
  23758. }
  23759. },
  23760. fronttentacles: {
  23761. height: math.unit(2.3, "m"),
  23762. weight: math.unit(304, "kg"),
  23763. name: "Front-tentacles",
  23764. image: {
  23765. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23766. extra: 985 / 955,
  23767. bottom: 25.4 / 1012
  23768. }
  23769. },
  23770. back: {
  23771. height: math.unit(2.3, "m"),
  23772. weight: math.unit(304, "kg"),
  23773. name: "Back",
  23774. image: {
  23775. source: "./media/characters/icowom-lee/back.svg",
  23776. extra: 975 / 954,
  23777. bottom: 9.5 / 985
  23778. }
  23779. },
  23780. backtentacles: {
  23781. height: math.unit(2.3, "m"),
  23782. weight: math.unit(304, "kg"),
  23783. name: "Back-tentacles",
  23784. image: {
  23785. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23786. extra: 975 / 954,
  23787. bottom: 9.5 / 985
  23788. }
  23789. },
  23790. frontDressed: {
  23791. height: math.unit(2.3, "m"),
  23792. weight: math.unit(304, "kg"),
  23793. name: "Front (Dressed)",
  23794. image: {
  23795. source: "./media/characters/icowom-lee/front-dressed.svg",
  23796. extra: 3076 / 2933,
  23797. bottom: 51.4 / 3125.1889
  23798. }
  23799. },
  23800. rump: {
  23801. height: math.unit(0.776, "meters"),
  23802. name: "Rump",
  23803. image: {
  23804. source: "./media/characters/icowom-lee/rump.svg"
  23805. }
  23806. },
  23807. genitals: {
  23808. height: math.unit(0.78, "meters"),
  23809. name: "Genitals",
  23810. image: {
  23811. source: "./media/characters/icowom-lee/genitals.svg"
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Normal",
  23818. height: math.unit(2.3, "meters"),
  23819. default: true
  23820. },
  23821. {
  23822. name: "Macro",
  23823. height: math.unit(94, "meters"),
  23824. default: true
  23825. },
  23826. ]
  23827. ))
  23828. characterMakers.push(() => makeCharacter(
  23829. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23830. {
  23831. front: {
  23832. height: math.unit(22, "meters"),
  23833. weight: math.unit(21000, "kg"),
  23834. name: "Front",
  23835. image: {
  23836. source: "./media/characters/shock-diamond/front.svg",
  23837. extra: 2204 / 2053,
  23838. bottom: 65 / 2239.47
  23839. }
  23840. },
  23841. frontNude: {
  23842. height: math.unit(22, "meters"),
  23843. weight: math.unit(21000, "kg"),
  23844. name: "Front (Nude)",
  23845. image: {
  23846. source: "./media/characters/shock-diamond/front-nude.svg",
  23847. extra: 2514 / 2285,
  23848. bottom: 13 / 2527.56
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Normal",
  23855. height: math.unit(3, "meters")
  23856. },
  23857. {
  23858. name: "Macro",
  23859. height: math.unit(22, "meters"),
  23860. default: true
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23866. {
  23867. front: {
  23868. height: math.unit(5 + 4 / 12, "feet"),
  23869. weight: math.unit(120, "lb"),
  23870. name: "Front",
  23871. image: {
  23872. source: "./media/characters/rory/front.svg",
  23873. extra: 1318/1241,
  23874. bottom: 42/1360
  23875. }
  23876. },
  23877. back: {
  23878. height: math.unit(5 + 4 / 12, "feet"),
  23879. weight: math.unit(120, "lb"),
  23880. name: "Back",
  23881. image: {
  23882. source: "./media/characters/rory/back.svg",
  23883. extra: 1318/1241,
  23884. bottom: 42/1360
  23885. }
  23886. },
  23887. butt: {
  23888. height: math.unit(1.74, "feet"),
  23889. name: "Butt",
  23890. image: {
  23891. source: "./media/characters/rory/butt.svg"
  23892. }
  23893. },
  23894. dick: {
  23895. height: math.unit(1.02, "feet"),
  23896. name: "Dick",
  23897. image: {
  23898. source: "./media/characters/rory/dick.svg"
  23899. }
  23900. },
  23901. paws: {
  23902. height: math.unit(1, "feet"),
  23903. name: "Paws",
  23904. image: {
  23905. source: "./media/characters/rory/paws.svg"
  23906. }
  23907. },
  23908. frontAlt: {
  23909. height: math.unit(5 + 4 / 12, "feet"),
  23910. weight: math.unit(120, "lb"),
  23911. name: "Front (Alt)",
  23912. image: {
  23913. source: "./media/characters/rory/front-alt.svg",
  23914. extra: 589 / 556,
  23915. bottom: 45.7 / 635.76
  23916. }
  23917. },
  23918. frontAltNude: {
  23919. height: math.unit(5 + 4 / 12, "feet"),
  23920. weight: math.unit(120, "lb"),
  23921. name: "Front (Alt, Nude)",
  23922. image: {
  23923. source: "./media/characters/rory/front-alt-nude.svg",
  23924. extra: 589 / 556,
  23925. bottom: 45.7 / 635.76
  23926. }
  23927. },
  23928. side: {
  23929. height: math.unit(5 + 4 / 12, "feet"),
  23930. weight: math.unit(120, "lb"),
  23931. name: "Side",
  23932. image: {
  23933. source: "./media/characters/rory/side.svg",
  23934. extra: 597 / 564,
  23935. bottom: 55 / 653
  23936. }
  23937. },
  23938. backAlt: {
  23939. height: math.unit(5 + 4 / 12, "feet"),
  23940. weight: math.unit(120, "lb"),
  23941. name: "Back (Alt)",
  23942. image: {
  23943. source: "./media/characters/rory/back-alt.svg",
  23944. extra: 620 / 585,
  23945. bottom: 8.86 / 630.43
  23946. }
  23947. },
  23948. dickAlt: {
  23949. height: math.unit(0.86, "feet"),
  23950. name: "Dick (Alt)",
  23951. image: {
  23952. source: "./media/characters/rory/dick-alt.svg"
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Normal",
  23959. height: math.unit(5 + 4 / 12, "feet"),
  23960. default: true
  23961. },
  23962. {
  23963. name: "Macro",
  23964. height: math.unit(100, "feet")
  23965. },
  23966. {
  23967. name: "Macro+",
  23968. height: math.unit(140, "feet")
  23969. },
  23970. {
  23971. name: "Macro++",
  23972. height: math.unit(300, "feet")
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23978. {
  23979. front: {
  23980. height: math.unit(5 + 9 / 12, "feet"),
  23981. weight: math.unit(190, "lb"),
  23982. name: "Front",
  23983. image: {
  23984. source: "./media/characters/sprisk/front.svg",
  23985. extra: 1225 / 1180,
  23986. bottom: 42.7 / 1266.4
  23987. }
  23988. },
  23989. frontNsfw: {
  23990. height: math.unit(5 + 9 / 12, "feet"),
  23991. weight: math.unit(190, "lb"),
  23992. name: "Front (NSFW)",
  23993. image: {
  23994. source: "./media/characters/sprisk/front-nsfw.svg",
  23995. extra: 1225 / 1180,
  23996. bottom: 42.7 / 1266.4
  23997. }
  23998. },
  23999. back: {
  24000. height: math.unit(5 + 9 / 12, "feet"),
  24001. weight: math.unit(190, "lb"),
  24002. name: "Back",
  24003. image: {
  24004. source: "./media/characters/sprisk/back.svg",
  24005. extra: 1247 / 1200,
  24006. bottom: 5.6 / 1253.04
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Tiny",
  24013. height: math.unit(2, "inches")
  24014. },
  24015. {
  24016. name: "Normal",
  24017. height: math.unit(5 + 9 / 12, "feet"),
  24018. default: true
  24019. },
  24020. {
  24021. name: "Mini Macro",
  24022. height: math.unit(18, "feet")
  24023. },
  24024. {
  24025. name: "Macro",
  24026. height: math.unit(100, "feet")
  24027. },
  24028. {
  24029. name: "MACRO",
  24030. height: math.unit(50, "miles")
  24031. },
  24032. {
  24033. name: "M A C R O",
  24034. height: math.unit(300, "miles")
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24040. {
  24041. side: {
  24042. height: math.unit(15.6, "meters"),
  24043. weight: math.unit(700000, "kg"),
  24044. name: "Side",
  24045. image: {
  24046. source: "./media/characters/bunsen/side.svg",
  24047. extra: 1644 / 358
  24048. }
  24049. },
  24050. foot: {
  24051. height: math.unit(1.611 * 1644 / 358, "meter"),
  24052. name: "Foot",
  24053. image: {
  24054. source: "./media/characters/bunsen/foot.svg"
  24055. }
  24056. },
  24057. },
  24058. [
  24059. {
  24060. name: "Small",
  24061. height: math.unit(10, "feet")
  24062. },
  24063. {
  24064. name: "Normal",
  24065. height: math.unit(15.6, "meters"),
  24066. default: true
  24067. },
  24068. ]
  24069. ))
  24070. characterMakers.push(() => makeCharacter(
  24071. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24072. {
  24073. front: {
  24074. height: math.unit(4 + 11 / 12, "feet"),
  24075. weight: math.unit(140, "lb"),
  24076. name: "Front",
  24077. image: {
  24078. source: "./media/characters/sesh/front.svg",
  24079. extra: 3420 / 3231,
  24080. bottom: 72 / 3949.5
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Normal",
  24087. height: math.unit(4 + 11 / 12, "feet")
  24088. },
  24089. {
  24090. name: "Grown",
  24091. height: math.unit(15, "feet"),
  24092. default: true
  24093. },
  24094. {
  24095. name: "Macro",
  24096. height: math.unit(1500, "feet")
  24097. },
  24098. {
  24099. name: "Megamacro",
  24100. height: math.unit(30, "miles")
  24101. },
  24102. {
  24103. name: "Continental",
  24104. height: math.unit(3000, "miles")
  24105. },
  24106. {
  24107. name: "Gravity Mass",
  24108. height: math.unit(300000, "miles")
  24109. },
  24110. {
  24111. name: "Planet Buster",
  24112. height: math.unit(30000000, "miles")
  24113. },
  24114. {
  24115. name: "Big",
  24116. height: math.unit(3000000000, "miles")
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24122. {
  24123. front: {
  24124. height: math.unit(9, "feet"),
  24125. weight: math.unit(350, "lb"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/pepper/front.svg",
  24129. extra: 1448 / 1312,
  24130. bottom: 9.4 / 1457.88
  24131. }
  24132. },
  24133. back: {
  24134. height: math.unit(9, "feet"),
  24135. weight: math.unit(350, "lb"),
  24136. name: "Back",
  24137. image: {
  24138. source: "./media/characters/pepper/back.svg",
  24139. extra: 1423 / 1300,
  24140. bottom: 4.6 / 1429
  24141. }
  24142. },
  24143. maw: {
  24144. height: math.unit(0.932, "feet"),
  24145. name: "Maw",
  24146. image: {
  24147. source: "./media/characters/pepper/maw.svg"
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Normal",
  24154. height: math.unit(9, "feet"),
  24155. default: true
  24156. },
  24157. ]
  24158. ))
  24159. characterMakers.push(() => makeCharacter(
  24160. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24161. {
  24162. front: {
  24163. height: math.unit(6, "feet"),
  24164. weight: math.unit(150, "lb"),
  24165. name: "Front",
  24166. image: {
  24167. source: "./media/characters/maelstrom/front.svg",
  24168. extra: 2100 / 1883,
  24169. bottom: 94 / 2196.7
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Less Kaiju",
  24176. height: math.unit(200, "feet")
  24177. },
  24178. {
  24179. name: "Kaiju",
  24180. height: math.unit(400, "feet"),
  24181. default: true
  24182. },
  24183. {
  24184. name: "Kaiju-er",
  24185. height: math.unit(600, "feet")
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(6 + 5 / 12, "feet"),
  24194. weight: math.unit(180, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/lexir/front.svg",
  24198. extra: 180 / 172,
  24199. bottom: 12 / 192
  24200. }
  24201. },
  24202. back: {
  24203. height: math.unit(6 + 5 / 12, "feet"),
  24204. weight: math.unit(180, "lb"),
  24205. name: "Back",
  24206. image: {
  24207. source: "./media/characters/lexir/back.svg",
  24208. extra: 1273/1201,
  24209. bottom: 39/1312
  24210. }
  24211. },
  24212. },
  24213. [
  24214. {
  24215. name: "Very Smal",
  24216. height: math.unit(1, "nm")
  24217. },
  24218. {
  24219. name: "Normal",
  24220. height: math.unit(6 + 5 / 12, "feet"),
  24221. default: true
  24222. },
  24223. {
  24224. name: "Macro",
  24225. height: math.unit(1, "mile")
  24226. },
  24227. {
  24228. name: "Megamacro",
  24229. height: math.unit(50, "miles")
  24230. },
  24231. ]
  24232. ))
  24233. characterMakers.push(() => makeCharacter(
  24234. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24235. {
  24236. front: {
  24237. height: math.unit(1.5, "meters"),
  24238. weight: math.unit(100, "lb"),
  24239. name: "Front",
  24240. image: {
  24241. source: "./media/characters/maksio/front.svg",
  24242. extra: 1549 / 1531,
  24243. bottom: 123.7 / 1674.5429
  24244. }
  24245. },
  24246. back: {
  24247. height: math.unit(1.5, "meters"),
  24248. weight: math.unit(100, "lb"),
  24249. name: "Back",
  24250. image: {
  24251. source: "./media/characters/maksio/back.svg",
  24252. extra: 1541 / 1509,
  24253. bottom: 97 / 1639
  24254. }
  24255. },
  24256. hand: {
  24257. height: math.unit(0.621, "feet"),
  24258. name: "Hand",
  24259. image: {
  24260. source: "./media/characters/maksio/hand.svg"
  24261. }
  24262. },
  24263. foot: {
  24264. height: math.unit(1.611, "feet"),
  24265. name: "Foot",
  24266. image: {
  24267. source: "./media/characters/maksio/foot.svg"
  24268. }
  24269. },
  24270. },
  24271. [
  24272. {
  24273. name: "Shrunken",
  24274. height: math.unit(10, "cm")
  24275. },
  24276. {
  24277. name: "Normal",
  24278. height: math.unit(150, "cm"),
  24279. default: true
  24280. },
  24281. ]
  24282. ))
  24283. characterMakers.push(() => makeCharacter(
  24284. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24285. {
  24286. front: {
  24287. height: math.unit(100, "feet"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/erza-bear/front.svg",
  24291. extra: 2449 / 2390,
  24292. bottom: 46 / 2494
  24293. }
  24294. },
  24295. back: {
  24296. height: math.unit(100, "feet"),
  24297. name: "Back",
  24298. image: {
  24299. source: "./media/characters/erza-bear/back.svg",
  24300. extra: 2489 / 2430,
  24301. bottom: 85.4 / 2480
  24302. }
  24303. },
  24304. tail: {
  24305. height: math.unit(42, "feet"),
  24306. name: "Tail",
  24307. image: {
  24308. source: "./media/characters/erza-bear/tail.svg"
  24309. }
  24310. },
  24311. tongue: {
  24312. height: math.unit(8, "feet"),
  24313. name: "Tongue",
  24314. image: {
  24315. source: "./media/characters/erza-bear/tongue.svg"
  24316. }
  24317. },
  24318. dick: {
  24319. height: math.unit(10.5, "feet"),
  24320. name: "Dick",
  24321. image: {
  24322. source: "./media/characters/erza-bear/dick.svg"
  24323. }
  24324. },
  24325. dickVertical: {
  24326. height: math.unit(16.9, "feet"),
  24327. name: "Dick (Vertical)",
  24328. image: {
  24329. source: "./media/characters/erza-bear/dick-vertical.svg"
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Macro",
  24336. height: math.unit(100, "feet"),
  24337. default: true
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24343. {
  24344. front: {
  24345. height: math.unit(172, "cm"),
  24346. weight: math.unit(73, "kg"),
  24347. name: "Front",
  24348. image: {
  24349. source: "./media/characters/violet-flor/front.svg",
  24350. extra: 1530 / 1442,
  24351. bottom: 61.9 / 1588.8
  24352. }
  24353. },
  24354. back: {
  24355. height: math.unit(180, "cm"),
  24356. weight: math.unit(73, "kg"),
  24357. name: "Back",
  24358. image: {
  24359. source: "./media/characters/violet-flor/back.svg",
  24360. extra: 1692 / 1630,
  24361. bottom: 20 / 1712
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Normal",
  24368. height: math.unit(172, "cm"),
  24369. default: true
  24370. },
  24371. ]
  24372. ))
  24373. characterMakers.push(() => makeCharacter(
  24374. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24375. {
  24376. front: {
  24377. height: math.unit(6, "feet"),
  24378. weight: math.unit(220, "lb"),
  24379. name: "Front",
  24380. image: {
  24381. source: "./media/characters/lynn-rhea/front.svg",
  24382. extra: 310 / 273
  24383. }
  24384. },
  24385. back: {
  24386. height: math.unit(6, "feet"),
  24387. weight: math.unit(220, "lb"),
  24388. name: "Back",
  24389. image: {
  24390. source: "./media/characters/lynn-rhea/back.svg",
  24391. extra: 310 / 273
  24392. }
  24393. },
  24394. dicks: {
  24395. height: math.unit(0.9, "feet"),
  24396. name: "Dicks",
  24397. image: {
  24398. source: "./media/characters/lynn-rhea/dicks.svg"
  24399. }
  24400. },
  24401. slit: {
  24402. height: math.unit(0.4, "feet"),
  24403. name: "Slit",
  24404. image: {
  24405. source: "./media/characters/lynn-rhea/slit.svg"
  24406. }
  24407. },
  24408. },
  24409. [
  24410. {
  24411. name: "Micro",
  24412. height: math.unit(1, "inch")
  24413. },
  24414. {
  24415. name: "Macro",
  24416. height: math.unit(60, "feet"),
  24417. default: true
  24418. },
  24419. {
  24420. name: "Megamacro",
  24421. height: math.unit(2, "miles")
  24422. },
  24423. {
  24424. name: "Gigamacro",
  24425. height: math.unit(3, "earths")
  24426. },
  24427. {
  24428. name: "Galactic",
  24429. height: math.unit(0.8, "galaxies")
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24435. {
  24436. front: {
  24437. height: math.unit(1600, "feet"),
  24438. weight: math.unit(85758785169, "kg"),
  24439. name: "Front",
  24440. image: {
  24441. source: "./media/characters/valathos/front.svg",
  24442. extra: 1451 / 1339
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Macro",
  24449. height: math.unit(1600, "feet"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24456. {
  24457. front: {
  24458. height: math.unit(7 + 5 / 12, "feet"),
  24459. weight: math.unit(300, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/azula/front.svg",
  24463. extra: 3208 / 2880,
  24464. bottom: 80.2 / 3277
  24465. }
  24466. },
  24467. back: {
  24468. height: math.unit(7 + 5 / 12, "feet"),
  24469. weight: math.unit(300, "lb"),
  24470. name: "Back",
  24471. image: {
  24472. source: "./media/characters/azula/back.svg",
  24473. extra: 3169 / 2822,
  24474. bottom: 150.6 / 3321
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Normal",
  24481. height: math.unit(7 + 5 / 12, "feet"),
  24482. default: true
  24483. },
  24484. {
  24485. name: "Big",
  24486. height: math.unit(20, "feet")
  24487. },
  24488. ]
  24489. ))
  24490. characterMakers.push(() => makeCharacter(
  24491. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24492. {
  24493. front: {
  24494. height: math.unit(5 + 1 / 12, "feet"),
  24495. weight: math.unit(110, "lb"),
  24496. name: "Front",
  24497. image: {
  24498. source: "./media/characters/rupert/front.svg",
  24499. extra: 1549 / 1495,
  24500. bottom: 54.2 / 1604.4
  24501. }
  24502. },
  24503. },
  24504. [
  24505. {
  24506. name: "Normal",
  24507. height: math.unit(5 + 1 / 12, "feet"),
  24508. default: true
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24514. {
  24515. front: {
  24516. height: math.unit(8 + 4 / 12, "feet"),
  24517. weight: math.unit(350, "lb"),
  24518. name: "Front",
  24519. image: {
  24520. source: "./media/characters/sheera-castellar/front.svg",
  24521. extra: 1957 / 1894,
  24522. bottom: 26.97 / 1975.017
  24523. }
  24524. },
  24525. side: {
  24526. height: math.unit(8 + 4 / 12, "feet"),
  24527. weight: math.unit(350, "lb"),
  24528. name: "Side",
  24529. image: {
  24530. source: "./media/characters/sheera-castellar/side.svg",
  24531. extra: 1957 / 1894
  24532. }
  24533. },
  24534. back: {
  24535. height: math.unit(8 + 4 / 12, "feet"),
  24536. weight: math.unit(350, "lb"),
  24537. name: "Back",
  24538. image: {
  24539. source: "./media/characters/sheera-castellar/back.svg",
  24540. extra: 1957 / 1894
  24541. }
  24542. },
  24543. angled: {
  24544. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24545. weight: math.unit(350, "lb"),
  24546. name: "Angled",
  24547. image: {
  24548. source: "./media/characters/sheera-castellar/angled.svg",
  24549. extra: 1807 / 1707,
  24550. bottom: 68 / 1875
  24551. }
  24552. },
  24553. genitals: {
  24554. height: math.unit(2.2, "feet"),
  24555. name: "Genitals",
  24556. image: {
  24557. source: "./media/characters/sheera-castellar/genitals.svg"
  24558. }
  24559. },
  24560. taur: {
  24561. height: math.unit(10 + 6/12, "feet"),
  24562. name: "Taur",
  24563. image: {
  24564. source: "./media/characters/sheera-castellar/taur.svg",
  24565. extra: 2017/1909,
  24566. bottom: 185/2202
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Normal",
  24573. height: math.unit(8 + 4 / 12, "feet")
  24574. },
  24575. {
  24576. name: "Macro",
  24577. height: math.unit(150, "feet"),
  24578. default: true
  24579. },
  24580. {
  24581. name: "Macro+",
  24582. height: math.unit(800, "feet")
  24583. },
  24584. ]
  24585. ))
  24586. characterMakers.push(() => makeCharacter(
  24587. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24588. {
  24589. front: {
  24590. height: math.unit(6, "feet"),
  24591. weight: math.unit(150, "lb"),
  24592. name: "Front",
  24593. image: {
  24594. source: "./media/characters/jaipur/front.svg",
  24595. extra: 3860 / 3731,
  24596. bottom: 287 / 4140
  24597. }
  24598. },
  24599. back: {
  24600. height: math.unit(6, "feet"),
  24601. weight: math.unit(150, "lb"),
  24602. name: "Back",
  24603. image: {
  24604. source: "./media/characters/jaipur/back.svg",
  24605. extra: 1637/1561,
  24606. bottom: 154/1791
  24607. }
  24608. },
  24609. },
  24610. [
  24611. {
  24612. name: "Normal",
  24613. height: math.unit(1.85, "meters"),
  24614. default: true
  24615. },
  24616. {
  24617. name: "Macro",
  24618. height: math.unit(150, "meters")
  24619. },
  24620. {
  24621. name: "Macro+",
  24622. height: math.unit(0.5, "miles")
  24623. },
  24624. {
  24625. name: "Macro++",
  24626. height: math.unit(2.5, "miles")
  24627. },
  24628. {
  24629. name: "Macro+++",
  24630. height: math.unit(12, "miles")
  24631. },
  24632. {
  24633. name: "Macro++++",
  24634. height: math.unit(120, "miles")
  24635. },
  24636. {
  24637. name: "Macro+++++",
  24638. height: math.unit(1200, "miles")
  24639. },
  24640. ]
  24641. ))
  24642. characterMakers.push(() => makeCharacter(
  24643. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24644. {
  24645. front: {
  24646. height: math.unit(6, "feet"),
  24647. weight: math.unit(150, "lb"),
  24648. name: "Front",
  24649. image: {
  24650. source: "./media/characters/sheila-wolf/front.svg",
  24651. extra: 1931 / 1808,
  24652. bottom: 29.5 / 1960
  24653. }
  24654. },
  24655. dick: {
  24656. height: math.unit(1.464, "feet"),
  24657. name: "Dick",
  24658. image: {
  24659. source: "./media/characters/sheila-wolf/dick.svg"
  24660. }
  24661. },
  24662. muzzle: {
  24663. height: math.unit(0.513, "feet"),
  24664. name: "Muzzle",
  24665. image: {
  24666. source: "./media/characters/sheila-wolf/muzzle.svg"
  24667. }
  24668. },
  24669. },
  24670. [
  24671. {
  24672. name: "Macro",
  24673. height: math.unit(70, "feet"),
  24674. default: true
  24675. },
  24676. ]
  24677. ))
  24678. characterMakers.push(() => makeCharacter(
  24679. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24680. {
  24681. front: {
  24682. height: math.unit(32, "meters"),
  24683. weight: math.unit(300000, "kg"),
  24684. name: "Front",
  24685. image: {
  24686. source: "./media/characters/almor/front.svg",
  24687. extra: 1408 / 1322,
  24688. bottom: 94.6 / 1506.5
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Macro",
  24695. height: math.unit(32, "meters"),
  24696. default: true
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(7, "feet"),
  24705. weight: math.unit(200, "lb"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/silver/front.svg",
  24709. extra: 472.1 / 450.5,
  24710. bottom: 26.5 / 499.424
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(7, "feet"),
  24718. default: true
  24719. },
  24720. {
  24721. name: "Macro",
  24722. height: math.unit(800, "feet")
  24723. },
  24724. {
  24725. name: "Megamacro",
  24726. height: math.unit(250, "miles")
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24732. {
  24733. front: {
  24734. height: math.unit(6, "feet"),
  24735. weight: math.unit(150, "lb"),
  24736. name: "Front",
  24737. image: {
  24738. source: "./media/characters/pliskin/front.svg",
  24739. extra: 1469 / 1359,
  24740. bottom: 70 / 1540
  24741. }
  24742. },
  24743. },
  24744. [
  24745. {
  24746. name: "Micro",
  24747. height: math.unit(3, "inches")
  24748. },
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(5 + 11 / 12, "feet"),
  24752. default: true
  24753. },
  24754. {
  24755. name: "Macro",
  24756. height: math.unit(120, "feet")
  24757. },
  24758. ]
  24759. ))
  24760. characterMakers.push(() => makeCharacter(
  24761. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24762. {
  24763. front: {
  24764. height: math.unit(6, "feet"),
  24765. weight: math.unit(150, "lb"),
  24766. name: "Front",
  24767. image: {
  24768. source: "./media/characters/sammy/front.svg",
  24769. extra: 1193 / 1089,
  24770. bottom: 30.5 / 1226
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Macro",
  24777. height: math.unit(1700, "feet"),
  24778. default: true
  24779. },
  24780. {
  24781. name: "Examacro",
  24782. height: math.unit(2.5e9, "lightyears")
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(21, "meters"),
  24791. weight: math.unit(12, "tonnes"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/kuru/front.svg",
  24795. extra: 4301 / 3785,
  24796. bottom: 371.3 / 4691
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Macro",
  24803. height: math.unit(21, "meters"),
  24804. default: true
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24810. {
  24811. front: {
  24812. height: math.unit(23, "meters"),
  24813. weight: math.unit(12.2, "tonnes"),
  24814. name: "Front",
  24815. image: {
  24816. source: "./media/characters/rakka/front.svg",
  24817. extra: 4670 / 4169,
  24818. bottom: 301 / 4968.7
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Macro",
  24825. height: math.unit(23, "meters"),
  24826. default: true
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(6, "feet"),
  24835. weight: math.unit(150, "lb"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/rhys-feline/front.svg",
  24839. extra: 2488 / 2308,
  24840. bottom: 35.67 / 2519.19
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Really Small",
  24847. height: math.unit(1, "nm")
  24848. },
  24849. {
  24850. name: "Micro",
  24851. height: math.unit(4, "inches")
  24852. },
  24853. {
  24854. name: "Normal",
  24855. height: math.unit(4 + 10 / 12, "feet"),
  24856. default: true
  24857. },
  24858. {
  24859. name: "Macro",
  24860. height: math.unit(100, "feet")
  24861. },
  24862. {
  24863. name: "Megamacto",
  24864. height: math.unit(50, "miles")
  24865. },
  24866. ]
  24867. ))
  24868. characterMakers.push(() => makeCharacter(
  24869. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24870. {
  24871. side: {
  24872. height: math.unit(30, "feet"),
  24873. weight: math.unit(35000, "kg"),
  24874. name: "Side",
  24875. image: {
  24876. source: "./media/characters/alydar/side.svg",
  24877. extra: 234 / 222,
  24878. bottom: 6.5 / 241
  24879. }
  24880. },
  24881. front: {
  24882. height: math.unit(30, "feet"),
  24883. weight: math.unit(35000, "kg"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/alydar/front.svg",
  24887. extra: 223.37 / 210.2,
  24888. bottom: 22.3 / 246.76
  24889. }
  24890. },
  24891. top: {
  24892. height: math.unit(64.54, "feet"),
  24893. weight: math.unit(35000, "kg"),
  24894. name: "Top",
  24895. image: {
  24896. source: "./media/characters/alydar/top.svg"
  24897. }
  24898. },
  24899. anthro: {
  24900. height: math.unit(30, "feet"),
  24901. weight: math.unit(9000, "kg"),
  24902. name: "Anthro",
  24903. image: {
  24904. source: "./media/characters/alydar/anthro.svg",
  24905. extra: 432 / 421,
  24906. bottom: 7.18 / 440
  24907. }
  24908. },
  24909. maw: {
  24910. height: math.unit(11.693, "feet"),
  24911. name: "Maw",
  24912. image: {
  24913. source: "./media/characters/alydar/maw.svg"
  24914. }
  24915. },
  24916. head: {
  24917. height: math.unit(11.693, "feet"),
  24918. name: "Head",
  24919. image: {
  24920. source: "./media/characters/alydar/head.svg"
  24921. }
  24922. },
  24923. headAlt: {
  24924. height: math.unit(12.861, "feet"),
  24925. name: "Head (Alt)",
  24926. image: {
  24927. source: "./media/characters/alydar/head-alt.svg"
  24928. }
  24929. },
  24930. wing: {
  24931. height: math.unit(20.712, "feet"),
  24932. name: "Wing",
  24933. image: {
  24934. source: "./media/characters/alydar/wing.svg"
  24935. }
  24936. },
  24937. wingFeather: {
  24938. height: math.unit(9.662, "feet"),
  24939. name: "Wing Feather",
  24940. image: {
  24941. source: "./media/characters/alydar/wing-feather.svg"
  24942. }
  24943. },
  24944. countourFeather: {
  24945. height: math.unit(4.154, "feet"),
  24946. name: "Contour Feather",
  24947. image: {
  24948. source: "./media/characters/alydar/contour-feather.svg"
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Diplomatic",
  24955. height: math.unit(13, "feet"),
  24956. default: true
  24957. },
  24958. {
  24959. name: "Small",
  24960. height: math.unit(30, "feet")
  24961. },
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(95, "feet"),
  24965. default: true
  24966. },
  24967. {
  24968. name: "Large",
  24969. height: math.unit(285, "feet")
  24970. },
  24971. {
  24972. name: "Incomprehensible",
  24973. height: math.unit(450, "megameters")
  24974. },
  24975. ]
  24976. ))
  24977. characterMakers.push(() => makeCharacter(
  24978. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24979. {
  24980. side: {
  24981. height: math.unit(11, "feet"),
  24982. weight: math.unit(1750, "kg"),
  24983. name: "Side",
  24984. image: {
  24985. source: "./media/characters/selicia/side.svg",
  24986. extra: 440 / 396,
  24987. bottom: 24.8 / 465.979
  24988. }
  24989. },
  24990. maw: {
  24991. height: math.unit(4.665, "feet"),
  24992. name: "Maw",
  24993. image: {
  24994. source: "./media/characters/selicia/maw.svg"
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Normal",
  25001. height: math.unit(11, "feet"),
  25002. default: true
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25008. {
  25009. side: {
  25010. height: math.unit(2 + 6 / 12, "feet"),
  25011. weight: math.unit(30, "lb"),
  25012. name: "Side",
  25013. image: {
  25014. source: "./media/characters/layla/side.svg",
  25015. extra: 244 / 188,
  25016. bottom: 18.2 / 262.1
  25017. }
  25018. },
  25019. back: {
  25020. height: math.unit(2 + 6 / 12, "feet"),
  25021. weight: math.unit(30, "lb"),
  25022. name: "Back",
  25023. image: {
  25024. source: "./media/characters/layla/back.svg",
  25025. extra: 308 / 241.5,
  25026. bottom: 8.9 / 316.8
  25027. }
  25028. },
  25029. cumming: {
  25030. height: math.unit(2 + 6 / 12, "feet"),
  25031. weight: math.unit(30, "lb"),
  25032. name: "Cumming",
  25033. image: {
  25034. source: "./media/characters/layla/cumming.svg",
  25035. extra: 342 / 279,
  25036. bottom: 595 / 938
  25037. }
  25038. },
  25039. dickFlaccid: {
  25040. height: math.unit(2.595, "feet"),
  25041. name: "Flaccid Genitals",
  25042. image: {
  25043. source: "./media/characters/layla/dick-flaccid.svg"
  25044. }
  25045. },
  25046. dickErect: {
  25047. height: math.unit(2.359, "feet"),
  25048. name: "Erect Genitals",
  25049. image: {
  25050. source: "./media/characters/layla/dick-erect.svg"
  25051. }
  25052. },
  25053. dragon: {
  25054. height: math.unit(40, "feet"),
  25055. name: "Dragon",
  25056. image: {
  25057. source: "./media/characters/layla/dragon.svg",
  25058. extra: 610/535,
  25059. bottom: 367/977
  25060. }
  25061. },
  25062. taur: {
  25063. height: math.unit(30, "feet"),
  25064. name: "Taur",
  25065. image: {
  25066. source: "./media/characters/layla/taur.svg",
  25067. extra: 1268/1199,
  25068. bottom: 112/1380
  25069. }
  25070. },
  25071. },
  25072. [
  25073. {
  25074. name: "Micro",
  25075. height: math.unit(1, "inch")
  25076. },
  25077. {
  25078. name: "Small",
  25079. height: math.unit(1, "foot")
  25080. },
  25081. {
  25082. name: "Normal",
  25083. height: math.unit(2 + 6 / 12, "feet"),
  25084. default: true
  25085. },
  25086. {
  25087. name: "Macro",
  25088. height: math.unit(200, "feet")
  25089. },
  25090. {
  25091. name: "Megamacro",
  25092. height: math.unit(1000, "miles")
  25093. },
  25094. {
  25095. name: "Planetary",
  25096. height: math.unit(8000, "miles")
  25097. },
  25098. {
  25099. name: "True Layla",
  25100. height: math.unit(200000 * 7, "multiverses")
  25101. },
  25102. ]
  25103. ))
  25104. characterMakers.push(() => makeCharacter(
  25105. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25106. {
  25107. back: {
  25108. height: math.unit(10.5, "feet"),
  25109. weight: math.unit(800, "lb"),
  25110. name: "Back",
  25111. image: {
  25112. source: "./media/characters/knox/back.svg",
  25113. extra: 1486 / 1089,
  25114. bottom: 107 / 1601.4
  25115. }
  25116. },
  25117. side: {
  25118. height: math.unit(10.5, "feet"),
  25119. weight: math.unit(800, "lb"),
  25120. name: "Side",
  25121. image: {
  25122. source: "./media/characters/knox/side.svg",
  25123. extra: 244 / 218,
  25124. bottom: 14 / 260
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Compact",
  25131. height: math.unit(10.5, "feet"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Dynamax",
  25136. height: math.unit(210, "feet")
  25137. },
  25138. {
  25139. name: "Full Macro",
  25140. height: math.unit(850, "feet")
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(28, "feet"),
  25149. weight: math.unit(10500, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/kayda/front.svg",
  25153. extra: 1536 / 1428,
  25154. bottom: 68.7 / 1603
  25155. }
  25156. },
  25157. back: {
  25158. height: math.unit(28, "feet"),
  25159. weight: math.unit(10500, "lb"),
  25160. name: "Back",
  25161. image: {
  25162. source: "./media/characters/kayda/back.svg",
  25163. extra: 1557 / 1464,
  25164. bottom: 39.5 / 1597.49
  25165. }
  25166. },
  25167. dick: {
  25168. height: math.unit(3.858, "feet"),
  25169. name: "Dick",
  25170. image: {
  25171. source: "./media/characters/kayda/dick.svg"
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Macro",
  25178. height: math.unit(28, "feet"),
  25179. default: true
  25180. },
  25181. ]
  25182. ))
  25183. characterMakers.push(() => makeCharacter(
  25184. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25185. {
  25186. front: {
  25187. height: math.unit(10 + 11 / 12, "feet"),
  25188. weight: math.unit(1400, "lb"),
  25189. name: "Front",
  25190. image: {
  25191. source: "./media/characters/brian/front.svg",
  25192. extra: 737 / 692,
  25193. bottom: 55.4 / 785
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Normal",
  25200. height: math.unit(10 + 11 / 12, "feet"),
  25201. default: true
  25202. },
  25203. ]
  25204. ))
  25205. characterMakers.push(() => makeCharacter(
  25206. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25207. {
  25208. front: {
  25209. height: math.unit(5 + 8 / 12, "feet"),
  25210. weight: math.unit(140, "lb"),
  25211. name: "Front",
  25212. image: {
  25213. source: "./media/characters/khemri/front.svg",
  25214. extra: 4780 / 4059,
  25215. bottom: 80.1 / 4859.25
  25216. }
  25217. },
  25218. },
  25219. [
  25220. {
  25221. name: "Micro",
  25222. height: math.unit(6, "inches")
  25223. },
  25224. {
  25225. name: "Normal",
  25226. height: math.unit(5 + 8 / 12, "feet"),
  25227. default: true
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25233. {
  25234. front: {
  25235. height: math.unit(13, "feet"),
  25236. weight: math.unit(1700, "lb"),
  25237. name: "Front",
  25238. image: {
  25239. source: "./media/characters/felix-braveheart/front.svg",
  25240. extra: 1222 / 1157,
  25241. bottom: 53.2 / 1280
  25242. }
  25243. },
  25244. back: {
  25245. height: math.unit(13, "feet"),
  25246. weight: math.unit(1700, "lb"),
  25247. name: "Back",
  25248. image: {
  25249. source: "./media/characters/felix-braveheart/back.svg",
  25250. extra: 1277 / 1203,
  25251. bottom: 50.2 / 1327
  25252. }
  25253. },
  25254. feral: {
  25255. height: math.unit(6, "feet"),
  25256. weight: math.unit(400, "lb"),
  25257. name: "Feral",
  25258. image: {
  25259. source: "./media/characters/felix-braveheart/feral.svg",
  25260. extra: 682 / 625,
  25261. bottom: 6.9 / 688
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(13, "feet"),
  25269. default: true
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25275. {
  25276. side: {
  25277. height: math.unit(5 + 11 / 12, "feet"),
  25278. weight: math.unit(1400, "lb"),
  25279. name: "Side",
  25280. image: {
  25281. source: "./media/characters/shadow-blade/side.svg",
  25282. extra: 1726 / 1267,
  25283. bottom: 58.4 / 1785
  25284. }
  25285. },
  25286. },
  25287. [
  25288. {
  25289. name: "Normal",
  25290. height: math.unit(5 + 11 / 12, "feet"),
  25291. default: true
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25297. {
  25298. front: {
  25299. height: math.unit(1 + 6 / 12, "feet"),
  25300. weight: math.unit(25, "lb"),
  25301. name: "Front",
  25302. image: {
  25303. source: "./media/characters/karla-halldor/front.svg",
  25304. extra: 1459 / 1383,
  25305. bottom: 12 / 1472
  25306. }
  25307. },
  25308. },
  25309. [
  25310. {
  25311. name: "Normal",
  25312. height: math.unit(1 + 6 / 12, "feet"),
  25313. default: true
  25314. },
  25315. ]
  25316. ))
  25317. characterMakers.push(() => makeCharacter(
  25318. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25319. {
  25320. front: {
  25321. height: math.unit(6 + 2 / 12, "feet"),
  25322. weight: math.unit(160, "lb"),
  25323. name: "Front",
  25324. image: {
  25325. source: "./media/characters/ariam/front.svg",
  25326. extra: 1073/976,
  25327. bottom: 52/1125
  25328. }
  25329. },
  25330. back: {
  25331. height: math.unit(6 + 2/12, "feet"),
  25332. weight: math.unit(160, "lb"),
  25333. name: "Back",
  25334. image: {
  25335. source: "./media/characters/ariam/back.svg",
  25336. extra: 1103/1023,
  25337. bottom: 9/1112
  25338. }
  25339. },
  25340. dressed: {
  25341. height: math.unit(6 + 2/12, "feet"),
  25342. weight: math.unit(160, "lb"),
  25343. name: "Dressed",
  25344. image: {
  25345. source: "./media/characters/ariam/dressed.svg",
  25346. extra: 1099/1009,
  25347. bottom: 25/1124
  25348. }
  25349. },
  25350. squatting: {
  25351. height: math.unit(4.1, "feet"),
  25352. weight: math.unit(160, "lb"),
  25353. name: "Squatting",
  25354. image: {
  25355. source: "./media/characters/ariam/squatting.svg",
  25356. extra: 2617 / 2112,
  25357. bottom: 61.2 / 2681,
  25358. }
  25359. },
  25360. },
  25361. [
  25362. {
  25363. name: "Normal",
  25364. height: math.unit(6 + 2 / 12, "feet"),
  25365. default: true
  25366. },
  25367. {
  25368. name: "Normal+",
  25369. height: math.unit(4, "meters")
  25370. },
  25371. {
  25372. name: "Macro",
  25373. height: math.unit(50, "meters")
  25374. },
  25375. {
  25376. name: "Macro+",
  25377. height: math.unit(100, "meters")
  25378. },
  25379. {
  25380. name: "Megamacro",
  25381. height: math.unit(20, "km")
  25382. },
  25383. {
  25384. name: "Caretaker",
  25385. height: math.unit(444, "megameters")
  25386. },
  25387. ]
  25388. ))
  25389. characterMakers.push(() => makeCharacter(
  25390. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25391. {
  25392. front: {
  25393. height: math.unit(1.67, "meters"),
  25394. weight: math.unit(140, "lb"),
  25395. name: "Front",
  25396. image: {
  25397. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25398. extra: 438 / 410,
  25399. bottom: 0.75 / 439
  25400. }
  25401. },
  25402. },
  25403. [
  25404. {
  25405. name: "Shrunken",
  25406. height: math.unit(7.6, "cm")
  25407. },
  25408. {
  25409. name: "Human Scale",
  25410. height: math.unit(1.67, "meters")
  25411. },
  25412. {
  25413. name: "Wolxi Scale",
  25414. height: math.unit(36.7, "meters"),
  25415. default: true
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(1.73, "meters"),
  25424. weight: math.unit(240, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/izue-two-mothers/front.svg",
  25428. extra: 469 / 437,
  25429. bottom: 1.24 / 470.6
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Shrunken",
  25436. height: math.unit(7.86, "cm")
  25437. },
  25438. {
  25439. name: "Human Scale",
  25440. height: math.unit(1.73, "meters")
  25441. },
  25442. {
  25443. name: "Wolxi Scale",
  25444. height: math.unit(38, "meters"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(1.55, "meters"),
  25454. weight: math.unit(120, "lb"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/teeku-love-shack/front.svg",
  25458. extra: 387 / 362,
  25459. bottom: 1.51 / 388
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Shrunken",
  25466. height: math.unit(7, "cm")
  25467. },
  25468. {
  25469. name: "Human Scale",
  25470. height: math.unit(1.55, "meters")
  25471. },
  25472. {
  25473. name: "Wolxi Scale",
  25474. height: math.unit(34.1, "meters"),
  25475. default: true
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(1.83, "meters"),
  25484. weight: math.unit(135, "lb"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/dejma-the-red/front.svg",
  25488. extra: 480 / 458,
  25489. bottom: 1.8 / 482
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Shrunken",
  25496. height: math.unit(8.3, "cm")
  25497. },
  25498. {
  25499. name: "Human Scale",
  25500. height: math.unit(1.83, "meters")
  25501. },
  25502. {
  25503. name: "Wolxi Scale",
  25504. height: math.unit(40, "meters"),
  25505. default: true
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25511. {
  25512. front: {
  25513. height: math.unit(1.78, "meters"),
  25514. weight: math.unit(65, "kg"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/aki/front.svg",
  25518. extra: 452 / 415
  25519. }
  25520. },
  25521. frontNsfw: {
  25522. height: math.unit(1.78, "meters"),
  25523. weight: math.unit(65, "kg"),
  25524. name: "Front (NSFW)",
  25525. image: {
  25526. source: "./media/characters/aki/front-nsfw.svg",
  25527. extra: 452 / 415
  25528. }
  25529. },
  25530. back: {
  25531. height: math.unit(1.78, "meters"),
  25532. weight: math.unit(65, "kg"),
  25533. name: "Back",
  25534. image: {
  25535. source: "./media/characters/aki/back.svg",
  25536. extra: 452 / 415
  25537. }
  25538. },
  25539. rump: {
  25540. height: math.unit(2.05, "feet"),
  25541. name: "Rump",
  25542. image: {
  25543. source: "./media/characters/aki/rump.svg"
  25544. }
  25545. },
  25546. dick: {
  25547. height: math.unit(0.95, "feet"),
  25548. name: "Dick",
  25549. image: {
  25550. source: "./media/characters/aki/dick.svg"
  25551. }
  25552. },
  25553. },
  25554. [
  25555. {
  25556. name: "Micro",
  25557. height: math.unit(15, "cm")
  25558. },
  25559. {
  25560. name: "Normal",
  25561. height: math.unit(178, "cm"),
  25562. default: true
  25563. },
  25564. {
  25565. name: "Macro",
  25566. height: math.unit(214, "m")
  25567. },
  25568. {
  25569. name: "Macro+",
  25570. height: math.unit(534, "m")
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25576. {
  25577. front: {
  25578. height: math.unit(5 + 5 / 12, "feet"),
  25579. weight: math.unit(120, "lb"),
  25580. name: "Front",
  25581. image: {
  25582. source: "./media/characters/ari/front.svg",
  25583. extra: 1550/1471,
  25584. bottom: 39/1589
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Normal",
  25591. height: math.unit(5 + 5 / 12, "feet")
  25592. },
  25593. {
  25594. name: "Macro",
  25595. height: math.unit(100, "feet"),
  25596. default: true
  25597. },
  25598. {
  25599. name: "Megamacro",
  25600. height: math.unit(100, "miles")
  25601. },
  25602. {
  25603. name: "Gigamacro",
  25604. height: math.unit(80000, "miles")
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25610. {
  25611. side: {
  25612. height: math.unit(9, "feet"),
  25613. weight: math.unit(400, "kg"),
  25614. name: "Side",
  25615. image: {
  25616. source: "./media/characters/bolt/side.svg",
  25617. extra: 1126 / 896,
  25618. bottom: 60 / 1187.3,
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Micro",
  25625. height: math.unit(5, "inches")
  25626. },
  25627. {
  25628. name: "Normal",
  25629. height: math.unit(9, "feet"),
  25630. default: true
  25631. },
  25632. {
  25633. name: "Macro",
  25634. height: math.unit(700, "feet")
  25635. },
  25636. {
  25637. name: "Max Size",
  25638. height: math.unit(1.52e22, "yottameters")
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25644. {
  25645. front: {
  25646. height: math.unit(4.3, "meters"),
  25647. weight: math.unit(3, "tons"),
  25648. name: "Front",
  25649. image: {
  25650. source: "./media/characters/draekon-sylviar/front.svg",
  25651. extra: 2072/1512,
  25652. bottom: 74/2146
  25653. }
  25654. },
  25655. back: {
  25656. height: math.unit(4.3, "meters"),
  25657. weight: math.unit(3, "tons"),
  25658. name: "Back",
  25659. image: {
  25660. source: "./media/characters/draekon-sylviar/back.svg",
  25661. extra: 1639/1483,
  25662. bottom: 41/1680
  25663. }
  25664. },
  25665. feral: {
  25666. height: math.unit(1.15, "meters"),
  25667. weight: math.unit(3, "tons"),
  25668. name: "Feral",
  25669. image: {
  25670. source: "./media/characters/draekon-sylviar/feral.svg",
  25671. extra: 1033/395,
  25672. bottom: 130/1163
  25673. }
  25674. },
  25675. maw: {
  25676. height: math.unit(1.3, "meters"),
  25677. name: "Maw",
  25678. image: {
  25679. source: "./media/characters/draekon-sylviar/maw.svg"
  25680. }
  25681. },
  25682. mawSeparated: {
  25683. height: math.unit(1.53, "meters"),
  25684. name: "Separated Maw",
  25685. image: {
  25686. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25687. }
  25688. },
  25689. tail: {
  25690. height: math.unit(1.15, "meters"),
  25691. name: "Tail",
  25692. image: {
  25693. source: "./media/characters/draekon-sylviar/tail.svg"
  25694. }
  25695. },
  25696. tailDick: {
  25697. height: math.unit(1.15, "meters"),
  25698. name: "Tail (Dick)",
  25699. image: {
  25700. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25701. }
  25702. },
  25703. tailDickSeparated: {
  25704. height: math.unit(1.19, "meters"),
  25705. name: "Tail (Separated Dick)",
  25706. image: {
  25707. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25708. }
  25709. },
  25710. slit: {
  25711. height: math.unit(1, "meters"),
  25712. name: "Slit",
  25713. image: {
  25714. source: "./media/characters/draekon-sylviar/slit.svg"
  25715. }
  25716. },
  25717. dick: {
  25718. height: math.unit(1.15, "meters"),
  25719. name: "Dick",
  25720. image: {
  25721. source: "./media/characters/draekon-sylviar/dick.svg"
  25722. }
  25723. },
  25724. dickSeparated: {
  25725. height: math.unit(1.1, "meters"),
  25726. name: "Separated Dick",
  25727. image: {
  25728. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25729. }
  25730. },
  25731. sheath: {
  25732. height: math.unit(1.15, "meters"),
  25733. name: "Sheath",
  25734. image: {
  25735. source: "./media/characters/draekon-sylviar/sheath.svg"
  25736. }
  25737. },
  25738. },
  25739. [
  25740. {
  25741. name: "Small",
  25742. height: math.unit(4.53 / 2, "meters"),
  25743. default: true
  25744. },
  25745. {
  25746. name: "Normal",
  25747. height: math.unit(4.53, "meters"),
  25748. default: true
  25749. },
  25750. {
  25751. name: "Large",
  25752. height: math.unit(4.53 * 2, "meters"),
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25758. {
  25759. front: {
  25760. height: math.unit(6 + 2 / 12, "feet"),
  25761. weight: math.unit(180, "lb"),
  25762. name: "Front",
  25763. image: {
  25764. source: "./media/characters/brawler/front.svg",
  25765. extra: 3301 / 3027,
  25766. bottom: 138 / 3439
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Normal",
  25773. height: math.unit(6 + 2 / 12, "feet"),
  25774. default: true
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25780. {
  25781. front: {
  25782. height: math.unit(11, "feet"),
  25783. weight: math.unit(1000, "lb"),
  25784. name: "Front",
  25785. image: {
  25786. source: "./media/characters/alex/front.svg",
  25787. bottom: 44.5 / 620
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Micro",
  25794. height: math.unit(5, "inches")
  25795. },
  25796. {
  25797. name: "Normal",
  25798. height: math.unit(11, "feet"),
  25799. default: true
  25800. },
  25801. {
  25802. name: "Macro",
  25803. height: math.unit(9.5e9, "feet")
  25804. },
  25805. {
  25806. name: "Max Size",
  25807. height: math.unit(1.4e283, "yottameters")
  25808. },
  25809. ]
  25810. ))
  25811. characterMakers.push(() => makeCharacter(
  25812. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25813. {
  25814. female: {
  25815. height: math.unit(29.9, "m"),
  25816. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25817. name: "Female",
  25818. image: {
  25819. source: "./media/characters/zenari/female.svg",
  25820. extra: 3281.6 / 3217,
  25821. bottom: 72.2 / 3353
  25822. }
  25823. },
  25824. male: {
  25825. height: math.unit(27.7, "m"),
  25826. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25827. name: "Male",
  25828. image: {
  25829. source: "./media/characters/zenari/male.svg",
  25830. extra: 3008 / 2991,
  25831. bottom: 54.6 / 3069
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Macro",
  25838. height: math.unit(29.7, "meters"),
  25839. default: true
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25845. {
  25846. female: {
  25847. height: math.unit(23.8, "m"),
  25848. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25849. name: "Female",
  25850. image: {
  25851. source: "./media/characters/mactarian/female.svg",
  25852. extra: 2662 / 2569,
  25853. bottom: 73 / 2736
  25854. }
  25855. },
  25856. male: {
  25857. height: math.unit(23.8, "m"),
  25858. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25859. name: "Male",
  25860. image: {
  25861. source: "./media/characters/mactarian/male.svg",
  25862. extra: 2673 / 2600,
  25863. bottom: 76 / 2750
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Macro",
  25870. height: math.unit(23.8, "meters"),
  25871. default: true
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25877. {
  25878. female: {
  25879. height: math.unit(19.3, "m"),
  25880. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25881. name: "Female",
  25882. image: {
  25883. source: "./media/characters/umok/female.svg",
  25884. extra: 2186 / 2078,
  25885. bottom: 87 / 2277
  25886. }
  25887. },
  25888. male: {
  25889. height: math.unit(19.5, "m"),
  25890. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25891. name: "Male",
  25892. image: {
  25893. source: "./media/characters/umok/male.svg",
  25894. extra: 2233 / 2140,
  25895. bottom: 24.4 / 2258
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Macro",
  25902. height: math.unit(19.3, "meters"),
  25903. default: true
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25909. {
  25910. female: {
  25911. height: math.unit(26.15, "m"),
  25912. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25913. name: "Female",
  25914. image: {
  25915. source: "./media/characters/joraxian/female.svg",
  25916. extra: 2912 / 2824,
  25917. bottom: 36 / 2956
  25918. }
  25919. },
  25920. male: {
  25921. height: math.unit(25.4, "m"),
  25922. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25923. name: "Male",
  25924. image: {
  25925. source: "./media/characters/joraxian/male.svg",
  25926. extra: 2877 / 2721,
  25927. bottom: 82 / 2967
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Macro",
  25934. height: math.unit(26.15, "meters"),
  25935. default: true
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25941. {
  25942. female: {
  25943. height: math.unit(21.6, "m"),
  25944. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25945. name: "Female",
  25946. image: {
  25947. source: "./media/characters/sthara/female.svg",
  25948. extra: 2516 / 2347,
  25949. bottom: 21.5 / 2537
  25950. }
  25951. },
  25952. male: {
  25953. height: math.unit(24, "m"),
  25954. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25955. name: "Male",
  25956. image: {
  25957. source: "./media/characters/sthara/male.svg",
  25958. extra: 2732 / 2607,
  25959. bottom: 23 / 2732
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Macro",
  25966. height: math.unit(21.6, "meters"),
  25967. default: true
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25973. {
  25974. front: {
  25975. height: math.unit(6 + 4 / 12, "feet"),
  25976. weight: math.unit(175, "lb"),
  25977. name: "Front",
  25978. image: {
  25979. source: "./media/characters/luka-bryzant/front.svg",
  25980. extra: 311 / 289,
  25981. bottom: 4 / 315
  25982. }
  25983. },
  25984. back: {
  25985. height: math.unit(6 + 4 / 12, "feet"),
  25986. weight: math.unit(175, "lb"),
  25987. name: "Back",
  25988. image: {
  25989. source: "./media/characters/luka-bryzant/back.svg",
  25990. extra: 311 / 289,
  25991. bottom: 3.8 / 313.7
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Micro",
  25998. height: math.unit(10, "inches")
  25999. },
  26000. {
  26001. name: "Normal",
  26002. height: math.unit(6 + 4 / 12, "feet"),
  26003. default: true
  26004. },
  26005. {
  26006. name: "Large",
  26007. height: math.unit(12, "feet")
  26008. },
  26009. ]
  26010. ))
  26011. characterMakers.push(() => makeCharacter(
  26012. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26013. {
  26014. front: {
  26015. height: math.unit(5 + 7 / 12, "feet"),
  26016. weight: math.unit(185, "lb"),
  26017. name: "Front",
  26018. image: {
  26019. source: "./media/characters/aman-aquila/front.svg",
  26020. extra: 1013 / 976,
  26021. bottom: 45.6 / 1057
  26022. }
  26023. },
  26024. side: {
  26025. height: math.unit(5 + 7 / 12, "feet"),
  26026. weight: math.unit(185, "lb"),
  26027. name: "Side",
  26028. image: {
  26029. source: "./media/characters/aman-aquila/side.svg",
  26030. extra: 1054 / 1011,
  26031. bottom: 15 / 1070
  26032. }
  26033. },
  26034. back: {
  26035. height: math.unit(5 + 7 / 12, "feet"),
  26036. weight: math.unit(185, "lb"),
  26037. name: "Back",
  26038. image: {
  26039. source: "./media/characters/aman-aquila/back.svg",
  26040. extra: 1026 / 970,
  26041. bottom: 12 / 1039
  26042. }
  26043. },
  26044. head: {
  26045. height: math.unit(1.211, "feet"),
  26046. name: "Head",
  26047. image: {
  26048. source: "./media/characters/aman-aquila/head.svg",
  26049. }
  26050. },
  26051. },
  26052. [
  26053. {
  26054. name: "Minimicro",
  26055. height: math.unit(0.057, "inches")
  26056. },
  26057. {
  26058. name: "Micro",
  26059. height: math.unit(7, "inches")
  26060. },
  26061. {
  26062. name: "Mini",
  26063. height: math.unit(3 + 7 / 12, "feet")
  26064. },
  26065. {
  26066. name: "Normal",
  26067. height: math.unit(5 + 7 / 12, "feet"),
  26068. default: true
  26069. },
  26070. {
  26071. name: "Macro",
  26072. height: math.unit(157 + 7 / 12, "feet")
  26073. },
  26074. {
  26075. name: "Megamacro",
  26076. height: math.unit(1557 + 7 / 12, "feet")
  26077. },
  26078. {
  26079. name: "Gigamacro",
  26080. height: math.unit(15557 + 7 / 12, "feet")
  26081. },
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26086. {
  26087. front: {
  26088. height: math.unit(3 + 2 / 12, "inches"),
  26089. weight: math.unit(0.3, "ounces"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/hiphae/front.svg",
  26093. extra: 1931 / 1683,
  26094. bottom: 24 / 1955
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(3 + 1 / 2, "inches"),
  26102. default: true
  26103. },
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26108. {
  26109. front: {
  26110. height: math.unit(5 + 10 / 12, "feet"),
  26111. weight: math.unit(165, "lb"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/nicky/front.svg",
  26115. extra: 3144 / 2886,
  26116. bottom: 45.6 / 3192
  26117. }
  26118. },
  26119. back: {
  26120. height: math.unit(5 + 10 / 12, "feet"),
  26121. weight: math.unit(165, "lb"),
  26122. name: "Back",
  26123. image: {
  26124. source: "./media/characters/nicky/back.svg",
  26125. extra: 3055 / 2804,
  26126. bottom: 28.4 / 3087
  26127. }
  26128. },
  26129. frontclothed: {
  26130. height: math.unit(5 + 10 / 12, "feet"),
  26131. weight: math.unit(165, "lb"),
  26132. name: "Front-clothed",
  26133. image: {
  26134. source: "./media/characters/nicky/front-clothed.svg",
  26135. extra: 3184.9 / 2926.9,
  26136. bottom: 86.5 / 3239.9
  26137. }
  26138. },
  26139. foot: {
  26140. height: math.unit(1.16, "feet"),
  26141. name: "Foot",
  26142. image: {
  26143. source: "./media/characters/nicky/foot.svg"
  26144. }
  26145. },
  26146. feet: {
  26147. height: math.unit(1.34, "feet"),
  26148. name: "Feet",
  26149. image: {
  26150. source: "./media/characters/nicky/feet.svg"
  26151. }
  26152. },
  26153. maw: {
  26154. height: math.unit(0.9, "feet"),
  26155. name: "Maw",
  26156. image: {
  26157. source: "./media/characters/nicky/maw.svg"
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(5 + 10 / 12, "feet"),
  26165. default: true
  26166. },
  26167. {
  26168. name: "Macro",
  26169. height: math.unit(60, "feet")
  26170. },
  26171. {
  26172. name: "Megamacro",
  26173. height: math.unit(1, "mile")
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26179. {
  26180. side: {
  26181. height: math.unit(10, "feet"),
  26182. weight: math.unit(600, "lb"),
  26183. name: "Side",
  26184. image: {
  26185. source: "./media/characters/blair/side.svg",
  26186. bottom: 16.6 / 475,
  26187. extra: 458 / 431
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Micro",
  26194. height: math.unit(8, "inches")
  26195. },
  26196. {
  26197. name: "Normal",
  26198. height: math.unit(10, "feet"),
  26199. default: true
  26200. },
  26201. {
  26202. name: "Macro",
  26203. height: math.unit(180, "feet")
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(5 + 4 / 12, "feet"),
  26212. weight: math.unit(125, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/fisher/front.svg",
  26216. extra: 444 / 390,
  26217. bottom: 2 / 444.8
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Micro",
  26224. height: math.unit(4, "inches")
  26225. },
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(5 + 4 / 12, "feet"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(100, "feet")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(6.71, "feet"),
  26242. weight: math.unit(200, "lb"),
  26243. preyCapacity: math.unit(1000000, "people"),
  26244. name: "Front",
  26245. image: {
  26246. source: "./media/characters/gliss/front.svg",
  26247. extra: 2347 / 2231,
  26248. bottom: 113 / 2462
  26249. }
  26250. },
  26251. hammerspaceSize: {
  26252. height: math.unit(6.71 * 717, "feet"),
  26253. weight: math.unit(200, "lb"),
  26254. preyCapacity: math.unit(1000000, "people"),
  26255. name: "Hammerspace Size",
  26256. image: {
  26257. source: "./media/characters/gliss/front.svg",
  26258. extra: 2347 / 2231,
  26259. bottom: 113 / 2462
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(6.71, "feet"),
  26267. default: true
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26273. {
  26274. side: {
  26275. height: math.unit(1.44, "m"),
  26276. weight: math.unit(80, "kg"),
  26277. name: "Side",
  26278. image: {
  26279. source: "./media/characters/dune-anderson/side.svg",
  26280. bottom: 49 / 1426
  26281. }
  26282. },
  26283. },
  26284. [
  26285. {
  26286. name: "Wolf-sized",
  26287. height: math.unit(1.44, "meters")
  26288. },
  26289. {
  26290. name: "Normal",
  26291. height: math.unit(5.05, "meters"),
  26292. default: true
  26293. },
  26294. {
  26295. name: "Big",
  26296. height: math.unit(14.4, "meters")
  26297. },
  26298. {
  26299. name: "Huge",
  26300. height: math.unit(144, "meters")
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26306. {
  26307. front: {
  26308. height: math.unit(7, "feet"),
  26309. weight: math.unit(425, "lb"),
  26310. name: "Front",
  26311. image: {
  26312. source: "./media/characters/hind/front.svg",
  26313. extra: 2091 / 1860,
  26314. bottom: 129 / 2220
  26315. }
  26316. },
  26317. back: {
  26318. height: math.unit(7, "feet"),
  26319. weight: math.unit(425, "lb"),
  26320. name: "Back",
  26321. image: {
  26322. source: "./media/characters/hind/back.svg",
  26323. extra: 2091 / 1860,
  26324. bottom: 24.6 / 2309
  26325. }
  26326. },
  26327. tail: {
  26328. height: math.unit(2.8, "feet"),
  26329. name: "Tail",
  26330. image: {
  26331. source: "./media/characters/hind/tail.svg"
  26332. }
  26333. },
  26334. head: {
  26335. height: math.unit(2.55, "feet"),
  26336. name: "Head",
  26337. image: {
  26338. source: "./media/characters/hind/head.svg"
  26339. }
  26340. },
  26341. },
  26342. [
  26343. {
  26344. name: "XS",
  26345. height: math.unit(0.7, "feet")
  26346. },
  26347. {
  26348. name: "Normal",
  26349. height: math.unit(7, "feet"),
  26350. default: true
  26351. },
  26352. {
  26353. name: "XL",
  26354. height: math.unit(70, "feet")
  26355. },
  26356. ]
  26357. ))
  26358. characterMakers.push(() => makeCharacter(
  26359. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26360. {
  26361. front: {
  26362. height: math.unit(2.1, "meters"),
  26363. weight: math.unit(150, "lb"),
  26364. name: "Front",
  26365. image: {
  26366. source: "./media/characters/tharquench-sizestealer/front.svg",
  26367. extra: 1605/1470,
  26368. bottom: 36/1641
  26369. }
  26370. },
  26371. frontAlt: {
  26372. height: math.unit(2.1, "meters"),
  26373. weight: math.unit(150, "lb"),
  26374. name: "Front (Alt)",
  26375. image: {
  26376. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26377. extra: 2318 / 2063,
  26378. bottom: 93.4 / 2410
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Nano",
  26385. height: math.unit(1, "mm")
  26386. },
  26387. {
  26388. name: "Micro",
  26389. height: math.unit(1, "cm")
  26390. },
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(2.1, "meters"),
  26394. default: true
  26395. },
  26396. ]
  26397. ))
  26398. characterMakers.push(() => makeCharacter(
  26399. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26400. {
  26401. front: {
  26402. height: math.unit(7 + 5 / 12, "feet"),
  26403. weight: math.unit(357, "lb"),
  26404. name: "Front",
  26405. image: {
  26406. source: "./media/characters/solex-draconov/front.svg",
  26407. extra: 1993 / 1865,
  26408. bottom: 117 / 2111
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Natural Height",
  26415. height: math.unit(7 + 5 / 12, "feet"),
  26416. default: true
  26417. },
  26418. {
  26419. name: "Macro",
  26420. height: math.unit(350, "feet")
  26421. },
  26422. {
  26423. name: "Macro+",
  26424. height: math.unit(1000, "feet")
  26425. },
  26426. {
  26427. name: "Megamacro",
  26428. height: math.unit(20, "km")
  26429. },
  26430. {
  26431. name: "Megamacro+",
  26432. height: math.unit(1000, "km")
  26433. },
  26434. {
  26435. name: "Gigamacro",
  26436. height: math.unit(2.5, "Gm")
  26437. },
  26438. {
  26439. name: "Teramacro",
  26440. height: math.unit(15, "Tm")
  26441. },
  26442. {
  26443. name: "Galactic",
  26444. height: math.unit(30, "Zm")
  26445. },
  26446. {
  26447. name: "Universal",
  26448. height: math.unit(21000, "Ym")
  26449. },
  26450. {
  26451. name: "Omniversal",
  26452. height: math.unit(9.861e50, "Ym")
  26453. },
  26454. {
  26455. name: "Existential",
  26456. height: math.unit(1e300, "meters")
  26457. },
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26462. {
  26463. side: {
  26464. height: math.unit(25, "feet"),
  26465. weight: math.unit(90000, "lb"),
  26466. name: "Side",
  26467. image: {
  26468. source: "./media/characters/mandarax/side.svg",
  26469. extra: 614 / 332,
  26470. bottom: 55 / 630
  26471. }
  26472. },
  26473. lounging: {
  26474. height: math.unit(15.4, "feet"),
  26475. weight: math.unit(90000, "lb"),
  26476. name: "Lounging",
  26477. image: {
  26478. source: "./media/characters/mandarax/lounging.svg",
  26479. extra: 817/609,
  26480. bottom: 685/1502
  26481. }
  26482. },
  26483. head: {
  26484. height: math.unit(11.4, "feet"),
  26485. name: "Head",
  26486. image: {
  26487. source: "./media/characters/mandarax/head.svg"
  26488. }
  26489. },
  26490. belly: {
  26491. height: math.unit(33, "feet"),
  26492. name: "Belly",
  26493. preyCapacity: math.unit(500, "people"),
  26494. image: {
  26495. source: "./media/characters/mandarax/belly.svg"
  26496. }
  26497. },
  26498. dick: {
  26499. height: math.unit(8.46, "feet"),
  26500. name: "Dick",
  26501. image: {
  26502. source: "./media/characters/mandarax/dick.svg"
  26503. }
  26504. },
  26505. top: {
  26506. height: math.unit(28, "meters"),
  26507. name: "Top",
  26508. image: {
  26509. source: "./media/characters/mandarax/top.svg"
  26510. }
  26511. },
  26512. },
  26513. [
  26514. {
  26515. name: "Normal",
  26516. height: math.unit(25, "feet"),
  26517. default: true
  26518. },
  26519. ]
  26520. ))
  26521. characterMakers.push(() => makeCharacter(
  26522. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26523. {
  26524. front: {
  26525. height: math.unit(5, "feet"),
  26526. weight: math.unit(90, "lb"),
  26527. name: "Front",
  26528. image: {
  26529. source: "./media/characters/pixil/front.svg",
  26530. extra: 2000 / 1618,
  26531. bottom: 12.3 / 2011
  26532. }
  26533. },
  26534. },
  26535. [
  26536. {
  26537. name: "Normal",
  26538. height: math.unit(5, "feet"),
  26539. default: true
  26540. },
  26541. {
  26542. name: "Megamacro",
  26543. height: math.unit(10, "miles"),
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(7 + 2 / 12, "feet"),
  26552. weight: math.unit(200, "lb"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/angel/front.svg",
  26556. extra: 1830 / 1737,
  26557. bottom: 22.6 / 1854,
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(7 + 2 / 12, "feet"),
  26565. default: true
  26566. },
  26567. {
  26568. name: "Macro",
  26569. height: math.unit(1000, "feet")
  26570. },
  26571. {
  26572. name: "Megamacro",
  26573. height: math.unit(2, "miles")
  26574. },
  26575. {
  26576. name: "Gigamacro",
  26577. height: math.unit(20, "earths")
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(5, "feet"),
  26586. weight: math.unit(180, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/mekana/front.svg",
  26590. extra: 1671 / 1605,
  26591. bottom: 3.5 / 1691
  26592. }
  26593. },
  26594. side: {
  26595. height: math.unit(5, "feet"),
  26596. weight: math.unit(180, "lb"),
  26597. name: "Side",
  26598. image: {
  26599. source: "./media/characters/mekana/side.svg",
  26600. extra: 1671 / 1605,
  26601. bottom: 3.5 / 1691
  26602. }
  26603. },
  26604. back: {
  26605. height: math.unit(5, "feet"),
  26606. weight: math.unit(180, "lb"),
  26607. name: "Back",
  26608. image: {
  26609. source: "./media/characters/mekana/back.svg",
  26610. extra: 1671 / 1605,
  26611. bottom: 3.5 / 1691
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(5, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(4 + 6 / 12, "feet"),
  26628. weight: math.unit(80, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/pixie/front.svg",
  26632. extra: 1924 / 1825,
  26633. bottom: 22.4 / 1946
  26634. }
  26635. },
  26636. },
  26637. [
  26638. {
  26639. name: "Normal",
  26640. height: math.unit(4 + 6 / 12, "feet"),
  26641. default: true
  26642. },
  26643. {
  26644. name: "Macro",
  26645. height: math.unit(40, "feet")
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(2.1, "meters"),
  26654. weight: math.unit(200, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/the-lascivious/front.svg",
  26658. extra: 1 / 0.893,
  26659. bottom: 3.5 / 573.7
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Human Scale",
  26666. height: math.unit(2.1, "meters")
  26667. },
  26668. {
  26669. name: "Wolxi Scale",
  26670. height: math.unit(46.2, "m"),
  26671. default: true
  26672. },
  26673. {
  26674. name: "Boinker of Buildings",
  26675. height: math.unit(10, "km")
  26676. },
  26677. {
  26678. name: "Shagger of Skyscrapers",
  26679. height: math.unit(40, "km")
  26680. },
  26681. {
  26682. name: "Banger of Boroughs",
  26683. height: math.unit(4000, "km")
  26684. },
  26685. {
  26686. name: "Screwer of States",
  26687. height: math.unit(100000, "km")
  26688. },
  26689. {
  26690. name: "Pounder of Planets",
  26691. height: math.unit(2000000, "km")
  26692. },
  26693. ]
  26694. ))
  26695. characterMakers.push(() => makeCharacter(
  26696. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26697. {
  26698. front: {
  26699. height: math.unit(6, "feet"),
  26700. weight: math.unit(150, "lb"),
  26701. name: "Front",
  26702. image: {
  26703. source: "./media/characters/aj/front.svg",
  26704. extra: 2039 / 1562,
  26705. bottom: 40 / 2079
  26706. }
  26707. },
  26708. },
  26709. [
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(11 + 6 / 12, "feet"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Megamacro",
  26717. height: math.unit(60, "megameters")
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26723. {
  26724. side: {
  26725. height: math.unit(31 + 8 / 12, "feet"),
  26726. weight: math.unit(75000, "kg"),
  26727. name: "Side",
  26728. image: {
  26729. source: "./media/characters/koros/side.svg",
  26730. extra: 1442 / 1297,
  26731. bottom: 122.7 / 1562
  26732. }
  26733. },
  26734. dicksKingsCrown: {
  26735. height: math.unit(6, "feet"),
  26736. name: "Dicks (King's Crown)",
  26737. image: {
  26738. source: "./media/characters/koros/dicks-kings-crown.svg"
  26739. }
  26740. },
  26741. dicksTailSet: {
  26742. height: math.unit(3, "feet"),
  26743. name: "Dicks (Tail Set)",
  26744. image: {
  26745. source: "./media/characters/koros/dicks-tail-set.svg"
  26746. }
  26747. },
  26748. dickCumming: {
  26749. height: math.unit(7.98, "feet"),
  26750. name: "Dick (Cumming)",
  26751. image: {
  26752. source: "./media/characters/koros/dick-cumming.svg"
  26753. }
  26754. },
  26755. dicksBack: {
  26756. height: math.unit(5.9, "feet"),
  26757. name: "Dicks (Back)",
  26758. image: {
  26759. source: "./media/characters/koros/dicks-back.svg"
  26760. }
  26761. },
  26762. dicksFront: {
  26763. height: math.unit(3.72, "feet"),
  26764. name: "Dicks (Front)",
  26765. image: {
  26766. source: "./media/characters/koros/dicks-front.svg"
  26767. }
  26768. },
  26769. dicksPeeking: {
  26770. height: math.unit(3.0, "feet"),
  26771. name: "Dicks (Peeking)",
  26772. image: {
  26773. source: "./media/characters/koros/dicks-peeking.svg"
  26774. }
  26775. },
  26776. eye: {
  26777. height: math.unit(1.7, "feet"),
  26778. name: "Eye",
  26779. image: {
  26780. source: "./media/characters/koros/eye.svg"
  26781. }
  26782. },
  26783. headFront: {
  26784. height: math.unit(11.69, "feet"),
  26785. name: "Head (Front)",
  26786. image: {
  26787. source: "./media/characters/koros/head-front.svg"
  26788. }
  26789. },
  26790. headSide: {
  26791. height: math.unit(14, "feet"),
  26792. name: "Head (Side)",
  26793. image: {
  26794. source: "./media/characters/koros/head-side.svg"
  26795. }
  26796. },
  26797. leg: {
  26798. height: math.unit(17, "feet"),
  26799. name: "Leg",
  26800. image: {
  26801. source: "./media/characters/koros/leg.svg"
  26802. }
  26803. },
  26804. mawSide: {
  26805. height: math.unit(12.8, "feet"),
  26806. name: "Maw (Side)",
  26807. image: {
  26808. source: "./media/characters/koros/maw-side.svg"
  26809. }
  26810. },
  26811. mawSpitting: {
  26812. height: math.unit(17, "feet"),
  26813. name: "Maw (Spitting)",
  26814. image: {
  26815. source: "./media/characters/koros/maw-spitting.svg"
  26816. }
  26817. },
  26818. slit: {
  26819. height: math.unit(2.8, "feet"),
  26820. name: "Slit",
  26821. image: {
  26822. source: "./media/characters/koros/slit.svg"
  26823. }
  26824. },
  26825. stomach: {
  26826. height: math.unit(6.8, "feet"),
  26827. preyCapacity: math.unit(20, "people"),
  26828. name: "Stomach",
  26829. image: {
  26830. source: "./media/characters/koros/stomach.svg"
  26831. }
  26832. },
  26833. wingspanBottom: {
  26834. height: math.unit(114, "feet"),
  26835. name: "Wingspan (Bottom)",
  26836. image: {
  26837. source: "./media/characters/koros/wingspan-bottom.svg"
  26838. }
  26839. },
  26840. wingspanTop: {
  26841. height: math.unit(104, "feet"),
  26842. name: "Wingspan (Top)",
  26843. image: {
  26844. source: "./media/characters/koros/wingspan-top.svg"
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Normal",
  26851. height: math.unit(31 + 8 / 12, "feet"),
  26852. default: true
  26853. },
  26854. ]
  26855. ))
  26856. characterMakers.push(() => makeCharacter(
  26857. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26858. {
  26859. front: {
  26860. height: math.unit(18 + 5 / 12, "feet"),
  26861. weight: math.unit(3750, "kg"),
  26862. name: "Front",
  26863. image: {
  26864. source: "./media/characters/vexx/front.svg",
  26865. extra: 426 / 396,
  26866. bottom: 31.5 / 458
  26867. }
  26868. },
  26869. maw: {
  26870. height: math.unit(6, "feet"),
  26871. name: "Maw",
  26872. image: {
  26873. source: "./media/characters/vexx/maw.svg"
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Normal",
  26880. height: math.unit(18 + 5 / 12, "feet"),
  26881. default: true
  26882. },
  26883. ]
  26884. ))
  26885. characterMakers.push(() => makeCharacter(
  26886. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26887. {
  26888. front: {
  26889. height: math.unit(17 + 6 / 12, "feet"),
  26890. weight: math.unit(150, "lb"),
  26891. name: "Front",
  26892. image: {
  26893. source: "./media/characters/baadra/front.svg",
  26894. extra: 1694/1553,
  26895. bottom: 179/1873
  26896. }
  26897. },
  26898. frontAlt: {
  26899. height: math.unit(17 + 6 / 12, "feet"),
  26900. weight: math.unit(150, "lb"),
  26901. name: "Front (Alt)",
  26902. image: {
  26903. source: "./media/characters/baadra/front-alt.svg",
  26904. extra: 3137 / 2890,
  26905. bottom: 168.4 / 3305
  26906. }
  26907. },
  26908. back: {
  26909. height: math.unit(17 + 6 / 12, "feet"),
  26910. weight: math.unit(150, "lb"),
  26911. name: "Back",
  26912. image: {
  26913. source: "./media/characters/baadra/back.svg",
  26914. extra: 3142 / 2890,
  26915. bottom: 220 / 3371
  26916. }
  26917. },
  26918. head: {
  26919. height: math.unit(5.45, "feet"),
  26920. name: "Head",
  26921. image: {
  26922. source: "./media/characters/baadra/head.svg"
  26923. }
  26924. },
  26925. headAngry: {
  26926. height: math.unit(4.95, "feet"),
  26927. name: "Head (Angry)",
  26928. image: {
  26929. source: "./media/characters/baadra/head-angry.svg"
  26930. }
  26931. },
  26932. headOpen: {
  26933. height: math.unit(6, "feet"),
  26934. name: "Head (Open)",
  26935. image: {
  26936. source: "./media/characters/baadra/head-open.svg"
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "Normal",
  26943. height: math.unit(17 + 6 / 12, "feet"),
  26944. default: true
  26945. },
  26946. ]
  26947. ))
  26948. characterMakers.push(() => makeCharacter(
  26949. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26950. {
  26951. front: {
  26952. height: math.unit(7 + 3 / 12, "feet"),
  26953. weight: math.unit(180, "lb"),
  26954. name: "Front",
  26955. image: {
  26956. source: "./media/characters/juri/front.svg",
  26957. extra: 1401 / 1237,
  26958. bottom: 18.5 / 1418
  26959. }
  26960. },
  26961. side: {
  26962. height: math.unit(7 + 3 / 12, "feet"),
  26963. weight: math.unit(180, "lb"),
  26964. name: "Side",
  26965. image: {
  26966. source: "./media/characters/juri/side.svg",
  26967. extra: 1424 / 1242,
  26968. bottom: 18.5 / 1447
  26969. }
  26970. },
  26971. sitting: {
  26972. height: math.unit(6, "feet"),
  26973. weight: math.unit(180, "lb"),
  26974. name: "Sitting",
  26975. image: {
  26976. source: "./media/characters/juri/sitting.svg",
  26977. extra: 1270 / 1143,
  26978. bottom: 100 / 1343
  26979. }
  26980. },
  26981. back: {
  26982. height: math.unit(7 + 3 / 12, "feet"),
  26983. weight: math.unit(180, "lb"),
  26984. name: "Back",
  26985. image: {
  26986. source: "./media/characters/juri/back.svg",
  26987. extra: 1377 / 1240,
  26988. bottom: 23.7 / 1405
  26989. }
  26990. },
  26991. maw: {
  26992. height: math.unit(2.8, "feet"),
  26993. name: "Maw",
  26994. image: {
  26995. source: "./media/characters/juri/maw.svg"
  26996. }
  26997. },
  26998. stomach: {
  26999. height: math.unit(0.89, "feet"),
  27000. preyCapacity: math.unit(4, "liters"),
  27001. name: "Stomach",
  27002. image: {
  27003. source: "./media/characters/juri/stomach.svg"
  27004. }
  27005. },
  27006. },
  27007. [
  27008. {
  27009. name: "Normal",
  27010. height: math.unit(7 + 3 / 12, "feet"),
  27011. default: true
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27017. {
  27018. fox: {
  27019. height: math.unit(5 + 6 / 12, "feet"),
  27020. weight: math.unit(140, "lb"),
  27021. name: "Fox",
  27022. image: {
  27023. source: "./media/characters/maxene-sita/fox.svg",
  27024. extra: 146 / 138,
  27025. bottom: 2.1 / 148.19
  27026. }
  27027. },
  27028. foxLaying: {
  27029. height: math.unit(1.70, "feet"),
  27030. weight: math.unit(140, "lb"),
  27031. name: "Fox (Laying)",
  27032. image: {
  27033. source: "./media/characters/maxene-sita/fox-laying.svg",
  27034. extra: 910 / 572,
  27035. bottom: 71 / 981
  27036. }
  27037. },
  27038. kitsune: {
  27039. height: math.unit(10, "feet"),
  27040. weight: math.unit(800, "lb"),
  27041. name: "Kitsune",
  27042. image: {
  27043. source: "./media/characters/maxene-sita/kitsune.svg",
  27044. extra: 185 / 176,
  27045. bottom: 4.7 / 189.9
  27046. }
  27047. },
  27048. hellhound: {
  27049. height: math.unit(10, "feet"),
  27050. weight: math.unit(700, "lb"),
  27051. name: "Hellhound",
  27052. image: {
  27053. source: "./media/characters/maxene-sita/hellhound.svg",
  27054. extra: 1600 / 1545,
  27055. bottom: 81 / 1681
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Normal",
  27062. height: math.unit(5 + 6 / 12, "feet"),
  27063. default: true
  27064. },
  27065. ]
  27066. ))
  27067. characterMakers.push(() => makeCharacter(
  27068. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27069. {
  27070. front: {
  27071. height: math.unit(3 + 4 / 12, "feet"),
  27072. weight: math.unit(70, "lb"),
  27073. name: "Front",
  27074. image: {
  27075. source: "./media/characters/maia/front.svg",
  27076. extra: 227 / 219.5,
  27077. bottom: 40 / 267
  27078. }
  27079. },
  27080. back: {
  27081. height: math.unit(3 + 4 / 12, "feet"),
  27082. weight: math.unit(70, "lb"),
  27083. name: "Back",
  27084. image: {
  27085. source: "./media/characters/maia/back.svg",
  27086. extra: 237 / 225
  27087. }
  27088. },
  27089. },
  27090. [
  27091. {
  27092. name: "Normal",
  27093. height: math.unit(3 + 4 / 12, "feet"),
  27094. default: true
  27095. },
  27096. ]
  27097. ))
  27098. characterMakers.push(() => makeCharacter(
  27099. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27100. {
  27101. front: {
  27102. height: math.unit(5 + 10 / 12, "feet"),
  27103. weight: math.unit(197, "lb"),
  27104. name: "Front",
  27105. image: {
  27106. source: "./media/characters/jabaro/front.svg",
  27107. extra: 225 / 216,
  27108. bottom: 5.06 / 230
  27109. }
  27110. },
  27111. back: {
  27112. height: math.unit(5 + 10 / 12, "feet"),
  27113. weight: math.unit(197, "lb"),
  27114. name: "Back",
  27115. image: {
  27116. source: "./media/characters/jabaro/back.svg",
  27117. extra: 225 / 219,
  27118. bottom: 1.9 / 227
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(5 + 10 / 12, "feet"),
  27126. default: true
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(5 + 8 / 12, "feet"),
  27135. weight: math.unit(139, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/risa/front.svg",
  27139. extra: 270 / 260,
  27140. bottom: 11.2 / 282
  27141. }
  27142. },
  27143. back: {
  27144. height: math.unit(5 + 8 / 12, "feet"),
  27145. weight: math.unit(139, "lb"),
  27146. name: "Back",
  27147. image: {
  27148. source: "./media/characters/risa/back.svg",
  27149. extra: 264 / 255,
  27150. bottom: 4 / 268
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Normal",
  27157. height: math.unit(5 + 8 / 12, "feet"),
  27158. default: true
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27164. {
  27165. front: {
  27166. height: math.unit(2 + 11 / 12, "feet"),
  27167. weight: math.unit(30, "lb"),
  27168. name: "Front",
  27169. image: {
  27170. source: "./media/characters/weatley/front.svg",
  27171. bottom: 10.7 / 414,
  27172. extra: 403.5 / 362
  27173. }
  27174. },
  27175. back: {
  27176. height: math.unit(2 + 11 / 12, "feet"),
  27177. weight: math.unit(30, "lb"),
  27178. name: "Back",
  27179. image: {
  27180. source: "./media/characters/weatley/back.svg",
  27181. bottom: 10.7 / 414,
  27182. extra: 403.5 / 362
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(2 + 11 / 12, "feet"),
  27190. default: true
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(5 + 2 / 12, "feet"),
  27199. weight: math.unit(50, "kg"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/mercury-crescent/front.svg",
  27203. extra: 1088 / 1033,
  27204. bottom: 18.9 / 1109
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(5 + 2 / 12, "feet"),
  27212. default: true
  27213. },
  27214. ]
  27215. ))
  27216. characterMakers.push(() => makeCharacter(
  27217. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27218. {
  27219. front: {
  27220. height: math.unit(2, "feet"),
  27221. weight: math.unit(15, "kg"),
  27222. name: "Front",
  27223. image: {
  27224. source: "./media/characters/diamond-jones/front.svg",
  27225. extra: 727/723,
  27226. bottom: 46/773
  27227. }
  27228. },
  27229. },
  27230. [
  27231. {
  27232. name: "Normal",
  27233. height: math.unit(2, "feet"),
  27234. default: true
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(3, "feet"),
  27243. weight: math.unit(30, "kg"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/sweet-bit/front.svg",
  27247. extra: 675 / 567,
  27248. bottom: 27.7 / 703
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(3, "feet"),
  27256. default: true
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27262. {
  27263. side: {
  27264. height: math.unit(9.178, "feet"),
  27265. weight: math.unit(500, "lb"),
  27266. name: "Side",
  27267. image: {
  27268. source: "./media/characters/umbrazen/side.svg",
  27269. extra: 1730 / 1473,
  27270. bottom: 34.6 / 1765
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(9.178, "feet"),
  27278. default: true
  27279. },
  27280. ]
  27281. ))
  27282. characterMakers.push(() => makeCharacter(
  27283. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27284. {
  27285. front: {
  27286. height: math.unit(10, "feet"),
  27287. weight: math.unit(750, "lb"),
  27288. name: "Front",
  27289. image: {
  27290. source: "./media/characters/arlist/front.svg",
  27291. extra: 961 / 778,
  27292. bottom: 6.2 / 986
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(10, "feet"),
  27300. default: true
  27301. },
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(5 + 1 / 12, "feet"),
  27309. weight: math.unit(110, "lb"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/aradel/front.svg",
  27313. extra: 324 / 303,
  27314. bottom: 3.6 / 329.4
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Normal",
  27321. height: math.unit(5 + 1 / 12, "feet"),
  27322. default: true
  27323. },
  27324. ]
  27325. ))
  27326. characterMakers.push(() => makeCharacter(
  27327. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27328. {
  27329. dressed: {
  27330. height: math.unit(3 + 8 / 12, "feet"),
  27331. weight: math.unit(50, "lb"),
  27332. name: "Dressed",
  27333. image: {
  27334. source: "./media/characters/serryn/dressed.svg",
  27335. extra: 1792 / 1656,
  27336. bottom: 43.5 / 1840
  27337. }
  27338. },
  27339. nude: {
  27340. height: math.unit(3 + 8 / 12, "feet"),
  27341. weight: math.unit(50, "lb"),
  27342. name: "Nude",
  27343. image: {
  27344. source: "./media/characters/serryn/nude.svg",
  27345. extra: 1792 / 1656,
  27346. bottom: 43.5 / 1840
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Normal",
  27353. height: math.unit(3 + 8 / 12, "feet"),
  27354. default: true
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(7 + 10 / 12, "feet"),
  27363. weight: math.unit(255, "lb"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/xavier-thyme/front.svg",
  27367. extra: 3733 / 3642,
  27368. bottom: 131 / 3869
  27369. }
  27370. },
  27371. frontRaven: {
  27372. height: math.unit(7 + 10 / 12, "feet"),
  27373. weight: math.unit(255, "lb"),
  27374. name: "Front (Raven)",
  27375. image: {
  27376. source: "./media/characters/xavier-thyme/front-raven.svg",
  27377. extra: 4385 / 3642,
  27378. bottom: 131 / 4517
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "Normal",
  27385. height: math.unit(7 + 10 / 12, "feet"),
  27386. default: true
  27387. },
  27388. ]
  27389. ))
  27390. characterMakers.push(() => makeCharacter(
  27391. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27392. {
  27393. front: {
  27394. height: math.unit(1.6, "m"),
  27395. weight: math.unit(50, "kg"),
  27396. name: "Front",
  27397. image: {
  27398. source: "./media/characters/kiki/front.svg",
  27399. extra: 4682 / 3610,
  27400. bottom: 115 / 4777
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(1.6, "meters"),
  27408. default: true
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27414. {
  27415. front: {
  27416. height: math.unit(50, "m"),
  27417. weight: math.unit(500, "tonnes"),
  27418. name: "Front",
  27419. image: {
  27420. source: "./media/characters/ryoko/front.svg",
  27421. extra: 4632 / 3926,
  27422. bottom: 193 / 4823
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(50, "meters"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(30, "m"),
  27439. weight: math.unit(22, "tonnes"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/elio/front.svg",
  27443. extra: 4582 / 3720,
  27444. bottom: 236 / 4828
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Normal",
  27451. height: math.unit(30, "meters"),
  27452. default: true
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(6 + 3 / 12, "feet"),
  27461. weight: math.unit(120, "lb"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/azura/front.svg",
  27465. extra: 1149 / 1135,
  27466. bottom: 45 / 1194
  27467. }
  27468. },
  27469. frontClothed: {
  27470. height: math.unit(6 + 3 / 12, "feet"),
  27471. weight: math.unit(120, "lb"),
  27472. name: "Front (Clothed)",
  27473. image: {
  27474. source: "./media/characters/azura/front-clothed.svg",
  27475. extra: 1149 / 1135,
  27476. bottom: 45 / 1194
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(6 + 3 / 12, "feet"),
  27484. default: true
  27485. },
  27486. {
  27487. name: "Macro",
  27488. height: math.unit(20 + 6 / 12, "feet")
  27489. },
  27490. {
  27491. name: "Megamacro",
  27492. height: math.unit(12, "miles")
  27493. },
  27494. {
  27495. name: "Gigamacro",
  27496. height: math.unit(10000, "miles")
  27497. },
  27498. {
  27499. name: "Teramacro",
  27500. height: math.unit(900000, "miles")
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27506. {
  27507. front: {
  27508. height: math.unit(12, "feet"),
  27509. weight: math.unit(1, "ton"),
  27510. capacity: math.unit(660000, "gallons"),
  27511. name: "Front",
  27512. image: {
  27513. source: "./media/characters/zeus/front.svg",
  27514. extra: 5005 / 4717,
  27515. bottom: 363 / 5388
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Normal",
  27522. height: math.unit(12, "feet")
  27523. },
  27524. {
  27525. name: "Preferred Size",
  27526. height: math.unit(0.5, "miles"),
  27527. default: true
  27528. },
  27529. {
  27530. name: "Giga Horse",
  27531. height: math.unit(300, "miles")
  27532. },
  27533. {
  27534. name: "Riding Planets",
  27535. height: math.unit(30, "megameters")
  27536. },
  27537. {
  27538. name: "Cosmic Giant",
  27539. height: math.unit(3, "zettameters")
  27540. },
  27541. {
  27542. name: "Breeding God",
  27543. height: math.unit(9.92e22, "yottameters")
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27549. {
  27550. side: {
  27551. height: math.unit(9, "feet"),
  27552. weight: math.unit(1500, "kg"),
  27553. name: "Side",
  27554. image: {
  27555. source: "./media/characters/fang/side.svg",
  27556. extra: 924 / 866,
  27557. bottom: 47.5 / 972.3
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(9, "feet"),
  27565. default: true
  27566. },
  27567. {
  27568. name: "Macro",
  27569. height: math.unit(75 + 6 / 12, "feet")
  27570. },
  27571. {
  27572. name: "Teramacro",
  27573. height: math.unit(50000, "miles")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(10, "feet"),
  27582. weight: math.unit(2, "tons"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/rekhit/front.svg",
  27586. extra: 2796 / 2590,
  27587. bottom: 225 / 3022
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(10, "feet"),
  27595. default: true
  27596. },
  27597. {
  27598. name: "Macro",
  27599. height: math.unit(500, "feet")
  27600. },
  27601. ]
  27602. ))
  27603. characterMakers.push(() => makeCharacter(
  27604. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27605. {
  27606. front: {
  27607. height: math.unit(7 + 6.451 / 12, "feet"),
  27608. weight: math.unit(310, "lb"),
  27609. name: "Front",
  27610. image: {
  27611. source: "./media/characters/dahlia-verrick/front.svg",
  27612. extra: 1488 / 1365,
  27613. bottom: 6.2 / 1495
  27614. }
  27615. },
  27616. back: {
  27617. height: math.unit(7 + 6.451 / 12, "feet"),
  27618. weight: math.unit(310, "lb"),
  27619. name: "Back",
  27620. image: {
  27621. source: "./media/characters/dahlia-verrick/back.svg",
  27622. extra: 1472 / 1351,
  27623. bottom: 5.28 / 1477
  27624. }
  27625. },
  27626. frontBusiness: {
  27627. height: math.unit(7 + 6.451 / 12, "feet"),
  27628. weight: math.unit(200, "lb"),
  27629. name: "Front (Business)",
  27630. image: {
  27631. source: "./media/characters/dahlia-verrick/front-business.svg",
  27632. extra: 1478 / 1381,
  27633. bottom: 5.5 / 1484
  27634. }
  27635. },
  27636. frontCasual: {
  27637. height: math.unit(7 + 6.451 / 12, "feet"),
  27638. weight: math.unit(200, "lb"),
  27639. name: "Front (Casual)",
  27640. image: {
  27641. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27642. extra: 1478 / 1381,
  27643. bottom: 5.5 / 1484
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Travel-Sized",
  27650. height: math.unit(7.45, "inches")
  27651. },
  27652. {
  27653. name: "Normal",
  27654. height: math.unit(7 + 6.451 / 12, "feet"),
  27655. default: true
  27656. },
  27657. {
  27658. name: "Hitting the Town",
  27659. height: math.unit(37 + 8 / 12, "feet")
  27660. },
  27661. {
  27662. name: "Stomp in the Suburbs",
  27663. height: math.unit(964 + 9.728 / 12, "feet")
  27664. },
  27665. {
  27666. name: "Sit on the City",
  27667. height: math.unit(61747 + 10.592 / 12, "feet")
  27668. },
  27669. {
  27670. name: "Glomp the Globe",
  27671. height: math.unit(252919327 + 4.832 / 12, "feet")
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27677. {
  27678. front: {
  27679. height: math.unit(6 + 4 / 12, "feet"),
  27680. weight: math.unit(320, "lb"),
  27681. name: "Front",
  27682. image: {
  27683. source: "./media/characters/balina-mahigan/front.svg",
  27684. extra: 447 / 428,
  27685. bottom: 18 / 466
  27686. }
  27687. },
  27688. back: {
  27689. height: math.unit(6 + 4 / 12, "feet"),
  27690. weight: math.unit(320, "lb"),
  27691. name: "Back",
  27692. image: {
  27693. source: "./media/characters/balina-mahigan/back.svg",
  27694. extra: 445 / 428,
  27695. bottom: 4.07 / 448
  27696. }
  27697. },
  27698. arm: {
  27699. height: math.unit(1.88, "feet"),
  27700. name: "Arm",
  27701. image: {
  27702. source: "./media/characters/balina-mahigan/arm.svg"
  27703. }
  27704. },
  27705. backPort: {
  27706. height: math.unit(0.685, "feet"),
  27707. name: "Back Port",
  27708. image: {
  27709. source: "./media/characters/balina-mahigan/back-port.svg"
  27710. }
  27711. },
  27712. hoofpaw: {
  27713. height: math.unit(1.41, "feet"),
  27714. name: "Hoofpaw",
  27715. image: {
  27716. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27717. }
  27718. },
  27719. leftHandBack: {
  27720. height: math.unit(0.938, "feet"),
  27721. name: "Left Hand (Back)",
  27722. image: {
  27723. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27724. }
  27725. },
  27726. leftHandFront: {
  27727. height: math.unit(0.938, "feet"),
  27728. name: "Left Hand (Front)",
  27729. image: {
  27730. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27731. }
  27732. },
  27733. rightHandBack: {
  27734. height: math.unit(0.95, "feet"),
  27735. name: "Right Hand (Back)",
  27736. image: {
  27737. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27738. }
  27739. },
  27740. rightHandFront: {
  27741. height: math.unit(0.95, "feet"),
  27742. name: "Right Hand (Front)",
  27743. image: {
  27744. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(6 + 4 / 12, "feet"),
  27752. default: true
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(6, "feet"),
  27761. weight: math.unit(320, "lb"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/balina-mejeri/front.svg",
  27765. extra: 517 / 488,
  27766. bottom: 44.2 / 561
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Normal",
  27773. height: math.unit(6 + 4 / 12, "feet")
  27774. },
  27775. {
  27776. name: "Business",
  27777. height: math.unit(155, "feet"),
  27778. default: true
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27784. {
  27785. kneeling: {
  27786. height: math.unit(6 + 4 / 12, "feet"),
  27787. weight: math.unit(300 * 20, "lb"),
  27788. name: "Kneeling",
  27789. image: {
  27790. source: "./media/characters/balbarian/kneeling.svg",
  27791. extra: 922 / 862,
  27792. bottom: 42.4 / 965
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(6 + 4 / 12, "feet")
  27800. },
  27801. {
  27802. name: "Treasured",
  27803. height: math.unit(18 + 9 / 12, "feet"),
  27804. default: true
  27805. },
  27806. {
  27807. name: "Macro",
  27808. height: math.unit(900, "feet")
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27814. {
  27815. front: {
  27816. height: math.unit(6 + 4 / 12, "feet"),
  27817. weight: math.unit(325, "lb"),
  27818. name: "Front",
  27819. image: {
  27820. source: "./media/characters/balina-amarini/front.svg",
  27821. extra: 415 / 403,
  27822. bottom: 19 / 433.4
  27823. }
  27824. },
  27825. back: {
  27826. height: math.unit(6 + 4 / 12, "feet"),
  27827. weight: math.unit(325, "lb"),
  27828. name: "Back",
  27829. image: {
  27830. source: "./media/characters/balina-amarini/back.svg",
  27831. extra: 415 / 403,
  27832. bottom: 13.5 / 432
  27833. }
  27834. },
  27835. overdrive: {
  27836. height: math.unit(6 + 4 / 12, "feet"),
  27837. weight: math.unit(400, "lb"),
  27838. name: "Overdrive",
  27839. image: {
  27840. source: "./media/characters/balina-amarini/overdrive.svg",
  27841. extra: 269 / 259,
  27842. bottom: 12 / 282
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Boom",
  27849. height: math.unit(9 + 10 / 12, "feet"),
  27850. default: true
  27851. },
  27852. {
  27853. name: "Macro",
  27854. height: math.unit(280, "feet")
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27860. {
  27861. goddess: {
  27862. height: math.unit(600, "feet"),
  27863. weight: math.unit(2000000, "tons"),
  27864. name: "Goddess",
  27865. image: {
  27866. source: "./media/characters/lady-kubwa/goddess.svg",
  27867. extra: 1240.5 / 1223,
  27868. bottom: 22 / 1263
  27869. }
  27870. },
  27871. goddesser: {
  27872. height: math.unit(900, "feet"),
  27873. weight: math.unit(20000000, "lb"),
  27874. name: "Goddess-er",
  27875. image: {
  27876. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27877. extra: 899 / 888,
  27878. bottom: 12.6 / 912
  27879. }
  27880. },
  27881. },
  27882. [
  27883. {
  27884. name: "Macro",
  27885. height: math.unit(600, "feet"),
  27886. default: true
  27887. },
  27888. {
  27889. name: "Megamacro",
  27890. height: math.unit(250, "miles")
  27891. },
  27892. ]
  27893. ))
  27894. characterMakers.push(() => makeCharacter(
  27895. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27896. {
  27897. front: {
  27898. height: math.unit(7 + 7 / 12, "feet"),
  27899. weight: math.unit(250, "lb"),
  27900. name: "Front",
  27901. image: {
  27902. source: "./media/characters/tala-grovehorn/front.svg",
  27903. extra: 2636 / 2525,
  27904. bottom: 147 / 2781
  27905. }
  27906. },
  27907. back: {
  27908. height: math.unit(7 + 7 / 12, "feet"),
  27909. weight: math.unit(250, "lb"),
  27910. name: "Back",
  27911. image: {
  27912. source: "./media/characters/tala-grovehorn/back.svg",
  27913. extra: 2635 / 2539,
  27914. bottom: 100 / 2732.8
  27915. }
  27916. },
  27917. mouth: {
  27918. height: math.unit(1.15, "feet"),
  27919. name: "Mouth",
  27920. image: {
  27921. source: "./media/characters/tala-grovehorn/mouth.svg"
  27922. }
  27923. },
  27924. dick: {
  27925. height: math.unit(2.36, "feet"),
  27926. name: "Dick",
  27927. image: {
  27928. source: "./media/characters/tala-grovehorn/dick.svg"
  27929. }
  27930. },
  27931. slit: {
  27932. height: math.unit(0.61, "feet"),
  27933. name: "Slit",
  27934. image: {
  27935. source: "./media/characters/tala-grovehorn/slit.svg"
  27936. }
  27937. },
  27938. },
  27939. [
  27940. ]
  27941. ))
  27942. characterMakers.push(() => makeCharacter(
  27943. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27944. {
  27945. front: {
  27946. height: math.unit(7 + 7 / 12, "feet"),
  27947. weight: math.unit(225, "lb"),
  27948. name: "Front",
  27949. image: {
  27950. source: "./media/characters/epona/front.svg",
  27951. extra: 2445 / 2290,
  27952. bottom: 251 / 2696
  27953. }
  27954. },
  27955. back: {
  27956. height: math.unit(7 + 7 / 12, "feet"),
  27957. weight: math.unit(225, "lb"),
  27958. name: "Back",
  27959. image: {
  27960. source: "./media/characters/epona/back.svg",
  27961. extra: 2546 / 2408,
  27962. bottom: 44 / 2589
  27963. }
  27964. },
  27965. genitals: {
  27966. height: math.unit(1.5, "feet"),
  27967. name: "Genitals",
  27968. image: {
  27969. source: "./media/characters/epona/genitals.svg"
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Normal",
  27976. height: math.unit(7 + 7 / 12, "feet"),
  27977. default: true
  27978. },
  27979. ]
  27980. ))
  27981. characterMakers.push(() => makeCharacter(
  27982. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27983. {
  27984. front: {
  27985. height: math.unit(7, "feet"),
  27986. weight: math.unit(518, "lb"),
  27987. name: "Front",
  27988. image: {
  27989. source: "./media/characters/avia-bloodbourn/front.svg",
  27990. extra: 1466 / 1350,
  27991. bottom: 65 / 1527
  27992. }
  27993. },
  27994. },
  27995. [
  27996. ]
  27997. ))
  27998. characterMakers.push(() => makeCharacter(
  27999. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28000. {
  28001. front: {
  28002. height: math.unit(9.35, "feet"),
  28003. weight: math.unit(600, "lb"),
  28004. name: "Front",
  28005. image: {
  28006. source: "./media/characters/amera/front.svg",
  28007. extra: 891 / 818,
  28008. bottom: 30 / 922.7
  28009. }
  28010. },
  28011. back: {
  28012. height: math.unit(9.35, "feet"),
  28013. weight: math.unit(600, "lb"),
  28014. name: "Back",
  28015. image: {
  28016. source: "./media/characters/amera/back.svg",
  28017. extra: 876 / 824,
  28018. bottom: 6.8 / 884
  28019. }
  28020. },
  28021. dick: {
  28022. height: math.unit(2.14, "feet"),
  28023. name: "Dick",
  28024. image: {
  28025. source: "./media/characters/amera/dick.svg"
  28026. }
  28027. },
  28028. },
  28029. [
  28030. {
  28031. name: "Normal",
  28032. height: math.unit(9.35, "feet"),
  28033. default: true
  28034. },
  28035. ]
  28036. ))
  28037. characterMakers.push(() => makeCharacter(
  28038. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28039. {
  28040. kneeling: {
  28041. height: math.unit(3 + 4 / 12, "feet"),
  28042. weight: math.unit(90, "lb"),
  28043. name: "Kneeling",
  28044. image: {
  28045. source: "./media/characters/rosewen/kneeling.svg",
  28046. extra: 1835 / 1571,
  28047. bottom: 27.7 / 1862
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(3 + 4 / 12, "feet"),
  28055. default: true
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28061. {
  28062. front: {
  28063. height: math.unit(5 + 10 / 12, "feet"),
  28064. weight: math.unit(200, "lb"),
  28065. name: "Front",
  28066. image: {
  28067. source: "./media/characters/sabah/front.svg",
  28068. extra: 849 / 763,
  28069. bottom: 33.9 / 881
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(5 + 10 / 12, "feet"),
  28077. default: true
  28078. },
  28079. ]
  28080. ))
  28081. characterMakers.push(() => makeCharacter(
  28082. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28083. {
  28084. front: {
  28085. height: math.unit(3 + 5 / 12, "feet"),
  28086. weight: math.unit(40, "kg"),
  28087. name: "Front",
  28088. image: {
  28089. source: "./media/characters/purple-flame/front.svg",
  28090. extra: 1577 / 1412,
  28091. bottom: 97 / 1694
  28092. }
  28093. },
  28094. frontDressed: {
  28095. height: math.unit(3 + 5 / 12, "feet"),
  28096. weight: math.unit(40, "kg"),
  28097. name: "Front (Dressed)",
  28098. image: {
  28099. source: "./media/characters/purple-flame/front-dressed.svg",
  28100. extra: 1577 / 1412,
  28101. bottom: 97 / 1694
  28102. }
  28103. },
  28104. headphones: {
  28105. height: math.unit(0.85, "feet"),
  28106. name: "Headphones",
  28107. image: {
  28108. source: "./media/characters/purple-flame/headphones.svg"
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Really Small",
  28115. height: math.unit(5, "cm")
  28116. },
  28117. {
  28118. name: "Micro",
  28119. height: math.unit(1 + 5 / 12, "feet")
  28120. },
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(3 + 5 / 12, "feet"),
  28124. default: true
  28125. },
  28126. {
  28127. name: "Minimacro",
  28128. height: math.unit(125, "feet")
  28129. },
  28130. {
  28131. name: "Macro",
  28132. height: math.unit(0.5, "miles")
  28133. },
  28134. {
  28135. name: "Megamacro",
  28136. height: math.unit(50, "miles")
  28137. },
  28138. {
  28139. name: "Gigantic",
  28140. height: math.unit(750, "miles")
  28141. },
  28142. {
  28143. name: "Planetary",
  28144. height: math.unit(15000, "miles")
  28145. },
  28146. ]
  28147. ))
  28148. characterMakers.push(() => makeCharacter(
  28149. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28150. {
  28151. front: {
  28152. height: math.unit(14, "feet"),
  28153. weight: math.unit(959, "lb"),
  28154. name: "Front",
  28155. image: {
  28156. source: "./media/characters/arsenal/front.svg",
  28157. extra: 2357 / 2157,
  28158. bottom: 93 / 2458
  28159. }
  28160. },
  28161. },
  28162. [
  28163. {
  28164. name: "Normal",
  28165. height: math.unit(14, "feet"),
  28166. default: true
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28172. {
  28173. front: {
  28174. height: math.unit(6, "feet"),
  28175. weight: math.unit(150, "lb"),
  28176. name: "Front",
  28177. image: {
  28178. source: "./media/characters/adira/front.svg",
  28179. extra: 1078 / 1029,
  28180. bottom: 87 / 1166
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Micro",
  28187. height: math.unit(4, "inches"),
  28188. default: true
  28189. },
  28190. {
  28191. name: "Macro",
  28192. height: math.unit(50, "feet")
  28193. },
  28194. ]
  28195. ))
  28196. characterMakers.push(() => makeCharacter(
  28197. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28198. {
  28199. front: {
  28200. height: math.unit(16, "feet"),
  28201. weight: math.unit(1000, "lb"),
  28202. name: "Front",
  28203. image: {
  28204. source: "./media/characters/grim/front.svg",
  28205. extra: 622 / 614,
  28206. bottom: 18.1 / 642
  28207. }
  28208. },
  28209. back: {
  28210. height: math.unit(16, "feet"),
  28211. weight: math.unit(1000, "lb"),
  28212. name: "Back",
  28213. image: {
  28214. source: "./media/characters/grim/back.svg",
  28215. extra: 610.6 / 602,
  28216. bottom: 40.8 / 652
  28217. }
  28218. },
  28219. hunched: {
  28220. height: math.unit(9.75, "feet"),
  28221. weight: math.unit(1000, "lb"),
  28222. name: "Hunched",
  28223. image: {
  28224. source: "./media/characters/grim/hunched.svg",
  28225. extra: 304 / 297,
  28226. bottom: 35.4 / 394
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(16, "feet"),
  28234. default: true
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(2.3, "meters"),
  28243. weight: math.unit(300, "lb"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/sinja/front-sfw.svg",
  28247. extra: 1393 / 1294,
  28248. bottom: 70 / 1463
  28249. }
  28250. },
  28251. frontNsfw: {
  28252. height: math.unit(2.3, "meters"),
  28253. weight: math.unit(300, "lb"),
  28254. name: "Front (NSFW)",
  28255. image: {
  28256. source: "./media/characters/sinja/front-nsfw.svg",
  28257. extra: 1393 / 1294,
  28258. bottom: 70 / 1463
  28259. }
  28260. },
  28261. back: {
  28262. height: math.unit(2.3, "meters"),
  28263. weight: math.unit(300, "lb"),
  28264. name: "Back",
  28265. image: {
  28266. source: "./media/characters/sinja/back.svg",
  28267. extra: 1393 / 1294,
  28268. bottom: 70 / 1463
  28269. }
  28270. },
  28271. head: {
  28272. height: math.unit(1.771, "feet"),
  28273. name: "Head",
  28274. image: {
  28275. source: "./media/characters/sinja/head.svg"
  28276. }
  28277. },
  28278. slit: {
  28279. height: math.unit(0.8, "feet"),
  28280. name: "Slit",
  28281. image: {
  28282. source: "./media/characters/sinja/slit.svg"
  28283. }
  28284. },
  28285. },
  28286. [
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(2.3, "meters")
  28290. },
  28291. {
  28292. name: "Macro",
  28293. height: math.unit(91, "meters"),
  28294. default: true
  28295. },
  28296. {
  28297. name: "Megamacro",
  28298. height: math.unit(91440, "meters")
  28299. },
  28300. {
  28301. name: "Gigamacro",
  28302. height: math.unit(60960000, "meters")
  28303. },
  28304. {
  28305. name: "Teramacro",
  28306. height: math.unit(9144000000, "meters")
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28312. {
  28313. front: {
  28314. height: math.unit(1.7, "meters"),
  28315. weight: math.unit(130, "lb"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/kyu/front.svg",
  28319. extra: 415 / 395,
  28320. bottom: 5 / 420
  28321. }
  28322. },
  28323. head: {
  28324. height: math.unit(1.75, "feet"),
  28325. name: "Head",
  28326. image: {
  28327. source: "./media/characters/kyu/head.svg"
  28328. }
  28329. },
  28330. foot: {
  28331. height: math.unit(0.81, "feet"),
  28332. name: "Foot",
  28333. image: {
  28334. source: "./media/characters/kyu/foot.svg"
  28335. }
  28336. },
  28337. },
  28338. [
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(1.7, "meters")
  28342. },
  28343. {
  28344. name: "Macro",
  28345. height: math.unit(131, "feet"),
  28346. default: true
  28347. },
  28348. {
  28349. name: "Megamacro",
  28350. height: math.unit(91440, "meters")
  28351. },
  28352. {
  28353. name: "Gigamacro",
  28354. height: math.unit(60960000, "meters")
  28355. },
  28356. {
  28357. name: "Teramacro",
  28358. height: math.unit(9144000000, "meters")
  28359. },
  28360. ]
  28361. ))
  28362. characterMakers.push(() => makeCharacter(
  28363. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28364. {
  28365. front: {
  28366. height: math.unit(7 + 1 / 12, "feet"),
  28367. weight: math.unit(250, "lb"),
  28368. name: "Front",
  28369. image: {
  28370. source: "./media/characters/joey/front.svg",
  28371. extra: 1791 / 1537,
  28372. bottom: 28 / 1816
  28373. }
  28374. },
  28375. },
  28376. [
  28377. {
  28378. name: "Micro",
  28379. height: math.unit(3, "inches")
  28380. },
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(7 + 1 / 12, "feet"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(165, "cm"),
  28393. weight: math.unit(140, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/sam-evans/front.svg",
  28397. extra: 3417 / 3230,
  28398. bottom: 41.3 / 3417
  28399. }
  28400. },
  28401. frontSixTails: {
  28402. height: math.unit(165, "cm"),
  28403. weight: math.unit(140, "lb"),
  28404. name: "Front-six-tails",
  28405. image: {
  28406. source: "./media/characters/sam-evans/front-six-tails.svg",
  28407. extra: 3417 / 3230,
  28408. bottom: 41.3 / 3417
  28409. }
  28410. },
  28411. back: {
  28412. height: math.unit(165, "cm"),
  28413. weight: math.unit(140, "lb"),
  28414. name: "Back",
  28415. image: {
  28416. source: "./media/characters/sam-evans/back.svg",
  28417. extra: 3227 / 3032,
  28418. bottom: 6.8 / 3234
  28419. }
  28420. },
  28421. face: {
  28422. height: math.unit(0.68, "feet"),
  28423. name: "Face",
  28424. image: {
  28425. source: "./media/characters/sam-evans/face.svg"
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(165, "cm"),
  28433. default: true
  28434. },
  28435. {
  28436. name: "Macro",
  28437. height: math.unit(100, "meters")
  28438. },
  28439. {
  28440. name: "Macro+",
  28441. height: math.unit(800, "meters")
  28442. },
  28443. {
  28444. name: "Macro++",
  28445. height: math.unit(3, "km")
  28446. },
  28447. {
  28448. name: "Macro+++",
  28449. height: math.unit(30, "km")
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(10, "feet"),
  28458. weight: math.unit(750, "lb"),
  28459. name: "Front",
  28460. image: {
  28461. source: "./media/characters/juliet-a/front.svg",
  28462. extra: 1766 / 1720,
  28463. bottom: 43 / 1809
  28464. }
  28465. },
  28466. back: {
  28467. height: math.unit(10, "feet"),
  28468. weight: math.unit(750, "lb"),
  28469. name: "Back",
  28470. image: {
  28471. source: "./media/characters/juliet-a/back.svg",
  28472. extra: 1781 / 1734,
  28473. bottom: 35 / 1810,
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Normal",
  28480. height: math.unit(10, "feet"),
  28481. default: true
  28482. },
  28483. {
  28484. name: "Dragon Form",
  28485. height: math.unit(250, "feet")
  28486. },
  28487. {
  28488. name: "Macro",
  28489. height: math.unit(1000, "feet")
  28490. },
  28491. {
  28492. name: "Megamacro",
  28493. height: math.unit(10000, "feet")
  28494. }
  28495. ]
  28496. ))
  28497. characterMakers.push(() => makeCharacter(
  28498. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28499. {
  28500. regular: {
  28501. height: math.unit(7 + 3 / 12, "feet"),
  28502. weight: math.unit(260, "lb"),
  28503. name: "Regular",
  28504. image: {
  28505. source: "./media/characters/wild/regular.svg",
  28506. extra: 97.45 / 92,
  28507. bottom: 6.8 / 104.3
  28508. }
  28509. },
  28510. biggums: {
  28511. height: math.unit(8 + 6 / 12, "feet"),
  28512. weight: math.unit(425, "lb"),
  28513. name: "Biggums",
  28514. image: {
  28515. source: "./media/characters/wild/biggums.svg",
  28516. extra: 97.45 / 92,
  28517. bottom: 7.5 / 132.34
  28518. }
  28519. },
  28520. mawRegular: {
  28521. height: math.unit(1.24, "feet"),
  28522. name: "Maw (Regular)",
  28523. image: {
  28524. source: "./media/characters/wild/maw.svg"
  28525. }
  28526. },
  28527. mawBiggums: {
  28528. height: math.unit(1.47, "feet"),
  28529. name: "Maw (Biggums)",
  28530. image: {
  28531. source: "./media/characters/wild/maw.svg"
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(7 + 3 / 12, "feet"),
  28539. default: true
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28545. {
  28546. front: {
  28547. height: math.unit(2.5, "meters"),
  28548. weight: math.unit(200, "kg"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/vidar/front.svg",
  28552. extra: 2994 / 2795,
  28553. bottom: 56 / 3061
  28554. }
  28555. },
  28556. back: {
  28557. height: math.unit(2.5, "meters"),
  28558. weight: math.unit(200, "kg"),
  28559. name: "Back",
  28560. image: {
  28561. source: "./media/characters/vidar/back.svg",
  28562. extra: 3131 / 2928,
  28563. bottom: 13.5 / 3141.5
  28564. }
  28565. },
  28566. feral: {
  28567. height: math.unit(2.5, "meters"),
  28568. weight: math.unit(2000, "kg"),
  28569. name: "Feral",
  28570. image: {
  28571. source: "./media/characters/vidar/feral.svg",
  28572. extra: 2790 / 1765,
  28573. bottom: 6 / 2796
  28574. }
  28575. },
  28576. },
  28577. [
  28578. {
  28579. name: "Normal",
  28580. height: math.unit(2.5, "meters"),
  28581. default: true
  28582. },
  28583. {
  28584. name: "Macro",
  28585. height: math.unit(100, "meters")
  28586. },
  28587. ]
  28588. ))
  28589. characterMakers.push(() => makeCharacter(
  28590. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28591. {
  28592. front: {
  28593. height: math.unit(5 + 9 / 12, "feet"),
  28594. weight: math.unit(120, "lb"),
  28595. name: "Front",
  28596. image: {
  28597. source: "./media/characters/ash/front.svg",
  28598. extra: 2189 / 1961,
  28599. bottom: 5.2 / 2194
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(5 + 9 / 12, "feet"),
  28607. default: true
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(9, "feet"),
  28616. weight: math.unit(10000, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/gygabite/front.svg",
  28620. bottom: 31.7 / 537.8,
  28621. extra: 505 / 370
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(9, "feet"),
  28629. default: true
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(12, "feet"),
  28638. weight: math.unit(4000, "lb"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/p0tat0/front.svg",
  28642. extra: 1065 / 921,
  28643. bottom: 55.7 / 1121.25
  28644. }
  28645. },
  28646. },
  28647. [
  28648. {
  28649. name: "Normal",
  28650. height: math.unit(12, "feet"),
  28651. default: true
  28652. },
  28653. ]
  28654. ))
  28655. characterMakers.push(() => makeCharacter(
  28656. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28657. {
  28658. side: {
  28659. height: math.unit(6.5, "feet"),
  28660. weight: math.unit(800, "lb"),
  28661. name: "Side",
  28662. image: {
  28663. source: "./media/characters/dusk/side.svg",
  28664. extra: 615 / 373,
  28665. bottom: 53 / 664
  28666. }
  28667. },
  28668. sitting: {
  28669. height: math.unit(7, "feet"),
  28670. weight: math.unit(800, "lb"),
  28671. name: "Sitting",
  28672. image: {
  28673. source: "./media/characters/dusk/sitting.svg",
  28674. extra: 753 / 425,
  28675. bottom: 33 / 774
  28676. }
  28677. },
  28678. head: {
  28679. height: math.unit(6.1, "feet"),
  28680. name: "Head",
  28681. image: {
  28682. source: "./media/characters/dusk/head.svg"
  28683. }
  28684. },
  28685. },
  28686. [
  28687. {
  28688. name: "Normal",
  28689. height: math.unit(7, "feet"),
  28690. default: true
  28691. },
  28692. ]
  28693. ))
  28694. characterMakers.push(() => makeCharacter(
  28695. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28696. {
  28697. front: {
  28698. height: math.unit(15, "feet"),
  28699. weight: math.unit(7000, "lb"),
  28700. name: "Front",
  28701. image: {
  28702. source: "./media/characters/jay-direwolf/front.svg",
  28703. extra: 1810 / 1732,
  28704. bottom: 66 / 1892
  28705. }
  28706. },
  28707. },
  28708. [
  28709. {
  28710. name: "Normal",
  28711. height: math.unit(15, "feet"),
  28712. default: true
  28713. },
  28714. ]
  28715. ))
  28716. characterMakers.push(() => makeCharacter(
  28717. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28718. {
  28719. front: {
  28720. height: math.unit(4 + 9 / 12, "feet"),
  28721. weight: math.unit(130, "lb"),
  28722. name: "Front",
  28723. image: {
  28724. source: "./media/characters/anchovie/front.svg",
  28725. extra: 382 / 350,
  28726. bottom: 25 / 409
  28727. }
  28728. },
  28729. back: {
  28730. height: math.unit(4 + 9 / 12, "feet"),
  28731. weight: math.unit(130, "lb"),
  28732. name: "Back",
  28733. image: {
  28734. source: "./media/characters/anchovie/back.svg",
  28735. extra: 385 / 352,
  28736. bottom: 16.6 / 402
  28737. }
  28738. },
  28739. frontDressed: {
  28740. height: math.unit(4 + 9 / 12, "feet"),
  28741. weight: math.unit(130, "lb"),
  28742. name: "Front (Dressed)",
  28743. image: {
  28744. source: "./media/characters/anchovie/front-dressed.svg",
  28745. extra: 382 / 350,
  28746. bottom: 25 / 409
  28747. }
  28748. },
  28749. backDressed: {
  28750. height: math.unit(4 + 9 / 12, "feet"),
  28751. weight: math.unit(130, "lb"),
  28752. name: "Back (Dressed)",
  28753. image: {
  28754. source: "./media/characters/anchovie/back-dressed.svg",
  28755. extra: 385 / 352,
  28756. bottom: 16.6 / 402
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Micro",
  28763. height: math.unit(6.4, "inches")
  28764. },
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(4 + 9 / 12, "feet"),
  28768. default: true
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(2, "meters"),
  28777. weight: math.unit(180, "lb"),
  28778. name: "Front",
  28779. image: {
  28780. source: "./media/characters/acidrenamon/front.svg",
  28781. extra: 987 / 890,
  28782. bottom: 22.8 / 1009
  28783. }
  28784. },
  28785. back: {
  28786. height: math.unit(2, "meters"),
  28787. weight: math.unit(180, "lb"),
  28788. name: "Back",
  28789. image: {
  28790. source: "./media/characters/acidrenamon/back.svg",
  28791. extra: 983 / 891,
  28792. bottom: 8.4 / 992
  28793. }
  28794. },
  28795. head: {
  28796. height: math.unit(1.92, "feet"),
  28797. name: "Head",
  28798. image: {
  28799. source: "./media/characters/acidrenamon/head.svg"
  28800. }
  28801. },
  28802. rump: {
  28803. height: math.unit(1.72, "feet"),
  28804. name: "Rump",
  28805. image: {
  28806. source: "./media/characters/acidrenamon/rump.svg"
  28807. }
  28808. },
  28809. tail: {
  28810. height: math.unit(4.2, "feet"),
  28811. name: "Tail",
  28812. image: {
  28813. source: "./media/characters/acidrenamon/tail.svg"
  28814. }
  28815. },
  28816. },
  28817. [
  28818. {
  28819. name: "Normal",
  28820. height: math.unit(2, "meters"),
  28821. default: true
  28822. },
  28823. {
  28824. name: "Minimacro",
  28825. height: math.unit(7, "meters")
  28826. },
  28827. {
  28828. name: "Macro",
  28829. height: math.unit(200, "meters")
  28830. },
  28831. {
  28832. name: "Gigamacro",
  28833. height: math.unit(0.2, "earths")
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(152, "feet"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/kenzie-lee/front.svg",
  28845. extra: 1869/1774,
  28846. bottom: 128/1997
  28847. }
  28848. },
  28849. side: {
  28850. height: math.unit(86, "feet"),
  28851. name: "Side",
  28852. image: {
  28853. source: "./media/characters/kenzie-lee/side.svg",
  28854. extra: 930/815,
  28855. bottom: 177/1107
  28856. }
  28857. },
  28858. paw: {
  28859. height: math.unit(15, "feet"),
  28860. name: "Paw",
  28861. image: {
  28862. source: "./media/characters/kenzie-lee/paw.svg"
  28863. }
  28864. },
  28865. },
  28866. [
  28867. {
  28868. name: "Kenzie Flea",
  28869. height: math.unit(2, "mm"),
  28870. default: true
  28871. },
  28872. {
  28873. name: "Micro",
  28874. height: math.unit(2, "inches")
  28875. },
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(152, "feet")
  28879. },
  28880. {
  28881. name: "Megamacro",
  28882. height: math.unit(7, "miles")
  28883. },
  28884. {
  28885. name: "Gigamacro",
  28886. height: math.unit(8000, "miles")
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28892. {
  28893. front: {
  28894. height: math.unit(6, "feet"),
  28895. name: "Front",
  28896. image: {
  28897. source: "./media/characters/withers/front.svg",
  28898. extra: 1935/1760,
  28899. bottom: 72/2007
  28900. }
  28901. },
  28902. back: {
  28903. height: math.unit(6, "feet"),
  28904. name: "Back",
  28905. image: {
  28906. source: "./media/characters/withers/back.svg",
  28907. extra: 1944/1792,
  28908. bottom: 12/1956
  28909. }
  28910. },
  28911. dressed: {
  28912. height: math.unit(6, "feet"),
  28913. name: "Dressed",
  28914. image: {
  28915. source: "./media/characters/withers/dressed.svg",
  28916. extra: 1937/1765,
  28917. bottom: 73/2010
  28918. }
  28919. },
  28920. phase1: {
  28921. height: math.unit(1.1, "feet"),
  28922. name: "Phase 1",
  28923. image: {
  28924. source: "./media/characters/withers/phase-1.svg",
  28925. extra: 1885/1232,
  28926. bottom: 0/1885
  28927. }
  28928. },
  28929. phase2: {
  28930. height: math.unit(1.05, "feet"),
  28931. name: "Phase 2",
  28932. image: {
  28933. source: "./media/characters/withers/phase-2.svg",
  28934. extra: 1792/1090,
  28935. bottom: 0/1792
  28936. }
  28937. },
  28938. partyWipe: {
  28939. height: math.unit(1.1, "feet"),
  28940. name: "Party Wipe",
  28941. image: {
  28942. source: "./media/characters/withers/party-wipe.svg",
  28943. extra: 1864/1207,
  28944. bottom: 0/1864
  28945. }
  28946. },
  28947. },
  28948. [
  28949. {
  28950. name: "Macro",
  28951. height: math.unit(167, "feet"),
  28952. default: true
  28953. },
  28954. {
  28955. name: "Megamacro",
  28956. height: math.unit(15, "miles")
  28957. }
  28958. ]
  28959. ))
  28960. characterMakers.push(() => makeCharacter(
  28961. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28962. {
  28963. front: {
  28964. height: math.unit(6 + 7 / 12, "feet"),
  28965. weight: math.unit(250, "lb"),
  28966. name: "Front",
  28967. image: {
  28968. source: "./media/characters/nemoskii/front.svg",
  28969. extra: 2270 / 1734,
  28970. bottom: 86 / 2354
  28971. }
  28972. },
  28973. back: {
  28974. height: math.unit(6 + 7 / 12, "feet"),
  28975. weight: math.unit(250, "lb"),
  28976. name: "Back",
  28977. image: {
  28978. source: "./media/characters/nemoskii/back.svg",
  28979. extra: 1845 / 1788,
  28980. bottom: 10.5 / 1852
  28981. }
  28982. },
  28983. head: {
  28984. height: math.unit(1.31, "feet"),
  28985. name: "Head",
  28986. image: {
  28987. source: "./media/characters/nemoskii/head.svg"
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Micro",
  28994. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28995. },
  28996. {
  28997. name: "Normal",
  28998. height: math.unit(6 + 7 / 12, "feet"),
  28999. default: true
  29000. },
  29001. {
  29002. name: "Macro",
  29003. height: math.unit((6 + 7 / 12) * 150, "feet")
  29004. },
  29005. {
  29006. name: "Macro+",
  29007. height: math.unit((6 + 7 / 12) * 500, "feet")
  29008. },
  29009. {
  29010. name: "Megamacro",
  29011. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29012. },
  29013. ]
  29014. ))
  29015. characterMakers.push(() => makeCharacter(
  29016. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29017. {
  29018. front: {
  29019. height: math.unit(1, "mile"),
  29020. weight: math.unit(265261.9, "lb"),
  29021. name: "Front",
  29022. image: {
  29023. source: "./media/characters/shui/front.svg",
  29024. extra: 1633 / 1564,
  29025. bottom: 91.5 / 1726
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Macro",
  29032. height: math.unit(1, "mile"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(12 + 6 / 12, "feet"),
  29042. weight: math.unit(1342, "lb"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/arokh-takakura/front.svg",
  29046. extra: 1089 / 1043,
  29047. bottom: 77.4 / 1176.7
  29048. }
  29049. },
  29050. back: {
  29051. height: math.unit(12 + 6 / 12, "feet"),
  29052. weight: math.unit(1342, "lb"),
  29053. name: "Back",
  29054. image: {
  29055. source: "./media/characters/arokh-takakura/back.svg",
  29056. extra: 1046 / 1019,
  29057. bottom: 102 / 1150
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Big",
  29064. height: math.unit(12 + 6 / 12, "feet"),
  29065. default: true
  29066. },
  29067. ]
  29068. ))
  29069. characterMakers.push(() => makeCharacter(
  29070. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29071. {
  29072. front: {
  29073. height: math.unit(5 + 6 / 12, "feet"),
  29074. weight: math.unit(150, "lb"),
  29075. name: "Front",
  29076. image: {
  29077. source: "./media/characters/theo/front.svg",
  29078. extra: 1184 / 1131,
  29079. bottom: 7.4 / 1191
  29080. }
  29081. },
  29082. },
  29083. [
  29084. {
  29085. name: "Micro",
  29086. height: math.unit(5, "inches")
  29087. },
  29088. {
  29089. name: "Normal",
  29090. height: math.unit(5 + 6 / 12, "feet"),
  29091. default: true
  29092. },
  29093. ]
  29094. ))
  29095. characterMakers.push(() => makeCharacter(
  29096. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29097. {
  29098. front: {
  29099. height: math.unit(5 + 9 / 12, "feet"),
  29100. weight: math.unit(130, "lb"),
  29101. name: "Front",
  29102. image: {
  29103. source: "./media/characters/cecelia-swift/front.svg",
  29104. extra: 502 / 484,
  29105. bottom: 23 / 523
  29106. }
  29107. },
  29108. back: {
  29109. height: math.unit(5 + 9 / 12, "feet"),
  29110. weight: math.unit(130, "lb"),
  29111. name: "Back",
  29112. image: {
  29113. source: "./media/characters/cecelia-swift/back.svg",
  29114. extra: 499 / 485,
  29115. bottom: 12 / 511
  29116. }
  29117. },
  29118. head: {
  29119. height: math.unit(0.90, "feet"),
  29120. name: "Head",
  29121. image: {
  29122. source: "./media/characters/cecelia-swift/head.svg"
  29123. }
  29124. },
  29125. rump: {
  29126. height: math.unit(1.75, "feet"),
  29127. name: "Rump",
  29128. image: {
  29129. source: "./media/characters/cecelia-swift/rump.svg"
  29130. }
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Normal",
  29136. height: math.unit(5 + 9 / 12, "feet"),
  29137. default: true
  29138. },
  29139. {
  29140. name: "Big",
  29141. height: math.unit(50, "feet")
  29142. },
  29143. {
  29144. name: "Macro",
  29145. height: math.unit(100, "feet")
  29146. },
  29147. {
  29148. name: "Macro+",
  29149. height: math.unit(500, "feet")
  29150. },
  29151. {
  29152. name: "Macro++",
  29153. height: math.unit(1000, "feet")
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(6, "feet"),
  29162. weight: math.unit(150, "lb"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/kaunan/front.svg",
  29166. extra: 2890 / 2523,
  29167. bottom: 49 / 2939
  29168. }
  29169. },
  29170. },
  29171. [
  29172. {
  29173. name: "Macro",
  29174. height: math.unit(150, "feet"),
  29175. default: true
  29176. },
  29177. ]
  29178. ))
  29179. characterMakers.push(() => makeCharacter(
  29180. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29181. {
  29182. dressed: {
  29183. height: math.unit(175, "cm"),
  29184. weight: math.unit(60, "kg"),
  29185. name: "Dressed",
  29186. image: {
  29187. source: "./media/characters/fei/dressed.svg",
  29188. extra: 1402/1278,
  29189. bottom: 27/1429
  29190. }
  29191. },
  29192. nude: {
  29193. height: math.unit(175, "cm"),
  29194. weight: math.unit(60, "kg"),
  29195. name: "Nude",
  29196. image: {
  29197. source: "./media/characters/fei/nude.svg",
  29198. extra: 1402/1278,
  29199. bottom: 27/1429
  29200. }
  29201. },
  29202. heels: {
  29203. height: math.unit(0.466, "feet"),
  29204. name: "Heels",
  29205. image: {
  29206. source: "./media/characters/fei/heels.svg",
  29207. extra: 156/152,
  29208. bottom: 28/184
  29209. }
  29210. },
  29211. },
  29212. [
  29213. {
  29214. name: "Mortal",
  29215. height: math.unit(175, "cm")
  29216. },
  29217. {
  29218. name: "Normal",
  29219. height: math.unit(3500, "m")
  29220. },
  29221. {
  29222. name: "Stroll",
  29223. height: math.unit(18.4, "km"),
  29224. default: true
  29225. },
  29226. {
  29227. name: "Showoff",
  29228. height: math.unit(175, "km")
  29229. },
  29230. ]
  29231. ))
  29232. characterMakers.push(() => makeCharacter(
  29233. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29234. {
  29235. front: {
  29236. height: math.unit(7, "feet"),
  29237. weight: math.unit(1000, "kg"),
  29238. name: "Front",
  29239. image: {
  29240. source: "./media/characters/edrax/front.svg",
  29241. extra: 2838 / 2550,
  29242. bottom: 130 / 2968
  29243. }
  29244. },
  29245. },
  29246. [
  29247. {
  29248. name: "Small",
  29249. height: math.unit(7, "feet")
  29250. },
  29251. {
  29252. name: "Normal",
  29253. height: math.unit(1500, "meters")
  29254. },
  29255. {
  29256. name: "Mega",
  29257. height: math.unit(12000000, "km"),
  29258. default: true
  29259. },
  29260. {
  29261. name: "Megamacro",
  29262. height: math.unit(10600000, "lightyears")
  29263. },
  29264. {
  29265. name: "Hypermacro",
  29266. height: math.unit(256, "yottameters")
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(10, "feet"),
  29275. weight: math.unit(750, "lb"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/clove/front.svg",
  29279. extra: 1918/1751,
  29280. bottom: 52/1970
  29281. }
  29282. },
  29283. back: {
  29284. height: math.unit(10, "feet"),
  29285. weight: math.unit(750, "lb"),
  29286. name: "Back",
  29287. image: {
  29288. source: "./media/characters/clove/back.svg",
  29289. extra: 1912/1747,
  29290. bottom: 50/1962
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Normal",
  29297. height: math.unit(10, "feet"),
  29298. default: true
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(4, "feet"),
  29307. weight: math.unit(50, "lb"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/alex-rabbit/front.svg",
  29311. extra: 507 / 458,
  29312. bottom: 18.5 / 527
  29313. }
  29314. },
  29315. back: {
  29316. height: math.unit(4, "feet"),
  29317. weight: math.unit(50, "lb"),
  29318. name: "Back",
  29319. image: {
  29320. source: "./media/characters/alex-rabbit/back.svg",
  29321. extra: 502 / 460,
  29322. bottom: 18.9 / 521
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Normal",
  29329. height: math.unit(4, "feet"),
  29330. default: true
  29331. },
  29332. ]
  29333. ))
  29334. characterMakers.push(() => makeCharacter(
  29335. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29336. {
  29337. front: {
  29338. height: math.unit(1 + 3 / 12, "feet"),
  29339. weight: math.unit(80, "lb"),
  29340. name: "Front",
  29341. image: {
  29342. source: "./media/characters/zander-rose/front.svg",
  29343. extra: 916 / 797,
  29344. bottom: 17 / 933
  29345. }
  29346. },
  29347. back: {
  29348. height: math.unit(1 + 3 / 12, "feet"),
  29349. weight: math.unit(80, "lb"),
  29350. name: "Back",
  29351. image: {
  29352. source: "./media/characters/zander-rose/back.svg",
  29353. extra: 903 / 779,
  29354. bottom: 31 / 934
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Normal",
  29361. height: math.unit(1 + 3 / 12, "feet"),
  29362. default: true
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29368. {
  29369. anthro: {
  29370. height: math.unit(6, "feet"),
  29371. weight: math.unit(150, "lb"),
  29372. name: "Anthro",
  29373. image: {
  29374. source: "./media/characters/razz/anthro.svg",
  29375. extra: 1437 / 1343,
  29376. bottom: 48 / 1485
  29377. }
  29378. },
  29379. feral: {
  29380. height: math.unit(6, "feet"),
  29381. weight: math.unit(150, "lb"),
  29382. name: "Feral",
  29383. image: {
  29384. source: "./media/characters/razz/feral.svg",
  29385. extra: 2569 / 1385,
  29386. bottom: 95 / 2664
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(6, "feet"),
  29394. default: true
  29395. },
  29396. ]
  29397. ))
  29398. characterMakers.push(() => makeCharacter(
  29399. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29400. {
  29401. front: {
  29402. height: math.unit(9 + 4 / 12, "feet"),
  29403. weight: math.unit(500, "lb"),
  29404. name: "Front",
  29405. image: {
  29406. source: "./media/characters/morrigan/front.svg",
  29407. extra: 2707 / 2579,
  29408. bottom: 156 / 2863
  29409. }
  29410. },
  29411. },
  29412. [
  29413. {
  29414. name: "Normal",
  29415. height: math.unit(9 + 4 / 12, "feet"),
  29416. default: true
  29417. },
  29418. ]
  29419. ))
  29420. characterMakers.push(() => makeCharacter(
  29421. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29422. {
  29423. front: {
  29424. height: math.unit(5, "stories"),
  29425. weight: math.unit(4000, "lb"),
  29426. name: "Front",
  29427. image: {
  29428. source: "./media/characters/jenene/front.svg",
  29429. extra: 1780 / 1710,
  29430. bottom: 57 / 1837
  29431. }
  29432. },
  29433. },
  29434. [
  29435. {
  29436. name: "Normal",
  29437. height: math.unit(5, "stories"),
  29438. default: true
  29439. },
  29440. ]
  29441. ))
  29442. characterMakers.push(() => makeCharacter(
  29443. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29444. {
  29445. taurSfw: {
  29446. height: math.unit(10, "meters"),
  29447. weight: math.unit(17500, "kg"),
  29448. name: "Taur",
  29449. image: {
  29450. source: "./media/characters/faey/taur-sfw.svg",
  29451. extra: 1200 / 968,
  29452. bottom: 41 / 1241
  29453. }
  29454. },
  29455. chestmaw: {
  29456. height: math.unit(2.01, "meters"),
  29457. name: "Chestmaw",
  29458. image: {
  29459. source: "./media/characters/faey/chestmaw.svg"
  29460. }
  29461. },
  29462. foot: {
  29463. height: math.unit(2.43, "meters"),
  29464. name: "Foot",
  29465. image: {
  29466. source: "./media/characters/faey/foot.svg"
  29467. }
  29468. },
  29469. jaws: {
  29470. height: math.unit(1.66, "meters"),
  29471. name: "Jaws",
  29472. image: {
  29473. source: "./media/characters/faey/jaws.svg"
  29474. }
  29475. },
  29476. tongues: {
  29477. height: math.unit(2.01, "meters"),
  29478. name: "Tongues",
  29479. image: {
  29480. source: "./media/characters/faey/tongues.svg"
  29481. }
  29482. },
  29483. },
  29484. [
  29485. {
  29486. name: "Small",
  29487. height: math.unit(10, "meters"),
  29488. default: true
  29489. },
  29490. {
  29491. name: "Big",
  29492. height: math.unit(500000, "km")
  29493. },
  29494. ]
  29495. ))
  29496. characterMakers.push(() => makeCharacter(
  29497. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29498. {
  29499. front: {
  29500. height: math.unit(7, "feet"),
  29501. weight: math.unit(275, "lb"),
  29502. name: "Front",
  29503. image: {
  29504. source: "./media/characters/roku/front.svg",
  29505. extra: 903 / 878,
  29506. bottom: 37 / 940
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Normal",
  29513. height: math.unit(7, "feet"),
  29514. default: true
  29515. },
  29516. {
  29517. name: "Macro",
  29518. height: math.unit(500, "feet")
  29519. },
  29520. {
  29521. name: "Megamacro",
  29522. height: math.unit(200, "miles")
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(6 + 2 / 12, "feet"),
  29531. weight: math.unit(150, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/lira/front.svg",
  29535. extra: 1727 / 1605,
  29536. bottom: 26 / 1753
  29537. }
  29538. },
  29539. back: {
  29540. height: math.unit(6 + 2 / 12, "feet"),
  29541. weight: math.unit(150, "lb"),
  29542. name: "Back",
  29543. image: {
  29544. source: "./media/characters/lira/back.svg",
  29545. extra: 1713/1621,
  29546. bottom: 20/1733
  29547. }
  29548. },
  29549. hand: {
  29550. height: math.unit(0.75, "feet"),
  29551. name: "Hand",
  29552. image: {
  29553. source: "./media/characters/lira/hand.svg"
  29554. }
  29555. },
  29556. maw: {
  29557. height: math.unit(0.65, "feet"),
  29558. name: "Maw",
  29559. image: {
  29560. source: "./media/characters/lira/maw.svg"
  29561. }
  29562. },
  29563. pawDigi: {
  29564. height: math.unit(1.6, "feet"),
  29565. name: "Paw Digi",
  29566. image: {
  29567. source: "./media/characters/lira/paw-digi.svg"
  29568. }
  29569. },
  29570. pawPlanti: {
  29571. height: math.unit(1.4, "feet"),
  29572. name: "Paw Planti",
  29573. image: {
  29574. source: "./media/characters/lira/paw-planti.svg"
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Normal",
  29581. height: math.unit(6 + 2 / 12, "feet"),
  29582. default: true
  29583. },
  29584. {
  29585. name: "Macro",
  29586. height: math.unit(100, "feet")
  29587. },
  29588. {
  29589. name: "Macro²",
  29590. height: math.unit(1600, "feet")
  29591. },
  29592. {
  29593. name: "Planetary",
  29594. height: math.unit(20, "earths")
  29595. },
  29596. ]
  29597. ))
  29598. characterMakers.push(() => makeCharacter(
  29599. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29600. {
  29601. front: {
  29602. height: math.unit(6, "feet"),
  29603. weight: math.unit(150, "lb"),
  29604. name: "Front",
  29605. image: {
  29606. source: "./media/characters/hadjet/front.svg",
  29607. extra: 1480 / 1346,
  29608. bottom: 26 / 1506
  29609. }
  29610. },
  29611. frontNsfw: {
  29612. height: math.unit(6, "feet"),
  29613. weight: math.unit(150, "lb"),
  29614. name: "Front (NSFW)",
  29615. image: {
  29616. source: "./media/characters/hadjet/front-nsfw.svg",
  29617. extra: 1440 / 1358,
  29618. bottom: 52 / 1492
  29619. }
  29620. },
  29621. },
  29622. [
  29623. {
  29624. name: "Macro",
  29625. height: math.unit(10, "stories"),
  29626. default: true
  29627. },
  29628. {
  29629. name: "Megamacro",
  29630. height: math.unit(1.5, "miles")
  29631. },
  29632. {
  29633. name: "Megamacro+",
  29634. height: math.unit(5, "miles")
  29635. },
  29636. ]
  29637. ))
  29638. characterMakers.push(() => makeCharacter(
  29639. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29640. {
  29641. side: {
  29642. height: math.unit(106, "feet"),
  29643. weight: math.unit(500, "tonnes"),
  29644. name: "Side",
  29645. image: {
  29646. source: "./media/characters/kodran/side.svg",
  29647. extra: 553 / 480,
  29648. bottom: 33 / 586
  29649. }
  29650. },
  29651. front: {
  29652. height: math.unit(132, "feet"),
  29653. weight: math.unit(500, "tonnes"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/kodran/front.svg",
  29657. extra: 667 / 643,
  29658. bottom: 42 / 709
  29659. }
  29660. },
  29661. flying: {
  29662. height: math.unit(350, "feet"),
  29663. weight: math.unit(500, "tonnes"),
  29664. name: "Flying",
  29665. image: {
  29666. source: "./media/characters/kodran/flying.svg"
  29667. }
  29668. },
  29669. foot: {
  29670. height: math.unit(33, "feet"),
  29671. name: "Foot",
  29672. image: {
  29673. source: "./media/characters/kodran/foot.svg"
  29674. }
  29675. },
  29676. footFront: {
  29677. height: math.unit(19, "feet"),
  29678. name: "Foot (Front)",
  29679. image: {
  29680. source: "./media/characters/kodran/foot-front.svg",
  29681. extra: 261 / 261,
  29682. bottom: 91 / 352
  29683. }
  29684. },
  29685. headFront: {
  29686. height: math.unit(53, "feet"),
  29687. name: "Head (Front)",
  29688. image: {
  29689. source: "./media/characters/kodran/head-front.svg"
  29690. }
  29691. },
  29692. headSide: {
  29693. height: math.unit(65, "feet"),
  29694. name: "Head (Side)",
  29695. image: {
  29696. source: "./media/characters/kodran/head-side.svg"
  29697. }
  29698. },
  29699. throat: {
  29700. height: math.unit(79, "feet"),
  29701. name: "Throat",
  29702. image: {
  29703. source: "./media/characters/kodran/throat.svg"
  29704. }
  29705. },
  29706. },
  29707. [
  29708. {
  29709. name: "Large",
  29710. height: math.unit(106, "feet"),
  29711. default: true
  29712. },
  29713. ]
  29714. ))
  29715. characterMakers.push(() => makeCharacter(
  29716. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29717. {
  29718. side: {
  29719. height: math.unit(11, "feet"),
  29720. weight: math.unit(150, "lb"),
  29721. name: "Side",
  29722. image: {
  29723. source: "./media/characters/pyxaron/side.svg",
  29724. extra: 305 / 195,
  29725. bottom: 17 / 322
  29726. }
  29727. },
  29728. },
  29729. [
  29730. {
  29731. name: "Normal",
  29732. height: math.unit(11, "feet"),
  29733. default: true
  29734. },
  29735. ]
  29736. ))
  29737. characterMakers.push(() => makeCharacter(
  29738. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29739. {
  29740. front: {
  29741. height: math.unit(6, "feet"),
  29742. weight: math.unit(150, "lb"),
  29743. name: "Front",
  29744. image: {
  29745. source: "./media/characters/meep/front.svg",
  29746. extra: 88 / 80,
  29747. bottom: 6 / 94
  29748. }
  29749. },
  29750. },
  29751. [
  29752. {
  29753. name: "Fun Sized",
  29754. height: math.unit(2, "inches"),
  29755. default: true
  29756. },
  29757. {
  29758. name: "Friend Sized",
  29759. height: math.unit(8, "inches")
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29765. {
  29766. front: {
  29767. height: math.unit(15, "feet"),
  29768. weight: math.unit(2500, "lb"),
  29769. name: "Front",
  29770. image: {
  29771. source: "./media/characters/holly-rabbit/front.svg",
  29772. extra: 1433 / 1233,
  29773. bottom: 125 / 1558
  29774. }
  29775. },
  29776. dick: {
  29777. height: math.unit(4.6, "feet"),
  29778. name: "Dick",
  29779. image: {
  29780. source: "./media/characters/holly-rabbit/dick.svg"
  29781. }
  29782. },
  29783. },
  29784. [
  29785. {
  29786. name: "Normal",
  29787. height: math.unit(15, "feet"),
  29788. default: true
  29789. },
  29790. {
  29791. name: "Macro",
  29792. height: math.unit(250, "feet")
  29793. },
  29794. {
  29795. name: "Macro+",
  29796. height: math.unit(2500, "feet")
  29797. },
  29798. ]
  29799. ))
  29800. characterMakers.push(() => makeCharacter(
  29801. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29802. {
  29803. front: {
  29804. height: math.unit(3.02, "meters"),
  29805. weight: math.unit(500, "kg"),
  29806. name: "Front",
  29807. image: {
  29808. source: "./media/characters/drena/front.svg",
  29809. extra: 282 / 243,
  29810. bottom: 8 / 290
  29811. }
  29812. },
  29813. side: {
  29814. height: math.unit(3.02, "meters"),
  29815. weight: math.unit(500, "kg"),
  29816. name: "Side",
  29817. image: {
  29818. source: "./media/characters/drena/side.svg",
  29819. extra: 280 / 245,
  29820. bottom: 10 / 290
  29821. }
  29822. },
  29823. back: {
  29824. height: math.unit(3.02, "meters"),
  29825. weight: math.unit(500, "kg"),
  29826. name: "Back",
  29827. image: {
  29828. source: "./media/characters/drena/back.svg",
  29829. extra: 278 / 243,
  29830. bottom: 2 / 280
  29831. }
  29832. },
  29833. foot: {
  29834. height: math.unit(0.75, "meters"),
  29835. name: "Foot",
  29836. image: {
  29837. source: "./media/characters/drena/foot.svg"
  29838. }
  29839. },
  29840. maw: {
  29841. height: math.unit(0.82, "meters"),
  29842. name: "Maw",
  29843. image: {
  29844. source: "./media/characters/drena/maw.svg"
  29845. }
  29846. },
  29847. eating: {
  29848. height: math.unit(0.75, "meters"),
  29849. name: "Eating",
  29850. image: {
  29851. source: "./media/characters/drena/eating.svg"
  29852. }
  29853. },
  29854. rump: {
  29855. height: math.unit(0.93, "meters"),
  29856. name: "Rump",
  29857. image: {
  29858. source: "./media/characters/drena/rump.svg"
  29859. }
  29860. },
  29861. },
  29862. [
  29863. {
  29864. name: "Normal",
  29865. height: math.unit(3.02, "meters"),
  29866. default: true
  29867. },
  29868. ]
  29869. ))
  29870. characterMakers.push(() => makeCharacter(
  29871. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29872. {
  29873. front: {
  29874. height: math.unit(6 + 4 / 12, "feet"),
  29875. weight: math.unit(250, "lb"),
  29876. name: "Front",
  29877. image: {
  29878. source: "./media/characters/remmyzilla/front.svg",
  29879. extra: 4033 / 3588,
  29880. bottom: 123 / 4156
  29881. }
  29882. },
  29883. back: {
  29884. height: math.unit(6 + 4 / 12, "feet"),
  29885. weight: math.unit(250, "lb"),
  29886. name: "Back",
  29887. image: {
  29888. source: "./media/characters/remmyzilla/back.svg",
  29889. extra: 2687 / 2555,
  29890. bottom: 48 / 2735
  29891. }
  29892. },
  29893. paw: {
  29894. height: math.unit(1.73, "feet"),
  29895. name: "Paw",
  29896. image: {
  29897. source: "./media/characters/remmyzilla/paw.svg"
  29898. },
  29899. extraAttributes: {
  29900. "toeSize": {
  29901. name: "Toe Size",
  29902. power: 2,
  29903. type: "area",
  29904. base: math.unit(0.0035, "m^2")
  29905. },
  29906. "padSize": {
  29907. name: "Pad Size",
  29908. power: 2,
  29909. type: "area",
  29910. base: math.unit(0.015, "m^2")
  29911. },
  29912. "pawsize": {
  29913. name: "Paw Size",
  29914. power: 2,
  29915. type: "area",
  29916. base: math.unit(0.072, "m^2")
  29917. },
  29918. }
  29919. },
  29920. maw: {
  29921. height: math.unit(1.73, "feet"),
  29922. name: "Maw",
  29923. image: {
  29924. source: "./media/characters/remmyzilla/maw.svg"
  29925. }
  29926. },
  29927. },
  29928. [
  29929. {
  29930. name: "Normal",
  29931. height: math.unit(6 + 4 / 12, "feet")
  29932. },
  29933. {
  29934. name: "Minimacro",
  29935. height: math.unit(12 + 8 / 12, "feet")
  29936. },
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(640, "feet"),
  29940. default: true
  29941. },
  29942. {
  29943. name: "Megamacro",
  29944. height: math.unit(6400, "feet")
  29945. },
  29946. {
  29947. name: "Gigamacro",
  29948. height: math.unit(64000, "miles")
  29949. },
  29950. ]
  29951. ))
  29952. characterMakers.push(() => makeCharacter(
  29953. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29954. {
  29955. front: {
  29956. height: math.unit(2.5, "meters"),
  29957. weight: math.unit(300, "lb"),
  29958. name: "Front",
  29959. image: {
  29960. source: "./media/characters/lawrence/front.svg",
  29961. extra: 357 / 335,
  29962. bottom: 30 / 387
  29963. }
  29964. },
  29965. back: {
  29966. height: math.unit(2.5, "meters"),
  29967. weight: math.unit(300, "lb"),
  29968. name: "Back",
  29969. image: {
  29970. source: "./media/characters/lawrence/back.svg",
  29971. extra: 357 / 338,
  29972. bottom: 16 / 373
  29973. }
  29974. },
  29975. head: {
  29976. height: math.unit(0.9, "meter"),
  29977. name: "Head",
  29978. image: {
  29979. source: "./media/characters/lawrence/head.svg"
  29980. }
  29981. },
  29982. maw: {
  29983. height: math.unit(0.7, "meter"),
  29984. name: "Maw",
  29985. image: {
  29986. source: "./media/characters/lawrence/maw.svg"
  29987. }
  29988. },
  29989. footBottom: {
  29990. height: math.unit(0.5, "meter"),
  29991. name: "Foot (Bottom)",
  29992. image: {
  29993. source: "./media/characters/lawrence/foot-bottom.svg"
  29994. }
  29995. },
  29996. footTop: {
  29997. height: math.unit(0.5, "meter"),
  29998. name: "Foot (Top)",
  29999. image: {
  30000. source: "./media/characters/lawrence/foot-top.svg"
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Normal",
  30007. height: math.unit(2.5, "meters"),
  30008. default: true
  30009. },
  30010. {
  30011. name: "Macro",
  30012. height: math.unit(95, "meters")
  30013. },
  30014. {
  30015. name: "Megamacro",
  30016. height: math.unit(150, "km")
  30017. },
  30018. ]
  30019. ))
  30020. characterMakers.push(() => makeCharacter(
  30021. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30022. {
  30023. front: {
  30024. height: math.unit(4.2, "meters"),
  30025. name: "Front",
  30026. image: {
  30027. source: "./media/characters/sydney/front.svg",
  30028. extra: 1323 / 1277,
  30029. bottom: 111 / 1434
  30030. }
  30031. },
  30032. },
  30033. [
  30034. {
  30035. name: "Normal",
  30036. height: math.unit(4.2, "meters"),
  30037. default: true
  30038. },
  30039. ]
  30040. ))
  30041. characterMakers.push(() => makeCharacter(
  30042. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30043. {
  30044. back: {
  30045. height: math.unit(201, "feet"),
  30046. name: "Back",
  30047. image: {
  30048. source: "./media/characters/jessica/back.svg",
  30049. extra: 273 / 259,
  30050. bottom: 7 / 280
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Normal",
  30057. height: math.unit(201, "feet"),
  30058. default: true
  30059. },
  30060. {
  30061. name: "Megamacro",
  30062. height: math.unit(8, "miles")
  30063. },
  30064. ]
  30065. ))
  30066. characterMakers.push(() => makeCharacter(
  30067. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30068. {
  30069. side: {
  30070. height: math.unit(5.6, "m"),
  30071. weight: math.unit(8000, "kg"),
  30072. name: "Side",
  30073. image: {
  30074. source: "./media/characters/victoria/side.svg",
  30075. extra: 1542/1229,
  30076. bottom: 124/1666
  30077. }
  30078. },
  30079. maw: {
  30080. height: math.unit(7.14, "feet"),
  30081. name: "Maw",
  30082. image: {
  30083. source: "./media/characters/victoria/maw.svg"
  30084. }
  30085. },
  30086. },
  30087. [
  30088. {
  30089. name: "Normal",
  30090. height: math.unit(5.6, "m"),
  30091. default: true
  30092. },
  30093. ]
  30094. ))
  30095. characterMakers.push(() => makeCharacter(
  30096. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30097. {
  30098. front: {
  30099. height: math.unit(5 + 6 / 12, "feet"),
  30100. name: "Front",
  30101. image: {
  30102. source: "./media/characters/cat/front.svg",
  30103. extra: 1449/1295,
  30104. bottom: 34/1483
  30105. },
  30106. form: "cat",
  30107. default: true
  30108. },
  30109. back: {
  30110. height: math.unit(5 + 6 / 12, "feet"),
  30111. name: "Back",
  30112. image: {
  30113. source: "./media/characters/cat/back.svg",
  30114. extra: 1466/1301,
  30115. bottom: 19/1485
  30116. },
  30117. form: "cat"
  30118. },
  30119. taur: {
  30120. height: math.unit(7, "feet"),
  30121. name: "Taur",
  30122. image: {
  30123. source: "./media/characters/cat/taur.svg",
  30124. extra: 1389/1233,
  30125. bottom: 83/1472
  30126. },
  30127. form: "taur",
  30128. default: true
  30129. },
  30130. lucarioFront: {
  30131. height: math.unit(4, "feet"),
  30132. name: "Lucario (Front)",
  30133. image: {
  30134. source: "./media/characters/cat/lucario-front.svg",
  30135. extra: 1149/1019,
  30136. bottom: 84/1233
  30137. },
  30138. form: "lucario",
  30139. default: true
  30140. },
  30141. lucarioBack: {
  30142. height: math.unit(4, "feet"),
  30143. name: "Lucario (Back)",
  30144. image: {
  30145. source: "./media/characters/cat/lucario-back.svg",
  30146. extra: 1190/1059,
  30147. bottom: 33/1223
  30148. },
  30149. form: "lucario"
  30150. },
  30151. megaLucario: {
  30152. height: math.unit(4, "feet"),
  30153. name: "Mega Lucario",
  30154. image: {
  30155. source: "./media/characters/cat/mega-lucario.svg",
  30156. extra: 1515 / 1319,
  30157. bottom: 63 / 1578
  30158. },
  30159. form: "lucario"
  30160. },
  30161. nickit: {
  30162. height: math.unit(2, "feet"),
  30163. name: "Nickit",
  30164. image: {
  30165. source: "./media/characters/cat/nickit.svg",
  30166. extra: 1980 / 1585,
  30167. bottom: 102 / 2082
  30168. },
  30169. form: "nickit",
  30170. default: true
  30171. },
  30172. lopunnyFront: {
  30173. height: math.unit(5, "feet"),
  30174. name: "Lopunny (Front)",
  30175. image: {
  30176. source: "./media/characters/cat/lopunny-front.svg",
  30177. extra: 1782 / 1469,
  30178. bottom: 38 / 1820
  30179. },
  30180. form: "lopunny",
  30181. default: true
  30182. },
  30183. lopunnyBack: {
  30184. height: math.unit(5, "feet"),
  30185. name: "Lopunny (Back)",
  30186. image: {
  30187. source: "./media/characters/cat/lopunny-back.svg",
  30188. extra: 1660 / 1490,
  30189. bottom: 25 / 1685
  30190. },
  30191. form: "lopunny"
  30192. },
  30193. },
  30194. [
  30195. {
  30196. name: "Really small",
  30197. height: math.unit(1, "nm")
  30198. },
  30199. {
  30200. name: "Micro",
  30201. height: math.unit(5, "inches")
  30202. },
  30203. {
  30204. name: "Normal",
  30205. height: math.unit(5 + 6 / 12, "feet"),
  30206. default: true
  30207. },
  30208. {
  30209. name: "Macro",
  30210. height: math.unit(50, "feet")
  30211. },
  30212. {
  30213. name: "Macro+",
  30214. height: math.unit(150, "feet")
  30215. },
  30216. {
  30217. name: "Megamacro",
  30218. height: math.unit(100, "miles")
  30219. },
  30220. ]
  30221. ))
  30222. characterMakers.push(() => makeCharacter(
  30223. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30224. {
  30225. front: {
  30226. height: math.unit(63.4, "meters"),
  30227. weight: math.unit(3.28349e+6, "kilograms"),
  30228. name: "Front",
  30229. image: {
  30230. source: "./media/characters/kirina-violet/front.svg",
  30231. extra: 2812 / 2725,
  30232. bottom: 0 / 2812
  30233. }
  30234. },
  30235. back: {
  30236. height: math.unit(63.4, "meters"),
  30237. weight: math.unit(3.28349e+6, "kilograms"),
  30238. name: "Back",
  30239. image: {
  30240. source: "./media/characters/kirina-violet/back.svg",
  30241. extra: 2812 / 2725,
  30242. bottom: 0 / 2812
  30243. }
  30244. },
  30245. mouth: {
  30246. height: math.unit(4.35, "meters"),
  30247. name: "Mouth",
  30248. image: {
  30249. source: "./media/characters/kirina-violet/mouth.svg"
  30250. }
  30251. },
  30252. paw: {
  30253. height: math.unit(5.6, "meters"),
  30254. name: "Paw",
  30255. image: {
  30256. source: "./media/characters/kirina-violet/paw.svg"
  30257. }
  30258. },
  30259. tail: {
  30260. height: math.unit(18, "meters"),
  30261. name: "Tail",
  30262. image: {
  30263. source: "./media/characters/kirina-violet/tail.svg"
  30264. }
  30265. },
  30266. },
  30267. [
  30268. {
  30269. name: "Macro",
  30270. height: math.unit(63.4, "meters"),
  30271. default: true
  30272. },
  30273. ]
  30274. ))
  30275. characterMakers.push(() => makeCharacter(
  30276. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30277. {
  30278. front: {
  30279. height: math.unit(75, "feet"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/cat-gigachu/front.svg",
  30283. extra: 1239/1027,
  30284. bottom: 32/1271
  30285. }
  30286. },
  30287. back: {
  30288. height: math.unit(75, "feet"),
  30289. name: "Back",
  30290. image: {
  30291. source: "./media/characters/cat-gigachu/back.svg",
  30292. extra: 1229/1030,
  30293. bottom: 9/1238
  30294. }
  30295. },
  30296. },
  30297. [
  30298. {
  30299. name: "Dynamax",
  30300. height: math.unit(75, "feet"),
  30301. default: true
  30302. },
  30303. ]
  30304. ))
  30305. characterMakers.push(() => makeCharacter(
  30306. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30307. {
  30308. front: {
  30309. height: math.unit(6, "feet"),
  30310. weight: math.unit(150, "lb"),
  30311. name: "Front",
  30312. image: {
  30313. source: "./media/characters/sfaiyan/front.svg",
  30314. extra: 999 / 978,
  30315. bottom: 5 / 1004
  30316. }
  30317. },
  30318. },
  30319. [
  30320. {
  30321. name: "Normal",
  30322. height: math.unit(1.82, "meters")
  30323. },
  30324. {
  30325. name: "Giant",
  30326. height: math.unit(2.27, "km"),
  30327. default: true
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30333. {
  30334. front: {
  30335. height: math.unit(179, "cm"),
  30336. weight: math.unit(100, "kg"),
  30337. name: "Front",
  30338. image: {
  30339. source: "./media/characters/raunehkeli/front.svg",
  30340. extra: 1934 / 1926,
  30341. bottom: 0 / 1934
  30342. }
  30343. },
  30344. },
  30345. [
  30346. {
  30347. name: "Normal",
  30348. height: math.unit(179, "cm")
  30349. },
  30350. {
  30351. name: "Maximum",
  30352. height: math.unit(575, "meters"),
  30353. default: true
  30354. },
  30355. ]
  30356. ))
  30357. characterMakers.push(() => makeCharacter(
  30358. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30359. {
  30360. front: {
  30361. height: math.unit(6, "feet"),
  30362. weight: math.unit(150, "lb"),
  30363. name: "Front",
  30364. image: {
  30365. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30366. extra: 2625 / 2518,
  30367. bottom: 60 / 2685
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Normal",
  30374. height: math.unit(6 + 2 / 12, "feet")
  30375. },
  30376. {
  30377. name: "Macro",
  30378. height: math.unit(1180, "feet"),
  30379. default: true
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(5 + 6 / 12, "feet"),
  30388. weight: math.unit(108, "lb"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/lilith-zott/front.svg",
  30392. extra: 2510 / 2238,
  30393. bottom: 100 / 2610
  30394. }
  30395. },
  30396. frontDressed: {
  30397. height: math.unit(5 + 6 / 12, "feet"),
  30398. weight: math.unit(108, "lb"),
  30399. name: "Front (Dressed)",
  30400. image: {
  30401. source: "./media/characters/lilith-zott/front-dressed.svg",
  30402. extra: 2510 / 2238,
  30403. bottom: 100 / 2610
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Normal",
  30410. height: math.unit(5 + 6 / 12, "feet")
  30411. },
  30412. {
  30413. name: "Macro",
  30414. height: math.unit(1030, "feet"),
  30415. default: true
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30421. {
  30422. front: {
  30423. height: math.unit(6, "feet"),
  30424. weight: math.unit(150, "lb"),
  30425. name: "Front",
  30426. image: {
  30427. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30428. extra: 2567 / 2435,
  30429. bottom: 39 / 2606
  30430. }
  30431. },
  30432. frontSuper: {
  30433. height: math.unit(6, "feet"),
  30434. name: "Front (Super)",
  30435. image: {
  30436. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30437. extra: 2567 / 2435,
  30438. bottom: 39 / 2606
  30439. }
  30440. },
  30441. },
  30442. [
  30443. {
  30444. name: "Normal",
  30445. height: math.unit(5 + 10 / 12, "feet")
  30446. },
  30447. {
  30448. name: "Macro",
  30449. height: math.unit(1100, "feet"),
  30450. default: true
  30451. },
  30452. ]
  30453. ))
  30454. characterMakers.push(() => makeCharacter(
  30455. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30456. {
  30457. front: {
  30458. height: math.unit(100, "miles"),
  30459. name: "Front",
  30460. image: {
  30461. source: "./media/characters/sona/front.svg",
  30462. extra: 2433 / 2201,
  30463. bottom: 53 / 2486
  30464. }
  30465. },
  30466. foot: {
  30467. height: math.unit(16.1, "miles"),
  30468. name: "Foot",
  30469. image: {
  30470. source: "./media/characters/sona/foot.svg"
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Macro",
  30477. height: math.unit(100, "miles"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30484. {
  30485. front: {
  30486. height: math.unit(6, "feet"),
  30487. weight: math.unit(150, "lb"),
  30488. name: "Front",
  30489. image: {
  30490. source: "./media/characters/bailey/front.svg",
  30491. extra: 1778 / 1724,
  30492. bottom: 30 / 1808
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Micro",
  30499. height: math.unit(4, "inches")
  30500. },
  30501. {
  30502. name: "Normal",
  30503. height: math.unit(5 + 5 / 12, "feet"),
  30504. default: true
  30505. },
  30506. {
  30507. name: "Macro",
  30508. height: math.unit(250, "feet")
  30509. },
  30510. {
  30511. name: "Megamacro",
  30512. height: math.unit(100, "miles")
  30513. },
  30514. ]
  30515. ))
  30516. characterMakers.push(() => makeCharacter(
  30517. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30518. {
  30519. front: {
  30520. height: math.unit(5 + 2 / 12, "feet"),
  30521. weight: math.unit(120, "lb"),
  30522. name: "Front",
  30523. image: {
  30524. source: "./media/characters/snaps/front.svg",
  30525. extra: 2370 / 2177,
  30526. bottom: 48 / 2418
  30527. }
  30528. },
  30529. back: {
  30530. height: math.unit(5 + 2 / 12, "feet"),
  30531. weight: math.unit(120, "lb"),
  30532. name: "Back",
  30533. image: {
  30534. source: "./media/characters/snaps/back.svg",
  30535. extra: 2408 / 2258,
  30536. bottom: 15 / 2423
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Micro",
  30543. height: math.unit(9, "inches")
  30544. },
  30545. {
  30546. name: "Normal",
  30547. height: math.unit(5 + 2 / 12, "feet"),
  30548. default: true
  30549. },
  30550. {
  30551. name: "Mini Macro",
  30552. height: math.unit(10, "feet")
  30553. },
  30554. ]
  30555. ))
  30556. characterMakers.push(() => makeCharacter(
  30557. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30558. {
  30559. front: {
  30560. height: math.unit(1.8, "meters"),
  30561. weight: math.unit(85, "kg"),
  30562. name: "Front",
  30563. image: {
  30564. source: "./media/characters/azteck/front.svg",
  30565. extra: 2815 / 2625,
  30566. bottom: 89 / 2904
  30567. }
  30568. },
  30569. back: {
  30570. height: math.unit(1.8, "meters"),
  30571. weight: math.unit(85, "kg"),
  30572. name: "Back",
  30573. image: {
  30574. source: "./media/characters/azteck/back.svg",
  30575. extra: 2856 / 2648,
  30576. bottom: 85 / 2941
  30577. }
  30578. },
  30579. frontDressed: {
  30580. height: math.unit(1.8, "meters"),
  30581. weight: math.unit(85, "kg"),
  30582. name: "Front (Dressed)",
  30583. image: {
  30584. source: "./media/characters/azteck/front-dressed.svg",
  30585. extra: 2147 / 2003,
  30586. bottom: 68 / 2215
  30587. }
  30588. },
  30589. head: {
  30590. height: math.unit(0.47, "meters"),
  30591. weight: math.unit(85, "kg"),
  30592. name: "Head",
  30593. image: {
  30594. source: "./media/characters/azteck/head.svg"
  30595. }
  30596. },
  30597. },
  30598. [
  30599. {
  30600. name: "Bite sized",
  30601. height: math.unit(16, "cm")
  30602. },
  30603. {
  30604. name: "Normal",
  30605. height: math.unit(1.8, "meters"),
  30606. default: true
  30607. },
  30608. ]
  30609. ))
  30610. characterMakers.push(() => makeCharacter(
  30611. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30612. {
  30613. front: {
  30614. height: math.unit(6, "feet"),
  30615. weight: math.unit(150, "lb"),
  30616. name: "Front",
  30617. image: {
  30618. source: "./media/characters/pidge/front.svg",
  30619. extra: 1936/1820,
  30620. bottom: 0/1936
  30621. }
  30622. },
  30623. back: {
  30624. height: math.unit(6, "feet"),
  30625. weight: math.unit(150, "lb"),
  30626. name: "Back",
  30627. image: {
  30628. source: "./media/characters/pidge/back.svg",
  30629. extra: 1938/1843,
  30630. bottom: 0/1938
  30631. }
  30632. },
  30633. casual: {
  30634. height: math.unit(6, "feet"),
  30635. weight: math.unit(150, "lb"),
  30636. name: "Casual",
  30637. image: {
  30638. source: "./media/characters/pidge/casual.svg",
  30639. extra: 1936/1820,
  30640. bottom: 0/1936
  30641. }
  30642. },
  30643. tech: {
  30644. height: math.unit(6, "feet"),
  30645. weight: math.unit(150, "lb"),
  30646. name: "Tech",
  30647. image: {
  30648. source: "./media/characters/pidge/tech.svg",
  30649. extra: 1802/1682,
  30650. bottom: 0/1802
  30651. }
  30652. },
  30653. head: {
  30654. height: math.unit(1.61, "feet"),
  30655. name: "Head",
  30656. image: {
  30657. source: "./media/characters/pidge/head.svg"
  30658. }
  30659. },
  30660. collar: {
  30661. height: math.unit(0.82, "feet"),
  30662. name: "Collar",
  30663. image: {
  30664. source: "./media/characters/pidge/collar.svg"
  30665. }
  30666. },
  30667. },
  30668. [
  30669. {
  30670. name: "Macro",
  30671. height: math.unit(2, "mile"),
  30672. default: true
  30673. },
  30674. {
  30675. name: "PUPPY",
  30676. height: math.unit(20, "miles")
  30677. },
  30678. ]
  30679. ))
  30680. characterMakers.push(() => makeCharacter(
  30681. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30682. {
  30683. front: {
  30684. height: math.unit(6, "feet"),
  30685. weight: math.unit(150, "lb"),
  30686. name: "Front",
  30687. image: {
  30688. source: "./media/characters/en/front.svg",
  30689. extra: 1697 / 1563,
  30690. bottom: 103 / 1800
  30691. }
  30692. },
  30693. back: {
  30694. height: math.unit(6, "feet"),
  30695. weight: math.unit(150, "lb"),
  30696. name: "Back",
  30697. image: {
  30698. source: "./media/characters/en/back.svg",
  30699. extra: 1700 / 1570,
  30700. bottom: 51 / 1751
  30701. }
  30702. },
  30703. frontDressed: {
  30704. height: math.unit(6, "feet"),
  30705. weight: math.unit(150, "lb"),
  30706. name: "Front (Dressed)",
  30707. image: {
  30708. source: "./media/characters/en/front-dressed.svg",
  30709. extra: 1697 / 1563,
  30710. bottom: 103 / 1800
  30711. }
  30712. },
  30713. backDressed: {
  30714. height: math.unit(6, "feet"),
  30715. weight: math.unit(150, "lb"),
  30716. name: "Back (Dressed)",
  30717. image: {
  30718. source: "./media/characters/en/back-dressed.svg",
  30719. extra: 1700 / 1570,
  30720. bottom: 51 / 1751
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Macro",
  30727. height: math.unit(210, "feet"),
  30728. default: true
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30734. {
  30735. front: {
  30736. height: math.unit(6, "feet"),
  30737. weight: math.unit(150, "lb"),
  30738. name: "Front",
  30739. image: {
  30740. source: "./media/characters/haze-orris/front.svg",
  30741. extra: 3975 / 3525,
  30742. bottom: 137 / 4112
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Micro",
  30749. height: math.unit(150, "mm"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(6, "feet"),
  30759. weight: math.unit(150, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/casselene-yaro/front.svg",
  30763. extra: 4721 / 4541,
  30764. bottom: 82 / 4803
  30765. }
  30766. },
  30767. back: {
  30768. height: math.unit(6, "feet"),
  30769. weight: math.unit(150, "lb"),
  30770. name: "Back",
  30771. image: {
  30772. source: "./media/characters/casselene-yaro/back.svg",
  30773. extra: 4569 / 4377,
  30774. bottom: 69 / 4638
  30775. }
  30776. },
  30777. dressed: {
  30778. height: math.unit(6, "feet"),
  30779. weight: math.unit(150, "lb"),
  30780. name: "Dressed",
  30781. image: {
  30782. source: "./media/characters/casselene-yaro/dressed.svg",
  30783. extra: 4721 / 4541,
  30784. bottom: 82 / 4803
  30785. }
  30786. },
  30787. maw: {
  30788. height: math.unit(1, "feet"),
  30789. name: "Maw",
  30790. image: {
  30791. source: "./media/characters/casselene-yaro/maw.svg"
  30792. }
  30793. },
  30794. },
  30795. [
  30796. {
  30797. name: "Macro",
  30798. height: math.unit(190, "feet"),
  30799. default: true
  30800. },
  30801. ]
  30802. ))
  30803. characterMakers.push(() => makeCharacter(
  30804. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30805. {
  30806. front: {
  30807. height: math.unit(10, "feet"),
  30808. weight: math.unit(15015, "lb"),
  30809. name: "Front",
  30810. image: {
  30811. source: "./media/characters/platine/front.svg",
  30812. extra: 1428/1353,
  30813. bottom: 31/1459
  30814. }
  30815. },
  30816. },
  30817. [
  30818. {
  30819. name: "Normal",
  30820. height: math.unit(10, "feet"),
  30821. default: true
  30822. },
  30823. {
  30824. name: "Macro",
  30825. height: math.unit(100, "feet")
  30826. },
  30827. {
  30828. name: "Megamacro",
  30829. height: math.unit(1000, "feet")
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(15 + 5 / 12, "feet"),
  30838. weight: math.unit(4600, "lb"),
  30839. name: "Front",
  30840. image: {
  30841. source: "./media/characters/neapolitan-ananassa/front.svg",
  30842. extra: 2903 / 2736,
  30843. bottom: 0 / 2903
  30844. }
  30845. },
  30846. side: {
  30847. height: math.unit(15 + 5 / 12, "feet"),
  30848. weight: math.unit(4600, "lb"),
  30849. name: "Side",
  30850. image: {
  30851. source: "./media/characters/neapolitan-ananassa/side.svg",
  30852. extra: 2925 / 2719,
  30853. bottom: 0 / 2925
  30854. }
  30855. },
  30856. back: {
  30857. height: math.unit(15 + 5 / 12, "feet"),
  30858. weight: math.unit(4600, "lb"),
  30859. name: "Back",
  30860. image: {
  30861. source: "./media/characters/neapolitan-ananassa/back.svg",
  30862. extra: 2903 / 2736,
  30863. bottom: 0 / 2903
  30864. }
  30865. },
  30866. },
  30867. [
  30868. {
  30869. name: "Normal",
  30870. height: math.unit(15 + 5 / 12, "feet"),
  30871. default: true
  30872. },
  30873. {
  30874. name: "Post-Millenium",
  30875. height: math.unit(35 + 5 / 12, "feet")
  30876. },
  30877. {
  30878. name: "Post-Era",
  30879. height: math.unit(450 + 5 / 12, "feet")
  30880. },
  30881. ]
  30882. ))
  30883. characterMakers.push(() => makeCharacter(
  30884. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30885. {
  30886. front: {
  30887. height: math.unit(300, "meters"),
  30888. weight: math.unit(125000, "tonnes"),
  30889. name: "Front",
  30890. image: {
  30891. source: "./media/characters/pazuzu/front.svg",
  30892. extra: 877 / 794,
  30893. bottom: 47 / 924
  30894. }
  30895. },
  30896. },
  30897. [
  30898. {
  30899. name: "Macro",
  30900. height: math.unit(300, "meters"),
  30901. default: true
  30902. },
  30903. ]
  30904. ))
  30905. characterMakers.push(() => makeCharacter(
  30906. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30907. {
  30908. side: {
  30909. height: math.unit(10 + 7 / 12, "feet"),
  30910. weight: math.unit(2.5, "tons"),
  30911. name: "Side",
  30912. image: {
  30913. source: "./media/characters/aasha/side.svg",
  30914. extra: 1345 / 1245,
  30915. bottom: 111 / 1456
  30916. }
  30917. },
  30918. back: {
  30919. height: math.unit(10 + 7 / 12, "feet"),
  30920. weight: math.unit(2.5, "tons"),
  30921. name: "Back",
  30922. image: {
  30923. source: "./media/characters/aasha/back.svg",
  30924. extra: 1133 / 1057,
  30925. bottom: 257 / 1390
  30926. }
  30927. },
  30928. },
  30929. [
  30930. {
  30931. name: "Normal",
  30932. height: math.unit(10 + 7 / 12, "feet"),
  30933. default: true
  30934. },
  30935. ]
  30936. ))
  30937. characterMakers.push(() => makeCharacter(
  30938. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30939. {
  30940. front: {
  30941. height: math.unit(6 + 3 / 12, "feet"),
  30942. name: "Front",
  30943. image: {
  30944. source: "./media/characters/nevan/front.svg",
  30945. extra: 704 / 704,
  30946. bottom: 28 / 732
  30947. }
  30948. },
  30949. back: {
  30950. height: math.unit(6 + 3 / 12, "feet"),
  30951. name: "Back",
  30952. image: {
  30953. source: "./media/characters/nevan/back.svg",
  30954. extra: 714 / 714,
  30955. bottom: 21 / 735
  30956. }
  30957. },
  30958. frontFlaccid: {
  30959. height: math.unit(6 + 3 / 12, "feet"),
  30960. name: "Front (Flaccid)",
  30961. image: {
  30962. source: "./media/characters/nevan/front-flaccid.svg",
  30963. extra: 704 / 704,
  30964. bottom: 28 / 732
  30965. }
  30966. },
  30967. frontErect: {
  30968. height: math.unit(6 + 3 / 12, "feet"),
  30969. name: "Front (Erect)",
  30970. image: {
  30971. source: "./media/characters/nevan/front-erect.svg",
  30972. extra: 704 / 704,
  30973. bottom: 28 / 732
  30974. }
  30975. },
  30976. backFlaccid: {
  30977. height: math.unit(6 + 3 / 12, "feet"),
  30978. name: "Back (Flaccid)",
  30979. image: {
  30980. source: "./media/characters/nevan/back-flaccid.svg",
  30981. extra: 714 / 714,
  30982. bottom: 21 / 735
  30983. }
  30984. },
  30985. },
  30986. [
  30987. {
  30988. name: "Normal",
  30989. height: math.unit(6 + 3 / 12, "feet"),
  30990. default: true
  30991. },
  30992. ]
  30993. ))
  30994. characterMakers.push(() => makeCharacter(
  30995. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30996. {
  30997. front: {
  30998. height: math.unit(4, "feet"),
  30999. name: "Front",
  31000. image: {
  31001. source: "./media/characters/arhan/front.svg",
  31002. extra: 3368 / 3133,
  31003. bottom: 0 / 3368
  31004. }
  31005. },
  31006. side: {
  31007. height: math.unit(4, "feet"),
  31008. name: "Side",
  31009. image: {
  31010. source: "./media/characters/arhan/side.svg",
  31011. extra: 3347 / 3105,
  31012. bottom: 0 / 3347
  31013. }
  31014. },
  31015. tongue: {
  31016. height: math.unit(1.42, "feet"),
  31017. name: "Tongue",
  31018. image: {
  31019. source: "./media/characters/arhan/tongue.svg"
  31020. }
  31021. },
  31022. head: {
  31023. height: math.unit(0.85, "feet"),
  31024. name: "Head",
  31025. image: {
  31026. source: "./media/characters/arhan/head.svg"
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(4, "feet"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31040. {
  31041. front: {
  31042. height: math.unit(5 + 7.5 / 12, "feet"),
  31043. weight: math.unit(120, "lb"),
  31044. name: "Front",
  31045. image: {
  31046. source: "./media/characters/digi-duncan/front.svg",
  31047. extra: 330 / 326,
  31048. bottom: 16 / 346
  31049. }
  31050. },
  31051. side: {
  31052. height: math.unit(5 + 7.5 / 12, "feet"),
  31053. weight: math.unit(120, "lb"),
  31054. name: "Side",
  31055. image: {
  31056. source: "./media/characters/digi-duncan/side.svg",
  31057. extra: 341 / 337,
  31058. bottom: 1 / 342
  31059. }
  31060. },
  31061. back: {
  31062. height: math.unit(5 + 7.5 / 12, "feet"),
  31063. weight: math.unit(120, "lb"),
  31064. name: "Back",
  31065. image: {
  31066. source: "./media/characters/digi-duncan/back.svg",
  31067. extra: 330 / 326,
  31068. bottom: 12 / 342
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Speck",
  31075. height: math.unit(0.25, "mm")
  31076. },
  31077. {
  31078. name: "Micro",
  31079. height: math.unit(5, "mm")
  31080. },
  31081. {
  31082. name: "Tiny",
  31083. height: math.unit(0.5, "inches"),
  31084. default: true
  31085. },
  31086. {
  31087. name: "Human",
  31088. height: math.unit(5 + 7.5 / 12, "feet")
  31089. },
  31090. {
  31091. name: "Minigiant",
  31092. height: math.unit(8 + 5.25, "feet")
  31093. },
  31094. {
  31095. name: "Giant",
  31096. height: math.unit(2000, "feet")
  31097. },
  31098. {
  31099. name: "Mega",
  31100. height: math.unit(371.1, "miles")
  31101. },
  31102. ]
  31103. ))
  31104. characterMakers.push(() => makeCharacter(
  31105. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31106. {
  31107. front: {
  31108. height: math.unit(2, "meters"),
  31109. weight: math.unit(350, "kg"),
  31110. name: "Front",
  31111. image: {
  31112. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31113. extra: 898 / 838,
  31114. bottom: 9 / 907
  31115. }
  31116. },
  31117. },
  31118. [
  31119. {
  31120. name: "Micro",
  31121. height: math.unit(8, "meters")
  31122. },
  31123. {
  31124. name: "Normal",
  31125. height: math.unit(50, "meters"),
  31126. default: true
  31127. },
  31128. {
  31129. name: "Macro",
  31130. height: math.unit(500, "meters")
  31131. },
  31132. ]
  31133. ))
  31134. characterMakers.push(() => makeCharacter(
  31135. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31136. {
  31137. front: {
  31138. height: math.unit(6 + 6 / 12, "feet"),
  31139. name: "Front",
  31140. image: {
  31141. source: "./media/characters/khardesh/front.svg",
  31142. extra: 1788/1596,
  31143. bottom: 66/1854
  31144. }
  31145. },
  31146. back: {
  31147. height: math.unit(6 + 6 / 12, "feet"),
  31148. name: "Back",
  31149. image: {
  31150. source: "./media/characters/khardesh/back.svg",
  31151. extra: 1781/1584,
  31152. bottom: 68/1849
  31153. }
  31154. },
  31155. },
  31156. [
  31157. {
  31158. name: "Normal",
  31159. height: math.unit(6 + 6 / 12, "feet"),
  31160. default: true
  31161. },
  31162. {
  31163. name: "Normal+",
  31164. height: math.unit(4, "meters")
  31165. },
  31166. {
  31167. name: "Macro",
  31168. height: math.unit(50, "meters")
  31169. },
  31170. {
  31171. name: "Macro+",
  31172. height: math.unit(100, "meters")
  31173. },
  31174. {
  31175. name: "Megamacro",
  31176. height: math.unit(20, "km")
  31177. },
  31178. ]
  31179. ))
  31180. characterMakers.push(() => makeCharacter(
  31181. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31182. {
  31183. front: {
  31184. height: math.unit(6, "feet"),
  31185. weight: math.unit(150, "lb"),
  31186. name: "Front",
  31187. image: {
  31188. source: "./media/characters/kosho/front.svg",
  31189. extra: 1847 / 1847,
  31190. bottom: 86 / 1933
  31191. }
  31192. },
  31193. },
  31194. [
  31195. {
  31196. name: "Second-stage micro",
  31197. height: math.unit(0.5, "inches")
  31198. },
  31199. {
  31200. name: "First-stage micro",
  31201. height: math.unit(6, "inches")
  31202. },
  31203. {
  31204. name: "Normal",
  31205. height: math.unit(6, "feet"),
  31206. default: true
  31207. },
  31208. {
  31209. name: "First-stage macro",
  31210. height: math.unit(72, "feet")
  31211. },
  31212. {
  31213. name: "Second-stage macro",
  31214. height: math.unit(864, "feet")
  31215. },
  31216. ]
  31217. ))
  31218. characterMakers.push(() => makeCharacter(
  31219. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31220. {
  31221. normal: {
  31222. height: math.unit(4 + 6 / 12, "feet"),
  31223. name: "Normal",
  31224. image: {
  31225. source: "./media/characters/hydra/normal.svg",
  31226. extra: 2833 / 2634,
  31227. bottom: 68 / 2901
  31228. }
  31229. },
  31230. smol: {
  31231. height: math.unit(0.705, "inches"),
  31232. name: "Smol",
  31233. image: {
  31234. source: "./media/characters/hydra/smol.svg",
  31235. extra: 2715 / 2540,
  31236. bottom: 0 / 2715
  31237. }
  31238. },
  31239. },
  31240. [
  31241. {
  31242. name: "Normal",
  31243. height: math.unit(4 + 6 / 12, "feet"),
  31244. default: true
  31245. }
  31246. ]
  31247. ))
  31248. characterMakers.push(() => makeCharacter(
  31249. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31250. {
  31251. front: {
  31252. height: math.unit(0.6, "cm"),
  31253. name: "Front",
  31254. image: {
  31255. source: "./media/characters/daz/front.svg",
  31256. extra: 1682 / 1164,
  31257. bottom: 42 / 1724
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Normal",
  31264. height: math.unit(0.6, "cm"),
  31265. default: true
  31266. },
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31271. {
  31272. front: {
  31273. height: math.unit(6, "feet"),
  31274. weight: math.unit(235, "lb"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/theo-pangolin/front.svg",
  31278. extra: 1996 / 1969,
  31279. bottom: 115 / 2111
  31280. }
  31281. },
  31282. back: {
  31283. height: math.unit(6, "feet"),
  31284. weight: math.unit(235, "lb"),
  31285. name: "Back",
  31286. image: {
  31287. source: "./media/characters/theo-pangolin/back.svg",
  31288. extra: 1979 / 1979,
  31289. bottom: 40 / 2019
  31290. }
  31291. },
  31292. feral: {
  31293. height: math.unit(2, "feet"),
  31294. weight: math.unit(30, "lb"),
  31295. name: "Feral",
  31296. image: {
  31297. source: "./media/characters/theo-pangolin/feral.svg",
  31298. extra: 803 / 791,
  31299. bottom: 181 / 984
  31300. }
  31301. },
  31302. footFive: {
  31303. height: math.unit(1.43, "feet"),
  31304. name: "Foot (Five Toes)",
  31305. image: {
  31306. source: "./media/characters/theo-pangolin/foot-five.svg"
  31307. }
  31308. },
  31309. footFour: {
  31310. height: math.unit(1.43, "feet"),
  31311. name: "Foot (Four Toes)",
  31312. image: {
  31313. source: "./media/characters/theo-pangolin/foot-four.svg"
  31314. }
  31315. },
  31316. handFour: {
  31317. height: math.unit(0.81, "feet"),
  31318. name: "Hand (Four Fingers)",
  31319. image: {
  31320. source: "./media/characters/theo-pangolin/hand-four.svg"
  31321. }
  31322. },
  31323. handThree: {
  31324. height: math.unit(0.81, "feet"),
  31325. name: "Hand (Three Fingers)",
  31326. image: {
  31327. source: "./media/characters/theo-pangolin/hand-three.svg"
  31328. }
  31329. },
  31330. headFront: {
  31331. height: math.unit(1.37, "feet"),
  31332. name: "Head (Front)",
  31333. image: {
  31334. source: "./media/characters/theo-pangolin/head-front.svg"
  31335. }
  31336. },
  31337. headSide: {
  31338. height: math.unit(1.43, "feet"),
  31339. name: "Head (Side)",
  31340. image: {
  31341. source: "./media/characters/theo-pangolin/head-side.svg"
  31342. }
  31343. },
  31344. tongue: {
  31345. height: math.unit(2.29, "feet"),
  31346. name: "Tongue",
  31347. image: {
  31348. source: "./media/characters/theo-pangolin/tongue.svg"
  31349. }
  31350. },
  31351. },
  31352. [
  31353. {
  31354. name: "Normal",
  31355. height: math.unit(6, "feet")
  31356. },
  31357. {
  31358. name: "Macro",
  31359. height: math.unit(400, "feet"),
  31360. default: true
  31361. },
  31362. ]
  31363. ))
  31364. characterMakers.push(() => makeCharacter(
  31365. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31366. {
  31367. front: {
  31368. height: math.unit(6, "inches"),
  31369. weight: math.unit(0.036, "kg"),
  31370. name: "Front",
  31371. image: {
  31372. source: "./media/characters/renée/front.svg",
  31373. extra: 900 / 886,
  31374. bottom: 8 / 908
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Nano",
  31381. height: math.unit(1, "nm")
  31382. },
  31383. {
  31384. name: "Micro",
  31385. height: math.unit(1, "mm")
  31386. },
  31387. {
  31388. name: "Normal",
  31389. height: math.unit(6, "inches")
  31390. },
  31391. {
  31392. name: "Macro",
  31393. height: math.unit(2000, "feet"),
  31394. default: true
  31395. },
  31396. {
  31397. name: "Megamacro",
  31398. height: math.unit(2, "km")
  31399. },
  31400. {
  31401. name: "Gigamacro",
  31402. height: math.unit(2000, "km")
  31403. },
  31404. {
  31405. name: "Teramacro",
  31406. height: math.unit(250000, "km")
  31407. },
  31408. ]
  31409. ))
  31410. characterMakers.push(() => makeCharacter(
  31411. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31412. {
  31413. front: {
  31414. height: math.unit(4, "meters"),
  31415. weight: math.unit(150, "kg"),
  31416. name: "Front",
  31417. image: {
  31418. source: "./media/characters/caledvwlch/front.svg",
  31419. extra: 1760 / 1551,
  31420. bottom: 28 / 1788
  31421. }
  31422. },
  31423. side: {
  31424. height: math.unit(4, "meters"),
  31425. weight: math.unit(150, "kg"),
  31426. name: "Side",
  31427. image: {
  31428. source: "./media/characters/caledvwlch/side.svg",
  31429. extra: 1605 / 1536,
  31430. bottom: 31 / 1636
  31431. }
  31432. },
  31433. back: {
  31434. height: math.unit(4, "meters"),
  31435. weight: math.unit(150, "kg"),
  31436. name: "Back",
  31437. image: {
  31438. source: "./media/characters/caledvwlch/back.svg",
  31439. extra: 1635 / 1565,
  31440. bottom: 27 / 1662
  31441. }
  31442. },
  31443. },
  31444. [
  31445. {
  31446. name: "\"Incognito\"",
  31447. height: math.unit(4, "meters")
  31448. },
  31449. {
  31450. name: "Small rampage",
  31451. height: math.unit(600, "meters")
  31452. },
  31453. {
  31454. name: "Mega",
  31455. height: math.unit(30, "km")
  31456. },
  31457. {
  31458. name: "Home-size",
  31459. height: math.unit(50, "km"),
  31460. default: true
  31461. },
  31462. {
  31463. name: "Giga",
  31464. height: math.unit(300, "km")
  31465. },
  31466. {
  31467. name: "Lounging",
  31468. height: math.unit(11000, "km")
  31469. },
  31470. {
  31471. name: "Planet snacking",
  31472. height: math.unit(2000000, "km")
  31473. },
  31474. ]
  31475. ))
  31476. characterMakers.push(() => makeCharacter(
  31477. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31478. {
  31479. front: {
  31480. height: math.unit(6, "feet"),
  31481. weight: math.unit(215, "lb"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/sapphire-svell/front.svg",
  31485. extra: 495 / 455,
  31486. bottom: 20 / 515
  31487. }
  31488. },
  31489. back: {
  31490. height: math.unit(6, "feet"),
  31491. weight: math.unit(216, "lb"),
  31492. name: "Back",
  31493. image: {
  31494. source: "./media/characters/sapphire-svell/back.svg",
  31495. extra: 497 / 477,
  31496. bottom: 7 / 504
  31497. }
  31498. },
  31499. maw: {
  31500. height: math.unit(1.57, "feet"),
  31501. name: "Maw",
  31502. image: {
  31503. source: "./media/characters/sapphire-svell/maw.svg"
  31504. }
  31505. },
  31506. foot: {
  31507. height: math.unit(1.07, "feet"),
  31508. name: "Foot",
  31509. image: {
  31510. source: "./media/characters/sapphire-svell/foot.svg"
  31511. }
  31512. },
  31513. toering: {
  31514. height: math.unit(1.7, "inch"),
  31515. name: "Toering",
  31516. image: {
  31517. source: "./media/characters/sapphire-svell/toering.svg"
  31518. }
  31519. },
  31520. },
  31521. [
  31522. {
  31523. name: "Normal",
  31524. height: math.unit(300, "feet"),
  31525. default: true
  31526. },
  31527. {
  31528. name: "Augmented",
  31529. height: math.unit(1250, "feet")
  31530. },
  31531. {
  31532. name: "Unleashed",
  31533. height: math.unit(3000, "feet")
  31534. },
  31535. ]
  31536. ))
  31537. characterMakers.push(() => makeCharacter(
  31538. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31539. {
  31540. side: {
  31541. height: math.unit(2 + 3 / 12, "feet"),
  31542. weight: math.unit(110, "lb"),
  31543. name: "Side",
  31544. image: {
  31545. source: "./media/characters/glitch-flux/side.svg",
  31546. extra: 997 / 805,
  31547. bottom: 20 / 1017
  31548. }
  31549. },
  31550. },
  31551. [
  31552. {
  31553. name: "Normal",
  31554. height: math.unit(2 + 3 / 12, "feet"),
  31555. default: true
  31556. },
  31557. ]
  31558. ))
  31559. characterMakers.push(() => makeCharacter(
  31560. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31561. {
  31562. front: {
  31563. height: math.unit(4, "meters"),
  31564. name: "Front",
  31565. image: {
  31566. source: "./media/characters/mid/front.svg",
  31567. extra: 507 / 476,
  31568. bottom: 17 / 524
  31569. }
  31570. },
  31571. back: {
  31572. height: math.unit(4, "meters"),
  31573. name: "Back",
  31574. image: {
  31575. source: "./media/characters/mid/back.svg",
  31576. extra: 519 / 487,
  31577. bottom: 7 / 526
  31578. }
  31579. },
  31580. stuck: {
  31581. height: math.unit(2.2, "meters"),
  31582. name: "Stuck",
  31583. image: {
  31584. source: "./media/characters/mid/stuck.svg",
  31585. extra: 1951 / 1869,
  31586. bottom: 88 / 2039
  31587. }
  31588. }
  31589. },
  31590. [
  31591. {
  31592. name: "Normal",
  31593. height: math.unit(4, "meters"),
  31594. default: true
  31595. },
  31596. {
  31597. name: "Big",
  31598. height: math.unit(10, "meters")
  31599. },
  31600. {
  31601. name: "Macro",
  31602. height: math.unit(800, "meters")
  31603. },
  31604. {
  31605. name: "Megamacro",
  31606. height: math.unit(100, "km")
  31607. },
  31608. {
  31609. name: "Overgrown",
  31610. height: math.unit(1, "parsec")
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31616. {
  31617. front: {
  31618. height: math.unit(2.5, "meters"),
  31619. weight: math.unit(225, "kg"),
  31620. name: "Front",
  31621. image: {
  31622. source: "./media/characters/iris/front.svg",
  31623. extra: 3348 / 3251,
  31624. bottom: 205 / 3553
  31625. }
  31626. },
  31627. maw: {
  31628. height: math.unit(0.56, "meter"),
  31629. name: "Maw",
  31630. image: {
  31631. source: "./media/characters/iris/maw.svg"
  31632. }
  31633. },
  31634. },
  31635. [
  31636. {
  31637. name: "Mewter cat",
  31638. height: math.unit(1.2, "meters")
  31639. },
  31640. {
  31641. name: "Normal",
  31642. height: math.unit(2.5, "meters"),
  31643. default: true
  31644. },
  31645. {
  31646. name: "Minimacro",
  31647. height: math.unit(18, "feet")
  31648. },
  31649. {
  31650. name: "Macro",
  31651. height: math.unit(180, "meters")
  31652. },
  31653. {
  31654. name: "Megamacro",
  31655. height: math.unit(2746, "meters")
  31656. },
  31657. ]
  31658. ))
  31659. characterMakers.push(() => makeCharacter(
  31660. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31661. {
  31662. front: {
  31663. height: math.unit(6, "feet"),
  31664. weight: math.unit(135, "lb"),
  31665. name: "Front",
  31666. image: {
  31667. source: "./media/characters/axel/front.svg",
  31668. extra: 908 / 908,
  31669. bottom: 58 / 966
  31670. }
  31671. },
  31672. side: {
  31673. height: math.unit(6, "feet"),
  31674. weight: math.unit(135, "lb"),
  31675. name: "Side",
  31676. image: {
  31677. source: "./media/characters/axel/side.svg",
  31678. extra: 958 / 958,
  31679. bottom: 11 / 969
  31680. }
  31681. },
  31682. back: {
  31683. height: math.unit(6, "feet"),
  31684. weight: math.unit(135, "lb"),
  31685. name: "Back",
  31686. image: {
  31687. source: "./media/characters/axel/back.svg",
  31688. extra: 887 / 887,
  31689. bottom: 34 / 921
  31690. }
  31691. },
  31692. head: {
  31693. height: math.unit(1.07, "feet"),
  31694. name: "Head",
  31695. image: {
  31696. source: "./media/characters/axel/head.svg"
  31697. }
  31698. },
  31699. beak: {
  31700. height: math.unit(1.4, "feet"),
  31701. name: "Beak",
  31702. image: {
  31703. source: "./media/characters/axel/beak.svg"
  31704. }
  31705. },
  31706. beakSide: {
  31707. height: math.unit(1.4, "feet"),
  31708. name: "Beak Side",
  31709. image: {
  31710. source: "./media/characters/axel/beak-side.svg"
  31711. }
  31712. },
  31713. sheath: {
  31714. height: math.unit(0.5, "feet"),
  31715. name: "Sheath",
  31716. image: {
  31717. source: "./media/characters/axel/sheath.svg"
  31718. }
  31719. },
  31720. dick: {
  31721. height: math.unit(0.98, "feet"),
  31722. name: "Dick",
  31723. image: {
  31724. source: "./media/characters/axel/dick.svg"
  31725. }
  31726. },
  31727. },
  31728. [
  31729. {
  31730. name: "Macro",
  31731. height: math.unit(68, "meters"),
  31732. default: true
  31733. },
  31734. ]
  31735. ))
  31736. characterMakers.push(() => makeCharacter(
  31737. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31738. {
  31739. front: {
  31740. height: math.unit(3.5, "meters"),
  31741. weight: math.unit(1200, "kg"),
  31742. name: "Front",
  31743. image: {
  31744. source: "./media/characters/joanna/front.svg",
  31745. extra: 1596 / 1488,
  31746. bottom: 29 / 1625
  31747. }
  31748. },
  31749. back: {
  31750. height: math.unit(3.5, "meters"),
  31751. weight: math.unit(1200, "kg"),
  31752. name: "Back",
  31753. image: {
  31754. source: "./media/characters/joanna/back.svg",
  31755. extra: 1594 / 1495,
  31756. bottom: 26 / 1620
  31757. }
  31758. },
  31759. frontShorts: {
  31760. height: math.unit(3.5, "meters"),
  31761. weight: math.unit(1200, "kg"),
  31762. name: "Front (Shorts)",
  31763. image: {
  31764. source: "./media/characters/joanna/front-shorts.svg",
  31765. extra: 1596 / 1488,
  31766. bottom: 29 / 1625
  31767. }
  31768. },
  31769. frontBiker: {
  31770. height: math.unit(3.5, "meters"),
  31771. weight: math.unit(1200, "kg"),
  31772. name: "Front (Biker)",
  31773. image: {
  31774. source: "./media/characters/joanna/front-biker.svg",
  31775. extra: 1596 / 1488,
  31776. bottom: 29 / 1625
  31777. }
  31778. },
  31779. backBiker: {
  31780. height: math.unit(3.5, "meters"),
  31781. weight: math.unit(1200, "kg"),
  31782. name: "Back (Biker)",
  31783. image: {
  31784. source: "./media/characters/joanna/back-biker.svg",
  31785. extra: 1594 / 1495,
  31786. bottom: 88 / 1682
  31787. }
  31788. },
  31789. bikeLeft: {
  31790. height: math.unit(2.4, "meters"),
  31791. weight: math.unit(1600, "kg"),
  31792. name: "Bike (Left)",
  31793. image: {
  31794. source: "./media/characters/joanna/bike-left.svg",
  31795. extra: 720 / 720,
  31796. bottom: 8 / 728
  31797. }
  31798. },
  31799. bikeRight: {
  31800. height: math.unit(2.4, "meters"),
  31801. weight: math.unit(1600, "kg"),
  31802. name: "Bike (Right)",
  31803. image: {
  31804. source: "./media/characters/joanna/bike-right.svg",
  31805. extra: 720 / 720,
  31806. bottom: 8 / 728
  31807. }
  31808. },
  31809. },
  31810. [
  31811. {
  31812. name: "Incognito",
  31813. height: math.unit(3.5, "meters")
  31814. },
  31815. {
  31816. name: "Casual Big",
  31817. height: math.unit(200, "meters")
  31818. },
  31819. {
  31820. name: "Macro",
  31821. height: math.unit(600, "meters")
  31822. },
  31823. {
  31824. name: "Original",
  31825. height: math.unit(20, "km"),
  31826. default: true
  31827. },
  31828. {
  31829. name: "Giga",
  31830. height: math.unit(400, "km")
  31831. },
  31832. {
  31833. name: "Lounging",
  31834. height: math.unit(1500, "km")
  31835. },
  31836. {
  31837. name: "Planetary",
  31838. height: math.unit(200000, "km")
  31839. },
  31840. ]
  31841. ))
  31842. characterMakers.push(() => makeCharacter(
  31843. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31844. {
  31845. front: {
  31846. height: math.unit(6, "feet"),
  31847. weight: math.unit(150, "lb"),
  31848. name: "Front",
  31849. image: {
  31850. source: "./media/characters/hugo-sigil/front.svg",
  31851. extra: 522 / 500,
  31852. bottom: 2 / 524
  31853. }
  31854. },
  31855. back: {
  31856. height: math.unit(6, "feet"),
  31857. weight: math.unit(150, "lb"),
  31858. name: "Back",
  31859. image: {
  31860. source: "./media/characters/hugo-sigil/back.svg",
  31861. extra: 519 / 495,
  31862. bottom: 5 / 524
  31863. }
  31864. },
  31865. maw: {
  31866. height: math.unit(1.4, "feet"),
  31867. weight: math.unit(150, "lb"),
  31868. name: "Maw",
  31869. image: {
  31870. source: "./media/characters/hugo-sigil/maw.svg"
  31871. }
  31872. },
  31873. feet: {
  31874. height: math.unit(1.56, "feet"),
  31875. weight: math.unit(150, "lb"),
  31876. name: "Feet",
  31877. image: {
  31878. source: "./media/characters/hugo-sigil/feet.svg",
  31879. extra: 177 / 177,
  31880. bottom: 12 / 189
  31881. }
  31882. },
  31883. },
  31884. [
  31885. {
  31886. name: "Normal",
  31887. height: math.unit(6, "feet")
  31888. },
  31889. {
  31890. name: "Macro",
  31891. height: math.unit(200, "feet"),
  31892. default: true
  31893. },
  31894. ]
  31895. ))
  31896. characterMakers.push(() => makeCharacter(
  31897. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31898. {
  31899. front: {
  31900. height: math.unit(6, "feet"),
  31901. weight: math.unit(150, "lb"),
  31902. name: "Front",
  31903. image: {
  31904. source: "./media/characters/peri/front.svg",
  31905. extra: 2354 / 2233,
  31906. bottom: 49 / 2403
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Really Small",
  31913. height: math.unit(1, "nm")
  31914. },
  31915. {
  31916. name: "Micro",
  31917. height: math.unit(4, "inches")
  31918. },
  31919. {
  31920. name: "Normal",
  31921. height: math.unit(7, "inches"),
  31922. default: true
  31923. },
  31924. {
  31925. name: "Macro",
  31926. height: math.unit(400, "feet")
  31927. },
  31928. {
  31929. name: "Megamacro",
  31930. height: math.unit(100, "miles")
  31931. },
  31932. ]
  31933. ))
  31934. characterMakers.push(() => makeCharacter(
  31935. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31936. {
  31937. frontSlim: {
  31938. height: math.unit(7, "feet"),
  31939. name: "Front (Slim)",
  31940. image: {
  31941. source: "./media/characters/issilora/front-slim.svg",
  31942. extra: 529 / 449,
  31943. bottom: 53 / 582
  31944. }
  31945. },
  31946. sideSlim: {
  31947. height: math.unit(7, "feet"),
  31948. name: "Side (Slim)",
  31949. image: {
  31950. source: "./media/characters/issilora/side-slim.svg",
  31951. extra: 570 / 480,
  31952. bottom: 30 / 600
  31953. }
  31954. },
  31955. backSlim: {
  31956. height: math.unit(7, "feet"),
  31957. name: "Back (Slim)",
  31958. image: {
  31959. source: "./media/characters/issilora/back-slim.svg",
  31960. extra: 537 / 455,
  31961. bottom: 46 / 583
  31962. }
  31963. },
  31964. frontBuff: {
  31965. height: math.unit(7, "feet"),
  31966. name: "Front (Buff)",
  31967. image: {
  31968. source: "./media/characters/issilora/front-buff.svg",
  31969. extra: 2310 / 2035,
  31970. bottom: 335 / 2645
  31971. }
  31972. },
  31973. head: {
  31974. height: math.unit(1.94, "feet"),
  31975. name: "Head",
  31976. image: {
  31977. source: "./media/characters/issilora/head.svg"
  31978. }
  31979. },
  31980. },
  31981. [
  31982. {
  31983. name: "Minimum",
  31984. height: math.unit(7, "feet")
  31985. },
  31986. {
  31987. name: "Comfortable",
  31988. height: math.unit(17, "feet")
  31989. },
  31990. {
  31991. name: "Fun Size",
  31992. height: math.unit(47, "feet")
  31993. },
  31994. {
  31995. name: "Natural Macro",
  31996. height: math.unit(137, "feet"),
  31997. default: true
  31998. },
  31999. {
  32000. name: "Maximum Kaiju",
  32001. height: math.unit(397, "feet")
  32002. },
  32003. ]
  32004. ))
  32005. characterMakers.push(() => makeCharacter(
  32006. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32007. {
  32008. front: {
  32009. height: math.unit(50 + 9/12, "feet"),
  32010. weight: math.unit(32.8, "tons"),
  32011. name: "Front",
  32012. image: {
  32013. source: "./media/characters/irb'iiritaahn/front.svg",
  32014. extra: 1878/1826,
  32015. bottom: 326/2204
  32016. }
  32017. },
  32018. back: {
  32019. height: math.unit(50 + 9/12, "feet"),
  32020. weight: math.unit(32.8, "tons"),
  32021. name: "Back",
  32022. image: {
  32023. source: "./media/characters/irb'iiritaahn/back.svg",
  32024. extra: 2052/2018,
  32025. bottom: 152/2204
  32026. }
  32027. },
  32028. head: {
  32029. height: math.unit(12.86, "feet"),
  32030. name: "Head",
  32031. image: {
  32032. source: "./media/characters/irb'iiritaahn/head.svg"
  32033. }
  32034. },
  32035. maw: {
  32036. height: math.unit(9.66, "feet"),
  32037. name: "Maw",
  32038. image: {
  32039. source: "./media/characters/irb'iiritaahn/maw.svg"
  32040. }
  32041. },
  32042. frontDick: {
  32043. height: math.unit(8.78461, "feet"),
  32044. name: "Front Dick",
  32045. image: {
  32046. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32047. }
  32048. },
  32049. rearDick: {
  32050. height: math.unit(8.78461, "feet"),
  32051. name: "Rear Dick",
  32052. image: {
  32053. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32054. }
  32055. },
  32056. rearDickUnfolded: {
  32057. height: math.unit(8.78, "feet"),
  32058. name: "Rear Dick (Unfolded)",
  32059. image: {
  32060. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32061. }
  32062. },
  32063. wings: {
  32064. height: math.unit(43, "feet"),
  32065. name: "Wings",
  32066. image: {
  32067. source: "./media/characters/irb'iiritaahn/wings.svg"
  32068. }
  32069. },
  32070. },
  32071. [
  32072. {
  32073. name: "Macro",
  32074. height: math.unit(50 + 9/12, "feet"),
  32075. default: true
  32076. },
  32077. ]
  32078. ))
  32079. characterMakers.push(() => makeCharacter(
  32080. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32081. {
  32082. front: {
  32083. height: math.unit(205, "cm"),
  32084. weight: math.unit(102, "kg"),
  32085. name: "Front",
  32086. image: {
  32087. source: "./media/characters/irbisgreif/front.svg",
  32088. extra: 785/706,
  32089. bottom: 13/798
  32090. }
  32091. },
  32092. back: {
  32093. height: math.unit(205, "cm"),
  32094. weight: math.unit(102, "kg"),
  32095. name: "Back",
  32096. image: {
  32097. source: "./media/characters/irbisgreif/back.svg",
  32098. extra: 713/701,
  32099. bottom: 26/739
  32100. }
  32101. },
  32102. frontDressed: {
  32103. height: math.unit(216, "cm"),
  32104. weight: math.unit(102, "kg"),
  32105. name: "Front-dressed",
  32106. image: {
  32107. source: "./media/characters/irbisgreif/front-dressed.svg",
  32108. extra: 902/776,
  32109. bottom: 14/916
  32110. }
  32111. },
  32112. sideDressed: {
  32113. height: math.unit(195, "cm"),
  32114. weight: math.unit(102, "kg"),
  32115. name: "Side-dressed",
  32116. image: {
  32117. source: "./media/characters/irbisgreif/side-dressed.svg",
  32118. extra: 788/688,
  32119. bottom: 21/809
  32120. }
  32121. },
  32122. backDressed: {
  32123. height: math.unit(216, "cm"),
  32124. weight: math.unit(102, "kg"),
  32125. name: "Back-dressed",
  32126. image: {
  32127. source: "./media/characters/irbisgreif/back-dressed.svg",
  32128. extra: 901/783,
  32129. bottom: 10/911
  32130. }
  32131. },
  32132. dick: {
  32133. height: math.unit(0.49, "feet"),
  32134. name: "Dick",
  32135. image: {
  32136. source: "./media/characters/irbisgreif/dick.svg"
  32137. }
  32138. },
  32139. wingTop: {
  32140. height: math.unit(1.93 , "feet"),
  32141. name: "Wing-top",
  32142. image: {
  32143. source: "./media/characters/irbisgreif/wing-top.svg"
  32144. }
  32145. },
  32146. wingBottom: {
  32147. height: math.unit(1.93 , "feet"),
  32148. name: "Wing-bottom",
  32149. image: {
  32150. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32151. }
  32152. },
  32153. },
  32154. [
  32155. {
  32156. name: "Normal",
  32157. height: math.unit(216, "cm"),
  32158. default: true
  32159. },
  32160. ]
  32161. ))
  32162. characterMakers.push(() => makeCharacter(
  32163. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32164. {
  32165. front: {
  32166. height: math.unit(6, "feet"),
  32167. weight: math.unit(150, "lb"),
  32168. name: "Front",
  32169. image: {
  32170. source: "./media/characters/pride/front.svg",
  32171. extra: 1299/1230,
  32172. bottom: 18/1317
  32173. }
  32174. },
  32175. },
  32176. [
  32177. {
  32178. name: "Normal",
  32179. height: math.unit(7, "feet")
  32180. },
  32181. {
  32182. name: "Mini-macro",
  32183. height: math.unit(11, "feet")
  32184. },
  32185. {
  32186. name: "Macro",
  32187. height: math.unit(15, "meters"),
  32188. default: true
  32189. },
  32190. {
  32191. name: "Macro+",
  32192. height: math.unit(40, "meters")
  32193. },
  32194. ]
  32195. ))
  32196. characterMakers.push(() => makeCharacter(
  32197. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32198. {
  32199. front: {
  32200. height: math.unit(4 + 2 / 12, "feet"),
  32201. weight: math.unit(95, "lb"),
  32202. name: "Front",
  32203. image: {
  32204. source: "./media/characters/vaelophis-nyx/front.svg",
  32205. extra: 2532/2330,
  32206. bottom: 0/2532
  32207. }
  32208. },
  32209. back: {
  32210. height: math.unit(4 + 2 / 12, "feet"),
  32211. weight: math.unit(95, "lb"),
  32212. name: "Back",
  32213. image: {
  32214. source: "./media/characters/vaelophis-nyx/back.svg",
  32215. extra: 2484/2361,
  32216. bottom: 0/2484
  32217. }
  32218. },
  32219. feralSide: {
  32220. height: math.unit(2 + 1/12, "feet"),
  32221. weight: math.unit(20, "lb"),
  32222. name: "Feral (Side)",
  32223. image: {
  32224. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32225. extra: 1721/1581,
  32226. bottom: 70/1791
  32227. }
  32228. },
  32229. feralLazing: {
  32230. height: math.unit(1.08, "feet"),
  32231. weight: math.unit(20, "lb"),
  32232. name: "Feral (Lazing)",
  32233. image: {
  32234. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32235. extra: 822/822,
  32236. bottom: 248/1070
  32237. }
  32238. },
  32239. ear: {
  32240. height: math.unit(0.416, "feet"),
  32241. name: "Ear",
  32242. image: {
  32243. source: "./media/characters/vaelophis-nyx/ear.svg"
  32244. }
  32245. },
  32246. eye: {
  32247. height: math.unit(0.0748, "feet"),
  32248. name: "Eye",
  32249. image: {
  32250. source: "./media/characters/vaelophis-nyx/eye.svg"
  32251. }
  32252. },
  32253. mouth: {
  32254. height: math.unit(0.378, "feet"),
  32255. name: "Mouth",
  32256. image: {
  32257. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32258. }
  32259. },
  32260. spade: {
  32261. height: math.unit(0.55, "feet"),
  32262. name: "Spade",
  32263. image: {
  32264. source: "./media/characters/vaelophis-nyx/spade.svg"
  32265. }
  32266. },
  32267. },
  32268. [
  32269. {
  32270. name: "Normal",
  32271. height: math.unit(4 + 2/12, "feet"),
  32272. default: true
  32273. },
  32274. ]
  32275. ))
  32276. characterMakers.push(() => makeCharacter(
  32277. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32278. {
  32279. front: {
  32280. height: math.unit(7, "feet"),
  32281. weight: math.unit(231, "lb"),
  32282. name: "Front",
  32283. image: {
  32284. source: "./media/characters/flux/front.svg",
  32285. extra: 919/871,
  32286. bottom: 0/919
  32287. }
  32288. },
  32289. back: {
  32290. height: math.unit(7, "feet"),
  32291. weight: math.unit(231, "lb"),
  32292. name: "Back",
  32293. image: {
  32294. source: "./media/characters/flux/back.svg",
  32295. extra: 1040/992,
  32296. bottom: 0/1040
  32297. }
  32298. },
  32299. frontDressed: {
  32300. height: math.unit(7, "feet"),
  32301. weight: math.unit(231, "lb"),
  32302. name: "Front (Dressed)",
  32303. image: {
  32304. source: "./media/characters/flux/front-dressed.svg",
  32305. extra: 919/871,
  32306. bottom: 0/919
  32307. }
  32308. },
  32309. feralSide: {
  32310. height: math.unit(5, "feet"),
  32311. weight: math.unit(150, "lb"),
  32312. name: "Feral (Side)",
  32313. image: {
  32314. source: "./media/characters/flux/feral-side.svg",
  32315. extra: 598/528,
  32316. bottom: 28/626
  32317. }
  32318. },
  32319. head: {
  32320. height: math.unit(1.585, "feet"),
  32321. name: "Head",
  32322. image: {
  32323. source: "./media/characters/flux/head.svg"
  32324. }
  32325. },
  32326. headSide: {
  32327. height: math.unit(1.74, "feet"),
  32328. name: "Head (Side)",
  32329. image: {
  32330. source: "./media/characters/flux/head-side.svg"
  32331. }
  32332. },
  32333. headSideFire: {
  32334. height: math.unit(1.76, "feet"),
  32335. name: "Head (Side, Fire)",
  32336. image: {
  32337. source: "./media/characters/flux/head-side-fire.svg"
  32338. }
  32339. },
  32340. },
  32341. [
  32342. {
  32343. name: "Normal",
  32344. height: math.unit(7, "feet"),
  32345. default: true
  32346. },
  32347. ]
  32348. ))
  32349. characterMakers.push(() => makeCharacter(
  32350. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32351. {
  32352. front: {
  32353. height: math.unit(9, "feet"),
  32354. weight: math.unit(1012, "lb"),
  32355. name: "Front",
  32356. image: {
  32357. source: "./media/characters/ulfra-lupae/front.svg",
  32358. extra: 1083/1011,
  32359. bottom: 67/1150
  32360. }
  32361. },
  32362. },
  32363. [
  32364. {
  32365. name: "Micro",
  32366. height: math.unit(6, "inches")
  32367. },
  32368. {
  32369. name: "Socializing",
  32370. height: math.unit(6 + 5/12, "feet")
  32371. },
  32372. {
  32373. name: "Normal",
  32374. height: math.unit(9, "feet"),
  32375. default: true
  32376. },
  32377. {
  32378. name: "Macro",
  32379. height: math.unit(150, "feet")
  32380. },
  32381. ]
  32382. ))
  32383. characterMakers.push(() => makeCharacter(
  32384. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32385. {
  32386. front: {
  32387. height: math.unit(5 + 2/12, "feet"),
  32388. weight: math.unit(120, "lb"),
  32389. name: "Front",
  32390. image: {
  32391. source: "./media/characters/timber/front.svg",
  32392. extra: 2814/2705,
  32393. bottom: 181/2995
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Normal",
  32400. height: math.unit(5 + 2/12, "feet"),
  32401. default: true
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32407. {
  32408. front: {
  32409. height: math.unit(9, "feet"),
  32410. name: "Front",
  32411. image: {
  32412. source: "./media/characters/nicki/front.svg",
  32413. extra: 1240/990,
  32414. bottom: 45/1285
  32415. },
  32416. form: "anthro",
  32417. default: true
  32418. },
  32419. side: {
  32420. height: math.unit(9, "feet"),
  32421. name: "Side",
  32422. image: {
  32423. source: "./media/characters/nicki/side.svg",
  32424. extra: 1047/973,
  32425. bottom: 61/1108
  32426. },
  32427. form: "anthro"
  32428. },
  32429. back: {
  32430. height: math.unit(9, "feet"),
  32431. name: "Back",
  32432. image: {
  32433. source: "./media/characters/nicki/back.svg",
  32434. extra: 1006/965,
  32435. bottom: 39/1045
  32436. },
  32437. form: "anthro"
  32438. },
  32439. taur: {
  32440. height: math.unit(15, "feet"),
  32441. name: "Taur",
  32442. image: {
  32443. source: "./media/characters/nicki/taur.svg",
  32444. extra: 1592/1347,
  32445. bottom: 0/1592
  32446. },
  32447. form: "taur",
  32448. default: true
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Normal",
  32454. height: math.unit(9, "feet"),
  32455. form: "anthro",
  32456. default: true
  32457. },
  32458. {
  32459. name: "Normal",
  32460. height: math.unit(15, "feet"),
  32461. form: "taur",
  32462. default: true
  32463. }
  32464. ],
  32465. {
  32466. "anthro": {
  32467. name: "Anthro",
  32468. default: true
  32469. },
  32470. "taur": {
  32471. name: "Taur"
  32472. }
  32473. }
  32474. ))
  32475. characterMakers.push(() => makeCharacter(
  32476. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32477. {
  32478. front: {
  32479. height: math.unit(7 + 10/12, "feet"),
  32480. weight: math.unit(3.5, "tons"),
  32481. name: "Front",
  32482. image: {
  32483. source: "./media/characters/lee/front.svg",
  32484. extra: 1773/1615,
  32485. bottom: 86/1859
  32486. }
  32487. },
  32488. hand: {
  32489. height: math.unit(1.78, "feet"),
  32490. name: "Hand",
  32491. image: {
  32492. source: "./media/characters/lee/hand.svg"
  32493. }
  32494. },
  32495. maw: {
  32496. height: math.unit(1.18, "feet"),
  32497. name: "Maw",
  32498. image: {
  32499. source: "./media/characters/lee/maw.svg"
  32500. }
  32501. },
  32502. },
  32503. [
  32504. {
  32505. name: "Normal",
  32506. height: math.unit(7 + 10/12, "feet"),
  32507. default: true
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32513. {
  32514. front: {
  32515. height: math.unit(9, "feet"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/guti/front.svg",
  32519. extra: 4551/4355,
  32520. bottom: 123/4674
  32521. }
  32522. },
  32523. tongue: {
  32524. height: math.unit(1, "feet"),
  32525. name: "Tongue",
  32526. image: {
  32527. source: "./media/characters/guti/tongue.svg"
  32528. }
  32529. },
  32530. paw: {
  32531. height: math.unit(1.18, "feet"),
  32532. name: "Paw",
  32533. image: {
  32534. source: "./media/characters/guti/paw.svg"
  32535. }
  32536. },
  32537. },
  32538. [
  32539. {
  32540. name: "Normal",
  32541. height: math.unit(9, "feet"),
  32542. default: true
  32543. },
  32544. ]
  32545. ))
  32546. characterMakers.push(() => makeCharacter(
  32547. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32548. {
  32549. side: {
  32550. height: math.unit(5, "meters"),
  32551. name: "Side",
  32552. image: {
  32553. source: "./media/characters/vesper/side.svg",
  32554. extra: 1605/1518,
  32555. bottom: 0/1605
  32556. }
  32557. },
  32558. },
  32559. [
  32560. {
  32561. name: "Small",
  32562. height: math.unit(5, "meters")
  32563. },
  32564. {
  32565. name: "Sage",
  32566. height: math.unit(100, "meters"),
  32567. default: true
  32568. },
  32569. {
  32570. name: "Fun Size",
  32571. height: math.unit(600, "meters")
  32572. },
  32573. {
  32574. name: "Goddess",
  32575. height: math.unit(20000, "km")
  32576. },
  32577. {
  32578. name: "Maximum",
  32579. height: math.unit(5, "galaxies")
  32580. },
  32581. ]
  32582. ))
  32583. characterMakers.push(() => makeCharacter(
  32584. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32585. {
  32586. front: {
  32587. height: math.unit(6 + 3/12, "feet"),
  32588. weight: math.unit(190, "lb"),
  32589. name: "Front",
  32590. image: {
  32591. source: "./media/characters/gawain/front.svg",
  32592. extra: 2222/2139,
  32593. bottom: 90/2312
  32594. }
  32595. },
  32596. back: {
  32597. height: math.unit(6 + 3/12, "feet"),
  32598. weight: math.unit(190, "lb"),
  32599. name: "Back",
  32600. image: {
  32601. source: "./media/characters/gawain/back.svg",
  32602. extra: 2199/2111,
  32603. bottom: 73/2272
  32604. }
  32605. },
  32606. },
  32607. [
  32608. {
  32609. name: "Normal",
  32610. height: math.unit(6 + 3/12, "feet"),
  32611. default: true
  32612. },
  32613. ]
  32614. ))
  32615. characterMakers.push(() => makeCharacter(
  32616. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32617. {
  32618. side: {
  32619. height: math.unit(3.5, "meters"),
  32620. weight: math.unit(16000, "lb"),
  32621. name: "Side",
  32622. image: {
  32623. source: "./media/characters/dascalti/side.svg",
  32624. extra: 392/273,
  32625. bottom: 47/439
  32626. }
  32627. },
  32628. breath: {
  32629. height: math.unit(7.4, "feet"),
  32630. name: "Breath",
  32631. image: {
  32632. source: "./media/characters/dascalti/breath.svg"
  32633. }
  32634. },
  32635. fed: {
  32636. height: math.unit(3.6, "meters"),
  32637. weight: math.unit(16000, "lb"),
  32638. name: "Fed",
  32639. image: {
  32640. source: "./media/characters/dascalti/fed.svg",
  32641. extra: 1419/820,
  32642. bottom: 95/1514
  32643. }
  32644. },
  32645. },
  32646. [
  32647. {
  32648. name: "Normal",
  32649. height: math.unit(3.5, "meters"),
  32650. default: true
  32651. },
  32652. ]
  32653. ))
  32654. characterMakers.push(() => makeCharacter(
  32655. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32656. {
  32657. front: {
  32658. height: math.unit(3 + 5/12, "feet"),
  32659. name: "Front",
  32660. image: {
  32661. source: "./media/characters/mauve/front.svg",
  32662. extra: 1126/1033,
  32663. bottom: 65/1191
  32664. }
  32665. },
  32666. side: {
  32667. height: math.unit(3 + 5/12, "feet"),
  32668. name: "Side",
  32669. image: {
  32670. source: "./media/characters/mauve/side.svg",
  32671. extra: 1089/1001,
  32672. bottom: 29/1118
  32673. }
  32674. },
  32675. back: {
  32676. height: math.unit(3 + 5/12, "feet"),
  32677. name: "Back",
  32678. image: {
  32679. source: "./media/characters/mauve/back.svg",
  32680. extra: 1173/1053,
  32681. bottom: 109/1282
  32682. }
  32683. },
  32684. },
  32685. [
  32686. {
  32687. name: "Normal",
  32688. height: math.unit(3 + 5/12, "feet"),
  32689. default: true
  32690. },
  32691. ]
  32692. ))
  32693. characterMakers.push(() => makeCharacter(
  32694. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32695. {
  32696. front: {
  32697. height: math.unit(6 + 3/12, "feet"),
  32698. weight: math.unit(430, "lb"),
  32699. name: "Front",
  32700. image: {
  32701. source: "./media/characters/carlos/front.svg",
  32702. extra: 1964/1913,
  32703. bottom: 70/2034
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Normal",
  32710. height: math.unit(6 + 3/12, "feet"),
  32711. default: true
  32712. },
  32713. ]
  32714. ))
  32715. characterMakers.push(() => makeCharacter(
  32716. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32717. {
  32718. back: {
  32719. height: math.unit(5 + 10/12, "feet"),
  32720. weight: math.unit(200, "lb"),
  32721. name: "Back",
  32722. image: {
  32723. source: "./media/characters/jax/back.svg",
  32724. extra: 764/739,
  32725. bottom: 25/789
  32726. }
  32727. },
  32728. },
  32729. [
  32730. {
  32731. name: "Normal",
  32732. height: math.unit(5 + 10/12, "feet"),
  32733. default: true
  32734. },
  32735. ]
  32736. ))
  32737. characterMakers.push(() => makeCharacter(
  32738. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32739. {
  32740. front: {
  32741. height: math.unit(8, "feet"),
  32742. weight: math.unit(250, "lb"),
  32743. name: "Front",
  32744. image: {
  32745. source: "./media/characters/eikthynir/front.svg",
  32746. extra: 1332/1166,
  32747. bottom: 82/1414
  32748. }
  32749. },
  32750. back: {
  32751. height: math.unit(8, "feet"),
  32752. weight: math.unit(250, "lb"),
  32753. name: "Back",
  32754. image: {
  32755. source: "./media/characters/eikthynir/back.svg",
  32756. extra: 1342/1190,
  32757. bottom: 19/1361
  32758. }
  32759. },
  32760. dick: {
  32761. height: math.unit(2.35, "feet"),
  32762. name: "Dick",
  32763. image: {
  32764. source: "./media/characters/eikthynir/dick.svg"
  32765. }
  32766. },
  32767. },
  32768. [
  32769. {
  32770. name: "Normal",
  32771. height: math.unit(8, "feet"),
  32772. default: true
  32773. },
  32774. ]
  32775. ))
  32776. characterMakers.push(() => makeCharacter(
  32777. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32778. {
  32779. front: {
  32780. height: math.unit(99, "meters"),
  32781. weight: math.unit(13000, "tons"),
  32782. name: "Front",
  32783. image: {
  32784. source: "./media/characters/zlmos/front.svg",
  32785. extra: 2202/1992,
  32786. bottom: 315/2517
  32787. }
  32788. },
  32789. },
  32790. [
  32791. {
  32792. name: "Macro",
  32793. height: math.unit(99, "meters"),
  32794. default: true
  32795. },
  32796. ]
  32797. ))
  32798. characterMakers.push(() => makeCharacter(
  32799. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32800. {
  32801. front: {
  32802. height: math.unit(6 + 5/12, "feet"),
  32803. name: "Front",
  32804. image: {
  32805. source: "./media/characters/purri/front.svg",
  32806. extra: 1698/1610,
  32807. bottom: 32/1730
  32808. }
  32809. },
  32810. frontAlt: {
  32811. height: math.unit(6 + 5/12, "feet"),
  32812. name: "Front (Alt)",
  32813. image: {
  32814. source: "./media/characters/purri/front-alt.svg",
  32815. extra: 450/420,
  32816. bottom: 26/476
  32817. }
  32818. },
  32819. boots: {
  32820. height: math.unit(5.5, "feet"),
  32821. name: "Boots",
  32822. image: {
  32823. source: "./media/characters/purri/boots.svg",
  32824. extra: 905/853,
  32825. bottom: 18/923
  32826. }
  32827. },
  32828. lying: {
  32829. height: math.unit(2, "feet"),
  32830. name: "Lying",
  32831. image: {
  32832. source: "./media/characters/purri/lying.svg",
  32833. extra: 940/843,
  32834. bottom: 146/1086
  32835. }
  32836. },
  32837. devious: {
  32838. height: math.unit(1.77, "feet"),
  32839. name: "Devious",
  32840. image: {
  32841. source: "./media/characters/purri/devious.svg",
  32842. extra: 1440/1155,
  32843. bottom: 147/1587
  32844. }
  32845. },
  32846. bean: {
  32847. height: math.unit(1.94, "feet"),
  32848. name: "Bean",
  32849. image: {
  32850. source: "./media/characters/purri/bean.svg"
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Micro",
  32857. height: math.unit(1, "mm")
  32858. },
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(6 + 5/12, "feet"),
  32862. default: true
  32863. },
  32864. {
  32865. name: "Macro :3c",
  32866. height: math.unit(2, "miles")
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32872. {
  32873. front: {
  32874. height: math.unit(6 + 2/12, "feet"),
  32875. weight: math.unit(250, "lb"),
  32876. name: "Front",
  32877. image: {
  32878. source: "./media/characters/moonlight/front.svg",
  32879. extra: 1044/908,
  32880. bottom: 56/1100
  32881. }
  32882. },
  32883. feral: {
  32884. height: math.unit(3 + 1/12, "feet"),
  32885. weight: math.unit(50, "kg"),
  32886. name: "Feral",
  32887. image: {
  32888. source: "./media/characters/moonlight/feral.svg",
  32889. extra: 3705/2791,
  32890. bottom: 145/3850
  32891. }
  32892. },
  32893. paw: {
  32894. height: math.unit(1, "feet"),
  32895. name: "Paw",
  32896. image: {
  32897. source: "./media/characters/moonlight/paw.svg"
  32898. }
  32899. },
  32900. paws: {
  32901. height: math.unit(0.98, "feet"),
  32902. name: "Paws",
  32903. image: {
  32904. source: "./media/characters/moonlight/paws.svg",
  32905. extra: 939/939,
  32906. bottom: 50/989
  32907. }
  32908. },
  32909. mouth: {
  32910. height: math.unit(0.48, "feet"),
  32911. name: "Mouth",
  32912. image: {
  32913. source: "./media/characters/moonlight/mouth.svg"
  32914. }
  32915. },
  32916. dick: {
  32917. height: math.unit(1.46, "feet"),
  32918. name: "Dick",
  32919. image: {
  32920. source: "./media/characters/moonlight/dick.svg"
  32921. }
  32922. },
  32923. },
  32924. [
  32925. {
  32926. name: "Normal",
  32927. height: math.unit(6 + 2/12, "feet"),
  32928. default: true
  32929. },
  32930. {
  32931. name: "Macro",
  32932. height: math.unit(300, "feet")
  32933. },
  32934. {
  32935. name: "Macro+",
  32936. height: math.unit(1, "mile")
  32937. },
  32938. {
  32939. name: "Mt. Moon",
  32940. height: math.unit(5, "miles")
  32941. },
  32942. {
  32943. name: "Megamacro",
  32944. height: math.unit(15, "miles")
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32950. {
  32951. back: {
  32952. height: math.unit(6, "feet"),
  32953. weight: math.unit(150, "lb"),
  32954. name: "Back",
  32955. image: {
  32956. source: "./media/characters/sylen/back.svg",
  32957. extra: 1335/1273,
  32958. bottom: 107/1442
  32959. }
  32960. },
  32961. },
  32962. [
  32963. {
  32964. name: "Normal",
  32965. height: math.unit(5 + 5/12, "feet")
  32966. },
  32967. {
  32968. name: "Megamacro",
  32969. height: math.unit(3, "miles"),
  32970. default: true
  32971. },
  32972. ]
  32973. ))
  32974. characterMakers.push(() => makeCharacter(
  32975. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32976. {
  32977. front: {
  32978. height: math.unit(6, "feet"),
  32979. weight: math.unit(190, "lb"),
  32980. name: "Front",
  32981. image: {
  32982. source: "./media/characters/huttser/front.svg",
  32983. extra: 1152/1058,
  32984. bottom: 23/1175
  32985. }
  32986. },
  32987. side: {
  32988. height: math.unit(6, "feet"),
  32989. weight: math.unit(190, "lb"),
  32990. name: "Side",
  32991. image: {
  32992. source: "./media/characters/huttser/side.svg",
  32993. extra: 1174/1065,
  32994. bottom: 18/1192
  32995. }
  32996. },
  32997. back: {
  32998. height: math.unit(6, "feet"),
  32999. weight: math.unit(190, "lb"),
  33000. name: "Back",
  33001. image: {
  33002. source: "./media/characters/huttser/back.svg",
  33003. extra: 1158/1056,
  33004. bottom: 12/1170
  33005. }
  33006. },
  33007. },
  33008. [
  33009. ]
  33010. ))
  33011. characterMakers.push(() => makeCharacter(
  33012. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33013. {
  33014. side: {
  33015. height: math.unit(12 + 9/12, "feet"),
  33016. weight: math.unit(15000, "lb"),
  33017. name: "Side",
  33018. image: {
  33019. source: "./media/characters/faan/side.svg",
  33020. extra: 2747/2697,
  33021. bottom: 0/2747
  33022. }
  33023. },
  33024. front: {
  33025. height: math.unit(12 + 9/12, "feet"),
  33026. weight: math.unit(15000, "lb"),
  33027. name: "Front",
  33028. image: {
  33029. source: "./media/characters/faan/front.svg",
  33030. extra: 607/571,
  33031. bottom: 24/631
  33032. }
  33033. },
  33034. head: {
  33035. height: math.unit(2.85, "feet"),
  33036. name: "Head",
  33037. image: {
  33038. source: "./media/characters/faan/head.svg"
  33039. }
  33040. },
  33041. headAlt: {
  33042. height: math.unit(3.13, "feet"),
  33043. name: "Head-alt",
  33044. image: {
  33045. source: "./media/characters/faan/head-alt.svg"
  33046. }
  33047. },
  33048. },
  33049. [
  33050. {
  33051. name: "Normal",
  33052. height: math.unit(12 + 9/12, "feet"),
  33053. default: true
  33054. },
  33055. ]
  33056. ))
  33057. characterMakers.push(() => makeCharacter(
  33058. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33059. {
  33060. front: {
  33061. height: math.unit(6, "feet"),
  33062. weight: math.unit(300, "lb"),
  33063. name: "Front",
  33064. image: {
  33065. source: "./media/characters/tanio/front.svg",
  33066. extra: 711/673,
  33067. bottom: 25/736
  33068. }
  33069. },
  33070. },
  33071. [
  33072. {
  33073. name: "Normal",
  33074. height: math.unit(6, "feet"),
  33075. default: true
  33076. },
  33077. ]
  33078. ))
  33079. characterMakers.push(() => makeCharacter(
  33080. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33081. {
  33082. front: {
  33083. height: math.unit(3, "inches"),
  33084. name: "Front",
  33085. image: {
  33086. source: "./media/characters/noboru/front.svg",
  33087. extra: 1039/932,
  33088. bottom: 18/1057
  33089. }
  33090. },
  33091. },
  33092. [
  33093. {
  33094. name: "Micro",
  33095. height: math.unit(3, "inches"),
  33096. default: true
  33097. },
  33098. ]
  33099. ))
  33100. characterMakers.push(() => makeCharacter(
  33101. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33102. {
  33103. front: {
  33104. height: math.unit(1.85, "meters"),
  33105. weight: math.unit(80, "kg"),
  33106. name: "Front",
  33107. image: {
  33108. source: "./media/characters/daniel-barrett/front.svg",
  33109. extra: 355/337,
  33110. bottom: 9/364
  33111. }
  33112. },
  33113. },
  33114. [
  33115. {
  33116. name: "Pico",
  33117. height: math.unit(0.0433, "mm")
  33118. },
  33119. {
  33120. name: "Nano",
  33121. height: math.unit(1.5, "mm")
  33122. },
  33123. {
  33124. name: "Micro",
  33125. height: math.unit(5.3, "cm"),
  33126. default: true
  33127. },
  33128. {
  33129. name: "Normal",
  33130. height: math.unit(1.85, "meters")
  33131. },
  33132. {
  33133. name: "Macro",
  33134. height: math.unit(64.7, "meters")
  33135. },
  33136. {
  33137. name: "Megamacro",
  33138. height: math.unit(2.26, "km")
  33139. },
  33140. {
  33141. name: "Gigamacro",
  33142. height: math.unit(79, "km")
  33143. },
  33144. {
  33145. name: "Teramacro",
  33146. height: math.unit(2765, "km")
  33147. },
  33148. {
  33149. name: "Petamacro",
  33150. height: math.unit(96678, "km")
  33151. },
  33152. ]
  33153. ))
  33154. characterMakers.push(() => makeCharacter(
  33155. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33156. {
  33157. front: {
  33158. height: math.unit(30, "meters"),
  33159. weight: math.unit(400, "tons"),
  33160. name: "Front",
  33161. image: {
  33162. source: "./media/characters/zeel/front.svg",
  33163. extra: 2599/2599,
  33164. bottom: 226/2825
  33165. }
  33166. },
  33167. },
  33168. [
  33169. {
  33170. name: "Macro",
  33171. height: math.unit(30, "meters"),
  33172. default: true
  33173. },
  33174. ]
  33175. ))
  33176. characterMakers.push(() => makeCharacter(
  33177. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33178. {
  33179. front: {
  33180. height: math.unit(6 + 7/12, "feet"),
  33181. weight: math.unit(210, "lb"),
  33182. name: "Front",
  33183. image: {
  33184. source: "./media/characters/tarn/front.svg",
  33185. extra: 3517/3220,
  33186. bottom: 91/3608
  33187. }
  33188. },
  33189. back: {
  33190. height: math.unit(6 + 7/12, "feet"),
  33191. weight: math.unit(210, "lb"),
  33192. name: "Back",
  33193. image: {
  33194. source: "./media/characters/tarn/back.svg",
  33195. extra: 3566/3241,
  33196. bottom: 34/3600
  33197. }
  33198. },
  33199. dick: {
  33200. height: math.unit(1.65, "feet"),
  33201. name: "Dick",
  33202. image: {
  33203. source: "./media/characters/tarn/dick.svg"
  33204. }
  33205. },
  33206. paw: {
  33207. height: math.unit(1.80, "feet"),
  33208. name: "Paw",
  33209. image: {
  33210. source: "./media/characters/tarn/paw.svg"
  33211. }
  33212. },
  33213. tongue: {
  33214. height: math.unit(0.97, "feet"),
  33215. name: "Tongue",
  33216. image: {
  33217. source: "./media/characters/tarn/tongue.svg"
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Micro",
  33224. height: math.unit(4, "inches")
  33225. },
  33226. {
  33227. name: "Normal",
  33228. height: math.unit(6 + 7/12, "feet"),
  33229. default: true
  33230. },
  33231. {
  33232. name: "Macro",
  33233. height: math.unit(300, "feet")
  33234. },
  33235. ]
  33236. ))
  33237. characterMakers.push(() => makeCharacter(
  33238. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33239. {
  33240. front: {
  33241. height: math.unit(5 + 7/12, "feet"),
  33242. weight: math.unit(80, "kg"),
  33243. name: "Front",
  33244. image: {
  33245. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33246. extra: 3023/2865,
  33247. bottom: 33/3056
  33248. }
  33249. },
  33250. back: {
  33251. height: math.unit(5 + 7/12, "feet"),
  33252. weight: math.unit(80, "kg"),
  33253. name: "Back",
  33254. image: {
  33255. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33256. extra: 3020/2886,
  33257. bottom: 30/3050
  33258. }
  33259. },
  33260. dick: {
  33261. height: math.unit(0.98, "feet"),
  33262. name: "Dick",
  33263. image: {
  33264. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33265. }
  33266. },
  33267. anatomy: {
  33268. height: math.unit(2.86, "feet"),
  33269. name: "Anatomy",
  33270. image: {
  33271. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33272. }
  33273. },
  33274. },
  33275. [
  33276. {
  33277. name: "Really Small",
  33278. height: math.unit(2, "inches")
  33279. },
  33280. {
  33281. name: "Micro",
  33282. height: math.unit(5.583, "inches")
  33283. },
  33284. {
  33285. name: "Normal",
  33286. height: math.unit(5 + 7/12, "feet"),
  33287. default: true
  33288. },
  33289. {
  33290. name: "Macro",
  33291. height: math.unit(67, "feet")
  33292. },
  33293. {
  33294. name: "Megamacro",
  33295. height: math.unit(134, "feet")
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33301. {
  33302. front: {
  33303. height: math.unit(9, "feet"),
  33304. weight: math.unit(120, "lb"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/sally/front.svg",
  33308. extra: 1506/1349,
  33309. bottom: 66/1572
  33310. }
  33311. },
  33312. },
  33313. [
  33314. {
  33315. name: "Normal",
  33316. height: math.unit(9, "feet"),
  33317. default: true
  33318. },
  33319. ]
  33320. ))
  33321. characterMakers.push(() => makeCharacter(
  33322. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33323. {
  33324. front: {
  33325. height: math.unit(8, "feet"),
  33326. weight: math.unit(900, "lb"),
  33327. name: "Front",
  33328. image: {
  33329. source: "./media/characters/owen/front.svg",
  33330. extra: 1761/1657,
  33331. bottom: 74/1835
  33332. }
  33333. },
  33334. side: {
  33335. height: math.unit(8, "feet"),
  33336. weight: math.unit(900, "lb"),
  33337. name: "Side",
  33338. image: {
  33339. source: "./media/characters/owen/side.svg",
  33340. extra: 1797/1734,
  33341. bottom: 30/1827
  33342. }
  33343. },
  33344. back: {
  33345. height: math.unit(8, "feet"),
  33346. weight: math.unit(900, "lb"),
  33347. name: "Back",
  33348. image: {
  33349. source: "./media/characters/owen/back.svg",
  33350. extra: 1796/1706,
  33351. bottom: 59/1855
  33352. }
  33353. },
  33354. maw: {
  33355. height: math.unit(1.76, "feet"),
  33356. name: "Maw",
  33357. image: {
  33358. source: "./media/characters/owen/maw.svg"
  33359. }
  33360. },
  33361. },
  33362. [
  33363. {
  33364. name: "Normal",
  33365. height: math.unit(8, "feet"),
  33366. default: true
  33367. },
  33368. ]
  33369. ))
  33370. characterMakers.push(() => makeCharacter(
  33371. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33372. {
  33373. front: {
  33374. height: math.unit(4, "feet"),
  33375. weight: math.unit(400, "lb"),
  33376. name: "Front",
  33377. image: {
  33378. source: "./media/characters/ryth/front.svg",
  33379. extra: 1920/1748,
  33380. bottom: 42/1962
  33381. }
  33382. },
  33383. back: {
  33384. height: math.unit(4, "feet"),
  33385. weight: math.unit(400, "lb"),
  33386. name: "Back",
  33387. image: {
  33388. source: "./media/characters/ryth/back.svg",
  33389. extra: 1897/1690,
  33390. bottom: 89/1986
  33391. }
  33392. },
  33393. mouth: {
  33394. height: math.unit(1.39, "feet"),
  33395. name: "Mouth",
  33396. image: {
  33397. source: "./media/characters/ryth/mouth.svg"
  33398. }
  33399. },
  33400. tailmaw: {
  33401. height: math.unit(1.23, "feet"),
  33402. name: "Tailmaw",
  33403. image: {
  33404. source: "./media/characters/ryth/tailmaw.svg"
  33405. }
  33406. },
  33407. goia: {
  33408. height: math.unit(4, "meters"),
  33409. weight: math.unit(10800, "lb"),
  33410. name: "Goia",
  33411. image: {
  33412. source: "./media/characters/ryth/goia.svg",
  33413. extra: 745/640,
  33414. bottom: 107/852
  33415. }
  33416. },
  33417. goiaFront: {
  33418. height: math.unit(4, "meters"),
  33419. weight: math.unit(10800, "lb"),
  33420. name: "Goia (Front)",
  33421. image: {
  33422. source: "./media/characters/ryth/goia-front.svg",
  33423. extra: 750/586,
  33424. bottom: 114/864
  33425. }
  33426. },
  33427. goiaMaw: {
  33428. height: math.unit(5.55, "feet"),
  33429. name: "Goia Maw",
  33430. image: {
  33431. source: "./media/characters/ryth/goia-maw.svg"
  33432. }
  33433. },
  33434. goiaForepaw: {
  33435. height: math.unit(3.5, "feet"),
  33436. name: "Goia Forepaw",
  33437. image: {
  33438. source: "./media/characters/ryth/goia-forepaw.svg"
  33439. }
  33440. },
  33441. goiaHindpaw: {
  33442. height: math.unit(5.55, "feet"),
  33443. name: "Goia Hindpaw",
  33444. image: {
  33445. source: "./media/characters/ryth/goia-hindpaw.svg"
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(4, "feet"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(7, "feet"),
  33462. weight: math.unit(180, "lb"),
  33463. name: "Front",
  33464. image: {
  33465. source: "./media/characters/necrolance/front.svg",
  33466. extra: 1062/947,
  33467. bottom: 41/1103
  33468. }
  33469. },
  33470. back: {
  33471. height: math.unit(7, "feet"),
  33472. weight: math.unit(180, "lb"),
  33473. name: "Back",
  33474. image: {
  33475. source: "./media/characters/necrolance/back.svg",
  33476. extra: 1045/984,
  33477. bottom: 14/1059
  33478. }
  33479. },
  33480. wing: {
  33481. height: math.unit(2.67, "feet"),
  33482. name: "Wing",
  33483. image: {
  33484. source: "./media/characters/necrolance/wing.svg"
  33485. }
  33486. },
  33487. },
  33488. [
  33489. {
  33490. name: "Normal",
  33491. height: math.unit(7, "feet"),
  33492. default: true
  33493. },
  33494. ]
  33495. ))
  33496. characterMakers.push(() => makeCharacter(
  33497. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33498. {
  33499. front: {
  33500. height: math.unit(76, "meters"),
  33501. weight: math.unit(30000, "tons"),
  33502. name: "Front",
  33503. image: {
  33504. source: "./media/characters/tyler/front.svg",
  33505. extra: 1640/1640,
  33506. bottom: 114/1754
  33507. }
  33508. },
  33509. },
  33510. [
  33511. {
  33512. name: "Macro",
  33513. height: math.unit(76, "meters"),
  33514. default: true
  33515. },
  33516. ]
  33517. ))
  33518. characterMakers.push(() => makeCharacter(
  33519. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33520. {
  33521. front: {
  33522. height: math.unit(4 + 11/12, "feet"),
  33523. weight: math.unit(132, "lb"),
  33524. name: "Front",
  33525. image: {
  33526. source: "./media/characters/icey/front.svg",
  33527. extra: 2750/2550,
  33528. bottom: 33/2783
  33529. }
  33530. },
  33531. back: {
  33532. height: math.unit(4 + 11/12, "feet"),
  33533. weight: math.unit(132, "lb"),
  33534. name: "Back",
  33535. image: {
  33536. source: "./media/characters/icey/back.svg",
  33537. extra: 2624/2481,
  33538. bottom: 35/2659
  33539. }
  33540. },
  33541. },
  33542. [
  33543. {
  33544. name: "Normal",
  33545. height: math.unit(4 + 11/12, "feet"),
  33546. default: true
  33547. },
  33548. ]
  33549. ))
  33550. characterMakers.push(() => makeCharacter(
  33551. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33552. {
  33553. front: {
  33554. height: math.unit(100, "feet"),
  33555. weight: math.unit(0, "lb"),
  33556. name: "Front",
  33557. image: {
  33558. source: "./media/characters/smile/front.svg",
  33559. extra: 2983/2912,
  33560. bottom: 162/3145
  33561. }
  33562. },
  33563. back: {
  33564. height: math.unit(100, "feet"),
  33565. weight: math.unit(0, "lb"),
  33566. name: "Back",
  33567. image: {
  33568. source: "./media/characters/smile/back.svg",
  33569. extra: 3143/3031,
  33570. bottom: 91/3234
  33571. }
  33572. },
  33573. head: {
  33574. height: math.unit(26.3, "feet"),
  33575. weight: math.unit(0, "lb"),
  33576. name: "Head",
  33577. image: {
  33578. source: "./media/characters/smile/head.svg"
  33579. }
  33580. },
  33581. collar: {
  33582. height: math.unit(5.3, "feet"),
  33583. weight: math.unit(0, "lb"),
  33584. name: "Collar",
  33585. image: {
  33586. source: "./media/characters/smile/collar.svg"
  33587. }
  33588. },
  33589. },
  33590. [
  33591. {
  33592. name: "Macro",
  33593. height: math.unit(100, "feet"),
  33594. default: true
  33595. },
  33596. ]
  33597. ))
  33598. characterMakers.push(() => makeCharacter(
  33599. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33600. {
  33601. dragon: {
  33602. height: math.unit(26, "feet"),
  33603. weight: math.unit(36, "tons"),
  33604. name: "Dragon",
  33605. image: {
  33606. source: "./media/characters/arimphae/dragon.svg",
  33607. extra: 1574/983,
  33608. bottom: 357/1931
  33609. }
  33610. },
  33611. drake: {
  33612. height: math.unit(9, "feet"),
  33613. weight: math.unit(1.5, "tons"),
  33614. name: "Drake",
  33615. image: {
  33616. source: "./media/characters/arimphae/drake.svg",
  33617. extra: 1120/925,
  33618. bottom: 435/1555
  33619. }
  33620. },
  33621. },
  33622. [
  33623. {
  33624. name: "Small",
  33625. height: math.unit(26*5/9, "feet")
  33626. },
  33627. {
  33628. name: "Normal",
  33629. height: math.unit(26, "feet"),
  33630. default: true
  33631. },
  33632. ]
  33633. ))
  33634. characterMakers.push(() => makeCharacter(
  33635. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33636. {
  33637. front: {
  33638. height: math.unit(8 + 9/12, "feet"),
  33639. name: "Front",
  33640. image: {
  33641. source: "./media/characters/xander/front.svg",
  33642. extra: 1237/974,
  33643. bottom: 94/1331
  33644. }
  33645. },
  33646. },
  33647. [
  33648. {
  33649. name: "Normal",
  33650. height: math.unit(8 + 9/12, "feet"),
  33651. default: true
  33652. },
  33653. {
  33654. name: "Gaze Grabber",
  33655. height: math.unit(13 + 8/12, "feet")
  33656. },
  33657. {
  33658. name: "Jaw Dropper",
  33659. height: math.unit(27, "feet")
  33660. },
  33661. {
  33662. name: "Show Stopper",
  33663. height: math.unit(136, "feet")
  33664. },
  33665. {
  33666. name: "Superstar",
  33667. height: math.unit(1.9e6, "miles")
  33668. },
  33669. ]
  33670. ))
  33671. characterMakers.push(() => makeCharacter(
  33672. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33673. {
  33674. side: {
  33675. height: math.unit(2100, "feet"),
  33676. name: "Side",
  33677. image: {
  33678. source: "./media/characters/osiris/side.svg",
  33679. extra: 1105/939,
  33680. bottom: 167/1272
  33681. }
  33682. },
  33683. },
  33684. [
  33685. {
  33686. name: "Macro",
  33687. height: math.unit(2100, "feet"),
  33688. default: true
  33689. },
  33690. ]
  33691. ))
  33692. characterMakers.push(() => makeCharacter(
  33693. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33694. {
  33695. front: {
  33696. height: math.unit(6 + 8/12, "feet"),
  33697. weight: math.unit(225, "lb"),
  33698. name: "Front",
  33699. image: {
  33700. source: "./media/characters/rhys-londe/front.svg",
  33701. extra: 2258/2141,
  33702. bottom: 188/2446
  33703. }
  33704. },
  33705. back: {
  33706. height: math.unit(6 + 8/12, "feet"),
  33707. weight: math.unit(225, "lb"),
  33708. name: "Back",
  33709. image: {
  33710. source: "./media/characters/rhys-londe/back.svg",
  33711. extra: 2237/2137,
  33712. bottom: 63/2300
  33713. }
  33714. },
  33715. frontNsfw: {
  33716. height: math.unit(6 + 8/12, "feet"),
  33717. weight: math.unit(225, "lb"),
  33718. name: "Front (NSFW)",
  33719. image: {
  33720. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33721. extra: 2258/2141,
  33722. bottom: 188/2446
  33723. }
  33724. },
  33725. backNsfw: {
  33726. height: math.unit(6 + 8/12, "feet"),
  33727. weight: math.unit(225, "lb"),
  33728. name: "Back (NSFW)",
  33729. image: {
  33730. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33731. extra: 2237/2137,
  33732. bottom: 63/2300
  33733. }
  33734. },
  33735. dick: {
  33736. height: math.unit(30, "inches"),
  33737. name: "Dick",
  33738. image: {
  33739. source: "./media/characters/rhys-londe/dick.svg"
  33740. }
  33741. },
  33742. maw: {
  33743. height: math.unit(1.6, "feet"),
  33744. name: "Maw",
  33745. image: {
  33746. source: "./media/characters/rhys-londe/maw.svg"
  33747. }
  33748. },
  33749. },
  33750. [
  33751. {
  33752. name: "Normal",
  33753. height: math.unit(6 + 8/12, "feet"),
  33754. default: true
  33755. },
  33756. ]
  33757. ))
  33758. characterMakers.push(() => makeCharacter(
  33759. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33760. {
  33761. front: {
  33762. height: math.unit(3 + 10/12, "feet"),
  33763. weight: math.unit(90, "lb"),
  33764. name: "Front",
  33765. image: {
  33766. source: "./media/characters/taivas-ensim/front.svg",
  33767. extra: 1327/1216,
  33768. bottom: 96/1423
  33769. }
  33770. },
  33771. back: {
  33772. height: math.unit(3 + 10/12, "feet"),
  33773. weight: math.unit(90, "lb"),
  33774. name: "Back",
  33775. image: {
  33776. source: "./media/characters/taivas-ensim/back.svg",
  33777. extra: 1355/1247,
  33778. bottom: 11/1366
  33779. }
  33780. },
  33781. frontNsfw: {
  33782. height: math.unit(3 + 10/12, "feet"),
  33783. weight: math.unit(90, "lb"),
  33784. name: "Front (NSFW)",
  33785. image: {
  33786. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33787. extra: 1327/1216,
  33788. bottom: 96/1423
  33789. }
  33790. },
  33791. backNsfw: {
  33792. height: math.unit(3 + 10/12, "feet"),
  33793. weight: math.unit(90, "lb"),
  33794. name: "Back (NSFW)",
  33795. image: {
  33796. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33797. extra: 1355/1247,
  33798. bottom: 11/1366
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Normal",
  33805. height: math.unit(3 + 10/12, "feet"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(9 + 6/12, "feet"),
  33815. weight: math.unit(940, "lb"),
  33816. name: "Front",
  33817. image: {
  33818. source: "./media/characters/byliss/front.svg",
  33819. extra: 1327/1290,
  33820. bottom: 82/1409
  33821. }
  33822. },
  33823. back: {
  33824. height: math.unit(9 + 6/12, "feet"),
  33825. weight: math.unit(940, "lb"),
  33826. name: "Back",
  33827. image: {
  33828. source: "./media/characters/byliss/back.svg",
  33829. extra: 1376/1349,
  33830. bottom: 9/1385
  33831. }
  33832. },
  33833. frontNsfw: {
  33834. height: math.unit(9 + 6/12, "feet"),
  33835. weight: math.unit(940, "lb"),
  33836. name: "Front (NSFW)",
  33837. image: {
  33838. source: "./media/characters/byliss/front-nsfw.svg",
  33839. extra: 1327/1290,
  33840. bottom: 82/1409
  33841. }
  33842. },
  33843. backNsfw: {
  33844. height: math.unit(9 + 6/12, "feet"),
  33845. weight: math.unit(940, "lb"),
  33846. name: "Back (NSFW)",
  33847. image: {
  33848. source: "./media/characters/byliss/back-nsfw.svg",
  33849. extra: 1376/1349,
  33850. bottom: 9/1385
  33851. }
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Normal",
  33857. height: math.unit(9 + 6/12, "feet"),
  33858. default: true
  33859. },
  33860. ]
  33861. ))
  33862. characterMakers.push(() => makeCharacter(
  33863. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33864. {
  33865. front: {
  33866. height: math.unit(5 + 2/12, "feet"),
  33867. weight: math.unit(200, "lb"),
  33868. name: "Front",
  33869. image: {
  33870. source: "./media/characters/noraly/front.svg",
  33871. extra: 4985/4773,
  33872. bottom: 150/5135
  33873. }
  33874. },
  33875. full: {
  33876. height: math.unit(5 + 2/12, "feet"),
  33877. weight: math.unit(164, "lb"),
  33878. name: "Full",
  33879. image: {
  33880. source: "./media/characters/noraly/full.svg",
  33881. extra: 1114/1059,
  33882. bottom: 35/1149
  33883. }
  33884. },
  33885. fuller: {
  33886. height: math.unit(5 + 2/12, "feet"),
  33887. weight: math.unit(230, "lb"),
  33888. name: "Fuller",
  33889. image: {
  33890. source: "./media/characters/noraly/fuller.svg",
  33891. extra: 1114/1059,
  33892. bottom: 35/1149
  33893. }
  33894. },
  33895. fullest: {
  33896. height: math.unit(5 + 2/12, "feet"),
  33897. weight: math.unit(300, "lb"),
  33898. name: "Fullest",
  33899. image: {
  33900. source: "./media/characters/noraly/fullest.svg",
  33901. extra: 1114/1059,
  33902. bottom: 35/1149
  33903. }
  33904. },
  33905. },
  33906. [
  33907. {
  33908. name: "Normal",
  33909. height: math.unit(5 + 2/12, "feet"),
  33910. default: true
  33911. },
  33912. ]
  33913. ))
  33914. characterMakers.push(() => makeCharacter(
  33915. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33916. {
  33917. front: {
  33918. height: math.unit(5 + 2/12, "feet"),
  33919. weight: math.unit(210, "lb"),
  33920. name: "Front",
  33921. image: {
  33922. source: "./media/characters/pera/front.svg",
  33923. extra: 1560/1531,
  33924. bottom: 165/1725
  33925. }
  33926. },
  33927. back: {
  33928. height: math.unit(5 + 2/12, "feet"),
  33929. weight: math.unit(210, "lb"),
  33930. name: "Back",
  33931. image: {
  33932. source: "./media/characters/pera/back.svg",
  33933. extra: 1523/1493,
  33934. bottom: 152/1675
  33935. }
  33936. },
  33937. dick: {
  33938. height: math.unit(2.4, "feet"),
  33939. name: "Dick",
  33940. image: {
  33941. source: "./media/characters/pera/dick.svg"
  33942. }
  33943. },
  33944. },
  33945. [
  33946. {
  33947. name: "Normal",
  33948. height: math.unit(5 + 2/12, "feet"),
  33949. default: true
  33950. },
  33951. ]
  33952. ))
  33953. characterMakers.push(() => makeCharacter(
  33954. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33955. {
  33956. front: {
  33957. height: math.unit(12, "feet"),
  33958. weight: math.unit(3200, "lb"),
  33959. name: "Front",
  33960. image: {
  33961. source: "./media/characters/julian/front.svg",
  33962. extra: 2962/2701,
  33963. bottom: 184/3146
  33964. }
  33965. },
  33966. maw: {
  33967. height: math.unit(5.35, "feet"),
  33968. name: "Maw",
  33969. image: {
  33970. source: "./media/characters/julian/maw.svg"
  33971. }
  33972. },
  33973. paw: {
  33974. height: math.unit(3.07, "feet"),
  33975. name: "Paw",
  33976. image: {
  33977. source: "./media/characters/julian/paw.svg"
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Default",
  33984. height: math.unit(12, "feet"),
  33985. default: true
  33986. },
  33987. {
  33988. name: "Big",
  33989. height: math.unit(50, "feet")
  33990. },
  33991. {
  33992. name: "Really Big",
  33993. height: math.unit(1, "mile")
  33994. },
  33995. {
  33996. name: "Extremely Big",
  33997. height: math.unit(100, "miles")
  33998. },
  33999. {
  34000. name: "Planet Hugger",
  34001. height: math.unit(200, "megameters")
  34002. },
  34003. {
  34004. name: "Unreasonably Big",
  34005. height: math.unit(1e300, "meters")
  34006. },
  34007. ]
  34008. ))
  34009. characterMakers.push(() => makeCharacter(
  34010. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34011. {
  34012. solgooleo: {
  34013. height: math.unit(4, "meters"),
  34014. weight: math.unit(6000*1.5, "kg"),
  34015. volume: math.unit(6000, "liters"),
  34016. name: "Solgooleo",
  34017. image: {
  34018. source: "./media/characters/pi/solgooleo.svg",
  34019. extra: 388/331,
  34020. bottom: 29/417
  34021. }
  34022. },
  34023. },
  34024. [
  34025. {
  34026. name: "Normal",
  34027. height: math.unit(4, "meters"),
  34028. default: true
  34029. },
  34030. ]
  34031. ))
  34032. characterMakers.push(() => makeCharacter(
  34033. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34034. {
  34035. front: {
  34036. height: math.unit(8, "feet"),
  34037. weight: math.unit(4, "tons"),
  34038. name: "Front",
  34039. image: {
  34040. source: "./media/characters/shaun/front.svg",
  34041. extra: 503/495,
  34042. bottom: 20/523
  34043. }
  34044. },
  34045. back: {
  34046. height: math.unit(8, "feet"),
  34047. weight: math.unit(4, "tons"),
  34048. name: "Back",
  34049. image: {
  34050. source: "./media/characters/shaun/back.svg",
  34051. extra: 487/480,
  34052. bottom: 20/507
  34053. }
  34054. },
  34055. },
  34056. [
  34057. {
  34058. name: "Lorg",
  34059. height: math.unit(8, "feet"),
  34060. default: true
  34061. },
  34062. ]
  34063. ))
  34064. characterMakers.push(() => makeCharacter(
  34065. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34066. {
  34067. frontAnthro: {
  34068. height: math.unit(7, "feet"),
  34069. name: "Front",
  34070. image: {
  34071. source: "./media/characters/sini/front-anthro.svg",
  34072. extra: 726/678,
  34073. bottom: 35/761
  34074. },
  34075. form: "anthro",
  34076. default: true
  34077. },
  34078. backAnthro: {
  34079. height: math.unit(7, "feet"),
  34080. name: "Back",
  34081. image: {
  34082. source: "./media/characters/sini/back-anthro.svg",
  34083. extra: 743/701,
  34084. bottom: 12/755
  34085. },
  34086. form: "anthro",
  34087. },
  34088. frontAnthroNsfw: {
  34089. height: math.unit(7, "feet"),
  34090. name: "Front (NSFW)",
  34091. image: {
  34092. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34093. extra: 726/678,
  34094. bottom: 35/761
  34095. },
  34096. form: "anthro"
  34097. },
  34098. backAnthroNsfw: {
  34099. height: math.unit(7, "feet"),
  34100. name: "Back (NSFW)",
  34101. image: {
  34102. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34103. extra: 743/701,
  34104. bottom: 12/755
  34105. },
  34106. form: "anthro",
  34107. },
  34108. mawAnthro: {
  34109. height: math.unit(2.14, "feet"),
  34110. name: "Maw",
  34111. image: {
  34112. source: "./media/characters/sini/maw-anthro.svg"
  34113. },
  34114. form: "anthro"
  34115. },
  34116. dick: {
  34117. height: math.unit(1.45, "feet"),
  34118. name: "Dick",
  34119. image: {
  34120. source: "./media/characters/sini/dick-anthro.svg"
  34121. },
  34122. form: "anthro"
  34123. },
  34124. feral: {
  34125. height: math.unit(16, "feet"),
  34126. name: "Feral",
  34127. image: {
  34128. source: "./media/characters/sini/feral.svg",
  34129. extra: 814/605,
  34130. bottom: 11/825
  34131. },
  34132. form: "feral",
  34133. default: true
  34134. },
  34135. feralNsfw: {
  34136. height: math.unit(16, "feet"),
  34137. name: "Feral (NSFW)",
  34138. image: {
  34139. source: "./media/characters/sini/feral-nsfw.svg",
  34140. extra: 814/605,
  34141. bottom: 11/825
  34142. },
  34143. form: "feral"
  34144. },
  34145. mawFeral: {
  34146. height: math.unit(5.66, "feet"),
  34147. name: "Maw",
  34148. image: {
  34149. source: "./media/characters/sini/maw-feral.svg"
  34150. },
  34151. form: "feral",
  34152. },
  34153. pawFeral: {
  34154. height: math.unit(5.17, "feet"),
  34155. name: "Paw",
  34156. image: {
  34157. source: "./media/characters/sini/paw-feral.svg"
  34158. },
  34159. form: "feral",
  34160. },
  34161. rumpFeral: {
  34162. height: math.unit(13.11, "feet"),
  34163. name: "Rump",
  34164. image: {
  34165. source: "./media/characters/sini/rump-feral.svg"
  34166. },
  34167. form: "feral",
  34168. },
  34169. dickFeral: {
  34170. height: math.unit(1, "feet"),
  34171. name: "Dick",
  34172. image: {
  34173. source: "./media/characters/sini/dick-feral.svg"
  34174. },
  34175. form: "feral",
  34176. },
  34177. eyeFeral: {
  34178. height: math.unit(1.23, "feet"),
  34179. name: "Eye",
  34180. image: {
  34181. source: "./media/characters/sini/eye-feral.svg"
  34182. },
  34183. form: "feral",
  34184. },
  34185. },
  34186. [
  34187. {
  34188. name: "Normal",
  34189. height: math.unit(7, "feet"),
  34190. default: true,
  34191. form: "anthro"
  34192. },
  34193. {
  34194. name: "Normal",
  34195. height: math.unit(16, "feet"),
  34196. default: true,
  34197. form: "feral"
  34198. },
  34199. ],
  34200. {
  34201. "anthro": {
  34202. name: "Anthro",
  34203. default: true
  34204. },
  34205. "feral": {
  34206. name: "Feral",
  34207. }
  34208. }
  34209. ))
  34210. characterMakers.push(() => makeCharacter(
  34211. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34212. {
  34213. side: {
  34214. height: math.unit(47.2, "meters"),
  34215. weight: math.unit(10000, "tons"),
  34216. name: "Side",
  34217. image: {
  34218. source: "./media/characters/raylldo/side.svg",
  34219. extra: 2363/642,
  34220. bottom: 221/2584
  34221. }
  34222. },
  34223. top: {
  34224. height: math.unit(240, "meters"),
  34225. weight: math.unit(10000, "tons"),
  34226. name: "Top",
  34227. image: {
  34228. source: "./media/characters/raylldo/top.svg"
  34229. }
  34230. },
  34231. bottom: {
  34232. height: math.unit(240, "meters"),
  34233. weight: math.unit(10000, "tons"),
  34234. name: "Bottom",
  34235. image: {
  34236. source: "./media/characters/raylldo/bottom.svg"
  34237. }
  34238. },
  34239. head: {
  34240. height: math.unit(38.6, "meters"),
  34241. name: "Head",
  34242. image: {
  34243. source: "./media/characters/raylldo/head.svg",
  34244. extra: 1335/1112,
  34245. bottom: 0/1335
  34246. }
  34247. },
  34248. maw: {
  34249. height: math.unit(16.37, "meters"),
  34250. name: "Maw",
  34251. image: {
  34252. source: "./media/characters/raylldo/maw.svg",
  34253. extra: 883/660,
  34254. bottom: 0/883
  34255. },
  34256. extraAttributes: {
  34257. preyCapacity: {
  34258. name: "Capacity",
  34259. power: 3,
  34260. type: "volume",
  34261. base: math.unit(1000, "people")
  34262. },
  34263. tongueSize: {
  34264. name: "Tongue Size",
  34265. power: 2,
  34266. type: "area",
  34267. base: math.unit(21, "m^2")
  34268. }
  34269. }
  34270. },
  34271. forepaw: {
  34272. height: math.unit(18, "meters"),
  34273. name: "Forepaw",
  34274. image: {
  34275. source: "./media/characters/raylldo/forepaw.svg"
  34276. }
  34277. },
  34278. hindpaw: {
  34279. height: math.unit(23, "meters"),
  34280. name: "Hindpaw",
  34281. image: {
  34282. source: "./media/characters/raylldo/hindpaw.svg"
  34283. }
  34284. },
  34285. genitals: {
  34286. height: math.unit(42, "meters"),
  34287. name: "Genitals",
  34288. image: {
  34289. source: "./media/characters/raylldo/genitals.svg"
  34290. }
  34291. },
  34292. },
  34293. [
  34294. {
  34295. name: "Normal",
  34296. height: math.unit(47.2, "meters"),
  34297. default: true
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34303. {
  34304. anthroFront: {
  34305. height: math.unit(9, "feet"),
  34306. weight: math.unit(600, "lb"),
  34307. name: "Anthro (Front)",
  34308. image: {
  34309. source: "./media/characters/glint/anthro-front.svg",
  34310. extra: 1097/1018,
  34311. bottom: 28/1125
  34312. }
  34313. },
  34314. anthroBack: {
  34315. height: math.unit(9, "feet"),
  34316. weight: math.unit(600, "lb"),
  34317. name: "Anthro (Back)",
  34318. image: {
  34319. source: "./media/characters/glint/anthro-back.svg",
  34320. extra: 1154/997,
  34321. bottom: 36/1190
  34322. }
  34323. },
  34324. feral: {
  34325. height: math.unit(11, "feet"),
  34326. weight: math.unit(50000, "lb"),
  34327. name: "Feral",
  34328. image: {
  34329. source: "./media/characters/glint/feral.svg",
  34330. extra: 3035/1585,
  34331. bottom: 1169/4204
  34332. }
  34333. },
  34334. dickAnthro: {
  34335. height: math.unit(0.7, "meters"),
  34336. name: "Dick (Anthro)",
  34337. image: {
  34338. source: "./media/characters/glint/dick-anthro.svg"
  34339. }
  34340. },
  34341. dickFeral: {
  34342. height: math.unit(2.65, "meters"),
  34343. name: "Dick (Feral)",
  34344. image: {
  34345. source: "./media/characters/glint/dick-feral.svg"
  34346. }
  34347. },
  34348. slitHidden: {
  34349. height: math.unit(5.85, "meters"),
  34350. name: "Slit (Hidden)",
  34351. image: {
  34352. source: "./media/characters/glint/slit-hidden.svg"
  34353. }
  34354. },
  34355. slitErect: {
  34356. height: math.unit(5.85, "meters"),
  34357. name: "Slit (Erect)",
  34358. image: {
  34359. source: "./media/characters/glint/slit-erect.svg"
  34360. }
  34361. },
  34362. mawAnthro: {
  34363. height: math.unit(0.63, "meters"),
  34364. name: "Maw (Anthro)",
  34365. image: {
  34366. source: "./media/characters/glint/maw.svg"
  34367. }
  34368. },
  34369. mawFeral: {
  34370. height: math.unit(2.89, "meters"),
  34371. name: "Maw (Feral)",
  34372. image: {
  34373. source: "./media/characters/glint/maw.svg"
  34374. }
  34375. },
  34376. },
  34377. [
  34378. {
  34379. name: "Normal",
  34380. height: math.unit(9, "feet"),
  34381. default: true
  34382. },
  34383. ]
  34384. ))
  34385. characterMakers.push(() => makeCharacter(
  34386. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34387. {
  34388. side: {
  34389. height: math.unit(15, "feet"),
  34390. weight: math.unit(5000, "kg"),
  34391. name: "Side",
  34392. image: {
  34393. source: "./media/characters/kairne/side.svg",
  34394. extra: 979/811,
  34395. bottom: 13/992
  34396. }
  34397. },
  34398. front: {
  34399. height: math.unit(15, "feet"),
  34400. weight: math.unit(5000, "kg"),
  34401. name: "Front",
  34402. image: {
  34403. source: "./media/characters/kairne/front.svg",
  34404. extra: 908/814,
  34405. bottom: 26/934
  34406. }
  34407. },
  34408. sideNsfw: {
  34409. height: math.unit(15, "feet"),
  34410. weight: math.unit(5000, "kg"),
  34411. name: "Side (NSFW)",
  34412. image: {
  34413. source: "./media/characters/kairne/side-nsfw.svg",
  34414. extra: 979/811,
  34415. bottom: 13/992
  34416. }
  34417. },
  34418. frontNsfw: {
  34419. height: math.unit(15, "feet"),
  34420. weight: math.unit(5000, "kg"),
  34421. name: "Front (NSFW)",
  34422. image: {
  34423. source: "./media/characters/kairne/front-nsfw.svg",
  34424. extra: 908/814,
  34425. bottom: 26/934
  34426. }
  34427. },
  34428. dickCaged: {
  34429. height: math.unit(0.65, "meters"),
  34430. name: "Dick-caged",
  34431. image: {
  34432. source: "./media/characters/kairne/dick-caged.svg"
  34433. }
  34434. },
  34435. dick: {
  34436. height: math.unit(0.79, "meters"),
  34437. name: "Dick",
  34438. image: {
  34439. source: "./media/characters/kairne/dick.svg"
  34440. }
  34441. },
  34442. genitals: {
  34443. height: math.unit(1.29, "meters"),
  34444. name: "Genitals",
  34445. image: {
  34446. source: "./media/characters/kairne/genitals.svg"
  34447. }
  34448. },
  34449. maw: {
  34450. height: math.unit(1.73, "meters"),
  34451. name: "Maw",
  34452. image: {
  34453. source: "./media/characters/kairne/maw.svg"
  34454. }
  34455. },
  34456. },
  34457. [
  34458. {
  34459. name: "Normal",
  34460. height: math.unit(15, "feet"),
  34461. default: true
  34462. },
  34463. ]
  34464. ))
  34465. characterMakers.push(() => makeCharacter(
  34466. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34467. {
  34468. front: {
  34469. height: math.unit(5 + 8/12, "feet"),
  34470. weight: math.unit(139, "lb"),
  34471. name: "Front",
  34472. image: {
  34473. source: "./media/characters/biscuit-jackal/front.svg",
  34474. extra: 2106/1961,
  34475. bottom: 58/2164
  34476. }
  34477. },
  34478. back: {
  34479. height: math.unit(5 + 8/12, "feet"),
  34480. weight: math.unit(139, "lb"),
  34481. name: "Back",
  34482. image: {
  34483. source: "./media/characters/biscuit-jackal/back.svg",
  34484. extra: 2132/1976,
  34485. bottom: 57/2189
  34486. }
  34487. },
  34488. werejackal: {
  34489. height: math.unit(6 + 3/12, "feet"),
  34490. weight: math.unit(188, "lb"),
  34491. name: "Werejackal",
  34492. image: {
  34493. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34494. extra: 2373/2178,
  34495. bottom: 53/2426
  34496. }
  34497. },
  34498. },
  34499. [
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(5 + 8/12, "feet"),
  34503. default: true
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34509. {
  34510. front: {
  34511. height: math.unit(140, "cm"),
  34512. weight: math.unit(45, "kg"),
  34513. name: "Front",
  34514. image: {
  34515. source: "./media/characters/tayra-white/front.svg",
  34516. extra: 2229/2192,
  34517. bottom: 75/2304
  34518. }
  34519. },
  34520. },
  34521. [
  34522. {
  34523. name: "Normal",
  34524. height: math.unit(140, "cm"),
  34525. default: true
  34526. },
  34527. ]
  34528. ))
  34529. characterMakers.push(() => makeCharacter(
  34530. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34531. {
  34532. front: {
  34533. height: math.unit(4 + 5/12, "feet"),
  34534. name: "Front",
  34535. image: {
  34536. source: "./media/characters/scoop/front.svg",
  34537. extra: 1257/1136,
  34538. bottom: 69/1326
  34539. }
  34540. },
  34541. back: {
  34542. height: math.unit(4 + 5/12, "feet"),
  34543. name: "Back",
  34544. image: {
  34545. source: "./media/characters/scoop/back.svg",
  34546. extra: 1321/1152,
  34547. bottom: 32/1353
  34548. }
  34549. },
  34550. maw: {
  34551. height: math.unit(0.68, "feet"),
  34552. name: "Maw",
  34553. image: {
  34554. source: "./media/characters/scoop/maw.svg"
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Really Small",
  34561. height: math.unit(1, "mm")
  34562. },
  34563. {
  34564. name: "Micro",
  34565. height: math.unit(1, "inch")
  34566. },
  34567. {
  34568. name: "Normal",
  34569. height: math.unit(4 + 5/12, "feet"),
  34570. default: true
  34571. },
  34572. {
  34573. name: "Macro",
  34574. height: math.unit(200, "feet")
  34575. },
  34576. {
  34577. name: "Megamacro",
  34578. height: math.unit(3240, "feet")
  34579. },
  34580. {
  34581. name: "Teramacro",
  34582. height: math.unit(2500, "miles")
  34583. },
  34584. ]
  34585. ))
  34586. characterMakers.push(() => makeCharacter(
  34587. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34588. {
  34589. front: {
  34590. height: math.unit(15 + 7/12, "feet"),
  34591. weight: math.unit(1150, "tons"),
  34592. name: "Front",
  34593. image: {
  34594. source: "./media/characters/saphinara/front.svg",
  34595. extra: 1837/1643,
  34596. bottom: 84/1921
  34597. },
  34598. form: "normal",
  34599. default: true
  34600. },
  34601. side: {
  34602. height: math.unit(15 + 7/12, "feet"),
  34603. weight: math.unit(1150, "tons"),
  34604. name: "Side",
  34605. image: {
  34606. source: "./media/characters/saphinara/side.svg",
  34607. extra: 605/547,
  34608. bottom: 6/611
  34609. },
  34610. form: "normal"
  34611. },
  34612. back: {
  34613. height: math.unit(15 + 7/12, "feet"),
  34614. weight: math.unit(1150, "tons"),
  34615. name: "Back",
  34616. image: {
  34617. source: "./media/characters/saphinara/back.svg",
  34618. extra: 591/531,
  34619. bottom: 13/604
  34620. },
  34621. form: "normal"
  34622. },
  34623. frontTail: {
  34624. height: math.unit(15 + 7/12, "feet"),
  34625. weight: math.unit(1150, "tons"),
  34626. name: "Front (Full Tail)",
  34627. image: {
  34628. source: "./media/characters/saphinara/front-tail.svg",
  34629. extra: 2256/1630,
  34630. bottom: 261/2517
  34631. },
  34632. form: "normal"
  34633. },
  34634. insides: {
  34635. height: math.unit(11.92, "feet"),
  34636. name: "Insides",
  34637. image: {
  34638. source: "./media/characters/saphinara/insides.svg"
  34639. },
  34640. form: "normal"
  34641. },
  34642. head: {
  34643. height: math.unit(4.17, "feet"),
  34644. name: "Head",
  34645. image: {
  34646. source: "./media/characters/saphinara/head.svg"
  34647. },
  34648. form: "normal"
  34649. },
  34650. tongue: {
  34651. height: math.unit(4.60, "feet"),
  34652. name: "Tongue",
  34653. image: {
  34654. source: "./media/characters/saphinara/tongue.svg"
  34655. },
  34656. form: "normal"
  34657. },
  34658. headEnraged: {
  34659. height: math.unit(5.55, "feet"),
  34660. name: "Head (Enraged)",
  34661. image: {
  34662. source: "./media/characters/saphinara/head-enraged.svg"
  34663. },
  34664. form: "normal"
  34665. },
  34666. wings: {
  34667. height: math.unit(11.95, "feet"),
  34668. name: "Wings",
  34669. image: {
  34670. source: "./media/characters/saphinara/wings.svg"
  34671. },
  34672. form: "normal"
  34673. },
  34674. feathers: {
  34675. height: math.unit(8.92, "feet"),
  34676. name: "Feathers",
  34677. image: {
  34678. source: "./media/characters/saphinara/feathers.svg"
  34679. },
  34680. form: "normal"
  34681. },
  34682. shackles: {
  34683. height: math.unit(2, "feet"),
  34684. name: "Shackles",
  34685. image: {
  34686. source: "./media/characters/saphinara/shackles.svg"
  34687. },
  34688. form: "normal"
  34689. },
  34690. eyes: {
  34691. height: math.unit(1.331, "feet"),
  34692. name: "Eyes",
  34693. image: {
  34694. source: "./media/characters/saphinara/eyes.svg"
  34695. },
  34696. form: "normal"
  34697. },
  34698. eyesEnraged: {
  34699. height: math.unit(1.331, "feet"),
  34700. name: "Eyes (Enraged)",
  34701. image: {
  34702. source: "./media/characters/saphinara/eyes-enraged.svg"
  34703. },
  34704. form: "normal"
  34705. },
  34706. trueFormSide: {
  34707. height: math.unit(200, "feet"),
  34708. weight: math.unit(1e7, "tons"),
  34709. name: "Side",
  34710. image: {
  34711. source: "./media/characters/saphinara/true-form-side.svg",
  34712. extra: 1399/770,
  34713. bottom: 97/1496
  34714. },
  34715. form: "true-form",
  34716. default: true
  34717. },
  34718. trueFormMaw: {
  34719. height: math.unit(71.5, "feet"),
  34720. name: "Maw",
  34721. image: {
  34722. source: "./media/characters/saphinara/true-form-maw.svg",
  34723. extra: 2302/1453,
  34724. bottom: 0/2302
  34725. },
  34726. form: "true-form"
  34727. },
  34728. meowberusSide: {
  34729. height: math.unit(75, "feet"),
  34730. weight: math.unit(180000, "kg"),
  34731. preyCapacity: math.unit(50000, "people"),
  34732. name: "Side",
  34733. image: {
  34734. source: "./media/characters/saphinara/meowberus-side.svg",
  34735. extra: 1400/711,
  34736. bottom: 126/1526
  34737. },
  34738. form: "meowberus",
  34739. extraAttributes: {
  34740. "pawArea": {
  34741. name: "Paw Size",
  34742. power: 2,
  34743. type: "area",
  34744. base: math.unit(35, "m^2")
  34745. }
  34746. }
  34747. },
  34748. },
  34749. [
  34750. {
  34751. name: "Normal",
  34752. height: math.unit(15 + 7/12, "feet"),
  34753. default: true,
  34754. form: "normal"
  34755. },
  34756. {
  34757. name: "Angry",
  34758. height: math.unit(30 + 6/12, "feet"),
  34759. form: "normal"
  34760. },
  34761. {
  34762. name: "Enraged",
  34763. height: math.unit(102 + 1/12, "feet"),
  34764. form: "normal"
  34765. },
  34766. {
  34767. name: "True",
  34768. height: math.unit(200, "feet"),
  34769. default: true,
  34770. form: "true-form"
  34771. },
  34772. {
  34773. name: "Normal",
  34774. height: math.unit(75, "feet"),
  34775. default: true,
  34776. form: "meowberus"
  34777. },
  34778. ],
  34779. {
  34780. "normal": {
  34781. name: "Normal",
  34782. default: true
  34783. },
  34784. "true-form": {
  34785. name: "True Form"
  34786. },
  34787. "meowberus": {
  34788. name: "Meowberus",
  34789. },
  34790. }
  34791. ))
  34792. characterMakers.push(() => makeCharacter(
  34793. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34794. {
  34795. front: {
  34796. height: math.unit(6 + 8/12, "feet"),
  34797. weight: math.unit(300, "lb"),
  34798. name: "Front",
  34799. image: {
  34800. source: "./media/characters/jrain/front.svg",
  34801. extra: 3039/2865,
  34802. bottom: 399/3438
  34803. }
  34804. },
  34805. back: {
  34806. height: math.unit(6 + 8/12, "feet"),
  34807. weight: math.unit(300, "lb"),
  34808. name: "Back",
  34809. image: {
  34810. source: "./media/characters/jrain/back.svg",
  34811. extra: 3089/2938,
  34812. bottom: 172/3261
  34813. }
  34814. },
  34815. head: {
  34816. height: math.unit(2.14, "feet"),
  34817. name: "Head",
  34818. image: {
  34819. source: "./media/characters/jrain/head.svg"
  34820. }
  34821. },
  34822. maw: {
  34823. height: math.unit(1.77, "feet"),
  34824. name: "Maw",
  34825. image: {
  34826. source: "./media/characters/jrain/maw.svg"
  34827. }
  34828. },
  34829. leftHand: {
  34830. height: math.unit(1.1, "feet"),
  34831. name: "Left Hand",
  34832. image: {
  34833. source: "./media/characters/jrain/left-hand.svg"
  34834. }
  34835. },
  34836. rightHand: {
  34837. height: math.unit(1.1, "feet"),
  34838. name: "Right Hand",
  34839. image: {
  34840. source: "./media/characters/jrain/right-hand.svg"
  34841. }
  34842. },
  34843. eye: {
  34844. height: math.unit(0.35, "feet"),
  34845. name: "Eye",
  34846. image: {
  34847. source: "./media/characters/jrain/eye.svg"
  34848. }
  34849. },
  34850. },
  34851. [
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(6 + 8/12, "feet"),
  34855. default: true
  34856. },
  34857. {
  34858. name: "Casually Large",
  34859. height: math.unit(25, "feet")
  34860. },
  34861. {
  34862. name: "Giant",
  34863. height: math.unit(100, "feet")
  34864. },
  34865. {
  34866. name: "Kaiju",
  34867. height: math.unit(300, "feet")
  34868. },
  34869. ]
  34870. ))
  34871. characterMakers.push(() => makeCharacter(
  34872. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34873. {
  34874. dragon: {
  34875. height: math.unit(5, "meters"),
  34876. name: "Dragon",
  34877. image: {
  34878. source: "./media/characters/sabrina/dragon.svg",
  34879. extra: 3670 / 2365,
  34880. bottom: 333 / 4003
  34881. }
  34882. },
  34883. gryphon: {
  34884. height: math.unit(3, "meters"),
  34885. name: "Gryphon",
  34886. image: {
  34887. source: "./media/characters/sabrina/gryphon.svg",
  34888. extra: 1576 / 945,
  34889. bottom: 71 / 1647
  34890. }
  34891. },
  34892. snake: {
  34893. height: math.unit(12, "meters"),
  34894. name: "Snake",
  34895. image: {
  34896. source: "./media/characters/sabrina/snake.svg",
  34897. extra: 1758 / 1320,
  34898. bottom: 186 / 1944
  34899. }
  34900. },
  34901. collar: {
  34902. height: math.unit(1.86, "meters"),
  34903. name: "Collar",
  34904. image: {
  34905. source: "./media/characters/sabrina/collar.svg"
  34906. }
  34907. },
  34908. eye: {
  34909. height: math.unit(0.53, "meters"),
  34910. name: "Eye",
  34911. image: {
  34912. source: "./media/characters/sabrina/eye.svg"
  34913. }
  34914. },
  34915. foot: {
  34916. height: math.unit(1.86, "meters"),
  34917. name: "Foot",
  34918. image: {
  34919. source: "./media/characters/sabrina/foot.svg"
  34920. }
  34921. },
  34922. hand: {
  34923. height: math.unit(1.32, "meters"),
  34924. name: "Hand",
  34925. image: {
  34926. source: "./media/characters/sabrina/hand.svg"
  34927. }
  34928. },
  34929. head: {
  34930. height: math.unit(2.44, "meters"),
  34931. name: "Head",
  34932. image: {
  34933. source: "./media/characters/sabrina/head.svg"
  34934. }
  34935. },
  34936. headAngry: {
  34937. height: math.unit(2.44, "meters"),
  34938. name: "Head (Angry))",
  34939. image: {
  34940. source: "./media/characters/sabrina/head-angry.svg"
  34941. }
  34942. },
  34943. maw: {
  34944. height: math.unit(1.65, "meters"),
  34945. name: "Maw",
  34946. image: {
  34947. source: "./media/characters/sabrina/maw.svg"
  34948. }
  34949. },
  34950. spikes: {
  34951. height: math.unit(1.69, "meters"),
  34952. name: "Spikes",
  34953. image: {
  34954. source: "./media/characters/sabrina/spikes.svg"
  34955. }
  34956. },
  34957. stomach: {
  34958. height: math.unit(1.15, "meters"),
  34959. name: "Stomach",
  34960. image: {
  34961. source: "./media/characters/sabrina/stomach.svg"
  34962. }
  34963. },
  34964. tongue: {
  34965. height: math.unit(1.27, "meters"),
  34966. name: "Tongue",
  34967. image: {
  34968. source: "./media/characters/sabrina/tongue.svg"
  34969. }
  34970. },
  34971. wingDorsal: {
  34972. height: math.unit(4.85, "meters"),
  34973. name: "Wing (Dorsal)",
  34974. image: {
  34975. source: "./media/characters/sabrina/wing-dorsal.svg"
  34976. }
  34977. },
  34978. wingVentral: {
  34979. height: math.unit(4.85, "meters"),
  34980. name: "Wing (Ventral)",
  34981. image: {
  34982. source: "./media/characters/sabrina/wing-ventral.svg"
  34983. }
  34984. },
  34985. },
  34986. [
  34987. {
  34988. name: "Normal",
  34989. height: math.unit(5, "meters"),
  34990. default: true
  34991. },
  34992. ]
  34993. ))
  34994. characterMakers.push(() => makeCharacter(
  34995. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34996. {
  34997. frontMaid: {
  34998. height: math.unit(5 + 5/12, "feet"),
  34999. weight: math.unit(130, "lb"),
  35000. name: "Front (Maid)",
  35001. image: {
  35002. source: "./media/characters/midnight-tales/front-maid.svg",
  35003. extra: 489/454,
  35004. bottom: 61/550
  35005. }
  35006. },
  35007. frontFormal: {
  35008. height: math.unit(5 + 5/12, "feet"),
  35009. weight: math.unit(130, "lb"),
  35010. name: "Front (Formal)",
  35011. image: {
  35012. source: "./media/characters/midnight-tales/front-formal.svg",
  35013. extra: 489/454,
  35014. bottom: 61/550
  35015. }
  35016. },
  35017. back: {
  35018. height: math.unit(5 + 5/12, "feet"),
  35019. weight: math.unit(130, "lb"),
  35020. name: "Back",
  35021. image: {
  35022. source: "./media/characters/midnight-tales/back.svg",
  35023. extra: 498/456,
  35024. bottom: 33/531
  35025. }
  35026. },
  35027. frontBeast: {
  35028. height: math.unit(40, "feet"),
  35029. weight: math.unit(64000, "lb"),
  35030. name: "Front (Beast)",
  35031. image: {
  35032. source: "./media/characters/midnight-tales/front-beast.svg",
  35033. extra: 927/860,
  35034. bottom: 53/980
  35035. }
  35036. },
  35037. backBeast: {
  35038. height: math.unit(40, "feet"),
  35039. weight: math.unit(64000, "lb"),
  35040. name: "Back (Beast)",
  35041. image: {
  35042. source: "./media/characters/midnight-tales/back-beast.svg",
  35043. extra: 929/855,
  35044. bottom: 16/945
  35045. }
  35046. },
  35047. footBeast: {
  35048. height: math.unit(6.7, "feet"),
  35049. name: "Foot (Beast)",
  35050. image: {
  35051. source: "./media/characters/midnight-tales/foot-beast.svg"
  35052. }
  35053. },
  35054. headBeast: {
  35055. height: math.unit(8, "feet"),
  35056. name: "Head (Beast)",
  35057. image: {
  35058. source: "./media/characters/midnight-tales/head-beast.svg"
  35059. }
  35060. },
  35061. },
  35062. [
  35063. {
  35064. name: "Normal",
  35065. height: math.unit(5 + 5 / 12, "feet"),
  35066. default: true
  35067. },
  35068. {
  35069. name: "Macro",
  35070. height: math.unit(25, "feet")
  35071. },
  35072. ]
  35073. ))
  35074. characterMakers.push(() => makeCharacter(
  35075. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35076. {
  35077. front: {
  35078. height: math.unit(5 + 10/12, "feet"),
  35079. name: "Front",
  35080. image: {
  35081. source: "./media/characters/argon/front.svg",
  35082. extra: 2009/1935,
  35083. bottom: 118/2127
  35084. }
  35085. },
  35086. back: {
  35087. height: math.unit(5 + 10/12, "feet"),
  35088. name: "Back",
  35089. image: {
  35090. source: "./media/characters/argon/back.svg",
  35091. extra: 2047/1992,
  35092. bottom: 20/2067
  35093. }
  35094. },
  35095. frontDressed: {
  35096. height: math.unit(5 + 10/12, "feet"),
  35097. name: "Front (Dressed)",
  35098. image: {
  35099. source: "./media/characters/argon/front-dressed.svg",
  35100. extra: 2009/1935,
  35101. bottom: 118/2127
  35102. }
  35103. },
  35104. },
  35105. [
  35106. {
  35107. name: "Normal",
  35108. height: math.unit(5 + 10/12, "feet"),
  35109. default: true
  35110. },
  35111. ]
  35112. ))
  35113. characterMakers.push(() => makeCharacter(
  35114. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35115. {
  35116. front: {
  35117. height: math.unit(8 + 6/12, "feet"),
  35118. weight: math.unit(1150, "lb"),
  35119. name: "Front",
  35120. image: {
  35121. source: "./media/characters/kichi/front.svg",
  35122. extra: 1267/1164,
  35123. bottom: 61/1328
  35124. }
  35125. },
  35126. back: {
  35127. height: math.unit(8 + 6/12, "feet"),
  35128. weight: math.unit(1150, "lb"),
  35129. name: "Back",
  35130. image: {
  35131. source: "./media/characters/kichi/back.svg",
  35132. extra: 1273/1166,
  35133. bottom: 33/1306
  35134. }
  35135. },
  35136. },
  35137. [
  35138. {
  35139. name: "Normal",
  35140. height: math.unit(8 + 6/12, "feet"),
  35141. default: true
  35142. },
  35143. ]
  35144. ))
  35145. characterMakers.push(() => makeCharacter(
  35146. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35147. {
  35148. front: {
  35149. height: math.unit(6, "feet"),
  35150. weight: math.unit(210, "lb"),
  35151. name: "Front",
  35152. image: {
  35153. source: "./media/characters/manetel-greyscale/front.svg",
  35154. extra: 350/312,
  35155. bottom: 8/358
  35156. }
  35157. },
  35158. },
  35159. [
  35160. {
  35161. name: "Micro",
  35162. height: math.unit(2, "inches")
  35163. },
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(6, "feet"),
  35167. default: true
  35168. },
  35169. {
  35170. name: "Minimacro",
  35171. height: math.unit(17, "feet")
  35172. },
  35173. {
  35174. name: "Macro",
  35175. height: math.unit(117, "feet")
  35176. },
  35177. ]
  35178. ))
  35179. characterMakers.push(() => makeCharacter(
  35180. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35181. {
  35182. side: {
  35183. height: math.unit(5 + 1/12, "feet"),
  35184. weight: math.unit(418, "lb"),
  35185. name: "Side",
  35186. image: {
  35187. source: "./media/characters/softpurr/side.svg",
  35188. extra: 1993/1945,
  35189. bottom: 134/2127
  35190. }
  35191. },
  35192. front: {
  35193. height: math.unit(5 + 1/12, "feet"),
  35194. weight: math.unit(418, "lb"),
  35195. name: "Front",
  35196. image: {
  35197. source: "./media/characters/softpurr/front.svg",
  35198. extra: 1950/1856,
  35199. bottom: 174/2124
  35200. }
  35201. },
  35202. paw: {
  35203. height: math.unit(1, "feet"),
  35204. name: "Paw",
  35205. image: {
  35206. source: "./media/characters/softpurr/paw.svg"
  35207. }
  35208. },
  35209. },
  35210. [
  35211. {
  35212. name: "Normal",
  35213. height: math.unit(5 + 1/12, "feet"),
  35214. default: true
  35215. },
  35216. ]
  35217. ))
  35218. characterMakers.push(() => makeCharacter(
  35219. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35220. {
  35221. front: {
  35222. height: math.unit(260, "meters"),
  35223. name: "Front",
  35224. image: {
  35225. source: "./media/characters/anahita/front.svg",
  35226. extra: 665/635,
  35227. bottom: 89/754
  35228. }
  35229. },
  35230. },
  35231. [
  35232. {
  35233. name: "Macro",
  35234. height: math.unit(260, "meters"),
  35235. default: true
  35236. },
  35237. ]
  35238. ))
  35239. characterMakers.push(() => makeCharacter(
  35240. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35241. {
  35242. front: {
  35243. height: math.unit(4 + 10/12, "feet"),
  35244. weight: math.unit(160, "lb"),
  35245. name: "Front",
  35246. image: {
  35247. source: "./media/characters/chip-mouse/front.svg",
  35248. extra: 3528/3408,
  35249. bottom: 0/3528
  35250. }
  35251. },
  35252. frontNsfw: {
  35253. height: math.unit(4 + 10/12, "feet"),
  35254. weight: math.unit(160, "lb"),
  35255. name: "Front (NSFW)",
  35256. image: {
  35257. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35258. extra: 3528/3408,
  35259. bottom: 0/3528
  35260. }
  35261. },
  35262. },
  35263. [
  35264. {
  35265. name: "Normal",
  35266. height: math.unit(4 + 10/12, "feet"),
  35267. default: true
  35268. },
  35269. ]
  35270. ))
  35271. characterMakers.push(() => makeCharacter(
  35272. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35273. {
  35274. side: {
  35275. height: math.unit(10, "feet"),
  35276. weight: math.unit(14000, "lb"),
  35277. name: "Side",
  35278. image: {
  35279. source: "./media/characters/kremm/side.svg",
  35280. extra: 1390/1053,
  35281. bottom: 90/1480
  35282. }
  35283. },
  35284. gut: {
  35285. height: math.unit(5.8, "feet"),
  35286. name: "Gut",
  35287. image: {
  35288. source: "./media/characters/kremm/gut.svg"
  35289. }
  35290. },
  35291. ass: {
  35292. height: math.unit(6.1, "feet"),
  35293. name: "Ass",
  35294. image: {
  35295. source: "./media/characters/kremm/ass.svg"
  35296. }
  35297. },
  35298. jaws: {
  35299. height: math.unit(2.2, "feet"),
  35300. name: "Jaws",
  35301. image: {
  35302. source: "./media/characters/kremm/jaws.svg"
  35303. }
  35304. },
  35305. dick: {
  35306. height: math.unit(4.26, "feet"),
  35307. name: "Dick",
  35308. image: {
  35309. source: "./media/characters/kremm/dick.svg"
  35310. }
  35311. },
  35312. },
  35313. [
  35314. {
  35315. name: "Normal",
  35316. height: math.unit(10, "feet"),
  35317. default: true
  35318. },
  35319. ]
  35320. ))
  35321. characterMakers.push(() => makeCharacter(
  35322. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35323. {
  35324. front: {
  35325. height: math.unit(30, "stories"),
  35326. name: "Front",
  35327. image: {
  35328. source: "./media/characters/kai/front.svg",
  35329. extra: 1892/1718,
  35330. bottom: 162/2054
  35331. }
  35332. },
  35333. },
  35334. [
  35335. {
  35336. name: "Macro",
  35337. height: math.unit(30, "stories"),
  35338. default: true
  35339. },
  35340. ]
  35341. ))
  35342. characterMakers.push(() => makeCharacter(
  35343. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35344. {
  35345. front: {
  35346. height: math.unit(6 + 4/12, "feet"),
  35347. weight: math.unit(145, "lb"),
  35348. name: "Front",
  35349. image: {
  35350. source: "./media/characters/sykes/front.svg",
  35351. extra: 1321 / 1187,
  35352. bottom: 66 / 1387
  35353. }
  35354. },
  35355. back: {
  35356. height: math.unit(6 + 4/12, "feet"),
  35357. weight: math.unit(145, "lb"),
  35358. name: "Back",
  35359. image: {
  35360. source: "./media/characters/sykes/back.svg",
  35361. extra: 1326/1181,
  35362. bottom: 31/1357
  35363. }
  35364. },
  35365. traditionalOutfit: {
  35366. height: math.unit(6 + 4/12, "feet"),
  35367. weight: math.unit(145, "lb"),
  35368. name: "Traditional Outfit",
  35369. image: {
  35370. source: "./media/characters/sykes/traditional-outfit.svg",
  35371. extra: 1321 / 1187,
  35372. bottom: 66 / 1387
  35373. }
  35374. },
  35375. adventureOutfit: {
  35376. height: math.unit(6 + 4/12, "feet"),
  35377. weight: math.unit(145, "lb"),
  35378. name: "Adventure Outfit",
  35379. image: {
  35380. source: "./media/characters/sykes/adventure-outfit.svg",
  35381. extra: 1321 / 1187,
  35382. bottom: 66 / 1387
  35383. }
  35384. },
  35385. handLeft: {
  35386. height: math.unit(0.9, "feet"),
  35387. name: "Hand (Left)",
  35388. image: {
  35389. source: "./media/characters/sykes/hand-left.svg"
  35390. }
  35391. },
  35392. handRight: {
  35393. height: math.unit(0.839, "feet"),
  35394. name: "Hand (Right)",
  35395. image: {
  35396. source: "./media/characters/sykes/hand-right.svg"
  35397. }
  35398. },
  35399. leftFoot: {
  35400. height: math.unit(1.2, "feet"),
  35401. name: "Foot (Left)",
  35402. image: {
  35403. source: "./media/characters/sykes/foot-left.svg"
  35404. }
  35405. },
  35406. rightFoot: {
  35407. height: math.unit(1.2, "feet"),
  35408. name: "Foot (Right)",
  35409. image: {
  35410. source: "./media/characters/sykes/foot-right.svg"
  35411. }
  35412. },
  35413. maw: {
  35414. height: math.unit(1.93, "feet"),
  35415. name: "Maw",
  35416. image: {
  35417. source: "./media/characters/sykes/maw.svg"
  35418. }
  35419. },
  35420. teeth: {
  35421. height: math.unit(0.51, "feet"),
  35422. name: "Teeth",
  35423. image: {
  35424. source: "./media/characters/sykes/teeth.svg"
  35425. }
  35426. },
  35427. tongue: {
  35428. height: math.unit(2.13, "feet"),
  35429. name: "Tongue",
  35430. image: {
  35431. source: "./media/characters/sykes/tongue.svg"
  35432. }
  35433. },
  35434. uvula: {
  35435. height: math.unit(0.16, "feet"),
  35436. name: "Uvula",
  35437. image: {
  35438. source: "./media/characters/sykes/uvula.svg"
  35439. }
  35440. },
  35441. collar: {
  35442. height: math.unit(0.287, "feet"),
  35443. name: "Collar",
  35444. image: {
  35445. source: "./media/characters/sykes/collar.svg"
  35446. }
  35447. },
  35448. tail: {
  35449. height: math.unit(3.8, "feet"),
  35450. name: "Tail",
  35451. image: {
  35452. source: "./media/characters/sykes/tail.svg"
  35453. }
  35454. },
  35455. },
  35456. [
  35457. {
  35458. name: "Shrunken",
  35459. height: math.unit(5, "inches")
  35460. },
  35461. {
  35462. name: "Normal",
  35463. height: math.unit(6 + 4 / 12, "feet"),
  35464. default: true
  35465. },
  35466. {
  35467. name: "Big",
  35468. height: math.unit(15, "feet")
  35469. },
  35470. ]
  35471. ))
  35472. characterMakers.push(() => makeCharacter(
  35473. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35474. {
  35475. front: {
  35476. height: math.unit(5 + 8/12, "feet"),
  35477. weight: math.unit(190, "lb"),
  35478. name: "Front",
  35479. image: {
  35480. source: "./media/characters/oven-otter/front.svg",
  35481. extra: 1809/1740,
  35482. bottom: 181/1990
  35483. }
  35484. },
  35485. back: {
  35486. height: math.unit(5 + 8/12, "feet"),
  35487. weight: math.unit(190, "lb"),
  35488. name: "Back",
  35489. image: {
  35490. source: "./media/characters/oven-otter/back.svg",
  35491. extra: 1709/1635,
  35492. bottom: 118/1827
  35493. }
  35494. },
  35495. hand: {
  35496. height: math.unit(1.07, "feet"),
  35497. name: "Hand",
  35498. image: {
  35499. source: "./media/characters/oven-otter/hand.svg"
  35500. }
  35501. },
  35502. beans: {
  35503. height: math.unit(1.74, "feet"),
  35504. name: "Beans",
  35505. image: {
  35506. source: "./media/characters/oven-otter/beans.svg"
  35507. }
  35508. },
  35509. },
  35510. [
  35511. {
  35512. name: "Micro",
  35513. height: math.unit(0.5, "inches")
  35514. },
  35515. {
  35516. name: "Normal",
  35517. height: math.unit(5 + 8/12, "feet"),
  35518. default: true
  35519. },
  35520. {
  35521. name: "Macro",
  35522. height: math.unit(250, "feet")
  35523. },
  35524. {
  35525. name: "Really High",
  35526. height: math.unit(420, "feet")
  35527. },
  35528. ]
  35529. ))
  35530. characterMakers.push(() => makeCharacter(
  35531. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35532. {
  35533. front: {
  35534. height: math.unit(5, "meters"),
  35535. weight: math.unit(292000000000000, "kg"),
  35536. name: "Front",
  35537. image: {
  35538. source: "./media/characters/devourer/front.svg",
  35539. extra: 1800/1733,
  35540. bottom: 211/2011
  35541. }
  35542. },
  35543. maw: {
  35544. height: math.unit(1.1, "meter"),
  35545. name: "Maw",
  35546. image: {
  35547. source: "./media/characters/devourer/maw.svg"
  35548. }
  35549. },
  35550. },
  35551. [
  35552. {
  35553. name: "Small",
  35554. height: math.unit(3, "meters")
  35555. },
  35556. {
  35557. name: "Large",
  35558. height: math.unit(5, "meters"),
  35559. default: true
  35560. },
  35561. ]
  35562. ))
  35563. characterMakers.push(() => makeCharacter(
  35564. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35565. {
  35566. front: {
  35567. height: math.unit(6, "feet"),
  35568. weight: math.unit(400, "lb"),
  35569. name: "Front",
  35570. image: {
  35571. source: "./media/characters/ellarby/front.svg",
  35572. extra: 1909/1763,
  35573. bottom: 80/1989
  35574. }
  35575. },
  35576. back: {
  35577. height: math.unit(6, "feet"),
  35578. weight: math.unit(400, "lb"),
  35579. name: "Back",
  35580. image: {
  35581. source: "./media/characters/ellarby/back.svg",
  35582. extra: 1914/1784,
  35583. bottom: 172/2086
  35584. }
  35585. },
  35586. },
  35587. [
  35588. {
  35589. name: "Mischief",
  35590. height: math.unit(18, "inches")
  35591. },
  35592. {
  35593. name: "Trouble",
  35594. height: math.unit(12, "feet")
  35595. },
  35596. {
  35597. name: "Havoc",
  35598. height: math.unit(200, "feet"),
  35599. default: true
  35600. },
  35601. {
  35602. name: "Pandemonium",
  35603. height: math.unit(1, "mile")
  35604. },
  35605. {
  35606. name: "Catastrophe",
  35607. height: math.unit(100, "miles")
  35608. },
  35609. ]
  35610. ))
  35611. characterMakers.push(() => makeCharacter(
  35612. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35613. {
  35614. front: {
  35615. height: math.unit(4.7, "meters"),
  35616. weight: math.unit(6500, "kg"),
  35617. name: "Front",
  35618. image: {
  35619. source: "./media/characters/vex/front.svg",
  35620. extra: 1288/1140,
  35621. bottom: 100/1388
  35622. }
  35623. },
  35624. },
  35625. [
  35626. {
  35627. name: "Normal",
  35628. height: math.unit(4.7, "meters"),
  35629. default: true
  35630. },
  35631. ]
  35632. ))
  35633. characterMakers.push(() => makeCharacter(
  35634. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35635. {
  35636. normal: {
  35637. height: math.unit(6, "feet"),
  35638. weight: math.unit(350, "lb"),
  35639. name: "Normal",
  35640. image: {
  35641. source: "./media/characters/teshy/normal.svg",
  35642. extra: 1795/1735,
  35643. bottom: 16/1811
  35644. }
  35645. },
  35646. monsterFront: {
  35647. height: math.unit(12, "feet"),
  35648. weight: math.unit(4700, "lb"),
  35649. name: "Monster (Front)",
  35650. image: {
  35651. source: "./media/characters/teshy/monster-front.svg",
  35652. extra: 2042/2034,
  35653. bottom: 128/2170
  35654. }
  35655. },
  35656. monsterSide: {
  35657. height: math.unit(12, "feet"),
  35658. weight: math.unit(4700, "lb"),
  35659. name: "Monster (Side)",
  35660. image: {
  35661. source: "./media/characters/teshy/monster-side.svg",
  35662. extra: 2067/2056,
  35663. bottom: 70/2137
  35664. }
  35665. },
  35666. monsterBack: {
  35667. height: math.unit(12, "feet"),
  35668. weight: math.unit(4700, "lb"),
  35669. name: "Monster (Back)",
  35670. image: {
  35671. source: "./media/characters/teshy/monster-back.svg",
  35672. extra: 1921/1914,
  35673. bottom: 171/2092
  35674. }
  35675. },
  35676. },
  35677. [
  35678. {
  35679. name: "Normal",
  35680. height: math.unit(6, "feet"),
  35681. default: true
  35682. },
  35683. ]
  35684. ))
  35685. characterMakers.push(() => makeCharacter(
  35686. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35687. {
  35688. front: {
  35689. height: math.unit(6, "feet"),
  35690. name: "Front",
  35691. image: {
  35692. source: "./media/characters/ramey/front.svg",
  35693. extra: 790/787,
  35694. bottom: 27/817
  35695. }
  35696. },
  35697. },
  35698. [
  35699. {
  35700. name: "Normal",
  35701. height: math.unit(6, "feet"),
  35702. default: true
  35703. },
  35704. ]
  35705. ))
  35706. characterMakers.push(() => makeCharacter(
  35707. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35708. {
  35709. front: {
  35710. height: math.unit(5 + 5/12, "feet"),
  35711. weight: math.unit(120, "lb"),
  35712. name: "Front",
  35713. image: {
  35714. source: "./media/characters/phirae/front.svg",
  35715. extra: 2491/2436,
  35716. bottom: 38/2529
  35717. }
  35718. },
  35719. },
  35720. [
  35721. {
  35722. name: "Normal",
  35723. height: math.unit(5 + 5/12, "feet"),
  35724. default: true
  35725. },
  35726. ]
  35727. ))
  35728. characterMakers.push(() => makeCharacter(
  35729. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35730. {
  35731. front: {
  35732. height: math.unit(5 + 3/12, "feet"),
  35733. name: "Front",
  35734. image: {
  35735. source: "./media/characters/stagglas/front.svg",
  35736. extra: 962/882,
  35737. bottom: 53/1015
  35738. }
  35739. },
  35740. feral: {
  35741. height: math.unit(335, "cm"),
  35742. name: "Feral",
  35743. image: {
  35744. source: "./media/characters/stagglas/feral.svg",
  35745. extra: 1732/1090,
  35746. bottom: 48/1780
  35747. }
  35748. },
  35749. },
  35750. [
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(5 + 3/12, "feet"),
  35754. default: true
  35755. },
  35756. ]
  35757. ))
  35758. characterMakers.push(() => makeCharacter(
  35759. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35760. {
  35761. front: {
  35762. height: math.unit(5 + 4/12, "feet"),
  35763. weight: math.unit(145, "lb"),
  35764. name: "Front",
  35765. image: {
  35766. source: "./media/characters/starra/front.svg",
  35767. extra: 1790/1691,
  35768. bottom: 91/1881
  35769. }
  35770. },
  35771. },
  35772. [
  35773. {
  35774. name: "Normal",
  35775. height: math.unit(5 + 4/12, "feet"),
  35776. default: true
  35777. },
  35778. ]
  35779. ))
  35780. characterMakers.push(() => makeCharacter(
  35781. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35782. {
  35783. front: {
  35784. height: math.unit(2.2, "meters"),
  35785. name: "Front",
  35786. image: {
  35787. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35788. extra: 1194/1005,
  35789. bottom: 25/1219
  35790. }
  35791. },
  35792. },
  35793. [
  35794. {
  35795. name: "Normal",
  35796. height: math.unit(2.2, "meters"),
  35797. default: true
  35798. },
  35799. ]
  35800. ))
  35801. characterMakers.push(() => makeCharacter(
  35802. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35803. {
  35804. side: {
  35805. height: math.unit(8 + 2/12, "feet"),
  35806. weight: math.unit(1240, "lb"),
  35807. name: "Side",
  35808. image: {
  35809. source: "./media/characters/mika-valentine/side.svg",
  35810. extra: 2670/2501,
  35811. bottom: 250/2920
  35812. }
  35813. },
  35814. },
  35815. [
  35816. {
  35817. name: "Normal",
  35818. height: math.unit(8 + 2/12, "feet"),
  35819. default: true
  35820. },
  35821. ]
  35822. ))
  35823. characterMakers.push(() => makeCharacter(
  35824. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35825. {
  35826. front: {
  35827. height: math.unit(7 + 2/12, "feet"),
  35828. name: "Front",
  35829. image: {
  35830. source: "./media/characters/xoltol/front.svg",
  35831. extra: 2212/2124,
  35832. bottom: 84/2296
  35833. }
  35834. },
  35835. side: {
  35836. height: math.unit(7 + 2/12, "feet"),
  35837. name: "Side",
  35838. image: {
  35839. source: "./media/characters/xoltol/side.svg",
  35840. extra: 2273/2197,
  35841. bottom: 26/2299
  35842. }
  35843. },
  35844. hand: {
  35845. height: math.unit(2.5, "feet"),
  35846. name: "Hand",
  35847. image: {
  35848. source: "./media/characters/xoltol/hand.svg"
  35849. }
  35850. },
  35851. },
  35852. [
  35853. {
  35854. name: "Small-ish",
  35855. height: math.unit(5 + 11/12, "feet")
  35856. },
  35857. {
  35858. name: "Normal",
  35859. height: math.unit(7 + 2/12, "feet")
  35860. },
  35861. {
  35862. name: "\"Macro\"",
  35863. height: math.unit(14 + 9/12, "feet"),
  35864. default: true
  35865. },
  35866. {
  35867. name: "Alternate Height",
  35868. height: math.unit(20, "feet")
  35869. },
  35870. {
  35871. name: "Actually Macro",
  35872. height: math.unit(100, "feet")
  35873. },
  35874. ]
  35875. ))
  35876. characterMakers.push(() => makeCharacter(
  35877. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35878. {
  35879. front: {
  35880. height: math.unit(5 + 2/12, "feet"),
  35881. name: "Front",
  35882. image: {
  35883. source: "./media/characters/kotetsu-redwood/front.svg",
  35884. extra: 1053/942,
  35885. bottom: 60/1113
  35886. }
  35887. },
  35888. },
  35889. [
  35890. {
  35891. name: "Normal",
  35892. height: math.unit(5 + 2/12, "feet"),
  35893. default: true
  35894. },
  35895. ]
  35896. ))
  35897. characterMakers.push(() => makeCharacter(
  35898. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35899. {
  35900. front: {
  35901. height: math.unit(2.4, "meters"),
  35902. weight: math.unit(125, "kg"),
  35903. name: "Front",
  35904. image: {
  35905. source: "./media/characters/lilith/front.svg",
  35906. extra: 1590/1513,
  35907. bottom: 203/1793
  35908. }
  35909. },
  35910. },
  35911. [
  35912. {
  35913. name: "Humanoid",
  35914. height: math.unit(2.4, "meters")
  35915. },
  35916. {
  35917. name: "Normal",
  35918. height: math.unit(6, "meters"),
  35919. default: true
  35920. },
  35921. {
  35922. name: "Largest",
  35923. height: math.unit(55, "meters")
  35924. },
  35925. ]
  35926. ))
  35927. characterMakers.push(() => makeCharacter(
  35928. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35929. {
  35930. front: {
  35931. height: math.unit(8 + 4/12, "feet"),
  35932. weight: math.unit(535, "lb"),
  35933. name: "Front",
  35934. image: {
  35935. source: "./media/characters/beh'kah-bolger/front.svg",
  35936. extra: 1660/1603,
  35937. bottom: 37/1697
  35938. }
  35939. },
  35940. },
  35941. [
  35942. {
  35943. name: "Normal",
  35944. height: math.unit(8 + 4/12, "feet"),
  35945. default: true
  35946. },
  35947. {
  35948. name: "Kaiju",
  35949. height: math.unit(250, "feet")
  35950. },
  35951. {
  35952. name: "Still Growing",
  35953. height: math.unit(10, "miles")
  35954. },
  35955. {
  35956. name: "Continental",
  35957. height: math.unit(5000, "miles")
  35958. },
  35959. {
  35960. name: "Final Form",
  35961. height: math.unit(2500000, "miles")
  35962. },
  35963. ]
  35964. ))
  35965. characterMakers.push(() => makeCharacter(
  35966. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35967. {
  35968. front: {
  35969. height: math.unit(7 + 2/12, "feet"),
  35970. weight: math.unit(230, "kg"),
  35971. name: "Front",
  35972. image: {
  35973. source: "./media/characters/tatyana-milewska/front.svg",
  35974. extra: 1199/1150,
  35975. bottom: 86/1285
  35976. }
  35977. },
  35978. },
  35979. [
  35980. {
  35981. name: "Normal",
  35982. height: math.unit(7 + 2/12, "feet"),
  35983. default: true
  35984. },
  35985. {
  35986. name: "Big",
  35987. height: math.unit(12, "feet")
  35988. },
  35989. {
  35990. name: "Minimacro",
  35991. height: math.unit(20, "feet")
  35992. },
  35993. {
  35994. name: "Macro",
  35995. height: math.unit(120, "feet")
  35996. },
  35997. ]
  35998. ))
  35999. characterMakers.push(() => makeCharacter(
  36000. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36001. {
  36002. front: {
  36003. height: math.unit(7 + 8/12, "feet"),
  36004. weight: math.unit(152, "kg"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/helen-arri/front.svg",
  36008. extra: 440/423,
  36009. bottom: 14/454
  36010. }
  36011. },
  36012. back: {
  36013. height: math.unit(7 + 8/12, "feet"),
  36014. weight: math.unit(152, "kg"),
  36015. name: "Back",
  36016. image: {
  36017. source: "./media/characters/helen-arri/back.svg",
  36018. extra: 443/426,
  36019. bottom: 8/451
  36020. }
  36021. },
  36022. },
  36023. [
  36024. {
  36025. name: "Normal",
  36026. height: math.unit(7 + 8/12, "feet"),
  36027. default: true
  36028. },
  36029. {
  36030. name: "Big",
  36031. height: math.unit(14, "feet")
  36032. },
  36033. {
  36034. name: "Minimacro",
  36035. height: math.unit(24, "feet")
  36036. },
  36037. {
  36038. name: "Macro",
  36039. height: math.unit(140, "feet")
  36040. },
  36041. ]
  36042. ))
  36043. characterMakers.push(() => makeCharacter(
  36044. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36045. {
  36046. front: {
  36047. height: math.unit(6, "meters"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/ehanu-rehu/front.svg",
  36051. extra: 1800/1800,
  36052. bottom: 59/1859
  36053. }
  36054. },
  36055. },
  36056. [
  36057. {
  36058. name: "Normal",
  36059. height: math.unit(6, "meters"),
  36060. default: true
  36061. },
  36062. ]
  36063. ))
  36064. characterMakers.push(() => makeCharacter(
  36065. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36066. {
  36067. front: {
  36068. height: math.unit(7 + 3/12, "feet"),
  36069. name: "Front",
  36070. image: {
  36071. source: "./media/characters/renholder/front.svg",
  36072. extra: 3096/2960,
  36073. bottom: 250/3346
  36074. }
  36075. },
  36076. },
  36077. [
  36078. {
  36079. name: "Normal Bat",
  36080. height: math.unit(7 + 3/12, "feet"),
  36081. default: true
  36082. },
  36083. {
  36084. name: "Slightly Tall Bat",
  36085. height: math.unit(100, "feet")
  36086. },
  36087. {
  36088. name: "Big Bat",
  36089. height: math.unit(1000, "feet")
  36090. },
  36091. {
  36092. name: "City-Sized Bat",
  36093. height: math.unit(200000, "feet")
  36094. },
  36095. {
  36096. name: "Bigger Bat",
  36097. height: math.unit(10000, "miles")
  36098. },
  36099. {
  36100. name: "Solar Sized Bat",
  36101. height: math.unit(100, "AU")
  36102. },
  36103. {
  36104. name: "Galactic Bat",
  36105. height: math.unit(200000, "lightyears")
  36106. },
  36107. {
  36108. name: "Universally Known Bat",
  36109. height: math.unit(1, "universe")
  36110. },
  36111. ]
  36112. ))
  36113. characterMakers.push(() => makeCharacter(
  36114. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36115. {
  36116. front: {
  36117. height: math.unit(6 + 11/12, "feet"),
  36118. weight: math.unit(250, "lb"),
  36119. name: "Front",
  36120. image: {
  36121. source: "./media/characters/cookiecat/front.svg",
  36122. extra: 893/827,
  36123. bottom: 14/907
  36124. }
  36125. },
  36126. },
  36127. [
  36128. {
  36129. name: "Micro",
  36130. height: math.unit(3, "inches")
  36131. },
  36132. {
  36133. name: "Normal",
  36134. height: math.unit(6 + 11/12, "feet"),
  36135. default: true
  36136. },
  36137. {
  36138. name: "Macro",
  36139. height: math.unit(100, "feet")
  36140. },
  36141. {
  36142. name: "Macro+",
  36143. height: math.unit(404, "feet")
  36144. },
  36145. {
  36146. name: "Megamacro",
  36147. height: math.unit(165, "miles")
  36148. },
  36149. {
  36150. name: "Planetary",
  36151. height: math.unit(4600, "miles")
  36152. },
  36153. ]
  36154. ))
  36155. characterMakers.push(() => makeCharacter(
  36156. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36157. {
  36158. front: {
  36159. height: math.unit(10 + 3/12, "feet"),
  36160. weight: math.unit(1500, "lb"),
  36161. name: "Front",
  36162. image: {
  36163. source: "./media/characters/tux-kusanagi/front.svg",
  36164. extra: 944/840,
  36165. bottom: 39/983
  36166. }
  36167. },
  36168. back: {
  36169. height: math.unit(10 + 3/12, "feet"),
  36170. weight: math.unit(1500, "lb"),
  36171. name: "Back",
  36172. image: {
  36173. source: "./media/characters/tux-kusanagi/back.svg",
  36174. extra: 941/842,
  36175. bottom: 28/969
  36176. }
  36177. },
  36178. rump: {
  36179. height: math.unit(5.25, "feet"),
  36180. name: "Rump",
  36181. image: {
  36182. source: "./media/characters/tux-kusanagi/rump.svg"
  36183. }
  36184. },
  36185. beak: {
  36186. height: math.unit(1.54, "feet"),
  36187. name: "Beak",
  36188. image: {
  36189. source: "./media/characters/tux-kusanagi/beak.svg"
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(10 + 3/12, "feet"),
  36197. default: true
  36198. },
  36199. ]
  36200. ))
  36201. characterMakers.push(() => makeCharacter(
  36202. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36203. {
  36204. front: {
  36205. height: math.unit(58, "feet"),
  36206. weight: math.unit(200, "tons"),
  36207. name: "Front",
  36208. image: {
  36209. source: "./media/characters/uzarmazari/front.svg",
  36210. extra: 1575/1455,
  36211. bottom: 152/1727
  36212. }
  36213. },
  36214. back: {
  36215. height: math.unit(58, "feet"),
  36216. weight: math.unit(200, "tons"),
  36217. name: "Back",
  36218. image: {
  36219. source: "./media/characters/uzarmazari/back.svg",
  36220. extra: 1585/1510,
  36221. bottom: 157/1742
  36222. }
  36223. },
  36224. head: {
  36225. height: math.unit(26, "feet"),
  36226. name: "Head",
  36227. image: {
  36228. source: "./media/characters/uzarmazari/head.svg"
  36229. }
  36230. },
  36231. },
  36232. [
  36233. {
  36234. name: "Normal",
  36235. height: math.unit(58, "feet"),
  36236. default: true
  36237. },
  36238. ]
  36239. ))
  36240. characterMakers.push(() => makeCharacter(
  36241. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36242. {
  36243. side: {
  36244. height: math.unit(15, "feet"),
  36245. name: "Side",
  36246. image: {
  36247. source: "./media/characters/akitu/side.svg",
  36248. extra: 1421/1321,
  36249. bottom: 157/1578
  36250. }
  36251. },
  36252. front: {
  36253. height: math.unit(15, "feet"),
  36254. name: "Front",
  36255. image: {
  36256. source: "./media/characters/akitu/front.svg",
  36257. extra: 1435/1326,
  36258. bottom: 232/1667
  36259. }
  36260. },
  36261. },
  36262. [
  36263. {
  36264. name: "Normal",
  36265. height: math.unit(15, "feet"),
  36266. default: true
  36267. },
  36268. ]
  36269. ))
  36270. characterMakers.push(() => makeCharacter(
  36271. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36272. {
  36273. front: {
  36274. height: math.unit(10 + 8/12, "feet"),
  36275. name: "Front",
  36276. image: {
  36277. source: "./media/characters/azalie-croixland/front.svg",
  36278. extra: 1972/1856,
  36279. bottom: 31/2003
  36280. }
  36281. },
  36282. },
  36283. [
  36284. {
  36285. name: "Original Height",
  36286. height: math.unit(5 + 4/12, "feet")
  36287. },
  36288. {
  36289. name: "Normal Height",
  36290. height: math.unit(10 + 8/12, "feet"),
  36291. default: true
  36292. },
  36293. ]
  36294. ))
  36295. characterMakers.push(() => makeCharacter(
  36296. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36297. {
  36298. side: {
  36299. height: math.unit(7 + 1/12, "feet"),
  36300. weight: math.unit(245, "lb"),
  36301. name: "Side",
  36302. image: {
  36303. source: "./media/characters/kavus-kazian/side.svg",
  36304. extra: 349/342,
  36305. bottom: 15/364
  36306. }
  36307. },
  36308. },
  36309. [
  36310. {
  36311. name: "Normal",
  36312. height: math.unit(7 + 1/12, "feet"),
  36313. default: true
  36314. },
  36315. ]
  36316. ))
  36317. characterMakers.push(() => makeCharacter(
  36318. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36319. {
  36320. normalFront: {
  36321. height: math.unit(5 + 11/12, "feet"),
  36322. name: "Front",
  36323. image: {
  36324. source: "./media/characters/moonlight-rose/normal-front.svg",
  36325. extra: 1980/1825,
  36326. bottom: 18/1998
  36327. },
  36328. form: "normal",
  36329. default: true
  36330. },
  36331. normalBack: {
  36332. height: math.unit(5 + 11/12, "feet"),
  36333. name: "Back",
  36334. image: {
  36335. source: "./media/characters/moonlight-rose/normal-back.svg",
  36336. extra: 2010/1839,
  36337. bottom: 10/2020
  36338. },
  36339. form: "normal"
  36340. },
  36341. demonFront: {
  36342. height: math.unit(1.5, "earths"),
  36343. name: "Front",
  36344. image: {
  36345. source: "./media/characters/moonlight-rose/demon.svg",
  36346. extra: 1400/1294,
  36347. bottom: 45/1445
  36348. },
  36349. form: "demon",
  36350. default: true
  36351. },
  36352. terraFront: {
  36353. height: math.unit(1.5, "earths"),
  36354. name: "Front",
  36355. image: {
  36356. source: "./media/characters/moonlight-rose/terra.svg"
  36357. },
  36358. form: "terra",
  36359. default: true
  36360. },
  36361. jupiterFront: {
  36362. height: math.unit(69911*2, "km"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36366. extra: 1367/1286,
  36367. bottom: 55/1422
  36368. },
  36369. form: "jupiter",
  36370. default: true
  36371. },
  36372. neptuneFront: {
  36373. height: math.unit(24622*2, "feet"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36377. extra: 1851/1712,
  36378. bottom: 0/1851
  36379. },
  36380. form: "neptune",
  36381. default: true
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "\"Natural\" Height",
  36387. height: math.unit(5 + 11/12, "feet"),
  36388. form: "normal"
  36389. },
  36390. {
  36391. name: "Smallest comfortable size",
  36392. height: math.unit(40, "meters"),
  36393. form: "normal"
  36394. },
  36395. {
  36396. name: "Common size",
  36397. height: math.unit(50, "km"),
  36398. form: "normal",
  36399. default: true
  36400. },
  36401. {
  36402. name: "Normal",
  36403. height: math.unit(1.5, "earths"),
  36404. form: "demon",
  36405. default: true
  36406. },
  36407. {
  36408. name: "Universal",
  36409. height: math.unit(15, "universes"),
  36410. form: "demon"
  36411. },
  36412. {
  36413. name: "Earth",
  36414. height: math.unit(1.5, "earths"),
  36415. form: "terra",
  36416. default: true
  36417. },
  36418. {
  36419. name: "Super Earth",
  36420. height: math.unit(67.5, "earths"),
  36421. form: "terra"
  36422. },
  36423. {
  36424. name: "Doesn't fit in a solar system...",
  36425. height: math.unit(1, "galaxy"),
  36426. form: "terra"
  36427. },
  36428. {
  36429. name: "Saturn",
  36430. height: math.unit(58232*2, "km"),
  36431. form: "jupiter"
  36432. },
  36433. {
  36434. name: "Jupiter",
  36435. height: math.unit(69911*2, "km"),
  36436. form: "jupiter",
  36437. default: true
  36438. },
  36439. {
  36440. name: "HD 100546 b",
  36441. height: math.unit(482938, "km"),
  36442. form: "jupiter"
  36443. },
  36444. {
  36445. name: "Enceladus",
  36446. height: math.unit(513*2, "km"),
  36447. form: "neptune"
  36448. },
  36449. {
  36450. name: "Europe",
  36451. height: math.unit(1560*2, "km"),
  36452. form: "neptune"
  36453. },
  36454. {
  36455. name: "Neptune",
  36456. height: math.unit(24622*2, "km"),
  36457. form: "neptune",
  36458. default: true
  36459. },
  36460. {
  36461. name: "CoRoT-9b",
  36462. height: math.unit(75067*2, "km"),
  36463. form: "neptune"
  36464. },
  36465. ],
  36466. {
  36467. "normal": {
  36468. name: "Normal",
  36469. default: true
  36470. },
  36471. "demon": {
  36472. name: "Demon"
  36473. },
  36474. "terra": {
  36475. name: "Terra"
  36476. },
  36477. "jupiter": {
  36478. name: "Jupiter"
  36479. },
  36480. "neptune": {
  36481. name: "Neptune"
  36482. }
  36483. }
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36487. {
  36488. front: {
  36489. height: math.unit(16, "feet"),
  36490. weight: math.unit(610, "kg"),
  36491. name: "Front",
  36492. image: {
  36493. source: "./media/characters/huckle/front.svg",
  36494. extra: 1731/1625,
  36495. bottom: 33/1764
  36496. }
  36497. },
  36498. back: {
  36499. height: math.unit(16, "feet"),
  36500. weight: math.unit(610, "kg"),
  36501. name: "Back",
  36502. image: {
  36503. source: "./media/characters/huckle/back.svg",
  36504. extra: 1738/1651,
  36505. bottom: 37/1775
  36506. }
  36507. },
  36508. laughing: {
  36509. height: math.unit(3.75, "feet"),
  36510. name: "Laughing",
  36511. image: {
  36512. source: "./media/characters/huckle/laughing.svg"
  36513. }
  36514. },
  36515. angry: {
  36516. height: math.unit(4.15, "feet"),
  36517. name: "Angry",
  36518. image: {
  36519. source: "./media/characters/huckle/angry.svg"
  36520. }
  36521. },
  36522. },
  36523. [
  36524. {
  36525. name: "Normal",
  36526. height: math.unit(16, "feet"),
  36527. default: true
  36528. },
  36529. {
  36530. name: "Mini Macro",
  36531. height: math.unit(463, "feet")
  36532. },
  36533. {
  36534. name: "Macro",
  36535. height: math.unit(1680, "meters")
  36536. },
  36537. {
  36538. name: "Mega Macro",
  36539. height: math.unit(175, "km")
  36540. },
  36541. {
  36542. name: "Terra Macro",
  36543. height: math.unit(32, "gigameters")
  36544. },
  36545. {
  36546. name: "Multiverse+",
  36547. height: math.unit(2.56e23, "yottameters")
  36548. },
  36549. ]
  36550. ))
  36551. characterMakers.push(() => makeCharacter(
  36552. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36553. {
  36554. front: {
  36555. height: math.unit(6 + 9/12, "feet"),
  36556. weight: math.unit(280, "lb"),
  36557. name: "Front",
  36558. image: {
  36559. source: "./media/characters/candy/front.svg",
  36560. extra: 234/217,
  36561. bottom: 11/245
  36562. }
  36563. },
  36564. },
  36565. [
  36566. {
  36567. name: "Really Small",
  36568. height: math.unit(0.1, "nm")
  36569. },
  36570. {
  36571. name: "Micro",
  36572. height: math.unit(2, "inches")
  36573. },
  36574. {
  36575. name: "Normal",
  36576. height: math.unit(6 + 9/12, "feet"),
  36577. default: true
  36578. },
  36579. {
  36580. name: "Small Macro",
  36581. height: math.unit(69, "feet")
  36582. },
  36583. {
  36584. name: "Macro",
  36585. height: math.unit(160, "feet")
  36586. },
  36587. {
  36588. name: "Megamacro",
  36589. height: math.unit(22000, "miles")
  36590. },
  36591. {
  36592. name: "Gigamacro",
  36593. height: math.unit(50000, "miles")
  36594. },
  36595. ]
  36596. ))
  36597. characterMakers.push(() => makeCharacter(
  36598. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36599. {
  36600. front: {
  36601. height: math.unit(4, "feet"),
  36602. weight: math.unit(90, "lb"),
  36603. name: "Front",
  36604. image: {
  36605. source: "./media/characters/joey-mcdonald/front.svg",
  36606. extra: 1059/852,
  36607. bottom: 33/1092
  36608. }
  36609. },
  36610. back: {
  36611. height: math.unit(4, "feet"),
  36612. weight: math.unit(90, "lb"),
  36613. name: "Back",
  36614. image: {
  36615. source: "./media/characters/joey-mcdonald/back.svg",
  36616. extra: 1077/879,
  36617. bottom: 5/1082
  36618. }
  36619. },
  36620. frontKobold: {
  36621. height: math.unit(4, "feet"),
  36622. weight: math.unit(100, "lb"),
  36623. name: "Front-kobold",
  36624. image: {
  36625. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36626. extra: 1480/1367,
  36627. bottom: 0/1480
  36628. }
  36629. },
  36630. backKobold: {
  36631. height: math.unit(4, "feet"),
  36632. weight: math.unit(100, "lb"),
  36633. name: "Back-kobold",
  36634. image: {
  36635. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36636. extra: 1449/1361,
  36637. bottom: 0/1449
  36638. }
  36639. },
  36640. },
  36641. [
  36642. {
  36643. name: "Normal",
  36644. height: math.unit(4, "feet"),
  36645. default: true
  36646. },
  36647. ]
  36648. ))
  36649. characterMakers.push(() => makeCharacter(
  36650. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36651. {
  36652. front: {
  36653. height: math.unit(12 + 6/12, "feet"),
  36654. name: "Front",
  36655. image: {
  36656. source: "./media/characters/kass-lockheed/front.svg",
  36657. extra: 354/343,
  36658. bottom: 9/363
  36659. }
  36660. },
  36661. back: {
  36662. height: math.unit(12 + 6/12, "feet"),
  36663. name: "Back",
  36664. image: {
  36665. source: "./media/characters/kass-lockheed/back.svg",
  36666. extra: 364/352,
  36667. bottom: 3/367
  36668. }
  36669. },
  36670. dick: {
  36671. height: math.unit(3.12, "feet"),
  36672. name: "Dick",
  36673. image: {
  36674. source: "./media/characters/kass-lockheed/dick.svg"
  36675. }
  36676. },
  36677. head: {
  36678. height: math.unit(2.6, "feet"),
  36679. name: "Head",
  36680. image: {
  36681. source: "./media/characters/kass-lockheed/head.svg"
  36682. }
  36683. },
  36684. bleh: {
  36685. height: math.unit(2.85, "feet"),
  36686. name: "Bleh",
  36687. image: {
  36688. source: "./media/characters/kass-lockheed/bleh.svg"
  36689. }
  36690. },
  36691. smug: {
  36692. height: math.unit(2.85, "feet"),
  36693. name: "Smug",
  36694. image: {
  36695. source: "./media/characters/kass-lockheed/smug.svg"
  36696. }
  36697. },
  36698. },
  36699. [
  36700. {
  36701. name: "Normal",
  36702. height: math.unit(12 + 6/12, "feet"),
  36703. default: true
  36704. },
  36705. ]
  36706. ))
  36707. characterMakers.push(() => makeCharacter(
  36708. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36709. {
  36710. front: {
  36711. height: math.unit(6 + 2/12, "feet"),
  36712. name: "Front",
  36713. image: {
  36714. source: "./media/characters/taylor/front.svg",
  36715. extra: 639/495,
  36716. bottom: 12/651
  36717. }
  36718. },
  36719. },
  36720. [
  36721. {
  36722. name: "Normal",
  36723. height: math.unit(6 + 2/12, "feet"),
  36724. default: true
  36725. },
  36726. {
  36727. name: "Big",
  36728. height: math.unit(15, "feet")
  36729. },
  36730. {
  36731. name: "Lorg",
  36732. height: math.unit(80, "feet")
  36733. },
  36734. {
  36735. name: "Too Lorg",
  36736. height: math.unit(120, "feet")
  36737. },
  36738. ]
  36739. ))
  36740. characterMakers.push(() => makeCharacter(
  36741. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36742. {
  36743. front: {
  36744. height: math.unit(15, "feet"),
  36745. name: "Front",
  36746. image: {
  36747. source: "./media/characters/kaizer/front.svg",
  36748. extra: 1612/1436,
  36749. bottom: 43/1655
  36750. }
  36751. },
  36752. },
  36753. [
  36754. {
  36755. name: "Normal",
  36756. height: math.unit(15, "feet"),
  36757. default: true
  36758. },
  36759. ]
  36760. ))
  36761. characterMakers.push(() => makeCharacter(
  36762. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36763. {
  36764. front: {
  36765. height: math.unit(2, "feet"),
  36766. weight: math.unit(30, "lb"),
  36767. name: "Front",
  36768. image: {
  36769. source: "./media/characters/sandy/front.svg",
  36770. extra: 1439/1307,
  36771. bottom: 194/1633
  36772. }
  36773. },
  36774. },
  36775. [
  36776. {
  36777. name: "Normal",
  36778. height: math.unit(2, "feet"),
  36779. default: true
  36780. },
  36781. ]
  36782. ))
  36783. characterMakers.push(() => makeCharacter(
  36784. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36785. {
  36786. front: {
  36787. height: math.unit(3, "feet"),
  36788. name: "Front",
  36789. image: {
  36790. source: "./media/characters/mellvi/front.svg",
  36791. extra: 1831/1630,
  36792. bottom: 58/1889
  36793. }
  36794. },
  36795. },
  36796. [
  36797. {
  36798. name: "Normal",
  36799. height: math.unit(3, "feet"),
  36800. default: true
  36801. },
  36802. ]
  36803. ))
  36804. characterMakers.push(() => makeCharacter(
  36805. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36806. {
  36807. front: {
  36808. height: math.unit(5 + 11/12, "feet"),
  36809. weight: math.unit(200, "lb"),
  36810. name: "Front",
  36811. image: {
  36812. source: "./media/characters/shirou/front.svg",
  36813. extra: 2491/2383,
  36814. bottom: 189/2680
  36815. }
  36816. },
  36817. back: {
  36818. height: math.unit(5 + 11/12, "feet"),
  36819. weight: math.unit(200, "lb"),
  36820. name: "Back",
  36821. image: {
  36822. source: "./media/characters/shirou/back.svg",
  36823. extra: 2554/2450,
  36824. bottom: 76/2630
  36825. }
  36826. },
  36827. },
  36828. [
  36829. {
  36830. name: "Normal",
  36831. height: math.unit(5 + 11/12, "feet"),
  36832. default: true
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(6 + 3/12, "feet"),
  36841. weight: math.unit(177, "lb"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/noryu/front.svg",
  36845. extra: 973/885,
  36846. bottom: 10/983
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(6 + 3/12, "feet"),
  36854. default: true
  36855. },
  36856. ]
  36857. ))
  36858. characterMakers.push(() => makeCharacter(
  36859. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36860. {
  36861. front: {
  36862. height: math.unit(5 + 6/12, "feet"),
  36863. weight: math.unit(170, "lb"),
  36864. name: "Front",
  36865. image: {
  36866. source: "./media/characters/mevolas-rubenido/front.svg",
  36867. extra: 2109/1901,
  36868. bottom: 96/2205
  36869. }
  36870. },
  36871. },
  36872. [
  36873. {
  36874. name: "Normal",
  36875. height: math.unit(5 + 6/12, "feet"),
  36876. default: true
  36877. },
  36878. ]
  36879. ))
  36880. characterMakers.push(() => makeCharacter(
  36881. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36882. {
  36883. front: {
  36884. height: math.unit(100, "feet"),
  36885. name: "Front",
  36886. image: {
  36887. source: "./media/characters/dee/front.svg",
  36888. extra: 2153/2036,
  36889. bottom: 59/2212
  36890. }
  36891. },
  36892. back: {
  36893. height: math.unit(100, "feet"),
  36894. name: "Back",
  36895. image: {
  36896. source: "./media/characters/dee/back.svg",
  36897. extra: 2183/2058,
  36898. bottom: 75/2258
  36899. }
  36900. },
  36901. foot: {
  36902. height: math.unit(19.43, "feet"),
  36903. name: "Foot",
  36904. image: {
  36905. source: "./media/characters/dee/foot.svg"
  36906. }
  36907. },
  36908. hoof: {
  36909. height: math.unit(20.6, "feet"),
  36910. name: "Hoof",
  36911. image: {
  36912. source: "./media/characters/dee/hoof.svg"
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Macro",
  36919. height: math.unit(100, "feet"),
  36920. default: true
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36926. {
  36927. front: {
  36928. height: math.unit(5 + 6/12, "feet"),
  36929. name: "Front",
  36930. image: {
  36931. source: "./media/characters/teh/front.svg",
  36932. extra: 1002/847,
  36933. bottom: 62/1064
  36934. }
  36935. },
  36936. },
  36937. [
  36938. {
  36939. name: "Normal",
  36940. height: math.unit(5 + 6/12, "feet"),
  36941. default: true
  36942. },
  36943. ]
  36944. ))
  36945. characterMakers.push(() => makeCharacter(
  36946. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36947. {
  36948. side: {
  36949. height: math.unit(6 + 1/12, "feet"),
  36950. weight: math.unit(204, "lb"),
  36951. name: "Side",
  36952. image: {
  36953. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36954. extra: 974/775,
  36955. bottom: 169/1143
  36956. }
  36957. },
  36958. sitting: {
  36959. height: math.unit(6 + 2/12, "feet"),
  36960. weight: math.unit(204, "lb"),
  36961. name: "Sitting",
  36962. image: {
  36963. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36964. extra: 1175/964,
  36965. bottom: 378/1553
  36966. }
  36967. },
  36968. },
  36969. [
  36970. {
  36971. name: "Normal",
  36972. height: math.unit(6 + 1/12, "feet"),
  36973. default: true
  36974. },
  36975. ]
  36976. ))
  36977. characterMakers.push(() => makeCharacter(
  36978. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36979. {
  36980. front: {
  36981. height: math.unit(6, "inches"),
  36982. name: "Front",
  36983. image: {
  36984. source: "./media/characters/tululi/front.svg",
  36985. extra: 1997/1876,
  36986. bottom: 20/2017
  36987. }
  36988. },
  36989. },
  36990. [
  36991. {
  36992. name: "Normal",
  36993. height: math.unit(6, "inches"),
  36994. default: true
  36995. },
  36996. ]
  36997. ))
  36998. characterMakers.push(() => makeCharacter(
  36999. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37000. {
  37001. front: {
  37002. height: math.unit(4 + 1/12, "feet"),
  37003. name: "Front",
  37004. image: {
  37005. source: "./media/characters/star/front.svg",
  37006. extra: 1493/1189,
  37007. bottom: 48/1541
  37008. }
  37009. },
  37010. },
  37011. [
  37012. {
  37013. name: "Normal",
  37014. height: math.unit(4 + 1/12, "feet"),
  37015. default: true
  37016. },
  37017. ]
  37018. ))
  37019. characterMakers.push(() => makeCharacter(
  37020. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37021. {
  37022. front: {
  37023. height: math.unit(6 + 3/12, "feet"),
  37024. name: "Front",
  37025. image: {
  37026. source: "./media/characters/comet/front.svg",
  37027. extra: 1681/1462,
  37028. bottom: 26/1707
  37029. }
  37030. },
  37031. },
  37032. [
  37033. {
  37034. name: "Normal",
  37035. height: math.unit(6 + 3/12, "feet"),
  37036. default: true
  37037. },
  37038. ]
  37039. ))
  37040. characterMakers.push(() => makeCharacter(
  37041. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37042. {
  37043. front: {
  37044. height: math.unit(950, "feet"),
  37045. name: "Front",
  37046. image: {
  37047. source: "./media/characters/vortex/front.svg",
  37048. extra: 1497/1434,
  37049. bottom: 56/1553
  37050. }
  37051. },
  37052. maw: {
  37053. height: math.unit(285, "feet"),
  37054. name: "Maw",
  37055. image: {
  37056. source: "./media/characters/vortex/maw.svg"
  37057. }
  37058. },
  37059. },
  37060. [
  37061. {
  37062. name: "Macro",
  37063. height: math.unit(950, "feet"),
  37064. default: true
  37065. },
  37066. ]
  37067. ))
  37068. characterMakers.push(() => makeCharacter(
  37069. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37070. {
  37071. front: {
  37072. height: math.unit(600, "feet"),
  37073. weight: math.unit(0.02, "grams"),
  37074. name: "Front",
  37075. image: {
  37076. source: "./media/characters/doodle/front.svg",
  37077. extra: 1578/1413,
  37078. bottom: 37/1615
  37079. }
  37080. },
  37081. },
  37082. [
  37083. {
  37084. name: "Macro",
  37085. height: math.unit(600, "feet"),
  37086. default: true
  37087. },
  37088. ]
  37089. ))
  37090. characterMakers.push(() => makeCharacter(
  37091. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37092. {
  37093. front: {
  37094. height: math.unit(6 + 6/12, "feet"),
  37095. name: "Front",
  37096. image: {
  37097. source: "./media/characters/jai/front.svg",
  37098. extra: 1645/1534,
  37099. bottom: 115/1760
  37100. }
  37101. },
  37102. },
  37103. [
  37104. {
  37105. name: "Normal",
  37106. height: math.unit(6 + 6/12, "feet"),
  37107. default: true
  37108. },
  37109. ]
  37110. ))
  37111. characterMakers.push(() => makeCharacter(
  37112. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37113. {
  37114. front: {
  37115. height: math.unit(6 + 8/12, "feet"),
  37116. name: "Front",
  37117. image: {
  37118. source: "./media/characters/pixel/front.svg",
  37119. extra: 1900/1735,
  37120. bottom: 63/1963
  37121. }
  37122. },
  37123. },
  37124. [
  37125. {
  37126. name: "Normal",
  37127. height: math.unit(6 + 8/12, "feet"),
  37128. default: true
  37129. },
  37130. ]
  37131. ))
  37132. characterMakers.push(() => makeCharacter(
  37133. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37134. {
  37135. back: {
  37136. height: math.unit(4 + 1/12, "feet"),
  37137. weight: math.unit(75, "lb"),
  37138. name: "Back",
  37139. image: {
  37140. source: "./media/characters/rhett/back.svg",
  37141. extra: 930/878,
  37142. bottom: 25/955
  37143. }
  37144. },
  37145. front: {
  37146. height: math.unit(4 + 1/12, "feet"),
  37147. weight: math.unit(75, "lb"),
  37148. name: "Front",
  37149. image: {
  37150. source: "./media/characters/rhett/front.svg",
  37151. extra: 1682/1586,
  37152. bottom: 92/1774
  37153. }
  37154. },
  37155. },
  37156. [
  37157. {
  37158. name: "Micro",
  37159. height: math.unit(8, "inches")
  37160. },
  37161. {
  37162. name: "Tiny",
  37163. height: math.unit(2, "feet")
  37164. },
  37165. {
  37166. name: "Normal",
  37167. height: math.unit(4 + 1/12, "feet"),
  37168. default: true
  37169. },
  37170. ]
  37171. ))
  37172. characterMakers.push(() => makeCharacter(
  37173. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37174. {
  37175. front: {
  37176. height: math.unit(3 + 3/12, "feet"),
  37177. name: "Front",
  37178. image: {
  37179. source: "./media/characters/penny/front.svg",
  37180. extra: 1406/1311,
  37181. bottom: 26/1432
  37182. }
  37183. },
  37184. },
  37185. [
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(3 + 3/12, "feet"),
  37189. default: true
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37195. {
  37196. front: {
  37197. height: math.unit(4 + 11/12, "feet"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/monty/front.svg",
  37201. extra: 1479/1209,
  37202. bottom: 0/1479
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "Normal",
  37209. height: math.unit(4 + 11/12, "feet"),
  37210. default: true
  37211. },
  37212. ]
  37213. ))
  37214. characterMakers.push(() => makeCharacter(
  37215. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37216. {
  37217. front: {
  37218. height: math.unit(8 + 4/12, "feet"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/sterling/front.svg",
  37222. extra: 1420/1236,
  37223. bottom: 27/1447
  37224. }
  37225. },
  37226. },
  37227. [
  37228. {
  37229. name: "Normal",
  37230. height: math.unit(8 + 4/12, "feet"),
  37231. default: true
  37232. },
  37233. ]
  37234. ))
  37235. characterMakers.push(() => makeCharacter(
  37236. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37237. {
  37238. front: {
  37239. height: math.unit(15, "feet"),
  37240. name: "Front",
  37241. image: {
  37242. source: "./media/characters/marble/front.svg",
  37243. extra: 973/937,
  37244. bottom: 32/1005
  37245. }
  37246. },
  37247. },
  37248. [
  37249. {
  37250. name: "Normal",
  37251. height: math.unit(15, "feet"),
  37252. default: true
  37253. },
  37254. ]
  37255. ))
  37256. characterMakers.push(() => makeCharacter(
  37257. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37258. {
  37259. front: {
  37260. height: math.unit(3, "inches"),
  37261. name: "Front",
  37262. image: {
  37263. source: "./media/characters/powder/front.svg",
  37264. extra: 1504/1334,
  37265. bottom: 518/2022
  37266. }
  37267. },
  37268. },
  37269. [
  37270. {
  37271. name: "Normal",
  37272. height: math.unit(3, "inches"),
  37273. default: true
  37274. },
  37275. ]
  37276. ))
  37277. characterMakers.push(() => makeCharacter(
  37278. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37279. {
  37280. front: {
  37281. height: math.unit(4 + 5/12, "feet"),
  37282. name: "Front",
  37283. image: {
  37284. source: "./media/characters/joey-raccoon/front.svg",
  37285. extra: 1273/1197,
  37286. bottom: 0/1273
  37287. }
  37288. },
  37289. },
  37290. [
  37291. {
  37292. name: "Normal",
  37293. height: math.unit(4 + 5/12, "feet"),
  37294. default: true
  37295. },
  37296. ]
  37297. ))
  37298. characterMakers.push(() => makeCharacter(
  37299. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37300. {
  37301. front: {
  37302. height: math.unit(8 + 4/12, "feet"),
  37303. name: "Front",
  37304. image: {
  37305. source: "./media/characters/vick/front.svg",
  37306. extra: 2187/2118,
  37307. bottom: 47/2234
  37308. }
  37309. },
  37310. },
  37311. [
  37312. {
  37313. name: "Normal",
  37314. height: math.unit(8 + 4/12, "feet"),
  37315. default: true
  37316. },
  37317. ]
  37318. ))
  37319. characterMakers.push(() => makeCharacter(
  37320. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37321. {
  37322. front: {
  37323. height: math.unit(5 + 5/12, "feet"),
  37324. name: "Front",
  37325. image: {
  37326. source: "./media/characters/mitsy/front.svg",
  37327. extra: 1842/1695,
  37328. bottom: 0/1842
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Normal",
  37335. height: math.unit(5 + 5/12, "feet"),
  37336. default: true
  37337. },
  37338. ]
  37339. ))
  37340. characterMakers.push(() => makeCharacter(
  37341. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37342. {
  37343. front: {
  37344. height: math.unit(6 + 3/12, "feet"),
  37345. name: "Front",
  37346. image: {
  37347. source: "./media/characters/silvy/front.svg",
  37348. extra: 1995/1836,
  37349. bottom: 225/2220
  37350. }
  37351. },
  37352. },
  37353. [
  37354. {
  37355. name: "Normal",
  37356. height: math.unit(6 + 3/12, "feet"),
  37357. default: true
  37358. },
  37359. ]
  37360. ))
  37361. characterMakers.push(() => makeCharacter(
  37362. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37363. {
  37364. front: {
  37365. height: math.unit(3 + 8/12, "feet"),
  37366. name: "Front",
  37367. image: {
  37368. source: "./media/characters/rodney/front.svg",
  37369. extra: 1956/1747,
  37370. bottom: 31/1987
  37371. }
  37372. },
  37373. frontDressed: {
  37374. height: math.unit(2.9, "feet"),
  37375. name: "Front (Dressed)",
  37376. image: {
  37377. source: "./media/characters/rodney/front-dressed.svg",
  37378. extra: 1382/1241,
  37379. bottom: 385/1767
  37380. }
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "Normal",
  37386. height: math.unit(3 + 8/12, "feet"),
  37387. default: true
  37388. },
  37389. ]
  37390. ))
  37391. characterMakers.push(() => makeCharacter(
  37392. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37393. {
  37394. front: {
  37395. height: math.unit(5 + 9/12, "feet"),
  37396. weight: math.unit(194, "lbs"),
  37397. name: "Front",
  37398. image: {
  37399. source: "./media/characters/zakail-sudekai/front.svg",
  37400. extra: 2696/2533,
  37401. bottom: 248/2944
  37402. }
  37403. },
  37404. maw: {
  37405. height: math.unit(1.35, "feet"),
  37406. name: "Maw",
  37407. image: {
  37408. source: "./media/characters/zakail-sudekai/maw.svg"
  37409. }
  37410. },
  37411. },
  37412. [
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(5 + 9/12, "feet"),
  37416. default: true
  37417. },
  37418. ]
  37419. ))
  37420. characterMakers.push(() => makeCharacter(
  37421. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37422. {
  37423. front: {
  37424. height: math.unit(8 + 4/12, "feet"),
  37425. weight: math.unit(1200, "lb"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/eleanor/front.svg",
  37429. extra: 1226/1192,
  37430. bottom: 52/1278
  37431. }
  37432. },
  37433. back: {
  37434. height: math.unit(8 + 4/12, "feet"),
  37435. weight: math.unit(1200, "lb"),
  37436. name: "Back",
  37437. image: {
  37438. source: "./media/characters/eleanor/back.svg",
  37439. extra: 1242/1184,
  37440. bottom: 60/1302
  37441. }
  37442. },
  37443. head: {
  37444. height: math.unit(2.62, "feet"),
  37445. name: "Head",
  37446. image: {
  37447. source: "./media/characters/eleanor/head.svg"
  37448. }
  37449. },
  37450. },
  37451. [
  37452. {
  37453. name: "Normal",
  37454. height: math.unit(8 + 4/12, "feet"),
  37455. default: true
  37456. },
  37457. ]
  37458. ))
  37459. characterMakers.push(() => makeCharacter(
  37460. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37461. {
  37462. front: {
  37463. height: math.unit(8 + 4/12, "feet"),
  37464. weight: math.unit(750, "lb"),
  37465. name: "Front",
  37466. image: {
  37467. source: "./media/characters/tanya/front.svg",
  37468. extra: 1749/1615,
  37469. bottom: 33/1782
  37470. }
  37471. },
  37472. },
  37473. [
  37474. {
  37475. name: "Normal",
  37476. height: math.unit(8 + 4/12, "feet"),
  37477. default: true
  37478. },
  37479. ]
  37480. ))
  37481. characterMakers.push(() => makeCharacter(
  37482. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37483. {
  37484. front: {
  37485. height: math.unit(5, "feet"),
  37486. weight: math.unit(225, "lb"),
  37487. name: "Front",
  37488. image: {
  37489. source: "./media/characters/cindy/front.svg",
  37490. extra: 1320/1250,
  37491. bottom: 42/1362
  37492. }
  37493. },
  37494. frontDressed: {
  37495. height: math.unit(5, "feet"),
  37496. weight: math.unit(225, "lb"),
  37497. name: "Front (Dressed)",
  37498. image: {
  37499. source: "./media/characters/cindy/front-dressed.svg",
  37500. extra: 1320/1250,
  37501. bottom: 42/1362
  37502. }
  37503. },
  37504. back: {
  37505. height: math.unit(5, "feet"),
  37506. weight: math.unit(225, "lb"),
  37507. name: "Back",
  37508. image: {
  37509. source: "./media/characters/cindy/back.svg",
  37510. extra: 1384/1346,
  37511. bottom: 14/1398
  37512. }
  37513. },
  37514. },
  37515. [
  37516. {
  37517. name: "Normal",
  37518. height: math.unit(5, "feet"),
  37519. default: true
  37520. },
  37521. ]
  37522. ))
  37523. characterMakers.push(() => makeCharacter(
  37524. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37525. {
  37526. front: {
  37527. height: math.unit(6 + 9/12, "feet"),
  37528. weight: math.unit(440, "lb"),
  37529. name: "Front",
  37530. image: {
  37531. source: "./media/characters/wilbur-owen/front.svg",
  37532. extra: 1575/1448,
  37533. bottom: 72/1647
  37534. }
  37535. },
  37536. back: {
  37537. height: math.unit(6 + 9/12, "feet"),
  37538. weight: math.unit(440, "lb"),
  37539. name: "Back",
  37540. image: {
  37541. source: "./media/characters/wilbur-owen/back.svg",
  37542. extra: 1578/1445,
  37543. bottom: 36/1614
  37544. }
  37545. },
  37546. },
  37547. [
  37548. {
  37549. name: "Normal",
  37550. height: math.unit(6 + 9/12, "feet"),
  37551. default: true
  37552. },
  37553. ]
  37554. ))
  37555. characterMakers.push(() => makeCharacter(
  37556. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37557. {
  37558. front: {
  37559. height: math.unit(6 + 5/12, "feet"),
  37560. weight: math.unit(650, "lb"),
  37561. name: "Front",
  37562. image: {
  37563. source: "./media/characters/keegan/front.svg",
  37564. extra: 2387/2198,
  37565. bottom: 33/2420
  37566. }
  37567. },
  37568. side: {
  37569. height: math.unit(6 + 5/12, "feet"),
  37570. weight: math.unit(650, "lb"),
  37571. name: "Side",
  37572. image: {
  37573. source: "./media/characters/keegan/side.svg",
  37574. extra: 2390/2202,
  37575. bottom: 47/2437
  37576. }
  37577. },
  37578. back: {
  37579. height: math.unit(6 + 5/12, "feet"),
  37580. weight: math.unit(650, "lb"),
  37581. name: "Back",
  37582. image: {
  37583. source: "./media/characters/keegan/back.svg",
  37584. extra: 2418/2268,
  37585. bottom: 15/2433
  37586. }
  37587. },
  37588. frontSfw: {
  37589. height: math.unit(6 + 5/12, "feet"),
  37590. weight: math.unit(650, "lb"),
  37591. name: "Front (SFW)",
  37592. image: {
  37593. source: "./media/characters/keegan/front-sfw.svg",
  37594. extra: 2387/2198,
  37595. bottom: 33/2420
  37596. }
  37597. },
  37598. beans: {
  37599. height: math.unit(1.85, "feet"),
  37600. name: "Beans",
  37601. image: {
  37602. source: "./media/characters/keegan/beans.svg"
  37603. }
  37604. },
  37605. },
  37606. [
  37607. {
  37608. name: "Normal",
  37609. height: math.unit(6 + 5/12, "feet"),
  37610. default: true
  37611. },
  37612. ]
  37613. ))
  37614. characterMakers.push(() => makeCharacter(
  37615. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37616. {
  37617. front: {
  37618. height: math.unit(9, "feet"),
  37619. name: "Front",
  37620. image: {
  37621. source: "./media/characters/colton/front.svg",
  37622. extra: 1589/1326,
  37623. bottom: 139/1728
  37624. }
  37625. },
  37626. },
  37627. [
  37628. {
  37629. name: "Normal",
  37630. height: math.unit(9, "feet"),
  37631. default: true
  37632. },
  37633. ]
  37634. ))
  37635. characterMakers.push(() => makeCharacter(
  37636. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37637. {
  37638. front: {
  37639. height: math.unit(2 + 9/12, "feet"),
  37640. name: "Front",
  37641. image: {
  37642. source: "./media/characters/bora/front.svg",
  37643. extra: 1265/1250,
  37644. bottom: 24/1289
  37645. }
  37646. },
  37647. },
  37648. [
  37649. {
  37650. name: "Normal",
  37651. height: math.unit(2 + 9/12, "feet"),
  37652. default: true
  37653. },
  37654. ]
  37655. ))
  37656. characterMakers.push(() => makeCharacter(
  37657. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37658. {
  37659. front: {
  37660. height: math.unit(8, "feet"),
  37661. name: "Front",
  37662. image: {
  37663. source: "./media/characters/myu-myu/front.svg",
  37664. extra: 1949/1857,
  37665. bottom: 90/2039
  37666. }
  37667. },
  37668. },
  37669. [
  37670. {
  37671. name: "Normal",
  37672. height: math.unit(8, "feet"),
  37673. default: true
  37674. },
  37675. {
  37676. name: "Big",
  37677. height: math.unit(15, "feet")
  37678. },
  37679. {
  37680. name: "BIG",
  37681. height: math.unit(25, "feet")
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37687. {
  37688. side: {
  37689. height: math.unit(7 + 5/12, "feet"),
  37690. weight: math.unit(2800, "lb"),
  37691. name: "Side",
  37692. image: {
  37693. source: "./media/characters/haloren/side.svg",
  37694. extra: 1793/409,
  37695. bottom: 59/1852
  37696. }
  37697. },
  37698. frontPaw: {
  37699. height: math.unit(2.36, "feet"),
  37700. name: "Front paw",
  37701. image: {
  37702. source: "./media/characters/haloren/front-paw.svg"
  37703. }
  37704. },
  37705. hindPaw: {
  37706. height: math.unit(3.18, "feet"),
  37707. name: "Hind paw",
  37708. image: {
  37709. source: "./media/characters/haloren/hind-paw.svg"
  37710. }
  37711. },
  37712. maw: {
  37713. height: math.unit(5.05, "feet"),
  37714. name: "Maw",
  37715. image: {
  37716. source: "./media/characters/haloren/maw.svg"
  37717. }
  37718. },
  37719. dick: {
  37720. height: math.unit(2.90, "feet"),
  37721. name: "Dick",
  37722. image: {
  37723. source: "./media/characters/haloren/dick.svg"
  37724. }
  37725. },
  37726. },
  37727. [
  37728. {
  37729. name: "Normal",
  37730. height: math.unit(7 + 5/12, "feet"),
  37731. default: true
  37732. },
  37733. {
  37734. name: "Enhanced",
  37735. height: math.unit(14 + 3/12, "feet")
  37736. },
  37737. ]
  37738. ))
  37739. characterMakers.push(() => makeCharacter(
  37740. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37741. {
  37742. front: {
  37743. height: math.unit(171, "cm"),
  37744. name: "Front",
  37745. image: {
  37746. source: "./media/characters/kimmy/front.svg",
  37747. extra: 1491/1435,
  37748. bottom: 53/1544
  37749. }
  37750. },
  37751. },
  37752. [
  37753. {
  37754. name: "Small",
  37755. height: math.unit(9, "cm")
  37756. },
  37757. {
  37758. name: "Normal",
  37759. height: math.unit(171, "cm"),
  37760. default: true
  37761. },
  37762. ]
  37763. ))
  37764. characterMakers.push(() => makeCharacter(
  37765. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37766. {
  37767. front: {
  37768. height: math.unit(8, "feet"),
  37769. weight: math.unit(300, "lb"),
  37770. name: "Front",
  37771. image: {
  37772. source: "./media/characters/galeboomer/front.svg",
  37773. extra: 4651/4415,
  37774. bottom: 162/4813
  37775. }
  37776. },
  37777. back: {
  37778. height: math.unit(8, "feet"),
  37779. weight: math.unit(300, "lb"),
  37780. name: "Back",
  37781. image: {
  37782. source: "./media/characters/galeboomer/back.svg",
  37783. extra: 4544/4314,
  37784. bottom: 16/4560
  37785. }
  37786. },
  37787. frontAlt: {
  37788. height: math.unit(8, "feet"),
  37789. weight: math.unit(300, "lb"),
  37790. name: "Front (Alt)",
  37791. image: {
  37792. source: "./media/characters/galeboomer/front-alt.svg",
  37793. extra: 4458/4228,
  37794. bottom: 68/4526
  37795. }
  37796. },
  37797. maw: {
  37798. height: math.unit(1.2, "feet"),
  37799. name: "Maw",
  37800. image: {
  37801. source: "./media/characters/galeboomer/maw.svg"
  37802. }
  37803. },
  37804. },
  37805. [
  37806. {
  37807. name: "Normal",
  37808. height: math.unit(8, "feet"),
  37809. default: true
  37810. },
  37811. ]
  37812. ))
  37813. characterMakers.push(() => makeCharacter(
  37814. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37815. {
  37816. front: {
  37817. height: math.unit(5 + 9/12, "feet"),
  37818. weight: math.unit(120, "lb"),
  37819. name: "Front",
  37820. image: {
  37821. source: "./media/characters/chyr/front.svg",
  37822. extra: 1323/1254,
  37823. bottom: 63/1386
  37824. }
  37825. },
  37826. back: {
  37827. height: math.unit(5 + 9/12, "feet"),
  37828. weight: math.unit(120, "lb"),
  37829. name: "Back",
  37830. image: {
  37831. source: "./media/characters/chyr/back.svg",
  37832. extra: 1323/1252,
  37833. bottom: 48/1371
  37834. }
  37835. },
  37836. },
  37837. [
  37838. {
  37839. name: "Normal",
  37840. height: math.unit(5 + 9/12, "feet"),
  37841. default: true
  37842. },
  37843. ]
  37844. ))
  37845. characterMakers.push(() => makeCharacter(
  37846. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37847. {
  37848. front: {
  37849. height: math.unit(7, "feet"),
  37850. weight: math.unit(310, "lb"),
  37851. name: "Front",
  37852. image: {
  37853. source: "./media/characters/solarus/front.svg",
  37854. extra: 2415/2021,
  37855. bottom: 103/2518
  37856. }
  37857. },
  37858. back: {
  37859. height: math.unit(7, "feet"),
  37860. weight: math.unit(310, "lb"),
  37861. name: "Back",
  37862. image: {
  37863. source: "./media/characters/solarus/back.svg",
  37864. extra: 2463/2089,
  37865. bottom: 79/2542
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Normal",
  37872. height: math.unit(7, "feet"),
  37873. default: true
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(16, "feet"),
  37882. name: "Front",
  37883. image: {
  37884. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37885. extra: 1844/1780,
  37886. bottom: 58/1902
  37887. }
  37888. },
  37889. winterCoat: {
  37890. height: math.unit(16, "feet"),
  37891. name: "Winter Coat",
  37892. image: {
  37893. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37894. extra: 1807/1775,
  37895. bottom: 69/1876
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Normal",
  37902. height: math.unit(16, "feet"),
  37903. default: true
  37904. },
  37905. {
  37906. name: "Chicago Size",
  37907. height: math.unit(560, "feet")
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(11 + 6/12, "feet"),
  37916. weight: math.unit(1366, "lb"),
  37917. name: "Front",
  37918. image: {
  37919. source: "./media/characters/lexor/front.svg",
  37920. extra: 1560/1481,
  37921. bottom: 211/1771
  37922. }
  37923. },
  37924. back: {
  37925. height: math.unit(11 + 6/12, "feet"),
  37926. weight: math.unit(1366, "lb"),
  37927. name: "Back",
  37928. image: {
  37929. source: "./media/characters/lexor/back.svg",
  37930. extra: 1614/1533,
  37931. bottom: 76/1690
  37932. }
  37933. },
  37934. maw: {
  37935. height: math.unit(3, "feet"),
  37936. name: "Maw",
  37937. image: {
  37938. source: "./media/characters/lexor/maw.svg"
  37939. }
  37940. },
  37941. dick: {
  37942. height: math.unit(2.59, "feet"),
  37943. name: "Dick",
  37944. image: {
  37945. source: "./media/characters/lexor/dick.svg"
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(11 + 6/12, "feet"),
  37953. default: true
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37959. {
  37960. front: {
  37961. height: math.unit(5 + 8/12, "feet"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/magnum/front.svg",
  37965. extra: 942/855,
  37966. bottom: 26/968
  37967. }
  37968. },
  37969. },
  37970. [
  37971. {
  37972. name: "Normal",
  37973. height: math.unit(5 + 8/12, "feet"),
  37974. default: true
  37975. },
  37976. ]
  37977. ))
  37978. characterMakers.push(() => makeCharacter(
  37979. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37980. {
  37981. front: {
  37982. height: math.unit(18 + 4/12, "feet"),
  37983. weight: math.unit(1500, "kg"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/solas-sharpsman/front.svg",
  37987. extra: 1698/1589,
  37988. bottom: 0/1698
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(18 + 4/12, "feet"),
  37996. default: true
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38002. {
  38003. front: {
  38004. height: math.unit(5 + 5/12, "feet"),
  38005. weight: math.unit(180, "lb"),
  38006. name: "Front",
  38007. image: {
  38008. source: "./media/characters/october/front.svg",
  38009. extra: 1800/1650,
  38010. bottom: 0/1800
  38011. }
  38012. },
  38013. frontNsfw: {
  38014. height: math.unit(5 + 5/12, "feet"),
  38015. weight: math.unit(180, "lb"),
  38016. name: "Front (NSFW)",
  38017. image: {
  38018. source: "./media/characters/october/front-nsfw.svg",
  38019. extra: 1392/1307,
  38020. bottom: 42/1434
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(5 + 5/12, "feet"),
  38028. default: true
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38034. {
  38035. front: {
  38036. height: math.unit(8 + 6/12, "feet"),
  38037. name: "Front",
  38038. image: {
  38039. source: "./media/characters/essynkardi/front.svg",
  38040. extra: 1914/1846,
  38041. bottom: 22/1936
  38042. }
  38043. },
  38044. },
  38045. [
  38046. {
  38047. name: "Normal",
  38048. height: math.unit(8 + 6/12, "feet"),
  38049. default: true
  38050. },
  38051. ]
  38052. ))
  38053. characterMakers.push(() => makeCharacter(
  38054. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38055. {
  38056. front: {
  38057. height: math.unit(6 + 6/12, "feet"),
  38058. weight: math.unit(7, "lb"),
  38059. name: "Front",
  38060. image: {
  38061. source: "./media/characters/icky/front.svg",
  38062. extra: 813/782,
  38063. bottom: 66/879
  38064. }
  38065. },
  38066. back: {
  38067. height: math.unit(6 + 6/12, "feet"),
  38068. weight: math.unit(7, "lb"),
  38069. name: "Back",
  38070. image: {
  38071. source: "./media/characters/icky/back.svg",
  38072. extra: 754/735,
  38073. bottom: 56/810
  38074. }
  38075. },
  38076. },
  38077. [
  38078. {
  38079. name: "Normal",
  38080. height: math.unit(6 + 6/12, "feet"),
  38081. default: true
  38082. },
  38083. ]
  38084. ))
  38085. characterMakers.push(() => makeCharacter(
  38086. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38087. {
  38088. front: {
  38089. height: math.unit(15, "feet"),
  38090. name: "Front",
  38091. image: {
  38092. source: "./media/characters/rojas/front.svg",
  38093. extra: 1462/1408,
  38094. bottom: 95/1557
  38095. }
  38096. },
  38097. back: {
  38098. height: math.unit(15, "feet"),
  38099. name: "Back",
  38100. image: {
  38101. source: "./media/characters/rojas/back.svg",
  38102. extra: 1023/954,
  38103. bottom: 28/1051
  38104. }
  38105. },
  38106. },
  38107. [
  38108. {
  38109. name: "Normal",
  38110. height: math.unit(15, "feet"),
  38111. default: true
  38112. },
  38113. ]
  38114. ))
  38115. characterMakers.push(() => makeCharacter(
  38116. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38117. {
  38118. frontHuman: {
  38119. height: math.unit(5 + 7/12, "feet"),
  38120. name: "Front (Human)",
  38121. image: {
  38122. source: "./media/characters/alek-dryagan/front-human.svg",
  38123. extra: 1687/1667,
  38124. bottom: 69/1756
  38125. }
  38126. },
  38127. backHuman: {
  38128. height: math.unit(5 + 7/12, "feet"),
  38129. name: "Back (Human)",
  38130. image: {
  38131. source: "./media/characters/alek-dryagan/back-human.svg",
  38132. extra: 1670/1649,
  38133. bottom: 65/1735
  38134. }
  38135. },
  38136. frontDemi: {
  38137. height: math.unit(65, "feet"),
  38138. name: "Front (Demi)",
  38139. image: {
  38140. source: "./media/characters/alek-dryagan/front-demi.svg",
  38141. extra: 1669/1642,
  38142. bottom: 49/1718
  38143. }
  38144. },
  38145. backDemi: {
  38146. height: math.unit(65, "feet"),
  38147. name: "Back (Demi)",
  38148. image: {
  38149. source: "./media/characters/alek-dryagan/back-demi.svg",
  38150. extra: 1658/1637,
  38151. bottom: 40/1698
  38152. }
  38153. },
  38154. mawHuman: {
  38155. height: math.unit(0.3, "feet"),
  38156. name: "Maw (Human)",
  38157. image: {
  38158. source: "./media/characters/alek-dryagan/maw-human.svg"
  38159. }
  38160. },
  38161. mawDemi: {
  38162. height: math.unit(3.8, "feet"),
  38163. name: "Maw (Demi)",
  38164. image: {
  38165. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38166. }
  38167. },
  38168. },
  38169. [
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(5 + 7/12, "feet"),
  38173. default: true
  38174. },
  38175. ]
  38176. ))
  38177. characterMakers.push(() => makeCharacter(
  38178. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38179. {
  38180. frontHuman: {
  38181. height: math.unit(5 + 2/12, "feet"),
  38182. name: "Front (Human)",
  38183. image: {
  38184. source: "./media/characters/gen/front-human.svg",
  38185. extra: 1627/1538,
  38186. bottom: 71/1698
  38187. }
  38188. },
  38189. backHuman: {
  38190. height: math.unit(5 + 2/12, "feet"),
  38191. name: "Back (Human)",
  38192. image: {
  38193. source: "./media/characters/gen/back-human.svg",
  38194. extra: 1638/1548,
  38195. bottom: 69/1707
  38196. }
  38197. },
  38198. frontDemi: {
  38199. height: math.unit(5 + 2/12, "feet"),
  38200. name: "Front (Demi)",
  38201. image: {
  38202. source: "./media/characters/gen/front-demi.svg",
  38203. extra: 1627/1538,
  38204. bottom: 71/1698
  38205. }
  38206. },
  38207. backDemi: {
  38208. height: math.unit(5 + 2/12, "feet"),
  38209. name: "Back (Demi)",
  38210. image: {
  38211. source: "./media/characters/gen/back-demi.svg",
  38212. extra: 1638/1548,
  38213. bottom: 69/1707
  38214. }
  38215. },
  38216. },
  38217. [
  38218. {
  38219. name: "Normal",
  38220. height: math.unit(5 + 2/12, "feet"),
  38221. default: true
  38222. },
  38223. ]
  38224. ))
  38225. characterMakers.push(() => makeCharacter(
  38226. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38227. {
  38228. frontImp: {
  38229. height: math.unit(1 + 11/12, "feet"),
  38230. name: "Front (Imp)",
  38231. image: {
  38232. source: "./media/characters/max-kobold/front-imp.svg",
  38233. extra: 1238/1134,
  38234. bottom: 81/1319
  38235. }
  38236. },
  38237. backImp: {
  38238. height: math.unit(1 + 11/12, "feet"),
  38239. name: "Back (Imp)",
  38240. image: {
  38241. source: "./media/characters/max-kobold/back-imp.svg",
  38242. extra: 1334/1175,
  38243. bottom: 34/1368
  38244. }
  38245. },
  38246. frontDemi: {
  38247. height: math.unit(5 + 9/12, "feet"),
  38248. name: "Front (Demi)",
  38249. image: {
  38250. source: "./media/characters/max-kobold/front-demi.svg",
  38251. extra: 1715/1685,
  38252. bottom: 54/1769
  38253. }
  38254. },
  38255. backDemi: {
  38256. height: math.unit(5 + 9/12, "feet"),
  38257. name: "Back (Demi)",
  38258. image: {
  38259. source: "./media/characters/max-kobold/back-demi.svg",
  38260. extra: 1752/1729,
  38261. bottom: 41/1793
  38262. }
  38263. },
  38264. handImp: {
  38265. height: math.unit(0.45, "feet"),
  38266. name: "Hand (Imp)",
  38267. image: {
  38268. source: "./media/characters/max-kobold/hand.svg"
  38269. }
  38270. },
  38271. pawImp: {
  38272. height: math.unit(0.46, "feet"),
  38273. name: "Paw (Imp)",
  38274. image: {
  38275. source: "./media/characters/max-kobold/paw.svg"
  38276. }
  38277. },
  38278. handDemi: {
  38279. height: math.unit(0.80, "feet"),
  38280. name: "Hand (Demi)",
  38281. image: {
  38282. source: "./media/characters/max-kobold/hand.svg"
  38283. }
  38284. },
  38285. pawDemi: {
  38286. height: math.unit(1.1, "feet"),
  38287. name: "Paw (Demi)",
  38288. image: {
  38289. source: "./media/characters/max-kobold/paw.svg"
  38290. }
  38291. },
  38292. headImp: {
  38293. height: math.unit(1.33, "feet"),
  38294. name: "Head (Imp)",
  38295. image: {
  38296. source: "./media/characters/max-kobold/head-imp.svg"
  38297. }
  38298. },
  38299. mawImp: {
  38300. height: math.unit(0.75, "feet"),
  38301. name: "Maw (Imp)",
  38302. image: {
  38303. source: "./media/characters/max-kobold/maw-imp.svg"
  38304. }
  38305. },
  38306. mawDemi: {
  38307. height: math.unit(0.42, "feet"),
  38308. name: "Maw (Demi)",
  38309. image: {
  38310. source: "./media/characters/max-kobold/maw-demi.svg"
  38311. }
  38312. },
  38313. },
  38314. [
  38315. {
  38316. name: "Normal",
  38317. height: math.unit(1 + 11/12, "feet"),
  38318. default: true
  38319. },
  38320. ]
  38321. ))
  38322. characterMakers.push(() => makeCharacter(
  38323. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38324. {
  38325. front: {
  38326. height: math.unit(7 + 5/12, "feet"),
  38327. name: "Front",
  38328. image: {
  38329. source: "./media/characters/carbon/front.svg",
  38330. extra: 1754/1689,
  38331. bottom: 65/1819
  38332. }
  38333. },
  38334. back: {
  38335. height: math.unit(7 + 5/12, "feet"),
  38336. name: "Back",
  38337. image: {
  38338. source: "./media/characters/carbon/back.svg",
  38339. extra: 1762/1695,
  38340. bottom: 24/1786
  38341. }
  38342. },
  38343. frontGigantamax: {
  38344. height: math.unit(150, "feet"),
  38345. name: "Front (Gigantamax)",
  38346. image: {
  38347. source: "./media/characters/carbon/front-gigantamax.svg",
  38348. extra: 1826/1669,
  38349. bottom: 59/1885
  38350. }
  38351. },
  38352. backGigantamax: {
  38353. height: math.unit(150, "feet"),
  38354. name: "Back (Gigantamax)",
  38355. image: {
  38356. source: "./media/characters/carbon/back-gigantamax.svg",
  38357. extra: 1796/1653,
  38358. bottom: 53/1849
  38359. }
  38360. },
  38361. maw: {
  38362. height: math.unit(0.48, "feet"),
  38363. name: "Maw",
  38364. image: {
  38365. source: "./media/characters/carbon/maw.svg"
  38366. }
  38367. },
  38368. mawGigantamax: {
  38369. height: math.unit(7.5, "feet"),
  38370. name: "Maw (Gigantamax)",
  38371. image: {
  38372. source: "./media/characters/carbon/maw-gigantamax.svg"
  38373. }
  38374. },
  38375. },
  38376. [
  38377. {
  38378. name: "Normal",
  38379. height: math.unit(7 + 5/12, "feet"),
  38380. default: true
  38381. },
  38382. ]
  38383. ))
  38384. characterMakers.push(() => makeCharacter(
  38385. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38386. {
  38387. front: {
  38388. height: math.unit(6, "feet"),
  38389. name: "Front",
  38390. image: {
  38391. source: "./media/characters/maverick/front.svg",
  38392. extra: 1672/1661,
  38393. bottom: 85/1757
  38394. }
  38395. },
  38396. back: {
  38397. height: math.unit(6, "feet"),
  38398. name: "Back",
  38399. image: {
  38400. source: "./media/characters/maverick/back.svg",
  38401. extra: 1642/1631,
  38402. bottom: 38/1680
  38403. }
  38404. },
  38405. },
  38406. [
  38407. {
  38408. name: "Normal",
  38409. height: math.unit(6, "feet"),
  38410. default: true
  38411. },
  38412. ]
  38413. ))
  38414. characterMakers.push(() => makeCharacter(
  38415. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38416. {
  38417. front: {
  38418. height: math.unit(15, "feet"),
  38419. weight: math.unit(615, "lb"),
  38420. name: "Front",
  38421. image: {
  38422. source: "./media/characters/grockle/front.svg",
  38423. extra: 1535/1427,
  38424. bottom: 56/1591
  38425. }
  38426. },
  38427. },
  38428. [
  38429. {
  38430. name: "Normal",
  38431. height: math.unit(15, "feet"),
  38432. default: true
  38433. },
  38434. {
  38435. name: "Large",
  38436. height: math.unit(150, "feet")
  38437. },
  38438. {
  38439. name: "Macro",
  38440. height: math.unit(1876, "feet")
  38441. },
  38442. {
  38443. name: "Mega Macro",
  38444. height: math.unit(121940, "feet")
  38445. },
  38446. {
  38447. name: "Giga Macro",
  38448. height: math.unit(750, "km")
  38449. },
  38450. {
  38451. name: "Tera Macro",
  38452. height: math.unit(750000, "km")
  38453. },
  38454. {
  38455. name: "Galactic",
  38456. height: math.unit(1.4e5, "km")
  38457. },
  38458. {
  38459. name: "Godlike",
  38460. height: math.unit(9.8e280, "galaxies")
  38461. },
  38462. ]
  38463. ))
  38464. characterMakers.push(() => makeCharacter(
  38465. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38466. {
  38467. front: {
  38468. height: math.unit(11, "meters"),
  38469. weight: math.unit(20, "tonnes"),
  38470. name: "Front",
  38471. image: {
  38472. source: "./media/characters/alistair/front.svg",
  38473. extra: 1265/1009,
  38474. bottom: 93/1358
  38475. }
  38476. },
  38477. },
  38478. [
  38479. {
  38480. name: "Normal",
  38481. height: math.unit(11, "meters"),
  38482. default: true
  38483. },
  38484. ]
  38485. ))
  38486. characterMakers.push(() => makeCharacter(
  38487. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38488. {
  38489. front: {
  38490. height: math.unit(5 + 8/12, "feet"),
  38491. name: "Front",
  38492. image: {
  38493. source: "./media/characters/haruka/front.svg",
  38494. extra: 2012/1952,
  38495. bottom: 0/2012
  38496. }
  38497. },
  38498. },
  38499. [
  38500. {
  38501. name: "Normal",
  38502. height: math.unit(5 + 8/12, "feet"),
  38503. default: true
  38504. },
  38505. ]
  38506. ))
  38507. characterMakers.push(() => makeCharacter(
  38508. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38509. {
  38510. back: {
  38511. height: math.unit(9, "feet"),
  38512. name: "Back",
  38513. image: {
  38514. source: "./media/characters/vivian-sylveon/back.svg",
  38515. extra: 1853/1714,
  38516. bottom: 0/1853
  38517. }
  38518. },
  38519. },
  38520. [
  38521. {
  38522. name: "Normal",
  38523. height: math.unit(9, "feet"),
  38524. default: true
  38525. },
  38526. {
  38527. name: "Macro",
  38528. height: math.unit(500, "feet")
  38529. },
  38530. {
  38531. name: "Megamacro",
  38532. height: math.unit(600, "miles")
  38533. },
  38534. {
  38535. name: "Gigamacro",
  38536. height: math.unit(30000, "miles")
  38537. },
  38538. ]
  38539. ))
  38540. characterMakers.push(() => makeCharacter(
  38541. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38542. {
  38543. anthro: {
  38544. height: math.unit(5 + 10/12, "feet"),
  38545. weight: math.unit(100, "lb"),
  38546. name: "Anthro",
  38547. image: {
  38548. source: "./media/characters/daiki/anthro.svg",
  38549. extra: 1115/1027,
  38550. bottom: 69/1184
  38551. }
  38552. },
  38553. feral: {
  38554. height: math.unit(200, "feet"),
  38555. name: "Feral",
  38556. image: {
  38557. source: "./media/characters/daiki/feral.svg",
  38558. extra: 1256/313,
  38559. bottom: 39/1295
  38560. }
  38561. },
  38562. feralHead: {
  38563. height: math.unit(171, "feet"),
  38564. name: "Feral Head",
  38565. image: {
  38566. source: "./media/characters/daiki/feral-head.svg"
  38567. }
  38568. },
  38569. manaDragon: {
  38570. height: math.unit(170, "meters"),
  38571. name: "Mana-dragon",
  38572. image: {
  38573. source: "./media/characters/daiki/mana-dragon.svg",
  38574. extra: 763/420,
  38575. bottom: 97/860
  38576. }
  38577. },
  38578. },
  38579. [
  38580. {
  38581. name: "Normal",
  38582. height: math.unit(5 + 10/12, "feet"),
  38583. default: true
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38589. {
  38590. fullyEquippedFront: {
  38591. height: math.unit(3 + 1/12, "feet"),
  38592. weight: math.unit(24, "lb"),
  38593. name: "Fully Equipped (Front)",
  38594. image: {
  38595. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38596. extra: 687/605,
  38597. bottom: 18/705
  38598. }
  38599. },
  38600. fullyEquippedBack: {
  38601. height: math.unit(3 + 1/12, "feet"),
  38602. weight: math.unit(24, "lb"),
  38603. name: "Fully Equipped (Back)",
  38604. image: {
  38605. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38606. extra: 689/590,
  38607. bottom: 18/707
  38608. }
  38609. },
  38610. dailyWear: {
  38611. height: math.unit(3 + 1/12, "feet"),
  38612. weight: math.unit(24, "lb"),
  38613. name: "Daily Wear",
  38614. image: {
  38615. source: "./media/characters/tea-spot/daily-wear.svg",
  38616. extra: 701/620,
  38617. bottom: 21/722
  38618. }
  38619. },
  38620. maidWork: {
  38621. height: math.unit(3 + 1/12, "feet"),
  38622. weight: math.unit(24, "lb"),
  38623. name: "Maid Work",
  38624. image: {
  38625. source: "./media/characters/tea-spot/maid-work.svg",
  38626. extra: 693/609,
  38627. bottom: 15/708
  38628. }
  38629. },
  38630. },
  38631. [
  38632. {
  38633. name: "Normal",
  38634. height: math.unit(3 + 1/12, "feet"),
  38635. default: true
  38636. },
  38637. ]
  38638. ))
  38639. characterMakers.push(() => makeCharacter(
  38640. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38641. {
  38642. front: {
  38643. height: math.unit(175, "cm"),
  38644. weight: math.unit(75, "kg"),
  38645. name: "Front",
  38646. image: {
  38647. source: "./media/characters/chee/front.svg",
  38648. extra: 1796/1740,
  38649. bottom: 40/1836
  38650. }
  38651. },
  38652. },
  38653. [
  38654. {
  38655. name: "Micro-Micro",
  38656. height: math.unit(1, "nm")
  38657. },
  38658. {
  38659. name: "Micro-erst",
  38660. height: math.unit(1, "micrometer")
  38661. },
  38662. {
  38663. name: "Micro-er",
  38664. height: math.unit(1, "cm")
  38665. },
  38666. {
  38667. name: "Normal",
  38668. height: math.unit(175, "cm"),
  38669. default: true
  38670. },
  38671. {
  38672. name: "Macro",
  38673. height: math.unit(100, "m")
  38674. },
  38675. {
  38676. name: "Macro-er",
  38677. height: math.unit(1, "km")
  38678. },
  38679. {
  38680. name: "Macro-erst",
  38681. height: math.unit(10, "km")
  38682. },
  38683. {
  38684. name: "Macro-Macro",
  38685. height: math.unit(100, "km")
  38686. },
  38687. ]
  38688. ))
  38689. characterMakers.push(() => makeCharacter(
  38690. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38691. {
  38692. front: {
  38693. height: math.unit(11 + 9/12, "feet"),
  38694. weight: math.unit(935, "lb"),
  38695. name: "Front",
  38696. image: {
  38697. source: "./media/characters/kingsley/front.svg",
  38698. extra: 1803/1674,
  38699. bottom: 127/1930
  38700. }
  38701. },
  38702. frontNude: {
  38703. height: math.unit(11 + 9/12, "feet"),
  38704. weight: math.unit(935, "lb"),
  38705. name: "Front (Nude)",
  38706. image: {
  38707. source: "./media/characters/kingsley/front-nude.svg",
  38708. extra: 1803/1674,
  38709. bottom: 127/1930
  38710. }
  38711. },
  38712. },
  38713. [
  38714. {
  38715. name: "Normal",
  38716. height: math.unit(11 + 9/12, "feet"),
  38717. default: true
  38718. },
  38719. ]
  38720. ))
  38721. characterMakers.push(() => makeCharacter(
  38722. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38723. {
  38724. side: {
  38725. height: math.unit(9, "feet"),
  38726. name: "Side",
  38727. image: {
  38728. source: "./media/characters/rymel/side.svg",
  38729. extra: 792/469,
  38730. bottom: 121/913
  38731. }
  38732. },
  38733. maw: {
  38734. height: math.unit(2.4, "meters"),
  38735. name: "Maw",
  38736. image: {
  38737. source: "./media/characters/rymel/maw.svg"
  38738. }
  38739. },
  38740. },
  38741. [
  38742. {
  38743. name: "House Drake",
  38744. height: math.unit(2, "feet")
  38745. },
  38746. {
  38747. name: "Reduced",
  38748. height: math.unit(4.5, "feet")
  38749. },
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(9, "feet"),
  38753. default: true
  38754. },
  38755. ]
  38756. ))
  38757. characterMakers.push(() => makeCharacter(
  38758. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38759. {
  38760. front: {
  38761. height: math.unit(1.74, "meters"),
  38762. weight: math.unit(55, "kg"),
  38763. name: "Front",
  38764. image: {
  38765. source: "./media/characters/rubus/front.svg",
  38766. extra: 1894/1742,
  38767. bottom: 44/1938
  38768. }
  38769. },
  38770. },
  38771. [
  38772. {
  38773. name: "Normal",
  38774. height: math.unit(1.74, "meters"),
  38775. default: true
  38776. },
  38777. ]
  38778. ))
  38779. characterMakers.push(() => makeCharacter(
  38780. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38781. {
  38782. front: {
  38783. height: math.unit(5 + 2/12, "feet"),
  38784. weight: math.unit(112, "lb"),
  38785. name: "Front",
  38786. image: {
  38787. source: "./media/characters/cassie-kingston/front.svg",
  38788. extra: 1438/1390,
  38789. bottom: 47/1485
  38790. }
  38791. },
  38792. },
  38793. [
  38794. {
  38795. name: "Normal",
  38796. height: math.unit(5 + 2/12, "feet"),
  38797. default: true
  38798. },
  38799. {
  38800. name: "Macro",
  38801. height: math.unit(128, "feet")
  38802. },
  38803. {
  38804. name: "Megamacro",
  38805. height: math.unit(2.56, "miles")
  38806. },
  38807. ]
  38808. ))
  38809. characterMakers.push(() => makeCharacter(
  38810. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38811. {
  38812. front: {
  38813. height: math.unit(7, "feet"),
  38814. name: "Front",
  38815. image: {
  38816. source: "./media/characters/fox/front.svg",
  38817. extra: 1798/1703,
  38818. bottom: 55/1853
  38819. }
  38820. },
  38821. back: {
  38822. height: math.unit(7, "feet"),
  38823. name: "Back",
  38824. image: {
  38825. source: "./media/characters/fox/back.svg",
  38826. extra: 1748/1649,
  38827. bottom: 32/1780
  38828. }
  38829. },
  38830. head: {
  38831. height: math.unit(1.95, "feet"),
  38832. name: "Head",
  38833. image: {
  38834. source: "./media/characters/fox/head.svg"
  38835. }
  38836. },
  38837. dick: {
  38838. height: math.unit(1.33, "feet"),
  38839. name: "Dick",
  38840. image: {
  38841. source: "./media/characters/fox/dick.svg"
  38842. }
  38843. },
  38844. foot: {
  38845. height: math.unit(1, "feet"),
  38846. name: "Foot",
  38847. image: {
  38848. source: "./media/characters/fox/foot.svg"
  38849. }
  38850. },
  38851. paw: {
  38852. height: math.unit(0.92, "feet"),
  38853. name: "Paw",
  38854. image: {
  38855. source: "./media/characters/fox/paw.svg"
  38856. }
  38857. },
  38858. },
  38859. [
  38860. {
  38861. name: "Small",
  38862. height: math.unit(3, "inches")
  38863. },
  38864. {
  38865. name: "\"Realistic\"",
  38866. height: math.unit(7, "feet")
  38867. },
  38868. {
  38869. name: "Normal",
  38870. height: math.unit(150, "feet"),
  38871. default: true
  38872. },
  38873. {
  38874. name: "BIG",
  38875. height: math.unit(1200, "feet")
  38876. },
  38877. {
  38878. name: "👀",
  38879. height: math.unit(5, "miles")
  38880. },
  38881. {
  38882. name: "👀👀👀",
  38883. height: math.unit(64, "miles")
  38884. },
  38885. ]
  38886. ))
  38887. characterMakers.push(() => makeCharacter(
  38888. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38889. {
  38890. front: {
  38891. height: math.unit(625, "feet"),
  38892. name: "Front",
  38893. image: {
  38894. source: "./media/characters/asonja-rossa/front.svg",
  38895. extra: 1833/1686,
  38896. bottom: 24/1857
  38897. }
  38898. },
  38899. back: {
  38900. height: math.unit(625, "feet"),
  38901. name: "Back",
  38902. image: {
  38903. source: "./media/characters/asonja-rossa/back.svg",
  38904. extra: 1852/1753,
  38905. bottom: 26/1878
  38906. }
  38907. },
  38908. },
  38909. [
  38910. {
  38911. name: "Macro",
  38912. height: math.unit(625, "feet"),
  38913. default: true
  38914. },
  38915. ]
  38916. ))
  38917. characterMakers.push(() => makeCharacter(
  38918. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38919. {
  38920. side: {
  38921. height: math.unit(8, "feet"),
  38922. name: "Side",
  38923. image: {
  38924. source: "./media/characters/rezukii/side.svg",
  38925. extra: 979/542,
  38926. bottom: 87/1066
  38927. }
  38928. },
  38929. sitting: {
  38930. height: math.unit(14.6, "feet"),
  38931. name: "Sitting",
  38932. image: {
  38933. source: "./media/characters/rezukii/sitting.svg",
  38934. extra: 1023/813,
  38935. bottom: 45/1068
  38936. }
  38937. },
  38938. },
  38939. [
  38940. {
  38941. name: "Tiny",
  38942. height: math.unit(2, "feet")
  38943. },
  38944. {
  38945. name: "Smol",
  38946. height: math.unit(4, "feet")
  38947. },
  38948. {
  38949. name: "Normal",
  38950. height: math.unit(8, "feet"),
  38951. default: true
  38952. },
  38953. {
  38954. name: "Big",
  38955. height: math.unit(12, "feet")
  38956. },
  38957. {
  38958. name: "Macro",
  38959. height: math.unit(30, "feet")
  38960. },
  38961. ]
  38962. ))
  38963. characterMakers.push(() => makeCharacter(
  38964. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38965. {
  38966. front: {
  38967. height: math.unit(14, "feet"),
  38968. weight: math.unit(9.5, "tonnes"),
  38969. name: "Front",
  38970. image: {
  38971. source: "./media/characters/dawnheart/front.svg",
  38972. extra: 2792/2675,
  38973. bottom: 64/2856
  38974. }
  38975. },
  38976. },
  38977. [
  38978. {
  38979. name: "Normal",
  38980. height: math.unit(14, "feet"),
  38981. default: true
  38982. },
  38983. ]
  38984. ))
  38985. characterMakers.push(() => makeCharacter(
  38986. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38987. {
  38988. front: {
  38989. height: math.unit(1.7, "m"),
  38990. name: "Front",
  38991. image: {
  38992. source: "./media/characters/gladi/front.svg",
  38993. extra: 1460/1362,
  38994. bottom: 19/1479
  38995. }
  38996. },
  38997. back: {
  38998. height: math.unit(1.7, "m"),
  38999. name: "Back",
  39000. image: {
  39001. source: "./media/characters/gladi/back.svg",
  39002. extra: 1459/1357,
  39003. bottom: 12/1471
  39004. }
  39005. },
  39006. feral: {
  39007. height: math.unit(2.05, "m"),
  39008. name: "Feral",
  39009. image: {
  39010. source: "./media/characters/gladi/feral.svg",
  39011. extra: 821/557,
  39012. bottom: 91/912
  39013. }
  39014. },
  39015. },
  39016. [
  39017. {
  39018. name: "Shortest",
  39019. height: math.unit(70, "cm")
  39020. },
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(1.7, "m")
  39024. },
  39025. {
  39026. name: "Macro",
  39027. height: math.unit(10, "m"),
  39028. default: true
  39029. },
  39030. {
  39031. name: "Tallest",
  39032. height: math.unit(200, "m")
  39033. },
  39034. ]
  39035. ))
  39036. characterMakers.push(() => makeCharacter(
  39037. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39038. {
  39039. front: {
  39040. height: math.unit(5 + 7/12, "feet"),
  39041. weight: math.unit(2, "tons"),
  39042. name: "Front",
  39043. image: {
  39044. source: "./media/characters/erdno/front.svg",
  39045. extra: 1234/1129,
  39046. bottom: 35/1269
  39047. }
  39048. },
  39049. angled: {
  39050. height: math.unit(5 + 7/12, "feet"),
  39051. weight: math.unit(2, "tons"),
  39052. name: "Angled",
  39053. image: {
  39054. source: "./media/characters/erdno/angled.svg",
  39055. extra: 1185/1139,
  39056. bottom: 36/1221
  39057. }
  39058. },
  39059. side: {
  39060. height: math.unit(5 + 7/12, "feet"),
  39061. weight: math.unit(2, "tons"),
  39062. name: "Side",
  39063. image: {
  39064. source: "./media/characters/erdno/side.svg",
  39065. extra: 1191/1144,
  39066. bottom: 40/1231
  39067. }
  39068. },
  39069. back: {
  39070. height: math.unit(5 + 7/12, "feet"),
  39071. weight: math.unit(2, "tons"),
  39072. name: "Back",
  39073. image: {
  39074. source: "./media/characters/erdno/back.svg",
  39075. extra: 1202/1146,
  39076. bottom: 17/1219
  39077. }
  39078. },
  39079. frontNsfw: {
  39080. height: math.unit(5 + 7/12, "feet"),
  39081. weight: math.unit(2, "tons"),
  39082. name: "Front (NSFW)",
  39083. image: {
  39084. source: "./media/characters/erdno/front-nsfw.svg",
  39085. extra: 1234/1129,
  39086. bottom: 35/1269
  39087. }
  39088. },
  39089. angledNsfw: {
  39090. height: math.unit(5 + 7/12, "feet"),
  39091. weight: math.unit(2, "tons"),
  39092. name: "Angled (NSFW)",
  39093. image: {
  39094. source: "./media/characters/erdno/angled-nsfw.svg",
  39095. extra: 1185/1139,
  39096. bottom: 36/1221
  39097. }
  39098. },
  39099. sideNsfw: {
  39100. height: math.unit(5 + 7/12, "feet"),
  39101. weight: math.unit(2, "tons"),
  39102. name: "Side (NSFW)",
  39103. image: {
  39104. source: "./media/characters/erdno/side-nsfw.svg",
  39105. extra: 1191/1144,
  39106. bottom: 40/1231
  39107. }
  39108. },
  39109. backNsfw: {
  39110. height: math.unit(5 + 7/12, "feet"),
  39111. weight: math.unit(2, "tons"),
  39112. name: "Back (NSFW)",
  39113. image: {
  39114. source: "./media/characters/erdno/back-nsfw.svg",
  39115. extra: 1202/1146,
  39116. bottom: 17/1219
  39117. }
  39118. },
  39119. frontHyper: {
  39120. height: math.unit(5 + 7/12, "feet"),
  39121. weight: math.unit(2, "tons"),
  39122. name: "Front (Hyper)",
  39123. image: {
  39124. source: "./media/characters/erdno/front-hyper.svg",
  39125. extra: 1298/1136,
  39126. bottom: 35/1333
  39127. }
  39128. },
  39129. },
  39130. [
  39131. {
  39132. name: "Normal",
  39133. height: math.unit(5 + 7/12, "feet"),
  39134. default: true
  39135. },
  39136. {
  39137. name: "Big",
  39138. height: math.unit(5.7, "meters")
  39139. },
  39140. {
  39141. name: "Macro",
  39142. height: math.unit(5.7, "kilometers")
  39143. },
  39144. {
  39145. name: "Megamacro",
  39146. height: math.unit(5.7, "earths")
  39147. },
  39148. ]
  39149. ))
  39150. characterMakers.push(() => makeCharacter(
  39151. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39152. {
  39153. front: {
  39154. height: math.unit(5 + 10/12, "feet"),
  39155. weight: math.unit(150, "lb"),
  39156. name: "Front",
  39157. image: {
  39158. source: "./media/characters/jamie/front.svg",
  39159. extra: 1908/1768,
  39160. bottom: 19/1927
  39161. }
  39162. },
  39163. },
  39164. [
  39165. {
  39166. name: "Minimum",
  39167. height: math.unit(2, "cm")
  39168. },
  39169. {
  39170. name: "Micro",
  39171. height: math.unit(3, "inches")
  39172. },
  39173. {
  39174. name: "Normal",
  39175. height: math.unit(5 + 10/12, "feet"),
  39176. default: true
  39177. },
  39178. {
  39179. name: "Macro",
  39180. height: math.unit(150, "feet")
  39181. },
  39182. {
  39183. name: "Megamacro",
  39184. height: math.unit(10000, "m")
  39185. },
  39186. ]
  39187. ))
  39188. characterMakers.push(() => makeCharacter(
  39189. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39190. {
  39191. front: {
  39192. height: math.unit(2, "meters"),
  39193. weight: math.unit(100, "kg"),
  39194. name: "Front",
  39195. image: {
  39196. source: "./media/characters/shiron/front.svg",
  39197. extra: 2103/1985,
  39198. bottom: 98/2201
  39199. }
  39200. },
  39201. back: {
  39202. height: math.unit(2, "meters"),
  39203. weight: math.unit(100, "kg"),
  39204. name: "Back",
  39205. image: {
  39206. source: "./media/characters/shiron/back.svg",
  39207. extra: 2110/2015,
  39208. bottom: 89/2199
  39209. }
  39210. },
  39211. hand: {
  39212. height: math.unit(0.96, "feet"),
  39213. name: "Hand",
  39214. image: {
  39215. source: "./media/characters/shiron/hand.svg"
  39216. }
  39217. },
  39218. foot: {
  39219. height: math.unit(1.464, "feet"),
  39220. name: "Foot",
  39221. image: {
  39222. source: "./media/characters/shiron/foot.svg"
  39223. }
  39224. },
  39225. },
  39226. [
  39227. {
  39228. name: "Normal",
  39229. height: math.unit(2, "meters")
  39230. },
  39231. {
  39232. name: "Macro",
  39233. height: math.unit(500, "meters"),
  39234. default: true
  39235. },
  39236. {
  39237. name: "Megamacro",
  39238. height: math.unit(20, "km")
  39239. },
  39240. ]
  39241. ))
  39242. characterMakers.push(() => makeCharacter(
  39243. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39244. {
  39245. front: {
  39246. height: math.unit(6, "feet"),
  39247. name: "Front",
  39248. image: {
  39249. source: "./media/characters/sam/front.svg",
  39250. extra: 849/826,
  39251. bottom: 19/868
  39252. }
  39253. },
  39254. },
  39255. [
  39256. {
  39257. name: "Normal",
  39258. height: math.unit(6, "feet"),
  39259. default: true
  39260. },
  39261. ]
  39262. ))
  39263. characterMakers.push(() => makeCharacter(
  39264. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39265. {
  39266. front: {
  39267. height: math.unit(8 + 4/12, "feet"),
  39268. weight: math.unit(122, "kg"),
  39269. name: "Front",
  39270. image: {
  39271. source: "./media/characters/namori-kurogawa/front.svg",
  39272. extra: 1894/1576,
  39273. bottom: 34/1928
  39274. }
  39275. },
  39276. },
  39277. [
  39278. {
  39279. name: "Normal",
  39280. height: math.unit(8 + 4/12, "feet"),
  39281. default: true
  39282. },
  39283. ]
  39284. ))
  39285. characterMakers.push(() => makeCharacter(
  39286. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39287. {
  39288. front: {
  39289. height: math.unit(9, "feet"),
  39290. weight: math.unit(621, "lb"),
  39291. name: "Front",
  39292. image: {
  39293. source: "./media/characters/unmru/front.svg",
  39294. extra: 1853/1747,
  39295. bottom: 73/1926
  39296. }
  39297. },
  39298. side: {
  39299. height: math.unit(9, "feet"),
  39300. weight: math.unit(621, "lb"),
  39301. name: "Side",
  39302. image: {
  39303. source: "./media/characters/unmru/side.svg",
  39304. extra: 1781/1671,
  39305. bottom: 127/1908
  39306. }
  39307. },
  39308. back: {
  39309. height: math.unit(9, "feet"),
  39310. weight: math.unit(621, "lb"),
  39311. name: "Back",
  39312. image: {
  39313. source: "./media/characters/unmru/back.svg",
  39314. extra: 1894/1765,
  39315. bottom: 75/1969
  39316. }
  39317. },
  39318. dick: {
  39319. height: math.unit(3, "feet"),
  39320. weight: math.unit(35, "lb"),
  39321. name: "Dick",
  39322. image: {
  39323. source: "./media/characters/unmru/dick.svg"
  39324. }
  39325. },
  39326. },
  39327. [
  39328. {
  39329. name: "Normal",
  39330. height: math.unit(9, "feet")
  39331. },
  39332. {
  39333. name: "Natural",
  39334. height: math.unit(27, "feet"),
  39335. default: true
  39336. },
  39337. {
  39338. name: "Giant",
  39339. height: math.unit(90, "feet")
  39340. },
  39341. {
  39342. name: "Kaiju",
  39343. height: math.unit(270, "feet")
  39344. },
  39345. {
  39346. name: "Macro",
  39347. height: math.unit(900, "feet")
  39348. },
  39349. {
  39350. name: "Macro+",
  39351. height: math.unit(2700, "feet")
  39352. },
  39353. {
  39354. name: "Megamacro",
  39355. height: math.unit(9000, "feet")
  39356. },
  39357. {
  39358. name: "City-Crushing",
  39359. height: math.unit(27000, "feet")
  39360. },
  39361. {
  39362. name: "Mountain-Mashing",
  39363. height: math.unit(90000, "feet")
  39364. },
  39365. {
  39366. name: "Earth-Eclipsing",
  39367. height: math.unit(2.7e8, "feet")
  39368. },
  39369. {
  39370. name: "Sol-Swallowing",
  39371. height: math.unit(9e10, "feet")
  39372. },
  39373. {
  39374. name: "Majoris-Munching",
  39375. height: math.unit(2.7e13, "feet")
  39376. },
  39377. ]
  39378. ))
  39379. characterMakers.push(() => makeCharacter(
  39380. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39381. {
  39382. front: {
  39383. height: math.unit(1, "inch"),
  39384. name: "Front",
  39385. image: {
  39386. source: "./media/characters/squeaks-mouse/front.svg",
  39387. extra: 352/308,
  39388. bottom: 25/377
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Micro",
  39395. height: math.unit(1, "inch"),
  39396. default: true
  39397. },
  39398. ]
  39399. ))
  39400. characterMakers.push(() => makeCharacter(
  39401. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39402. {
  39403. side: {
  39404. height: math.unit(35, "feet"),
  39405. name: "Side",
  39406. image: {
  39407. source: "./media/characters/sayko/side.svg",
  39408. extra: 1697/1021,
  39409. bottom: 82/1779
  39410. }
  39411. },
  39412. head: {
  39413. height: math.unit(16, "feet"),
  39414. name: "Head",
  39415. image: {
  39416. source: "./media/characters/sayko/head.svg"
  39417. }
  39418. },
  39419. forepaw: {
  39420. height: math.unit(7.85, "feet"),
  39421. name: "Forepaw",
  39422. image: {
  39423. source: "./media/characters/sayko/forepaw.svg"
  39424. }
  39425. },
  39426. hindpaw: {
  39427. height: math.unit(8.8, "feet"),
  39428. name: "Hindpaw",
  39429. image: {
  39430. source: "./media/characters/sayko/hindpaw.svg"
  39431. }
  39432. },
  39433. },
  39434. [
  39435. {
  39436. name: "Normal",
  39437. height: math.unit(35, "feet"),
  39438. default: true
  39439. },
  39440. {
  39441. name: "Colossus",
  39442. height: math.unit(100, "meters")
  39443. },
  39444. {
  39445. name: "\"Small\" Deity",
  39446. height: math.unit(1, "km")
  39447. },
  39448. {
  39449. name: "\"Large\" Deity",
  39450. height: math.unit(15, "km")
  39451. },
  39452. ]
  39453. ))
  39454. characterMakers.push(() => makeCharacter(
  39455. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39456. {
  39457. front: {
  39458. height: math.unit(6, "feet"),
  39459. weight: math.unit(250, "lb"),
  39460. name: "Front",
  39461. image: {
  39462. source: "./media/characters/mukiro/front.svg",
  39463. extra: 1368/1310,
  39464. bottom: 34/1402
  39465. }
  39466. },
  39467. },
  39468. [
  39469. {
  39470. name: "Normal",
  39471. height: math.unit(6, "feet"),
  39472. default: true
  39473. },
  39474. ]
  39475. ))
  39476. characterMakers.push(() => makeCharacter(
  39477. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39478. {
  39479. front: {
  39480. height: math.unit(12 + 4/12, "feet"),
  39481. name: "Front",
  39482. image: {
  39483. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39484. extra: 1346/1311,
  39485. bottom: 65/1411
  39486. }
  39487. },
  39488. },
  39489. [
  39490. {
  39491. name: "Base",
  39492. height: math.unit(12 + 4/12, "feet"),
  39493. default: true
  39494. },
  39495. {
  39496. name: "Macro",
  39497. height: math.unit(150, "feet")
  39498. },
  39499. {
  39500. name: "Mega",
  39501. height: math.unit(2, "miles")
  39502. },
  39503. {
  39504. name: "Demi God",
  39505. height: math.unit(4, "AU")
  39506. },
  39507. {
  39508. name: "God Size",
  39509. height: math.unit(1, "universe")
  39510. },
  39511. ]
  39512. ))
  39513. characterMakers.push(() => makeCharacter(
  39514. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39515. {
  39516. front: {
  39517. height: math.unit(3 + 3/12, "feet"),
  39518. weight: math.unit(88, "lb"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/trey/front.svg",
  39522. extra: 1815/1509,
  39523. bottom: 60/1875
  39524. }
  39525. },
  39526. },
  39527. [
  39528. {
  39529. name: "Normal",
  39530. height: math.unit(3 + 3/12, "feet"),
  39531. default: true
  39532. },
  39533. ]
  39534. ))
  39535. characterMakers.push(() => makeCharacter(
  39536. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39537. {
  39538. front: {
  39539. height: math.unit(4, "meters"),
  39540. name: "Front",
  39541. image: {
  39542. source: "./media/characters/adelonda/front.svg",
  39543. extra: 1077/982,
  39544. bottom: 39/1116
  39545. }
  39546. },
  39547. back: {
  39548. height: math.unit(4, "meters"),
  39549. name: "Back",
  39550. image: {
  39551. source: "./media/characters/adelonda/back.svg",
  39552. extra: 1105/1003,
  39553. bottom: 25/1130
  39554. }
  39555. },
  39556. feral: {
  39557. height: math.unit(40/1.5, "meters"),
  39558. name: "Feral",
  39559. image: {
  39560. source: "./media/characters/adelonda/feral.svg",
  39561. extra: 597/271,
  39562. bottom: 387/984
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Normal",
  39569. height: math.unit(4, "meters"),
  39570. default: true
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39576. {
  39577. front: {
  39578. height: math.unit(8 + 4/12, "feet"),
  39579. weight: math.unit(670, "lb"),
  39580. name: "Front",
  39581. image: {
  39582. source: "./media/characters/acadiel/front.svg",
  39583. extra: 1901/1595,
  39584. bottom: 142/2043
  39585. }
  39586. },
  39587. },
  39588. [
  39589. {
  39590. name: "Normal",
  39591. height: math.unit(8 + 4/12, "feet"),
  39592. default: true
  39593. },
  39594. {
  39595. name: "Macro",
  39596. height: math.unit(200, "feet")
  39597. },
  39598. ]
  39599. ))
  39600. characterMakers.push(() => makeCharacter(
  39601. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39602. {
  39603. front: {
  39604. height: math.unit(6 + 2/12, "feet"),
  39605. weight: math.unit(185, "lb"),
  39606. name: "Front",
  39607. image: {
  39608. source: "./media/characters/kayne-ein/front.svg",
  39609. extra: 1780/1560,
  39610. bottom: 81/1861
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(6 + 2/12, "feet"),
  39618. default: true
  39619. },
  39620. {
  39621. name: "Transformation Stage",
  39622. height: math.unit(15, "feet")
  39623. },
  39624. {
  39625. name: "Macro",
  39626. height: math.unit(150, "feet")
  39627. },
  39628. {
  39629. name: "Earth's Shadow",
  39630. height: math.unit(6200, "miles")
  39631. },
  39632. {
  39633. name: "Universal Demon",
  39634. height: math.unit(28e9, "parsecs")
  39635. },
  39636. {
  39637. name: "Multiverse God",
  39638. height: math.unit(3, "multiverses")
  39639. },
  39640. ]
  39641. ))
  39642. characterMakers.push(() => makeCharacter(
  39643. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39644. {
  39645. front: {
  39646. height: math.unit(5 + 5/12, "feet"),
  39647. name: "Front",
  39648. image: {
  39649. source: "./media/characters/fawn/front.svg",
  39650. extra: 1873/1731,
  39651. bottom: 95/1968
  39652. }
  39653. },
  39654. back: {
  39655. height: math.unit(5 + 5/12, "feet"),
  39656. name: "Back",
  39657. image: {
  39658. source: "./media/characters/fawn/back.svg",
  39659. extra: 1813/1700,
  39660. bottom: 14/1827
  39661. }
  39662. },
  39663. hoof: {
  39664. height: math.unit(1.45, "feet"),
  39665. name: "Hoof",
  39666. image: {
  39667. source: "./media/characters/fawn/hoof.svg"
  39668. }
  39669. },
  39670. },
  39671. [
  39672. {
  39673. name: "Normal",
  39674. height: math.unit(5 + 5/12, "feet"),
  39675. default: true
  39676. },
  39677. ]
  39678. ))
  39679. characterMakers.push(() => makeCharacter(
  39680. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39681. {
  39682. front: {
  39683. height: math.unit(2 + 5/12, "feet"),
  39684. name: "Front",
  39685. image: {
  39686. source: "./media/characters/orion/front.svg",
  39687. extra: 1366/1304,
  39688. bottom: 43/1409
  39689. }
  39690. },
  39691. paw: {
  39692. height: math.unit(0.52, "feet"),
  39693. name: "Paw",
  39694. image: {
  39695. source: "./media/characters/orion/paw.svg"
  39696. }
  39697. },
  39698. },
  39699. [
  39700. {
  39701. name: "Normal",
  39702. height: math.unit(2 + 5/12, "feet"),
  39703. default: true
  39704. },
  39705. ]
  39706. ))
  39707. characterMakers.push(() => makeCharacter(
  39708. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39709. {
  39710. front: {
  39711. height: math.unit(5 + 10/12, "feet"),
  39712. name: "Front",
  39713. image: {
  39714. source: "./media/characters/vera/front.svg",
  39715. extra: 1680/1575,
  39716. bottom: 49/1729
  39717. }
  39718. },
  39719. back: {
  39720. height: math.unit(5 + 10/12, "feet"),
  39721. name: "Back",
  39722. image: {
  39723. source: "./media/characters/vera/back.svg",
  39724. extra: 1700/1588,
  39725. bottom: 18/1718
  39726. }
  39727. },
  39728. arcanine: {
  39729. height: math.unit(6 + 8/12, "feet"),
  39730. name: "Arcanine",
  39731. image: {
  39732. source: "./media/characters/vera/arcanine.svg",
  39733. extra: 1590/1511,
  39734. bottom: 71/1661
  39735. }
  39736. },
  39737. maw: {
  39738. height: math.unit(0.82, "feet"),
  39739. name: "Maw",
  39740. image: {
  39741. source: "./media/characters/vera/maw.svg"
  39742. }
  39743. },
  39744. mawArcanine: {
  39745. height: math.unit(0.97, "feet"),
  39746. name: "Maw (Arcanine)",
  39747. image: {
  39748. source: "./media/characters/vera/maw-arcanine.svg"
  39749. }
  39750. },
  39751. paw: {
  39752. height: math.unit(0.75, "feet"),
  39753. name: "Paw",
  39754. image: {
  39755. source: "./media/characters/vera/paw.svg"
  39756. }
  39757. },
  39758. pawprint: {
  39759. height: math.unit(0.52, "feet"),
  39760. name: "Pawprint",
  39761. image: {
  39762. source: "./media/characters/vera/pawprint.svg"
  39763. }
  39764. },
  39765. },
  39766. [
  39767. {
  39768. name: "Normal",
  39769. height: math.unit(5 + 10/12, "feet"),
  39770. default: true
  39771. },
  39772. {
  39773. name: "Macro",
  39774. height: math.unit(75, "feet")
  39775. },
  39776. ]
  39777. ))
  39778. characterMakers.push(() => makeCharacter(
  39779. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39780. {
  39781. front: {
  39782. height: math.unit(4, "feet"),
  39783. weight: math.unit(40, "lb"),
  39784. name: "Front",
  39785. image: {
  39786. source: "./media/characters/orvan-rabbit/front.svg",
  39787. extra: 1896/1642,
  39788. bottom: 29/1925
  39789. }
  39790. },
  39791. },
  39792. [
  39793. {
  39794. name: "Normal",
  39795. height: math.unit(4, "feet"),
  39796. default: true
  39797. },
  39798. ]
  39799. ))
  39800. characterMakers.push(() => makeCharacter(
  39801. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39802. {
  39803. front: {
  39804. height: math.unit(6, "feet"),
  39805. weight: math.unit(168, "lb"),
  39806. name: "Front",
  39807. image: {
  39808. source: "./media/characters/lisa/front.svg",
  39809. extra: 2065/1867,
  39810. bottom: 46/2111
  39811. }
  39812. },
  39813. back: {
  39814. height: math.unit(6, "feet"),
  39815. weight: math.unit(168, "lb"),
  39816. name: "Back",
  39817. image: {
  39818. source: "./media/characters/lisa/back.svg",
  39819. extra: 1982/1838,
  39820. bottom: 29/2011
  39821. }
  39822. },
  39823. maw: {
  39824. height: math.unit(0.81, "feet"),
  39825. name: "Maw",
  39826. image: {
  39827. source: "./media/characters/lisa/maw.svg"
  39828. }
  39829. },
  39830. paw: {
  39831. height: math.unit(0.9, "feet"),
  39832. name: "Paw",
  39833. image: {
  39834. source: "./media/characters/lisa/paw.svg"
  39835. }
  39836. },
  39837. caribousune: {
  39838. height: math.unit(7 + 2/12, "feet"),
  39839. weight: math.unit(268, "lb"),
  39840. name: "Caribousune",
  39841. image: {
  39842. source: "./media/characters/lisa/caribousune.svg",
  39843. extra: 1843/1633,
  39844. bottom: 29/1872
  39845. }
  39846. },
  39847. frontCaribousune: {
  39848. height: math.unit(7 + 2/12, "feet"),
  39849. weight: math.unit(268, "lb"),
  39850. name: "Front (Caribousune)",
  39851. image: {
  39852. source: "./media/characters/lisa/front-caribousune.svg",
  39853. extra: 1818/1638,
  39854. bottom: 52/1870
  39855. }
  39856. },
  39857. sideCaribousune: {
  39858. height: math.unit(7 + 2/12, "feet"),
  39859. weight: math.unit(268, "lb"),
  39860. name: "Side (Caribousune)",
  39861. image: {
  39862. source: "./media/characters/lisa/side-caribousune.svg",
  39863. extra: 1851/1635,
  39864. bottom: 16/1867
  39865. }
  39866. },
  39867. backCaribousune: {
  39868. height: math.unit(7 + 2/12, "feet"),
  39869. weight: math.unit(268, "lb"),
  39870. name: "Back (Caribousune)",
  39871. image: {
  39872. source: "./media/characters/lisa/back-caribousune.svg",
  39873. extra: 1801/1604,
  39874. bottom: 44/1845
  39875. }
  39876. },
  39877. caribou: {
  39878. height: math.unit(7 + 2/12, "feet"),
  39879. weight: math.unit(268, "lb"),
  39880. name: "Caribou",
  39881. image: {
  39882. source: "./media/characters/lisa/caribou.svg",
  39883. extra: 1843/1633,
  39884. bottom: 29/1872
  39885. }
  39886. },
  39887. frontCaribou: {
  39888. height: math.unit(7 + 2/12, "feet"),
  39889. weight: math.unit(268, "lb"),
  39890. name: "Front (Caribou)",
  39891. image: {
  39892. source: "./media/characters/lisa/front-caribou.svg",
  39893. extra: 1818/1638,
  39894. bottom: 52/1870
  39895. }
  39896. },
  39897. sideCaribou: {
  39898. height: math.unit(7 + 2/12, "feet"),
  39899. weight: math.unit(268, "lb"),
  39900. name: "Side (Caribou)",
  39901. image: {
  39902. source: "./media/characters/lisa/side-caribou.svg",
  39903. extra: 1851/1635,
  39904. bottom: 16/1867
  39905. }
  39906. },
  39907. backCaribou: {
  39908. height: math.unit(7 + 2/12, "feet"),
  39909. weight: math.unit(268, "lb"),
  39910. name: "Back (Caribou)",
  39911. image: {
  39912. source: "./media/characters/lisa/back-caribou.svg",
  39913. extra: 1801/1604,
  39914. bottom: 44/1845
  39915. }
  39916. },
  39917. mawCaribou: {
  39918. height: math.unit(1.45, "feet"),
  39919. name: "Maw (Caribou)",
  39920. image: {
  39921. source: "./media/characters/lisa/maw-caribou.svg"
  39922. }
  39923. },
  39924. mawCaribousune: {
  39925. height: math.unit(1.45, "feet"),
  39926. name: "Maw (Caribousune)",
  39927. image: {
  39928. source: "./media/characters/lisa/maw-caribousune.svg"
  39929. }
  39930. },
  39931. pawCaribousune: {
  39932. height: math.unit(1.61, "feet"),
  39933. name: "Paw (Caribou)",
  39934. image: {
  39935. source: "./media/characters/lisa/paw-caribousune.svg"
  39936. }
  39937. },
  39938. },
  39939. [
  39940. {
  39941. name: "Normal",
  39942. height: math.unit(6, "feet")
  39943. },
  39944. {
  39945. name: "God Size",
  39946. height: math.unit(72, "feet"),
  39947. default: true
  39948. },
  39949. {
  39950. name: "Towering",
  39951. height: math.unit(288, "feet")
  39952. },
  39953. {
  39954. name: "City Size",
  39955. height: math.unit(48384, "feet")
  39956. },
  39957. {
  39958. name: "Continental",
  39959. height: math.unit(4200, "miles")
  39960. },
  39961. {
  39962. name: "Planet Eater",
  39963. height: math.unit(42, "earths")
  39964. },
  39965. {
  39966. name: "Star Swallower",
  39967. height: math.unit(42, "solarradii")
  39968. },
  39969. {
  39970. name: "System Swallower",
  39971. height: math.unit(84000, "AU")
  39972. },
  39973. {
  39974. name: "Galaxy Gobbler",
  39975. height: math.unit(42, "galaxies")
  39976. },
  39977. {
  39978. name: "Universe Devourer",
  39979. height: math.unit(42, "universes")
  39980. },
  39981. {
  39982. name: "Multiverse Muncher",
  39983. height: math.unit(42, "multiverses")
  39984. },
  39985. ]
  39986. ))
  39987. characterMakers.push(() => makeCharacter(
  39988. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39989. {
  39990. front: {
  39991. height: math.unit(36, "feet"),
  39992. name: "Front",
  39993. image: {
  39994. source: "./media/characters/shadow-rat/front.svg",
  39995. extra: 1845/1758,
  39996. bottom: 83/1928
  39997. }
  39998. },
  39999. },
  40000. [
  40001. {
  40002. name: "Macro",
  40003. height: math.unit(36, "feet"),
  40004. default: true
  40005. },
  40006. ]
  40007. ))
  40008. characterMakers.push(() => makeCharacter(
  40009. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40010. {
  40011. side: {
  40012. height: math.unit(8, "feet"),
  40013. weight: math.unit(2630, "lb"),
  40014. name: "Side",
  40015. image: {
  40016. source: "./media/characters/torallia/side.svg",
  40017. extra: 2164/2021,
  40018. bottom: 371/2535
  40019. }
  40020. },
  40021. },
  40022. [
  40023. {
  40024. name: "Mortal Interaction",
  40025. height: math.unit(8, "feet")
  40026. },
  40027. {
  40028. name: "Natural",
  40029. height: math.unit(24, "feet"),
  40030. default: true
  40031. },
  40032. {
  40033. name: "Giant",
  40034. height: math.unit(80, "feet")
  40035. },
  40036. {
  40037. name: "Kaiju",
  40038. height: math.unit(240, "feet")
  40039. },
  40040. {
  40041. name: "Macro",
  40042. height: math.unit(800, "feet")
  40043. },
  40044. {
  40045. name: "Macro+",
  40046. height: math.unit(2400, "feet")
  40047. },
  40048. {
  40049. name: "Macro++",
  40050. height: math.unit(8000, "feet")
  40051. },
  40052. {
  40053. name: "City-Crushing",
  40054. height: math.unit(24000, "feet")
  40055. },
  40056. {
  40057. name: "Mountain-Mashing",
  40058. height: math.unit(80000, "feet")
  40059. },
  40060. {
  40061. name: "District Demolisher",
  40062. height: math.unit(240000, "feet")
  40063. },
  40064. {
  40065. name: "Tri-County Terror",
  40066. height: math.unit(800000, "feet")
  40067. },
  40068. {
  40069. name: "State Smasher",
  40070. height: math.unit(2.4e6, "feet")
  40071. },
  40072. {
  40073. name: "Nation Nemesis",
  40074. height: math.unit(8e6, "feet")
  40075. },
  40076. {
  40077. name: "Continent Cracker",
  40078. height: math.unit(2.4e7, "feet")
  40079. },
  40080. {
  40081. name: "Planet-Pillaging",
  40082. height: math.unit(8e7, "feet")
  40083. },
  40084. {
  40085. name: "Earth-Eclipsing",
  40086. height: math.unit(2.4e8, "feet")
  40087. },
  40088. {
  40089. name: "Jovian-Jostling",
  40090. height: math.unit(8e8, "feet")
  40091. },
  40092. {
  40093. name: "Gas Giant Gulper",
  40094. height: math.unit(2.4e9, "feet")
  40095. },
  40096. {
  40097. name: "Astral Annihilator",
  40098. height: math.unit(8e9, "feet")
  40099. },
  40100. {
  40101. name: "Celestial Conqueror",
  40102. height: math.unit(2.4e10, "feet")
  40103. },
  40104. {
  40105. name: "Sol-Swallowing",
  40106. height: math.unit(8e10, "feet")
  40107. },
  40108. {
  40109. name: "Hunter of the Heavens",
  40110. height: math.unit(2.4e13, "feet")
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40116. {
  40117. front: {
  40118. height: math.unit(6 + 8/12, "feet"),
  40119. weight: math.unit(250, "kilograms"),
  40120. volume: math.unit(28, "liters"),
  40121. name: "Front",
  40122. image: {
  40123. source: "./media/characters/rebecca-pawlson/front.svg",
  40124. extra: 1737/1596,
  40125. bottom: 107/1844
  40126. }
  40127. },
  40128. back: {
  40129. height: math.unit(6 + 8/12, "feet"),
  40130. weight: math.unit(250, "kilograms"),
  40131. volume: math.unit(28, "liters"),
  40132. name: "Back",
  40133. image: {
  40134. source: "./media/characters/rebecca-pawlson/back.svg",
  40135. extra: 1702/1523,
  40136. bottom: 86/1788
  40137. }
  40138. },
  40139. },
  40140. [
  40141. {
  40142. name: "Normal",
  40143. height: math.unit(6 + 8/12, "feet")
  40144. },
  40145. {
  40146. name: "Mini Macro",
  40147. height: math.unit(10, "feet"),
  40148. default: true
  40149. },
  40150. {
  40151. name: "Macro",
  40152. height: math.unit(100, "feet")
  40153. },
  40154. {
  40155. name: "Mega Macro",
  40156. height: math.unit(2500, "feet")
  40157. },
  40158. {
  40159. name: "Giga Macro",
  40160. height: math.unit(50, "miles")
  40161. },
  40162. ]
  40163. ))
  40164. characterMakers.push(() => makeCharacter(
  40165. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40166. {
  40167. front: {
  40168. height: math.unit(7 + 6/12, "feet"),
  40169. weight: math.unit(600, "lb"),
  40170. name: "Front",
  40171. image: {
  40172. source: "./media/characters/moxie-nova/front.svg",
  40173. extra: 1734/1652,
  40174. bottom: 41/1775
  40175. }
  40176. },
  40177. },
  40178. [
  40179. {
  40180. name: "Normal",
  40181. height: math.unit(7 + 6/12, "feet"),
  40182. default: true
  40183. },
  40184. ]
  40185. ))
  40186. characterMakers.push(() => makeCharacter(
  40187. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40188. {
  40189. goat: {
  40190. height: math.unit(4, "feet"),
  40191. weight: math.unit(180, "lb"),
  40192. name: "Goat",
  40193. image: {
  40194. source: "./media/characters/tiffany/goat.svg",
  40195. extra: 1845/1595,
  40196. bottom: 106/1951
  40197. }
  40198. },
  40199. front: {
  40200. height: math.unit(5, "feet"),
  40201. weight: math.unit(150, "lb"),
  40202. name: "Foxcoon",
  40203. image: {
  40204. source: "./media/characters/tiffany/foxcoon.svg",
  40205. extra: 1941/1845,
  40206. bottom: 58/1999
  40207. }
  40208. },
  40209. },
  40210. [
  40211. {
  40212. name: "Normal",
  40213. height: math.unit(5, "feet"),
  40214. default: true
  40215. },
  40216. ]
  40217. ))
  40218. characterMakers.push(() => makeCharacter(
  40219. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40220. {
  40221. front: {
  40222. height: math.unit(8, "feet"),
  40223. weight: math.unit(300, "lb"),
  40224. name: "Front",
  40225. image: {
  40226. source: "./media/characters/raxinath/front.svg",
  40227. extra: 1407/1309,
  40228. bottom: 39/1446
  40229. }
  40230. },
  40231. back: {
  40232. height: math.unit(8, "feet"),
  40233. weight: math.unit(300, "lb"),
  40234. name: "Back",
  40235. image: {
  40236. source: "./media/characters/raxinath/back.svg",
  40237. extra: 1405/1315,
  40238. bottom: 9/1414
  40239. }
  40240. },
  40241. },
  40242. [
  40243. {
  40244. name: "Speck",
  40245. height: math.unit(0.5, "nm")
  40246. },
  40247. {
  40248. name: "Micro",
  40249. height: math.unit(3, "inches")
  40250. },
  40251. {
  40252. name: "Kobold",
  40253. height: math.unit(3, "feet")
  40254. },
  40255. {
  40256. name: "Normal",
  40257. height: math.unit(8, "feet"),
  40258. default: true
  40259. },
  40260. {
  40261. name: "Giant",
  40262. height: math.unit(50, "feet")
  40263. },
  40264. {
  40265. name: "Macro",
  40266. height: math.unit(1000, "feet")
  40267. },
  40268. {
  40269. name: "Megamacro",
  40270. height: math.unit(1, "mile")
  40271. },
  40272. ]
  40273. ))
  40274. characterMakers.push(() => makeCharacter(
  40275. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40276. {
  40277. front: {
  40278. height: math.unit(10, "feet"),
  40279. weight: math.unit(1442, "lb"),
  40280. name: "Front",
  40281. image: {
  40282. source: "./media/characters/mal-dragon/front.svg",
  40283. extra: 1515/1444,
  40284. bottom: 113/1628
  40285. }
  40286. },
  40287. back: {
  40288. height: math.unit(10, "feet"),
  40289. weight: math.unit(1442, "lb"),
  40290. name: "Back",
  40291. image: {
  40292. source: "./media/characters/mal-dragon/back.svg",
  40293. extra: 1527/1434,
  40294. bottom: 25/1552
  40295. }
  40296. },
  40297. },
  40298. [
  40299. {
  40300. name: "Mortal Interaction",
  40301. height: math.unit(10, "feet"),
  40302. default: true
  40303. },
  40304. {
  40305. name: "Large",
  40306. height: math.unit(30, "feet")
  40307. },
  40308. {
  40309. name: "Kaiju",
  40310. height: math.unit(300, "feet")
  40311. },
  40312. {
  40313. name: "Megamacro",
  40314. height: math.unit(10000, "feet")
  40315. },
  40316. {
  40317. name: "Continent Cracker",
  40318. height: math.unit(30000000, "feet")
  40319. },
  40320. {
  40321. name: "Sol-Swallowing",
  40322. height: math.unit(1e11, "feet")
  40323. },
  40324. {
  40325. name: "Light Universal",
  40326. height: math.unit(5, "universes")
  40327. },
  40328. {
  40329. name: "Universe Atoms",
  40330. height: math.unit(1.829e9, "universes")
  40331. },
  40332. {
  40333. name: "Light Multiversal",
  40334. height: math.unit(5, "multiverses")
  40335. },
  40336. {
  40337. name: "Multiverse Atoms",
  40338. height: math.unit(1.829e9, "multiverses")
  40339. },
  40340. {
  40341. name: "Fabric of Time",
  40342. height: math.unit(1e262, "multiverses")
  40343. },
  40344. ]
  40345. ))
  40346. characterMakers.push(() => makeCharacter(
  40347. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40348. {
  40349. front: {
  40350. height: math.unit(9, "feet"),
  40351. weight: math.unit(1050, "lb"),
  40352. name: "Front",
  40353. image: {
  40354. source: "./media/characters/tabitha/front.svg",
  40355. extra: 2083/1994,
  40356. bottom: 68/2151
  40357. }
  40358. },
  40359. },
  40360. [
  40361. {
  40362. name: "Baseline",
  40363. height: math.unit(9, "feet"),
  40364. default: true
  40365. },
  40366. {
  40367. name: "Giant",
  40368. height: math.unit(90, "feet")
  40369. },
  40370. {
  40371. name: "Macro",
  40372. height: math.unit(900, "feet")
  40373. },
  40374. {
  40375. name: "Megamacro",
  40376. height: math.unit(9000, "feet")
  40377. },
  40378. {
  40379. name: "City-Crushing",
  40380. height: math.unit(27000, "feet")
  40381. },
  40382. {
  40383. name: "Mountain-Mashing",
  40384. height: math.unit(90000, "feet")
  40385. },
  40386. {
  40387. name: "Nation Nemesis",
  40388. height: math.unit(9e6, "feet")
  40389. },
  40390. {
  40391. name: "Continent Cracker",
  40392. height: math.unit(27e6, "feet")
  40393. },
  40394. {
  40395. name: "Earth-Eclipsing",
  40396. height: math.unit(2.7e8, "feet")
  40397. },
  40398. {
  40399. name: "Gas Giant Gulper",
  40400. height: math.unit(2.7e9, "feet")
  40401. },
  40402. {
  40403. name: "Sol-Swallowing",
  40404. height: math.unit(9e10, "feet")
  40405. },
  40406. {
  40407. name: "Galaxy Gulper",
  40408. height: math.unit(9, "galaxies")
  40409. },
  40410. {
  40411. name: "Cosmos Churner",
  40412. height: math.unit(9, "universes")
  40413. },
  40414. ]
  40415. ))
  40416. characterMakers.push(() => makeCharacter(
  40417. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40418. {
  40419. front: {
  40420. height: math.unit(160, "cm"),
  40421. weight: math.unit(55, "kg"),
  40422. name: "Front",
  40423. image: {
  40424. source: "./media/characters/tow/front.svg",
  40425. extra: 1751/1722,
  40426. bottom: 74/1825
  40427. }
  40428. },
  40429. },
  40430. [
  40431. {
  40432. name: "Norm",
  40433. height: math.unit(160, "cm")
  40434. },
  40435. {
  40436. name: "Casual",
  40437. height: math.unit(3200, "m"),
  40438. default: true
  40439. },
  40440. {
  40441. name: "Show-Off",
  40442. height: math.unit(160, "km")
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40448. {
  40449. front: {
  40450. height: math.unit(7 + 11/12, "feet"),
  40451. weight: math.unit(342.8, "lb"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/vivian-orca-dragon/front.svg",
  40455. extra: 1890/1865,
  40456. bottom: 28/1918
  40457. }
  40458. },
  40459. },
  40460. [
  40461. {
  40462. name: "Micro",
  40463. height: math.unit(5, "inches")
  40464. },
  40465. {
  40466. name: "Normal",
  40467. height: math.unit(7 + 11/12, "feet"),
  40468. default: true
  40469. },
  40470. {
  40471. name: "Macro",
  40472. height: math.unit(395 + 7/12, "feet")
  40473. },
  40474. ]
  40475. ))
  40476. characterMakers.push(() => makeCharacter(
  40477. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40478. {
  40479. side: {
  40480. height: math.unit(10, "feet"),
  40481. weight: math.unit(1442, "lb"),
  40482. name: "Side",
  40483. image: {
  40484. source: "./media/characters/lotherakon/side.svg",
  40485. extra: 1604/1497,
  40486. bottom: 89/1693
  40487. }
  40488. },
  40489. },
  40490. [
  40491. {
  40492. name: "Mortal Interaction",
  40493. height: math.unit(10, "feet")
  40494. },
  40495. {
  40496. name: "Large",
  40497. height: math.unit(30, "feet"),
  40498. default: true
  40499. },
  40500. {
  40501. name: "Giant",
  40502. height: math.unit(100, "feet")
  40503. },
  40504. {
  40505. name: "Kaiju",
  40506. height: math.unit(300, "feet")
  40507. },
  40508. {
  40509. name: "Macro",
  40510. height: math.unit(1000, "feet")
  40511. },
  40512. {
  40513. name: "Macro+",
  40514. height: math.unit(3000, "feet")
  40515. },
  40516. {
  40517. name: "Megamacro",
  40518. height: math.unit(10000, "feet")
  40519. },
  40520. {
  40521. name: "City-Crushing",
  40522. height: math.unit(30000, "feet")
  40523. },
  40524. {
  40525. name: "Continent Cracker",
  40526. height: math.unit(30e6, "feet")
  40527. },
  40528. {
  40529. name: "Earth Eclipsing",
  40530. height: math.unit(3e8, "feet")
  40531. },
  40532. {
  40533. name: "Gas Giant Gulper",
  40534. height: math.unit(3e9, "feet")
  40535. },
  40536. {
  40537. name: "Sol-Swallowing",
  40538. height: math.unit(1e11, "feet")
  40539. },
  40540. {
  40541. name: "System Swallower",
  40542. height: math.unit(3e14, "feet")
  40543. },
  40544. {
  40545. name: "Galaxy Gulper",
  40546. height: math.unit(10, "galaxies")
  40547. },
  40548. {
  40549. name: "Light Universal",
  40550. height: math.unit(5, "universes")
  40551. },
  40552. {
  40553. name: "Universe Palm",
  40554. height: math.unit(20, "universes")
  40555. },
  40556. {
  40557. name: "Light Multiversal",
  40558. height: math.unit(5, "multiverses")
  40559. },
  40560. {
  40561. name: "Multiverse Palm",
  40562. height: math.unit(20, "multiverses")
  40563. },
  40564. {
  40565. name: "Inferno Incarnate",
  40566. height: math.unit(1e7, "multiverses")
  40567. },
  40568. ]
  40569. ))
  40570. characterMakers.push(() => makeCharacter(
  40571. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40572. {
  40573. front: {
  40574. height: math.unit(8, "feet"),
  40575. weight: math.unit(1200, "lb"),
  40576. name: "Front",
  40577. image: {
  40578. source: "./media/characters/malithee/front.svg",
  40579. extra: 1675/1640,
  40580. bottom: 162/1837
  40581. }
  40582. },
  40583. },
  40584. [
  40585. {
  40586. name: "Mortal Interaction",
  40587. height: math.unit(8, "feet"),
  40588. default: true
  40589. },
  40590. {
  40591. name: "Large",
  40592. height: math.unit(24, "feet")
  40593. },
  40594. {
  40595. name: "Kaiju",
  40596. height: math.unit(240, "feet")
  40597. },
  40598. {
  40599. name: "Megamacro",
  40600. height: math.unit(8000, "feet")
  40601. },
  40602. {
  40603. name: "Continent Cracker",
  40604. height: math.unit(24e6, "feet")
  40605. },
  40606. {
  40607. name: "Earth-Eclipsing",
  40608. height: math.unit(2.4e8, "feet")
  40609. },
  40610. {
  40611. name: "Sol-Swallowing",
  40612. height: math.unit(8e10, "feet")
  40613. },
  40614. {
  40615. name: "Galaxy Gulper",
  40616. height: math.unit(8, "galaxies")
  40617. },
  40618. {
  40619. name: "Light Universal",
  40620. height: math.unit(4, "universes")
  40621. },
  40622. {
  40623. name: "Universe Atoms",
  40624. height: math.unit(1.829e9, "universes")
  40625. },
  40626. {
  40627. name: "Light Multiversal",
  40628. height: math.unit(4, "multiverses")
  40629. },
  40630. {
  40631. name: "Multiverse Atoms",
  40632. height: math.unit(1.829e9, "multiverses")
  40633. },
  40634. {
  40635. name: "Nigh-Omnipresence",
  40636. height: math.unit(8e261, "multiverses")
  40637. },
  40638. ]
  40639. ))
  40640. characterMakers.push(() => makeCharacter(
  40641. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40642. {
  40643. front: {
  40644. height: math.unit(10, "feet"),
  40645. weight: math.unit(1500, "lb"),
  40646. name: "Front",
  40647. image: {
  40648. source: "./media/characters/miles-thestia/front.svg",
  40649. extra: 1812/1727,
  40650. bottom: 86/1898
  40651. }
  40652. },
  40653. back: {
  40654. height: math.unit(10, "feet"),
  40655. weight: math.unit(1500, "lb"),
  40656. name: "Back",
  40657. image: {
  40658. source: "./media/characters/miles-thestia/back.svg",
  40659. extra: 1799/1690,
  40660. bottom: 47/1846
  40661. }
  40662. },
  40663. frontNsfw: {
  40664. height: math.unit(10, "feet"),
  40665. weight: math.unit(1500, "lb"),
  40666. name: "Front (NSFW)",
  40667. image: {
  40668. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40669. extra: 1812/1727,
  40670. bottom: 86/1898
  40671. }
  40672. },
  40673. },
  40674. [
  40675. {
  40676. name: "Mini-Macro",
  40677. height: math.unit(10, "feet"),
  40678. default: true
  40679. },
  40680. ]
  40681. ))
  40682. characterMakers.push(() => makeCharacter(
  40683. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40684. {
  40685. front: {
  40686. height: math.unit(25, "feet"),
  40687. name: "Front",
  40688. image: {
  40689. source: "./media/characters/titan-s-wulf/front.svg",
  40690. extra: 1560/1484,
  40691. bottom: 76/1636
  40692. }
  40693. },
  40694. },
  40695. [
  40696. {
  40697. name: "Smallest",
  40698. height: math.unit(25, "feet"),
  40699. default: true
  40700. },
  40701. {
  40702. name: "Normal",
  40703. height: math.unit(200, "feet")
  40704. },
  40705. {
  40706. name: "Macro",
  40707. height: math.unit(200000, "feet")
  40708. },
  40709. {
  40710. name: "Multiversal Original",
  40711. height: math.unit(10000, "multiverses")
  40712. },
  40713. ]
  40714. ))
  40715. characterMakers.push(() => makeCharacter(
  40716. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40717. {
  40718. front: {
  40719. height: math.unit(8, "feet"),
  40720. weight: math.unit(553, "lb"),
  40721. name: "Front",
  40722. image: {
  40723. source: "./media/characters/tawendeh/front.svg",
  40724. extra: 2365/2268,
  40725. bottom: 83/2448
  40726. }
  40727. },
  40728. frontClothed: {
  40729. height: math.unit(8, "feet"),
  40730. weight: math.unit(553, "lb"),
  40731. name: "Front (Clothed)",
  40732. image: {
  40733. source: "./media/characters/tawendeh/front-clothed.svg",
  40734. extra: 2365/2268,
  40735. bottom: 83/2448
  40736. }
  40737. },
  40738. back: {
  40739. height: math.unit(8, "feet"),
  40740. weight: math.unit(553, "lb"),
  40741. name: "Back",
  40742. image: {
  40743. source: "./media/characters/tawendeh/back.svg",
  40744. extra: 2397/2294,
  40745. bottom: 42/2439
  40746. }
  40747. },
  40748. },
  40749. [
  40750. {
  40751. name: "Mortal Interaction",
  40752. height: math.unit(8, "feet"),
  40753. default: true
  40754. },
  40755. {
  40756. name: "Giant",
  40757. height: math.unit(80, "feet")
  40758. },
  40759. {
  40760. name: "Macro",
  40761. height: math.unit(800, "feet")
  40762. },
  40763. {
  40764. name: "Megamacro",
  40765. height: math.unit(8000, "feet")
  40766. },
  40767. {
  40768. name: "City-Crushing",
  40769. height: math.unit(24000, "feet")
  40770. },
  40771. {
  40772. name: "Mountain-Mashing",
  40773. height: math.unit(80000, "feet")
  40774. },
  40775. {
  40776. name: "Nation Nemesis",
  40777. height: math.unit(8e6, "feet")
  40778. },
  40779. {
  40780. name: "Continent Cracker",
  40781. height: math.unit(24e6, "feet")
  40782. },
  40783. {
  40784. name: "Earth-Eclipsing",
  40785. height: math.unit(2.4e8, "feet")
  40786. },
  40787. {
  40788. name: "Gas Giant Gulper",
  40789. height: math.unit(2.4e9, "feet")
  40790. },
  40791. {
  40792. name: "Sol-Swallowing",
  40793. height: math.unit(8e10, "feet")
  40794. },
  40795. {
  40796. name: "Galaxy Gulper",
  40797. height: math.unit(8, "galaxies")
  40798. },
  40799. {
  40800. name: "Cosmos Churner",
  40801. height: math.unit(8, "universes")
  40802. },
  40803. {
  40804. name: "Omnipotent Otter",
  40805. height: math.unit(80, "universes")
  40806. },
  40807. ]
  40808. ))
  40809. characterMakers.push(() => makeCharacter(
  40810. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40811. {
  40812. front: {
  40813. height: math.unit(2.6, "meters"),
  40814. weight: math.unit(900, "kg"),
  40815. name: "Front",
  40816. image: {
  40817. source: "./media/characters/neesha/front.svg",
  40818. extra: 1803/1653,
  40819. bottom: 128/1931
  40820. }
  40821. },
  40822. },
  40823. [
  40824. {
  40825. name: "Normal",
  40826. height: math.unit(2.6, "meters"),
  40827. default: true
  40828. },
  40829. {
  40830. name: "Macro",
  40831. height: math.unit(50, "meters")
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40837. {
  40838. front: {
  40839. height: math.unit(5, "feet"),
  40840. weight: math.unit(185, "lb"),
  40841. name: "Front",
  40842. image: {
  40843. source: "./media/characters/kyera/front.svg",
  40844. extra: 1875/1790,
  40845. bottom: 96/1971
  40846. }
  40847. },
  40848. },
  40849. [
  40850. {
  40851. name: "Normal",
  40852. height: math.unit(5, "feet"),
  40853. default: true
  40854. },
  40855. ]
  40856. ))
  40857. characterMakers.push(() => makeCharacter(
  40858. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40859. {
  40860. front: {
  40861. height: math.unit(7 + 6/12, "feet"),
  40862. weight: math.unit(540, "lb"),
  40863. name: "Front",
  40864. image: {
  40865. source: "./media/characters/yuko/front.svg",
  40866. extra: 1282/1222,
  40867. bottom: 101/1383
  40868. }
  40869. },
  40870. frontClothed: {
  40871. height: math.unit(7 + 6/12, "feet"),
  40872. weight: math.unit(540, "lb"),
  40873. name: "Front (Clothed)",
  40874. image: {
  40875. source: "./media/characters/yuko/front-clothed.svg",
  40876. extra: 1282/1222,
  40877. bottom: 101/1383
  40878. }
  40879. },
  40880. },
  40881. [
  40882. {
  40883. name: "Normal",
  40884. height: math.unit(7 + 6/12, "feet"),
  40885. default: true
  40886. },
  40887. {
  40888. name: "Macro",
  40889. height: math.unit(26 + 9/12, "feet")
  40890. },
  40891. {
  40892. name: "Megamacro",
  40893. height: math.unit(300, "feet")
  40894. },
  40895. {
  40896. name: "Gigamacro",
  40897. height: math.unit(5000, "feet")
  40898. },
  40899. {
  40900. name: "Planetary",
  40901. height: math.unit(10000, "miles")
  40902. },
  40903. ]
  40904. ))
  40905. characterMakers.push(() => makeCharacter(
  40906. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40907. {
  40908. front: {
  40909. height: math.unit(8 + 2/12, "feet"),
  40910. weight: math.unit(600, "lb"),
  40911. name: "Front",
  40912. image: {
  40913. source: "./media/characters/deam-nitrel/front.svg",
  40914. extra: 1308/1234,
  40915. bottom: 125/1433
  40916. }
  40917. },
  40918. },
  40919. [
  40920. {
  40921. name: "Normal",
  40922. height: math.unit(8 + 2/12, "feet"),
  40923. default: true
  40924. },
  40925. ]
  40926. ))
  40927. characterMakers.push(() => makeCharacter(
  40928. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40929. {
  40930. front: {
  40931. height: math.unit(6.1, "feet"),
  40932. weight: math.unit(180, "lb"),
  40933. name: "Front",
  40934. image: {
  40935. source: "./media/characters/skyress/front.svg",
  40936. extra: 1045/915,
  40937. bottom: 28/1073
  40938. }
  40939. },
  40940. maw: {
  40941. height: math.unit(1, "feet"),
  40942. name: "Maw",
  40943. image: {
  40944. source: "./media/characters/skyress/maw.svg"
  40945. }
  40946. },
  40947. },
  40948. [
  40949. {
  40950. name: "Normal",
  40951. height: math.unit(6.1, "feet"),
  40952. default: true
  40953. },
  40954. {
  40955. name: "Macro",
  40956. height: math.unit(200, "feet")
  40957. },
  40958. ]
  40959. ))
  40960. characterMakers.push(() => makeCharacter(
  40961. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40962. {
  40963. front: {
  40964. height: math.unit(4 + 2/12, "feet"),
  40965. weight: math.unit(40, "kg"),
  40966. name: "Front",
  40967. image: {
  40968. source: "./media/characters/amethyst-jones/front.svg",
  40969. extra: 1220/1150,
  40970. bottom: 101/1321
  40971. }
  40972. },
  40973. },
  40974. [
  40975. {
  40976. name: "Normal",
  40977. height: math.unit(4 + 2/12, "feet"),
  40978. default: true
  40979. },
  40980. ]
  40981. ))
  40982. characterMakers.push(() => makeCharacter(
  40983. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40984. {
  40985. front: {
  40986. height: math.unit(1.7, "m"),
  40987. weight: math.unit(135, "lb"),
  40988. name: "Front",
  40989. image: {
  40990. source: "./media/characters/jade/front.svg",
  40991. extra: 1818/1767,
  40992. bottom: 32/1850
  40993. }
  40994. },
  40995. back: {
  40996. height: math.unit(1.7, "m"),
  40997. weight: math.unit(135, "lb"),
  40998. name: "Back",
  40999. image: {
  41000. source: "./media/characters/jade/back.svg",
  41001. extra: 1869/1809,
  41002. bottom: 35/1904
  41003. }
  41004. },
  41005. hand: {
  41006. height: math.unit(0.24, "m"),
  41007. name: "Hand",
  41008. image: {
  41009. source: "./media/characters/jade/hand.svg"
  41010. }
  41011. },
  41012. foot: {
  41013. height: math.unit(0.263, "m"),
  41014. name: "Foot",
  41015. image: {
  41016. source: "./media/characters/jade/foot.svg"
  41017. }
  41018. },
  41019. dick: {
  41020. height: math.unit(0.47, "m"),
  41021. name: "Dick",
  41022. image: {
  41023. source: "./media/characters/jade/dick.svg"
  41024. }
  41025. },
  41026. },
  41027. [
  41028. {
  41029. name: "Micro",
  41030. height: math.unit(22, "cm")
  41031. },
  41032. {
  41033. name: "Normal",
  41034. height: math.unit(1.7, "m"),
  41035. default: true
  41036. },
  41037. {
  41038. name: "Macro",
  41039. height: math.unit(152, "m")
  41040. },
  41041. ]
  41042. ))
  41043. characterMakers.push(() => makeCharacter(
  41044. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41045. {
  41046. front: {
  41047. height: math.unit(100, "miles"),
  41048. weight: math.unit(20000, "tons"),
  41049. name: "Front",
  41050. image: {
  41051. source: "./media/characters/cookie/front.svg",
  41052. extra: 1125/1070,
  41053. bottom: 30/1155
  41054. }
  41055. },
  41056. },
  41057. [
  41058. {
  41059. name: "Big",
  41060. height: math.unit(50, "feet")
  41061. },
  41062. {
  41063. name: "Macro",
  41064. height: math.unit(100, "miles"),
  41065. default: true
  41066. },
  41067. {
  41068. name: "Megamacro",
  41069. height: math.unit(90000, "miles")
  41070. },
  41071. ]
  41072. ))
  41073. characterMakers.push(() => makeCharacter(
  41074. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41075. {
  41076. front: {
  41077. height: math.unit(6, "feet"),
  41078. weight: math.unit(145, "lb"),
  41079. name: "Front",
  41080. image: {
  41081. source: "./media/characters/farzian/front.svg",
  41082. extra: 1902/1693,
  41083. bottom: 108/2010
  41084. }
  41085. },
  41086. },
  41087. [
  41088. {
  41089. name: "Macro",
  41090. height: math.unit(500, "feet"),
  41091. default: true
  41092. },
  41093. ]
  41094. ))
  41095. characterMakers.push(() => makeCharacter(
  41096. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41097. {
  41098. front: {
  41099. height: math.unit(3 + 6/12, "feet"),
  41100. weight: math.unit(50, "lb"),
  41101. name: "Front",
  41102. image: {
  41103. source: "./media/characters/kimberly-tilson/front.svg",
  41104. extra: 1400/1322,
  41105. bottom: 36/1436
  41106. }
  41107. },
  41108. back: {
  41109. height: math.unit(3 + 6/12, "feet"),
  41110. weight: math.unit(50, "lb"),
  41111. name: "Back",
  41112. image: {
  41113. source: "./media/characters/kimberly-tilson/back.svg",
  41114. extra: 1370/1307,
  41115. bottom: 20/1390
  41116. }
  41117. },
  41118. },
  41119. [
  41120. {
  41121. name: "Normal",
  41122. height: math.unit(3 + 6/12, "feet"),
  41123. default: true
  41124. },
  41125. ]
  41126. ))
  41127. characterMakers.push(() => makeCharacter(
  41128. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41129. {
  41130. front: {
  41131. height: math.unit(1148, "feet"),
  41132. weight: math.unit(34057, "lb"),
  41133. name: "Front",
  41134. image: {
  41135. source: "./media/characters/harthos/front.svg",
  41136. extra: 1391/1339,
  41137. bottom: 13/1404
  41138. }
  41139. },
  41140. },
  41141. [
  41142. {
  41143. name: "Macro",
  41144. height: math.unit(1148, "feet"),
  41145. default: true
  41146. },
  41147. ]
  41148. ))
  41149. characterMakers.push(() => makeCharacter(
  41150. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41151. {
  41152. front: {
  41153. height: math.unit(15, "feet"),
  41154. name: "Front",
  41155. image: {
  41156. source: "./media/characters/hypatia/front.svg",
  41157. extra: 1653/1591,
  41158. bottom: 79/1732
  41159. }
  41160. },
  41161. },
  41162. [
  41163. {
  41164. name: "Normal",
  41165. height: math.unit(15, "feet")
  41166. },
  41167. {
  41168. name: "Small",
  41169. height: math.unit(300, "feet")
  41170. },
  41171. {
  41172. name: "Macro",
  41173. height: math.unit(2500, "feet"),
  41174. default: true
  41175. },
  41176. {
  41177. name: "Mega Macro",
  41178. height: math.unit(1500, "miles")
  41179. },
  41180. {
  41181. name: "Giga Macro",
  41182. height: math.unit(1.5e6, "miles")
  41183. },
  41184. ]
  41185. ))
  41186. characterMakers.push(() => makeCharacter(
  41187. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41188. {
  41189. front: {
  41190. height: math.unit(6, "feet"),
  41191. weight: math.unit(200, "lb"),
  41192. name: "Front",
  41193. image: {
  41194. source: "./media/characters/wulver/front.svg",
  41195. extra: 1724/1632,
  41196. bottom: 130/1854
  41197. }
  41198. },
  41199. frontNsfw: {
  41200. height: math.unit(6, "feet"),
  41201. weight: math.unit(200, "lb"),
  41202. name: "Front (NSFW)",
  41203. image: {
  41204. source: "./media/characters/wulver/front-nsfw.svg",
  41205. extra: 1724/1632,
  41206. bottom: 130/1854
  41207. }
  41208. },
  41209. },
  41210. [
  41211. {
  41212. name: "Human-Sized",
  41213. height: math.unit(6, "feet")
  41214. },
  41215. {
  41216. name: "Normal",
  41217. height: math.unit(4, "meters"),
  41218. default: true
  41219. },
  41220. {
  41221. name: "Large",
  41222. height: math.unit(6, "m")
  41223. },
  41224. ]
  41225. ))
  41226. characterMakers.push(() => makeCharacter(
  41227. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41228. {
  41229. front: {
  41230. height: math.unit(7, "feet"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/maru/front.svg",
  41234. extra: 1595/1570,
  41235. bottom: 0/1595
  41236. }
  41237. },
  41238. },
  41239. [
  41240. {
  41241. name: "Normal",
  41242. height: math.unit(7, "feet"),
  41243. default: true
  41244. },
  41245. {
  41246. name: "Macro",
  41247. height: math.unit(700, "feet")
  41248. },
  41249. {
  41250. name: "Mega Macro",
  41251. height: math.unit(25, "miles")
  41252. },
  41253. ]
  41254. ))
  41255. characterMakers.push(() => makeCharacter(
  41256. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41257. {
  41258. front: {
  41259. height: math.unit(6, "feet"),
  41260. weight: math.unit(170, "lb"),
  41261. name: "Front",
  41262. image: {
  41263. source: "./media/characters/xenon/front.svg",
  41264. extra: 1376/1305,
  41265. bottom: 56/1432
  41266. }
  41267. },
  41268. back: {
  41269. height: math.unit(6, "feet"),
  41270. weight: math.unit(170, "lb"),
  41271. name: "Back",
  41272. image: {
  41273. source: "./media/characters/xenon/back.svg",
  41274. extra: 1328/1259,
  41275. bottom: 95/1423
  41276. }
  41277. },
  41278. maw: {
  41279. height: math.unit(0.52, "feet"),
  41280. name: "Maw",
  41281. image: {
  41282. source: "./media/characters/xenon/maw.svg"
  41283. }
  41284. },
  41285. hand: {
  41286. height: math.unit(0.82, "feet"),
  41287. name: "Hand",
  41288. image: {
  41289. source: "./media/characters/xenon/hand.svg"
  41290. }
  41291. },
  41292. foot: {
  41293. height: math.unit(1.13, "feet"),
  41294. name: "Foot",
  41295. image: {
  41296. source: "./media/characters/xenon/foot.svg"
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Micro",
  41303. height: math.unit(0.8, "inches")
  41304. },
  41305. {
  41306. name: "Normal",
  41307. height: math.unit(6, "feet")
  41308. },
  41309. {
  41310. name: "Macro",
  41311. height: math.unit(50, "feet"),
  41312. default: true
  41313. },
  41314. {
  41315. name: "Macro+",
  41316. height: math.unit(250, "feet")
  41317. },
  41318. {
  41319. name: "Megamacro",
  41320. height: math.unit(1500, "feet")
  41321. },
  41322. ]
  41323. ))
  41324. characterMakers.push(() => makeCharacter(
  41325. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41326. {
  41327. front: {
  41328. height: math.unit(7 + 5/12, "feet"),
  41329. name: "Front",
  41330. image: {
  41331. source: "./media/characters/zane/front.svg",
  41332. extra: 1260/1203,
  41333. bottom: 94/1354
  41334. }
  41335. },
  41336. back: {
  41337. height: math.unit(5.05, "feet"),
  41338. name: "Back",
  41339. image: {
  41340. source: "./media/characters/zane/back.svg",
  41341. extra: 893/829,
  41342. bottom: 30/923
  41343. }
  41344. },
  41345. werewolf: {
  41346. height: math.unit(11, "feet"),
  41347. name: "Werewolf",
  41348. image: {
  41349. source: "./media/characters/zane/werewolf.svg",
  41350. extra: 1383/1323,
  41351. bottom: 89/1472
  41352. }
  41353. },
  41354. foot: {
  41355. height: math.unit(1.46, "feet"),
  41356. name: "Foot",
  41357. image: {
  41358. source: "./media/characters/zane/foot.svg"
  41359. }
  41360. },
  41361. footFront: {
  41362. height: math.unit(0.784, "feet"),
  41363. name: "Foot (Front)",
  41364. image: {
  41365. source: "./media/characters/zane/foot-front.svg"
  41366. }
  41367. },
  41368. dick: {
  41369. height: math.unit(1.95, "feet"),
  41370. name: "Dick",
  41371. image: {
  41372. source: "./media/characters/zane/dick.svg"
  41373. }
  41374. },
  41375. dickWerewolf: {
  41376. height: math.unit(3.77, "feet"),
  41377. name: "Dick (Werewolf)",
  41378. image: {
  41379. source: "./media/characters/zane/dick.svg"
  41380. }
  41381. },
  41382. },
  41383. [
  41384. {
  41385. name: "Normal",
  41386. height: math.unit(7 + 5/12, "feet"),
  41387. default: true
  41388. },
  41389. ]
  41390. ))
  41391. characterMakers.push(() => makeCharacter(
  41392. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41393. {
  41394. front: {
  41395. height: math.unit(6 + 2/12, "feet"),
  41396. weight: math.unit(284, "lb"),
  41397. name: "Front",
  41398. image: {
  41399. source: "./media/characters/benni-desparque/front.svg",
  41400. extra: 1353/1126,
  41401. bottom: 69/1422
  41402. }
  41403. },
  41404. },
  41405. [
  41406. {
  41407. name: "Civilian",
  41408. height: math.unit(6 + 2/12, "feet")
  41409. },
  41410. {
  41411. name: "Normal",
  41412. height: math.unit(98, "feet"),
  41413. default: true
  41414. },
  41415. {
  41416. name: "Kaiju Fighter",
  41417. height: math.unit(268, "feet")
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(5, "feet"),
  41426. weight: math.unit(105, "lb"),
  41427. name: "Front",
  41428. image: {
  41429. source: "./media/characters/maxine/front.svg",
  41430. extra: 1386/1250,
  41431. bottom: 71/1457
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Normal",
  41438. height: math.unit(5, "feet"),
  41439. default: true
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41445. {
  41446. front: {
  41447. height: math.unit(11 + 7/12, "feet"),
  41448. weight: math.unit(9576, "lb"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/scaly/front.svg",
  41452. extra: 888/867,
  41453. bottom: 36/924
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(11 + 7/12, "feet"),
  41461. default: true
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41467. {
  41468. front: {
  41469. height: math.unit(6 + 3/12, "feet"),
  41470. name: "Front",
  41471. image: {
  41472. source: "./media/characters/saelria/front.svg",
  41473. extra: 1243/1138,
  41474. bottom: 46/1289
  41475. }
  41476. },
  41477. },
  41478. [
  41479. {
  41480. name: "Micro",
  41481. height: math.unit(6, "inches"),
  41482. },
  41483. {
  41484. name: "Normal",
  41485. height: math.unit(6 + 3/12, "feet"),
  41486. default: true
  41487. },
  41488. {
  41489. name: "Macro",
  41490. height: math.unit(25, "feet")
  41491. },
  41492. ]
  41493. ))
  41494. characterMakers.push(() => makeCharacter(
  41495. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41496. {
  41497. front: {
  41498. height: math.unit(80, "meters"),
  41499. weight: math.unit(7000, "tonnes"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/tef/front.svg",
  41503. extra: 2036/1991,
  41504. bottom: 54/2090
  41505. }
  41506. },
  41507. back: {
  41508. height: math.unit(80, "meters"),
  41509. weight: math.unit(7000, "tonnes"),
  41510. name: "Back",
  41511. image: {
  41512. source: "./media/characters/tef/back.svg",
  41513. extra: 2036/1991,
  41514. bottom: 54/2090
  41515. }
  41516. },
  41517. },
  41518. [
  41519. {
  41520. name: "Macro",
  41521. height: math.unit(80, "meters"),
  41522. default: true
  41523. },
  41524. ]
  41525. ))
  41526. characterMakers.push(() => makeCharacter(
  41527. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41528. {
  41529. front: {
  41530. height: math.unit(13, "feet"),
  41531. weight: math.unit(6, "tons"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/rover/front.svg",
  41535. extra: 1233/1156,
  41536. bottom: 50/1283
  41537. }
  41538. },
  41539. back: {
  41540. height: math.unit(13, "feet"),
  41541. weight: math.unit(6, "tons"),
  41542. name: "Back",
  41543. image: {
  41544. source: "./media/characters/rover/back.svg",
  41545. extra: 1327/1258,
  41546. bottom: 39/1366
  41547. }
  41548. },
  41549. },
  41550. [
  41551. {
  41552. name: "Normal",
  41553. height: math.unit(13, "feet"),
  41554. default: true
  41555. },
  41556. {
  41557. name: "Macro",
  41558. height: math.unit(1300, "feet")
  41559. },
  41560. {
  41561. name: "Megamacro",
  41562. height: math.unit(1300, "miles")
  41563. },
  41564. {
  41565. name: "Gigamacro",
  41566. height: math.unit(1300000, "miles")
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41572. {
  41573. front: {
  41574. height: math.unit(6, "feet"),
  41575. weight: math.unit(150, "lb"),
  41576. name: "Front",
  41577. image: {
  41578. source: "./media/characters/ariz/front.svg",
  41579. extra: 1401/1346,
  41580. bottom: 5/1406
  41581. }
  41582. },
  41583. },
  41584. [
  41585. {
  41586. name: "Normal",
  41587. height: math.unit(10, "feet"),
  41588. default: true
  41589. },
  41590. ]
  41591. ))
  41592. characterMakers.push(() => makeCharacter(
  41593. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41594. {
  41595. front: {
  41596. height: math.unit(6, "feet"),
  41597. weight: math.unit(140, "lb"),
  41598. name: "Front",
  41599. image: {
  41600. source: "./media/characters/sigrun/front.svg",
  41601. extra: 1418/1359,
  41602. bottom: 27/1445
  41603. }
  41604. },
  41605. },
  41606. [
  41607. {
  41608. name: "Macro",
  41609. height: math.unit(35, "feet"),
  41610. default: true
  41611. },
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41616. {
  41617. front: {
  41618. height: math.unit(6, "feet"),
  41619. weight: math.unit(150, "lb"),
  41620. name: "Front",
  41621. image: {
  41622. source: "./media/characters/numin/front.svg",
  41623. extra: 1433/1388,
  41624. bottom: 12/1445
  41625. }
  41626. },
  41627. },
  41628. [
  41629. {
  41630. name: "Macro",
  41631. height: math.unit(21.5, "km"),
  41632. default: true
  41633. },
  41634. ]
  41635. ))
  41636. characterMakers.push(() => makeCharacter(
  41637. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41638. {
  41639. front: {
  41640. height: math.unit(6, "feet"),
  41641. weight: math.unit(463, "lb"),
  41642. name: "Front",
  41643. image: {
  41644. source: "./media/characters/melwa/front.svg",
  41645. extra: 1307/1248,
  41646. bottom: 93/1400
  41647. }
  41648. },
  41649. },
  41650. [
  41651. {
  41652. name: "Macro",
  41653. height: math.unit(50, "meters"),
  41654. default: true
  41655. },
  41656. ]
  41657. ))
  41658. characterMakers.push(() => makeCharacter(
  41659. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41660. {
  41661. front: {
  41662. height: math.unit(325, "feet"),
  41663. name: "Front",
  41664. image: {
  41665. source: "./media/characters/zorkaiju/front.svg",
  41666. extra: 1955/1814,
  41667. bottom: 40/1995
  41668. }
  41669. },
  41670. frontExtended: {
  41671. height: math.unit(325, "feet"),
  41672. name: "Front (Extended)",
  41673. image: {
  41674. source: "./media/characters/zorkaiju/front-extended.svg",
  41675. extra: 1955/1814,
  41676. bottom: 40/1995
  41677. }
  41678. },
  41679. side: {
  41680. height: math.unit(325, "feet"),
  41681. name: "Side",
  41682. image: {
  41683. source: "./media/characters/zorkaiju/side.svg",
  41684. extra: 1495/1396,
  41685. bottom: 17/1512
  41686. }
  41687. },
  41688. sideExtended: {
  41689. height: math.unit(325, "feet"),
  41690. name: "Side (Extended)",
  41691. image: {
  41692. source: "./media/characters/zorkaiju/side-extended.svg",
  41693. extra: 1495/1396,
  41694. bottom: 17/1512
  41695. }
  41696. },
  41697. back: {
  41698. height: math.unit(325, "feet"),
  41699. name: "Back",
  41700. image: {
  41701. source: "./media/characters/zorkaiju/back.svg",
  41702. extra: 1959/1821,
  41703. bottom: 31/1990
  41704. }
  41705. },
  41706. backExtended: {
  41707. height: math.unit(325, "feet"),
  41708. name: "Back (Extended)",
  41709. image: {
  41710. source: "./media/characters/zorkaiju/back-extended.svg",
  41711. extra: 1959/1821,
  41712. bottom: 31/1990
  41713. }
  41714. },
  41715. hand: {
  41716. height: math.unit(58.4, "feet"),
  41717. name: "Hand",
  41718. image: {
  41719. source: "./media/characters/zorkaiju/hand.svg"
  41720. }
  41721. },
  41722. handExtended: {
  41723. height: math.unit(61.4, "feet"),
  41724. name: "Hand (Extended)",
  41725. image: {
  41726. source: "./media/characters/zorkaiju/hand-extended.svg"
  41727. }
  41728. },
  41729. foot: {
  41730. height: math.unit(95, "feet"),
  41731. name: "Foot",
  41732. image: {
  41733. source: "./media/characters/zorkaiju/foot.svg"
  41734. }
  41735. },
  41736. leftArm: {
  41737. height: math.unit(59, "feet"),
  41738. name: "Left Arm",
  41739. image: {
  41740. source: "./media/characters/zorkaiju/left-arm.svg"
  41741. }
  41742. },
  41743. rightArm: {
  41744. height: math.unit(59, "feet"),
  41745. name: "Right Arm",
  41746. image: {
  41747. source: "./media/characters/zorkaiju/right-arm.svg"
  41748. }
  41749. },
  41750. leftArmExtended: {
  41751. height: math.unit(59 * 1.033546, "feet"),
  41752. name: "Left Arm (Extended)",
  41753. image: {
  41754. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41755. }
  41756. },
  41757. rightArmExtended: {
  41758. height: math.unit(59 * 1.0496, "feet"),
  41759. name: "Right Arm (Extended)",
  41760. image: {
  41761. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41762. }
  41763. },
  41764. tail: {
  41765. height: math.unit(104, "feet"),
  41766. name: "Tail",
  41767. image: {
  41768. source: "./media/characters/zorkaiju/tail.svg"
  41769. }
  41770. },
  41771. tailExtended: {
  41772. height: math.unit(104, "feet"),
  41773. name: "Tail (Extended)",
  41774. image: {
  41775. source: "./media/characters/zorkaiju/tail-extended.svg"
  41776. }
  41777. },
  41778. tailBottom: {
  41779. height: math.unit(104, "feet"),
  41780. name: "Tail Bottom",
  41781. image: {
  41782. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41783. }
  41784. },
  41785. crystal: {
  41786. height: math.unit(27.54, "feet"),
  41787. name: "Crystal",
  41788. image: {
  41789. source: "./media/characters/zorkaiju/crystal.svg"
  41790. }
  41791. },
  41792. },
  41793. [
  41794. {
  41795. name: "Kaiju",
  41796. height: math.unit(325, "feet"),
  41797. default: true
  41798. },
  41799. ]
  41800. ))
  41801. characterMakers.push(() => makeCharacter(
  41802. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41803. {
  41804. front: {
  41805. height: math.unit(6 + 1/12, "feet"),
  41806. weight: math.unit(115, "lb"),
  41807. name: "Front",
  41808. image: {
  41809. source: "./media/characters/bailey-belfry/front.svg",
  41810. extra: 1240/1121,
  41811. bottom: 101/1341
  41812. }
  41813. },
  41814. },
  41815. [
  41816. {
  41817. name: "Normal",
  41818. height: math.unit(6 + 1/12, "feet"),
  41819. default: true
  41820. },
  41821. ]
  41822. ))
  41823. characterMakers.push(() => makeCharacter(
  41824. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41825. {
  41826. side: {
  41827. height: math.unit(4, "meters"),
  41828. weight: math.unit(250, "kg"),
  41829. name: "Side",
  41830. image: {
  41831. source: "./media/characters/blacky/side.svg",
  41832. extra: 1027/919,
  41833. bottom: 43/1070
  41834. }
  41835. },
  41836. maw: {
  41837. height: math.unit(1, "meters"),
  41838. name: "Maw",
  41839. image: {
  41840. source: "./media/characters/blacky/maw.svg"
  41841. }
  41842. },
  41843. paw: {
  41844. height: math.unit(1, "meters"),
  41845. name: "Paw",
  41846. image: {
  41847. source: "./media/characters/blacky/paw.svg"
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(4, "meters"),
  41855. default: true
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41861. {
  41862. front: {
  41863. height: math.unit(170, "cm"),
  41864. weight: math.unit(66, "kg"),
  41865. name: "Front",
  41866. image: {
  41867. source: "./media/characters/thux-ei/front.svg",
  41868. extra: 1109/1011,
  41869. bottom: 8/1117
  41870. }
  41871. },
  41872. },
  41873. [
  41874. {
  41875. name: "Normal",
  41876. height: math.unit(170, "cm"),
  41877. default: true
  41878. },
  41879. ]
  41880. ))
  41881. characterMakers.push(() => makeCharacter(
  41882. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41883. {
  41884. front: {
  41885. height: math.unit(5, "feet"),
  41886. weight: math.unit(120, "lb"),
  41887. name: "Front",
  41888. image: {
  41889. source: "./media/characters/roxanne-voltaire/front.svg",
  41890. extra: 1901/1779,
  41891. bottom: 53/1954
  41892. }
  41893. },
  41894. },
  41895. [
  41896. {
  41897. name: "Normal",
  41898. height: math.unit(5, "feet"),
  41899. default: true
  41900. },
  41901. {
  41902. name: "Giant",
  41903. height: math.unit(50, "feet")
  41904. },
  41905. {
  41906. name: "Titan",
  41907. height: math.unit(500, "feet")
  41908. },
  41909. {
  41910. name: "Macro",
  41911. height: math.unit(5000, "feet")
  41912. },
  41913. {
  41914. name: "Megamacro",
  41915. height: math.unit(50000, "feet")
  41916. },
  41917. {
  41918. name: "Gigamacro",
  41919. height: math.unit(500000, "feet")
  41920. },
  41921. {
  41922. name: "Teramacro",
  41923. height: math.unit(5e6, "feet")
  41924. },
  41925. ]
  41926. ))
  41927. characterMakers.push(() => makeCharacter(
  41928. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41929. {
  41930. front: {
  41931. height: math.unit(6 + 2/12, "feet"),
  41932. name: "Front",
  41933. image: {
  41934. source: "./media/characters/squeaks/front.svg",
  41935. extra: 1823/1768,
  41936. bottom: 138/1961
  41937. }
  41938. },
  41939. },
  41940. [
  41941. {
  41942. name: "Micro",
  41943. height: math.unit(0.5, "inches")
  41944. },
  41945. {
  41946. name: "Normal",
  41947. height: math.unit(6 + 2/12, "feet"),
  41948. default: true
  41949. },
  41950. {
  41951. name: "Macro",
  41952. height: math.unit(600, "feet")
  41953. },
  41954. ]
  41955. ))
  41956. characterMakers.push(() => makeCharacter(
  41957. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41958. {
  41959. front: {
  41960. height: math.unit(1.72, "meters"),
  41961. name: "Front",
  41962. image: {
  41963. source: "./media/characters/archinger/front.svg",
  41964. extra: 1861/1675,
  41965. bottom: 125/1986
  41966. }
  41967. },
  41968. back: {
  41969. height: math.unit(1.72, "meters"),
  41970. name: "Back",
  41971. image: {
  41972. source: "./media/characters/archinger/back.svg",
  41973. extra: 1844/1701,
  41974. bottom: 104/1948
  41975. }
  41976. },
  41977. cock: {
  41978. height: math.unit(0.59, "feet"),
  41979. name: "Cock",
  41980. image: {
  41981. source: "./media/characters/archinger/cock.svg"
  41982. }
  41983. },
  41984. },
  41985. [
  41986. {
  41987. name: "Normal",
  41988. height: math.unit(1.72, "meters"),
  41989. default: true
  41990. },
  41991. {
  41992. name: "Macro",
  41993. height: math.unit(84, "meters")
  41994. },
  41995. {
  41996. name: "Macro+",
  41997. height: math.unit(112, "meters")
  41998. },
  41999. {
  42000. name: "Macro++",
  42001. height: math.unit(960, "meters")
  42002. },
  42003. {
  42004. name: "Macro+++",
  42005. height: math.unit(4, "km")
  42006. },
  42007. {
  42008. name: "Macro++++",
  42009. height: math.unit(48, "km")
  42010. },
  42011. {
  42012. name: "Macro+++++",
  42013. height: math.unit(4500, "km")
  42014. },
  42015. ]
  42016. ))
  42017. characterMakers.push(() => makeCharacter(
  42018. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42019. {
  42020. front: {
  42021. height: math.unit(5 + 5/12, "feet"),
  42022. name: "Front",
  42023. image: {
  42024. source: "./media/characters/alsnapz/front.svg",
  42025. extra: 1157/1065,
  42026. bottom: 42/1199
  42027. }
  42028. },
  42029. },
  42030. [
  42031. {
  42032. name: "Normal",
  42033. height: math.unit(5 + 5/12, "feet"),
  42034. default: true
  42035. },
  42036. ]
  42037. ))
  42038. characterMakers.push(() => makeCharacter(
  42039. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42040. {
  42041. side: {
  42042. height: math.unit(3.2, "earths"),
  42043. name: "Side",
  42044. image: {
  42045. source: "./media/characters/mag/side.svg",
  42046. extra: 1331/1008,
  42047. bottom: 52/1383
  42048. }
  42049. },
  42050. wing: {
  42051. height: math.unit(1.94, "earths"),
  42052. name: "Wing",
  42053. image: {
  42054. source: "./media/characters/mag/wing.svg"
  42055. }
  42056. },
  42057. dick: {
  42058. height: math.unit(1.8, "earths"),
  42059. name: "Dick",
  42060. image: {
  42061. source: "./media/characters/mag/dick.svg"
  42062. }
  42063. },
  42064. ass: {
  42065. height: math.unit(1.33, "earths"),
  42066. name: "Ass",
  42067. image: {
  42068. source: "./media/characters/mag/ass.svg"
  42069. }
  42070. },
  42071. head: {
  42072. height: math.unit(1.1, "earths"),
  42073. name: "Head",
  42074. image: {
  42075. source: "./media/characters/mag/head.svg"
  42076. }
  42077. },
  42078. maw: {
  42079. height: math.unit(1.62, "earths"),
  42080. name: "Maw",
  42081. image: {
  42082. source: "./media/characters/mag/maw.svg"
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Small",
  42089. height: math.unit(162, "feet")
  42090. },
  42091. {
  42092. name: "Normal",
  42093. height: math.unit(3.2, "earths"),
  42094. default: true
  42095. },
  42096. ]
  42097. ))
  42098. characterMakers.push(() => makeCharacter(
  42099. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42100. {
  42101. front: {
  42102. height: math.unit(512, "feet"),
  42103. weight: math.unit(63509, "tonnes"),
  42104. name: "Front",
  42105. image: {
  42106. source: "./media/characters/vorrel-harroc/front.svg",
  42107. extra: 1075/1063,
  42108. bottom: 62/1137
  42109. }
  42110. },
  42111. },
  42112. [
  42113. {
  42114. name: "Normal",
  42115. height: math.unit(10, "feet")
  42116. },
  42117. {
  42118. name: "Macro",
  42119. height: math.unit(512, "feet"),
  42120. default: true
  42121. },
  42122. {
  42123. name: "Megamacro",
  42124. height: math.unit(256, "miles")
  42125. },
  42126. {
  42127. name: "Gigamacro",
  42128. height: math.unit(4096, "miles")
  42129. },
  42130. ]
  42131. ))
  42132. characterMakers.push(() => makeCharacter(
  42133. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42134. {
  42135. side: {
  42136. height: math.unit(50, "feet"),
  42137. name: "Side",
  42138. image: {
  42139. source: "./media/characters/froimar/side.svg",
  42140. extra: 855/638,
  42141. bottom: 99/954
  42142. }
  42143. },
  42144. },
  42145. [
  42146. {
  42147. name: "Macro",
  42148. height: math.unit(50, "feet"),
  42149. default: true
  42150. },
  42151. ]
  42152. ))
  42153. characterMakers.push(() => makeCharacter(
  42154. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42155. {
  42156. front: {
  42157. height: math.unit(210, "miles"),
  42158. name: "Front",
  42159. image: {
  42160. source: "./media/characters/timothy/front.svg",
  42161. extra: 1007/943,
  42162. bottom: 62/1069
  42163. }
  42164. },
  42165. frontSkirt: {
  42166. height: math.unit(210, "miles"),
  42167. name: "Front (Skirt)",
  42168. image: {
  42169. source: "./media/characters/timothy/front-skirt.svg",
  42170. extra: 1007/943,
  42171. bottom: 62/1069
  42172. }
  42173. },
  42174. frontCoat: {
  42175. height: math.unit(210, "miles"),
  42176. name: "Front (Coat)",
  42177. image: {
  42178. source: "./media/characters/timothy/front-coat.svg",
  42179. extra: 1007/943,
  42180. bottom: 62/1069
  42181. }
  42182. },
  42183. },
  42184. [
  42185. {
  42186. name: "Macro",
  42187. height: math.unit(210, "miles"),
  42188. default: true
  42189. },
  42190. {
  42191. name: "Megamacro",
  42192. height: math.unit(210000, "miles")
  42193. },
  42194. ]
  42195. ))
  42196. characterMakers.push(() => makeCharacter(
  42197. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42198. {
  42199. front: {
  42200. height: math.unit(188, "feet"),
  42201. name: "Front",
  42202. image: {
  42203. source: "./media/characters/pyotr/front.svg",
  42204. extra: 1912/1826,
  42205. bottom: 18/1930
  42206. }
  42207. },
  42208. },
  42209. [
  42210. {
  42211. name: "Macro",
  42212. height: math.unit(188, "feet"),
  42213. default: true
  42214. },
  42215. {
  42216. name: "Megamacro",
  42217. height: math.unit(8, "miles")
  42218. },
  42219. ]
  42220. ))
  42221. characterMakers.push(() => makeCharacter(
  42222. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42223. {
  42224. side: {
  42225. height: math.unit(10, "feet"),
  42226. weight: math.unit(4500, "lb"),
  42227. name: "Side",
  42228. image: {
  42229. source: "./media/characters/ackart/side.svg",
  42230. extra: 1776/1668,
  42231. bottom: 116/1892
  42232. }
  42233. },
  42234. },
  42235. [
  42236. {
  42237. name: "Normal",
  42238. height: math.unit(10, "feet"),
  42239. default: true
  42240. },
  42241. ]
  42242. ))
  42243. characterMakers.push(() => makeCharacter(
  42244. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42245. {
  42246. side: {
  42247. height: math.unit(21, "feet"),
  42248. name: "Side",
  42249. image: {
  42250. source: "./media/characters/nolow/side.svg",
  42251. extra: 1484/1434,
  42252. bottom: 85/1569
  42253. }
  42254. },
  42255. sideErect: {
  42256. height: math.unit(21, "feet"),
  42257. name: "Side-erect",
  42258. image: {
  42259. source: "./media/characters/nolow/side-erect.svg",
  42260. extra: 1484/1434,
  42261. bottom: 85/1569
  42262. }
  42263. },
  42264. },
  42265. [
  42266. {
  42267. name: "Regular",
  42268. height: math.unit(12, "feet")
  42269. },
  42270. {
  42271. name: "Big Chee",
  42272. height: math.unit(21, "feet"),
  42273. default: true
  42274. },
  42275. ]
  42276. ))
  42277. characterMakers.push(() => makeCharacter(
  42278. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42279. {
  42280. front: {
  42281. height: math.unit(7, "feet"),
  42282. weight: math.unit(250, "lb"),
  42283. name: "Front",
  42284. image: {
  42285. source: "./media/characters/nines/front.svg",
  42286. extra: 1741/1607,
  42287. bottom: 41/1782
  42288. }
  42289. },
  42290. side: {
  42291. height: math.unit(7, "feet"),
  42292. weight: math.unit(250, "lb"),
  42293. name: "Side",
  42294. image: {
  42295. source: "./media/characters/nines/side.svg",
  42296. extra: 1854/1735,
  42297. bottom: 93/1947
  42298. }
  42299. },
  42300. back: {
  42301. height: math.unit(7, "feet"),
  42302. weight: math.unit(250, "lb"),
  42303. name: "Back",
  42304. image: {
  42305. source: "./media/characters/nines/back.svg",
  42306. extra: 1748/1615,
  42307. bottom: 20/1768
  42308. }
  42309. },
  42310. },
  42311. [
  42312. {
  42313. name: "Megamacro",
  42314. height: math.unit(99, "km"),
  42315. default: true
  42316. },
  42317. ]
  42318. ))
  42319. characterMakers.push(() => makeCharacter(
  42320. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42321. {
  42322. front: {
  42323. height: math.unit(5 + 10/12, "feet"),
  42324. weight: math.unit(210, "lb"),
  42325. name: "Front",
  42326. image: {
  42327. source: "./media/characters/zenith/front.svg",
  42328. extra: 1531/1452,
  42329. bottom: 198/1729
  42330. }
  42331. },
  42332. back: {
  42333. height: math.unit(5 + 10/12, "feet"),
  42334. weight: math.unit(210, "lb"),
  42335. name: "Back",
  42336. image: {
  42337. source: "./media/characters/zenith/back.svg",
  42338. extra: 1571/1487,
  42339. bottom: 75/1646
  42340. }
  42341. },
  42342. },
  42343. [
  42344. {
  42345. name: "Normal",
  42346. height: math.unit(5 + 10/12, "feet"),
  42347. default: true
  42348. }
  42349. ]
  42350. ))
  42351. characterMakers.push(() => makeCharacter(
  42352. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42353. {
  42354. front: {
  42355. height: math.unit(4, "feet"),
  42356. weight: math.unit(60, "lb"),
  42357. name: "Front",
  42358. image: {
  42359. source: "./media/characters/jasper/front.svg",
  42360. extra: 1450/1379,
  42361. bottom: 19/1469
  42362. }
  42363. },
  42364. },
  42365. [
  42366. {
  42367. name: "Normal",
  42368. height: math.unit(4, "feet"),
  42369. default: true
  42370. },
  42371. ]
  42372. ))
  42373. characterMakers.push(() => makeCharacter(
  42374. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42375. {
  42376. front: {
  42377. height: math.unit(6 + 5/12, "feet"),
  42378. weight: math.unit(290, "lb"),
  42379. name: "Front",
  42380. image: {
  42381. source: "./media/characters/tiberius-thyben/front.svg",
  42382. extra: 757/739,
  42383. bottom: 39/796
  42384. }
  42385. },
  42386. },
  42387. [
  42388. {
  42389. name: "Micro",
  42390. height: math.unit(1.5, "inches")
  42391. },
  42392. {
  42393. name: "Normal",
  42394. height: math.unit(6 + 5/12, "feet"),
  42395. default: true
  42396. },
  42397. {
  42398. name: "Macro",
  42399. height: math.unit(300, "feet")
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42405. {
  42406. front: {
  42407. height: math.unit(5 + 6/12, "feet"),
  42408. weight: math.unit(60, "kg"),
  42409. name: "Front",
  42410. image: {
  42411. source: "./media/characters/sabre/front.svg",
  42412. extra: 738/671,
  42413. bottom: 27/765
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Teeny",
  42420. height: math.unit(2, "inches")
  42421. },
  42422. {
  42423. name: "Smol",
  42424. height: math.unit(8, "inches")
  42425. },
  42426. {
  42427. name: "Normal",
  42428. height: math.unit(5 + 6/12, "feet"),
  42429. default: true
  42430. },
  42431. {
  42432. name: "Mini-Macro",
  42433. height: math.unit(15, "feet")
  42434. },
  42435. {
  42436. name: "Macro",
  42437. height: math.unit(50, "feet")
  42438. },
  42439. ]
  42440. ))
  42441. characterMakers.push(() => makeCharacter(
  42442. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42443. {
  42444. front: {
  42445. height: math.unit(6 + 4/12, "feet"),
  42446. weight: math.unit(170, "lb"),
  42447. name: "Front",
  42448. image: {
  42449. source: "./media/characters/charlie/front.svg",
  42450. extra: 1348/1228,
  42451. bottom: 15/1363
  42452. }
  42453. },
  42454. },
  42455. [
  42456. {
  42457. name: "Macro",
  42458. height: math.unit(1700, "meters"),
  42459. default: true
  42460. },
  42461. {
  42462. name: "MegaMacro",
  42463. height: math.unit(20400, "meters")
  42464. },
  42465. ]
  42466. ))
  42467. characterMakers.push(() => makeCharacter(
  42468. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42469. {
  42470. front: {
  42471. height: math.unit(6 + 3/12, "feet"),
  42472. weight: math.unit(185, "lb"),
  42473. name: "Front",
  42474. image: {
  42475. source: "./media/characters/susan-grant/front.svg",
  42476. extra: 1351/1327,
  42477. bottom: 26/1377
  42478. }
  42479. },
  42480. },
  42481. [
  42482. {
  42483. name: "Normal",
  42484. height: math.unit(6 + 3/12, "feet"),
  42485. default: true
  42486. },
  42487. {
  42488. name: "Macro",
  42489. height: math.unit(225, "feet")
  42490. },
  42491. {
  42492. name: "Macro+",
  42493. height: math.unit(900, "feet")
  42494. },
  42495. {
  42496. name: "MegaMacro",
  42497. height: math.unit(14400, "feet")
  42498. },
  42499. ]
  42500. ))
  42501. characterMakers.push(() => makeCharacter(
  42502. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42503. {
  42504. front: {
  42505. height: math.unit(5 + 4/12, "feet"),
  42506. weight: math.unit(110, "lb"),
  42507. name: "Front",
  42508. image: {
  42509. source: "./media/characters/axel-isanov/front.svg",
  42510. extra: 1096/1065,
  42511. bottom: 13/1109
  42512. }
  42513. },
  42514. },
  42515. [
  42516. {
  42517. name: "Normal",
  42518. height: math.unit(5 + 4/12, "feet"),
  42519. default: true
  42520. },
  42521. ]
  42522. ))
  42523. characterMakers.push(() => makeCharacter(
  42524. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42525. {
  42526. front: {
  42527. height: math.unit(9, "feet"),
  42528. weight: math.unit(467, "lb"),
  42529. name: "Front",
  42530. image: {
  42531. source: "./media/characters/necahual/front.svg",
  42532. extra: 920/873,
  42533. bottom: 26/946
  42534. }
  42535. },
  42536. back: {
  42537. height: math.unit(9, "feet"),
  42538. weight: math.unit(467, "lb"),
  42539. name: "Back",
  42540. image: {
  42541. source: "./media/characters/necahual/back.svg",
  42542. extra: 930/884,
  42543. bottom: 16/946
  42544. }
  42545. },
  42546. frontUnderwear: {
  42547. height: math.unit(9, "feet"),
  42548. weight: math.unit(467, "lb"),
  42549. name: "Front (Underwear)",
  42550. image: {
  42551. source: "./media/characters/necahual/front-underwear.svg",
  42552. extra: 920/873,
  42553. bottom: 26/946
  42554. }
  42555. },
  42556. frontDressed: {
  42557. height: math.unit(9, "feet"),
  42558. weight: math.unit(467, "lb"),
  42559. name: "Front (Dressed)",
  42560. image: {
  42561. source: "./media/characters/necahual/front-dressed.svg",
  42562. extra: 920/873,
  42563. bottom: 26/946
  42564. }
  42565. },
  42566. },
  42567. [
  42568. {
  42569. name: "Comprsesed",
  42570. height: math.unit(9, "feet")
  42571. },
  42572. {
  42573. name: "Natural",
  42574. height: math.unit(15, "feet"),
  42575. default: true
  42576. },
  42577. {
  42578. name: "Boosted",
  42579. height: math.unit(50, "feet")
  42580. },
  42581. {
  42582. name: "Boosted+",
  42583. height: math.unit(150, "feet")
  42584. },
  42585. {
  42586. name: "Max",
  42587. height: math.unit(500, "feet")
  42588. },
  42589. ]
  42590. ))
  42591. characterMakers.push(() => makeCharacter(
  42592. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42593. {
  42594. front: {
  42595. height: math.unit(22 + 1/12, "feet"),
  42596. weight: math.unit(3200, "lb"),
  42597. name: "Front",
  42598. image: {
  42599. source: "./media/characters/theo-acacia/front.svg",
  42600. extra: 1796/1741,
  42601. bottom: 83/1879
  42602. }
  42603. },
  42604. frontUnderwear: {
  42605. height: math.unit(22 + 1/12, "feet"),
  42606. weight: math.unit(3200, "lb"),
  42607. name: "Front (Underwear)",
  42608. image: {
  42609. source: "./media/characters/theo-acacia/front-underwear.svg",
  42610. extra: 1796/1741,
  42611. bottom: 83/1879
  42612. }
  42613. },
  42614. frontNude: {
  42615. height: math.unit(22 + 1/12, "feet"),
  42616. weight: math.unit(3200, "lb"),
  42617. name: "Front (Nude)",
  42618. image: {
  42619. source: "./media/characters/theo-acacia/front-nude.svg",
  42620. extra: 1796/1741,
  42621. bottom: 83/1879
  42622. }
  42623. },
  42624. },
  42625. [
  42626. {
  42627. name: "Normal",
  42628. height: math.unit(22 + 1/12, "feet"),
  42629. default: true
  42630. },
  42631. ]
  42632. ))
  42633. characterMakers.push(() => makeCharacter(
  42634. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42635. {
  42636. front: {
  42637. height: math.unit(20, "feet"),
  42638. name: "Front",
  42639. image: {
  42640. source: "./media/characters/astra/front.svg",
  42641. extra: 1850/1714,
  42642. bottom: 106/1956
  42643. }
  42644. },
  42645. frontUndressed: {
  42646. height: math.unit(20, "feet"),
  42647. name: "Front (Undressed)",
  42648. image: {
  42649. source: "./media/characters/astra/front-undressed.svg",
  42650. extra: 1926/1749,
  42651. bottom: 0/1926
  42652. }
  42653. },
  42654. hand: {
  42655. height: math.unit(1.53, "feet"),
  42656. name: "Hand",
  42657. image: {
  42658. source: "./media/characters/astra/hand.svg"
  42659. }
  42660. },
  42661. paw: {
  42662. height: math.unit(1.53, "feet"),
  42663. name: "Paw",
  42664. image: {
  42665. source: "./media/characters/astra/paw.svg"
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Smallest",
  42672. height: math.unit(20, "feet")
  42673. },
  42674. {
  42675. name: "Normal",
  42676. height: math.unit(1e9, "miles"),
  42677. default: true
  42678. },
  42679. {
  42680. name: "Larger",
  42681. height: math.unit(5, "multiverses")
  42682. },
  42683. {
  42684. name: "Largest",
  42685. height: math.unit(1e9, "multiverses")
  42686. },
  42687. ]
  42688. ))
  42689. characterMakers.push(() => makeCharacter(
  42690. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42691. {
  42692. front: {
  42693. height: math.unit(8, "feet"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/breanna/front.svg",
  42697. extra: 1912/1632,
  42698. bottom: 33/1945
  42699. }
  42700. },
  42701. },
  42702. [
  42703. {
  42704. name: "Smallest",
  42705. height: math.unit(8, "feet")
  42706. },
  42707. {
  42708. name: "Normal",
  42709. height: math.unit(1, "mile"),
  42710. default: true
  42711. },
  42712. {
  42713. name: "Maximum",
  42714. height: math.unit(1500000000000, "lightyears")
  42715. },
  42716. ]
  42717. ))
  42718. characterMakers.push(() => makeCharacter(
  42719. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42720. {
  42721. front: {
  42722. height: math.unit(5 + 11/12, "feet"),
  42723. weight: math.unit(155, "lb"),
  42724. name: "Front",
  42725. image: {
  42726. source: "./media/characters/cai/front.svg",
  42727. extra: 1823/1702,
  42728. bottom: 32/1855
  42729. }
  42730. },
  42731. back: {
  42732. height: math.unit(5 + 11/12, "feet"),
  42733. weight: math.unit(155, "lb"),
  42734. name: "Back",
  42735. image: {
  42736. source: "./media/characters/cai/back.svg",
  42737. extra: 1809/1708,
  42738. bottom: 31/1840
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Normal",
  42745. height: math.unit(5 + 11/12, "feet"),
  42746. default: true
  42747. },
  42748. {
  42749. name: "Big",
  42750. height: math.unit(15, "feet")
  42751. },
  42752. {
  42753. name: "Macro",
  42754. height: math.unit(200, "feet")
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42760. {
  42761. front: {
  42762. height: math.unit(5 + 6/12, "feet"),
  42763. weight: math.unit(160, "lb"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42767. extra: 1227/1174,
  42768. bottom: 37/1264
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Macro",
  42775. height: math.unit(444, "meters"),
  42776. default: true
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42782. {
  42783. front: {
  42784. height: math.unit(18 + 7/12, "feet"),
  42785. name: "Front",
  42786. image: {
  42787. source: "./media/characters/rex/front.svg",
  42788. extra: 1941/1807,
  42789. bottom: 66/2007
  42790. }
  42791. },
  42792. back: {
  42793. height: math.unit(18 + 7/12, "feet"),
  42794. name: "Back",
  42795. image: {
  42796. source: "./media/characters/rex/back.svg",
  42797. extra: 1937/1822,
  42798. bottom: 42/1979
  42799. }
  42800. },
  42801. boot: {
  42802. height: math.unit(3.45, "feet"),
  42803. name: "Boot",
  42804. image: {
  42805. source: "./media/characters/rex/boot.svg"
  42806. }
  42807. },
  42808. paw: {
  42809. height: math.unit(4.17, "feet"),
  42810. name: "Paw",
  42811. image: {
  42812. source: "./media/characters/rex/paw.svg"
  42813. }
  42814. },
  42815. head: {
  42816. height: math.unit(6.728, "feet"),
  42817. name: "Head",
  42818. image: {
  42819. source: "./media/characters/rex/head.svg"
  42820. }
  42821. },
  42822. },
  42823. [
  42824. {
  42825. name: "Nano",
  42826. height: math.unit(18 + 7/12, "feet")
  42827. },
  42828. {
  42829. name: "Micro",
  42830. height: math.unit(1.5, "megameters")
  42831. },
  42832. {
  42833. name: "Normal",
  42834. height: math.unit(440, "megameters"),
  42835. default: true
  42836. },
  42837. {
  42838. name: "Macro",
  42839. height: math.unit(2.5, "gigameters")
  42840. },
  42841. {
  42842. name: "Gigamacro",
  42843. height: math.unit(2, "galaxies")
  42844. },
  42845. ]
  42846. ))
  42847. characterMakers.push(() => makeCharacter(
  42848. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42849. {
  42850. side: {
  42851. height: math.unit(32, "feet"),
  42852. weight: math.unit(250000, "lb"),
  42853. name: "Side",
  42854. image: {
  42855. source: "./media/characters/silverwing/side.svg",
  42856. extra: 1100/1019,
  42857. bottom: 204/1304
  42858. }
  42859. },
  42860. },
  42861. [
  42862. {
  42863. name: "Normal",
  42864. height: math.unit(32, "feet"),
  42865. default: true
  42866. },
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42871. {
  42872. front: {
  42873. height: math.unit(6 + 6/12, "feet"),
  42874. weight: math.unit(350, "lb"),
  42875. name: "Front",
  42876. image: {
  42877. source: "./media/characters/tristan-hawthorne/front.svg",
  42878. extra: 1159/1124,
  42879. bottom: 37/1196
  42880. },
  42881. form: "labrador",
  42882. default: true
  42883. },
  42884. skunkFront: {
  42885. height: math.unit(4 + 6/12, "feet"),
  42886. weight: math.unit(120, "lb"),
  42887. name: "Front",
  42888. image: {
  42889. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42890. extra: 1609/1551,
  42891. bottom: 169/1778
  42892. },
  42893. form: "skunk",
  42894. default: true
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Normal",
  42900. height: math.unit(6 + 6/12, "feet"),
  42901. form: "labrador",
  42902. default: true
  42903. },
  42904. {
  42905. name: "Normal",
  42906. height: math.unit(4 + 6/12, "feet"),
  42907. form: "skunk",
  42908. default: true
  42909. },
  42910. ],
  42911. {
  42912. "labrador": {
  42913. name: "Labrador",
  42914. default: true
  42915. },
  42916. "skunk": {
  42917. name: "Skunk"
  42918. }
  42919. }
  42920. ))
  42921. characterMakers.push(() => makeCharacter(
  42922. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42923. {
  42924. front: {
  42925. height: math.unit(5 + 11/12, "feet"),
  42926. weight: math.unit(190, "lb"),
  42927. name: "Front",
  42928. image: {
  42929. source: "./media/characters/mizu/front.svg",
  42930. extra: 1988/1788,
  42931. bottom: 14/2002
  42932. }
  42933. },
  42934. },
  42935. [
  42936. {
  42937. name: "Normal",
  42938. height: math.unit(5 + 11/12, "feet"),
  42939. default: true
  42940. },
  42941. ]
  42942. ))
  42943. characterMakers.push(() => makeCharacter(
  42944. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42945. {
  42946. front: {
  42947. height: math.unit(1.7, "feet"),
  42948. weight: math.unit(50, "lb"),
  42949. name: "Front",
  42950. image: {
  42951. source: "./media/characters/dechroma/front.svg",
  42952. extra: 1095/859,
  42953. bottom: 64/1159
  42954. }
  42955. },
  42956. },
  42957. [
  42958. {
  42959. name: "Normal",
  42960. height: math.unit(1.7, "feet"),
  42961. default: true
  42962. },
  42963. ]
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42967. {
  42968. side: {
  42969. height: math.unit(30, "feet"),
  42970. name: "Side",
  42971. image: {
  42972. source: "./media/characters/veluren-thanazel/side.svg",
  42973. extra: 1611/633,
  42974. bottom: 118/1729
  42975. }
  42976. },
  42977. front: {
  42978. height: math.unit(30, "feet"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/veluren-thanazel/front.svg",
  42982. extra: 1486/636,
  42983. bottom: 238/1724
  42984. }
  42985. },
  42986. head: {
  42987. height: math.unit(21.4, "feet"),
  42988. name: "Head",
  42989. image: {
  42990. source: "./media/characters/veluren-thanazel/head.svg"
  42991. }
  42992. },
  42993. genitals: {
  42994. height: math.unit(19.4, "feet"),
  42995. name: "Genitals",
  42996. image: {
  42997. source: "./media/characters/veluren-thanazel/genitals.svg"
  42998. }
  42999. },
  43000. },
  43001. [
  43002. {
  43003. name: "Social",
  43004. height: math.unit(6, "feet")
  43005. },
  43006. {
  43007. name: "Play",
  43008. height: math.unit(12, "feet")
  43009. },
  43010. {
  43011. name: "True",
  43012. height: math.unit(30, "feet"),
  43013. default: true
  43014. },
  43015. ]
  43016. ))
  43017. characterMakers.push(() => makeCharacter(
  43018. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43019. {
  43020. front: {
  43021. height: math.unit(7 + 6/12, "feet"),
  43022. weight: math.unit(500, "kg"),
  43023. name: "Front",
  43024. image: {
  43025. source: "./media/characters/arcturas/front.svg",
  43026. extra: 1700/1500,
  43027. bottom: 145/1845
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(7 + 6/12, "feet"),
  43035. default: true
  43036. },
  43037. ]
  43038. ))
  43039. characterMakers.push(() => makeCharacter(
  43040. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43041. {
  43042. side: {
  43043. height: math.unit(6, "feet"),
  43044. weight: math.unit(2, "tons"),
  43045. name: "Side",
  43046. image: {
  43047. source: "./media/characters/vitaen/side.svg",
  43048. extra: 1157/617,
  43049. bottom: 122/1279
  43050. }
  43051. },
  43052. },
  43053. [
  43054. {
  43055. name: "Normal",
  43056. height: math.unit(6, "feet"),
  43057. default: true
  43058. },
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43063. {
  43064. front: {
  43065. height: math.unit(19, "feet"),
  43066. name: "Front",
  43067. image: {
  43068. source: "./media/characters/fia-dreamweaver/front.svg",
  43069. extra: 1630/1504,
  43070. bottom: 25/1655
  43071. }
  43072. },
  43073. },
  43074. [
  43075. {
  43076. name: "Normal",
  43077. height: math.unit(19, "feet"),
  43078. default: true
  43079. },
  43080. ]
  43081. ))
  43082. characterMakers.push(() => makeCharacter(
  43083. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43084. {
  43085. front: {
  43086. height: math.unit(5 + 4/12, "feet"),
  43087. name: "Front",
  43088. image: {
  43089. source: "./media/characters/artan/front.svg",
  43090. extra: 1618/1535,
  43091. bottom: 46/1664
  43092. }
  43093. },
  43094. back: {
  43095. height: math.unit(5 + 4/12, "feet"),
  43096. name: "Back",
  43097. image: {
  43098. source: "./media/characters/artan/back.svg",
  43099. extra: 1618/1543,
  43100. bottom: 31/1649
  43101. }
  43102. },
  43103. },
  43104. [
  43105. {
  43106. name: "Normal",
  43107. height: math.unit(5 + 4/12, "feet"),
  43108. default: true
  43109. },
  43110. ]
  43111. ))
  43112. characterMakers.push(() => makeCharacter(
  43113. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43114. {
  43115. side: {
  43116. height: math.unit(182, "cm"),
  43117. weight: math.unit(1000, "lb"),
  43118. name: "Side",
  43119. image: {
  43120. source: "./media/characters/silver-dragon/side.svg",
  43121. extra: 710/287,
  43122. bottom: 88/798
  43123. }
  43124. },
  43125. },
  43126. [
  43127. {
  43128. name: "Normal",
  43129. height: math.unit(182, "cm"),
  43130. default: true
  43131. },
  43132. ]
  43133. ))
  43134. characterMakers.push(() => makeCharacter(
  43135. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43136. {
  43137. side: {
  43138. height: math.unit(6 + 6/12, "feet"),
  43139. weight: math.unit(1.5, "tons"),
  43140. name: "Side",
  43141. image: {
  43142. source: "./media/characters/zephyr/side.svg",
  43143. extra: 1433/586,
  43144. bottom: 109/1542
  43145. }
  43146. },
  43147. },
  43148. [
  43149. {
  43150. name: "Normal",
  43151. height: math.unit(6 + 6/12, "feet"),
  43152. default: true
  43153. },
  43154. ]
  43155. ))
  43156. characterMakers.push(() => makeCharacter(
  43157. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43158. {
  43159. side: {
  43160. height: math.unit(1, "feet"),
  43161. name: "Side",
  43162. image: {
  43163. source: "./media/characters/vixye/side.svg",
  43164. extra: 632/541,
  43165. bottom: 0/632
  43166. }
  43167. },
  43168. },
  43169. [
  43170. {
  43171. name: "Normal",
  43172. height: math.unit(1, "feet"),
  43173. default: true
  43174. },
  43175. {
  43176. name: "True",
  43177. height: math.unit(1e15, "multiverses")
  43178. },
  43179. ]
  43180. ))
  43181. characterMakers.push(() => makeCharacter(
  43182. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43183. {
  43184. front: {
  43185. height: math.unit(8 + 2/12, "feet"),
  43186. weight: math.unit(650, "lb"),
  43187. name: "Front",
  43188. image: {
  43189. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43190. extra: 1174/1137,
  43191. bottom: 82/1256
  43192. }
  43193. },
  43194. back: {
  43195. height: math.unit(8 + 2/12, "feet"),
  43196. weight: math.unit(650, "lb"),
  43197. name: "Back",
  43198. image: {
  43199. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43200. extra: 1204/1157,
  43201. bottom: 46/1250
  43202. }
  43203. },
  43204. },
  43205. [
  43206. {
  43207. name: "Wildform",
  43208. height: math.unit(8 + 2/12, "feet"),
  43209. default: true
  43210. },
  43211. ]
  43212. ))
  43213. characterMakers.push(() => makeCharacter(
  43214. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43215. {
  43216. front: {
  43217. height: math.unit(18, "feet"),
  43218. name: "Front",
  43219. image: {
  43220. source: "./media/characters/cyphin/front.svg",
  43221. extra: 970/886,
  43222. bottom: 42/1012
  43223. }
  43224. },
  43225. back: {
  43226. height: math.unit(18, "feet"),
  43227. name: "Back",
  43228. image: {
  43229. source: "./media/characters/cyphin/back.svg",
  43230. extra: 1009/894,
  43231. bottom: 24/1033
  43232. }
  43233. },
  43234. head: {
  43235. height: math.unit(5.05, "feet"),
  43236. name: "Head",
  43237. image: {
  43238. source: "./media/characters/cyphin/head.svg"
  43239. }
  43240. },
  43241. tailbud: {
  43242. height: math.unit(5, "feet"),
  43243. name: "Tailbud",
  43244. image: {
  43245. source: "./media/characters/cyphin/tailbud.svg"
  43246. }
  43247. },
  43248. },
  43249. [
  43250. ]
  43251. ))
  43252. characterMakers.push(() => makeCharacter(
  43253. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43254. {
  43255. side: {
  43256. height: math.unit(10, "feet"),
  43257. weight: math.unit(6, "tons"),
  43258. name: "Side",
  43259. image: {
  43260. source: "./media/characters/raijin/side.svg",
  43261. extra: 1529/613,
  43262. bottom: 337/1866
  43263. }
  43264. },
  43265. },
  43266. [
  43267. {
  43268. name: "Normal",
  43269. height: math.unit(10, "feet"),
  43270. default: true
  43271. },
  43272. ]
  43273. ))
  43274. characterMakers.push(() => makeCharacter(
  43275. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43276. {
  43277. side: {
  43278. height: math.unit(9, "feet"),
  43279. name: "Side",
  43280. image: {
  43281. source: "./media/characters/nilghais/side.svg",
  43282. extra: 1047/744,
  43283. bottom: 91/1138
  43284. }
  43285. },
  43286. head: {
  43287. height: math.unit(3.14, "feet"),
  43288. name: "Head",
  43289. image: {
  43290. source: "./media/characters/nilghais/head.svg"
  43291. }
  43292. },
  43293. mouth: {
  43294. height: math.unit(4.6, "feet"),
  43295. name: "Mouth",
  43296. image: {
  43297. source: "./media/characters/nilghais/mouth.svg"
  43298. }
  43299. },
  43300. wings: {
  43301. height: math.unit(24, "feet"),
  43302. name: "Wings",
  43303. image: {
  43304. source: "./media/characters/nilghais/wings.svg"
  43305. }
  43306. },
  43307. ass: {
  43308. height: math.unit(6.12, "feet"),
  43309. name: "Ass",
  43310. image: {
  43311. source: "./media/characters/nilghais/ass.svg"
  43312. }
  43313. },
  43314. },
  43315. [
  43316. {
  43317. name: "Normal",
  43318. height: math.unit(9, "feet"),
  43319. default: true
  43320. },
  43321. ]
  43322. ))
  43323. characterMakers.push(() => makeCharacter(
  43324. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43325. {
  43326. regular: {
  43327. height: math.unit(16 + 2/12, "feet"),
  43328. weight: math.unit(2300, "lb"),
  43329. name: "Regular",
  43330. image: {
  43331. source: "./media/characters/zolgar/regular.svg",
  43332. extra: 1246/1004,
  43333. bottom: 124/1370
  43334. }
  43335. },
  43336. boxers: {
  43337. height: math.unit(16 + 2/12, "feet"),
  43338. weight: math.unit(2300, "lb"),
  43339. name: "Boxers",
  43340. image: {
  43341. source: "./media/characters/zolgar/boxers.svg",
  43342. extra: 1246/1004,
  43343. bottom: 124/1370
  43344. }
  43345. },
  43346. armored: {
  43347. height: math.unit(16 + 2/12, "feet"),
  43348. weight: math.unit(2300, "lb"),
  43349. name: "Armored",
  43350. image: {
  43351. source: "./media/characters/zolgar/armored.svg",
  43352. extra: 1246/1004,
  43353. bottom: 124/1370
  43354. }
  43355. },
  43356. goth: {
  43357. height: math.unit(16 + 2/12, "feet"),
  43358. weight: math.unit(2300, "lb"),
  43359. name: "Goth",
  43360. image: {
  43361. source: "./media/characters/zolgar/goth.svg",
  43362. extra: 1246/1004,
  43363. bottom: 124/1370
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Shrunken Down",
  43370. height: math.unit(9 + 2/12, "feet")
  43371. },
  43372. {
  43373. name: "Normal",
  43374. height: math.unit(16 + 2/12, "feet"),
  43375. default: true
  43376. },
  43377. ]
  43378. ))
  43379. characterMakers.push(() => makeCharacter(
  43380. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43381. {
  43382. front: {
  43383. height: math.unit(6, "feet"),
  43384. weight: math.unit(168, "lb"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/luca/front.svg",
  43388. extra: 841/667,
  43389. bottom: 102/943
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Normal",
  43396. height: math.unit(6, "feet"),
  43397. default: true
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43403. {
  43404. side: {
  43405. height: math.unit(7 + 3/12, "feet"),
  43406. weight: math.unit(312, "lb"),
  43407. name: "Side",
  43408. image: {
  43409. source: "./media/characters/zezo/side.svg",
  43410. extra: 1192/1067,
  43411. bottom: 63/1255
  43412. }
  43413. },
  43414. },
  43415. [
  43416. {
  43417. name: "Normal",
  43418. height: math.unit(7 + 3/12, "feet"),
  43419. default: true
  43420. },
  43421. ]
  43422. ))
  43423. characterMakers.push(() => makeCharacter(
  43424. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43425. {
  43426. front: {
  43427. height: math.unit(5 + 5/12, "feet"),
  43428. weight: math.unit(170, "lb"),
  43429. name: "Front",
  43430. image: {
  43431. source: "./media/characters/mayso/front.svg",
  43432. extra: 1215/1108,
  43433. bottom: 16/1231
  43434. }
  43435. },
  43436. },
  43437. [
  43438. {
  43439. name: "Normal",
  43440. height: math.unit(5 + 5/12, "feet"),
  43441. default: true
  43442. },
  43443. ]
  43444. ))
  43445. characterMakers.push(() => makeCharacter(
  43446. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43447. {
  43448. front: {
  43449. height: math.unit(4 + 3/12, "feet"),
  43450. weight: math.unit(80, "lb"),
  43451. name: "Front",
  43452. image: {
  43453. source: "./media/characters/hess/front.svg",
  43454. extra: 1200/1123,
  43455. bottom: 16/1216
  43456. }
  43457. },
  43458. },
  43459. [
  43460. {
  43461. name: "Normal",
  43462. height: math.unit(4 + 3/12, "feet"),
  43463. default: true
  43464. },
  43465. ]
  43466. ))
  43467. characterMakers.push(() => makeCharacter(
  43468. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43469. {
  43470. front: {
  43471. height: math.unit(1.9, "meters"),
  43472. name: "Front",
  43473. image: {
  43474. source: "./media/characters/ashgar/front.svg",
  43475. extra: 1177/1146,
  43476. bottom: 99/1276
  43477. }
  43478. },
  43479. back: {
  43480. height: math.unit(1.9, "meters"),
  43481. name: "Back",
  43482. image: {
  43483. source: "./media/characters/ashgar/back.svg",
  43484. extra: 1201/1183,
  43485. bottom: 53/1254
  43486. }
  43487. },
  43488. feral: {
  43489. height: math.unit(1.4, "meters"),
  43490. name: "Feral",
  43491. image: {
  43492. source: "./media/characters/ashgar/feral.svg",
  43493. extra: 370/345,
  43494. bottom: 45/415
  43495. }
  43496. },
  43497. },
  43498. [
  43499. {
  43500. name: "Normal",
  43501. height: math.unit(1.9, "meters"),
  43502. default: true
  43503. },
  43504. ]
  43505. ))
  43506. characterMakers.push(() => makeCharacter(
  43507. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43508. {
  43509. regular: {
  43510. height: math.unit(6, "feet"),
  43511. weight: math.unit(220, "lb"),
  43512. name: "Regular",
  43513. image: {
  43514. source: "./media/characters/phillip/regular.svg",
  43515. extra: 1373/1277,
  43516. bottom: 75/1448
  43517. }
  43518. },
  43519. dressed: {
  43520. height: math.unit(6, "feet"),
  43521. weight: math.unit(220, "lb"),
  43522. name: "Dressed",
  43523. image: {
  43524. source: "./media/characters/phillip/dressed.svg",
  43525. extra: 1373/1277,
  43526. bottom: 75/1448
  43527. }
  43528. },
  43529. paw: {
  43530. height: math.unit(1.44, "feet"),
  43531. name: "Paw",
  43532. image: {
  43533. source: "./media/characters/phillip/paw.svg"
  43534. }
  43535. },
  43536. },
  43537. [
  43538. {
  43539. name: "Normal",
  43540. height: math.unit(6, "feet"),
  43541. default: true
  43542. },
  43543. ]
  43544. ))
  43545. characterMakers.push(() => makeCharacter(
  43546. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43547. {
  43548. side: {
  43549. height: math.unit(42, "feet"),
  43550. name: "Side",
  43551. image: {
  43552. source: "./media/characters/uvula/side.svg",
  43553. extra: 683/586,
  43554. bottom: 60/743
  43555. }
  43556. },
  43557. front: {
  43558. height: math.unit(42, "feet"),
  43559. name: "Front",
  43560. image: {
  43561. source: "./media/characters/uvula/front.svg",
  43562. extra: 705/613,
  43563. bottom: 54/759
  43564. }
  43565. },
  43566. maw: {
  43567. height: math.unit(23.5, "feet"),
  43568. name: "Maw",
  43569. image: {
  43570. source: "./media/characters/uvula/maw.svg"
  43571. }
  43572. },
  43573. },
  43574. [
  43575. {
  43576. name: "Original Size",
  43577. height: math.unit(14, "inches")
  43578. },
  43579. {
  43580. name: "Human Size",
  43581. height: math.unit(6, "feet")
  43582. },
  43583. {
  43584. name: "Big",
  43585. height: math.unit(42, "feet"),
  43586. default: true
  43587. },
  43588. {
  43589. name: "Bigger",
  43590. height: math.unit(100, "feet")
  43591. },
  43592. ]
  43593. ))
  43594. characterMakers.push(() => makeCharacter(
  43595. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43596. {
  43597. front: {
  43598. height: math.unit(5 + 11/12, "feet"),
  43599. name: "Front",
  43600. image: {
  43601. source: "./media/characters/lannah/front.svg",
  43602. extra: 1208/1113,
  43603. bottom: 97/1305
  43604. }
  43605. },
  43606. },
  43607. [
  43608. {
  43609. name: "Normal",
  43610. height: math.unit(5 + 11/12, "feet"),
  43611. default: true
  43612. },
  43613. ]
  43614. ))
  43615. characterMakers.push(() => makeCharacter(
  43616. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43617. {
  43618. front: {
  43619. height: math.unit(6 + 3/12, "feet"),
  43620. weight: math.unit(3.5, "tons"),
  43621. name: "Front",
  43622. image: {
  43623. source: "./media/characters/emberflame/front.svg",
  43624. extra: 1198/672,
  43625. bottom: 82/1280
  43626. }
  43627. },
  43628. side: {
  43629. height: math.unit(6 + 3/12, "feet"),
  43630. weight: math.unit(3.5, "tons"),
  43631. name: "Side",
  43632. image: {
  43633. source: "./media/characters/emberflame/side.svg",
  43634. extra: 938/527,
  43635. bottom: 56/994
  43636. }
  43637. },
  43638. },
  43639. [
  43640. {
  43641. name: "Normal",
  43642. height: math.unit(6 + 3/12, "feet"),
  43643. default: true
  43644. },
  43645. ]
  43646. ))
  43647. characterMakers.push(() => makeCharacter(
  43648. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43649. {
  43650. side: {
  43651. height: math.unit(17.5, "feet"),
  43652. weight: math.unit(35, "tons"),
  43653. name: "Side",
  43654. image: {
  43655. source: "./media/characters/sophie-ambrose/side.svg",
  43656. extra: 1573/1242,
  43657. bottom: 71/1644
  43658. }
  43659. },
  43660. maw: {
  43661. height: math.unit(7.4, "feet"),
  43662. name: "Maw",
  43663. image: {
  43664. source: "./media/characters/sophie-ambrose/maw.svg"
  43665. }
  43666. },
  43667. },
  43668. [
  43669. {
  43670. name: "Normal",
  43671. height: math.unit(17.5, "feet"),
  43672. default: true
  43673. },
  43674. ]
  43675. ))
  43676. characterMakers.push(() => makeCharacter(
  43677. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43678. {
  43679. front: {
  43680. height: math.unit(280, "feet"),
  43681. weight: math.unit(550, "tons"),
  43682. name: "Front",
  43683. image: {
  43684. source: "./media/characters/king-mugi/front.svg",
  43685. extra: 1102/947,
  43686. bottom: 104/1206
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "King Mugi",
  43693. height: math.unit(280, "feet"),
  43694. default: true
  43695. },
  43696. ]
  43697. ))
  43698. characterMakers.push(() => makeCharacter(
  43699. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43700. {
  43701. front: {
  43702. height: math.unit(64, "meters"),
  43703. name: "Front",
  43704. image: {
  43705. source: "./media/characters/nova-fox/front.svg",
  43706. extra: 1310/1246,
  43707. bottom: 65/1375
  43708. }
  43709. },
  43710. },
  43711. [
  43712. {
  43713. name: "Macro",
  43714. height: math.unit(64, "meters"),
  43715. default: true
  43716. },
  43717. ]
  43718. ))
  43719. characterMakers.push(() => makeCharacter(
  43720. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43721. {
  43722. front: {
  43723. height: math.unit(6 + 3/12, "feet"),
  43724. weight: math.unit(170, "lb"),
  43725. name: "Front",
  43726. image: {
  43727. source: "./media/characters/sam-bat/front.svg",
  43728. extra: 1601/1411,
  43729. bottom: 125/1726
  43730. }
  43731. },
  43732. back: {
  43733. height: math.unit(6 + 3/12, "feet"),
  43734. weight: math.unit(170, "lb"),
  43735. name: "Back",
  43736. image: {
  43737. source: "./media/characters/sam-bat/back.svg",
  43738. extra: 1577/1405,
  43739. bottom: 58/1635
  43740. }
  43741. },
  43742. },
  43743. [
  43744. {
  43745. name: "Normal",
  43746. height: math.unit(6 + 3/12, "feet"),
  43747. default: true
  43748. },
  43749. ]
  43750. ))
  43751. characterMakers.push(() => makeCharacter(
  43752. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43753. {
  43754. front: {
  43755. height: math.unit(59, "feet"),
  43756. weight: math.unit(40000, "lb"),
  43757. name: "Front",
  43758. image: {
  43759. source: "./media/characters/inari/front.svg",
  43760. extra: 1884/1350,
  43761. bottom: 95/1979
  43762. }
  43763. },
  43764. },
  43765. [
  43766. {
  43767. name: "Gigantamax",
  43768. height: math.unit(59, "feet"),
  43769. default: true
  43770. },
  43771. ]
  43772. ))
  43773. characterMakers.push(() => makeCharacter(
  43774. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43775. {
  43776. front: {
  43777. height: math.unit(5 + 8/12, "feet"),
  43778. name: "Front",
  43779. image: {
  43780. source: "./media/characters/elizabeth/front.svg",
  43781. extra: 1395/1298,
  43782. bottom: 54/1449
  43783. }
  43784. },
  43785. mouth: {
  43786. height: math.unit(1.97, "feet"),
  43787. name: "Mouth",
  43788. image: {
  43789. source: "./media/characters/elizabeth/mouth.svg"
  43790. }
  43791. },
  43792. foot: {
  43793. height: math.unit(1.17, "feet"),
  43794. name: "Foot",
  43795. image: {
  43796. source: "./media/characters/elizabeth/foot.svg"
  43797. }
  43798. },
  43799. },
  43800. [
  43801. {
  43802. name: "Normal",
  43803. height: math.unit(5 + 8/12, "feet"),
  43804. default: true
  43805. },
  43806. {
  43807. name: "Minimacro",
  43808. height: math.unit(18, "feet")
  43809. },
  43810. {
  43811. name: "Macro",
  43812. height: math.unit(180, "feet")
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43818. {
  43819. front: {
  43820. height: math.unit(5 + 2/12, "feet"),
  43821. name: "Front",
  43822. image: {
  43823. source: "./media/characters/october-gossamer/front.svg",
  43824. extra: 505/454,
  43825. bottom: 7/512
  43826. }
  43827. },
  43828. back: {
  43829. height: math.unit(5 + 2/12, "feet"),
  43830. name: "Back",
  43831. image: {
  43832. source: "./media/characters/october-gossamer/back.svg",
  43833. extra: 501/454,
  43834. bottom: 11/512
  43835. }
  43836. },
  43837. },
  43838. [
  43839. {
  43840. name: "Normal",
  43841. height: math.unit(5 + 2/12, "feet"),
  43842. default: true
  43843. },
  43844. ]
  43845. ))
  43846. characterMakers.push(() => makeCharacter(
  43847. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43848. {
  43849. front: {
  43850. height: math.unit(5, "feet"),
  43851. name: "Front",
  43852. image: {
  43853. source: "./media/characters/epiglottis/front.svg",
  43854. extra: 923/849,
  43855. bottom: 17/940
  43856. }
  43857. },
  43858. },
  43859. [
  43860. {
  43861. name: "Original Size",
  43862. height: math.unit(10, "inches")
  43863. },
  43864. {
  43865. name: "Human Size",
  43866. height: math.unit(5, "feet"),
  43867. default: true
  43868. },
  43869. {
  43870. name: "Big",
  43871. height: math.unit(25, "feet")
  43872. },
  43873. {
  43874. name: "Bigger",
  43875. height: math.unit(50, "feet")
  43876. },
  43877. {
  43878. name: "oh lawd",
  43879. height: math.unit(75, "feet")
  43880. },
  43881. ]
  43882. ))
  43883. characterMakers.push(() => makeCharacter(
  43884. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43885. {
  43886. front: {
  43887. height: math.unit(2 + 4/12, "feet"),
  43888. weight: math.unit(60, "lb"),
  43889. name: "Front",
  43890. image: {
  43891. source: "./media/characters/lerm/front.svg",
  43892. extra: 796/790,
  43893. bottom: 79/875
  43894. }
  43895. },
  43896. },
  43897. [
  43898. {
  43899. name: "Normal",
  43900. height: math.unit(2 + 4/12, "feet"),
  43901. default: true
  43902. },
  43903. ]
  43904. ))
  43905. characterMakers.push(() => makeCharacter(
  43906. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43907. {
  43908. front: {
  43909. height: math.unit(5.5, "feet"),
  43910. weight: math.unit(130, "lb"),
  43911. name: "Front",
  43912. image: {
  43913. source: "./media/characters/xena-nebadon/front.svg",
  43914. extra: 1828/1730,
  43915. bottom: 79/1907
  43916. }
  43917. },
  43918. },
  43919. [
  43920. {
  43921. name: "Tiny Puppy",
  43922. height: math.unit(3, "inches")
  43923. },
  43924. {
  43925. name: "Normal",
  43926. height: math.unit(5.5, "feet"),
  43927. default: true
  43928. },
  43929. {
  43930. name: "Lotta Lady",
  43931. height: math.unit(12, "feet")
  43932. },
  43933. {
  43934. name: "Pretty Big",
  43935. height: math.unit(100, "feet")
  43936. },
  43937. {
  43938. name: "Big",
  43939. height: math.unit(500, "feet")
  43940. },
  43941. {
  43942. name: "Skyscraper Toys",
  43943. height: math.unit(2500, "feet")
  43944. },
  43945. {
  43946. name: "Plane Catcher",
  43947. height: math.unit(8, "miles")
  43948. },
  43949. {
  43950. name: "Planet Toys",
  43951. height: math.unit(15, "earths")
  43952. },
  43953. {
  43954. name: "Stardust",
  43955. height: math.unit(0.25, "galaxies")
  43956. },
  43957. {
  43958. name: "Snacks",
  43959. height: math.unit(70, "universes")
  43960. },
  43961. ]
  43962. ))
  43963. characterMakers.push(() => makeCharacter(
  43964. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43965. {
  43966. front: {
  43967. height: math.unit(1.6, "meters"),
  43968. weight: math.unit(60, "kg"),
  43969. name: "Front",
  43970. image: {
  43971. source: "./media/characters/bounty/front.svg",
  43972. extra: 1426/1308,
  43973. bottom: 15/1441
  43974. }
  43975. },
  43976. back: {
  43977. height: math.unit(1.6, "meters"),
  43978. weight: math.unit(60, "kg"),
  43979. name: "Back",
  43980. image: {
  43981. source: "./media/characters/bounty/back.svg",
  43982. extra: 1417/1307,
  43983. bottom: 8/1425
  43984. }
  43985. },
  43986. },
  43987. [
  43988. {
  43989. name: "Normal",
  43990. height: math.unit(1.6, "meters"),
  43991. default: true
  43992. },
  43993. {
  43994. name: "Macro",
  43995. height: math.unit(300, "meters")
  43996. },
  43997. ]
  43998. ))
  43999. characterMakers.push(() => makeCharacter(
  44000. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44001. {
  44002. front: {
  44003. height: math.unit(2 + 8/12, "feet"),
  44004. weight: math.unit(15, "lb"),
  44005. name: "Front",
  44006. image: {
  44007. source: "./media/characters/mochi/front.svg",
  44008. extra: 1022/852,
  44009. bottom: 435/1457
  44010. }
  44011. },
  44012. back: {
  44013. height: math.unit(2 + 8/12, "feet"),
  44014. weight: math.unit(15, "lb"),
  44015. name: "Back",
  44016. image: {
  44017. source: "./media/characters/mochi/back.svg",
  44018. extra: 1335/1119,
  44019. bottom: 39/1374
  44020. }
  44021. },
  44022. bird: {
  44023. height: math.unit(2 + 8/12, "feet"),
  44024. weight: math.unit(15, "lb"),
  44025. name: "Bird",
  44026. image: {
  44027. source: "./media/characters/mochi/bird.svg",
  44028. extra: 1251/1113,
  44029. bottom: 178/1429
  44030. }
  44031. },
  44032. kaiju: {
  44033. height: math.unit(154, "feet"),
  44034. weight: math.unit(1e7, "lb"),
  44035. name: "Kaiju",
  44036. image: {
  44037. source: "./media/characters/mochi/kaiju.svg",
  44038. extra: 460/324,
  44039. bottom: 40/500
  44040. }
  44041. },
  44042. head: {
  44043. height: math.unit(1.21, "feet"),
  44044. name: "Head",
  44045. image: {
  44046. source: "./media/characters/mochi/head.svg"
  44047. }
  44048. },
  44049. alternateTail: {
  44050. height: math.unit(2 + 8/12, "feet"),
  44051. weight: math.unit(45, "lb"),
  44052. name: "Alternate Tail",
  44053. image: {
  44054. source: "./media/characters/mochi/alternate-tail.svg",
  44055. extra: 139/76,
  44056. bottom: 45/184
  44057. }
  44058. },
  44059. },
  44060. [
  44061. {
  44062. name: "Micro",
  44063. height: math.unit(2, "inches")
  44064. },
  44065. {
  44066. name: "Normal",
  44067. height: math.unit(2 + 8/12, "feet"),
  44068. default: true
  44069. },
  44070. {
  44071. name: "Macro",
  44072. height: math.unit(106, "feet")
  44073. },
  44074. ]
  44075. ))
  44076. characterMakers.push(() => makeCharacter(
  44077. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44078. {
  44079. front: {
  44080. height: math.unit(5.67, "feet"),
  44081. weight: math.unit(135, "lb"),
  44082. name: "Front",
  44083. image: {
  44084. source: "./media/characters/sarel/front.svg",
  44085. extra: 865/788,
  44086. bottom: 97/962
  44087. }
  44088. },
  44089. back: {
  44090. height: math.unit(5.67, "feet"),
  44091. weight: math.unit(135, "lb"),
  44092. name: "Back",
  44093. image: {
  44094. source: "./media/characters/sarel/back.svg",
  44095. extra: 857/777,
  44096. bottom: 32/889
  44097. }
  44098. },
  44099. chozoan: {
  44100. height: math.unit(5.67, "feet"),
  44101. weight: math.unit(135, "lb"),
  44102. name: "Chozoan",
  44103. image: {
  44104. source: "./media/characters/sarel/chozoan.svg",
  44105. extra: 865/788,
  44106. bottom: 97/962
  44107. }
  44108. },
  44109. current: {
  44110. height: math.unit(5.67, "feet"),
  44111. weight: math.unit(135, "lb"),
  44112. name: "Current",
  44113. image: {
  44114. source: "./media/characters/sarel/current.svg",
  44115. extra: 865/788,
  44116. bottom: 97/962
  44117. }
  44118. },
  44119. head: {
  44120. height: math.unit(1.77, "feet"),
  44121. name: "Head",
  44122. image: {
  44123. source: "./media/characters/sarel/head.svg"
  44124. }
  44125. },
  44126. claws: {
  44127. height: math.unit(1.8, "feet"),
  44128. name: "Claws",
  44129. image: {
  44130. source: "./media/characters/sarel/claws.svg"
  44131. }
  44132. },
  44133. clawsAlt: {
  44134. height: math.unit(1.8, "feet"),
  44135. name: "Claws-alt",
  44136. image: {
  44137. source: "./media/characters/sarel/claws-alt.svg"
  44138. }
  44139. },
  44140. },
  44141. [
  44142. {
  44143. name: "Normal",
  44144. height: math.unit(5.67, "feet"),
  44145. default: true
  44146. },
  44147. ]
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44151. {
  44152. front: {
  44153. height: math.unit(5500, "feet"),
  44154. name: "Front",
  44155. image: {
  44156. source: "./media/characters/alyonia/front.svg",
  44157. extra: 1200/1135,
  44158. bottom: 29/1229
  44159. }
  44160. },
  44161. back: {
  44162. height: math.unit(5500, "feet"),
  44163. name: "Back",
  44164. image: {
  44165. source: "./media/characters/alyonia/back.svg",
  44166. extra: 1205/1138,
  44167. bottom: 10/1215
  44168. }
  44169. },
  44170. },
  44171. [
  44172. {
  44173. name: "Small",
  44174. height: math.unit(10, "feet")
  44175. },
  44176. {
  44177. name: "Macro",
  44178. height: math.unit(500, "feet")
  44179. },
  44180. {
  44181. name: "Mega Macro",
  44182. height: math.unit(5500, "feet"),
  44183. default: true
  44184. },
  44185. {
  44186. name: "Mega Macro+",
  44187. height: math.unit(500000, "feet")
  44188. },
  44189. {
  44190. name: "Giga Macro",
  44191. height: math.unit(3000, "miles")
  44192. },
  44193. {
  44194. name: "Tera Macro",
  44195. height: math.unit(2.8e6, "miles")
  44196. },
  44197. {
  44198. name: "Galactic",
  44199. height: math.unit(120000, "lightyears")
  44200. },
  44201. ]
  44202. ))
  44203. characterMakers.push(() => makeCharacter(
  44204. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44205. {
  44206. werewolf: {
  44207. height: math.unit(8, "feet"),
  44208. weight: math.unit(425, "lb"),
  44209. name: "Werewolf",
  44210. image: {
  44211. source: "./media/characters/autumn/werewolf.svg",
  44212. extra: 2154/2031,
  44213. bottom: 160/2314
  44214. }
  44215. },
  44216. human: {
  44217. height: math.unit(5 + 8/12, "feet"),
  44218. weight: math.unit(150, "lb"),
  44219. name: "Human",
  44220. image: {
  44221. source: "./media/characters/autumn/human.svg",
  44222. extra: 1200/1149,
  44223. bottom: 30/1230
  44224. }
  44225. },
  44226. },
  44227. [
  44228. {
  44229. name: "Normal",
  44230. height: math.unit(8, "feet"),
  44231. default: true
  44232. },
  44233. ]
  44234. ))
  44235. characterMakers.push(() => makeCharacter(
  44236. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44237. {
  44238. front: {
  44239. height: math.unit(8 + 5/12, "feet"),
  44240. weight: math.unit(825, "lb"),
  44241. name: "Front",
  44242. image: {
  44243. source: "./media/characters/cobalt-charizard/front.svg",
  44244. extra: 1268/1155,
  44245. bottom: 122/1390
  44246. }
  44247. },
  44248. side: {
  44249. height: math.unit(8 + 5/12, "feet"),
  44250. weight: math.unit(825, "lb"),
  44251. name: "Side",
  44252. image: {
  44253. source: "./media/characters/cobalt-charizard/side.svg",
  44254. extra: 1348/1257,
  44255. bottom: 58/1406
  44256. }
  44257. },
  44258. gMax: {
  44259. height: math.unit(134 + 11/12, "feet"),
  44260. name: "G-Max",
  44261. image: {
  44262. source: "./media/characters/cobalt-charizard/g-max.svg",
  44263. extra: 1835/1541,
  44264. bottom: 151/1986
  44265. }
  44266. },
  44267. },
  44268. [
  44269. {
  44270. name: "Normal",
  44271. height: math.unit(8 + 5/12, "feet"),
  44272. default: true
  44273. },
  44274. ]
  44275. ))
  44276. characterMakers.push(() => makeCharacter(
  44277. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44278. {
  44279. front: {
  44280. height: math.unit(6 + 3/12, "feet"),
  44281. weight: math.unit(210, "lb"),
  44282. name: "Front",
  44283. image: {
  44284. source: "./media/characters/stella/front.svg",
  44285. extra: 3549/3335,
  44286. bottom: 51/3600
  44287. }
  44288. },
  44289. },
  44290. [
  44291. {
  44292. name: "Normal",
  44293. height: math.unit(6 + 3/12, "feet"),
  44294. default: true
  44295. },
  44296. ]
  44297. ))
  44298. characterMakers.push(() => makeCharacter(
  44299. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44300. {
  44301. front: {
  44302. height: math.unit(5, "feet"),
  44303. weight: math.unit(90, "lb"),
  44304. name: "Front",
  44305. image: {
  44306. source: "./media/characters/riley-bishop/front.svg",
  44307. extra: 1450/1428,
  44308. bottom: 152/1602
  44309. }
  44310. },
  44311. },
  44312. [
  44313. {
  44314. name: "Normal",
  44315. height: math.unit(5, "feet"),
  44316. default: true
  44317. },
  44318. ]
  44319. ))
  44320. characterMakers.push(() => makeCharacter(
  44321. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44322. {
  44323. side: {
  44324. height: math.unit(8 + 2/12, "feet"),
  44325. weight: math.unit(500, "kg"),
  44326. name: "Side",
  44327. image: {
  44328. source: "./media/characters/theo-arcanine/side.svg",
  44329. extra: 1342/1074,
  44330. bottom: 111/1453
  44331. }
  44332. },
  44333. },
  44334. [
  44335. {
  44336. name: "Normal",
  44337. height: math.unit(8 + 2/12, "feet"),
  44338. default: true
  44339. },
  44340. ]
  44341. ))
  44342. characterMakers.push(() => makeCharacter(
  44343. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44344. {
  44345. front: {
  44346. height: math.unit(4, "feet"),
  44347. name: "Front",
  44348. image: {
  44349. source: "./media/characters/kali/front.svg",
  44350. extra: 1921/1357,
  44351. bottom: 70/1991
  44352. }
  44353. },
  44354. },
  44355. [
  44356. {
  44357. name: "Normal",
  44358. height: math.unit(4, "feet"),
  44359. default: true
  44360. },
  44361. {
  44362. name: "Macro",
  44363. height: math.unit(32, "meters")
  44364. },
  44365. {
  44366. name: "Macro+",
  44367. height: math.unit(150, "meters")
  44368. },
  44369. {
  44370. name: "Megamacro",
  44371. height: math.unit(7500, "meters")
  44372. },
  44373. {
  44374. name: "Megamacro+",
  44375. height: math.unit(80, "kilometers")
  44376. },
  44377. ]
  44378. ))
  44379. characterMakers.push(() => makeCharacter(
  44380. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44381. {
  44382. side: {
  44383. height: math.unit(5 + 11/12, "feet"),
  44384. weight: math.unit(236, "lb"),
  44385. name: "Side",
  44386. image: {
  44387. source: "./media/characters/gapp/side.svg",
  44388. extra: 775/340,
  44389. bottom: 58/833
  44390. }
  44391. },
  44392. mouth: {
  44393. height: math.unit(2.98, "feet"),
  44394. name: "Mouth",
  44395. image: {
  44396. source: "./media/characters/gapp/mouth.svg"
  44397. }
  44398. },
  44399. },
  44400. [
  44401. {
  44402. name: "Normal",
  44403. height: math.unit(5 + 1/12, "feet"),
  44404. default: true
  44405. },
  44406. ]
  44407. ))
  44408. characterMakers.push(() => makeCharacter(
  44409. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44410. {
  44411. front: {
  44412. height: math.unit(6, "feet"),
  44413. name: "Front",
  44414. image: {
  44415. source: "./media/characters/persephone/front.svg",
  44416. extra: 1895/1717,
  44417. bottom: 96/1991
  44418. }
  44419. },
  44420. back: {
  44421. height: math.unit(6, "feet"),
  44422. name: "Back",
  44423. image: {
  44424. source: "./media/characters/persephone/back.svg",
  44425. extra: 1868/1679,
  44426. bottom: 26/1894
  44427. }
  44428. },
  44429. casual: {
  44430. height: math.unit(6, "feet"),
  44431. name: "Casual",
  44432. image: {
  44433. source: "./media/characters/persephone/casual.svg",
  44434. extra: 1713/1541,
  44435. bottom: 76/1789
  44436. }
  44437. },
  44438. },
  44439. [
  44440. {
  44441. name: "Human Size",
  44442. height: math.unit(6, "feet")
  44443. },
  44444. {
  44445. name: "Big Steppy",
  44446. height: math.unit(600, "meters"),
  44447. default: true
  44448. },
  44449. {
  44450. name: "Galaxy Brain",
  44451. height: math.unit(1, "zettameter")
  44452. },
  44453. ]
  44454. ))
  44455. characterMakers.push(() => makeCharacter(
  44456. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44457. {
  44458. front: {
  44459. height: math.unit(1.85, "meters"),
  44460. name: "Front",
  44461. image: {
  44462. source: "./media/characters/riley-foxthing/front.svg",
  44463. extra: 1495/1354,
  44464. bottom: 122/1617
  44465. }
  44466. },
  44467. frontAlt: {
  44468. height: math.unit(1.85, "meters"),
  44469. name: "Front (Alt)",
  44470. image: {
  44471. source: "./media/characters/riley-foxthing/front-alt.svg",
  44472. extra: 1572/1389,
  44473. bottom: 116/1688
  44474. }
  44475. },
  44476. },
  44477. [
  44478. {
  44479. name: "Normal Sized",
  44480. height: math.unit(1.85, "meters"),
  44481. default: true
  44482. },
  44483. {
  44484. name: "Quite Sizable",
  44485. height: math.unit(5, "meters")
  44486. },
  44487. {
  44488. name: "Rather Large",
  44489. height: math.unit(20, "meters")
  44490. },
  44491. {
  44492. name: "Macro",
  44493. height: math.unit(450, "meters")
  44494. },
  44495. {
  44496. name: "Giga",
  44497. height: math.unit(5, "km")
  44498. },
  44499. ]
  44500. ))
  44501. characterMakers.push(() => makeCharacter(
  44502. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44503. {
  44504. front: {
  44505. height: math.unit(6, "feet"),
  44506. weight: math.unit(200, "lb"),
  44507. name: "Front",
  44508. image: {
  44509. source: "./media/characters/blizzard/front.svg",
  44510. extra: 1136/990,
  44511. bottom: 136/1272
  44512. }
  44513. },
  44514. back: {
  44515. height: math.unit(6, "feet"),
  44516. weight: math.unit(200, "lb"),
  44517. name: "Back",
  44518. image: {
  44519. source: "./media/characters/blizzard/back.svg",
  44520. extra: 1175/1034,
  44521. bottom: 97/1272
  44522. }
  44523. },
  44524. sitting: {
  44525. height: math.unit(3.725, "feet"),
  44526. weight: math.unit(200, "lb"),
  44527. name: "Sitting",
  44528. image: {
  44529. source: "./media/characters/blizzard/sitting.svg",
  44530. extra: 581/485,
  44531. bottom: 90/671
  44532. }
  44533. },
  44534. frontWizard: {
  44535. height: math.unit(7.9, "feet"),
  44536. weight: math.unit(200, "lb"),
  44537. name: "Front (Wizard)",
  44538. image: {
  44539. source: "./media/characters/blizzard/front-wizard.svg"
  44540. }
  44541. },
  44542. backWizard: {
  44543. height: math.unit(7.9, "feet"),
  44544. weight: math.unit(200, "lb"),
  44545. name: "Back (Wizard)",
  44546. image: {
  44547. source: "./media/characters/blizzard/back-wizard.svg"
  44548. }
  44549. },
  44550. frontNsfw: {
  44551. height: math.unit(6, "feet"),
  44552. weight: math.unit(200, "lb"),
  44553. name: "Front (NSFW)",
  44554. image: {
  44555. source: "./media/characters/blizzard/front-nsfw.svg",
  44556. extra: 1136/990,
  44557. bottom: 136/1272
  44558. }
  44559. },
  44560. backNsfw: {
  44561. height: math.unit(6, "feet"),
  44562. weight: math.unit(200, "lb"),
  44563. name: "Back (NSFW)",
  44564. image: {
  44565. source: "./media/characters/blizzard/back-nsfw.svg",
  44566. extra: 1175/1034,
  44567. bottom: 97/1272
  44568. }
  44569. },
  44570. sittingNsfw: {
  44571. height: math.unit(3.725, "feet"),
  44572. weight: math.unit(200, "lb"),
  44573. name: "Sitting (NSFW)",
  44574. image: {
  44575. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44576. extra: 581/485,
  44577. bottom: 90/671
  44578. }
  44579. },
  44580. wizardFrontNsfw: {
  44581. height: math.unit(7.9, "feet"),
  44582. weight: math.unit(200, "lb"),
  44583. name: "Wizard (Front, NSFW)",
  44584. image: {
  44585. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44586. }
  44587. },
  44588. },
  44589. [
  44590. {
  44591. name: "Normal",
  44592. height: math.unit(6, "feet"),
  44593. default: true
  44594. },
  44595. ]
  44596. ))
  44597. characterMakers.push(() => makeCharacter(
  44598. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44599. {
  44600. front: {
  44601. height: math.unit(5 + 2/12, "feet"),
  44602. name: "Front",
  44603. image: {
  44604. source: "./media/characters/lumi/front.svg",
  44605. extra: 1328/1268,
  44606. bottom: 103/1431
  44607. }
  44608. },
  44609. back: {
  44610. height: math.unit(5 + 2/12, "feet"),
  44611. name: "Back",
  44612. image: {
  44613. source: "./media/characters/lumi/back.svg",
  44614. extra: 1381/1327,
  44615. bottom: 43/1424
  44616. }
  44617. },
  44618. },
  44619. [
  44620. {
  44621. name: "Normal",
  44622. height: math.unit(5 + 2/12, "feet"),
  44623. default: true
  44624. },
  44625. ]
  44626. ))
  44627. characterMakers.push(() => makeCharacter(
  44628. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44629. {
  44630. front: {
  44631. height: math.unit(5 + 9/12, "feet"),
  44632. name: "Front",
  44633. image: {
  44634. source: "./media/characters/aliya-cotton/front.svg",
  44635. extra: 577/564,
  44636. bottom: 29/606
  44637. }
  44638. },
  44639. },
  44640. [
  44641. {
  44642. name: "Normal",
  44643. height: math.unit(5 + 9/12, "feet"),
  44644. default: true
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(2.7, "meters"),
  44653. weight: math.unit(25000, "lb"),
  44654. name: "Front",
  44655. image: {
  44656. source: "./media/characters/noah-luxray/front.svg",
  44657. extra: 1644/825,
  44658. bottom: 339/1983
  44659. }
  44660. },
  44661. side: {
  44662. height: math.unit(2.97, "meters"),
  44663. weight: math.unit(25000, "lb"),
  44664. name: "Side",
  44665. image: {
  44666. source: "./media/characters/noah-luxray/side.svg",
  44667. extra: 1319/650,
  44668. bottom: 163/1482
  44669. }
  44670. },
  44671. dick: {
  44672. height: math.unit(7.4, "feet"),
  44673. weight: math.unit(2500, "lb"),
  44674. name: "Dick",
  44675. image: {
  44676. source: "./media/characters/noah-luxray/dick.svg"
  44677. }
  44678. },
  44679. dickAlt: {
  44680. height: math.unit(10.83, "feet"),
  44681. weight: math.unit(2500, "lb"),
  44682. name: "Dick-alt",
  44683. image: {
  44684. source: "./media/characters/noah-luxray/dick-alt.svg"
  44685. }
  44686. },
  44687. },
  44688. [
  44689. {
  44690. name: "BIG",
  44691. height: math.unit(2.7, "meters"),
  44692. default: true
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44698. {
  44699. standing: {
  44700. height: math.unit(183, "cm"),
  44701. weight: math.unit(68, "kg"),
  44702. name: "Standing",
  44703. image: {
  44704. source: "./media/characters/arion/standing.svg",
  44705. extra: 1869/1807,
  44706. bottom: 93/1962
  44707. }
  44708. },
  44709. reclining: {
  44710. height: math.unit(70.5, "cm"),
  44711. weight: math.unit(68, "lb"),
  44712. name: "Reclining",
  44713. image: {
  44714. source: "./media/characters/arion/reclining.svg",
  44715. extra: 937/870,
  44716. bottom: 63/1000
  44717. }
  44718. },
  44719. },
  44720. [
  44721. {
  44722. name: "Colossus Size, Low",
  44723. height: math.unit(33, "meters"),
  44724. default: true
  44725. },
  44726. {
  44727. name: "Colossus Size, Mid",
  44728. height: math.unit(52, "meters")
  44729. },
  44730. {
  44731. name: "Colossus Size, High",
  44732. height: math.unit(60, "meters")
  44733. },
  44734. {
  44735. name: "Titan Size, Low",
  44736. height: math.unit(91, "meters"),
  44737. },
  44738. {
  44739. name: "Titan Size, Mid",
  44740. height: math.unit(122, "meters")
  44741. },
  44742. {
  44743. name: "Titan Size, High",
  44744. height: math.unit(162, "meters")
  44745. },
  44746. ]
  44747. ))
  44748. characterMakers.push(() => makeCharacter(
  44749. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44750. {
  44751. front: {
  44752. height: math.unit(53, "meters"),
  44753. name: "Front",
  44754. image: {
  44755. source: "./media/characters/stellar-marbey/front.svg",
  44756. extra: 1913/1805,
  44757. bottom: 92/2005
  44758. }
  44759. },
  44760. back: {
  44761. height: math.unit(53, "meters"),
  44762. name: "Back",
  44763. image: {
  44764. source: "./media/characters/stellar-marbey/back.svg",
  44765. extra: 1960/1851,
  44766. bottom: 28/1988
  44767. }
  44768. },
  44769. mouth: {
  44770. height: math.unit(3.5, "meters"),
  44771. name: "Mouth",
  44772. image: {
  44773. source: "./media/characters/stellar-marbey/mouth.svg"
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Macro",
  44780. height: math.unit(53, "meters"),
  44781. default: true
  44782. },
  44783. ]
  44784. ))
  44785. characterMakers.push(() => makeCharacter(
  44786. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44787. {
  44788. front: {
  44789. height: math.unit(8 + 1/12, "feet"),
  44790. weight: math.unit(233, "lb"),
  44791. name: "Front",
  44792. image: {
  44793. source: "./media/characters/matsu/front.svg",
  44794. extra: 832/772,
  44795. bottom: 40/872
  44796. }
  44797. },
  44798. back: {
  44799. height: math.unit(8 + 1/12, "feet"),
  44800. weight: math.unit(233, "lb"),
  44801. name: "Back",
  44802. image: {
  44803. source: "./media/characters/matsu/back.svg",
  44804. extra: 839/780,
  44805. bottom: 47/886
  44806. }
  44807. },
  44808. },
  44809. [
  44810. {
  44811. name: "Normal",
  44812. height: math.unit(8 + 1/12, "feet"),
  44813. default: true
  44814. },
  44815. ]
  44816. ))
  44817. characterMakers.push(() => makeCharacter(
  44818. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44819. {
  44820. front: {
  44821. height: math.unit(4, "feet"),
  44822. weight: math.unit(148, "lb"),
  44823. name: "Front",
  44824. image: {
  44825. source: "./media/characters/thiz/front.svg",
  44826. extra: 1913/1748,
  44827. bottom: 62/1975
  44828. }
  44829. },
  44830. },
  44831. [
  44832. {
  44833. name: "Normal",
  44834. height: math.unit(4, "feet"),
  44835. default: true
  44836. },
  44837. ]
  44838. ))
  44839. characterMakers.push(() => makeCharacter(
  44840. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44841. {
  44842. front: {
  44843. height: math.unit(7 + 6/12, "feet"),
  44844. weight: math.unit(267, "lb"),
  44845. name: "Front",
  44846. image: {
  44847. source: "./media/characters/marcel/front.svg",
  44848. extra: 1221/1096,
  44849. bottom: 76/1297
  44850. }
  44851. },
  44852. },
  44853. [
  44854. {
  44855. name: "Normal",
  44856. height: math.unit(7 + 6/12, "feet"),
  44857. default: true
  44858. },
  44859. ]
  44860. ))
  44861. characterMakers.push(() => makeCharacter(
  44862. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44863. {
  44864. side: {
  44865. height: math.unit(42, "meters"),
  44866. name: "Side",
  44867. image: {
  44868. source: "./media/characters/flake/side.svg",
  44869. extra: 1525/1306,
  44870. bottom: 209/1734
  44871. }
  44872. },
  44873. },
  44874. [
  44875. {
  44876. name: "Normal",
  44877. height: math.unit(42, "meters"),
  44878. default: true
  44879. },
  44880. ]
  44881. ))
  44882. characterMakers.push(() => makeCharacter(
  44883. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44884. {
  44885. dressed: {
  44886. height: math.unit(6 + 4/12, "feet"),
  44887. weight: math.unit(520, "lb"),
  44888. name: "Dressed",
  44889. image: {
  44890. source: "./media/characters/someonne/dressed.svg",
  44891. extra: 1020/1010,
  44892. bottom: 178/1198
  44893. }
  44894. },
  44895. undressed: {
  44896. height: math.unit(6 + 4/12, "feet"),
  44897. weight: math.unit(520, "lb"),
  44898. name: "Undressed",
  44899. image: {
  44900. source: "./media/characters/someonne/undressed.svg",
  44901. extra: 1019/1014,
  44902. bottom: 169/1188
  44903. }
  44904. },
  44905. },
  44906. [
  44907. {
  44908. name: "Normal",
  44909. height: math.unit(6 + 4/12, "feet"),
  44910. default: true
  44911. },
  44912. ]
  44913. ))
  44914. characterMakers.push(() => makeCharacter(
  44915. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44916. {
  44917. front: {
  44918. height: math.unit(3, "feet"),
  44919. weight: math.unit(30, "lb"),
  44920. name: "Front",
  44921. image: {
  44922. source: "./media/characters/till/front.svg",
  44923. extra: 892/823,
  44924. bottom: 55/947
  44925. }
  44926. },
  44927. },
  44928. [
  44929. {
  44930. name: "Normal",
  44931. height: math.unit(3, "feet"),
  44932. default: true
  44933. },
  44934. ]
  44935. ))
  44936. characterMakers.push(() => makeCharacter(
  44937. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44938. {
  44939. front: {
  44940. height: math.unit(9 + 8/12, "feet"),
  44941. weight: math.unit(800, "lb"),
  44942. name: "Front",
  44943. image: {
  44944. source: "./media/characters/sydney-heki/front.svg",
  44945. extra: 1360/1300,
  44946. bottom: 22/1382
  44947. }
  44948. },
  44949. back: {
  44950. height: math.unit(9 + 8/12, "feet"),
  44951. weight: math.unit(800, "lb"),
  44952. name: "Back",
  44953. image: {
  44954. source: "./media/characters/sydney-heki/back.svg",
  44955. extra: 1356/1293,
  44956. bottom: 12/1368
  44957. }
  44958. },
  44959. frontDressed: {
  44960. height: math.unit(9 + 8/12, "feet"),
  44961. weight: math.unit(800, "lb"),
  44962. name: "Front-dressed",
  44963. image: {
  44964. source: "./media/characters/sydney-heki/front-dressed.svg",
  44965. extra: 1360/1300,
  44966. bottom: 22/1382
  44967. }
  44968. },
  44969. },
  44970. [
  44971. {
  44972. name: "Normal",
  44973. height: math.unit(9 + 8/12, "feet"),
  44974. default: true
  44975. },
  44976. {
  44977. name: "Macro",
  44978. height: math.unit(500, "feet")
  44979. },
  44980. {
  44981. name: "Megamacro",
  44982. height: math.unit(3.6, "miles")
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44988. {
  44989. front: {
  44990. height: math.unit(200, "cm"),
  44991. weight: math.unit(250, "lb"),
  44992. name: "Front",
  44993. image: {
  44994. source: "./media/characters/fowler-karlsson/front.svg",
  44995. extra: 897/845,
  44996. bottom: 123/1020
  44997. }
  44998. },
  44999. back: {
  45000. height: math.unit(200, "cm"),
  45001. weight: math.unit(250, "lb"),
  45002. name: "Back",
  45003. image: {
  45004. source: "./media/characters/fowler-karlsson/back.svg",
  45005. extra: 999/944,
  45006. bottom: 26/1025
  45007. }
  45008. },
  45009. dick: {
  45010. height: math.unit(1.92, "feet"),
  45011. weight: math.unit(150, "lb"),
  45012. name: "Dick",
  45013. image: {
  45014. source: "./media/characters/fowler-karlsson/dick.svg"
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Normal",
  45021. height: math.unit(200, "cm"),
  45022. default: true
  45023. },
  45024. {
  45025. name: "Smaller Macro",
  45026. height: math.unit(90, "m")
  45027. },
  45028. {
  45029. name: "Macro",
  45030. height: math.unit(150, "m")
  45031. },
  45032. {
  45033. name: "Bigger Macro",
  45034. height: math.unit(300, "m")
  45035. },
  45036. ]
  45037. ))
  45038. characterMakers.push(() => makeCharacter(
  45039. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45040. {
  45041. side: {
  45042. height: math.unit(8 + 2/12, "feet"),
  45043. weight: math.unit(1, "tonne"),
  45044. name: "Side",
  45045. image: {
  45046. source: "./media/characters/rylide/side.svg",
  45047. extra: 1318/1034,
  45048. bottom: 106/1424
  45049. }
  45050. },
  45051. sitting: {
  45052. height: math.unit(303, "cm"),
  45053. weight: math.unit(1, "tonne"),
  45054. name: "Sitting",
  45055. image: {
  45056. source: "./media/characters/rylide/sitting.svg",
  45057. extra: 1303/1103,
  45058. bottom: 36/1339
  45059. }
  45060. },
  45061. },
  45062. [
  45063. {
  45064. name: "Normal",
  45065. height: math.unit(8 + 2/12, "feet"),
  45066. default: true
  45067. },
  45068. ]
  45069. ))
  45070. characterMakers.push(() => makeCharacter(
  45071. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45072. {
  45073. front: {
  45074. height: math.unit(5 + 10/12, "feet"),
  45075. weight: math.unit(160, "lb"),
  45076. name: "Front",
  45077. image: {
  45078. source: "./media/characters/pudask/front.svg",
  45079. extra: 1616/1590,
  45080. bottom: 161/1777
  45081. }
  45082. },
  45083. },
  45084. [
  45085. {
  45086. name: "Ferret Height",
  45087. height: math.unit(2 + 5/12, "feet")
  45088. },
  45089. {
  45090. name: "Canon Height",
  45091. height: math.unit(5 + 10/12, "feet"),
  45092. default: true
  45093. },
  45094. ]
  45095. ))
  45096. characterMakers.push(() => makeCharacter(
  45097. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45098. {
  45099. front: {
  45100. height: math.unit(3 + 6/12, "feet"),
  45101. weight: math.unit(60, "lb"),
  45102. name: "Front",
  45103. image: {
  45104. source: "./media/characters/ramita/front.svg",
  45105. extra: 1402/1232,
  45106. bottom: 62/1464
  45107. }
  45108. },
  45109. dressed: {
  45110. height: math.unit(3 + 6/12, "feet"),
  45111. weight: math.unit(60, "lb"),
  45112. name: "Dressed",
  45113. image: {
  45114. source: "./media/characters/ramita/dressed.svg",
  45115. extra: 1534/1249,
  45116. bottom: 50/1584
  45117. }
  45118. },
  45119. },
  45120. [
  45121. {
  45122. name: "Normal",
  45123. height: math.unit(3 + 6/12, "feet"),
  45124. default: true
  45125. },
  45126. ]
  45127. ))
  45128. characterMakers.push(() => makeCharacter(
  45129. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45130. {
  45131. front: {
  45132. height: math.unit(8, "feet"),
  45133. name: "Front",
  45134. image: {
  45135. source: "./media/characters/ark/front.svg",
  45136. extra: 772/693,
  45137. bottom: 45/817
  45138. }
  45139. },
  45140. },
  45141. [
  45142. {
  45143. name: "Normal",
  45144. height: math.unit(8, "feet"),
  45145. default: true
  45146. },
  45147. ]
  45148. ))
  45149. characterMakers.push(() => makeCharacter(
  45150. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45151. {
  45152. front: {
  45153. height: math.unit(6, "feet"),
  45154. weight: math.unit(250, "lb"),
  45155. volume: math.unit(5/8, "gallons"),
  45156. name: "Front",
  45157. image: {
  45158. source: "./media/characters/ludwig-horn/front.svg",
  45159. extra: 1782/1635,
  45160. bottom: 96/1878
  45161. }
  45162. },
  45163. back: {
  45164. height: math.unit(6, "feet"),
  45165. weight: math.unit(250, "lb"),
  45166. volume: math.unit(5/8, "gallons"),
  45167. name: "Back",
  45168. image: {
  45169. source: "./media/characters/ludwig-horn/back.svg",
  45170. extra: 1874/1729,
  45171. bottom: 27/1901
  45172. }
  45173. },
  45174. dick: {
  45175. height: math.unit(1.05, "feet"),
  45176. weight: math.unit(15, "lb"),
  45177. volume: math.unit(5/8, "gallons"),
  45178. name: "Dick",
  45179. image: {
  45180. source: "./media/characters/ludwig-horn/dick.svg"
  45181. }
  45182. },
  45183. },
  45184. [
  45185. {
  45186. name: "Small",
  45187. height: math.unit(6, "feet")
  45188. },
  45189. {
  45190. name: "Typical",
  45191. height: math.unit(12, "feet"),
  45192. default: true
  45193. },
  45194. {
  45195. name: "Building",
  45196. height: math.unit(80, "feet")
  45197. },
  45198. {
  45199. name: "Town",
  45200. height: math.unit(800, "feet")
  45201. },
  45202. {
  45203. name: "Kingdom",
  45204. height: math.unit(80000, "feet")
  45205. },
  45206. {
  45207. name: "Planet",
  45208. height: math.unit(8000000, "feet")
  45209. },
  45210. {
  45211. name: "Universe",
  45212. height: math.unit(8000000000, "feet")
  45213. },
  45214. {
  45215. name: "Transcended",
  45216. height: math.unit(8e27, "feet")
  45217. },
  45218. ]
  45219. ))
  45220. characterMakers.push(() => makeCharacter(
  45221. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45222. {
  45223. front: {
  45224. height: math.unit(5, "feet"),
  45225. weight: math.unit(50, "kg"),
  45226. name: "Front",
  45227. image: {
  45228. source: "./media/characters/biot-avery/front.svg",
  45229. extra: 1295/1232,
  45230. bottom: 86/1381
  45231. }
  45232. },
  45233. },
  45234. [
  45235. {
  45236. name: "Normal",
  45237. height: math.unit(5, "feet"),
  45238. default: true
  45239. },
  45240. ]
  45241. ))
  45242. characterMakers.push(() => makeCharacter(
  45243. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45244. {
  45245. front: {
  45246. height: math.unit(6, "feet"),
  45247. name: "Front",
  45248. image: {
  45249. source: "./media/characters/kitsune-kiro/front.svg",
  45250. extra: 1270/1158,
  45251. bottom: 42/1312
  45252. }
  45253. },
  45254. frontAlt: {
  45255. height: math.unit(6, "feet"),
  45256. name: "Front-alt",
  45257. image: {
  45258. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45259. extra: 1130/1081,
  45260. bottom: 36/1166
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Smol",
  45267. height: math.unit(3, "feet")
  45268. },
  45269. {
  45270. name: "Normal",
  45271. height: math.unit(6, "feet"),
  45272. default: true
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45278. {
  45279. front: {
  45280. height: math.unit(6, "feet"),
  45281. weight: math.unit(125, "lb"),
  45282. name: "Front",
  45283. image: {
  45284. source: "./media/characters/jack-thatcher/front.svg",
  45285. extra: 1474/1370,
  45286. bottom: 26/1500
  45287. }
  45288. },
  45289. back: {
  45290. height: math.unit(6, "feet"),
  45291. weight: math.unit(125, "lb"),
  45292. name: "Back",
  45293. image: {
  45294. source: "./media/characters/jack-thatcher/back.svg",
  45295. extra: 1489/1384,
  45296. bottom: 18/1507
  45297. }
  45298. },
  45299. },
  45300. [
  45301. {
  45302. name: "Normal",
  45303. height: math.unit(6, "feet"),
  45304. default: true
  45305. },
  45306. {
  45307. name: "Macro",
  45308. height: math.unit(75, "feet")
  45309. },
  45310. {
  45311. name: "Macro-er",
  45312. height: math.unit(250, "feet")
  45313. },
  45314. ]
  45315. ))
  45316. characterMakers.push(() => makeCharacter(
  45317. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45318. {
  45319. front: {
  45320. height: math.unit(7, "feet"),
  45321. weight: math.unit(110, "kg"),
  45322. name: "Front",
  45323. image: {
  45324. source: "./media/characters/max-hyper/front.svg",
  45325. extra: 1969/1881,
  45326. bottom: 49/2018
  45327. }
  45328. },
  45329. },
  45330. [
  45331. {
  45332. name: "Normal",
  45333. height: math.unit(7, "feet"),
  45334. default: true
  45335. },
  45336. ]
  45337. ))
  45338. characterMakers.push(() => makeCharacter(
  45339. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45340. {
  45341. front: {
  45342. height: math.unit(5 + 5/12, "feet"),
  45343. weight: math.unit(160, "lb"),
  45344. name: "Front",
  45345. image: {
  45346. source: "./media/characters/spook/front.svg",
  45347. extra: 794/791,
  45348. bottom: 54/848
  45349. }
  45350. },
  45351. back: {
  45352. height: math.unit(5 + 5/12, "feet"),
  45353. weight: math.unit(160, "lb"),
  45354. name: "Back",
  45355. image: {
  45356. source: "./media/characters/spook/back.svg",
  45357. extra: 812/798,
  45358. bottom: 32/844
  45359. }
  45360. },
  45361. },
  45362. [
  45363. {
  45364. name: "Normal",
  45365. height: math.unit(5 + 5/12, "feet"),
  45366. default: true
  45367. },
  45368. ]
  45369. ))
  45370. characterMakers.push(() => makeCharacter(
  45371. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45372. {
  45373. front: {
  45374. height: math.unit(18, "feet"),
  45375. name: "Front",
  45376. image: {
  45377. source: "./media/characters/xeaduulix/front.svg",
  45378. extra: 1380/1166,
  45379. bottom: 110/1490
  45380. }
  45381. },
  45382. back: {
  45383. height: math.unit(18, "feet"),
  45384. name: "Back",
  45385. image: {
  45386. source: "./media/characters/xeaduulix/back.svg",
  45387. extra: 1592/1170,
  45388. bottom: 128/1720
  45389. }
  45390. },
  45391. frontNsfw: {
  45392. height: math.unit(18, "feet"),
  45393. name: "Front (NSFW)",
  45394. image: {
  45395. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45396. extra: 1380/1166,
  45397. bottom: 110/1490
  45398. }
  45399. },
  45400. backNsfw: {
  45401. height: math.unit(18, "feet"),
  45402. name: "Back (NSFW)",
  45403. image: {
  45404. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45405. extra: 1592/1170,
  45406. bottom: 128/1720
  45407. }
  45408. },
  45409. },
  45410. [
  45411. {
  45412. name: "Normal",
  45413. height: math.unit(18, "feet"),
  45414. default: true
  45415. },
  45416. ]
  45417. ))
  45418. characterMakers.push(() => makeCharacter(
  45419. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45420. {
  45421. spreadWings: {
  45422. height: math.unit(20, "feet"),
  45423. name: "Spread Wings",
  45424. image: {
  45425. source: "./media/characters/fledge/spread-wings.svg",
  45426. extra: 693/635,
  45427. bottom: 26/719
  45428. }
  45429. },
  45430. front: {
  45431. height: math.unit(20, "feet"),
  45432. name: "Front",
  45433. image: {
  45434. source: "./media/characters/fledge/front.svg",
  45435. extra: 684/637,
  45436. bottom: 18/702
  45437. }
  45438. },
  45439. frontAlt: {
  45440. height: math.unit(20, "feet"),
  45441. name: "Front (Alt)",
  45442. image: {
  45443. source: "./media/characters/fledge/front-alt.svg",
  45444. extra: 708/664,
  45445. bottom: 13/721
  45446. }
  45447. },
  45448. back: {
  45449. height: math.unit(20, "feet"),
  45450. name: "Back",
  45451. image: {
  45452. source: "./media/characters/fledge/back.svg",
  45453. extra: 718/634,
  45454. bottom: 22/740
  45455. }
  45456. },
  45457. head: {
  45458. height: math.unit(5.55, "feet"),
  45459. name: "Head",
  45460. image: {
  45461. source: "./media/characters/fledge/head.svg"
  45462. }
  45463. },
  45464. headAlt: {
  45465. height: math.unit(5.1, "feet"),
  45466. name: "Head (Alt)",
  45467. image: {
  45468. source: "./media/characters/fledge/head-alt.svg"
  45469. }
  45470. },
  45471. },
  45472. [
  45473. {
  45474. name: "Small",
  45475. height: math.unit(6 + 2/12, "feet")
  45476. },
  45477. {
  45478. name: "Big",
  45479. height: math.unit(20, "feet"),
  45480. default: true
  45481. },
  45482. {
  45483. name: "Giant",
  45484. height: math.unit(100, "feet")
  45485. },
  45486. {
  45487. name: "Macro",
  45488. height: math.unit(200, "feet")
  45489. },
  45490. ]
  45491. ))
  45492. characterMakers.push(() => makeCharacter(
  45493. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45494. {
  45495. front: {
  45496. height: math.unit(1, "meter"),
  45497. name: "Front",
  45498. image: {
  45499. source: "./media/characters/atlas-morenai/front.svg",
  45500. extra: 1275/1043,
  45501. bottom: 19/1294
  45502. }
  45503. },
  45504. back: {
  45505. height: math.unit(1, "meter"),
  45506. name: "Back",
  45507. image: {
  45508. source: "./media/characters/atlas-morenai/back.svg",
  45509. extra: 1141/1001,
  45510. bottom: 25/1166
  45511. }
  45512. },
  45513. },
  45514. [
  45515. {
  45516. name: "Normal",
  45517. height: math.unit(1, "meter"),
  45518. default: true
  45519. },
  45520. {
  45521. name: "Magic-Infused",
  45522. height: math.unit(5, "meters")
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45528. {
  45529. front: {
  45530. height: math.unit(5, "meters"),
  45531. name: "Front",
  45532. image: {
  45533. source: "./media/characters/cintia/front.svg",
  45534. extra: 1312/1228,
  45535. bottom: 38/1350
  45536. }
  45537. },
  45538. back: {
  45539. height: math.unit(5, "meters"),
  45540. name: "Back",
  45541. image: {
  45542. source: "./media/characters/cintia/back.svg",
  45543. extra: 1260/1166,
  45544. bottom: 98/1358
  45545. }
  45546. },
  45547. frontDick: {
  45548. height: math.unit(5, "meters"),
  45549. name: "Front (Dick)",
  45550. image: {
  45551. source: "./media/characters/cintia/front-dick.svg",
  45552. extra: 1312/1228,
  45553. bottom: 38/1350
  45554. }
  45555. },
  45556. backDick: {
  45557. height: math.unit(5, "meters"),
  45558. name: "Back (Dick)",
  45559. image: {
  45560. source: "./media/characters/cintia/back-dick.svg",
  45561. extra: 1260/1166,
  45562. bottom: 98/1358
  45563. }
  45564. },
  45565. bust: {
  45566. height: math.unit(1.97, "meters"),
  45567. name: "Bust",
  45568. image: {
  45569. source: "./media/characters/cintia/bust.svg",
  45570. extra: 617/565,
  45571. bottom: 0/617
  45572. }
  45573. },
  45574. },
  45575. [
  45576. {
  45577. name: "Normal",
  45578. height: math.unit(5, "meters"),
  45579. default: true
  45580. },
  45581. ]
  45582. ))
  45583. characterMakers.push(() => makeCharacter(
  45584. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45585. {
  45586. side: {
  45587. height: math.unit(100, "feet"),
  45588. name: "Side",
  45589. image: {
  45590. source: "./media/characters/denora/side.svg",
  45591. extra: 875/803,
  45592. bottom: 9/884
  45593. }
  45594. },
  45595. },
  45596. [
  45597. {
  45598. name: "Standard",
  45599. height: math.unit(100, "feet"),
  45600. default: true
  45601. },
  45602. {
  45603. name: "Grand",
  45604. height: math.unit(1000, "feet")
  45605. },
  45606. {
  45607. name: "Conquering",
  45608. height: math.unit(10000, "feet")
  45609. },
  45610. ]
  45611. ))
  45612. characterMakers.push(() => makeCharacter(
  45613. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45614. {
  45615. dressed: {
  45616. height: math.unit(8 + 5/12, "feet"),
  45617. weight: math.unit(700, "lb"),
  45618. name: "Dressed",
  45619. image: {
  45620. source: "./media/characters/kiva/dressed.svg",
  45621. extra: 1102/1055,
  45622. bottom: 60/1162
  45623. }
  45624. },
  45625. nude: {
  45626. height: math.unit(8 + 5/12, "feet"),
  45627. weight: math.unit(700, "lb"),
  45628. name: "Nude",
  45629. image: {
  45630. source: "./media/characters/kiva/nude.svg",
  45631. extra: 1102/1055,
  45632. bottom: 60/1162
  45633. }
  45634. },
  45635. },
  45636. [
  45637. {
  45638. name: "Base Height",
  45639. height: math.unit(8 + 5/12, "feet"),
  45640. default: true
  45641. },
  45642. {
  45643. name: "Macro",
  45644. height: math.unit(100, "feet")
  45645. },
  45646. {
  45647. name: "Max",
  45648. height: math.unit(3280, "feet")
  45649. },
  45650. ]
  45651. ))
  45652. characterMakers.push(() => makeCharacter(
  45653. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45654. {
  45655. front: {
  45656. height: math.unit(6 + 8/12, "feet"),
  45657. weight: math.unit(250, "lb"),
  45658. name: "Front",
  45659. image: {
  45660. source: "./media/characters/ztragon/front.svg",
  45661. extra: 1825/1684,
  45662. bottom: 98/1923
  45663. }
  45664. },
  45665. },
  45666. [
  45667. {
  45668. name: "Normal",
  45669. height: math.unit(6 + 8/12, "feet"),
  45670. default: true
  45671. },
  45672. {
  45673. name: "Macro",
  45674. height: math.unit(80, "feet")
  45675. },
  45676. ]
  45677. ))
  45678. characterMakers.push(() => makeCharacter(
  45679. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45680. {
  45681. front: {
  45682. height: math.unit(10.4, "feet"),
  45683. weight: math.unit(2, "tons"),
  45684. name: "Front",
  45685. image: {
  45686. source: "./media/characters/yesenia/front.svg",
  45687. extra: 1479/1474,
  45688. bottom: 233/1712
  45689. }
  45690. },
  45691. },
  45692. [
  45693. {
  45694. name: "Normal",
  45695. height: math.unit(10.4, "feet"),
  45696. default: true
  45697. },
  45698. ]
  45699. ))
  45700. characterMakers.push(() => makeCharacter(
  45701. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45702. {
  45703. normal: {
  45704. height: math.unit(6 + 1/12, "feet"),
  45705. weight: math.unit(180, "lb"),
  45706. name: "Normal",
  45707. image: {
  45708. source: "./media/characters/leanne-lycheborne/normal.svg",
  45709. extra: 1748/1660,
  45710. bottom: 98/1846
  45711. }
  45712. },
  45713. were: {
  45714. height: math.unit(12, "feet"),
  45715. weight: math.unit(1600, "lb"),
  45716. name: "Were",
  45717. image: {
  45718. source: "./media/characters/leanne-lycheborne/were.svg",
  45719. extra: 1485/1432,
  45720. bottom: 66/1551
  45721. }
  45722. },
  45723. },
  45724. [
  45725. {
  45726. name: "Normal",
  45727. height: math.unit(6 + 1/12, "feet"),
  45728. default: true
  45729. },
  45730. ]
  45731. ))
  45732. characterMakers.push(() => makeCharacter(
  45733. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45734. {
  45735. side: {
  45736. height: math.unit(13, "feet"),
  45737. name: "Side",
  45738. image: {
  45739. source: "./media/characters/kira-tyler/side.svg",
  45740. extra: 693/393,
  45741. bottom: 58/751
  45742. }
  45743. },
  45744. },
  45745. [
  45746. {
  45747. name: "Normal",
  45748. height: math.unit(13, "feet"),
  45749. default: true
  45750. },
  45751. ]
  45752. ))
  45753. characterMakers.push(() => makeCharacter(
  45754. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45755. {
  45756. front: {
  45757. height: math.unit(10.3, "feet"),
  45758. weight: math.unit(150, "lb"),
  45759. name: "Front",
  45760. image: {
  45761. source: "./media/characters/blaze/front.svg",
  45762. extra: 1378/1286,
  45763. bottom: 172/1550
  45764. }
  45765. },
  45766. },
  45767. [
  45768. {
  45769. name: "Normal",
  45770. height: math.unit(10.3, "feet"),
  45771. default: true
  45772. },
  45773. ]
  45774. ))
  45775. characterMakers.push(() => makeCharacter(
  45776. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45777. {
  45778. side: {
  45779. height: math.unit(2, "meters"),
  45780. weight: math.unit(400, "kg"),
  45781. name: "Side",
  45782. image: {
  45783. source: "./media/characters/anu/side.svg",
  45784. extra: 506/394,
  45785. bottom: 18/524
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Humanoid",
  45792. height: math.unit(2, "meters")
  45793. },
  45794. {
  45795. name: "Normal",
  45796. height: math.unit(5, "meters"),
  45797. default: true
  45798. },
  45799. ]
  45800. ))
  45801. characterMakers.push(() => makeCharacter(
  45802. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45803. {
  45804. front: {
  45805. height: math.unit(5 + 5/12, "feet"),
  45806. weight: math.unit(170, "lb"),
  45807. name: "Front",
  45808. image: {
  45809. source: "./media/characters/synx-the-lynx/front.svg",
  45810. extra: 1893/1745,
  45811. bottom: 17/1910
  45812. }
  45813. },
  45814. side: {
  45815. height: math.unit(5 + 5/12, "feet"),
  45816. weight: math.unit(170, "lb"),
  45817. name: "Side",
  45818. image: {
  45819. source: "./media/characters/synx-the-lynx/side.svg",
  45820. extra: 1884/1740,
  45821. bottom: 39/1923
  45822. }
  45823. },
  45824. back: {
  45825. height: math.unit(5 + 5/12, "feet"),
  45826. weight: math.unit(170, "lb"),
  45827. name: "Back",
  45828. image: {
  45829. source: "./media/characters/synx-the-lynx/back.svg",
  45830. extra: 1903/1755,
  45831. bottom: 14/1917
  45832. }
  45833. },
  45834. },
  45835. [
  45836. {
  45837. name: "Normal",
  45838. height: math.unit(5 + 5/12, "feet"),
  45839. default: true
  45840. },
  45841. ]
  45842. ))
  45843. characterMakers.push(() => makeCharacter(
  45844. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45845. {
  45846. back: {
  45847. height: math.unit(15, "feet"),
  45848. name: "Back",
  45849. image: {
  45850. source: "./media/characters/nadezda-fex/back.svg",
  45851. extra: 1695/1481,
  45852. bottom: 25/1720
  45853. }
  45854. },
  45855. },
  45856. [
  45857. {
  45858. name: "Normal",
  45859. height: math.unit(15, "feet"),
  45860. default: true
  45861. },
  45862. {
  45863. name: "Macro",
  45864. height: math.unit(2.5, "miles")
  45865. },
  45866. {
  45867. name: "Goddess",
  45868. height: math.unit(2, "multiverses")
  45869. },
  45870. ]
  45871. ))
  45872. characterMakers.push(() => makeCharacter(
  45873. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45874. {
  45875. front: {
  45876. height: math.unit(216, "cm"),
  45877. name: "Front",
  45878. image: {
  45879. source: "./media/characters/lev/front.svg",
  45880. extra: 1728/1670,
  45881. bottom: 82/1810
  45882. }
  45883. },
  45884. back: {
  45885. height: math.unit(216, "cm"),
  45886. name: "Back",
  45887. image: {
  45888. source: "./media/characters/lev/back.svg",
  45889. extra: 1738/1675,
  45890. bottom: 24/1762
  45891. }
  45892. },
  45893. dressed: {
  45894. height: math.unit(216, "cm"),
  45895. name: "Dressed",
  45896. image: {
  45897. source: "./media/characters/lev/dressed.svg",
  45898. extra: 1397/1351,
  45899. bottom: 73/1470
  45900. }
  45901. },
  45902. head: {
  45903. height: math.unit(0.51, "meter"),
  45904. name: "Head",
  45905. image: {
  45906. source: "./media/characters/lev/head.svg"
  45907. }
  45908. },
  45909. },
  45910. [
  45911. {
  45912. name: "Normal",
  45913. height: math.unit(216, "cm"),
  45914. default: true
  45915. },
  45916. {
  45917. name: "Relatively Macro",
  45918. height: math.unit(80, "meters")
  45919. },
  45920. {
  45921. name: "Megamacro",
  45922. height: math.unit(21600, "meters")
  45923. },
  45924. {
  45925. name: "Megamacro+",
  45926. height: math.unit(64800, "meters")
  45927. },
  45928. ]
  45929. ))
  45930. characterMakers.push(() => makeCharacter(
  45931. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45932. {
  45933. front: {
  45934. height: math.unit(2, "meters"),
  45935. weight: math.unit(80, "kg"),
  45936. name: "Front",
  45937. image: {
  45938. source: "./media/characters/moka/front.svg",
  45939. extra: 1337/1255,
  45940. bottom: 58/1395
  45941. }
  45942. },
  45943. },
  45944. [
  45945. {
  45946. name: "Micro",
  45947. height: math.unit(15, "cm")
  45948. },
  45949. {
  45950. name: "Normal",
  45951. height: math.unit(2, "meters"),
  45952. default: true
  45953. },
  45954. {
  45955. name: "Macro",
  45956. height: math.unit(20, "meters"),
  45957. },
  45958. ]
  45959. ))
  45960. characterMakers.push(() => makeCharacter(
  45961. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45962. {
  45963. front: {
  45964. height: math.unit(9, "feet"),
  45965. weight: math.unit(240, "lb"),
  45966. name: "Front",
  45967. image: {
  45968. source: "./media/characters/kuzco/front.svg",
  45969. extra: 1593/1487,
  45970. bottom: 32/1625
  45971. }
  45972. },
  45973. side: {
  45974. height: math.unit(9, "feet"),
  45975. weight: math.unit(240, "lb"),
  45976. name: "Side",
  45977. image: {
  45978. source: "./media/characters/kuzco/side.svg",
  45979. extra: 1575/1485,
  45980. bottom: 30/1605
  45981. }
  45982. },
  45983. back: {
  45984. height: math.unit(9, "feet"),
  45985. weight: math.unit(240, "lb"),
  45986. name: "Back",
  45987. image: {
  45988. source: "./media/characters/kuzco/back.svg",
  45989. extra: 1603/1514,
  45990. bottom: 14/1617
  45991. }
  45992. },
  45993. },
  45994. [
  45995. {
  45996. name: "Normal",
  45997. height: math.unit(9, "feet"),
  45998. default: true
  45999. },
  46000. ]
  46001. ))
  46002. characterMakers.push(() => makeCharacter(
  46003. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46004. {
  46005. side: {
  46006. height: math.unit(2, "meters"),
  46007. weight: math.unit(300, "kg"),
  46008. name: "Side",
  46009. image: {
  46010. source: "./media/characters/ceruleus/side.svg",
  46011. extra: 1068/974,
  46012. bottom: 126/1194
  46013. }
  46014. },
  46015. },
  46016. [
  46017. {
  46018. name: "Normal",
  46019. height: math.unit(16, "meters"),
  46020. default: true
  46021. },
  46022. ]
  46023. ))
  46024. characterMakers.push(() => makeCharacter(
  46025. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46026. {
  46027. front: {
  46028. height: math.unit(9, "feet"),
  46029. weight: math.unit(500, "kg"),
  46030. name: "Front",
  46031. image: {
  46032. source: "./media/characters/acouya/front.svg",
  46033. extra: 1660/1473,
  46034. bottom: 28/1688
  46035. }
  46036. },
  46037. },
  46038. [
  46039. {
  46040. name: "Normal",
  46041. height: math.unit(9, "feet"),
  46042. default: true
  46043. },
  46044. ]
  46045. ))
  46046. characterMakers.push(() => makeCharacter(
  46047. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46048. {
  46049. front: {
  46050. height: math.unit(5 + 6/12, "feet"),
  46051. weight: math.unit(195, "lb"),
  46052. name: "Front",
  46053. image: {
  46054. source: "./media/characters/vant/front.svg",
  46055. extra: 1396/1320,
  46056. bottom: 20/1416
  46057. }
  46058. },
  46059. back: {
  46060. height: math.unit(5 + 6/12, "feet"),
  46061. weight: math.unit(195, "lb"),
  46062. name: "Back",
  46063. image: {
  46064. source: "./media/characters/vant/back.svg",
  46065. extra: 1396/1320,
  46066. bottom: 20/1416
  46067. }
  46068. },
  46069. maw: {
  46070. height: math.unit(0.75, "feet"),
  46071. name: "Maw",
  46072. image: {
  46073. source: "./media/characters/vant/maw.svg"
  46074. }
  46075. },
  46076. paw: {
  46077. height: math.unit(1.07, "feet"),
  46078. name: "Paw",
  46079. image: {
  46080. source: "./media/characters/vant/paw.svg"
  46081. }
  46082. },
  46083. },
  46084. [
  46085. {
  46086. name: "Micro",
  46087. height: math.unit(0.25, "inches")
  46088. },
  46089. {
  46090. name: "Normal",
  46091. height: math.unit(5 + 6/12, "feet"),
  46092. default: true
  46093. },
  46094. {
  46095. name: "Macro",
  46096. height: math.unit(75, "feet")
  46097. },
  46098. ]
  46099. ))
  46100. characterMakers.push(() => makeCharacter(
  46101. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46102. {
  46103. front: {
  46104. height: math.unit(30, "meters"),
  46105. weight: math.unit(363, "tons"),
  46106. name: "Front",
  46107. image: {
  46108. source: "./media/characters/ahra/front.svg",
  46109. extra: 1914/1814,
  46110. bottom: 46/1960
  46111. }
  46112. },
  46113. },
  46114. [
  46115. {
  46116. name: "Macro",
  46117. height: math.unit(30, "meters"),
  46118. default: true
  46119. },
  46120. ]
  46121. ))
  46122. characterMakers.push(() => makeCharacter(
  46123. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46124. {
  46125. undressed: {
  46126. height: math.unit(2, "m"),
  46127. weight: math.unit(250, "kg"),
  46128. name: "Undressed",
  46129. image: {
  46130. source: "./media/characters/coriander/undressed.svg",
  46131. extra: 1757/1606,
  46132. bottom: 107/1864
  46133. }
  46134. },
  46135. dressed: {
  46136. height: math.unit(2, "m"),
  46137. weight: math.unit(250, "kg"),
  46138. name: "Dressed",
  46139. image: {
  46140. source: "./media/characters/coriander/dressed.svg",
  46141. extra: 1757/1606,
  46142. bottom: 107/1864
  46143. }
  46144. },
  46145. },
  46146. [
  46147. {
  46148. name: "Normal",
  46149. height: math.unit(4, "meters"),
  46150. default: true
  46151. },
  46152. {
  46153. name: "XL",
  46154. height: math.unit(6, "meters")
  46155. },
  46156. {
  46157. name: "XXL",
  46158. height: math.unit(8, "meters")
  46159. },
  46160. ]
  46161. ))
  46162. characterMakers.push(() => makeCharacter(
  46163. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46164. {
  46165. front: {
  46166. height: math.unit(6, "feet"),
  46167. name: "Front",
  46168. image: {
  46169. source: "./media/characters/syrinx/front.svg",
  46170. extra: 1557/1259,
  46171. bottom: 171/1728
  46172. }
  46173. },
  46174. },
  46175. [
  46176. {
  46177. name: "Normal",
  46178. height: math.unit(6 + 3/12, "feet"),
  46179. default: true
  46180. },
  46181. ]
  46182. ))
  46183. characterMakers.push(() => makeCharacter(
  46184. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46185. {
  46186. front: {
  46187. height: math.unit(11 + 6/12, "feet"),
  46188. weight: math.unit(1.5, "tons"),
  46189. name: "Front",
  46190. image: {
  46191. source: "./media/characters/bor/front.svg",
  46192. extra: 1189/1109,
  46193. bottom: 170/1359
  46194. }
  46195. },
  46196. },
  46197. [
  46198. {
  46199. name: "Normal",
  46200. height: math.unit(11 + 6/12, "feet"),
  46201. default: true
  46202. },
  46203. {
  46204. name: "Macro",
  46205. height: math.unit(32 + 9/12, "feet")
  46206. },
  46207. ]
  46208. ))
  46209. characterMakers.push(() => makeCharacter(
  46210. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46211. {
  46212. anthro: {
  46213. height: math.unit(9, "feet"),
  46214. weight: math.unit(2076, "lb"),
  46215. name: "Anthro",
  46216. image: {
  46217. source: "./media/characters/abacus/anthro.svg",
  46218. extra: 1540/1494,
  46219. bottom: 233/1773
  46220. }
  46221. },
  46222. pigeon: {
  46223. height: math.unit(1, "feet"),
  46224. name: "Pigeon",
  46225. image: {
  46226. source: "./media/characters/abacus/pigeon.svg",
  46227. extra: 528/525,
  46228. bottom: 46/574
  46229. }
  46230. },
  46231. },
  46232. [
  46233. {
  46234. name: "Normal",
  46235. height: math.unit(9, "feet"),
  46236. default: true
  46237. },
  46238. ]
  46239. ))
  46240. characterMakers.push(() => makeCharacter(
  46241. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46242. {
  46243. side: {
  46244. height: math.unit(6, "feet"),
  46245. name: "Side",
  46246. image: {
  46247. source: "./media/characters/delkhan/side.svg",
  46248. extra: 1884/1786,
  46249. bottom: 308/2192
  46250. }
  46251. },
  46252. head: {
  46253. height: math.unit(3.38, "feet"),
  46254. name: "Head",
  46255. image: {
  46256. source: "./media/characters/delkhan/head.svg"
  46257. }
  46258. },
  46259. },
  46260. [
  46261. {
  46262. name: "Normal",
  46263. height: math.unit(72, "feet"),
  46264. default: true
  46265. },
  46266. {
  46267. name: "Giant",
  46268. height: math.unit(172, "feet")
  46269. },
  46270. ]
  46271. ))
  46272. characterMakers.push(() => makeCharacter(
  46273. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46274. {
  46275. standing: {
  46276. height: math.unit(6, "feet"),
  46277. name: "Standing",
  46278. image: {
  46279. source: "./media/characters/euchidat/standing.svg",
  46280. extra: 1612/1553,
  46281. bottom: 116/1728
  46282. }
  46283. },
  46284. leaning: {
  46285. height: math.unit(6, "feet"),
  46286. name: "Leaning",
  46287. image: {
  46288. source: "./media/characters/euchidat/leaning.svg",
  46289. extra: 1719/1674,
  46290. bottom: 27/1746
  46291. }
  46292. },
  46293. },
  46294. [
  46295. {
  46296. name: "Normal",
  46297. height: math.unit(175, "feet"),
  46298. default: true
  46299. },
  46300. {
  46301. name: "Megamacro",
  46302. height: math.unit(190, "miles")
  46303. },
  46304. {
  46305. name: "Gigamacro",
  46306. height: math.unit(190000, "miles")
  46307. },
  46308. ]
  46309. ))
  46310. characterMakers.push(() => makeCharacter(
  46311. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46312. {
  46313. front: {
  46314. height: math.unit(6, "feet"),
  46315. weight: math.unit(150, "lb"),
  46316. name: "Front",
  46317. image: {
  46318. source: "./media/characters/rebecca-stack/front.svg",
  46319. extra: 1256/1201,
  46320. bottom: 18/1274
  46321. }
  46322. },
  46323. },
  46324. [
  46325. {
  46326. name: "Normal",
  46327. height: math.unit(5 + 8/12, "feet"),
  46328. default: true
  46329. },
  46330. {
  46331. name: "Demolitionist",
  46332. height: math.unit(200, "feet")
  46333. },
  46334. {
  46335. name: "Out of Control",
  46336. height: math.unit(2, "miles")
  46337. },
  46338. {
  46339. name: "Giga",
  46340. height: math.unit(7200, "miles")
  46341. },
  46342. ]
  46343. ))
  46344. characterMakers.push(() => makeCharacter(
  46345. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46346. {
  46347. front: {
  46348. height: math.unit(6, "feet"),
  46349. weight: math.unit(150, "lb"),
  46350. name: "Front",
  46351. image: {
  46352. source: "./media/characters/jenny-cartwright/front.svg",
  46353. extra: 1384/1376,
  46354. bottom: 58/1442
  46355. }
  46356. },
  46357. },
  46358. [
  46359. {
  46360. name: "Normal",
  46361. height: math.unit(6 + 7/12, "feet"),
  46362. default: true
  46363. },
  46364. {
  46365. name: "Librarian",
  46366. height: math.unit(55, "feet")
  46367. },
  46368. {
  46369. name: "Sightseer",
  46370. height: math.unit(50, "miles")
  46371. },
  46372. {
  46373. name: "Giga",
  46374. height: math.unit(30000, "miles")
  46375. },
  46376. ]
  46377. ))
  46378. characterMakers.push(() => makeCharacter(
  46379. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46380. {
  46381. nude: {
  46382. height: math.unit(8, "feet"),
  46383. weight: math.unit(225, "lb"),
  46384. name: "Nude",
  46385. image: {
  46386. source: "./media/characters/marvy/nude.svg",
  46387. extra: 1900/1683,
  46388. bottom: 89/1989
  46389. }
  46390. },
  46391. dressed: {
  46392. height: math.unit(8, "feet"),
  46393. weight: math.unit(225, "lb"),
  46394. name: "Dressed",
  46395. image: {
  46396. source: "./media/characters/marvy/dressed.svg",
  46397. extra: 1900/1683,
  46398. bottom: 89/1989
  46399. }
  46400. },
  46401. head: {
  46402. height: math.unit(2.85, "feet"),
  46403. name: "Head",
  46404. image: {
  46405. source: "./media/characters/marvy/head.svg"
  46406. }
  46407. },
  46408. },
  46409. [
  46410. {
  46411. name: "Normal",
  46412. height: math.unit(8, "feet"),
  46413. default: true
  46414. },
  46415. ]
  46416. ))
  46417. characterMakers.push(() => makeCharacter(
  46418. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46419. {
  46420. front: {
  46421. height: math.unit(8, "feet"),
  46422. weight: math.unit(250, "lb"),
  46423. name: "Front",
  46424. image: {
  46425. source: "./media/characters/leah/front.svg",
  46426. extra: 1257/1149,
  46427. bottom: 109/1366
  46428. }
  46429. },
  46430. },
  46431. [
  46432. {
  46433. name: "Normal",
  46434. height: math.unit(8, "feet"),
  46435. default: true
  46436. },
  46437. {
  46438. name: "Minimacro",
  46439. height: math.unit(40, "feet")
  46440. },
  46441. {
  46442. name: "Macro",
  46443. height: math.unit(124, "feet")
  46444. },
  46445. {
  46446. name: "Megamacro",
  46447. height: math.unit(850, "feet")
  46448. },
  46449. ]
  46450. ))
  46451. characterMakers.push(() => makeCharacter(
  46452. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46453. {
  46454. side: {
  46455. height: math.unit(13 + 6/12, "feet"),
  46456. weight: math.unit(3200, "lb"),
  46457. name: "Side",
  46458. image: {
  46459. source: "./media/characters/alvir/side.svg",
  46460. extra: 896/589,
  46461. bottom: 26/922
  46462. }
  46463. },
  46464. },
  46465. [
  46466. {
  46467. name: "Normal",
  46468. height: math.unit(13 + 6/12, "feet"),
  46469. default: true
  46470. },
  46471. ]
  46472. ))
  46473. characterMakers.push(() => makeCharacter(
  46474. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46475. {
  46476. front: {
  46477. height: math.unit(5 + 4/12, "feet"),
  46478. weight: math.unit(236, "lb"),
  46479. name: "Front",
  46480. image: {
  46481. source: "./media/characters/zaina-khalil/front.svg",
  46482. extra: 1533/1485,
  46483. bottom: 94/1627
  46484. }
  46485. },
  46486. side: {
  46487. height: math.unit(5 + 4/12, "feet"),
  46488. weight: math.unit(236, "lb"),
  46489. name: "Side",
  46490. image: {
  46491. source: "./media/characters/zaina-khalil/side.svg",
  46492. extra: 1537/1498,
  46493. bottom: 66/1603
  46494. }
  46495. },
  46496. back: {
  46497. height: math.unit(5 + 4/12, "feet"),
  46498. weight: math.unit(236, "lb"),
  46499. name: "Back",
  46500. image: {
  46501. source: "./media/characters/zaina-khalil/back.svg",
  46502. extra: 1546/1494,
  46503. bottom: 89/1635
  46504. }
  46505. },
  46506. },
  46507. [
  46508. {
  46509. name: "Normal",
  46510. height: math.unit(5 + 4/12, "feet"),
  46511. default: true
  46512. },
  46513. ]
  46514. ))
  46515. characterMakers.push(() => makeCharacter(
  46516. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46517. {
  46518. side: {
  46519. height: math.unit(12, "feet"),
  46520. weight: math.unit(4000, "lb"),
  46521. name: "Side",
  46522. image: {
  46523. source: "./media/characters/terry/side.svg",
  46524. extra: 1518/1439,
  46525. bottom: 149/1667
  46526. }
  46527. },
  46528. },
  46529. [
  46530. {
  46531. name: "Normal",
  46532. height: math.unit(12, "feet"),
  46533. default: true
  46534. },
  46535. ]
  46536. ))
  46537. characterMakers.push(() => makeCharacter(
  46538. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46539. {
  46540. front: {
  46541. height: math.unit(12, "feet"),
  46542. weight: math.unit(1500, "lb"),
  46543. name: "Front",
  46544. image: {
  46545. source: "./media/characters/kahea/front.svg",
  46546. extra: 1722/1617,
  46547. bottom: 179/1901
  46548. }
  46549. },
  46550. },
  46551. [
  46552. {
  46553. name: "Normal",
  46554. height: math.unit(12, "feet"),
  46555. default: true
  46556. },
  46557. ]
  46558. ))
  46559. characterMakers.push(() => makeCharacter(
  46560. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46561. {
  46562. demonFront: {
  46563. height: math.unit(36, "feet"),
  46564. name: "Front",
  46565. image: {
  46566. source: "./media/characters/alex-xuria/demon-front.svg",
  46567. extra: 1705/1673,
  46568. bottom: 198/1903
  46569. },
  46570. form: "demon",
  46571. default: true
  46572. },
  46573. demonBack: {
  46574. height: math.unit(36, "feet"),
  46575. name: "Back",
  46576. image: {
  46577. source: "./media/characters/alex-xuria/demon-back.svg",
  46578. extra: 1725/1693,
  46579. bottom: 70/1795
  46580. },
  46581. form: "demon"
  46582. },
  46583. demonHead: {
  46584. height: math.unit(2.14, "meters"),
  46585. name: "Head",
  46586. image: {
  46587. source: "./media/characters/alex-xuria/demon-head.svg"
  46588. },
  46589. form: "demon"
  46590. },
  46591. demonHand: {
  46592. height: math.unit(1.61, "meters"),
  46593. name: "Hand",
  46594. image: {
  46595. source: "./media/characters/alex-xuria/demon-hand.svg"
  46596. },
  46597. form: "demon"
  46598. },
  46599. demonPaw: {
  46600. height: math.unit(1.35, "meters"),
  46601. name: "Paw",
  46602. image: {
  46603. source: "./media/characters/alex-xuria/demon-paw.svg"
  46604. },
  46605. form: "demon"
  46606. },
  46607. demonFoot: {
  46608. height: math.unit(2.2, "meters"),
  46609. name: "Foot",
  46610. image: {
  46611. source: "./media/characters/alex-xuria/demon-foot.svg"
  46612. },
  46613. form: "demon"
  46614. },
  46615. demonCock: {
  46616. height: math.unit(1.74, "meters"),
  46617. name: "Cock",
  46618. image: {
  46619. source: "./media/characters/alex-xuria/demon-cock.svg"
  46620. },
  46621. form: "demon"
  46622. },
  46623. demonTailClosed: {
  46624. height: math.unit(1.47, "meters"),
  46625. name: "Tail (Closed)",
  46626. image: {
  46627. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46628. },
  46629. form: "demon"
  46630. },
  46631. demonTailOpen: {
  46632. height: math.unit(2.85, "meters"),
  46633. name: "Tail (Open)",
  46634. image: {
  46635. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46636. },
  46637. form: "demon"
  46638. },
  46639. incubusFront: {
  46640. height: math.unit(12, "feet"),
  46641. name: "Front",
  46642. image: {
  46643. source: "./media/characters/alex-xuria/incubus-front.svg",
  46644. extra: 1754/1677,
  46645. bottom: 125/1879
  46646. },
  46647. form: "incubus",
  46648. default: true
  46649. },
  46650. incubusBack: {
  46651. height: math.unit(12, "feet"),
  46652. name: "Back",
  46653. image: {
  46654. source: "./media/characters/alex-xuria/incubus-back.svg",
  46655. extra: 1702/1647,
  46656. bottom: 30/1732
  46657. },
  46658. form: "incubus"
  46659. },
  46660. incubusHead: {
  46661. height: math.unit(3.45, "feet"),
  46662. name: "Head",
  46663. image: {
  46664. source: "./media/characters/alex-xuria/incubus-head.svg"
  46665. },
  46666. form: "incubus"
  46667. },
  46668. rabbitFront: {
  46669. height: math.unit(6, "feet"),
  46670. name: "Front",
  46671. image: {
  46672. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46673. extra: 1369/1349,
  46674. bottom: 45/1414
  46675. },
  46676. form: "rabbit",
  46677. default: true
  46678. },
  46679. rabbitSide: {
  46680. height: math.unit(6, "feet"),
  46681. name: "Side",
  46682. image: {
  46683. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46684. extra: 1370/1356,
  46685. bottom: 37/1407
  46686. },
  46687. form: "rabbit"
  46688. },
  46689. rabbitBack: {
  46690. height: math.unit(6, "feet"),
  46691. name: "Back",
  46692. image: {
  46693. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46694. extra: 1375/1358,
  46695. bottom: 43/1418
  46696. },
  46697. form: "rabbit"
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Normal",
  46703. height: math.unit(6, "feet"),
  46704. default: true,
  46705. form: "rabbit"
  46706. },
  46707. {
  46708. name: "Incubus",
  46709. height: math.unit(12, "feet"),
  46710. default: true,
  46711. form: "incubus"
  46712. },
  46713. {
  46714. name: "Demon",
  46715. height: math.unit(36, "feet"),
  46716. default: true,
  46717. form: "demon"
  46718. }
  46719. ],
  46720. {
  46721. "demon": {
  46722. name: "Demon",
  46723. default: true
  46724. },
  46725. "incubus": {
  46726. name: "Incubus",
  46727. },
  46728. "rabbit": {
  46729. name: "Rabbit"
  46730. }
  46731. }
  46732. ))
  46733. characterMakers.push(() => makeCharacter(
  46734. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46735. {
  46736. front: {
  46737. height: math.unit(7 + 5/12, "feet"),
  46738. weight: math.unit(510, "lb"),
  46739. name: "Front",
  46740. image: {
  46741. source: "./media/characters/syrup/front.svg",
  46742. extra: 932/916,
  46743. bottom: 26/958
  46744. }
  46745. },
  46746. },
  46747. [
  46748. {
  46749. name: "Normal",
  46750. height: math.unit(7 + 5/12, "feet"),
  46751. default: true
  46752. },
  46753. {
  46754. name: "Big",
  46755. height: math.unit(50, "feet")
  46756. },
  46757. {
  46758. name: "Macro",
  46759. height: math.unit(300, "feet")
  46760. },
  46761. {
  46762. name: "Megamacro",
  46763. height: math.unit(1, "mile")
  46764. },
  46765. ]
  46766. ))
  46767. characterMakers.push(() => makeCharacter(
  46768. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46769. {
  46770. front: {
  46771. height: math.unit(6 + 9/12, "feet"),
  46772. name: "Front",
  46773. image: {
  46774. source: "./media/characters/zeimne/front.svg",
  46775. extra: 1969/1806,
  46776. bottom: 53/2022
  46777. }
  46778. },
  46779. },
  46780. [
  46781. {
  46782. name: "Normal",
  46783. height: math.unit(6 + 9/12, "feet"),
  46784. default: true
  46785. },
  46786. {
  46787. name: "Giant",
  46788. height: math.unit(550, "feet")
  46789. },
  46790. {
  46791. name: "Mega",
  46792. height: math.unit(3, "miles")
  46793. },
  46794. {
  46795. name: "Giga",
  46796. height: math.unit(250, "miles")
  46797. },
  46798. {
  46799. name: "Tera",
  46800. height: math.unit(1, "AU")
  46801. },
  46802. ]
  46803. ))
  46804. characterMakers.push(() => makeCharacter(
  46805. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46806. {
  46807. front: {
  46808. height: math.unit(5 + 2/12, "feet"),
  46809. name: "Front",
  46810. image: {
  46811. source: "./media/characters/grar/front.svg",
  46812. extra: 1331/1119,
  46813. bottom: 60/1391
  46814. }
  46815. },
  46816. back: {
  46817. height: math.unit(5 + 2/12, "feet"),
  46818. name: "Back",
  46819. image: {
  46820. source: "./media/characters/grar/back.svg",
  46821. extra: 1385/1169,
  46822. bottom: 23/1408
  46823. }
  46824. },
  46825. },
  46826. [
  46827. {
  46828. name: "Normal",
  46829. height: math.unit(5 + 2/12, "feet"),
  46830. default: true
  46831. },
  46832. ]
  46833. ))
  46834. characterMakers.push(() => makeCharacter(
  46835. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46836. {
  46837. front: {
  46838. height: math.unit(13 + 7/12, "feet"),
  46839. weight: math.unit(2200, "lb"),
  46840. name: "Front",
  46841. image: {
  46842. source: "./media/characters/endraya/front.svg",
  46843. extra: 1289/1215,
  46844. bottom: 50/1339
  46845. }
  46846. },
  46847. nude: {
  46848. height: math.unit(13 + 7/12, "feet"),
  46849. weight: math.unit(2200, "lb"),
  46850. name: "Nude",
  46851. image: {
  46852. source: "./media/characters/endraya/nude.svg",
  46853. extra: 1247/1171,
  46854. bottom: 40/1287
  46855. }
  46856. },
  46857. head: {
  46858. height: math.unit(2.6, "feet"),
  46859. name: "Head",
  46860. image: {
  46861. source: "./media/characters/endraya/head.svg"
  46862. }
  46863. },
  46864. slit: {
  46865. height: math.unit(3.4, "feet"),
  46866. name: "Slit",
  46867. image: {
  46868. source: "./media/characters/endraya/slit.svg"
  46869. }
  46870. },
  46871. },
  46872. [
  46873. {
  46874. name: "Normal",
  46875. height: math.unit(13 + 7/12, "feet"),
  46876. default: true
  46877. },
  46878. {
  46879. name: "Macro",
  46880. height: math.unit(200, "feet")
  46881. },
  46882. ]
  46883. ))
  46884. characterMakers.push(() => makeCharacter(
  46885. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46886. {
  46887. front: {
  46888. height: math.unit(1.81, "meters"),
  46889. weight: math.unit(69, "kg"),
  46890. name: "Front",
  46891. image: {
  46892. source: "./media/characters/rodryana/front.svg",
  46893. extra: 2002/1921,
  46894. bottom: 53/2055
  46895. }
  46896. },
  46897. back: {
  46898. height: math.unit(1.81, "meters"),
  46899. weight: math.unit(69, "kg"),
  46900. name: "Back",
  46901. image: {
  46902. source: "./media/characters/rodryana/back.svg",
  46903. extra: 1993/1926,
  46904. bottom: 48/2041
  46905. }
  46906. },
  46907. maw: {
  46908. height: math.unit(0.19769417475, "meters"),
  46909. name: "Maw",
  46910. image: {
  46911. source: "./media/characters/rodryana/maw.svg"
  46912. }
  46913. },
  46914. slit: {
  46915. height: math.unit(0.31631067961, "meters"),
  46916. name: "Slit",
  46917. image: {
  46918. source: "./media/characters/rodryana/slit.svg"
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Normal",
  46925. height: math.unit(1.81, "meters")
  46926. },
  46927. {
  46928. name: "Mini Macro",
  46929. height: math.unit(181, "meters")
  46930. },
  46931. {
  46932. name: "Macro",
  46933. height: math.unit(452, "meters"),
  46934. default: true
  46935. },
  46936. {
  46937. name: "Mega Macro",
  46938. height: math.unit(1.375, "km")
  46939. },
  46940. {
  46941. name: "Giga Macro",
  46942. height: math.unit(13.575, "km")
  46943. },
  46944. ]
  46945. ))
  46946. characterMakers.push(() => makeCharacter(
  46947. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46948. {
  46949. front: {
  46950. height: math.unit(6, "feet"),
  46951. weight: math.unit(1000, "lb"),
  46952. name: "Front",
  46953. image: {
  46954. source: "./media/characters/asaya/front.svg",
  46955. extra: 1460/1200,
  46956. bottom: 71/1531
  46957. }
  46958. },
  46959. },
  46960. [
  46961. {
  46962. name: "Normal",
  46963. height: math.unit(8, "km"),
  46964. default: true
  46965. },
  46966. ]
  46967. ))
  46968. characterMakers.push(() => makeCharacter(
  46969. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46970. {
  46971. front: {
  46972. height: math.unit(3.5, "meters"),
  46973. name: "Front",
  46974. image: {
  46975. source: "./media/characters/sarzu-and-israz/front.svg",
  46976. extra: 1570/1558,
  46977. bottom: 150/1720
  46978. },
  46979. },
  46980. back: {
  46981. height: math.unit(3.5, "meters"),
  46982. name: "Back",
  46983. image: {
  46984. source: "./media/characters/sarzu-and-israz/back.svg",
  46985. extra: 1523/1509,
  46986. bottom: 132/1655
  46987. },
  46988. },
  46989. frontFemale: {
  46990. height: math.unit(3.5, "meters"),
  46991. name: "Front (Female)",
  46992. image: {
  46993. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46994. extra: 1570/1558,
  46995. bottom: 150/1720
  46996. },
  46997. },
  46998. frontHerm: {
  46999. height: math.unit(3.5, "meters"),
  47000. name: "Front (Herm)",
  47001. image: {
  47002. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47003. extra: 1570/1558,
  47004. bottom: 150/1720
  47005. },
  47006. },
  47007. },
  47008. [
  47009. {
  47010. name: "Normal",
  47011. height: math.unit(3.5, "meters"),
  47012. default: true,
  47013. },
  47014. {
  47015. name: "Macro",
  47016. height: math.unit(65.5, "meters"),
  47017. },
  47018. ],
  47019. ))
  47020. characterMakers.push(() => makeCharacter(
  47021. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47022. {
  47023. front: {
  47024. height: math.unit(6, "feet"),
  47025. weight: math.unit(250, "lb"),
  47026. name: "Front",
  47027. image: {
  47028. source: "./media/characters/zenimma/front.svg",
  47029. extra: 1346/1320,
  47030. bottom: 58/1404
  47031. }
  47032. },
  47033. back: {
  47034. height: math.unit(6, "feet"),
  47035. weight: math.unit(250, "lb"),
  47036. name: "Back",
  47037. image: {
  47038. source: "./media/characters/zenimma/back.svg",
  47039. extra: 1324/1308,
  47040. bottom: 44/1368
  47041. }
  47042. },
  47043. dick: {
  47044. height: math.unit(1.44, "feet"),
  47045. name: "Dick",
  47046. image: {
  47047. source: "./media/characters/zenimma/dick.svg"
  47048. }
  47049. },
  47050. },
  47051. [
  47052. {
  47053. name: "Canon Height",
  47054. height: math.unit(66, "miles"),
  47055. default: true
  47056. },
  47057. ]
  47058. ))
  47059. characterMakers.push(() => makeCharacter(
  47060. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47061. {
  47062. nude: {
  47063. height: math.unit(6, "feet"),
  47064. weight: math.unit(150, "lb"),
  47065. name: "Nude",
  47066. image: {
  47067. source: "./media/characters/shavon/nude.svg",
  47068. extra: 1242/1096,
  47069. bottom: 98/1340
  47070. }
  47071. },
  47072. dressed: {
  47073. height: math.unit(6, "feet"),
  47074. weight: math.unit(150, "lb"),
  47075. name: "Dressed",
  47076. image: {
  47077. source: "./media/characters/shavon/dressed.svg",
  47078. extra: 1242/1096,
  47079. bottom: 98/1340
  47080. }
  47081. },
  47082. },
  47083. [
  47084. {
  47085. name: "Macro",
  47086. height: math.unit(255, "feet"),
  47087. default: true
  47088. },
  47089. ]
  47090. ))
  47091. characterMakers.push(() => makeCharacter(
  47092. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47093. {
  47094. front: {
  47095. height: math.unit(6, "feet"),
  47096. name: "Front",
  47097. image: {
  47098. source: "./media/characters/steph/front.svg",
  47099. extra: 1430/1330,
  47100. bottom: 54/1484
  47101. }
  47102. },
  47103. },
  47104. [
  47105. {
  47106. name: "Normal",
  47107. height: math.unit(6, "feet"),
  47108. default: true
  47109. },
  47110. ]
  47111. ))
  47112. characterMakers.push(() => makeCharacter(
  47113. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47114. {
  47115. front: {
  47116. height: math.unit(9, "feet"),
  47117. weight: math.unit(400, "lb"),
  47118. name: "Front",
  47119. image: {
  47120. source: "./media/characters/kil'aman/front.svg",
  47121. extra: 1210/1159,
  47122. bottom: 109/1319
  47123. }
  47124. },
  47125. head: {
  47126. height: math.unit(2.14, "feet"),
  47127. name: "Head",
  47128. image: {
  47129. source: "./media/characters/kil'aman/head.svg"
  47130. }
  47131. },
  47132. maw: {
  47133. height: math.unit(1.21, "feet"),
  47134. name: "Maw",
  47135. image: {
  47136. source: "./media/characters/kil'aman/maw.svg"
  47137. }
  47138. },
  47139. foot: {
  47140. height: math.unit(1.7, "feet"),
  47141. name: "Foot",
  47142. image: {
  47143. source: "./media/characters/kil'aman/foot.svg"
  47144. }
  47145. },
  47146. dick: {
  47147. height: math.unit(2.1, "feet"),
  47148. name: "Dick",
  47149. image: {
  47150. source: "./media/characters/kil'aman/dick.svg"
  47151. }
  47152. },
  47153. },
  47154. [
  47155. {
  47156. name: "Normal",
  47157. height: math.unit(9, "feet")
  47158. },
  47159. {
  47160. name: "Canon Height",
  47161. height: math.unit(10, "miles"),
  47162. default: true
  47163. },
  47164. {
  47165. name: "Maximum",
  47166. height: math.unit(6e9, "miles")
  47167. },
  47168. ]
  47169. ))
  47170. characterMakers.push(() => makeCharacter(
  47171. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47172. {
  47173. front: {
  47174. height: math.unit(90, "feet"),
  47175. weight: math.unit(675000, "lb"),
  47176. name: "Front",
  47177. image: {
  47178. source: "./media/characters/qadan/front.svg",
  47179. extra: 1012/1004,
  47180. bottom: 78/1090
  47181. }
  47182. },
  47183. back: {
  47184. height: math.unit(90, "feet"),
  47185. weight: math.unit(675000, "lb"),
  47186. name: "Back",
  47187. image: {
  47188. source: "./media/characters/qadan/back.svg",
  47189. extra: 1042/1031,
  47190. bottom: 55/1097
  47191. }
  47192. },
  47193. armored: {
  47194. height: math.unit(90, "feet"),
  47195. weight: math.unit(675000, "lb"),
  47196. name: "Armored",
  47197. image: {
  47198. source: "./media/characters/qadan/armored.svg",
  47199. extra: 1047/1037,
  47200. bottom: 48/1095
  47201. }
  47202. },
  47203. },
  47204. [
  47205. {
  47206. name: "Normal",
  47207. height: math.unit(90, "feet"),
  47208. default: true
  47209. },
  47210. ]
  47211. ))
  47212. characterMakers.push(() => makeCharacter(
  47213. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47214. {
  47215. front: {
  47216. height: math.unit(6, "feet"),
  47217. weight: math.unit(225, "lb"),
  47218. name: "Front",
  47219. image: {
  47220. source: "./media/characters/brooke/front.svg",
  47221. extra: 1050/1010,
  47222. bottom: 66/1116
  47223. }
  47224. },
  47225. back: {
  47226. height: math.unit(6, "feet"),
  47227. weight: math.unit(225, "lb"),
  47228. name: "Back",
  47229. image: {
  47230. source: "./media/characters/brooke/back.svg",
  47231. extra: 1053/1013,
  47232. bottom: 41/1094
  47233. }
  47234. },
  47235. dressed: {
  47236. height: math.unit(6, "feet"),
  47237. weight: math.unit(225, "lb"),
  47238. name: "Dressed",
  47239. image: {
  47240. source: "./media/characters/brooke/dressed.svg",
  47241. extra: 1050/1010,
  47242. bottom: 66/1116
  47243. }
  47244. },
  47245. },
  47246. [
  47247. {
  47248. name: "Canon Height",
  47249. height: math.unit(500, "miles"),
  47250. default: true
  47251. },
  47252. ]
  47253. ))
  47254. characterMakers.push(() => makeCharacter(
  47255. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47256. {
  47257. front: {
  47258. height: math.unit(6 + 2/12, "feet"),
  47259. weight: math.unit(210, "lb"),
  47260. name: "Front",
  47261. image: {
  47262. source: "./media/characters/wubs/front.svg",
  47263. extra: 1345/1325,
  47264. bottom: 70/1415
  47265. }
  47266. },
  47267. back: {
  47268. height: math.unit(6 + 2/12, "feet"),
  47269. weight: math.unit(210, "lb"),
  47270. name: "Back",
  47271. image: {
  47272. source: "./media/characters/wubs/back.svg",
  47273. extra: 1296/1275,
  47274. bottom: 58/1354
  47275. }
  47276. },
  47277. },
  47278. [
  47279. {
  47280. name: "Normal",
  47281. height: math.unit(6 + 2/12, "feet"),
  47282. default: true
  47283. },
  47284. {
  47285. name: "Macro",
  47286. height: math.unit(1000, "feet")
  47287. },
  47288. {
  47289. name: "Megamacro",
  47290. height: math.unit(1, "mile")
  47291. },
  47292. ]
  47293. ))
  47294. characterMakers.push(() => makeCharacter(
  47295. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47296. {
  47297. front: {
  47298. height: math.unit(4, "feet"),
  47299. weight: math.unit(120, "lb"),
  47300. name: "Front",
  47301. image: {
  47302. source: "./media/characters/blue/front.svg",
  47303. extra: 1636/1525,
  47304. bottom: 43/1679
  47305. }
  47306. },
  47307. back: {
  47308. height: math.unit(4, "feet"),
  47309. weight: math.unit(120, "lb"),
  47310. name: "Back",
  47311. image: {
  47312. source: "./media/characters/blue/back.svg",
  47313. extra: 1660/1560,
  47314. bottom: 57/1717
  47315. }
  47316. },
  47317. paws: {
  47318. height: math.unit(0.826, "feet"),
  47319. name: "Paws",
  47320. image: {
  47321. source: "./media/characters/blue/paws.svg"
  47322. }
  47323. },
  47324. },
  47325. [
  47326. {
  47327. name: "Micro",
  47328. height: math.unit(3, "inches")
  47329. },
  47330. {
  47331. name: "Normal",
  47332. height: math.unit(4, "feet"),
  47333. default: true
  47334. },
  47335. {
  47336. name: "Femenine Form",
  47337. height: math.unit(14, "feet")
  47338. },
  47339. {
  47340. name: "Werebat Form",
  47341. height: math.unit(18, "feet")
  47342. },
  47343. ]
  47344. ))
  47345. characterMakers.push(() => makeCharacter(
  47346. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47347. {
  47348. female: {
  47349. height: math.unit(7 + 4/12, "feet"),
  47350. weight: math.unit(243, "lb"),
  47351. name: "Female",
  47352. image: {
  47353. source: "./media/characters/kaya/female.svg",
  47354. extra: 975/898,
  47355. bottom: 34/1009
  47356. }
  47357. },
  47358. herm: {
  47359. height: math.unit(7 + 4/12, "feet"),
  47360. weight: math.unit(243, "lb"),
  47361. name: "Herm",
  47362. image: {
  47363. source: "./media/characters/kaya/herm.svg",
  47364. extra: 975/898,
  47365. bottom: 34/1009
  47366. }
  47367. },
  47368. },
  47369. [
  47370. {
  47371. name: "Normal",
  47372. height: math.unit(7 + 4/12, "feet"),
  47373. default: true
  47374. },
  47375. ]
  47376. ))
  47377. characterMakers.push(() => makeCharacter(
  47378. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47379. {
  47380. female: {
  47381. height: math.unit(9 + 4/12, "feet"),
  47382. weight: math.unit(398, "lb"),
  47383. name: "Female",
  47384. image: {
  47385. source: "./media/characters/kassandra/female.svg",
  47386. extra: 908/839,
  47387. bottom: 61/969
  47388. }
  47389. },
  47390. intersex: {
  47391. height: math.unit(9 + 4/12, "feet"),
  47392. weight: math.unit(398, "lb"),
  47393. name: "Intersex",
  47394. image: {
  47395. source: "./media/characters/kassandra/intersex.svg",
  47396. extra: 908/839,
  47397. bottom: 61/969
  47398. }
  47399. },
  47400. },
  47401. [
  47402. {
  47403. name: "Normal",
  47404. height: math.unit(9 + 4/12, "feet"),
  47405. default: true
  47406. },
  47407. ]
  47408. ))
  47409. characterMakers.push(() => makeCharacter(
  47410. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47411. {
  47412. front: {
  47413. height: math.unit(3, "meters"),
  47414. name: "Front",
  47415. image: {
  47416. source: "./media/characters/amy/front.svg",
  47417. extra: 1380/1343,
  47418. bottom: 70/1450
  47419. }
  47420. },
  47421. back: {
  47422. height: math.unit(3, "meters"),
  47423. name: "Back",
  47424. image: {
  47425. source: "./media/characters/amy/back.svg",
  47426. extra: 1380/1347,
  47427. bottom: 66/1446
  47428. }
  47429. },
  47430. },
  47431. [
  47432. {
  47433. name: "Normal",
  47434. height: math.unit(3, "meters"),
  47435. default: true
  47436. },
  47437. ]
  47438. ))
  47439. characterMakers.push(() => makeCharacter(
  47440. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47441. {
  47442. side: {
  47443. height: math.unit(47, "cm"),
  47444. weight: math.unit(10.8, "kg"),
  47445. name: "Side",
  47446. image: {
  47447. source: "./media/characters/alphaschakal/side.svg",
  47448. extra: 1058/568,
  47449. bottom: 62/1120
  47450. }
  47451. },
  47452. back: {
  47453. height: math.unit(78, "cm"),
  47454. weight: math.unit(10.8, "kg"),
  47455. name: "Back",
  47456. image: {
  47457. source: "./media/characters/alphaschakal/back.svg",
  47458. extra: 1102/942,
  47459. bottom: 185/1287
  47460. }
  47461. },
  47462. head: {
  47463. height: math.unit(28, "cm"),
  47464. name: "Head",
  47465. image: {
  47466. source: "./media/characters/alphaschakal/head.svg",
  47467. extra: 696/508,
  47468. bottom: 0/696
  47469. }
  47470. },
  47471. paw: {
  47472. height: math.unit(16, "cm"),
  47473. name: "Paw",
  47474. image: {
  47475. source: "./media/characters/alphaschakal/paw.svg"
  47476. }
  47477. },
  47478. },
  47479. [
  47480. {
  47481. name: "Normal",
  47482. height: math.unit(47, "cm"),
  47483. default: true
  47484. },
  47485. {
  47486. name: "Macro",
  47487. height: math.unit(340, "cm")
  47488. },
  47489. ]
  47490. ))
  47491. characterMakers.push(() => makeCharacter(
  47492. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47493. {
  47494. front: {
  47495. height: math.unit(36, "earths"),
  47496. name: "Front",
  47497. image: {
  47498. source: "./media/characters/ecobyss/front.svg",
  47499. extra: 1282/1215,
  47500. bottom: 11/1293
  47501. }
  47502. },
  47503. back: {
  47504. height: math.unit(36, "earths"),
  47505. name: "Back",
  47506. image: {
  47507. source: "./media/characters/ecobyss/back.svg",
  47508. extra: 1291/1222,
  47509. bottom: 8/1299
  47510. }
  47511. },
  47512. },
  47513. [
  47514. {
  47515. name: "Normal",
  47516. height: math.unit(36, "earths"),
  47517. default: true
  47518. },
  47519. ]
  47520. ))
  47521. characterMakers.push(() => makeCharacter(
  47522. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47523. {
  47524. front: {
  47525. height: math.unit(12, "feet"),
  47526. name: "Front",
  47527. image: {
  47528. source: "./media/characters/vasuk/front.svg",
  47529. extra: 1326/1207,
  47530. bottom: 64/1390
  47531. }
  47532. },
  47533. },
  47534. [
  47535. {
  47536. name: "Normal",
  47537. height: math.unit(12, "feet"),
  47538. default: true
  47539. },
  47540. ]
  47541. ))
  47542. characterMakers.push(() => makeCharacter(
  47543. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47544. {
  47545. side: {
  47546. height: math.unit(100, "feet"),
  47547. name: "Side",
  47548. image: {
  47549. source: "./media/characters/linneaus/side.svg",
  47550. extra: 987/807,
  47551. bottom: 47/1034
  47552. }
  47553. },
  47554. },
  47555. [
  47556. {
  47557. name: "Macro",
  47558. height: math.unit(100, "feet"),
  47559. default: true
  47560. },
  47561. ]
  47562. ))
  47563. characterMakers.push(() => makeCharacter(
  47564. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47565. {
  47566. front: {
  47567. height: math.unit(8, "feet"),
  47568. weight: math.unit(1200, "lb"),
  47569. name: "Front",
  47570. image: {
  47571. source: "./media/characters/nyterious-daligdig/front.svg",
  47572. extra: 1284/1094,
  47573. bottom: 84/1368
  47574. }
  47575. },
  47576. back: {
  47577. height: math.unit(8, "feet"),
  47578. weight: math.unit(1200, "lb"),
  47579. name: "Back",
  47580. image: {
  47581. source: "./media/characters/nyterious-daligdig/back.svg",
  47582. extra: 1301/1121,
  47583. bottom: 129/1430
  47584. }
  47585. },
  47586. mouth: {
  47587. height: math.unit(1.464, "feet"),
  47588. name: "Mouth",
  47589. image: {
  47590. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47591. }
  47592. },
  47593. },
  47594. [
  47595. {
  47596. name: "Small",
  47597. height: math.unit(8, "feet"),
  47598. default: true
  47599. },
  47600. {
  47601. name: "Normal",
  47602. height: math.unit(15, "feet")
  47603. },
  47604. {
  47605. name: "Macro",
  47606. height: math.unit(90, "feet")
  47607. },
  47608. ]
  47609. ))
  47610. characterMakers.push(() => makeCharacter(
  47611. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47612. {
  47613. front: {
  47614. height: math.unit(7 + 4/12, "feet"),
  47615. weight: math.unit(252, "lb"),
  47616. name: "Front",
  47617. image: {
  47618. source: "./media/characters/bandel/front.svg",
  47619. extra: 1946/1775,
  47620. bottom: 26/1972
  47621. }
  47622. },
  47623. back: {
  47624. height: math.unit(7 + 4/12, "feet"),
  47625. weight: math.unit(252, "lb"),
  47626. name: "Back",
  47627. image: {
  47628. source: "./media/characters/bandel/back.svg",
  47629. extra: 1940/1770,
  47630. bottom: 25/1965
  47631. }
  47632. },
  47633. maw: {
  47634. height: math.unit(2.15, "feet"),
  47635. name: "Maw",
  47636. image: {
  47637. source: "./media/characters/bandel/maw.svg"
  47638. }
  47639. },
  47640. stomach: {
  47641. height: math.unit(1.95, "feet"),
  47642. name: "Stomach",
  47643. image: {
  47644. source: "./media/characters/bandel/stomach.svg"
  47645. }
  47646. },
  47647. },
  47648. [
  47649. {
  47650. name: "Normal",
  47651. height: math.unit(7 + 4/12, "feet"),
  47652. default: true
  47653. },
  47654. ]
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47658. {
  47659. front: {
  47660. height: math.unit(10 + 5/12, "feet"),
  47661. weight: math.unit(773.5, "kg"),
  47662. name: "Front",
  47663. image: {
  47664. source: "./media/characters/zed/front.svg",
  47665. extra: 987/941,
  47666. bottom: 52/1039
  47667. }
  47668. },
  47669. },
  47670. [
  47671. {
  47672. name: "Short",
  47673. height: math.unit(5 + 4/12, "feet")
  47674. },
  47675. {
  47676. name: "Average",
  47677. height: math.unit(10 + 5/12, "feet"),
  47678. default: true
  47679. },
  47680. {
  47681. name: "Mini-Macro",
  47682. height: math.unit(24 + 9/12, "feet")
  47683. },
  47684. {
  47685. name: "Macro",
  47686. height: math.unit(249, "feet")
  47687. },
  47688. {
  47689. name: "Mega-Macro",
  47690. height: math.unit(12490, "feet")
  47691. },
  47692. {
  47693. name: "Giga-Macro",
  47694. height: math.unit(24.9, "miles")
  47695. },
  47696. {
  47697. name: "Tera-Macro",
  47698. height: math.unit(24900, "miles")
  47699. },
  47700. {
  47701. name: "Cosmic Scale",
  47702. height: math.unit(38.9, "lightyears")
  47703. },
  47704. {
  47705. name: "Universal Scale",
  47706. height: math.unit(138e12, "lightyears")
  47707. },
  47708. ]
  47709. ))
  47710. characterMakers.push(() => makeCharacter(
  47711. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47712. {
  47713. front: {
  47714. height: math.unit(1561, "inches"),
  47715. name: "Front",
  47716. image: {
  47717. source: "./media/characters/ivan/front.svg",
  47718. extra: 1126/1071,
  47719. bottom: 26/1152
  47720. }
  47721. },
  47722. back: {
  47723. height: math.unit(1561, "inches"),
  47724. name: "Back",
  47725. image: {
  47726. source: "./media/characters/ivan/back.svg",
  47727. extra: 1134/1079,
  47728. bottom: 30/1164
  47729. }
  47730. },
  47731. },
  47732. [
  47733. {
  47734. name: "Normal",
  47735. height: math.unit(1561, "inches"),
  47736. default: true
  47737. },
  47738. ]
  47739. ))
  47740. characterMakers.push(() => makeCharacter(
  47741. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47742. {
  47743. front: {
  47744. height: math.unit(5 + 7/12, "feet"),
  47745. weight: math.unit(150, "lb"),
  47746. name: "Front",
  47747. image: {
  47748. source: "./media/characters/robin-arctic-hare/front.svg",
  47749. extra: 1148/974,
  47750. bottom: 20/1168
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(5 + 7/12, "feet"),
  47758. default: true
  47759. },
  47760. ]
  47761. ))
  47762. characterMakers.push(() => makeCharacter(
  47763. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47764. {
  47765. side: {
  47766. height: math.unit(5, "feet"),
  47767. name: "Side",
  47768. image: {
  47769. source: "./media/characters/birch/side.svg",
  47770. extra: 985/796,
  47771. bottom: 111/1096
  47772. }
  47773. },
  47774. },
  47775. [
  47776. {
  47777. name: "Normal",
  47778. height: math.unit(5, "feet"),
  47779. default: true
  47780. },
  47781. ]
  47782. ))
  47783. characterMakers.push(() => makeCharacter(
  47784. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47785. {
  47786. front: {
  47787. height: math.unit(4, "feet"),
  47788. name: "Front",
  47789. image: {
  47790. source: "./media/characters/rasp/front.svg",
  47791. extra: 561/478,
  47792. bottom: 74/635
  47793. }
  47794. },
  47795. },
  47796. [
  47797. {
  47798. name: "Normal",
  47799. height: math.unit(4, "feet"),
  47800. default: true
  47801. },
  47802. ]
  47803. ))
  47804. characterMakers.push(() => makeCharacter(
  47805. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47806. {
  47807. front: {
  47808. height: math.unit(4 + 6/12, "feet"),
  47809. name: "Front",
  47810. image: {
  47811. source: "./media/characters/agatha/front.svg",
  47812. extra: 947/933,
  47813. bottom: 42/989
  47814. }
  47815. },
  47816. back: {
  47817. height: math.unit(4 + 6/12, "feet"),
  47818. name: "Back",
  47819. image: {
  47820. source: "./media/characters/agatha/back.svg",
  47821. extra: 935/922,
  47822. bottom: 48/983
  47823. }
  47824. },
  47825. },
  47826. [
  47827. {
  47828. name: "Normal",
  47829. height: math.unit(4 + 6 /12, "feet"),
  47830. default: true
  47831. },
  47832. {
  47833. name: "Max Size",
  47834. height: math.unit(500, "feet")
  47835. },
  47836. ]
  47837. ))
  47838. characterMakers.push(() => makeCharacter(
  47839. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47840. {
  47841. side: {
  47842. height: math.unit(30, "feet"),
  47843. name: "Side",
  47844. image: {
  47845. source: "./media/characters/roggy/side.svg",
  47846. extra: 909/643,
  47847. bottom: 63/972
  47848. }
  47849. },
  47850. lounging: {
  47851. height: math.unit(20, "feet"),
  47852. name: "Lounging",
  47853. image: {
  47854. source: "./media/characters/roggy/lounging.svg",
  47855. extra: 643/479,
  47856. bottom: 145/788
  47857. }
  47858. },
  47859. handpaw: {
  47860. height: math.unit(13.1, "feet"),
  47861. name: "Handpaw",
  47862. image: {
  47863. source: "./media/characters/roggy/handpaw.svg"
  47864. }
  47865. },
  47866. footpaw: {
  47867. height: math.unit(15.8, "feet"),
  47868. name: "Footpaw",
  47869. image: {
  47870. source: "./media/characters/roggy/footpaw.svg"
  47871. }
  47872. },
  47873. },
  47874. [
  47875. {
  47876. name: "Menacing",
  47877. height: math.unit(30, "feet"),
  47878. default: true
  47879. },
  47880. ]
  47881. ))
  47882. characterMakers.push(() => makeCharacter(
  47883. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47884. {
  47885. front: {
  47886. height: math.unit(5 + 7/12, "feet"),
  47887. weight: math.unit(135, "lb"),
  47888. name: "Front",
  47889. image: {
  47890. source: "./media/characters/naomi/front.svg",
  47891. extra: 1209/1154,
  47892. bottom: 129/1338
  47893. }
  47894. },
  47895. back: {
  47896. height: math.unit(5 + 7/12, "feet"),
  47897. weight: math.unit(135, "lb"),
  47898. name: "Back",
  47899. image: {
  47900. source: "./media/characters/naomi/back.svg",
  47901. extra: 1252/1190,
  47902. bottom: 23/1275
  47903. }
  47904. },
  47905. },
  47906. [
  47907. {
  47908. name: "Normal",
  47909. height: math.unit(5 + 7 /12, "feet"),
  47910. default: true
  47911. },
  47912. ]
  47913. ))
  47914. characterMakers.push(() => makeCharacter(
  47915. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47916. {
  47917. side: {
  47918. height: math.unit(35, "meters"),
  47919. name: "Side",
  47920. image: {
  47921. source: "./media/characters/kimpi/side.svg",
  47922. extra: 419/382,
  47923. bottom: 63/482
  47924. }
  47925. },
  47926. hand: {
  47927. height: math.unit(8.96, "meters"),
  47928. name: "Hand",
  47929. image: {
  47930. source: "./media/characters/kimpi/hand.svg"
  47931. }
  47932. },
  47933. },
  47934. [
  47935. {
  47936. name: "Normal",
  47937. height: math.unit(35, "meters"),
  47938. default: true
  47939. },
  47940. ]
  47941. ))
  47942. characterMakers.push(() => makeCharacter(
  47943. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47944. {
  47945. front: {
  47946. height: math.unit(4 + 4/12, "feet"),
  47947. name: "Front",
  47948. image: {
  47949. source: "./media/characters/pepper-purrloin/front.svg",
  47950. extra: 1141/1024,
  47951. bottom: 21/1162
  47952. }
  47953. },
  47954. },
  47955. [
  47956. {
  47957. name: "Normal",
  47958. height: math.unit(4 + 4/12, "feet"),
  47959. default: true
  47960. },
  47961. ]
  47962. ))
  47963. characterMakers.push(() => makeCharacter(
  47964. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47965. {
  47966. front: {
  47967. height: math.unit(6 + 2/12, "feet"),
  47968. name: "Front",
  47969. image: {
  47970. source: "./media/characters/raphael/front.svg",
  47971. extra: 1101/962,
  47972. bottom: 59/1160
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Normal",
  47979. height: math.unit(6 + 2/12, "feet"),
  47980. default: true
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47986. {
  47987. front: {
  47988. height: math.unit(6, "feet"),
  47989. weight: math.unit(150, "lb"),
  47990. name: "Front",
  47991. image: {
  47992. source: "./media/characters/victor-williams/front.svg",
  47993. extra: 1894/1825,
  47994. bottom: 67/1961
  47995. }
  47996. },
  47997. },
  47998. [
  47999. {
  48000. name: "Normal",
  48001. height: math.unit(6, "feet"),
  48002. default: true
  48003. },
  48004. ]
  48005. ))
  48006. characterMakers.push(() => makeCharacter(
  48007. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48008. {
  48009. front: {
  48010. height: math.unit(5 + 8/12, "feet"),
  48011. weight: math.unit(150, "lb"),
  48012. name: "Front",
  48013. image: {
  48014. source: "./media/characters/rachel/front.svg",
  48015. extra: 1902/1787,
  48016. bottom: 46/1948
  48017. }
  48018. },
  48019. },
  48020. [
  48021. {
  48022. name: "Base Height",
  48023. height: math.unit(5 + 8/12, "feet"),
  48024. default: true
  48025. },
  48026. {
  48027. name: "Macro",
  48028. height: math.unit(200, "feet")
  48029. },
  48030. {
  48031. name: "Mega Macro",
  48032. height: math.unit(1, "mile")
  48033. },
  48034. {
  48035. name: "Giga Macro",
  48036. height: math.unit(1500, "miles")
  48037. },
  48038. {
  48039. name: "Tera Macro",
  48040. height: math.unit(8000, "miles")
  48041. },
  48042. {
  48043. name: "Tera Macro+",
  48044. height: math.unit(2e5, "miles")
  48045. },
  48046. ]
  48047. ))
  48048. characterMakers.push(() => makeCharacter(
  48049. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48050. {
  48051. front: {
  48052. height: math.unit(6.5, "feet"),
  48053. name: "Front",
  48054. image: {
  48055. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48056. extra: 860/819,
  48057. bottom: 307/1167
  48058. }
  48059. },
  48060. back: {
  48061. height: math.unit(6.5, "feet"),
  48062. name: "Back",
  48063. image: {
  48064. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48065. extra: 880/837,
  48066. bottom: 395/1275
  48067. }
  48068. },
  48069. sleeping: {
  48070. height: math.unit(2.79, "feet"),
  48071. name: "Sleeping",
  48072. image: {
  48073. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48074. extra: 465/383,
  48075. bottom: 263/728
  48076. }
  48077. },
  48078. maw: {
  48079. height: math.unit(2.52, "feet"),
  48080. name: "Maw",
  48081. image: {
  48082. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48083. }
  48084. },
  48085. },
  48086. [
  48087. {
  48088. name: "Normal",
  48089. height: math.unit(6.5, "feet"),
  48090. default: true
  48091. },
  48092. ]
  48093. ))
  48094. characterMakers.push(() => makeCharacter(
  48095. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48096. {
  48097. front: {
  48098. height: math.unit(5, "feet"),
  48099. name: "Front",
  48100. image: {
  48101. source: "./media/characters/nova-nerium/front.svg",
  48102. extra: 1548/1392,
  48103. bottom: 374/1922
  48104. }
  48105. },
  48106. back: {
  48107. height: math.unit(5, "feet"),
  48108. name: "Back",
  48109. image: {
  48110. source: "./media/characters/nova-nerium/back.svg",
  48111. extra: 1658/1468,
  48112. bottom: 257/1915
  48113. }
  48114. },
  48115. },
  48116. [
  48117. {
  48118. name: "Normal",
  48119. height: math.unit(5, "feet"),
  48120. default: true
  48121. },
  48122. ]
  48123. ))
  48124. characterMakers.push(() => makeCharacter(
  48125. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48126. {
  48127. front: {
  48128. height: math.unit(5 + 4/12, "feet"),
  48129. name: "Front",
  48130. image: {
  48131. source: "./media/characters/ashe-pyriph/front.svg",
  48132. extra: 1935/1747,
  48133. bottom: 60/1995
  48134. }
  48135. },
  48136. },
  48137. [
  48138. {
  48139. name: "Normal",
  48140. height: math.unit(5 + 4/12, "feet"),
  48141. default: true
  48142. },
  48143. ]
  48144. ))
  48145. characterMakers.push(() => makeCharacter(
  48146. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48147. {
  48148. front: {
  48149. height: math.unit(8.7, "feet"),
  48150. name: "Front",
  48151. image: {
  48152. source: "./media/characters/flicker-wisp/front.svg",
  48153. extra: 1835/1613,
  48154. bottom: 449/2284
  48155. }
  48156. },
  48157. side: {
  48158. height: math.unit(8.7, "feet"),
  48159. name: "Side",
  48160. image: {
  48161. source: "./media/characters/flicker-wisp/side.svg",
  48162. extra: 1841/1642,
  48163. bottom: 336/2177
  48164. },
  48165. default: true
  48166. },
  48167. maw: {
  48168. height: math.unit(3.35, "feet"),
  48169. name: "Maw",
  48170. image: {
  48171. source: "./media/characters/flicker-wisp/maw.svg",
  48172. extra: 2338/1506,
  48173. bottom: 0/2338
  48174. }
  48175. },
  48176. ovipositor: {
  48177. height: math.unit(4.95, "feet"),
  48178. name: "Ovipositor",
  48179. image: {
  48180. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48181. }
  48182. },
  48183. egg: {
  48184. height: math.unit(0.385, "feet"),
  48185. weight: math.unit(2, "lb"),
  48186. name: "Egg",
  48187. image: {
  48188. source: "./media/characters/flicker-wisp/egg.svg"
  48189. }
  48190. },
  48191. },
  48192. [
  48193. {
  48194. name: "Normal",
  48195. height: math.unit(8.7, "feet"),
  48196. default: true
  48197. },
  48198. ]
  48199. ))
  48200. characterMakers.push(() => makeCharacter(
  48201. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48202. {
  48203. side: {
  48204. height: math.unit(11, "feet"),
  48205. name: "Side",
  48206. image: {
  48207. source: "./media/characters/faefnul/side.svg",
  48208. extra: 1100/1007,
  48209. bottom: 0/1100
  48210. }
  48211. },
  48212. },
  48213. [
  48214. {
  48215. name: "Normal",
  48216. height: math.unit(11, "feet"),
  48217. default: true
  48218. },
  48219. ]
  48220. ))
  48221. characterMakers.push(() => makeCharacter(
  48222. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48223. {
  48224. front: {
  48225. height: math.unit(6 + 2/12, "feet"),
  48226. name: "Front",
  48227. image: {
  48228. source: "./media/characters/shady/front.svg",
  48229. extra: 502/461,
  48230. bottom: 9/511
  48231. }
  48232. },
  48233. kneeling: {
  48234. height: math.unit(4.6, "feet"),
  48235. name: "Kneeling",
  48236. image: {
  48237. source: "./media/characters/shady/kneeling.svg",
  48238. extra: 1328/1219,
  48239. bottom: 117/1445
  48240. }
  48241. },
  48242. maw: {
  48243. height: math.unit(2, "feet"),
  48244. name: "Maw",
  48245. image: {
  48246. source: "./media/characters/shady/maw.svg"
  48247. }
  48248. },
  48249. },
  48250. [
  48251. {
  48252. name: "Nano",
  48253. height: math.unit(1, "mm")
  48254. },
  48255. {
  48256. name: "Micro",
  48257. height: math.unit(12, "mm")
  48258. },
  48259. {
  48260. name: "Tiny",
  48261. height: math.unit(3, "inches")
  48262. },
  48263. {
  48264. name: "Normal",
  48265. height: math.unit(6 + 2/12, "feet"),
  48266. default: true
  48267. },
  48268. {
  48269. name: "Big",
  48270. height: math.unit(15, "feet")
  48271. },
  48272. {
  48273. name: "Macro",
  48274. height: math.unit(150, "feet")
  48275. },
  48276. {
  48277. name: "Titanic",
  48278. height: math.unit(500, "feet")
  48279. },
  48280. ]
  48281. ))
  48282. characterMakers.push(() => makeCharacter(
  48283. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48284. {
  48285. front: {
  48286. height: math.unit(12, "feet"),
  48287. name: "Front",
  48288. image: {
  48289. source: "./media/characters/fenrir/front.svg",
  48290. extra: 968/875,
  48291. bottom: 22/990
  48292. }
  48293. },
  48294. },
  48295. [
  48296. {
  48297. name: "Big",
  48298. height: math.unit(12, "feet"),
  48299. default: true
  48300. },
  48301. ]
  48302. ))
  48303. characterMakers.push(() => makeCharacter(
  48304. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48305. {
  48306. front: {
  48307. height: math.unit(5 + 4/12, "feet"),
  48308. name: "Front",
  48309. image: {
  48310. source: "./media/characters/makar/front.svg",
  48311. extra: 1181/1112,
  48312. bottom: 78/1259
  48313. }
  48314. },
  48315. },
  48316. [
  48317. {
  48318. name: "Normal",
  48319. height: math.unit(5 + 4/12, "feet"),
  48320. default: true
  48321. },
  48322. ]
  48323. ))
  48324. characterMakers.push(() => makeCharacter(
  48325. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48326. {
  48327. front: {
  48328. height: math.unit(5 + 7/12, "feet"),
  48329. name: "Front",
  48330. image: {
  48331. source: "./media/characters/callow/front.svg",
  48332. extra: 1482/1304,
  48333. bottom: 23/1505
  48334. }
  48335. },
  48336. back: {
  48337. height: math.unit(5 + 7/12, "feet"),
  48338. name: "Back",
  48339. image: {
  48340. source: "./media/characters/callow/back.svg",
  48341. extra: 1484/1296,
  48342. bottom: 25/1509
  48343. }
  48344. },
  48345. },
  48346. [
  48347. {
  48348. name: "Micro",
  48349. height: math.unit(3, "inches"),
  48350. default: true
  48351. },
  48352. {
  48353. name: "Normal",
  48354. height: math.unit(5 + 7/12, "feet")
  48355. },
  48356. ]
  48357. ))
  48358. characterMakers.push(() => makeCharacter(
  48359. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48360. {
  48361. front: {
  48362. height: math.unit(6 + 2/12, "feet"),
  48363. name: "Front",
  48364. image: {
  48365. source: "./media/characters/natel/front.svg",
  48366. extra: 1833/1692,
  48367. bottom: 166/1999
  48368. }
  48369. },
  48370. },
  48371. [
  48372. {
  48373. name: "Normal",
  48374. height: math.unit(6 + 2/12, "feet"),
  48375. default: true
  48376. },
  48377. ]
  48378. ))
  48379. characterMakers.push(() => makeCharacter(
  48380. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48381. {
  48382. front: {
  48383. height: math.unit(1.75, "meters"),
  48384. name: "Front",
  48385. image: {
  48386. source: "./media/characters/misu/front.svg",
  48387. extra: 1690/1558,
  48388. bottom: 234/1924
  48389. }
  48390. },
  48391. back: {
  48392. height: math.unit(1.75, "meters"),
  48393. name: "Back",
  48394. image: {
  48395. source: "./media/characters/misu/back.svg",
  48396. extra: 1762/1618,
  48397. bottom: 146/1908
  48398. }
  48399. },
  48400. frontNude: {
  48401. height: math.unit(1.75, "meters"),
  48402. name: "Front (Nude)",
  48403. image: {
  48404. source: "./media/characters/misu/front-nude.svg",
  48405. extra: 1690/1558,
  48406. bottom: 234/1924
  48407. }
  48408. },
  48409. backNude: {
  48410. height: math.unit(1.75, "meters"),
  48411. name: "Back (Nude)",
  48412. image: {
  48413. source: "./media/characters/misu/back-nude.svg",
  48414. extra: 1762/1618,
  48415. bottom: 146/1908
  48416. }
  48417. },
  48418. frontErect: {
  48419. height: math.unit(1.75, "meters"),
  48420. name: "Front (Erect)",
  48421. image: {
  48422. source: "./media/characters/misu/front-erect.svg",
  48423. extra: 1690/1558,
  48424. bottom: 234/1924
  48425. }
  48426. },
  48427. maw: {
  48428. height: math.unit(0.47, "meters"),
  48429. name: "Maw",
  48430. image: {
  48431. source: "./media/characters/misu/maw.svg"
  48432. }
  48433. },
  48434. head: {
  48435. height: math.unit(0.35, "meters"),
  48436. name: "Head",
  48437. image: {
  48438. source: "./media/characters/misu/head.svg"
  48439. }
  48440. },
  48441. rear: {
  48442. height: math.unit(0.47, "meters"),
  48443. name: "Rear",
  48444. image: {
  48445. source: "./media/characters/misu/rear.svg"
  48446. }
  48447. },
  48448. },
  48449. [
  48450. {
  48451. name: "Normal",
  48452. height: math.unit(1.75, "meters")
  48453. },
  48454. {
  48455. name: "Not good for the people",
  48456. height: math.unit(42, "meters")
  48457. },
  48458. {
  48459. name: "Not good for the neighborhood",
  48460. height: math.unit(135, "meters")
  48461. },
  48462. {
  48463. name: "Bit bigger problem",
  48464. height: math.unit(380, "meters"),
  48465. default: true
  48466. },
  48467. {
  48468. name: "Not good for the city",
  48469. height: math.unit(1.5, "km")
  48470. },
  48471. {
  48472. name: "Not good for the county",
  48473. height: math.unit(5.5, "km")
  48474. },
  48475. {
  48476. name: "Not good for the state",
  48477. height: math.unit(25, "km")
  48478. },
  48479. {
  48480. name: "Not good for the country",
  48481. height: math.unit(125, "km")
  48482. },
  48483. {
  48484. name: "Not good for the continent",
  48485. height: math.unit(2100, "km")
  48486. },
  48487. {
  48488. name: "Not good for the planet",
  48489. height: math.unit(35000, "km")
  48490. },
  48491. {
  48492. name: "Just no",
  48493. height: math.unit(8.5e18, "km")
  48494. },
  48495. ]
  48496. ))
  48497. characterMakers.push(() => makeCharacter(
  48498. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48499. {
  48500. front: {
  48501. height: math.unit(6.5, "feet"),
  48502. name: "Front",
  48503. image: {
  48504. source: "./media/characters/poppy/front.svg",
  48505. extra: 1878/1812,
  48506. bottom: 43/1921
  48507. }
  48508. },
  48509. feet: {
  48510. height: math.unit(1.06, "feet"),
  48511. name: "Feet",
  48512. image: {
  48513. source: "./media/characters/poppy/feet.svg",
  48514. extra: 1083/1083,
  48515. bottom: 87/1170
  48516. }
  48517. },
  48518. },
  48519. [
  48520. {
  48521. name: "Human",
  48522. height: math.unit(6.5, "feet")
  48523. },
  48524. {
  48525. name: "Default",
  48526. height: math.unit(300, "feet"),
  48527. default: true
  48528. },
  48529. {
  48530. name: "Huge",
  48531. height: math.unit(850, "feet")
  48532. },
  48533. {
  48534. name: "Mega",
  48535. height: math.unit(8000, "feet")
  48536. },
  48537. {
  48538. name: "Giga",
  48539. height: math.unit(300, "miles")
  48540. },
  48541. ]
  48542. ))
  48543. characterMakers.push(() => makeCharacter(
  48544. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48545. {
  48546. bipedal: {
  48547. height: math.unit(7, "feet"),
  48548. name: "Bipedal",
  48549. image: {
  48550. source: "./media/characters/zener/bipedal.svg",
  48551. extra: 874/805,
  48552. bottom: 109/983
  48553. }
  48554. },
  48555. quadrupedal: {
  48556. height: math.unit(4.64, "feet"),
  48557. name: "Quadrupedal",
  48558. image: {
  48559. source: "./media/characters/zener/quadrupedal.svg",
  48560. extra: 638/507,
  48561. bottom: 190/828
  48562. }
  48563. },
  48564. cock: {
  48565. height: math.unit(18, "inches"),
  48566. name: "Cock",
  48567. image: {
  48568. source: "./media/characters/zener/cock.svg"
  48569. }
  48570. },
  48571. },
  48572. [
  48573. {
  48574. name: "Normal",
  48575. height: math.unit(7, "feet"),
  48576. default: true
  48577. },
  48578. ]
  48579. ))
  48580. characterMakers.push(() => makeCharacter(
  48581. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48582. {
  48583. nude: {
  48584. height: math.unit(5 + 6/12, "feet"),
  48585. name: "Nude",
  48586. image: {
  48587. source: "./media/characters/charlie-dog/nude.svg",
  48588. extra: 768/734,
  48589. bottom: 26/794
  48590. }
  48591. },
  48592. dressed: {
  48593. height: math.unit(5 + 6/12, "feet"),
  48594. name: "Dressed",
  48595. image: {
  48596. source: "./media/characters/charlie-dog/dressed.svg",
  48597. extra: 768/734,
  48598. bottom: 26/794
  48599. }
  48600. },
  48601. },
  48602. [
  48603. {
  48604. name: "Normal",
  48605. height: math.unit(5 + 6/12, "feet"),
  48606. default: true
  48607. },
  48608. ]
  48609. ))
  48610. characterMakers.push(() => makeCharacter(
  48611. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48612. {
  48613. front: {
  48614. height: math.unit(6 + 4/12, "feet"),
  48615. name: "Front",
  48616. image: {
  48617. source: "./media/characters/ir'istrasz/front.svg",
  48618. extra: 1014/977,
  48619. bottom: 65/1079
  48620. }
  48621. },
  48622. back: {
  48623. height: math.unit(6 + 4/12, "feet"),
  48624. name: "Back",
  48625. image: {
  48626. source: "./media/characters/ir'istrasz/back.svg",
  48627. extra: 1024/992,
  48628. bottom: 34/1058
  48629. }
  48630. },
  48631. },
  48632. [
  48633. {
  48634. name: "Normal",
  48635. height: math.unit(6 + 4/12, "feet"),
  48636. default: true
  48637. },
  48638. ]
  48639. ))
  48640. characterMakers.push(() => makeCharacter(
  48641. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48642. {
  48643. front: {
  48644. height: math.unit(5 + 8/12, "feet"),
  48645. name: "Front",
  48646. image: {
  48647. source: "./media/characters/dee-ditto/front.svg",
  48648. extra: 1874/1785,
  48649. bottom: 68/1942
  48650. }
  48651. },
  48652. back: {
  48653. height: math.unit(5 + 8/12, "feet"),
  48654. name: "Back",
  48655. image: {
  48656. source: "./media/characters/dee-ditto/back.svg",
  48657. extra: 1870/1783,
  48658. bottom: 77/1947
  48659. }
  48660. },
  48661. },
  48662. [
  48663. {
  48664. name: "Normal",
  48665. height: math.unit(5 + 8/12, "feet"),
  48666. default: true
  48667. },
  48668. ]
  48669. ))
  48670. characterMakers.push(() => makeCharacter(
  48671. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48672. {
  48673. front: {
  48674. height: math.unit(7 + 6/12, "feet"),
  48675. name: "Front",
  48676. image: {
  48677. source: "./media/characters/fey/front.svg",
  48678. extra: 995/979,
  48679. bottom: 30/1025
  48680. }
  48681. },
  48682. back: {
  48683. height: math.unit(7 + 6/12, "feet"),
  48684. name: "Back",
  48685. image: {
  48686. source: "./media/characters/fey/back.svg",
  48687. extra: 1079/1008,
  48688. bottom: 5/1084
  48689. }
  48690. },
  48691. dressed: {
  48692. height: math.unit(7 + 6/12, "feet"),
  48693. name: "Dressed",
  48694. image: {
  48695. source: "./media/characters/fey/dressed.svg",
  48696. extra: 995/979,
  48697. bottom: 30/1025
  48698. }
  48699. },
  48700. },
  48701. [
  48702. {
  48703. name: "Normal",
  48704. height: math.unit(7 + 6/12, "feet"),
  48705. default: true
  48706. },
  48707. ]
  48708. ))
  48709. characterMakers.push(() => makeCharacter(
  48710. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48711. {
  48712. standing: {
  48713. height: math.unit(17, "feet"),
  48714. name: "Standing",
  48715. image: {
  48716. source: "./media/characters/aster/standing.svg",
  48717. extra: 1798/1598,
  48718. bottom: 117/1915
  48719. }
  48720. },
  48721. },
  48722. [
  48723. {
  48724. name: "Normal",
  48725. height: math.unit(17, "feet"),
  48726. default: true
  48727. },
  48728. {
  48729. name: "Homewrecker",
  48730. height: math.unit(95, "feet")
  48731. },
  48732. {
  48733. name: "Planet Devourer",
  48734. height: math.unit(1008000, "miles")
  48735. },
  48736. ]
  48737. ))
  48738. characterMakers.push(() => makeCharacter(
  48739. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48740. {
  48741. front: {
  48742. height: math.unit(6 + 5/12, "feet"),
  48743. weight: math.unit(265, "lb"),
  48744. name: "Front",
  48745. image: {
  48746. source: "./media/characters/devon-childs/front.svg",
  48747. extra: 1795/1721,
  48748. bottom: 41/1836
  48749. }
  48750. },
  48751. side: {
  48752. height: math.unit(6 + 5/12, "feet"),
  48753. weight: math.unit(265, "lb"),
  48754. name: "Side",
  48755. image: {
  48756. source: "./media/characters/devon-childs/side.svg",
  48757. extra: 1812/1738,
  48758. bottom: 30/1842
  48759. }
  48760. },
  48761. back: {
  48762. height: math.unit(6 + 5/12, "feet"),
  48763. weight: math.unit(265, "lb"),
  48764. name: "Back",
  48765. image: {
  48766. source: "./media/characters/devon-childs/back.svg",
  48767. extra: 1808/1735,
  48768. bottom: 23/1831
  48769. }
  48770. },
  48771. hand: {
  48772. height: math.unit(1.464, "feet"),
  48773. name: "Hand",
  48774. image: {
  48775. source: "./media/characters/devon-childs/hand.svg"
  48776. }
  48777. },
  48778. foot: {
  48779. height: math.unit(1.6, "feet"),
  48780. name: "Foot",
  48781. image: {
  48782. source: "./media/characters/devon-childs/foot.svg"
  48783. }
  48784. },
  48785. },
  48786. [
  48787. {
  48788. name: "Micro",
  48789. height: math.unit(7, "cm")
  48790. },
  48791. {
  48792. name: "Normal",
  48793. height: math.unit(6 + 5/12, "feet"),
  48794. default: true
  48795. },
  48796. {
  48797. name: "Macro",
  48798. height: math.unit(154, "feet")
  48799. },
  48800. ]
  48801. ))
  48802. characterMakers.push(() => makeCharacter(
  48803. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48804. {
  48805. front: {
  48806. height: math.unit(6, "feet"),
  48807. weight: math.unit(180, "lb"),
  48808. name: "Front",
  48809. image: {
  48810. source: "./media/characters/lydemox-vir/front.svg",
  48811. extra: 1632/1435,
  48812. bottom: 58/1690
  48813. }
  48814. },
  48815. frontSFW: {
  48816. height: math.unit(6, "feet"),
  48817. weight: math.unit(180, "lb"),
  48818. name: "Front (SFW)",
  48819. image: {
  48820. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48821. extra: 1632/1435,
  48822. bottom: 58/1690
  48823. }
  48824. },
  48825. back: {
  48826. height: math.unit(6, "feet"),
  48827. weight: math.unit(180, "lb"),
  48828. name: "Back",
  48829. image: {
  48830. source: "./media/characters/lydemox-vir/back.svg",
  48831. extra: 1593/1408,
  48832. bottom: 31/1624
  48833. }
  48834. },
  48835. paw: {
  48836. height: math.unit(1.85, "feet"),
  48837. name: "Paw",
  48838. image: {
  48839. source: "./media/characters/lydemox-vir/paw.svg"
  48840. }
  48841. },
  48842. dick: {
  48843. height: math.unit(1.8, "feet"),
  48844. name: "Dick",
  48845. image: {
  48846. source: "./media/characters/lydemox-vir/dick.svg"
  48847. }
  48848. },
  48849. },
  48850. [
  48851. {
  48852. name: "Macro",
  48853. height: math.unit(100, "feet"),
  48854. default: true
  48855. },
  48856. {
  48857. name: "Teramacro",
  48858. height: math.unit(1, "earth")
  48859. },
  48860. {
  48861. name: "Planetary",
  48862. height: math.unit(20, "earths")
  48863. },
  48864. ]
  48865. ))
  48866. characterMakers.push(() => makeCharacter(
  48867. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48868. {
  48869. front: {
  48870. height: math.unit(15 + 8/12, "feet"),
  48871. weight: math.unit(1237, "kg"),
  48872. name: "Front",
  48873. image: {
  48874. source: "./media/characters/mia/front.svg",
  48875. extra: 1573/1446,
  48876. bottom: 58/1631
  48877. }
  48878. },
  48879. },
  48880. [
  48881. {
  48882. name: "Small",
  48883. height: math.unit(9 + 5/12, "feet")
  48884. },
  48885. {
  48886. name: "Normal",
  48887. height: math.unit(15 + 8/12, "feet"),
  48888. default: true
  48889. },
  48890. ]
  48891. ))
  48892. characterMakers.push(() => makeCharacter(
  48893. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48894. {
  48895. front: {
  48896. height: math.unit(10 + 6/12, "feet"),
  48897. weight: math.unit(1.3, "tons"),
  48898. name: "Front",
  48899. image: {
  48900. source: "./media/characters/mr-graves/front.svg",
  48901. extra: 1779/1695,
  48902. bottom: 198/1977
  48903. }
  48904. },
  48905. },
  48906. [
  48907. {
  48908. name: "Normal",
  48909. height: math.unit(10 + 6 /12, "feet"),
  48910. default: true
  48911. },
  48912. ]
  48913. ))
  48914. characterMakers.push(() => makeCharacter(
  48915. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48916. {
  48917. dressedFront: {
  48918. height: math.unit(5 + 8/12, "feet"),
  48919. weight: math.unit(125, "lb"),
  48920. name: "Dressed (Front)",
  48921. image: {
  48922. source: "./media/characters/jess/dressed-front.svg",
  48923. extra: 1176/1152,
  48924. bottom: 42/1218
  48925. }
  48926. },
  48927. dressedSide: {
  48928. height: math.unit(5 + 8/12, "feet"),
  48929. weight: math.unit(125, "lb"),
  48930. name: "Dressed (Side)",
  48931. image: {
  48932. source: "./media/characters/jess/dressed-side.svg",
  48933. extra: 1204/1190,
  48934. bottom: 6/1210
  48935. }
  48936. },
  48937. nudeFront: {
  48938. height: math.unit(5 + 8/12, "feet"),
  48939. weight: math.unit(125, "lb"),
  48940. name: "Nude (Front)",
  48941. image: {
  48942. source: "./media/characters/jess/nude-front.svg",
  48943. extra: 1176/1152,
  48944. bottom: 42/1218
  48945. }
  48946. },
  48947. nudeSide: {
  48948. height: math.unit(5 + 8/12, "feet"),
  48949. weight: math.unit(125, "lb"),
  48950. name: "Nude (Side)",
  48951. image: {
  48952. source: "./media/characters/jess/nude-side.svg",
  48953. extra: 1204/1190,
  48954. bottom: 6/1210
  48955. }
  48956. },
  48957. organsFront: {
  48958. height: math.unit(2.83799342105, "feet"),
  48959. name: "Organs (Front)",
  48960. image: {
  48961. source: "./media/characters/jess/organs-front.svg"
  48962. }
  48963. },
  48964. organsSide: {
  48965. height: math.unit(2.64225290474, "feet"),
  48966. name: "Organs (Side)",
  48967. image: {
  48968. source: "./media/characters/jess/organs-side.svg"
  48969. }
  48970. },
  48971. digestiveTractFront: {
  48972. height: math.unit(2.8106580871, "feet"),
  48973. name: "Digestive Tract (Front)",
  48974. image: {
  48975. source: "./media/characters/jess/digestive-tract-front.svg"
  48976. }
  48977. },
  48978. digestiveTractSide: {
  48979. height: math.unit(2.54365045014, "feet"),
  48980. name: "Digestive Tract (Side)",
  48981. image: {
  48982. source: "./media/characters/jess/digestive-tract-side.svg"
  48983. }
  48984. },
  48985. respiratorySystemFront: {
  48986. height: math.unit(1.11196233456, "feet"),
  48987. name: "Respiratory System (Front)",
  48988. image: {
  48989. source: "./media/characters/jess/respiratory-system-front.svg"
  48990. }
  48991. },
  48992. respiratorySystemSide: {
  48993. height: math.unit(0.89327966297, "feet"),
  48994. name: "Respiratory System (Side)",
  48995. image: {
  48996. source: "./media/characters/jess/respiratory-system-side.svg"
  48997. }
  48998. },
  48999. urinaryTractFront: {
  49000. height: math.unit(1.16126356186, "feet"),
  49001. name: "Urinary Tract (Front)",
  49002. image: {
  49003. source: "./media/characters/jess/urinary-tract-front.svg"
  49004. }
  49005. },
  49006. urinaryTractSide: {
  49007. height: math.unit(1.20910039627, "feet"),
  49008. name: "Urinary Tract (Side)",
  49009. image: {
  49010. source: "./media/characters/jess/urinary-tract-side.svg"
  49011. }
  49012. },
  49013. reproductiveOrgansFront: {
  49014. height: math.unit(0.48422591566, "feet"),
  49015. name: "Reproductive Organs (Front)",
  49016. image: {
  49017. source: "./media/characters/jess/reproductive-organs-front.svg"
  49018. }
  49019. },
  49020. reproductiveOrgansSide: {
  49021. height: math.unit(0.61553314481, "feet"),
  49022. name: "Reproductive Organs (Side)",
  49023. image: {
  49024. source: "./media/characters/jess/reproductive-organs-side.svg"
  49025. }
  49026. },
  49027. breastsFront: {
  49028. height: math.unit(0.47690395121, "feet"),
  49029. name: "Breasts (Front)",
  49030. image: {
  49031. source: "./media/characters/jess/breasts-front.svg"
  49032. }
  49033. },
  49034. breastsSide: {
  49035. height: math.unit(0.30556998307, "feet"),
  49036. name: "Breasts (Side)",
  49037. image: {
  49038. source: "./media/characters/jess/breasts-side.svg"
  49039. }
  49040. },
  49041. heartFront: {
  49042. height: math.unit(0.53011022622, "feet"),
  49043. name: "Heart (Front)",
  49044. image: {
  49045. source: "./media/characters/jess/heart-front.svg"
  49046. }
  49047. },
  49048. heartSide: {
  49049. height: math.unit(0.51790695213, "feet"),
  49050. name: "Heart (Side)",
  49051. image: {
  49052. source: "./media/characters/jess/heart-side.svg"
  49053. }
  49054. },
  49055. earsAndNoseFront: {
  49056. height: math.unit(0.29385483995, "feet"),
  49057. name: "Ears and Nose (Front)",
  49058. image: {
  49059. source: "./media/characters/jess/ears-and-nose-front.svg"
  49060. }
  49061. },
  49062. earsAndNoseSide: {
  49063. height: math.unit(0.18109658741, "feet"),
  49064. name: "Ears and Nose (Side)",
  49065. image: {
  49066. source: "./media/characters/jess/ears-and-nose-side.svg"
  49067. }
  49068. },
  49069. },
  49070. [
  49071. {
  49072. name: "Normal",
  49073. height: math.unit(5 + 8/12, "feet"),
  49074. default: true
  49075. },
  49076. ]
  49077. ))
  49078. characterMakers.push(() => makeCharacter(
  49079. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49080. {
  49081. front: {
  49082. height: math.unit(6, "feet"),
  49083. weight: math.unit(6.64467e-7, "grams"),
  49084. name: "Front",
  49085. image: {
  49086. source: "./media/characters/wimpering/front.svg",
  49087. extra: 597/587,
  49088. bottom: 34/631
  49089. }
  49090. },
  49091. },
  49092. [
  49093. {
  49094. name: "Micro",
  49095. height: math.unit(0.4, "mm"),
  49096. default: true
  49097. },
  49098. ]
  49099. ))
  49100. characterMakers.push(() => makeCharacter(
  49101. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49102. {
  49103. front: {
  49104. height: math.unit(5 + 2/12, "feet"),
  49105. weight: math.unit(110, "lb"),
  49106. name: "Front",
  49107. image: {
  49108. source: "./media/characters/keltre/front.svg",
  49109. extra: 1099/1057,
  49110. bottom: 22/1121
  49111. }
  49112. },
  49113. back: {
  49114. height: math.unit(5 + 2/12, "feet"),
  49115. weight: math.unit(110, "lb"),
  49116. name: "Back",
  49117. image: {
  49118. source: "./media/characters/keltre/back.svg",
  49119. extra: 1095/1053,
  49120. bottom: 17/1112
  49121. }
  49122. },
  49123. dressed: {
  49124. height: math.unit(5 + 2/12, "feet"),
  49125. weight: math.unit(110, "lb"),
  49126. name: "Dressed",
  49127. image: {
  49128. source: "./media/characters/keltre/dressed.svg",
  49129. extra: 1099/1057,
  49130. bottom: 22/1121
  49131. }
  49132. },
  49133. winter: {
  49134. height: math.unit(5 + 2/12, "feet"),
  49135. weight: math.unit(110, "lb"),
  49136. name: "Winter",
  49137. image: {
  49138. source: "./media/characters/keltre/winter.svg",
  49139. extra: 1099/1057,
  49140. bottom: 22/1121
  49141. }
  49142. },
  49143. head: {
  49144. height: math.unit(1.61 * 0.86, "feet"),
  49145. name: "Head",
  49146. image: {
  49147. source: "./media/characters/keltre/head.svg",
  49148. extra: 534/421,
  49149. bottom: 0/534
  49150. }
  49151. },
  49152. hand: {
  49153. height: math.unit(1.3 * 0.86, "feet"),
  49154. name: "Hand",
  49155. image: {
  49156. source: "./media/characters/keltre/hand.svg"
  49157. }
  49158. },
  49159. foot: {
  49160. height: math.unit(1.8 * 0.86, "feet"),
  49161. name: "Foot",
  49162. image: {
  49163. source: "./media/characters/keltre/foot.svg"
  49164. }
  49165. },
  49166. },
  49167. [
  49168. {
  49169. name: "Fine",
  49170. height: math.unit(1, "inch")
  49171. },
  49172. {
  49173. name: "Dimnutive",
  49174. height: math.unit(4, "inches")
  49175. },
  49176. {
  49177. name: "Tiny",
  49178. height: math.unit(1, "foot")
  49179. },
  49180. {
  49181. name: "Small",
  49182. height: math.unit(3, "feet")
  49183. },
  49184. {
  49185. name: "Normal",
  49186. height: math.unit(5 + 2/12, "feet"),
  49187. default: true
  49188. },
  49189. ]
  49190. ))
  49191. characterMakers.push(() => makeCharacter(
  49192. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49193. {
  49194. front: {
  49195. height: math.unit(6 + 2/12, "feet"),
  49196. name: "Front",
  49197. image: {
  49198. source: "./media/characters/nox/front.svg",
  49199. extra: 1917/1830,
  49200. bottom: 74/1991
  49201. }
  49202. },
  49203. back: {
  49204. height: math.unit(6 + 2/12, "feet"),
  49205. name: "Back",
  49206. image: {
  49207. source: "./media/characters/nox/back.svg",
  49208. extra: 1896/1815,
  49209. bottom: 21/1917
  49210. }
  49211. },
  49212. head: {
  49213. height: math.unit(1.1, "feet"),
  49214. name: "Head",
  49215. image: {
  49216. source: "./media/characters/nox/head.svg",
  49217. extra: 874/704,
  49218. bottom: 0/874
  49219. }
  49220. },
  49221. tattoo: {
  49222. height: math.unit(0.729, "feet"),
  49223. name: "Tattoo",
  49224. image: {
  49225. source: "./media/characters/nox/tattoo.svg"
  49226. }
  49227. },
  49228. },
  49229. [
  49230. {
  49231. name: "Normal",
  49232. height: math.unit(6 + 2/12, "feet")
  49233. },
  49234. {
  49235. name: "Gigamacro",
  49236. height: math.unit(2, "earths"),
  49237. default: true
  49238. },
  49239. {
  49240. name: "Cosmic",
  49241. height: math.unit(867, "yottameters")
  49242. },
  49243. ]
  49244. ))
  49245. characterMakers.push(() => makeCharacter(
  49246. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49247. {
  49248. front: {
  49249. height: math.unit(6, "feet"),
  49250. weight: math.unit(150, "lb"),
  49251. name: "Front",
  49252. image: {
  49253. source: "./media/characters/caspian/front.svg",
  49254. extra: 1443/1359,
  49255. bottom: 0/1443
  49256. }
  49257. },
  49258. back: {
  49259. height: math.unit(6, "feet"),
  49260. weight: math.unit(150, "lb"),
  49261. name: "Back",
  49262. image: {
  49263. source: "./media/characters/caspian/back.svg",
  49264. extra: 1379/1309,
  49265. bottom: 0/1379
  49266. }
  49267. },
  49268. head: {
  49269. height: math.unit(0.9, "feet"),
  49270. name: "Head",
  49271. image: {
  49272. source: "./media/characters/caspian/head.svg",
  49273. extra: 692/492,
  49274. bottom: 0/692
  49275. }
  49276. },
  49277. headAlt: {
  49278. height: math.unit(0.95, "feet"),
  49279. name: "Head (Alt)",
  49280. image: {
  49281. source: "./media/characters/caspian/head-alt.svg",
  49282. extra: 668/508,
  49283. bottom: 0/668
  49284. }
  49285. },
  49286. hand: {
  49287. height: math.unit(0.8, "feet"),
  49288. name: "Hand",
  49289. image: {
  49290. source: "./media/characters/caspian/hand.svg"
  49291. }
  49292. },
  49293. paw: {
  49294. height: math.unit(0.95, "feet"),
  49295. name: "Paw",
  49296. image: {
  49297. source: "./media/characters/caspian/paw.svg"
  49298. }
  49299. },
  49300. },
  49301. [
  49302. {
  49303. name: "Normal",
  49304. height: math.unit(162, "feet"),
  49305. default: true
  49306. },
  49307. ]
  49308. ))
  49309. characterMakers.push(() => makeCharacter(
  49310. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49311. {
  49312. front: {
  49313. height: math.unit(6, "feet"),
  49314. name: "Front",
  49315. image: {
  49316. source: "./media/characters/myra-aisling/front.svg",
  49317. extra: 1268/1166,
  49318. bottom: 73/1341
  49319. }
  49320. },
  49321. back: {
  49322. height: math.unit(6, "feet"),
  49323. name: "Back",
  49324. image: {
  49325. source: "./media/characters/myra-aisling/back.svg",
  49326. extra: 1249/1149,
  49327. bottom: 79/1328
  49328. }
  49329. },
  49330. dressed: {
  49331. height: math.unit(6, "feet"),
  49332. name: "Dressed",
  49333. image: {
  49334. source: "./media/characters/myra-aisling/dressed.svg",
  49335. extra: 1290/1189,
  49336. bottom: 47/1337
  49337. }
  49338. },
  49339. hand: {
  49340. height: math.unit(1.1, "feet"),
  49341. name: "Hand",
  49342. image: {
  49343. source: "./media/characters/myra-aisling/hand.svg"
  49344. }
  49345. },
  49346. paw: {
  49347. height: math.unit(1.23, "feet"),
  49348. name: "Paw",
  49349. image: {
  49350. source: "./media/characters/myra-aisling/paw.svg"
  49351. }
  49352. },
  49353. },
  49354. [
  49355. {
  49356. name: "Normal",
  49357. height: math.unit(160, "feet"),
  49358. default: true
  49359. },
  49360. ]
  49361. ))
  49362. characterMakers.push(() => makeCharacter(
  49363. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49364. {
  49365. front: {
  49366. height: math.unit(6, "feet"),
  49367. name: "Front",
  49368. image: {
  49369. source: "./media/characters/tenley-sidero/front.svg",
  49370. extra: 1365/1276,
  49371. bottom: 47/1412
  49372. }
  49373. },
  49374. back: {
  49375. height: math.unit(6, "feet"),
  49376. name: "Back",
  49377. image: {
  49378. source: "./media/characters/tenley-sidero/back.svg",
  49379. extra: 1383/1283,
  49380. bottom: 35/1418
  49381. }
  49382. },
  49383. dressed: {
  49384. height: math.unit(6, "feet"),
  49385. name: "Dressed",
  49386. image: {
  49387. source: "./media/characters/tenley-sidero/dressed.svg",
  49388. extra: 1364/1275,
  49389. bottom: 42/1406
  49390. }
  49391. },
  49392. head: {
  49393. height: math.unit(1.47, "feet"),
  49394. name: "Head",
  49395. image: {
  49396. source: "./media/characters/tenley-sidero/head.svg",
  49397. extra: 610/490,
  49398. bottom: 0/610
  49399. }
  49400. },
  49401. },
  49402. [
  49403. {
  49404. name: "Normal",
  49405. height: math.unit(154, "feet"),
  49406. default: true
  49407. },
  49408. ]
  49409. ))
  49410. characterMakers.push(() => makeCharacter(
  49411. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49412. {
  49413. front: {
  49414. height: math.unit(5, "inches"),
  49415. name: "Front",
  49416. image: {
  49417. source: "./media/characters/mallory/front.svg",
  49418. extra: 1919/1678,
  49419. bottom: 29/1948
  49420. }
  49421. },
  49422. hand: {
  49423. height: math.unit(0.73, "inches"),
  49424. name: "Hand",
  49425. image: {
  49426. source: "./media/characters/mallory/hand.svg"
  49427. }
  49428. },
  49429. paw: {
  49430. height: math.unit(0.68, "inches"),
  49431. name: "Paw",
  49432. image: {
  49433. source: "./media/characters/mallory/paw.svg"
  49434. }
  49435. },
  49436. },
  49437. [
  49438. {
  49439. name: "Small",
  49440. height: math.unit(5, "inches"),
  49441. default: true
  49442. },
  49443. ]
  49444. ))
  49445. characterMakers.push(() => makeCharacter(
  49446. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49447. {
  49448. naked: {
  49449. height: math.unit(6, "feet"),
  49450. name: "Naked",
  49451. image: {
  49452. source: "./media/characters/mab/naked.svg",
  49453. extra: 1855/1757,
  49454. bottom: 208/2063
  49455. }
  49456. },
  49457. outside: {
  49458. height: math.unit(6, "feet"),
  49459. name: "Outside",
  49460. image: {
  49461. source: "./media/characters/mab/outside.svg",
  49462. extra: 1855/1757,
  49463. bottom: 208/2063
  49464. }
  49465. },
  49466. party: {
  49467. height: math.unit(6, "feet"),
  49468. name: "Party",
  49469. image: {
  49470. source: "./media/characters/mab/party.svg",
  49471. extra: 1855/1757,
  49472. bottom: 208/2063
  49473. }
  49474. },
  49475. },
  49476. [
  49477. {
  49478. name: "Normal",
  49479. height: math.unit(165, "feet"),
  49480. default: true
  49481. },
  49482. ]
  49483. ))
  49484. characterMakers.push(() => makeCharacter(
  49485. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49486. {
  49487. front: {
  49488. height: math.unit(12, "feet"),
  49489. weight: math.unit(4000, "lb"),
  49490. name: "Front",
  49491. image: {
  49492. source: "./media/characters/winter/front.svg",
  49493. extra: 1286/943,
  49494. bottom: 112/1398
  49495. }
  49496. },
  49497. frontNsfw: {
  49498. height: math.unit(12, "feet"),
  49499. weight: math.unit(4000, "lb"),
  49500. name: "Front (NSFW)",
  49501. image: {
  49502. source: "./media/characters/winter/front-nsfw.svg",
  49503. extra: 1286/943,
  49504. bottom: 112/1398
  49505. }
  49506. },
  49507. dick: {
  49508. height: math.unit(3.79, "feet"),
  49509. name: "Dick",
  49510. image: {
  49511. source: "./media/characters/winter/dick.svg"
  49512. }
  49513. },
  49514. },
  49515. [
  49516. {
  49517. name: "Big",
  49518. height: math.unit(12, "feet"),
  49519. default: true
  49520. },
  49521. ]
  49522. ))
  49523. characterMakers.push(() => makeCharacter(
  49524. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49525. {
  49526. front: {
  49527. height: math.unit(4.1, "inches"),
  49528. name: "Front",
  49529. image: {
  49530. source: "./media/characters/alto/front.svg",
  49531. extra: 736/627,
  49532. bottom: 90/826
  49533. }
  49534. },
  49535. },
  49536. [
  49537. {
  49538. name: "Normal",
  49539. height: math.unit(4.1, "inches"),
  49540. default: true
  49541. },
  49542. ]
  49543. ))
  49544. characterMakers.push(() => makeCharacter(
  49545. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49546. {
  49547. sitting: {
  49548. height: math.unit(3, "feet"),
  49549. name: "Sitting",
  49550. image: {
  49551. source: "./media/characters/ratstrid-v/sitting.svg",
  49552. extra: 355/310,
  49553. bottom: 136/491
  49554. }
  49555. },
  49556. },
  49557. [
  49558. {
  49559. name: "Normal",
  49560. height: math.unit(3, "feet"),
  49561. default: true
  49562. },
  49563. ]
  49564. ))
  49565. characterMakers.push(() => makeCharacter(
  49566. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49567. {
  49568. back: {
  49569. height: math.unit(6, "feet"),
  49570. weight: math.unit(350, "lb"),
  49571. name: "Back",
  49572. image: {
  49573. source: "./media/characters/siz/back.svg",
  49574. extra: 1449/1274,
  49575. bottom: 13/1462
  49576. }
  49577. },
  49578. },
  49579. [
  49580. {
  49581. name: "Over-Overcompressed",
  49582. height: math.unit(8, "feet")
  49583. },
  49584. {
  49585. name: "Overcompressed",
  49586. height: math.unit(32, "feet")
  49587. },
  49588. {
  49589. name: "Compressed",
  49590. height: math.unit(128, "feet"),
  49591. default: true
  49592. },
  49593. {
  49594. name: "Half-Compressed",
  49595. height: math.unit(512, "feet")
  49596. },
  49597. {
  49598. name: "Quarter-Compressed",
  49599. height: math.unit(2048, "feet")
  49600. },
  49601. {
  49602. name: "Uncompressed?",
  49603. height: math.unit(8192, "feet")
  49604. },
  49605. ]
  49606. ))
  49607. characterMakers.push(() => makeCharacter(
  49608. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49609. {
  49610. front: {
  49611. height: math.unit(5 + 9/12, "feet"),
  49612. weight: math.unit(150, "lb"),
  49613. name: "Front",
  49614. image: {
  49615. source: "./media/characters/ven/front.svg",
  49616. extra: 1372/1320,
  49617. bottom: 73/1445
  49618. }
  49619. },
  49620. side: {
  49621. height: math.unit(5 + 9/12, "feet"),
  49622. weight: math.unit(1150, "lb"),
  49623. name: "Side",
  49624. image: {
  49625. source: "./media/characters/ven/side.svg",
  49626. extra: 1119/1070,
  49627. bottom: 42/1161
  49628. },
  49629. default: true
  49630. },
  49631. },
  49632. [
  49633. {
  49634. name: "Normal",
  49635. height: math.unit(5 + 9/12, "feet"),
  49636. default: true
  49637. },
  49638. ]
  49639. ))
  49640. characterMakers.push(() => makeCharacter(
  49641. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49642. {
  49643. front: {
  49644. height: math.unit(12, "feet"),
  49645. weight: math.unit(1000, "kg"),
  49646. name: "Front",
  49647. image: {
  49648. source: "./media/characters/maple/front.svg",
  49649. extra: 1193/1081,
  49650. bottom: 22/1215
  49651. }
  49652. },
  49653. },
  49654. [
  49655. {
  49656. name: "Compressed",
  49657. height: math.unit(7, "feet")
  49658. },
  49659. {
  49660. name: "Normal",
  49661. height: math.unit(12, "feet"),
  49662. default: true
  49663. },
  49664. ]
  49665. ))
  49666. characterMakers.push(() => makeCharacter(
  49667. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49668. {
  49669. front: {
  49670. height: math.unit(9, "feet"),
  49671. weight: math.unit(1500, "lb"),
  49672. name: "Front",
  49673. image: {
  49674. source: "./media/characters/nora/front.svg",
  49675. extra: 1348/1286,
  49676. bottom: 218/1566
  49677. }
  49678. },
  49679. erect: {
  49680. height: math.unit(9, "feet"),
  49681. weight: math.unit(11500, "lb"),
  49682. name: "Erect",
  49683. image: {
  49684. source: "./media/characters/nora/erect.svg",
  49685. extra: 1488/1433,
  49686. bottom: 133/1621
  49687. }
  49688. },
  49689. },
  49690. [
  49691. {
  49692. name: "Normal",
  49693. height: math.unit(9, "feet"),
  49694. default: true
  49695. },
  49696. ]
  49697. ))
  49698. characterMakers.push(() => makeCharacter(
  49699. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49700. {
  49701. front: {
  49702. height: math.unit(25, "feet"),
  49703. weight: math.unit(27500, "lb"),
  49704. name: "Front",
  49705. image: {
  49706. source: "./media/characters/north-caudin/front.svg",
  49707. extra: 1184/1082,
  49708. bottom: 23/1207
  49709. }
  49710. },
  49711. },
  49712. [
  49713. {
  49714. name: "Compressed",
  49715. height: math.unit(10, "feet")
  49716. },
  49717. {
  49718. name: "Normal",
  49719. height: math.unit(25, "feet"),
  49720. default: true
  49721. },
  49722. ]
  49723. ))
  49724. characterMakers.push(() => makeCharacter(
  49725. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49726. {
  49727. front: {
  49728. height: math.unit(9, "feet"),
  49729. weight: math.unit(1250, "lb"),
  49730. name: "Front",
  49731. image: {
  49732. source: "./media/characters/merrian/front.svg",
  49733. extra: 2393/2304,
  49734. bottom: 40/2433
  49735. }
  49736. },
  49737. },
  49738. [
  49739. {
  49740. name: "Normal",
  49741. height: math.unit(9, "feet"),
  49742. default: true
  49743. },
  49744. ]
  49745. ))
  49746. characterMakers.push(() => makeCharacter(
  49747. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49748. {
  49749. front: {
  49750. height: math.unit(9, "feet"),
  49751. weight: math.unit(1000, "lb"),
  49752. name: "Front",
  49753. image: {
  49754. source: "./media/characters/hazel/front.svg",
  49755. extra: 2351/2298,
  49756. bottom: 38/2389
  49757. }
  49758. },
  49759. },
  49760. [
  49761. {
  49762. name: "Normal",
  49763. height: math.unit(9, "feet"),
  49764. default: true
  49765. },
  49766. ]
  49767. ))
  49768. characterMakers.push(() => makeCharacter(
  49769. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49770. {
  49771. front: {
  49772. height: math.unit(13, "feet"),
  49773. weight: math.unit(3200, "lb"),
  49774. name: "Front",
  49775. image: {
  49776. source: "./media/characters/emma/front.svg",
  49777. extra: 2263/2029,
  49778. bottom: 68/2331
  49779. }
  49780. },
  49781. },
  49782. [
  49783. {
  49784. name: "Normal",
  49785. height: math.unit(13, "feet"),
  49786. default: true
  49787. },
  49788. ]
  49789. ))
  49790. characterMakers.push(() => makeCharacter(
  49791. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49792. {
  49793. front: {
  49794. height: math.unit(11 + 9/12, "feet"),
  49795. weight: math.unit(2500, "lb"),
  49796. name: "Front",
  49797. image: {
  49798. source: "./media/characters/ilumina/front.svg",
  49799. extra: 2248/2209,
  49800. bottom: 164/2412
  49801. }
  49802. },
  49803. },
  49804. [
  49805. {
  49806. name: "Normal",
  49807. height: math.unit(11 + 9/12, "feet"),
  49808. default: true
  49809. },
  49810. ]
  49811. ))
  49812. characterMakers.push(() => makeCharacter(
  49813. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49814. {
  49815. front: {
  49816. height: math.unit(8 + 10/12, "feet"),
  49817. weight: math.unit(1350, "lb"),
  49818. name: "Front",
  49819. image: {
  49820. source: "./media/characters/moonshine/front.svg",
  49821. extra: 2395/2288,
  49822. bottom: 40/2435
  49823. }
  49824. },
  49825. },
  49826. [
  49827. {
  49828. name: "Normal",
  49829. height: math.unit(8 + 10/12, "feet"),
  49830. default: true
  49831. },
  49832. ]
  49833. ))
  49834. characterMakers.push(() => makeCharacter(
  49835. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49836. {
  49837. front: {
  49838. height: math.unit(14, "feet"),
  49839. weight: math.unit(3400, "lb"),
  49840. name: "Front",
  49841. image: {
  49842. source: "./media/characters/aletia/front.svg",
  49843. extra: 1185/1052,
  49844. bottom: 21/1206
  49845. }
  49846. },
  49847. },
  49848. [
  49849. {
  49850. name: "Compressed",
  49851. height: math.unit(8, "feet")
  49852. },
  49853. {
  49854. name: "Normal",
  49855. height: math.unit(14, "feet"),
  49856. default: true
  49857. },
  49858. ]
  49859. ))
  49860. characterMakers.push(() => makeCharacter(
  49861. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49862. {
  49863. front: {
  49864. height: math.unit(17, "feet"),
  49865. weight: math.unit(6500, "lb"),
  49866. name: "Front",
  49867. image: {
  49868. source: "./media/characters/deidra/front.svg",
  49869. extra: 1201/1081,
  49870. bottom: 16/1217
  49871. }
  49872. },
  49873. },
  49874. [
  49875. {
  49876. name: "Compressed",
  49877. height: math.unit(9 + 6/12, "feet")
  49878. },
  49879. {
  49880. name: "Normal",
  49881. height: math.unit(17, "feet"),
  49882. default: true
  49883. },
  49884. ]
  49885. ))
  49886. characterMakers.push(() => makeCharacter(
  49887. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49888. {
  49889. front: {
  49890. height: math.unit(7 + 4/12, "feet"),
  49891. weight: math.unit(280, "lb"),
  49892. name: "Front",
  49893. image: {
  49894. source: "./media/characters/freki-yrmori/front.svg",
  49895. extra: 1286/1182,
  49896. bottom: 29/1315
  49897. }
  49898. },
  49899. maw: {
  49900. height: math.unit(0.9, "feet"),
  49901. name: "Maw",
  49902. image: {
  49903. source: "./media/characters/freki-yrmori/maw.svg"
  49904. }
  49905. },
  49906. },
  49907. [
  49908. {
  49909. name: "Normal",
  49910. height: math.unit(7 + 4/12, "feet"),
  49911. default: true
  49912. },
  49913. {
  49914. name: "Macro",
  49915. height: math.unit(38.5, "meters")
  49916. },
  49917. ]
  49918. ))
  49919. characterMakers.push(() => makeCharacter(
  49920. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49921. {
  49922. side: {
  49923. height: math.unit(47.2, "meters"),
  49924. weight: math.unit(10000, "tons"),
  49925. name: "Side",
  49926. image: {
  49927. source: "./media/characters/aetherios/side.svg",
  49928. extra: 2363/642,
  49929. bottom: 221/2584
  49930. }
  49931. },
  49932. top: {
  49933. height: math.unit(240, "meters"),
  49934. weight: math.unit(10000, "tons"),
  49935. name: "Top",
  49936. image: {
  49937. source: "./media/characters/aetherios/top.svg"
  49938. }
  49939. },
  49940. bottom: {
  49941. height: math.unit(240, "meters"),
  49942. weight: math.unit(10000, "tons"),
  49943. name: "Bottom",
  49944. image: {
  49945. source: "./media/characters/aetherios/bottom.svg"
  49946. }
  49947. },
  49948. head: {
  49949. height: math.unit(38.6, "meters"),
  49950. name: "Head",
  49951. image: {
  49952. source: "./media/characters/aetherios/head.svg",
  49953. extra: 1335/1112,
  49954. bottom: 0/1335
  49955. }
  49956. },
  49957. front: {
  49958. height: math.unit(29, "meters"),
  49959. name: "Front",
  49960. image: {
  49961. source: "./media/characters/aetherios/front.svg",
  49962. extra: 1266/953,
  49963. bottom: 158/1424
  49964. }
  49965. },
  49966. maw: {
  49967. height: math.unit(16.37, "meters"),
  49968. name: "Maw",
  49969. image: {
  49970. source: "./media/characters/aetherios/maw.svg",
  49971. extra: 748/637,
  49972. bottom: 0/748
  49973. },
  49974. extraAttributes: {
  49975. preyCapacity: {
  49976. name: "Capacity",
  49977. power: 3,
  49978. type: "volume",
  49979. base: math.unit(1000, "people")
  49980. },
  49981. tongueSize: {
  49982. name: "Tongue Size",
  49983. power: 2,
  49984. type: "area",
  49985. base: math.unit(21, "m^2")
  49986. }
  49987. }
  49988. },
  49989. forepaw: {
  49990. height: math.unit(18, "meters"),
  49991. name: "Forepaw",
  49992. image: {
  49993. source: "./media/characters/aetherios/forepaw.svg"
  49994. }
  49995. },
  49996. hindpaw: {
  49997. height: math.unit(23, "meters"),
  49998. name: "Hindpaw",
  49999. image: {
  50000. source: "./media/characters/aetherios/hindpaw.svg"
  50001. }
  50002. },
  50003. genitals: {
  50004. height: math.unit(42, "meters"),
  50005. name: "Genitals",
  50006. image: {
  50007. source: "./media/characters/aetherios/genitals.svg"
  50008. }
  50009. },
  50010. },
  50011. [
  50012. {
  50013. name: "Normal",
  50014. height: math.unit(47.2, "meters"),
  50015. default: true
  50016. },
  50017. {
  50018. name: "Macro",
  50019. height: math.unit(160, "meters")
  50020. },
  50021. {
  50022. name: "Mega",
  50023. height: math.unit(1.87, "km")
  50024. },
  50025. {
  50026. name: "Giga",
  50027. height: math.unit(40000, "km")
  50028. },
  50029. {
  50030. name: "Stellar",
  50031. height: math.unit(158000000, "km")
  50032. },
  50033. {
  50034. name: "Cosmic",
  50035. height: math.unit(9.46e12, "km")
  50036. },
  50037. ]
  50038. ))
  50039. characterMakers.push(() => makeCharacter(
  50040. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50041. {
  50042. front: {
  50043. height: math.unit(5 + 4/12, "feet"),
  50044. weight: math.unit(80, "lb"),
  50045. name: "Front",
  50046. image: {
  50047. source: "./media/characters/mizu-gieeg/front.svg",
  50048. extra: 850/709,
  50049. bottom: 52/902
  50050. }
  50051. },
  50052. back: {
  50053. height: math.unit(5 + 4/12, "feet"),
  50054. weight: math.unit(80, "lb"),
  50055. name: "Back",
  50056. image: {
  50057. source: "./media/characters/mizu-gieeg/back.svg",
  50058. extra: 882/745,
  50059. bottom: 25/907
  50060. }
  50061. },
  50062. },
  50063. [
  50064. {
  50065. name: "Normal",
  50066. height: math.unit(5 + 4/12, "feet"),
  50067. default: true
  50068. },
  50069. ]
  50070. ))
  50071. characterMakers.push(() => makeCharacter(
  50072. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50073. {
  50074. front: {
  50075. height: math.unit(6, "feet"),
  50076. name: "Front",
  50077. image: {
  50078. source: "./media/characters/roselle-st-papier/front.svg",
  50079. extra: 1430/1280,
  50080. bottom: 37/1467
  50081. }
  50082. },
  50083. back: {
  50084. height: math.unit(6, "feet"),
  50085. name: "Back",
  50086. image: {
  50087. source: "./media/characters/roselle-st-papier/back.svg",
  50088. extra: 1491/1296,
  50089. bottom: 23/1514
  50090. }
  50091. },
  50092. ear: {
  50093. height: math.unit(1.26, "feet"),
  50094. name: "Ear",
  50095. image: {
  50096. source: "./media/characters/roselle-st-papier/ear.svg"
  50097. }
  50098. },
  50099. },
  50100. [
  50101. {
  50102. name: "Normal",
  50103. height: math.unit(150, "feet"),
  50104. default: true
  50105. },
  50106. ]
  50107. ))
  50108. characterMakers.push(() => makeCharacter(
  50109. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50110. {
  50111. front: {
  50112. height: math.unit(1, "inches"),
  50113. name: "Front",
  50114. image: {
  50115. source: "./media/characters/valargent/front.svg",
  50116. extra: 1825/1694,
  50117. bottom: 62/1887
  50118. }
  50119. },
  50120. back: {
  50121. height: math.unit(1, "inches"),
  50122. name: "Back",
  50123. image: {
  50124. source: "./media/characters/valargent/back.svg",
  50125. extra: 1775/1682,
  50126. bottom: 88/1863
  50127. }
  50128. },
  50129. },
  50130. [
  50131. {
  50132. name: "Micro",
  50133. height: math.unit(1, "inch"),
  50134. default: true
  50135. },
  50136. ]
  50137. ))
  50138. characterMakers.push(() => makeCharacter(
  50139. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50140. {
  50141. front: {
  50142. height: math.unit(3.4, "meters"),
  50143. name: "Front",
  50144. image: {
  50145. source: "./media/characters/zarina/front.svg",
  50146. extra: 1733/1425,
  50147. bottom: 93/1826
  50148. }
  50149. },
  50150. squatting: {
  50151. height: math.unit(2.14, "meters"),
  50152. name: "Squatting",
  50153. image: {
  50154. source: "./media/characters/zarina/squatting.svg",
  50155. extra: 1073/788,
  50156. bottom: 63/1136
  50157. }
  50158. },
  50159. back: {
  50160. height: math.unit(2.14, "meters"),
  50161. name: "Back",
  50162. image: {
  50163. source: "./media/characters/zarina/back.svg",
  50164. extra: 1128/885,
  50165. bottom: 0/1128
  50166. }
  50167. },
  50168. },
  50169. [
  50170. {
  50171. name: "Normal",
  50172. height: math.unit(3.4, "meters"),
  50173. default: true
  50174. },
  50175. {
  50176. name: "Big",
  50177. height: math.unit(5, "meters")
  50178. },
  50179. {
  50180. name: "Macro",
  50181. height: math.unit(110, "meters")
  50182. },
  50183. ]
  50184. ))
  50185. characterMakers.push(() => makeCharacter(
  50186. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50187. {
  50188. front: {
  50189. height: math.unit(7, "feet"),
  50190. name: "Front",
  50191. image: {
  50192. source: "./media/characters/ventus-astro-fox/front.svg",
  50193. extra: 1792/1623,
  50194. bottom: 28/1820
  50195. }
  50196. },
  50197. back: {
  50198. height: math.unit(7, "feet"),
  50199. name: "Back",
  50200. image: {
  50201. source: "./media/characters/ventus-astro-fox/back.svg",
  50202. extra: 1789/1620,
  50203. bottom: 31/1820
  50204. }
  50205. },
  50206. outfit: {
  50207. height: math.unit(7, "feet"),
  50208. name: "Outfit",
  50209. image: {
  50210. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50211. extra: 1054/925,
  50212. bottom: 15/1069
  50213. }
  50214. },
  50215. head: {
  50216. height: math.unit(1.12, "feet"),
  50217. name: "Head",
  50218. image: {
  50219. source: "./media/characters/ventus-astro-fox/head.svg",
  50220. extra: 866/504,
  50221. bottom: 0/866
  50222. }
  50223. },
  50224. hand: {
  50225. height: math.unit(1, "feet"),
  50226. name: "Hand",
  50227. image: {
  50228. source: "./media/characters/ventus-astro-fox/hand.svg"
  50229. }
  50230. },
  50231. paw: {
  50232. height: math.unit(1.5, "feet"),
  50233. name: "Paw",
  50234. image: {
  50235. source: "./media/characters/ventus-astro-fox/paw.svg"
  50236. }
  50237. },
  50238. },
  50239. [
  50240. {
  50241. name: "Normal",
  50242. height: math.unit(7, "feet"),
  50243. default: true
  50244. },
  50245. {
  50246. name: "Macro",
  50247. height: math.unit(200, "feet")
  50248. },
  50249. {
  50250. name: "Cosmic",
  50251. height: math.unit(3, "universes")
  50252. },
  50253. ]
  50254. ))
  50255. characterMakers.push(() => makeCharacter(
  50256. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50257. {
  50258. front: {
  50259. height: math.unit(3, "meters"),
  50260. weight: math.unit(7000, "lb"),
  50261. name: "Front",
  50262. image: {
  50263. source: "./media/characters/core-t/front.svg",
  50264. extra: 5729/4941,
  50265. bottom: 1129/6858
  50266. }
  50267. },
  50268. },
  50269. [
  50270. {
  50271. name: "Big",
  50272. height: math.unit(3, "meters"),
  50273. default: true
  50274. },
  50275. ]
  50276. ))
  50277. characterMakers.push(() => makeCharacter(
  50278. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50279. {
  50280. normal: {
  50281. height: math.unit(6 + 6/12, "feet"),
  50282. weight: math.unit(275, "lb"),
  50283. name: "Front",
  50284. image: {
  50285. source: "./media/characters/cadbunny/normal.svg",
  50286. extra: 1129/947,
  50287. bottom: 93/1222
  50288. },
  50289. default: true,
  50290. form: "normal"
  50291. },
  50292. gigantamax: {
  50293. height: math.unit(26, "feet"),
  50294. weight: math.unit(16000, "lb"),
  50295. name: "Front",
  50296. image: {
  50297. source: "./media/characters/cadbunny/gigantamax.svg",
  50298. extra: 1133/944,
  50299. bottom: 90/1223
  50300. },
  50301. default: true,
  50302. form: "gigantamax"
  50303. },
  50304. },
  50305. [
  50306. {
  50307. name: "Normal",
  50308. height: math.unit(6 + 6/12, "feet"),
  50309. default: true,
  50310. form: "normal"
  50311. },
  50312. {
  50313. name: "Small",
  50314. height: math.unit(26, "feet"),
  50315. default: true,
  50316. form: "gigantamax"
  50317. },
  50318. {
  50319. name: "Large",
  50320. height: math.unit(78, "feet"),
  50321. form: "gigantamax"
  50322. },
  50323. ],
  50324. {
  50325. "normal": {
  50326. name: "Normal",
  50327. default: true
  50328. },
  50329. "gigantamax": {
  50330. name: "Gigantamax"
  50331. }
  50332. }
  50333. ))
  50334. characterMakers.push(() => makeCharacter(
  50335. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50336. {
  50337. anthroFront: {
  50338. height: math.unit(8, "feet"),
  50339. weight: math.unit(300, "lb"),
  50340. name: "Front",
  50341. image: {
  50342. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50343. extra: 1272/1176,
  50344. bottom: 53/1325
  50345. },
  50346. form: "anthro",
  50347. default: true
  50348. },
  50349. feralSide: {
  50350. height: math.unit(4, "feet"),
  50351. weight: math.unit(250, "lb"),
  50352. name: "Side",
  50353. image: {
  50354. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50355. extra: 731/621,
  50356. bottom: 0/731
  50357. },
  50358. form: "feral",
  50359. default: true
  50360. },
  50361. },
  50362. [
  50363. {
  50364. name: "Regular",
  50365. height: math.unit(8, "feet"),
  50366. form: "anthro"
  50367. },
  50368. {
  50369. name: "Macro",
  50370. height: math.unit(250, "feet"),
  50371. form: "anthro",
  50372. default: true
  50373. },
  50374. {
  50375. name: "Regular",
  50376. height: math.unit(4, "feet"),
  50377. form: "feral"
  50378. },
  50379. {
  50380. name: "Macro",
  50381. height: math.unit(125, "feet"),
  50382. form: "feral",
  50383. default: true
  50384. },
  50385. ],
  50386. {
  50387. "anthro": {
  50388. name: "Anthro",
  50389. default: true
  50390. },
  50391. "feral": {
  50392. name: "Feral",
  50393. },
  50394. }
  50395. ))
  50396. characterMakers.push(() => makeCharacter(
  50397. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50398. {
  50399. front: {
  50400. height: math.unit(11 + 10/12, "feet"),
  50401. weight: math.unit(1587, "kg"),
  50402. name: "Front",
  50403. image: {
  50404. source: "./media/characters/maple-javira-dragon/front.svg",
  50405. extra: 1136/744,
  50406. bottom: 73/1209
  50407. }
  50408. },
  50409. side: {
  50410. height: math.unit(11 + 10/12, "feet"),
  50411. weight: math.unit(1587, "kg"),
  50412. name: "Side",
  50413. image: {
  50414. source: "./media/characters/maple-javira-dragon/side.svg",
  50415. extra: 712/505,
  50416. bottom: 17/729
  50417. }
  50418. },
  50419. head: {
  50420. height: math.unit(8.05, "feet"),
  50421. name: "Head",
  50422. image: {
  50423. source: "./media/characters/maple-javira-dragon/head.svg",
  50424. extra: 1420/1344,
  50425. bottom: 0/1420
  50426. }
  50427. },
  50428. },
  50429. [
  50430. {
  50431. name: "Normal",
  50432. height: math.unit(11 + 10/12, "feet"),
  50433. default: true
  50434. },
  50435. ]
  50436. ))
  50437. characterMakers.push(() => makeCharacter(
  50438. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50439. {
  50440. front: {
  50441. height: math.unit(117, "cm"),
  50442. weight: math.unit(50, "kg"),
  50443. name: "Front",
  50444. image: {
  50445. source: "./media/characters/sonia-wyverntail/front.svg",
  50446. extra: 708/592,
  50447. bottom: 25/733
  50448. }
  50449. },
  50450. },
  50451. [
  50452. {
  50453. name: "Normal",
  50454. height: math.unit(117, "cm"),
  50455. default: true
  50456. },
  50457. ]
  50458. ))
  50459. characterMakers.push(() => makeCharacter(
  50460. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50461. {
  50462. front: {
  50463. height: math.unit(6 + 5/12, "feet"),
  50464. name: "Front",
  50465. image: {
  50466. source: "./media/characters/micah/front.svg",
  50467. extra: 1758/1546,
  50468. bottom: 214/1972
  50469. }
  50470. },
  50471. },
  50472. [
  50473. {
  50474. name: "Normal",
  50475. height: math.unit(6 + 5/12, "feet"),
  50476. default: true
  50477. },
  50478. ]
  50479. ))
  50480. characterMakers.push(() => makeCharacter(
  50481. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50482. {
  50483. front: {
  50484. height: math.unit(5 + 10/12, "feet"),
  50485. weight: math.unit(220, "lb"),
  50486. name: "Front",
  50487. image: {
  50488. source: "./media/characters/zarya/front.svg",
  50489. extra: 593/572,
  50490. bottom: 50/643
  50491. }
  50492. },
  50493. back: {
  50494. height: math.unit(5 + 10/12, "feet"),
  50495. weight: math.unit(220, "lb"),
  50496. name: "Back",
  50497. image: {
  50498. source: "./media/characters/zarya/back.svg",
  50499. extra: 603/582,
  50500. bottom: 38/641
  50501. }
  50502. },
  50503. },
  50504. [
  50505. {
  50506. name: "Normal",
  50507. height: math.unit(5 + 10/12, "feet"),
  50508. default: true
  50509. },
  50510. ]
  50511. ))
  50512. characterMakers.push(() => makeCharacter(
  50513. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50514. {
  50515. front: {
  50516. height: math.unit(7.5, "feet"),
  50517. name: "Front",
  50518. image: {
  50519. source: "./media/characters/sven-hatisson/front.svg",
  50520. extra: 917/857,
  50521. bottom: 42/959
  50522. }
  50523. },
  50524. back: {
  50525. height: math.unit(7.5, "feet"),
  50526. name: "Back",
  50527. image: {
  50528. source: "./media/characters/sven-hatisson/back.svg",
  50529. extra: 903/856,
  50530. bottom: 15/918
  50531. }
  50532. },
  50533. },
  50534. [
  50535. {
  50536. name: "Base Height",
  50537. height: math.unit(7.5, "feet")
  50538. },
  50539. {
  50540. name: "Usual Height",
  50541. height: math.unit(13.5, "feet"),
  50542. default: true
  50543. },
  50544. {
  50545. name: "Smaller Macro",
  50546. height: math.unit(85, "feet")
  50547. },
  50548. {
  50549. name: "Moderate Macro",
  50550. height: math.unit(320, "feet")
  50551. },
  50552. {
  50553. name: "Large Macro",
  50554. height: math.unit(1000, "feet")
  50555. },
  50556. {
  50557. name: "Largest Size",
  50558. height: math.unit(2, "miles")
  50559. },
  50560. ]
  50561. ))
  50562. characterMakers.push(() => makeCharacter(
  50563. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50564. {
  50565. side: {
  50566. height: math.unit(1.8, "meters"),
  50567. weight: math.unit(275, "kg"),
  50568. name: "Side",
  50569. image: {
  50570. source: "./media/characters/terra/side.svg",
  50571. extra: 1273/1147,
  50572. bottom: 0/1273
  50573. }
  50574. },
  50575. },
  50576. [
  50577. {
  50578. name: "Normal",
  50579. height: math.unit(16.2, "meters"),
  50580. default: true
  50581. },
  50582. ]
  50583. ))
  50584. characterMakers.push(() => makeCharacter(
  50585. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50586. {
  50587. borzoiFront: {
  50588. height: math.unit(6 + 9/12, "feet"),
  50589. name: "Front",
  50590. image: {
  50591. source: "./media/characters/rae/borzoi-front.svg",
  50592. extra: 1161/1098,
  50593. bottom: 31/1192
  50594. },
  50595. form: "borzoi",
  50596. default: true
  50597. },
  50598. werewolfFront: {
  50599. height: math.unit(8 + 7/12, "feet"),
  50600. name: "Front",
  50601. image: {
  50602. source: "./media/characters/rae/werewolf-front.svg",
  50603. extra: 1411/1334,
  50604. bottom: 127/1538
  50605. },
  50606. form: "werewolf",
  50607. default: true
  50608. },
  50609. },
  50610. [
  50611. {
  50612. name: "Normal",
  50613. height: math.unit(6 + 9/12, "feet"),
  50614. default: true,
  50615. form: "borzoi"
  50616. },
  50617. {
  50618. name: "Normal",
  50619. height: math.unit(8 + 7/12, "feet"),
  50620. default: true,
  50621. form: "werewolf"
  50622. },
  50623. ],
  50624. {
  50625. "borzoi": {
  50626. name: "Borzoi",
  50627. default: true
  50628. },
  50629. "werewolf": {
  50630. name: "Werewolf",
  50631. },
  50632. }
  50633. ))
  50634. characterMakers.push(() => makeCharacter(
  50635. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50636. {
  50637. front: {
  50638. height: math.unit(8 + 7/12, "feet"),
  50639. weight: math.unit(482, "lb"),
  50640. name: "Front",
  50641. image: {
  50642. source: "./media/characters/kit/front.svg",
  50643. extra: 1247/1103,
  50644. bottom: 41/1288
  50645. }
  50646. },
  50647. back: {
  50648. height: math.unit(8 + 7/12, "feet"),
  50649. weight: math.unit(482, "lb"),
  50650. name: "Back",
  50651. image: {
  50652. source: "./media/characters/kit/back.svg",
  50653. extra: 1252/1123,
  50654. bottom: 21/1273
  50655. }
  50656. },
  50657. paw: {
  50658. height: math.unit(1.46, "feet"),
  50659. name: "Paw",
  50660. image: {
  50661. source: "./media/characters/kit/paw.svg"
  50662. }
  50663. },
  50664. },
  50665. [
  50666. {
  50667. name: "Normal",
  50668. height: math.unit(2.61, "meters"),
  50669. default: true
  50670. },
  50671. {
  50672. name: "\"Tall\"",
  50673. height: math.unit(8.21, "meters")
  50674. },
  50675. {
  50676. name: "Tall",
  50677. height: math.unit(19.6, "meters")
  50678. },
  50679. {
  50680. name: "Very Tall",
  50681. height: math.unit(57.91, "meters")
  50682. },
  50683. {
  50684. name: "Semi-Macro",
  50685. height: math.unit(138.64, "meters")
  50686. },
  50687. {
  50688. name: "Macro",
  50689. height: math.unit(831.99, "meters")
  50690. },
  50691. {
  50692. name: "EX-Macro",
  50693. height: math.unit(96451121, "meters")
  50694. },
  50695. {
  50696. name: "S1-Omnipotent",
  50697. height: math.unit(4.42074e+9, "meters")
  50698. },
  50699. {
  50700. name: "S2-Omnipotent",
  50701. height: math.unit(9.42074e+17, "meters")
  50702. },
  50703. {
  50704. name: "Omnipotent",
  50705. height: math.unit(4.23112e+24, "meters")
  50706. },
  50707. {
  50708. name: "Hypergod",
  50709. height: math.unit(5.05176e+27, "meters")
  50710. },
  50711. {
  50712. name: "Hypergod-EX",
  50713. height: math.unit(9.45532e+49, "meters")
  50714. },
  50715. {
  50716. name: "Hypergod-SP",
  50717. height: math.unit(9.45532e+195, "meters")
  50718. },
  50719. ]
  50720. ))
  50721. characterMakers.push(() => makeCharacter(
  50722. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50723. {
  50724. side: {
  50725. height: math.unit(0.6, "meters"),
  50726. weight: math.unit(24, "kg"),
  50727. name: "Side",
  50728. image: {
  50729. source: "./media/characters/celeste/side.svg",
  50730. extra: 810/517,
  50731. bottom: 53/863
  50732. }
  50733. },
  50734. },
  50735. [
  50736. {
  50737. name: "Velociraptor",
  50738. height: math.unit(0.6, "meters"),
  50739. default: true
  50740. },
  50741. {
  50742. name: "Utahraptor",
  50743. height: math.unit(1.8, "meters")
  50744. },
  50745. {
  50746. name: "Gallimimus",
  50747. height: math.unit(4.0, "meters")
  50748. },
  50749. {
  50750. name: "Large",
  50751. height: math.unit(20, "meters")
  50752. },
  50753. {
  50754. name: "Planetary",
  50755. height: math.unit(50, "megameters")
  50756. },
  50757. {
  50758. name: "Stellar",
  50759. height: math.unit(1.5, "gigameters")
  50760. },
  50761. {
  50762. name: "Galactic",
  50763. height: math.unit(100, "exameters")
  50764. },
  50765. ]
  50766. ))
  50767. characterMakers.push(() => makeCharacter(
  50768. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50769. {
  50770. front: {
  50771. height: math.unit(6, "feet"),
  50772. weight: math.unit(210, "lb"),
  50773. name: "Front",
  50774. image: {
  50775. source: "./media/characters/glacia/front.svg",
  50776. extra: 958/901,
  50777. bottom: 45/1003
  50778. }
  50779. },
  50780. },
  50781. [
  50782. {
  50783. name: "Macro",
  50784. height: math.unit(1000, "meters"),
  50785. default: true
  50786. },
  50787. ]
  50788. ))
  50789. characterMakers.push(() => makeCharacter(
  50790. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50791. {
  50792. front: {
  50793. height: math.unit(4, "meters"),
  50794. name: "Front",
  50795. image: {
  50796. source: "./media/characters/giri/front.svg",
  50797. extra: 966/894,
  50798. bottom: 21/987
  50799. }
  50800. },
  50801. },
  50802. [
  50803. {
  50804. name: "Normal",
  50805. height: math.unit(4, "meters"),
  50806. default: true
  50807. },
  50808. ]
  50809. ))
  50810. characterMakers.push(() => makeCharacter(
  50811. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50812. {
  50813. back: {
  50814. height: math.unit(4, "feet"),
  50815. weight: math.unit(37, "lb"),
  50816. name: "Back",
  50817. image: {
  50818. source: "./media/characters/tin/back.svg",
  50819. extra: 845/780,
  50820. bottom: 28/873
  50821. }
  50822. },
  50823. },
  50824. [
  50825. {
  50826. name: "Normal",
  50827. height: math.unit(4, "feet"),
  50828. default: true
  50829. },
  50830. ]
  50831. ))
  50832. characterMakers.push(() => makeCharacter(
  50833. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50834. {
  50835. front: {
  50836. height: math.unit(25, "feet"),
  50837. name: "Front",
  50838. image: {
  50839. source: "./media/characters/cadenza-vivace/front.svg",
  50840. extra: 1842/1578,
  50841. bottom: 30/1872
  50842. }
  50843. },
  50844. },
  50845. [
  50846. {
  50847. name: "Macro",
  50848. height: math.unit(25, "feet"),
  50849. default: true
  50850. },
  50851. ]
  50852. ))
  50853. characterMakers.push(() => makeCharacter(
  50854. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50855. {
  50856. front: {
  50857. height: math.unit(10, "feet"),
  50858. weight: math.unit(625, "kg"),
  50859. name: "Front",
  50860. image: {
  50861. source: "./media/characters/zain/front.svg",
  50862. extra: 1682/1498,
  50863. bottom: 223/1905
  50864. }
  50865. },
  50866. back: {
  50867. height: math.unit(10, "feet"),
  50868. weight: math.unit(625, "kg"),
  50869. name: "Back",
  50870. image: {
  50871. source: "./media/characters/zain/back.svg",
  50872. extra: 1814/1657,
  50873. bottom: 152/1966
  50874. }
  50875. },
  50876. head: {
  50877. height: math.unit(10, "feet"),
  50878. weight: math.unit(625, "kg"),
  50879. name: "Head",
  50880. image: {
  50881. source: "./media/characters/zain/head.svg",
  50882. extra: 1059/762,
  50883. bottom: 0/1059
  50884. }
  50885. },
  50886. },
  50887. [
  50888. {
  50889. name: "Normal",
  50890. height: math.unit(10, "feet"),
  50891. default: true
  50892. },
  50893. ]
  50894. ))
  50895. characterMakers.push(() => makeCharacter(
  50896. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50897. {
  50898. front: {
  50899. height: math.unit(6 + 5/12, "feet"),
  50900. weight: math.unit(750, "lb"),
  50901. name: "Front",
  50902. image: {
  50903. source: "./media/characters/ruchex/front.svg",
  50904. extra: 877/820,
  50905. bottom: 17/894
  50906. },
  50907. extraAttributes: {
  50908. "width": {
  50909. name: "Width",
  50910. power: 1,
  50911. type: "length",
  50912. base: math.unit(4.757, "feet")
  50913. },
  50914. }
  50915. },
  50916. },
  50917. [
  50918. {
  50919. name: "Normal",
  50920. height: math.unit(6 + 5/12, "feet"),
  50921. default: true
  50922. },
  50923. ]
  50924. ))
  50925. characterMakers.push(() => makeCharacter(
  50926. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50927. {
  50928. dressedFront: {
  50929. height: math.unit(191, "cm"),
  50930. weight: math.unit(80, "kg"),
  50931. name: "Front",
  50932. image: {
  50933. source: "./media/characters/buster/dressed-front.svg",
  50934. extra: 1022/973,
  50935. bottom: 69/1091
  50936. }
  50937. },
  50938. dressedBack: {
  50939. height: math.unit(191, "cm"),
  50940. weight: math.unit(80, "kg"),
  50941. name: "Back",
  50942. image: {
  50943. source: "./media/characters/buster/dressed-back.svg",
  50944. extra: 1018/970,
  50945. bottom: 55/1073
  50946. }
  50947. },
  50948. nudeFront: {
  50949. height: math.unit(191, "cm"),
  50950. weight: math.unit(80, "kg"),
  50951. name: "Front (Nude)",
  50952. image: {
  50953. source: "./media/characters/buster/nude-front.svg",
  50954. extra: 1022/973,
  50955. bottom: 69/1091
  50956. }
  50957. },
  50958. nudeBack: {
  50959. height: math.unit(191, "cm"),
  50960. weight: math.unit(80, "kg"),
  50961. name: "Back (Nude)",
  50962. image: {
  50963. source: "./media/characters/buster/nude-back.svg",
  50964. extra: 1018/970,
  50965. bottom: 55/1073
  50966. }
  50967. },
  50968. dick: {
  50969. height: math.unit(2.59, "feet"),
  50970. name: "Dick",
  50971. image: {
  50972. source: "./media/characters/buster/dick.svg"
  50973. }
  50974. },
  50975. ass: {
  50976. height: math.unit(1.2, "feet"),
  50977. name: "Ass",
  50978. image: {
  50979. source: "./media/characters/buster/ass.svg"
  50980. }
  50981. },
  50982. },
  50983. [
  50984. {
  50985. name: "Normal",
  50986. height: math.unit(191, "cm"),
  50987. default: true
  50988. },
  50989. ]
  50990. ))
  50991. characterMakers.push(() => makeCharacter(
  50992. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50993. {
  50994. side: {
  50995. height: math.unit(8.1, "feet"),
  50996. weight: math.unit(3500, "lb"),
  50997. name: "Side",
  50998. image: {
  50999. source: "./media/characters/sonya/side.svg",
  51000. extra: 1730/1317,
  51001. bottom: 86/1816
  51002. }
  51003. },
  51004. },
  51005. [
  51006. {
  51007. name: "Normal",
  51008. height: math.unit(8.1, "feet"),
  51009. default: true
  51010. },
  51011. ]
  51012. ))
  51013. characterMakers.push(() => makeCharacter(
  51014. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51015. {
  51016. front: {
  51017. height: math.unit(6, "feet"),
  51018. weight: math.unit(150, "lb"),
  51019. name: "Front",
  51020. image: {
  51021. source: "./media/characters/cadence-andrysiak/front.svg",
  51022. extra: 1164/1121,
  51023. bottom: 60/1224
  51024. }
  51025. },
  51026. back: {
  51027. height: math.unit(6, "feet"),
  51028. weight: math.unit(150, "lb"),
  51029. name: "Back",
  51030. image: {
  51031. source: "./media/characters/cadence-andrysiak/back.svg",
  51032. extra: 1200/1165,
  51033. bottom: 9/1209
  51034. }
  51035. },
  51036. dressed: {
  51037. height: math.unit(6, "feet"),
  51038. weight: math.unit(150, "lb"),
  51039. name: "Dressed",
  51040. image: {
  51041. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51042. extra: 1164/1121,
  51043. bottom: 60/1224
  51044. }
  51045. },
  51046. },
  51047. [
  51048. {
  51049. name: "Micro",
  51050. height: math.unit(1, "mm")
  51051. },
  51052. {
  51053. name: "Normal",
  51054. height: math.unit(6, "feet"),
  51055. default: true
  51056. },
  51057. ]
  51058. ))
  51059. characterMakers.push(() => makeCharacter(
  51060. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51061. {
  51062. front: {
  51063. height: math.unit(60, "inches"),
  51064. weight: math.unit(16, "lb"),
  51065. preyCapacity: math.unit(80, "liters"),
  51066. name: "Front",
  51067. image: {
  51068. source: "./media/characters/penny-lynx/front.svg",
  51069. extra: 1959/1769,
  51070. bottom: 49/2008
  51071. }
  51072. },
  51073. },
  51074. [
  51075. {
  51076. name: "Nokia",
  51077. height: math.unit(2, "inches")
  51078. },
  51079. {
  51080. name: "Desktop",
  51081. height: math.unit(24, "inches")
  51082. },
  51083. {
  51084. name: "TV",
  51085. height: math.unit(60, "inches")
  51086. },
  51087. {
  51088. name: "Jumbotron",
  51089. height: math.unit(12, "feet")
  51090. },
  51091. {
  51092. name: "Billboard",
  51093. height: math.unit(48, "feet"),
  51094. default: true
  51095. },
  51096. {
  51097. name: "IMAX",
  51098. height: math.unit(96, "feet")
  51099. },
  51100. {
  51101. name: "SINGULARITY",
  51102. height: math.unit(864938, "miles")
  51103. },
  51104. ]
  51105. ))
  51106. characterMakers.push(() => makeCharacter(
  51107. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51108. {
  51109. front: {
  51110. height: math.unit(5 + 4/12, "feet"),
  51111. weight: math.unit(230, "lb"),
  51112. name: "Front",
  51113. image: {
  51114. source: "./media/characters/sukebe/front.svg",
  51115. extra: 2130/2038,
  51116. bottom: 90/2220
  51117. }
  51118. },
  51119. back: {
  51120. height: math.unit(3.48, "feet"),
  51121. weight: math.unit(230, "lb"),
  51122. name: "Back",
  51123. image: {
  51124. source: "./media/characters/sukebe/back.svg",
  51125. extra: 1670/1604,
  51126. bottom: 0/1670
  51127. }
  51128. },
  51129. },
  51130. [
  51131. {
  51132. name: "Normal",
  51133. height: math.unit(5 + 4/12, "feet"),
  51134. default: true
  51135. },
  51136. ]
  51137. ))
  51138. characterMakers.push(() => makeCharacter(
  51139. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51140. {
  51141. front: {
  51142. height: math.unit(6, "feet"),
  51143. name: "Front",
  51144. image: {
  51145. source: "./media/characters/nylla/front.svg",
  51146. extra: 1868/1699,
  51147. bottom: 97/1965
  51148. }
  51149. },
  51150. back: {
  51151. height: math.unit(6, "feet"),
  51152. name: "Back",
  51153. image: {
  51154. source: "./media/characters/nylla/back.svg",
  51155. extra: 1889/1712,
  51156. bottom: 93/1982
  51157. }
  51158. },
  51159. frontNsfw: {
  51160. height: math.unit(6, "feet"),
  51161. name: "Front (NSFW)",
  51162. image: {
  51163. source: "./media/characters/nylla/front-nsfw.svg",
  51164. extra: 1868/1699,
  51165. bottom: 97/1965
  51166. },
  51167. extraAttributes: {
  51168. "dickLength": {
  51169. name: "Dick Length",
  51170. power: 1,
  51171. type: "length",
  51172. base: math.unit(1.4, "feet")
  51173. },
  51174. "cumVolume": {
  51175. name: "Cum Volume",
  51176. power: 3,
  51177. type: "volume",
  51178. base: math.unit(100, "mL")
  51179. },
  51180. }
  51181. },
  51182. backNsfw: {
  51183. height: math.unit(6, "feet"),
  51184. name: "Back (NSFW)",
  51185. image: {
  51186. source: "./media/characters/nylla/back-nsfw.svg",
  51187. extra: 1889/1712,
  51188. bottom: 93/1982
  51189. }
  51190. },
  51191. maw: {
  51192. height: math.unit(2.10, "feet"),
  51193. name: "Maw",
  51194. image: {
  51195. source: "./media/characters/nylla/maw.svg"
  51196. }
  51197. },
  51198. paws: {
  51199. height: math.unit(2.06, "feet"),
  51200. name: "Paws",
  51201. image: {
  51202. source: "./media/characters/nylla/paws.svg"
  51203. }
  51204. },
  51205. muzzle: {
  51206. height: math.unit(0.61, "feet"),
  51207. name: "Muzzle",
  51208. image: {
  51209. source: "./media/characters/nylla/muzzle.svg"
  51210. }
  51211. },
  51212. sheath: {
  51213. height: math.unit(1.305, "feet"),
  51214. name: "Sheath",
  51215. image: {
  51216. source: "./media/characters/nylla/sheath.svg"
  51217. }
  51218. },
  51219. },
  51220. [
  51221. {
  51222. name: "Micro",
  51223. height: math.unit(7.5, "inches")
  51224. },
  51225. {
  51226. name: "Normal",
  51227. height: math.unit(7, "feet"),
  51228. default: true
  51229. },
  51230. {
  51231. name: "Macro",
  51232. height: math.unit(60, "feet")
  51233. },
  51234. {
  51235. name: "Mega",
  51236. height: math.unit(200, "feet")
  51237. },
  51238. ]
  51239. ))
  51240. characterMakers.push(() => makeCharacter(
  51241. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51242. {
  51243. front: {
  51244. height: math.unit(10, "feet"),
  51245. weight: math.unit(2300, "lb"),
  51246. name: "Front",
  51247. image: {
  51248. source: "./media/characters/hunt3r/front.svg",
  51249. extra: 1909/1742,
  51250. bottom: 46/1955
  51251. }
  51252. },
  51253. },
  51254. [
  51255. {
  51256. name: "Normal",
  51257. height: math.unit(10, "feet"),
  51258. default: true
  51259. },
  51260. ]
  51261. ))
  51262. characterMakers.push(() => makeCharacter(
  51263. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51264. {
  51265. dressed: {
  51266. height: math.unit(11, "feet"),
  51267. weight: math.unit(18500, "lb"),
  51268. preyCapacity: math.unit(9, "people"),
  51269. name: "Dressed",
  51270. image: {
  51271. source: "./media/characters/cylphis/dressed.svg",
  51272. extra: 1028/1003,
  51273. bottom: 75/1103
  51274. },
  51275. },
  51276. undressed: {
  51277. height: math.unit(11, "feet"),
  51278. weight: math.unit(18500, "lb"),
  51279. preyCapacity: math.unit(9, "people"),
  51280. name: "Undressed",
  51281. image: {
  51282. source: "./media/characters/cylphis/undressed.svg",
  51283. extra: 1028/1003,
  51284. bottom: 75/1103
  51285. }
  51286. },
  51287. full: {
  51288. height: math.unit(11, "feet"),
  51289. weight: math.unit(18500 + 150*9, "lb"),
  51290. preyCapacity: math.unit(9, "people"),
  51291. name: "Full",
  51292. image: {
  51293. source: "./media/characters/cylphis/full.svg",
  51294. extra: 1028/1003,
  51295. bottom: 75/1103
  51296. }
  51297. },
  51298. },
  51299. [
  51300. {
  51301. name: "Small",
  51302. height: math.unit(8, "feet")
  51303. },
  51304. {
  51305. name: "Normal",
  51306. height: math.unit(11, "feet"),
  51307. default: true
  51308. },
  51309. ]
  51310. ))
  51311. characterMakers.push(() => makeCharacter(
  51312. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51313. {
  51314. front: {
  51315. height: math.unit(2 + 7/12, "feet"),
  51316. name: "Front",
  51317. image: {
  51318. source: "./media/characters/orishan/front.svg",
  51319. extra: 1058/1023,
  51320. bottom: 23/1081
  51321. }
  51322. },
  51323. back: {
  51324. height: math.unit(2 + 7/12, "feet"),
  51325. name: "Back",
  51326. image: {
  51327. source: "./media/characters/orishan/back.svg",
  51328. extra: 1058/1023,
  51329. bottom: 23/1081
  51330. }
  51331. },
  51332. },
  51333. [
  51334. {
  51335. name: "Micro",
  51336. height: math.unit(2, "cm")
  51337. },
  51338. {
  51339. name: "Normal",
  51340. height: math.unit(2 + 7/12, "feet"),
  51341. default: true
  51342. },
  51343. ]
  51344. ))
  51345. characterMakers.push(() => makeCharacter(
  51346. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51347. {
  51348. front: {
  51349. height: math.unit(3, "meters"),
  51350. weight: math.unit(508, "kg"),
  51351. name: "Front",
  51352. image: {
  51353. source: "./media/characters/seranis/front.svg",
  51354. extra: 1478/1454,
  51355. bottom: 41/1519
  51356. }
  51357. },
  51358. },
  51359. [
  51360. {
  51361. name: "Normal",
  51362. height: math.unit(3, "meters"),
  51363. default: true
  51364. },
  51365. {
  51366. name: "Macro",
  51367. height: math.unit(108, "meters")
  51368. },
  51369. {
  51370. name: "Megamacro",
  51371. height: math.unit(1250, "meters")
  51372. },
  51373. ]
  51374. ))
  51375. characterMakers.push(() => makeCharacter(
  51376. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51377. {
  51378. undressed: {
  51379. height: math.unit(5 + 3/12, "feet"),
  51380. name: "Undressed",
  51381. image: {
  51382. source: "./media/characters/ankou/undressed.svg",
  51383. extra: 1301/1213,
  51384. bottom: 87/1388
  51385. }
  51386. },
  51387. dressed: {
  51388. height: math.unit(5 + 3/12, "feet"),
  51389. name: "Dressed",
  51390. image: {
  51391. source: "./media/characters/ankou/dressed.svg",
  51392. extra: 1301/1213,
  51393. bottom: 87/1388
  51394. }
  51395. },
  51396. head: {
  51397. height: math.unit(1.61, "feet"),
  51398. name: "Head",
  51399. image: {
  51400. source: "./media/characters/ankou/head.svg"
  51401. }
  51402. },
  51403. },
  51404. [
  51405. {
  51406. name: "Normal",
  51407. height: math.unit(5 + 3/12, "feet"),
  51408. default: true
  51409. },
  51410. ]
  51411. ))
  51412. characterMakers.push(() => makeCharacter(
  51413. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51414. {
  51415. side: {
  51416. height: math.unit(6 + 3/12, "feet"),
  51417. weight: math.unit(200, "kg"),
  51418. name: "Side",
  51419. image: {
  51420. source: "./media/characters/juniper-skunktaur/side.svg",
  51421. extra: 1574/1229,
  51422. bottom: 38/1612
  51423. }
  51424. },
  51425. front: {
  51426. height: math.unit(6 + 3/12, "feet"),
  51427. weight: math.unit(200, "kg"),
  51428. name: "Front",
  51429. image: {
  51430. source: "./media/characters/juniper-skunktaur/front.svg",
  51431. extra: 1337/1278,
  51432. bottom: 22/1359
  51433. }
  51434. },
  51435. back: {
  51436. height: math.unit(6 + 3/12, "feet"),
  51437. weight: math.unit(200, "kg"),
  51438. name: "Back",
  51439. image: {
  51440. source: "./media/characters/juniper-skunktaur/back.svg",
  51441. extra: 1618/1273,
  51442. bottom: 13/1631
  51443. }
  51444. },
  51445. top: {
  51446. height: math.unit(2.62, "feet"),
  51447. weight: math.unit(200, "kg"),
  51448. name: "Top",
  51449. image: {
  51450. source: "./media/characters/juniper-skunktaur/top.svg"
  51451. }
  51452. },
  51453. },
  51454. [
  51455. {
  51456. name: "Normal",
  51457. height: math.unit(6 + 3/12, "feet"),
  51458. default: true
  51459. },
  51460. ]
  51461. ))
  51462. //characters
  51463. function makeCharacters() {
  51464. const results = [];
  51465. characterMakers.forEach(character => {
  51466. results.push(character());
  51467. });
  51468. return results;
  51469. }