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

56063 строки
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. "shapeshifter": {
  2103. name: "shapeshifter",
  2104. parents: []
  2105. },
  2106. }
  2107. //species
  2108. function getSpeciesInfo(speciesList) {
  2109. let result = new Set();
  2110. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2111. result.add(entry)
  2112. });
  2113. return Array.from(result);
  2114. };
  2115. function getSpeciesInfoHelper(species) {
  2116. if (!speciesData[species]) {
  2117. console.warn(species + " doesn't exist");
  2118. return [];
  2119. }
  2120. if (speciesData[species].parents) {
  2121. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2122. } else {
  2123. return [species];
  2124. }
  2125. }
  2126. characterMakers.push(() => makeCharacter(
  2127. {
  2128. name: "Fen",
  2129. species: ["crux"],
  2130. description: {
  2131. title: "Bio",
  2132. text: "Very furry. Sheds on everything."
  2133. },
  2134. tags: [
  2135. "anthro",
  2136. "goo"
  2137. ]
  2138. },
  2139. {
  2140. front: {
  2141. height: math.unit(12, "feet"),
  2142. weight: math.unit(2400, "lb"),
  2143. preyCapacity: math.unit(1, "people"),
  2144. name: "Front",
  2145. image: {
  2146. source: "./media/characters/fen/front.svg",
  2147. extra: 1804/1562,
  2148. bottom: 205/2009
  2149. },
  2150. extraAttributes: {
  2151. pawSize: {
  2152. name: "Paw Size",
  2153. power: 2,
  2154. type: "area",
  2155. base: math.unit(0.35, "m^2")
  2156. }
  2157. }
  2158. },
  2159. diving: {
  2160. height: math.unit(4.9, "meters"),
  2161. weight: math.unit(2400, "lb"),
  2162. name: "Diving",
  2163. image: {
  2164. source: "./media/characters/fen/diving.svg"
  2165. }
  2166. },
  2167. sleeby: {
  2168. height: math.unit(3.45, "meters"),
  2169. weight: math.unit(2400, "lb"),
  2170. name: "Sleeby",
  2171. image: {
  2172. source: "./media/characters/fen/sleeby.svg"
  2173. }
  2174. },
  2175. goo: {
  2176. height: math.unit(12, "feet"),
  2177. weight: math.unit(3600, "lb"),
  2178. volume: math.unit(1000, "liters"),
  2179. preyCapacity: math.unit(6, "people"),
  2180. name: "Goo",
  2181. image: {
  2182. source: "./media/characters/fen/goo.svg",
  2183. extra: 1307/1071,
  2184. bottom: 134/1441
  2185. }
  2186. },
  2187. gooNsfw: {
  2188. height: math.unit(12, "feet"),
  2189. weight: math.unit(3750, "lb"),
  2190. volume: math.unit(1000, "liters"),
  2191. preyCapacity: math.unit(6, "people"),
  2192. name: "Goo (NSFW)",
  2193. image: {
  2194. source: "./media/characters/fen/goo-nsfw.svg",
  2195. extra: 1875/1734,
  2196. bottom: 122/1997
  2197. }
  2198. },
  2199. maw: {
  2200. height: math.unit(5.03, "feet"),
  2201. name: "Maw",
  2202. image: {
  2203. source: "./media/characters/fen/maw.svg"
  2204. }
  2205. },
  2206. gooCeiling: {
  2207. height: math.unit(6.6, "feet"),
  2208. weight: math.unit(3000, "lb"),
  2209. volume: math.unit(1000, "liters"),
  2210. preyCapacity: math.unit(6, "people"),
  2211. name: "Goo (Ceiling)",
  2212. image: {
  2213. source: "./media/characters/fen/goo-ceiling.svg"
  2214. }
  2215. },
  2216. paw: {
  2217. height: math.unit(3.77, "feet"),
  2218. name: "Paw",
  2219. image: {
  2220. source: "./media/characters/fen/paw.svg"
  2221. },
  2222. extraAttributes: {
  2223. "toeSize": {
  2224. name: "Toe Size",
  2225. power: 2,
  2226. type: "area",
  2227. base: math.unit(0.02875, "m^2")
  2228. },
  2229. "pawSize": {
  2230. name: "Paw Size",
  2231. power: 2,
  2232. type: "area",
  2233. base: math.unit(0.378, "m^2")
  2234. },
  2235. }
  2236. },
  2237. tail: {
  2238. height: math.unit(12.1, "feet"),
  2239. name: "Tail",
  2240. image: {
  2241. source: "./media/characters/fen/tail.svg"
  2242. }
  2243. },
  2244. tailFull: {
  2245. height: math.unit(12.1, "feet"),
  2246. name: "Full Tail",
  2247. image: {
  2248. source: "./media/characters/fen/tail-full.svg"
  2249. }
  2250. },
  2251. back: {
  2252. height: math.unit(12, "feet"),
  2253. weight: math.unit(2400, "lb"),
  2254. name: "Back",
  2255. image: {
  2256. source: "./media/characters/fen/back.svg",
  2257. },
  2258. info: {
  2259. description: {
  2260. mode: "append",
  2261. text: "\n\nHe is not currently looking at you."
  2262. }
  2263. }
  2264. },
  2265. full: {
  2266. height: math.unit(1.85, "meter"),
  2267. weight: math.unit(3200, "lb"),
  2268. name: "Full",
  2269. image: {
  2270. source: "./media/characters/fen/full.svg",
  2271. extra: 1133/859,
  2272. bottom: 145/1278
  2273. },
  2274. info: {
  2275. description: {
  2276. mode: "append",
  2277. text: "\n\nMunch."
  2278. }
  2279. }
  2280. },
  2281. gooLounging: {
  2282. height: math.unit(4.53, "feet"),
  2283. weight: math.unit(3000, "lb"),
  2284. preyCapacity: math.unit(6, "people"),
  2285. name: "Goo (Lounging)",
  2286. image: {
  2287. source: "./media/characters/fen/goo-lounging.svg",
  2288. bottom: 116 / 613
  2289. }
  2290. },
  2291. lounging: {
  2292. height: math.unit(10.52, "feet"),
  2293. weight: math.unit(2400, "lb"),
  2294. name: "Lounging",
  2295. image: {
  2296. source: "./media/characters/fen/lounging.svg"
  2297. }
  2298. },
  2299. },
  2300. [
  2301. {
  2302. name: "Small",
  2303. height: math.unit(2.2428, "meter")
  2304. },
  2305. {
  2306. name: "Normal",
  2307. height: math.unit(12, "feet"),
  2308. default: true,
  2309. },
  2310. {
  2311. name: "Big",
  2312. height: math.unit(20, "feet")
  2313. },
  2314. {
  2315. name: "Minimacro",
  2316. height: math.unit(40, "feet"),
  2317. info: {
  2318. description: {
  2319. mode: "append",
  2320. text: "\n\nTOO DAMN BIG"
  2321. }
  2322. }
  2323. },
  2324. {
  2325. name: "Macro",
  2326. height: math.unit(100, "feet"),
  2327. info: {
  2328. description: {
  2329. mode: "append",
  2330. text: "\n\nTOO DAMN BIG"
  2331. }
  2332. }
  2333. },
  2334. {
  2335. name: "Megamacro",
  2336. height: math.unit(2, "miles")
  2337. },
  2338. {
  2339. name: "Gigamacro",
  2340. height: math.unit(10, "earths")
  2341. },
  2342. ]
  2343. ))
  2344. characterMakers.push(() => makeCharacter(
  2345. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2346. {
  2347. front: {
  2348. height: math.unit(183, "cm"),
  2349. weight: math.unit(80, "kg"),
  2350. name: "Front",
  2351. image: {
  2352. source: "./media/characters/sofia-fluttertail/front.svg",
  2353. bottom: 0.01,
  2354. extra: 2154 / 2081
  2355. }
  2356. },
  2357. frontAlt: {
  2358. height: math.unit(183, "cm"),
  2359. weight: math.unit(80, "kg"),
  2360. name: "Front (alt)",
  2361. image: {
  2362. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2363. }
  2364. },
  2365. back: {
  2366. height: math.unit(183, "cm"),
  2367. weight: math.unit(80, "kg"),
  2368. name: "Back",
  2369. image: {
  2370. source: "./media/characters/sofia-fluttertail/back.svg"
  2371. }
  2372. },
  2373. kneeling: {
  2374. height: math.unit(125, "cm"),
  2375. weight: math.unit(80, "kg"),
  2376. name: "Kneeling",
  2377. image: {
  2378. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2379. extra: 1033 / 977,
  2380. bottom: 23.7 / 1057
  2381. }
  2382. },
  2383. maw: {
  2384. height: math.unit(183 / 5, "cm"),
  2385. name: "Maw",
  2386. image: {
  2387. source: "./media/characters/sofia-fluttertail/maw.svg"
  2388. }
  2389. },
  2390. mawcloseup: {
  2391. height: math.unit(183 / 5 * 0.41, "cm"),
  2392. name: "Maw (Closeup)",
  2393. image: {
  2394. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2395. }
  2396. },
  2397. paws: {
  2398. height: math.unit(1.17, "feet"),
  2399. name: "Paws",
  2400. image: {
  2401. source: "./media/characters/sofia-fluttertail/paws.svg",
  2402. extra: 851 / 851,
  2403. bottom: 17 / 868
  2404. }
  2405. },
  2406. },
  2407. [
  2408. {
  2409. name: "Normal",
  2410. height: math.unit(1.83, "meter")
  2411. },
  2412. {
  2413. name: "Size Thief",
  2414. height: math.unit(18, "feet")
  2415. },
  2416. {
  2417. name: "50 Foot Collie",
  2418. height: math.unit(50, "feet")
  2419. },
  2420. {
  2421. name: "Macro",
  2422. height: math.unit(96, "feet"),
  2423. default: true
  2424. },
  2425. {
  2426. name: "Megamerger",
  2427. height: math.unit(650, "feet")
  2428. },
  2429. ]
  2430. ))
  2431. characterMakers.push(() => makeCharacter(
  2432. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2433. {
  2434. front: {
  2435. height: math.unit(7, "feet"),
  2436. weight: math.unit(100, "kg"),
  2437. name: "Front",
  2438. image: {
  2439. source: "./media/characters/march/front.svg",
  2440. extra: 1992/1851,
  2441. bottom: 39/2031
  2442. }
  2443. },
  2444. foot: {
  2445. height: math.unit(0.9, "feet"),
  2446. name: "Foot",
  2447. image: {
  2448. source: "./media/characters/march/foot.svg"
  2449. }
  2450. },
  2451. },
  2452. [
  2453. {
  2454. name: "Normal",
  2455. height: math.unit(7.9, "feet")
  2456. },
  2457. {
  2458. name: "Macro",
  2459. height: math.unit(220, "meters")
  2460. },
  2461. {
  2462. name: "Megamacro",
  2463. height: math.unit(2.98, "km"),
  2464. default: true
  2465. },
  2466. {
  2467. name: "Gigamacro",
  2468. height: math.unit(15963, "km")
  2469. },
  2470. {
  2471. name: "Teramacro",
  2472. height: math.unit(2980000000, "km")
  2473. },
  2474. {
  2475. name: "Examacro",
  2476. height: math.unit(250, "parsecs")
  2477. },
  2478. ]
  2479. ))
  2480. characterMakers.push(() => makeCharacter(
  2481. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2482. {
  2483. front: {
  2484. height: math.unit(6, "feet"),
  2485. weight: math.unit(60, "kg"),
  2486. name: "Front",
  2487. image: {
  2488. source: "./media/characters/noir/front.svg",
  2489. extra: 1,
  2490. bottom: 0.032
  2491. }
  2492. },
  2493. },
  2494. [
  2495. {
  2496. name: "Normal",
  2497. height: math.unit(6.6, "feet")
  2498. },
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(500, "feet")
  2502. },
  2503. {
  2504. name: "Megamacro",
  2505. height: math.unit(2.5, "km"),
  2506. default: true
  2507. },
  2508. {
  2509. name: "Gigamacro",
  2510. height: math.unit(22500, "km")
  2511. },
  2512. {
  2513. name: "Teramacro",
  2514. height: math.unit(2500000000, "km")
  2515. },
  2516. {
  2517. name: "Examacro",
  2518. height: math.unit(200, "parsecs")
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(7, "feet"),
  2527. weight: math.unit(100, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/okuri/front.svg",
  2531. extra: 739/665,
  2532. bottom: 39/778
  2533. }
  2534. },
  2535. back: {
  2536. height: math.unit(7, "feet"),
  2537. weight: math.unit(100, "kg"),
  2538. name: "Back",
  2539. image: {
  2540. source: "./media/characters/okuri/back.svg",
  2541. extra: 734/653,
  2542. bottom: 13/747
  2543. }
  2544. },
  2545. sitting: {
  2546. height: math.unit(2.95, "feet"),
  2547. weight: math.unit(100, "kg"),
  2548. name: "Sitting",
  2549. image: {
  2550. source: "./media/characters/okuri/sitting.svg",
  2551. extra: 370/318,
  2552. bottom: 99/469
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Smallest",
  2559. height: math.unit(5 + 2/12, "feet")
  2560. },
  2561. {
  2562. name: "Smaller",
  2563. height: math.unit(300, "feet")
  2564. },
  2565. {
  2566. name: "Small",
  2567. height: math.unit(1000, "feet")
  2568. },
  2569. {
  2570. name: "Macro",
  2571. height: math.unit(1, "mile")
  2572. },
  2573. {
  2574. name: "Mega Macro (Small)",
  2575. height: math.unit(20, "km")
  2576. },
  2577. {
  2578. name: "Mega Macro (Large)",
  2579. height: math.unit(600, "km")
  2580. },
  2581. {
  2582. name: "Giga Macro",
  2583. height: math.unit(10000, "km")
  2584. },
  2585. {
  2586. name: "Normal",
  2587. height: math.unit(577560, "km"),
  2588. default: true
  2589. },
  2590. {
  2591. name: "Large",
  2592. height: math.unit(4, "galaxies")
  2593. },
  2594. {
  2595. name: "Largest",
  2596. height: math.unit(15, "multiverses")
  2597. },
  2598. ]
  2599. ))
  2600. characterMakers.push(() => makeCharacter(
  2601. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2602. {
  2603. front: {
  2604. height: math.unit(7, "feet"),
  2605. weight: math.unit(100, "kg"),
  2606. name: "Front",
  2607. image: {
  2608. source: "./media/characters/manny/front.svg",
  2609. extra: 1,
  2610. bottom: 0.06
  2611. }
  2612. },
  2613. back: {
  2614. height: math.unit(7, "feet"),
  2615. weight: math.unit(100, "kg"),
  2616. name: "Back",
  2617. image: {
  2618. source: "./media/characters/manny/back.svg",
  2619. extra: 1,
  2620. bottom: 0.014
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Normal",
  2627. height: math.unit(7, "feet"),
  2628. },
  2629. {
  2630. name: "Macro",
  2631. height: math.unit(78, "feet"),
  2632. default: true
  2633. },
  2634. {
  2635. name: "Macro+",
  2636. height: math.unit(300, "meters")
  2637. },
  2638. {
  2639. name: "Macro++",
  2640. height: math.unit(2400, "meters")
  2641. },
  2642. {
  2643. name: "Megamacro",
  2644. height: math.unit(5167, "meters")
  2645. },
  2646. {
  2647. name: "Gigamacro",
  2648. height: math.unit(41769, "miles")
  2649. },
  2650. ]
  2651. ))
  2652. characterMakers.push(() => makeCharacter(
  2653. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2654. {
  2655. front: {
  2656. height: math.unit(7, "feet"),
  2657. weight: math.unit(100, "kg"),
  2658. name: "Front",
  2659. image: {
  2660. source: "./media/characters/adake/front-1.svg"
  2661. }
  2662. },
  2663. frontAlt: {
  2664. height: math.unit(7, "feet"),
  2665. weight: math.unit(100, "kg"),
  2666. name: "Front (Alt)",
  2667. image: {
  2668. source: "./media/characters/adake/front-2.svg",
  2669. extra: 1,
  2670. bottom: 0.01
  2671. }
  2672. },
  2673. back: {
  2674. height: math.unit(7, "feet"),
  2675. weight: math.unit(100, "kg"),
  2676. name: "Back",
  2677. image: {
  2678. source: "./media/characters/adake/back.svg",
  2679. }
  2680. },
  2681. kneel: {
  2682. height: math.unit(5.385, "feet"),
  2683. weight: math.unit(100, "kg"),
  2684. name: "Kneeling",
  2685. image: {
  2686. source: "./media/characters/adake/kneel.svg",
  2687. bottom: 0.052
  2688. }
  2689. },
  2690. },
  2691. [
  2692. {
  2693. name: "Normal",
  2694. height: math.unit(7, "feet"),
  2695. },
  2696. {
  2697. name: "Macro",
  2698. height: math.unit(78, "feet"),
  2699. default: true
  2700. },
  2701. {
  2702. name: "Macro+",
  2703. height: math.unit(300, "meters")
  2704. },
  2705. {
  2706. name: "Macro++",
  2707. height: math.unit(2400, "meters")
  2708. },
  2709. {
  2710. name: "Megamacro",
  2711. height: math.unit(5167, "meters")
  2712. },
  2713. {
  2714. name: "Gigamacro",
  2715. height: math.unit(41769, "miles")
  2716. },
  2717. ]
  2718. ))
  2719. characterMakers.push(() => makeCharacter(
  2720. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2721. {
  2722. front: {
  2723. height: math.unit(1.65, "meters"),
  2724. weight: math.unit(50, "kg"),
  2725. name: "Front",
  2726. image: {
  2727. source: "./media/characters/elijah/front.svg",
  2728. extra: 858 / 830,
  2729. bottom: 95.5 / 953.8559
  2730. }
  2731. },
  2732. back: {
  2733. height: math.unit(1.65, "meters"),
  2734. weight: math.unit(50, "kg"),
  2735. name: "Back",
  2736. image: {
  2737. source: "./media/characters/elijah/back.svg",
  2738. extra: 895 / 850,
  2739. bottom: 5.3 / 897.956
  2740. }
  2741. },
  2742. frontNsfw: {
  2743. height: math.unit(1.65, "meters"),
  2744. weight: math.unit(50, "kg"),
  2745. name: "Front (NSFW)",
  2746. image: {
  2747. source: "./media/characters/elijah/front-nsfw.svg",
  2748. extra: 858 / 830,
  2749. bottom: 95.5 / 953.8559
  2750. }
  2751. },
  2752. backNsfw: {
  2753. height: math.unit(1.65, "meters"),
  2754. weight: math.unit(50, "kg"),
  2755. name: "Back (NSFW)",
  2756. image: {
  2757. source: "./media/characters/elijah/back-nsfw.svg",
  2758. extra: 895 / 850,
  2759. bottom: 5.3 / 897.956
  2760. }
  2761. },
  2762. dick: {
  2763. height: math.unit(1, "feet"),
  2764. name: "Dick",
  2765. image: {
  2766. source: "./media/characters/elijah/dick.svg"
  2767. }
  2768. },
  2769. beakOpen: {
  2770. height: math.unit(1.25, "feet"),
  2771. name: "Beak (Open)",
  2772. image: {
  2773. source: "./media/characters/elijah/beak-open.svg"
  2774. }
  2775. },
  2776. beakShut: {
  2777. height: math.unit(1.25, "feet"),
  2778. name: "Beak (Shut)",
  2779. image: {
  2780. source: "./media/characters/elijah/beak-shut.svg"
  2781. }
  2782. },
  2783. footFlexing: {
  2784. height: math.unit(1.61, "feet"),
  2785. name: "Foot (Flexing)",
  2786. image: {
  2787. source: "./media/characters/elijah/foot-flexing.svg"
  2788. }
  2789. },
  2790. footStepping: {
  2791. height: math.unit(1.44, "feet"),
  2792. name: "Foot (Stepping)",
  2793. image: {
  2794. source: "./media/characters/elijah/foot-stepping.svg"
  2795. }
  2796. },
  2797. plantigradeLeg: {
  2798. height: math.unit(2.34, "feet"),
  2799. name: "Plantigrade Leg",
  2800. image: {
  2801. source: "./media/characters/elijah/plantigrade-leg.svg"
  2802. }
  2803. },
  2804. plantigradeFootLeft: {
  2805. height: math.unit(0.9, "feet"),
  2806. name: "Plantigrade Foot (Left)",
  2807. image: {
  2808. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2809. }
  2810. },
  2811. plantigradeFootRight: {
  2812. height: math.unit(0.9, "feet"),
  2813. name: "Plantigrade Foot (Right)",
  2814. image: {
  2815. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Normal",
  2822. height: math.unit(1.65, "meters")
  2823. },
  2824. {
  2825. name: "Macro",
  2826. height: math.unit(55, "meters"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Macro+",
  2831. height: math.unit(105, "meters")
  2832. },
  2833. ]
  2834. ))
  2835. characterMakers.push(() => makeCharacter(
  2836. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2837. {
  2838. front: {
  2839. height: math.unit(7 + 2/12, "feet"),
  2840. weight: math.unit(320, "kg"),
  2841. preyCapacity: math.unit(0.276549935, "people"),
  2842. name: "Front",
  2843. image: {
  2844. source: "./media/characters/rai/front.svg",
  2845. extra: 1802/1696,
  2846. bottom: 68/1870
  2847. },
  2848. form: "anthro",
  2849. default: true
  2850. },
  2851. frontDressed: {
  2852. height: math.unit(7 + 2/12, "feet"),
  2853. weight: math.unit(320, "kg"),
  2854. preyCapacity: math.unit(0.276549935, "people"),
  2855. name: "Front (Dressed)",
  2856. image: {
  2857. source: "./media/characters/rai/front-dressed.svg",
  2858. extra: 1802/1696,
  2859. bottom: 68/1870
  2860. },
  2861. form: "anthro"
  2862. },
  2863. side: {
  2864. height: math.unit(7 + 2/12, "feet"),
  2865. weight: math.unit(320, "kg"),
  2866. preyCapacity: math.unit(0.276549935, "people"),
  2867. name: "Side",
  2868. image: {
  2869. source: "./media/characters/rai/side.svg",
  2870. extra: 1789/1710,
  2871. bottom: 115/1904
  2872. },
  2873. form: "anthro"
  2874. },
  2875. back: {
  2876. height: math.unit(7 + 2/12, "feet"),
  2877. weight: math.unit(320, "kg"),
  2878. preyCapacity: math.unit(0.276549935, "people"),
  2879. name: "Back",
  2880. image: {
  2881. source: "./media/characters/rai/back.svg",
  2882. extra: 1770/1707,
  2883. bottom: 28/1798
  2884. },
  2885. form: "anthro"
  2886. },
  2887. feral: {
  2888. height: math.unit(9.5, "feet"),
  2889. weight: math.unit(640, "kg"),
  2890. preyCapacity: math.unit(4, "people"),
  2891. name: "Feral",
  2892. image: {
  2893. source: "./media/characters/rai/feral.svg",
  2894. extra: 945/553,
  2895. bottom: 176/1121
  2896. },
  2897. form: "feral",
  2898. default: true
  2899. },
  2900. dragon: {
  2901. height: math.unit(23, "feet"),
  2902. weight: math.unit(50000, "lb"),
  2903. name: "Dragon",
  2904. image: {
  2905. source: "./media/characters/rai/dragon.svg",
  2906. extra: 2498 / 2030,
  2907. bottom: 85.2 / 2584
  2908. },
  2909. form: "dragon",
  2910. default: true
  2911. },
  2912. maw: {
  2913. height: math.unit(1.69, "feet"),
  2914. name: "Maw",
  2915. image: {
  2916. source: "./media/characters/rai/maw.svg"
  2917. },
  2918. form: "anthro"
  2919. },
  2920. },
  2921. [
  2922. {
  2923. name: "Normal",
  2924. height: math.unit(7 + 2/12, "feet"),
  2925. form: "anthro"
  2926. },
  2927. {
  2928. name: "Big",
  2929. height: math.unit(11, "feet"),
  2930. form: "anthro"
  2931. },
  2932. {
  2933. name: "Minimacro",
  2934. height: math.unit(77, "feet"),
  2935. form: "anthro"
  2936. },
  2937. {
  2938. name: "Macro",
  2939. height: math.unit(302, "feet"),
  2940. default: true,
  2941. form: "anthro"
  2942. },
  2943. {
  2944. name: "Normal",
  2945. height: math.unit(9.5, "feet"),
  2946. form: "feral",
  2947. default: true
  2948. },
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(23, "feet"),
  2952. form: "dragon",
  2953. default: true
  2954. }
  2955. ],
  2956. {
  2957. "anthro": {
  2958. name: "Anthro",
  2959. default: true
  2960. },
  2961. "feral": {
  2962. name: "Feral",
  2963. },
  2964. "dragon": {
  2965. name: "Dragon",
  2966. },
  2967. }
  2968. ))
  2969. characterMakers.push(() => makeCharacter(
  2970. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2971. {
  2972. frontDressed: {
  2973. height: math.unit(216, "feet"),
  2974. weight: math.unit(7000000, "lb"),
  2975. preyCapacity: math.unit(1321, "people"),
  2976. name: "Front (Dressed)",
  2977. image: {
  2978. source: "./media/characters/jazzy/front-dressed.svg",
  2979. extra: 2738 / 2651,
  2980. bottom: 41.8 / 2786
  2981. }
  2982. },
  2983. backDressed: {
  2984. height: math.unit(216, "feet"),
  2985. weight: math.unit(7000000, "lb"),
  2986. preyCapacity: math.unit(1321, "people"),
  2987. name: "Back (Dressed)",
  2988. image: {
  2989. source: "./media/characters/jazzy/back-dressed.svg",
  2990. extra: 2775 / 2673,
  2991. bottom: 36.8 / 2817
  2992. }
  2993. },
  2994. front: {
  2995. height: math.unit(216, "feet"),
  2996. weight: math.unit(7000000, "lb"),
  2997. preyCapacity: math.unit(1321, "people"),
  2998. name: "Front",
  2999. image: {
  3000. source: "./media/characters/jazzy/front.svg",
  3001. extra: 2738 / 2651,
  3002. bottom: 41.8 / 2786
  3003. }
  3004. },
  3005. back: {
  3006. height: math.unit(216, "feet"),
  3007. weight: math.unit(7000000, "lb"),
  3008. preyCapacity: math.unit(1321, "people"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/jazzy/back.svg",
  3012. extra: 2775 / 2673,
  3013. bottom: 36.8 / 2817
  3014. }
  3015. },
  3016. maw: {
  3017. height: math.unit(20, "feet"),
  3018. name: "Maw",
  3019. image: {
  3020. source: "./media/characters/jazzy/maw.svg"
  3021. }
  3022. },
  3023. paws: {
  3024. height: math.unit(27.5, "feet"),
  3025. name: "Paws",
  3026. image: {
  3027. source: "./media/characters/jazzy/paws.svg"
  3028. }
  3029. },
  3030. eye: {
  3031. height: math.unit(4.4, "feet"),
  3032. name: "Eye",
  3033. image: {
  3034. source: "./media/characters/jazzy/eye.svg"
  3035. }
  3036. },
  3037. droneOffense: {
  3038. height: math.unit(9.5, "inches"),
  3039. name: "Drone (Offense)",
  3040. image: {
  3041. source: "./media/characters/jazzy/drone-offense.svg"
  3042. }
  3043. },
  3044. droneRecon: {
  3045. height: math.unit(9.5, "inches"),
  3046. name: "Drone (Recon)",
  3047. image: {
  3048. source: "./media/characters/jazzy/drone-recon.svg"
  3049. }
  3050. },
  3051. droneDefense: {
  3052. height: math.unit(9.5, "inches"),
  3053. name: "Drone (Defense)",
  3054. image: {
  3055. source: "./media/characters/jazzy/drone-defense.svg"
  3056. }
  3057. },
  3058. },
  3059. [
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(216, "feet"),
  3063. default: true
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3069. {
  3070. front: {
  3071. height: math.unit(9 + 6/12, "feet"),
  3072. weight: math.unit(700, "lb"),
  3073. name: "Front",
  3074. image: {
  3075. source: "./media/characters/flamm/front.svg",
  3076. extra: 1751/1632,
  3077. bottom: 46/1797
  3078. }
  3079. },
  3080. buff: {
  3081. height: math.unit(9 + 6/12, "feet"),
  3082. weight: math.unit(950, "lb"),
  3083. name: "Buff",
  3084. image: {
  3085. source: "./media/characters/flamm/buff.svg",
  3086. extra: 3018/2874,
  3087. bottom: 221/3239
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(9.5, "feet")
  3095. },
  3096. {
  3097. name: "Macro",
  3098. height: math.unit(200, "feet"),
  3099. default: true
  3100. },
  3101. ]
  3102. ))
  3103. characterMakers.push(() => makeCharacter(
  3104. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3105. {
  3106. front: {
  3107. height: math.unit(5 + 3/12, "feet"),
  3108. weight: math.unit(60, "kg"),
  3109. name: "Front",
  3110. image: {
  3111. source: "./media/characters/zephiro/front.svg",
  3112. extra: 1873/1761,
  3113. bottom: 147/2020
  3114. }
  3115. },
  3116. side: {
  3117. height: math.unit(5 + 3/12, "feet"),
  3118. weight: math.unit(60, "kg"),
  3119. name: "Side",
  3120. image: {
  3121. source: "./media/characters/zephiro/side.svg",
  3122. extra: 1929/1827,
  3123. bottom: 65/1994
  3124. }
  3125. },
  3126. back: {
  3127. height: math.unit(5 + 3/12, "feet"),
  3128. weight: math.unit(60, "kg"),
  3129. name: "Back",
  3130. image: {
  3131. source: "./media/characters/zephiro/back.svg",
  3132. extra: 1926/1816,
  3133. bottom: 41/1967
  3134. }
  3135. },
  3136. hand: {
  3137. height: math.unit(0.68, "feet"),
  3138. name: "Hand",
  3139. image: {
  3140. source: "./media/characters/zephiro/hand.svg"
  3141. }
  3142. },
  3143. paw: {
  3144. height: math.unit(1, "feet"),
  3145. name: "Paw",
  3146. image: {
  3147. source: "./media/characters/zephiro/paw.svg"
  3148. }
  3149. },
  3150. beans: {
  3151. height: math.unit(0.93, "feet"),
  3152. name: "Beans",
  3153. image: {
  3154. source: "./media/characters/zephiro/beans.svg"
  3155. }
  3156. },
  3157. },
  3158. [
  3159. {
  3160. name: "Micro",
  3161. height: math.unit(3, "inches")
  3162. },
  3163. {
  3164. name: "Normal",
  3165. height: math.unit(5 + 3 / 12, "feet"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(118, "feet")
  3171. },
  3172. ]
  3173. ))
  3174. characterMakers.push(() => makeCharacter(
  3175. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3176. {
  3177. front: {
  3178. height: math.unit(5, "feet"),
  3179. weight: math.unit(90, "kg"),
  3180. preyCapacity: math.unit(14, "people"),
  3181. name: "Front",
  3182. image: {
  3183. source: "./media/characters/fory/front.svg",
  3184. extra: 2862 / 2674,
  3185. bottom: 180 / 3043.8
  3186. },
  3187. form: "weaselbun",
  3188. default: true,
  3189. extraAttributes: {
  3190. "pawSize": {
  3191. name: "Paw Size",
  3192. power: 2,
  3193. type: "area",
  3194. base: math.unit(0.1596, "m^2")
  3195. },
  3196. "pawLength": {
  3197. name: "Paw Length",
  3198. power: 1,
  3199. type: "length",
  3200. base: math.unit(0.7, "m")
  3201. }
  3202. }
  3203. },
  3204. back: {
  3205. height: math.unit(5, "feet"),
  3206. weight: math.unit(90, "kg"),
  3207. preyCapacity: math.unit(14, "people"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/fory/back.svg",
  3211. extra: 1790/1672,
  3212. bottom: 84/1874
  3213. },
  3214. form: "weaselbun",
  3215. extraAttributes: {
  3216. "pawSize": {
  3217. name: "Paw Size",
  3218. power: 2,
  3219. type: "area",
  3220. base: math.unit(0.1596, "m^2")
  3221. },
  3222. "pawLength": {
  3223. name: "Paw Length",
  3224. power: 1,
  3225. type: "length",
  3226. base: math.unit(0.7, "m")
  3227. }
  3228. }
  3229. },
  3230. paw: {
  3231. height: math.unit(2.14, "feet"),
  3232. name: "Paw",
  3233. image: {
  3234. source: "./media/characters/fory/paw.svg"
  3235. },
  3236. form: "weaselbun",
  3237. extraAttributes: {
  3238. "pawSize": {
  3239. name: "Paw Size",
  3240. power: 2,
  3241. type: "area",
  3242. base: math.unit(0.1596, "m^2")
  3243. },
  3244. "pawLength": {
  3245. name: "Paw Length",
  3246. power: 1,
  3247. type: "length",
  3248. base: math.unit(0.48, "m")
  3249. }
  3250. }
  3251. },
  3252. bunBack: {
  3253. height: math.unit(3, "feet"),
  3254. weight: math.unit(20, "kg"),
  3255. preyCapacity: math.unit(3, "people"),
  3256. name: "Back",
  3257. image: {
  3258. source: "./media/characters/fory/bun-back.svg",
  3259. extra: 1749/1564,
  3260. bottom: 246/1995
  3261. },
  3262. form: "bun",
  3263. default: true,
  3264. extraAttributes: {
  3265. "pawSize": {
  3266. name: "Paw Size",
  3267. power: 2,
  3268. type: "area",
  3269. base: math.unit(0.072, "m^2")
  3270. },
  3271. "pawLength": {
  3272. name: "Paw Length",
  3273. power: 1,
  3274. type: "length",
  3275. base: math.unit(0.45, "m")
  3276. }
  3277. }
  3278. },
  3279. },
  3280. [
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(5, "feet"),
  3284. form: "weaselbun"
  3285. },
  3286. {
  3287. name: "Macro",
  3288. height: math.unit(50, "feet"),
  3289. default: true,
  3290. form: "weaselbun"
  3291. },
  3292. {
  3293. name: "Megamacro",
  3294. height: math.unit(10, "miles"),
  3295. form: "weaselbun"
  3296. },
  3297. {
  3298. name: "Gigamacro",
  3299. height: math.unit(5, "earths"),
  3300. form: "weaselbun"
  3301. },
  3302. {
  3303. name: "Normal",
  3304. height: math.unit(3, "feet"),
  3305. default: true,
  3306. form: "bun"
  3307. },
  3308. {
  3309. name: "Fun-Size",
  3310. height: math.unit(12, "feet"),
  3311. form: "bun"
  3312. },
  3313. {
  3314. name: "Macro",
  3315. height: math.unit(100, "feet"),
  3316. form: "bun"
  3317. },
  3318. {
  3319. name: "Planetary",
  3320. height: math.unit(3, "earths"),
  3321. form: "bun"
  3322. },
  3323. ],
  3324. {
  3325. "weaselbun": {
  3326. name: "Weaselbun",
  3327. default: true
  3328. },
  3329. "bun": {
  3330. name: "Bun",
  3331. },
  3332. }
  3333. ))
  3334. characterMakers.push(() => makeCharacter(
  3335. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3336. {
  3337. front: {
  3338. height: math.unit(7, "feet"),
  3339. weight: math.unit(90, "kg"),
  3340. name: "Front",
  3341. image: {
  3342. source: "./media/characters/kurrikage/front.svg",
  3343. extra: 1845/1733,
  3344. bottom: 119/1964
  3345. }
  3346. },
  3347. back: {
  3348. height: math.unit(7, "feet"),
  3349. weight: math.unit(90, "kg"),
  3350. name: "Back",
  3351. image: {
  3352. source: "./media/characters/kurrikage/back.svg",
  3353. extra: 1790/1677,
  3354. bottom: 61/1851
  3355. }
  3356. },
  3357. dressed: {
  3358. height: math.unit(7, "feet"),
  3359. weight: math.unit(90, "kg"),
  3360. name: "Dressed",
  3361. image: {
  3362. source: "./media/characters/kurrikage/dressed.svg",
  3363. extra: 1845/1733,
  3364. bottom: 119/1964
  3365. }
  3366. },
  3367. foot: {
  3368. height: math.unit(1.5, "feet"),
  3369. name: "Foot",
  3370. image: {
  3371. source: "./media/characters/kurrikage/foot.svg"
  3372. }
  3373. },
  3374. staff: {
  3375. height: math.unit(6.7, "feet"),
  3376. name: "Staff",
  3377. image: {
  3378. source: "./media/characters/kurrikage/staff.svg"
  3379. }
  3380. },
  3381. peek: {
  3382. height: math.unit(1.05, "feet"),
  3383. name: "Peeking",
  3384. image: {
  3385. source: "./media/characters/kurrikage/peek.svg",
  3386. bottom: 0.08
  3387. }
  3388. },
  3389. },
  3390. [
  3391. {
  3392. name: "Normal",
  3393. height: math.unit(12, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Big",
  3398. height: math.unit(20, "feet")
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(500, "feet")
  3403. },
  3404. {
  3405. name: "Megamacro",
  3406. height: math.unit(20, "miles")
  3407. },
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(6, "feet"),
  3415. weight: math.unit(75, "kg"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/shingo/front.svg",
  3419. extra: 1900/1825,
  3420. bottom: 82/1982
  3421. }
  3422. },
  3423. side: {
  3424. height: math.unit(6, "feet"),
  3425. weight: math.unit(75, "kg"),
  3426. name: "Side",
  3427. image: {
  3428. source: "./media/characters/shingo/side.svg",
  3429. extra: 1930/1865,
  3430. bottom: 16/1946
  3431. }
  3432. },
  3433. back: {
  3434. height: math.unit(6, "feet"),
  3435. weight: math.unit(75, "kg"),
  3436. name: "Back",
  3437. image: {
  3438. source: "./media/characters/shingo/back.svg",
  3439. extra: 1922/1852,
  3440. bottom: 16/1938
  3441. }
  3442. },
  3443. frontDressed: {
  3444. height: math.unit(6, "feet"),
  3445. weight: math.unit(150, "lb"),
  3446. name: "Front-dressed",
  3447. image: {
  3448. source: "./media/characters/shingo/front-dressed.svg",
  3449. extra: 1900/1825,
  3450. bottom: 82/1982
  3451. }
  3452. },
  3453. paw: {
  3454. height: math.unit(1.29, "feet"),
  3455. name: "Paw",
  3456. image: {
  3457. source: "./media/characters/shingo/paw.svg"
  3458. }
  3459. },
  3460. hand: {
  3461. height: math.unit(1.07, "feet"),
  3462. name: "Hand",
  3463. image: {
  3464. source: "./media/characters/shingo/hand.svg"
  3465. }
  3466. },
  3467. frontAlt: {
  3468. height: math.unit(6, "feet"),
  3469. weight: math.unit(75, "kg"),
  3470. name: "Front (Alt)",
  3471. image: {
  3472. source: "./media/characters/shingo/front-alt.svg",
  3473. extra: 3511 / 3338,
  3474. bottom: 0.005
  3475. }
  3476. },
  3477. frontAlt2: {
  3478. height: math.unit(6, "feet"),
  3479. weight: math.unit(75, "kg"),
  3480. name: "Front (Alt 2)",
  3481. image: {
  3482. source: "./media/characters/shingo/front-alt-2.svg",
  3483. extra: 706/681,
  3484. bottom: 11/717
  3485. }
  3486. },
  3487. pawAlt: {
  3488. height: math.unit(1, "feet"),
  3489. name: "Paw (Alt)",
  3490. image: {
  3491. source: "./media/characters/shingo/paw-alt.svg"
  3492. }
  3493. },
  3494. },
  3495. [
  3496. {
  3497. name: "Micro",
  3498. height: math.unit(4, "inches")
  3499. },
  3500. {
  3501. name: "Normal",
  3502. height: math.unit(6, "feet"),
  3503. default: true
  3504. },
  3505. {
  3506. name: "Macro",
  3507. height: math.unit(108, "feet")
  3508. },
  3509. {
  3510. name: "Macro+",
  3511. height: math.unit(1500, "feet")
  3512. },
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3517. {
  3518. side: {
  3519. height: math.unit(6, "feet"),
  3520. weight: math.unit(75, "kg"),
  3521. name: "Side",
  3522. image: {
  3523. source: "./media/characters/aigey/side.svg"
  3524. }
  3525. },
  3526. },
  3527. [
  3528. {
  3529. name: "Macro",
  3530. height: math.unit(200, "feet"),
  3531. default: true
  3532. },
  3533. {
  3534. name: "Megamacro",
  3535. height: math.unit(100, "miles")
  3536. },
  3537. ]
  3538. )
  3539. )
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(5 + 5 / 12, "feet"),
  3545. weight: math.unit(75, "kg"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/natasha/front.svg",
  3549. extra: 859 / 824,
  3550. bottom: 23 / 879.6
  3551. }
  3552. },
  3553. frontNsfw: {
  3554. height: math.unit(5 + 5 / 12, "feet"),
  3555. weight: math.unit(75, "kg"),
  3556. name: "Front (NSFW)",
  3557. image: {
  3558. source: "./media/characters/natasha/front-nsfw.svg",
  3559. extra: 859 / 824,
  3560. bottom: 23 / 879.6
  3561. }
  3562. },
  3563. frontErect: {
  3564. height: math.unit(5 + 5 / 12, "feet"),
  3565. weight: math.unit(75, "kg"),
  3566. name: "Front (Erect)",
  3567. image: {
  3568. source: "./media/characters/natasha/front-erect.svg",
  3569. extra: 859 / 824,
  3570. bottom: 23 / 879.6
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(5 + 5 / 12, "feet"),
  3575. weight: math.unit(75, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/natasha/back.svg",
  3579. extra: 887.9 / 852.6,
  3580. bottom: 9.7 / 896.4
  3581. }
  3582. },
  3583. backAlt: {
  3584. height: math.unit(5 + 5 / 12, "feet"),
  3585. weight: math.unit(75, "kg"),
  3586. name: "Back (Alt)",
  3587. image: {
  3588. source: "./media/characters/natasha/back-alt.svg",
  3589. extra: 1236.7 / 1192,
  3590. bottom: 22.3 / 1258.2
  3591. }
  3592. },
  3593. dick: {
  3594. height: math.unit(1.772, "feet"),
  3595. name: "Dick",
  3596. image: {
  3597. source: "./media/characters/natasha/dick.svg"
  3598. }
  3599. },
  3600. paw: {
  3601. height: math.unit(0.250, "meters"),
  3602. name: "Paw",
  3603. image: {
  3604. source: "./media/characters/natasha/paw.svg"
  3605. },
  3606. extraAttributes: {
  3607. "toeSize": {
  3608. name: "Toe Size",
  3609. power: 2,
  3610. type: "area",
  3611. base: math.unit(0.0024, "m^2")
  3612. },
  3613. "padSize": {
  3614. name: "Pad Size",
  3615. power: 2,
  3616. type: "area",
  3617. base: math.unit(0.00889, "m^2")
  3618. },
  3619. "pawSize": {
  3620. name: "Paw Size",
  3621. power: 2,
  3622. type: "area",
  3623. base: math.unit(0.023667, "m^2")
  3624. },
  3625. }
  3626. },
  3627. },
  3628. [
  3629. {
  3630. name: "Shortstack",
  3631. height: math.unit(3, "feet"),
  3632. default: true
  3633. },
  3634. {
  3635. name: "Normal",
  3636. height: math.unit(5 + 5 / 12, "feet")
  3637. },
  3638. {
  3639. name: "Large",
  3640. height: math.unit(12, "feet")
  3641. },
  3642. {
  3643. name: "Macro",
  3644. height: math.unit(100, "feet")
  3645. },
  3646. {
  3647. name: "Macro+",
  3648. height: math.unit(260, "feet")
  3649. },
  3650. {
  3651. name: "Macro++",
  3652. height: math.unit(1, "mile")
  3653. },
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3658. {
  3659. front: {
  3660. height: math.unit(6, "feet"),
  3661. weight: math.unit(75, "kg"),
  3662. name: "Front",
  3663. image: {
  3664. source: "./media/characters/malik/front.svg",
  3665. extra: 1750/1561,
  3666. bottom: 80/1830
  3667. },
  3668. extraAttributes: {
  3669. "toeSize": {
  3670. name: "Toe Size",
  3671. power: 2,
  3672. type: "area",
  3673. base: math.unit(0.0159, "m^2")
  3674. },
  3675. "pawSize": {
  3676. name: "Paw Size",
  3677. power: 2,
  3678. type: "area",
  3679. base: math.unit(0.09834, "m^2")
  3680. },
  3681. }
  3682. },
  3683. side: {
  3684. height: math.unit(6, "feet"),
  3685. weight: math.unit(75, "kg"),
  3686. name: "Side",
  3687. image: {
  3688. source: "./media/characters/malik/side.svg",
  3689. extra: 1802/1685,
  3690. bottom: 42/1844
  3691. },
  3692. extraAttributes: {
  3693. "toeSize": {
  3694. name: "Toe Size",
  3695. power: 2,
  3696. type: "area",
  3697. base: math.unit(0.0159, "m^2")
  3698. },
  3699. "pawSize": {
  3700. name: "Paw Size",
  3701. power: 2,
  3702. type: "area",
  3703. base: math.unit(0.09834, "m^2")
  3704. },
  3705. }
  3706. },
  3707. back: {
  3708. height: math.unit(6, "feet"),
  3709. weight: math.unit(75, "kg"),
  3710. name: "Back",
  3711. image: {
  3712. source: "./media/characters/malik/back.svg",
  3713. extra: 1803/1607,
  3714. bottom: 33/1836
  3715. },
  3716. extraAttributes: {
  3717. "toeSize": {
  3718. name: "Toe Size",
  3719. power: 2,
  3720. type: "area",
  3721. base: math.unit(0.0159, "m^2")
  3722. },
  3723. "pawSize": {
  3724. name: "Paw Size",
  3725. power: 2,
  3726. type: "area",
  3727. base: math.unit(0.09834, "m^2")
  3728. },
  3729. }
  3730. },
  3731. },
  3732. [
  3733. {
  3734. name: "Macro",
  3735. height: math.unit(156, "feet"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "Macro+",
  3740. height: math.unit(1188, "feet")
  3741. },
  3742. ]
  3743. ))
  3744. characterMakers.push(() => makeCharacter(
  3745. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3746. {
  3747. front: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(75, "kg"),
  3750. name: "Front",
  3751. image: {
  3752. source: "./media/characters/sefer/front.svg",
  3753. extra: 848 / 659,
  3754. bottom: 28.3 / 876.442
  3755. }
  3756. },
  3757. back: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Back",
  3761. image: {
  3762. source: "./media/characters/sefer/back.svg",
  3763. extra: 864 / 695,
  3764. bottom: 10 / 871
  3765. }
  3766. },
  3767. frontDressed: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Dressed",
  3771. image: {
  3772. source: "./media/characters/sefer/dressed.svg",
  3773. extra: 839 / 653,
  3774. bottom: 37.6 / 878
  3775. }
  3776. },
  3777. },
  3778. [
  3779. {
  3780. name: "Normal",
  3781. height: math.unit(6, "feet"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Big",
  3786. height: math.unit(8, "meters")
  3787. },
  3788. ]
  3789. ))
  3790. characterMakers.push(() => makeCharacter(
  3791. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3792. {
  3793. body: {
  3794. height: math.unit(2.2428, "meter"),
  3795. weight: math.unit(124.738, "kg"),
  3796. name: "Body",
  3797. image: {
  3798. extra: 1225 / 1050,
  3799. source: "./media/characters/north/front.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Micro",
  3806. height: math.unit(4, "inches")
  3807. },
  3808. {
  3809. name: "Macro",
  3810. height: math.unit(63, "meters")
  3811. },
  3812. {
  3813. name: "Megamacro",
  3814. height: math.unit(101, "miles"),
  3815. default: true
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3821. {
  3822. angled: {
  3823. height: math.unit(4, "meter"),
  3824. weight: math.unit(150, "kg"),
  3825. name: "Angled",
  3826. image: {
  3827. source: "./media/characters/talan/angled-sfw.svg",
  3828. bottom: 29 / 3734
  3829. }
  3830. },
  3831. angledNsfw: {
  3832. height: math.unit(4, "meter"),
  3833. weight: math.unit(150, "kg"),
  3834. name: "Angled (NSFW)",
  3835. image: {
  3836. source: "./media/characters/talan/angled-nsfw.svg",
  3837. bottom: 29 / 3734
  3838. }
  3839. },
  3840. frontNsfw: {
  3841. height: math.unit(4, "meter"),
  3842. weight: math.unit(150, "kg"),
  3843. name: "Front (NSFW)",
  3844. image: {
  3845. source: "./media/characters/talan/front-nsfw.svg",
  3846. bottom: 29 / 3734
  3847. }
  3848. },
  3849. sideNsfw: {
  3850. height: math.unit(4, "meter"),
  3851. weight: math.unit(150, "kg"),
  3852. name: "Side (NSFW)",
  3853. image: {
  3854. source: "./media/characters/talan/side-nsfw.svg",
  3855. bottom: 29 / 3734
  3856. }
  3857. },
  3858. back: {
  3859. height: math.unit(4, "meter"),
  3860. weight: math.unit(150, "kg"),
  3861. name: "Back",
  3862. image: {
  3863. source: "./media/characters/talan/back.svg"
  3864. }
  3865. },
  3866. dickBottom: {
  3867. height: math.unit(0.621, "meter"),
  3868. name: "Dick (Bottom)",
  3869. image: {
  3870. source: "./media/characters/talan/dick-bottom.svg"
  3871. }
  3872. },
  3873. dickTop: {
  3874. height: math.unit(0.621, "meter"),
  3875. name: "Dick (Top)",
  3876. image: {
  3877. source: "./media/characters/talan/dick-top.svg"
  3878. }
  3879. },
  3880. dickSide: {
  3881. height: math.unit(0.305, "meter"),
  3882. name: "Dick (Side)",
  3883. image: {
  3884. source: "./media/characters/talan/dick-side.svg"
  3885. }
  3886. },
  3887. dickFront: {
  3888. height: math.unit(0.305, "meter"),
  3889. name: "Dick (Front)",
  3890. image: {
  3891. source: "./media/characters/talan/dick-front.svg"
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Normal",
  3898. height: math.unit(4, "meters")
  3899. },
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(100, "meters")
  3903. },
  3904. {
  3905. name: "Megamacro",
  3906. height: math.unit(2, "miles"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Gigamacro",
  3911. height: math.unit(5000, "miles")
  3912. },
  3913. {
  3914. name: "Teramacro",
  3915. height: math.unit(100, "parsecs")
  3916. }
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(90, "kg"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/gael'rathus/front.svg"
  3928. }
  3929. },
  3930. frontAlt: {
  3931. height: math.unit(2, "meter"),
  3932. weight: math.unit(90, "kg"),
  3933. name: "Front (alt)",
  3934. image: {
  3935. source: "./media/characters/gael'rathus/front-alt.svg"
  3936. }
  3937. },
  3938. frontAlt2: {
  3939. height: math.unit(2, "meter"),
  3940. weight: math.unit(90, "kg"),
  3941. name: "Front (alt 2)",
  3942. image: {
  3943. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Normal",
  3950. height: math.unit(9, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Large",
  3955. height: math.unit(25, "feet")
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(0.25, "miles")
  3960. },
  3961. {
  3962. name: "Megamacro",
  3963. height: math.unit(10, "miles")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3969. {
  3970. side: {
  3971. height: math.unit(2, "meter"),
  3972. weight: math.unit(140, "kg"),
  3973. name: "Side",
  3974. image: {
  3975. source: "./media/characters/sosha/side.svg",
  3976. extra: 1170/1006,
  3977. bottom: 94/1264
  3978. }
  3979. },
  3980. maw: {
  3981. height: math.unit(2.87, "feet"),
  3982. name: "Maw",
  3983. image: {
  3984. source: "./media/characters/sosha/maw.svg",
  3985. extra: 966/865,
  3986. bottom: 0/966
  3987. }
  3988. },
  3989. cooch: {
  3990. height: math.unit(5.6, "feet"),
  3991. name: "Cooch",
  3992. image: {
  3993. source: "./media/characters/sosha/cooch.svg"
  3994. }
  3995. },
  3996. },
  3997. [
  3998. {
  3999. name: "Normal",
  4000. height: math.unit(12, "feet"),
  4001. default: true
  4002. }
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4007. {
  4008. side: {
  4009. height: math.unit(5 + 5 / 12, "feet"),
  4010. weight: math.unit(170, "kg"),
  4011. name: "Side",
  4012. image: {
  4013. source: "./media/characters/runnola/side.svg",
  4014. extra: 741 / 448,
  4015. bottom: 0.05
  4016. }
  4017. },
  4018. },
  4019. [
  4020. {
  4021. name: "Small",
  4022. height: math.unit(3, "feet")
  4023. },
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(5 + 5 / 12, "feet"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Big",
  4031. height: math.unit(10, "feet")
  4032. },
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(2, "meter"),
  4040. weight: math.unit(50, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/kurribird/front.svg",
  4044. bottom: 0.015
  4045. }
  4046. },
  4047. frontAlt: {
  4048. height: math.unit(1.5, "meter"),
  4049. weight: math.unit(50, "kg"),
  4050. name: "Front (Alt)",
  4051. image: {
  4052. source: "./media/characters/kurribird/front-alt.svg",
  4053. extra: 1.45
  4054. }
  4055. },
  4056. },
  4057. [
  4058. {
  4059. name: "Normal",
  4060. height: math.unit(7, "feet")
  4061. },
  4062. {
  4063. name: "Big",
  4064. height: math.unit(12, "feet"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(1500, "feet")
  4070. },
  4071. {
  4072. name: "Megamacro",
  4073. height: math.unit(2, "miles")
  4074. }
  4075. ]
  4076. ))
  4077. characterMakers.push(() => makeCharacter(
  4078. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4079. {
  4080. front: {
  4081. height: math.unit(2, "meter"),
  4082. weight: math.unit(80, "kg"),
  4083. name: "Front",
  4084. image: {
  4085. source: "./media/characters/elbial/front.svg",
  4086. extra: 1643 / 1556,
  4087. bottom: 60.2 / 1696
  4088. }
  4089. },
  4090. side: {
  4091. height: math.unit(2, "meter"),
  4092. weight: math.unit(80, "kg"),
  4093. name: "Side",
  4094. image: {
  4095. source: "./media/characters/elbial/side.svg",
  4096. extra: 1601/1528,
  4097. bottom: 97/1698
  4098. }
  4099. },
  4100. back: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(80, "kg"),
  4103. name: "Back",
  4104. image: {
  4105. source: "./media/characters/elbial/back.svg",
  4106. extra: 1653/1569,
  4107. bottom: 20/1673
  4108. }
  4109. },
  4110. frontDressed: {
  4111. height: math.unit(2, "meter"),
  4112. weight: math.unit(80, "kg"),
  4113. name: "Front (Dressed)",
  4114. image: {
  4115. source: "./media/characters/elbial/front-dressed.svg",
  4116. extra: 1638/1569,
  4117. bottom: 70/1708
  4118. }
  4119. },
  4120. genitals: {
  4121. height: math.unit(2 / 3.367, "meter"),
  4122. name: "Genitals",
  4123. image: {
  4124. source: "./media/characters/elbial/genitals.svg"
  4125. }
  4126. },
  4127. },
  4128. [
  4129. {
  4130. name: "Large",
  4131. height: math.unit(100, "feet")
  4132. },
  4133. {
  4134. name: "Macro",
  4135. height: math.unit(500, "feet"),
  4136. default: true
  4137. },
  4138. {
  4139. name: "Megamacro",
  4140. height: math.unit(10, "miles")
  4141. },
  4142. {
  4143. name: "Gigamacro",
  4144. height: math.unit(25000, "miles")
  4145. },
  4146. {
  4147. name: "Full-Size",
  4148. height: math.unit(8000000, "gigaparsecs")
  4149. }
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4154. {
  4155. front: {
  4156. height: math.unit(2, "meter"),
  4157. weight: math.unit(60, "kg"),
  4158. name: "Front",
  4159. image: {
  4160. source: "./media/characters/noah/front.svg"
  4161. }
  4162. },
  4163. talons: {
  4164. height: math.unit(0.315, "meter"),
  4165. name: "Talons",
  4166. image: {
  4167. source: "./media/characters/noah/talons.svg"
  4168. }
  4169. }
  4170. },
  4171. [
  4172. {
  4173. name: "Large",
  4174. height: math.unit(50, "feet")
  4175. },
  4176. {
  4177. name: "Macro",
  4178. height: math.unit(750, "feet"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Megamacro",
  4183. height: math.unit(50, "miles")
  4184. },
  4185. {
  4186. name: "Gigamacro",
  4187. height: math.unit(100000, "miles")
  4188. },
  4189. {
  4190. name: "Full-Size",
  4191. height: math.unit(3000000000, "miles")
  4192. }
  4193. ]
  4194. ))
  4195. characterMakers.push(() => makeCharacter(
  4196. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4197. {
  4198. front: {
  4199. height: math.unit(2, "meter"),
  4200. weight: math.unit(80, "kg"),
  4201. name: "Front",
  4202. image: {
  4203. source: "./media/characters/natalya/front.svg"
  4204. }
  4205. },
  4206. back: {
  4207. height: math.unit(2, "meter"),
  4208. weight: math.unit(80, "kg"),
  4209. name: "Back",
  4210. image: {
  4211. source: "./media/characters/natalya/back.svg"
  4212. }
  4213. }
  4214. },
  4215. [
  4216. {
  4217. name: "Normal",
  4218. height: math.unit(150, "feet"),
  4219. default: true
  4220. },
  4221. {
  4222. name: "Megamacro",
  4223. height: math.unit(5, "miles")
  4224. },
  4225. {
  4226. name: "Full-Size",
  4227. height: math.unit(600, "kiloparsecs")
  4228. }
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(50, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/erestrebah/front.svg",
  4240. extra: 1262/1162,
  4241. bottom: 96/1358
  4242. }
  4243. },
  4244. back: {
  4245. height: math.unit(2, "meter"),
  4246. weight: math.unit(50, "kg"),
  4247. name: "Back",
  4248. image: {
  4249. source: "./media/characters/erestrebah/back.svg",
  4250. extra: 1257/1139,
  4251. bottom: 13/1270
  4252. }
  4253. },
  4254. wing: {
  4255. height: math.unit(2, "meter"),
  4256. weight: math.unit(50, "kg"),
  4257. name: "Wing",
  4258. image: {
  4259. source: "./media/characters/erestrebah/wing.svg",
  4260. extra: 1262/1162,
  4261. bottom: 96/1358
  4262. }
  4263. },
  4264. mouth: {
  4265. height: math.unit(0.39, "feet"),
  4266. name: "Mouth",
  4267. image: {
  4268. source: "./media/characters/erestrebah/mouth.svg"
  4269. }
  4270. }
  4271. },
  4272. [
  4273. {
  4274. name: "Normal",
  4275. height: math.unit(10, "feet")
  4276. },
  4277. {
  4278. name: "Large",
  4279. height: math.unit(50, "feet"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(300, "feet")
  4285. },
  4286. {
  4287. name: "Macro+",
  4288. height: math.unit(750, "feet")
  4289. },
  4290. {
  4291. name: "Megamacro",
  4292. height: math.unit(3, "miles")
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4298. {
  4299. front: {
  4300. height: math.unit(2, "meter"),
  4301. weight: math.unit(80, "kg"),
  4302. name: "Front",
  4303. image: {
  4304. source: "./media/characters/jennifer/front.svg",
  4305. bottom: 0.11,
  4306. extra: 1.16
  4307. }
  4308. },
  4309. frontAlt: {
  4310. height: math.unit(2, "meter"),
  4311. weight: math.unit(80, "kg"),
  4312. name: "Front (Alt)",
  4313. image: {
  4314. source: "./media/characters/jennifer/front-alt.svg"
  4315. }
  4316. }
  4317. },
  4318. [
  4319. {
  4320. name: "Canon Height",
  4321. height: math.unit(120, "feet"),
  4322. default: true
  4323. },
  4324. {
  4325. name: "Macro+",
  4326. height: math.unit(300, "feet")
  4327. },
  4328. {
  4329. name: "Megamacro",
  4330. height: math.unit(20000, "feet")
  4331. }
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4336. {
  4337. front: {
  4338. height: math.unit(2, "meter"),
  4339. weight: math.unit(50, "kg"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/kalista/front.svg",
  4343. extra: 1314/1145,
  4344. bottom: 101/1415
  4345. }
  4346. },
  4347. back: {
  4348. height: math.unit(2, "meter"),
  4349. weight: math.unit(50, "kg"),
  4350. name: "Back",
  4351. image: {
  4352. source: "./media/characters/kalista/back.svg",
  4353. extra: 1366 / 1156,
  4354. bottom: 33.9 / 1362.78
  4355. }
  4356. }
  4357. },
  4358. [
  4359. {
  4360. name: "Uncomfortably Small",
  4361. height: math.unit(10, "feet")
  4362. },
  4363. {
  4364. name: "Small",
  4365. height: math.unit(30, "feet")
  4366. },
  4367. {
  4368. name: "Macro",
  4369. height: math.unit(100, "feet"),
  4370. default: true
  4371. },
  4372. {
  4373. name: "Macro+",
  4374. height: math.unit(2000, "feet")
  4375. },
  4376. {
  4377. name: "True Form",
  4378. height: math.unit(8924, "miles")
  4379. }
  4380. ]
  4381. ))
  4382. characterMakers.push(() => makeCharacter(
  4383. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4384. {
  4385. front: {
  4386. height: math.unit(2, "meter"),
  4387. weight: math.unit(120, "kg"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/ggv/front.svg"
  4391. }
  4392. },
  4393. side: {
  4394. height: math.unit(2, "meter"),
  4395. weight: math.unit(120, "kg"),
  4396. name: "Side",
  4397. image: {
  4398. source: "./media/characters/ggv/side.svg"
  4399. }
  4400. }
  4401. },
  4402. [
  4403. {
  4404. name: "Extremely Puny",
  4405. height: math.unit(9 + 5 / 12, "feet")
  4406. },
  4407. {
  4408. name: "Horribly Small",
  4409. height: math.unit(47.7, "miles"),
  4410. default: true
  4411. },
  4412. {
  4413. name: "Reasonably Sized",
  4414. height: math.unit(25000, "parsecs")
  4415. },
  4416. {
  4417. name: "Slightly Uncompressed",
  4418. height: math.unit(7.77e31, "parsecs")
  4419. },
  4420. {
  4421. name: "Omniversal",
  4422. height: math.unit(1e300, "meters")
  4423. },
  4424. ]
  4425. ))
  4426. characterMakers.push(() => makeCharacter(
  4427. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4428. {
  4429. front: {
  4430. height: math.unit(2, "meter"),
  4431. weight: math.unit(75, "lb"),
  4432. name: "Front",
  4433. image: {
  4434. source: "./media/characters/napalm/front.svg"
  4435. }
  4436. },
  4437. back: {
  4438. height: math.unit(2, "meter"),
  4439. weight: math.unit(75, "lb"),
  4440. name: "Back",
  4441. image: {
  4442. source: "./media/characters/napalm/back.svg"
  4443. }
  4444. }
  4445. },
  4446. [
  4447. {
  4448. name: "Standard",
  4449. height: math.unit(55, "feet"),
  4450. default: true
  4451. }
  4452. ]
  4453. ))
  4454. characterMakers.push(() => makeCharacter(
  4455. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4456. {
  4457. front: {
  4458. height: math.unit(7 + 5 / 6, "feet"),
  4459. weight: math.unit(325, "lb"),
  4460. name: "Front",
  4461. image: {
  4462. source: "./media/characters/asana/front.svg",
  4463. extra: 1133 / 1060,
  4464. bottom: 15.2 / 1148.6
  4465. }
  4466. },
  4467. back: {
  4468. height: math.unit(7 + 5 / 6, "feet"),
  4469. weight: math.unit(325, "lb"),
  4470. name: "Back",
  4471. image: {
  4472. source: "./media/characters/asana/back.svg",
  4473. extra: 1114 / 1043,
  4474. bottom: 5 / 1120
  4475. }
  4476. },
  4477. dressedDark: {
  4478. height: math.unit(7 + 5 / 6, "feet"),
  4479. weight: math.unit(325, "lb"),
  4480. name: "Dressed (Dark)",
  4481. image: {
  4482. source: "./media/characters/asana/dressed-dark.svg",
  4483. extra: 1133 / 1060,
  4484. bottom: 15.2 / 1148.6
  4485. }
  4486. },
  4487. dressedLight: {
  4488. height: math.unit(7 + 5 / 6, "feet"),
  4489. weight: math.unit(325, "lb"),
  4490. name: "Dressed (Light)",
  4491. image: {
  4492. source: "./media/characters/asana/dressed-light.svg",
  4493. extra: 1133 / 1060,
  4494. bottom: 15.2 / 1148.6
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Standard",
  4501. height: math.unit(7 + 5 / 6, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Large",
  4506. height: math.unit(10, "meters")
  4507. },
  4508. {
  4509. name: "Macro",
  4510. height: math.unit(2500, "meters")
  4511. },
  4512. {
  4513. name: "Megamacro",
  4514. height: math.unit(5e6, "meters")
  4515. },
  4516. {
  4517. name: "Examacro",
  4518. height: math.unit(5e12, "lightyears")
  4519. },
  4520. {
  4521. name: "Max Size",
  4522. height: math.unit(1e31, "lightyears")
  4523. }
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4528. {
  4529. front: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(60, "kg"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/ebony/front.svg",
  4535. bottom: 0.03,
  4536. extra: 1045 / 810 + 0.03
  4537. }
  4538. },
  4539. side: {
  4540. height: math.unit(2, "meter"),
  4541. weight: math.unit(60, "kg"),
  4542. name: "Side",
  4543. image: {
  4544. source: "./media/characters/ebony/side.svg",
  4545. bottom: 0.03,
  4546. extra: 1045 / 810 + 0.03
  4547. }
  4548. },
  4549. back: {
  4550. height: math.unit(2, "meter"),
  4551. weight: math.unit(60, "kg"),
  4552. name: "Back",
  4553. image: {
  4554. source: "./media/characters/ebony/back.svg",
  4555. bottom: 0.01,
  4556. extra: 1045 / 810 + 0.01
  4557. }
  4558. },
  4559. },
  4560. [
  4561. // TODO check why I did this lol
  4562. {
  4563. name: "Standard",
  4564. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Macro",
  4569. height: math.unit(200, "feet")
  4570. },
  4571. {
  4572. name: "Gigamacro",
  4573. height: math.unit(13000, "km")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(175, "lb"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/mountain/front.svg",
  4586. extra: 972 / 955,
  4587. bottom: 64 / 1036.6
  4588. }
  4589. },
  4590. back: {
  4591. height: math.unit(6, "feet"),
  4592. weight: math.unit(175, "lb"),
  4593. name: "Back",
  4594. image: {
  4595. source: "./media/characters/mountain/back.svg",
  4596. extra: 970 / 950,
  4597. bottom: 28.25 / 999
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Large",
  4604. height: math.unit(20, "meters")
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(300, "meters")
  4609. },
  4610. {
  4611. name: "Gigamacro",
  4612. height: math.unit(10000, "km"),
  4613. default: true
  4614. },
  4615. {
  4616. name: "Examacro",
  4617. height: math.unit(10e9, "lightyears")
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(8, "feet"),
  4626. weight: math.unit(500, "lb"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/rick/front.svg"
  4630. }
  4631. }
  4632. },
  4633. [
  4634. {
  4635. name: "Normal",
  4636. height: math.unit(8, "feet"),
  4637. default: true
  4638. },
  4639. {
  4640. name: "Macro",
  4641. height: math.unit(5, "km")
  4642. }
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4647. {
  4648. front: {
  4649. height: math.unit(8, "feet"),
  4650. weight: math.unit(120, "lb"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/ona/front.svg"
  4654. }
  4655. },
  4656. frontAlt: {
  4657. height: math.unit(8, "feet"),
  4658. weight: math.unit(120, "lb"),
  4659. name: "Front (Alt)",
  4660. image: {
  4661. source: "./media/characters/ona/front-alt.svg"
  4662. }
  4663. },
  4664. back: {
  4665. height: math.unit(8, "feet"),
  4666. weight: math.unit(120, "lb"),
  4667. name: "Back",
  4668. image: {
  4669. source: "./media/characters/ona/back.svg"
  4670. }
  4671. },
  4672. foot: {
  4673. height: math.unit(1.1, "feet"),
  4674. name: "Foot",
  4675. image: {
  4676. source: "./media/characters/ona/foot.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Megamacro",
  4683. height: math.unit(70, "km"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Gigamacro",
  4688. height: math.unit(681818, "miles")
  4689. },
  4690. {
  4691. name: "Examacro",
  4692. height: math.unit(3800000, "lightyears")
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(12, "feet"),
  4701. weight: math.unit(3000, "lb"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/mech/front.svg",
  4705. extra: 2900 / 2770,
  4706. bottom: 110 / 3010
  4707. }
  4708. },
  4709. back: {
  4710. height: math.unit(12, "feet"),
  4711. weight: math.unit(3000, "lb"),
  4712. name: "Back",
  4713. image: {
  4714. source: "./media/characters/mech/back.svg",
  4715. extra: 3011 / 2890,
  4716. bottom: 94 / 3105
  4717. }
  4718. },
  4719. maw: {
  4720. height: math.unit(3.07, "feet"),
  4721. name: "Maw",
  4722. image: {
  4723. source: "./media/characters/mech/maw.svg"
  4724. }
  4725. },
  4726. head: {
  4727. height: math.unit(3.07, "feet"),
  4728. name: "Head",
  4729. image: {
  4730. source: "./media/characters/mech/head.svg"
  4731. }
  4732. },
  4733. dick: {
  4734. height: math.unit(1.43, "feet"),
  4735. name: "Dick",
  4736. image: {
  4737. source: "./media/characters/mech/dick.svg"
  4738. }
  4739. },
  4740. },
  4741. [
  4742. {
  4743. name: "Normal",
  4744. height: math.unit(12, "feet")
  4745. },
  4746. {
  4747. name: "Macro",
  4748. height: math.unit(300, "feet"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Macro+",
  4753. height: math.unit(1500, "feet")
  4754. },
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4759. {
  4760. front: {
  4761. height: math.unit(1.3, "meter"),
  4762. weight: math.unit(30, "kg"),
  4763. name: "Front",
  4764. image: {
  4765. source: "./media/characters/gregory/front.svg",
  4766. }
  4767. }
  4768. },
  4769. [
  4770. {
  4771. name: "Normal",
  4772. height: math.unit(1.3, "meter"),
  4773. default: true
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(20, "meter")
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4783. {
  4784. front: {
  4785. height: math.unit(2.8, "meter"),
  4786. weight: math.unit(200, "kg"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/elory/front.svg",
  4790. }
  4791. }
  4792. },
  4793. [
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(2.8, "meter"),
  4797. default: true
  4798. },
  4799. {
  4800. name: "Macro",
  4801. height: math.unit(38, "meter")
  4802. }
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4807. {
  4808. front: {
  4809. height: math.unit(470, "feet"),
  4810. weight: math.unit(924, "tons"),
  4811. name: "Front",
  4812. image: {
  4813. source: "./media/characters/angelpatamon/front.svg",
  4814. }
  4815. }
  4816. },
  4817. [
  4818. {
  4819. name: "Normal",
  4820. height: math.unit(470, "feet"),
  4821. default: true
  4822. },
  4823. {
  4824. name: "Deity Size I",
  4825. height: math.unit(28651.2, "km")
  4826. },
  4827. {
  4828. name: "Deity Size II",
  4829. height: math.unit(171907.2, "km")
  4830. }
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4835. {
  4836. side: {
  4837. height: math.unit(7.2, "meter"),
  4838. weight: math.unit(8.2, "tons"),
  4839. name: "Side",
  4840. image: {
  4841. source: "./media/characters/cryae/side.svg",
  4842. extra: 3500 / 1500
  4843. }
  4844. }
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(7.2, "meter"),
  4850. default: true
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4856. {
  4857. front: {
  4858. height: math.unit(6, "feet"),
  4859. weight: math.unit(175, "lb"),
  4860. name: "Front",
  4861. image: {
  4862. source: "./media/characters/xera/front.svg",
  4863. extra: 2377 / 1972,
  4864. bottom: 75.5 / 2452
  4865. }
  4866. },
  4867. side: {
  4868. height: math.unit(6, "feet"),
  4869. weight: math.unit(175, "lb"),
  4870. name: "Side",
  4871. image: {
  4872. source: "./media/characters/xera/side.svg",
  4873. extra: 2345 / 2019,
  4874. bottom: 39.7 / 2384
  4875. }
  4876. },
  4877. back: {
  4878. height: math.unit(6, "feet"),
  4879. weight: math.unit(175, "lb"),
  4880. name: "Back",
  4881. image: {
  4882. source: "./media/characters/xera/back.svg",
  4883. extra: 2095 / 1984,
  4884. bottom: 67 / 2166
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Small",
  4891. height: math.unit(10, "feet")
  4892. },
  4893. {
  4894. name: "Macro",
  4895. height: math.unit(500, "meters"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Macro+",
  4900. height: math.unit(10, "km")
  4901. },
  4902. {
  4903. name: "Gigamacro",
  4904. height: math.unit(25000, "km")
  4905. },
  4906. {
  4907. name: "Teramacro",
  4908. height: math.unit(3e6, "km")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(175, "lb"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/nebula/front.svg",
  4921. extra: 2566 / 2362,
  4922. bottom: 81 / 2644
  4923. }
  4924. }
  4925. },
  4926. [
  4927. {
  4928. name: "Small",
  4929. height: math.unit(4.5, "meters")
  4930. },
  4931. {
  4932. name: "Macro",
  4933. height: math.unit(1500, "meters"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Megamacro",
  4938. height: math.unit(150, "km")
  4939. },
  4940. {
  4941. name: "Gigamacro",
  4942. height: math.unit(27000, "km")
  4943. }
  4944. ]
  4945. ))
  4946. characterMakers.push(() => makeCharacter(
  4947. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4948. {
  4949. front: {
  4950. height: math.unit(6, "feet"),
  4951. weight: math.unit(225, "lb"),
  4952. name: "Front",
  4953. image: {
  4954. source: "./media/characters/abysgar/front.svg",
  4955. extra: 1739/1614,
  4956. bottom: 71/1810
  4957. }
  4958. },
  4959. frontNsfw: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(225, "lb"),
  4962. name: "Front (NSFW)",
  4963. image: {
  4964. source: "./media/characters/abysgar/front-nsfw.svg",
  4965. extra: 1739/1614,
  4966. bottom: 71/1810
  4967. }
  4968. },
  4969. back: {
  4970. height: math.unit(4.6, "feet"),
  4971. weight: math.unit(225, "lb"),
  4972. name: "Back",
  4973. image: {
  4974. source: "./media/characters/abysgar/back.svg",
  4975. extra: 1384/1327,
  4976. bottom: 0/1384
  4977. }
  4978. },
  4979. head: {
  4980. height: math.unit(1.25, "feet"),
  4981. name: "Head",
  4982. image: {
  4983. source: "./media/characters/abysgar/head.svg",
  4984. extra: 669/569,
  4985. bottom: 0/669
  4986. }
  4987. },
  4988. },
  4989. [
  4990. {
  4991. name: "Small",
  4992. height: math.unit(4.5, "meters")
  4993. },
  4994. {
  4995. name: "Macro",
  4996. height: math.unit(1250, "meters"),
  4997. default: true
  4998. },
  4999. {
  5000. name: "Megamacro",
  5001. height: math.unit(125, "km")
  5002. },
  5003. {
  5004. name: "Gigamacro",
  5005. height: math.unit(26000, "km")
  5006. }
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5011. {
  5012. front: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(180, "lb"),
  5015. name: "Front",
  5016. image: {
  5017. source: "./media/characters/yakuz/front.svg"
  5018. }
  5019. }
  5020. },
  5021. [
  5022. {
  5023. name: "Small",
  5024. height: math.unit(5, "meters")
  5025. },
  5026. {
  5027. name: "Macro",
  5028. height: math.unit(1500, "meters"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "Megamacro",
  5033. height: math.unit(200, "km")
  5034. },
  5035. {
  5036. name: "Gigamacro",
  5037. height: math.unit(100000, "km")
  5038. }
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5043. {
  5044. front: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(175, "lb"),
  5047. name: "Front",
  5048. image: {
  5049. source: "./media/characters/mirova/front.svg",
  5050. extra: 3334 / 3071,
  5051. bottom: 42 / 3375.6
  5052. }
  5053. }
  5054. },
  5055. [
  5056. {
  5057. name: "Small",
  5058. height: math.unit(5, "meters")
  5059. },
  5060. {
  5061. name: "Macro",
  5062. height: math.unit(900, "meters"),
  5063. default: true
  5064. },
  5065. {
  5066. name: "Megamacro",
  5067. height: math.unit(135, "km")
  5068. },
  5069. {
  5070. name: "Gigamacro",
  5071. height: math.unit(20000, "km")
  5072. }
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5077. {
  5078. side: {
  5079. height: math.unit(28.35, "feet"),
  5080. weight: math.unit(99.75, "tons"),
  5081. name: "Side",
  5082. image: {
  5083. source: "./media/characters/asana-mech/side.svg",
  5084. extra: 923 / 699,
  5085. bottom: 50 / 975
  5086. }
  5087. },
  5088. chaingun: {
  5089. height: math.unit(7, "feet"),
  5090. weight: math.unit(2400, "lb"),
  5091. name: "Chaingun",
  5092. image: {
  5093. source: "./media/characters/asana-mech/chaingun.svg"
  5094. }
  5095. },
  5096. laser: {
  5097. height: math.unit(7.12, "feet"),
  5098. weight: math.unit(2000, "lb"),
  5099. name: "Laser",
  5100. image: {
  5101. source: "./media/characters/asana-mech/laser.svg"
  5102. }
  5103. },
  5104. },
  5105. [
  5106. {
  5107. name: "Normal",
  5108. height: math.unit(28.35, "feet"),
  5109. default: true
  5110. },
  5111. {
  5112. name: "Macro",
  5113. height: math.unit(2500, "feet")
  5114. },
  5115. {
  5116. name: "Megamacro",
  5117. height: math.unit(25, "miles")
  5118. },
  5119. {
  5120. name: "Examacro",
  5121. height: math.unit(6e8, "lightyears")
  5122. },
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5127. {
  5128. front: {
  5129. height: math.unit(5, "meters"),
  5130. weight: math.unit(1000, "kg"),
  5131. name: "Front",
  5132. image: {
  5133. source: "./media/characters/asche/front.svg",
  5134. extra: 1258 / 1190,
  5135. bottom: 47 / 1305
  5136. }
  5137. },
  5138. frontUnderwear: {
  5139. height: math.unit(5, "meters"),
  5140. weight: math.unit(1000, "kg"),
  5141. name: "Front (Underwear)",
  5142. image: {
  5143. source: "./media/characters/asche/front-underwear.svg",
  5144. extra: 1258 / 1190,
  5145. bottom: 47 / 1305
  5146. }
  5147. },
  5148. frontDressed: {
  5149. height: math.unit(5, "meters"),
  5150. weight: math.unit(1000, "kg"),
  5151. name: "Front (Dressed)",
  5152. image: {
  5153. source: "./media/characters/asche/front-dressed.svg",
  5154. extra: 1258 / 1190,
  5155. bottom: 47 / 1305
  5156. }
  5157. },
  5158. frontArmor: {
  5159. height: math.unit(5, "meters"),
  5160. weight: math.unit(1000, "kg"),
  5161. name: "Front (Armored)",
  5162. image: {
  5163. source: "./media/characters/asche/front-armored.svg",
  5164. extra: 1374 / 1308,
  5165. bottom: 23 / 1397
  5166. }
  5167. },
  5168. mp724: {
  5169. height: math.unit(0.96, "meters"),
  5170. weight: math.unit(38, "kg"),
  5171. name: "H&K MP724",
  5172. image: {
  5173. source: "./media/characters/asche/h&k-mp724.svg"
  5174. }
  5175. },
  5176. side: {
  5177. height: math.unit(5, "meters"),
  5178. weight: math.unit(1000, "kg"),
  5179. name: "Side",
  5180. image: {
  5181. source: "./media/characters/asche/side.svg",
  5182. extra: 1717 / 1609,
  5183. bottom: 0.005
  5184. }
  5185. },
  5186. back: {
  5187. height: math.unit(5, "meters"),
  5188. weight: math.unit(1000, "kg"),
  5189. name: "Back",
  5190. image: {
  5191. source: "./media/characters/asche/back.svg",
  5192. extra: 1570 / 1501
  5193. }
  5194. },
  5195. },
  5196. [
  5197. {
  5198. name: "DEFCON 5",
  5199. height: math.unit(5, "meters")
  5200. },
  5201. {
  5202. name: "DEFCON 4",
  5203. height: math.unit(500, "meters"),
  5204. default: true
  5205. },
  5206. {
  5207. name: "DEFCON 3",
  5208. height: math.unit(5, "km")
  5209. },
  5210. {
  5211. name: "DEFCON 2",
  5212. height: math.unit(500, "km")
  5213. },
  5214. {
  5215. name: "DEFCON 1",
  5216. height: math.unit(500000, "km")
  5217. },
  5218. {
  5219. name: "DEFCON 0",
  5220. height: math.unit(3, "gigaparsecs")
  5221. },
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5226. {
  5227. front: {
  5228. height: math.unit(2, "meters"),
  5229. weight: math.unit(76, "kg"),
  5230. name: "Front",
  5231. image: {
  5232. source: "./media/characters/gale/front.svg"
  5233. }
  5234. },
  5235. frontAlt1: {
  5236. height: math.unit(2, "meters"),
  5237. weight: math.unit(76, "kg"),
  5238. name: "Front (Alt 1)",
  5239. image: {
  5240. source: "./media/characters/gale/front-alt-1.svg"
  5241. }
  5242. },
  5243. frontAlt2: {
  5244. height: math.unit(2, "meters"),
  5245. weight: math.unit(76, "kg"),
  5246. name: "Front (Alt 2)",
  5247. image: {
  5248. source: "./media/characters/gale/front-alt-2.svg"
  5249. }
  5250. },
  5251. },
  5252. [
  5253. {
  5254. name: "Normal",
  5255. height: math.unit(7, "feet")
  5256. },
  5257. {
  5258. name: "Macro",
  5259. height: math.unit(150, "feet"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Macro+",
  5264. height: math.unit(300, "feet")
  5265. },
  5266. ]
  5267. ))
  5268. characterMakers.push(() => makeCharacter(
  5269. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5270. {
  5271. front: {
  5272. height: math.unit(5 + 10/12, "feet"),
  5273. weight: math.unit(67, "kg"),
  5274. name: "Front",
  5275. image: {
  5276. source: "./media/characters/draylen/front.svg",
  5277. extra: 832/777,
  5278. bottom: 85/917
  5279. }
  5280. }
  5281. },
  5282. [
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(5 + 10/12, "feet")
  5286. },
  5287. {
  5288. name: "Macro",
  5289. height: math.unit(150, "feet"),
  5290. default: true
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(7 + 9 / 12, "feet"),
  5299. weight: math.unit(379, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/chez/front.svg"
  5303. }
  5304. },
  5305. side: {
  5306. height: math.unit(7 + 9 / 12, "feet"),
  5307. weight: math.unit(379, "lbs"),
  5308. name: "Side",
  5309. image: {
  5310. source: "./media/characters/chez/side.svg"
  5311. }
  5312. }
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(7 + 9 / 12, "feet"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "God King",
  5322. height: math.unit(9750000, "meters")
  5323. }
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5328. {
  5329. front: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(275, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/kaylum/front.svg",
  5335. bottom: 0.01,
  5336. extra: 1166 / 1031
  5337. }
  5338. },
  5339. frontWingless: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(275, "lbs"),
  5342. name: "Front (Wingless)",
  5343. image: {
  5344. source: "./media/characters/kaylum/front-wingless.svg",
  5345. bottom: 0.01,
  5346. extra: 1117 / 1031
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(3.05, "meters")
  5354. },
  5355. {
  5356. name: "Master",
  5357. height: math.unit(5.5, "meters")
  5358. },
  5359. {
  5360. name: "Rampage",
  5361. height: math.unit(19, "meters")
  5362. },
  5363. {
  5364. name: "Macro Lite",
  5365. height: math.unit(37, "meters")
  5366. },
  5367. {
  5368. name: "Hyper Predator",
  5369. height: math.unit(61, "meters")
  5370. },
  5371. {
  5372. name: "Macro",
  5373. height: math.unit(138, "meters"),
  5374. default: true
  5375. }
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(5 + 5 / 12, "feet"),
  5383. weight: math.unit(120, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/geta/front.svg",
  5387. extra: 1003/933,
  5388. bottom: 21/1024
  5389. }
  5390. },
  5391. paw: {
  5392. height: math.unit(0.35, "feet"),
  5393. name: "Paw",
  5394. image: {
  5395. source: "./media/characters/geta/paw.svg"
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Micro",
  5402. height: math.unit(3, "inches"),
  5403. default: true
  5404. },
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(5 + 5 / 12, "feet")
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5413. {
  5414. front: {
  5415. height: math.unit(6, "feet"),
  5416. weight: math.unit(300, "lbs"),
  5417. name: "Front",
  5418. image: {
  5419. source: "./media/characters/tyrnn/front.svg"
  5420. }
  5421. }
  5422. },
  5423. [
  5424. {
  5425. name: "Main Height",
  5426. height: math.unit(355, "feet"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Fave. Height",
  5431. height: math.unit(2400, "feet")
  5432. }
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5437. {
  5438. front: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(300, "lbs"),
  5441. name: "Front",
  5442. image: {
  5443. source: "./media/characters/appledectomy/front.svg"
  5444. }
  5445. }
  5446. },
  5447. [
  5448. {
  5449. name: "Macro",
  5450. height: math.unit(2500, "feet")
  5451. },
  5452. {
  5453. name: "Megamacro",
  5454. height: math.unit(50, "miles"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Gigamacro",
  5459. height: math.unit(5000, "miles")
  5460. },
  5461. {
  5462. name: "Teramacro",
  5463. height: math.unit(250000, "miles")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(200, "lbs"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/vulpes/front.svg",
  5476. extra: 573 / 543,
  5477. bottom: 0.033
  5478. }
  5479. },
  5480. side: {
  5481. height: math.unit(6, "feet"),
  5482. weight: math.unit(200, "lbs"),
  5483. name: "Side",
  5484. image: {
  5485. source: "./media/characters/vulpes/side.svg",
  5486. extra: 577 / 549,
  5487. bottom: 11 / 588
  5488. }
  5489. },
  5490. back: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(200, "lbs"),
  5493. name: "Back",
  5494. image: {
  5495. source: "./media/characters/vulpes/back.svg",
  5496. extra: 573 / 549,
  5497. bottom: 20 / 593
  5498. }
  5499. },
  5500. feet: {
  5501. height: math.unit(1.276, "feet"),
  5502. name: "Feet",
  5503. image: {
  5504. source: "./media/characters/vulpes/feet.svg"
  5505. }
  5506. },
  5507. maw: {
  5508. height: math.unit(1.18, "feet"),
  5509. name: "Maw",
  5510. image: {
  5511. source: "./media/characters/vulpes/maw.svg"
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "Micro",
  5518. height: math.unit(2, "inches")
  5519. },
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(6.3, "feet")
  5523. },
  5524. {
  5525. name: "Macro",
  5526. height: math.unit(850, "feet")
  5527. },
  5528. {
  5529. name: "Megamacro",
  5530. height: math.unit(7500, "feet"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "Gigamacro",
  5535. height: math.unit(570000, "miles")
  5536. }
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5541. {
  5542. front: {
  5543. height: math.unit(6, "feet"),
  5544. weight: math.unit(210, "lbs"),
  5545. name: "Front",
  5546. image: {
  5547. source: "./media/characters/rain-fallen/front.svg"
  5548. }
  5549. },
  5550. side: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(210, "lbs"),
  5553. name: "Side",
  5554. image: {
  5555. source: "./media/characters/rain-fallen/side.svg"
  5556. }
  5557. },
  5558. back: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(210, "lbs"),
  5561. name: "Back",
  5562. image: {
  5563. source: "./media/characters/rain-fallen/back.svg"
  5564. }
  5565. },
  5566. feral: {
  5567. height: math.unit(9, "feet"),
  5568. weight: math.unit(700, "lbs"),
  5569. name: "Feral",
  5570. image: {
  5571. source: "./media/characters/rain-fallen/feral.svg"
  5572. }
  5573. },
  5574. },
  5575. [
  5576. {
  5577. name: "Meddling with Mortals",
  5578. height: math.unit(8 + 8/12, "feet")
  5579. },
  5580. {
  5581. name: "Normal",
  5582. height: math.unit(5, "meter")
  5583. },
  5584. {
  5585. name: "Macro",
  5586. height: math.unit(150, "meter"),
  5587. default: true
  5588. },
  5589. {
  5590. name: "Megamacro",
  5591. height: math.unit(278e6, "meter")
  5592. },
  5593. {
  5594. name: "Gigamacro",
  5595. height: math.unit(2e9, "meter")
  5596. },
  5597. {
  5598. name: "Teramacro",
  5599. height: math.unit(8e12, "meter")
  5600. },
  5601. {
  5602. name: "Devourer",
  5603. height: math.unit(14, "zettameters")
  5604. },
  5605. {
  5606. name: "Scarlet King",
  5607. height: math.unit(18, "yottameters")
  5608. },
  5609. {
  5610. name: "Void",
  5611. height: math.unit(1e88, "yottameters")
  5612. }
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5617. {
  5618. standing: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(180, "lbs"),
  5621. name: "Standing",
  5622. image: {
  5623. source: "./media/characters/zaakira/standing.svg",
  5624. extra: 1599/1504,
  5625. bottom: 39/1638
  5626. }
  5627. },
  5628. laying: {
  5629. height: math.unit(3.3, "feet"),
  5630. weight: math.unit(180, "lbs"),
  5631. name: "Laying",
  5632. image: {
  5633. source: "./media/characters/zaakira/laying.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(12, "feet")
  5641. },
  5642. {
  5643. name: "Macro",
  5644. height: math.unit(279, "feet"),
  5645. default: true
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5651. {
  5652. femSfw: {
  5653. height: math.unit(8, "feet"),
  5654. weight: math.unit(350, "lb"),
  5655. name: "Fem",
  5656. image: {
  5657. source: "./media/characters/sigvald/fem-sfw.svg",
  5658. extra: 182 / 164,
  5659. bottom: 8.7 / 190.5
  5660. }
  5661. },
  5662. femNsfw: {
  5663. height: math.unit(8, "feet"),
  5664. weight: math.unit(350, "lb"),
  5665. name: "Fem (NSFW)",
  5666. image: {
  5667. source: "./media/characters/sigvald/fem-nsfw.svg",
  5668. extra: 182 / 164,
  5669. bottom: 8.7 / 190.5
  5670. }
  5671. },
  5672. maleNsfw: {
  5673. height: math.unit(8, "feet"),
  5674. weight: math.unit(350, "lb"),
  5675. name: "Male (NSFW)",
  5676. image: {
  5677. source: "./media/characters/sigvald/male-nsfw.svg",
  5678. extra: 182 / 164,
  5679. bottom: 8.7 / 190.5
  5680. }
  5681. },
  5682. hermNsfw: {
  5683. height: math.unit(8, "feet"),
  5684. weight: math.unit(350, "lb"),
  5685. name: "Herm (NSFW)",
  5686. image: {
  5687. source: "./media/characters/sigvald/herm-nsfw.svg",
  5688. extra: 182 / 164,
  5689. bottom: 8.7 / 190.5
  5690. }
  5691. },
  5692. dick: {
  5693. height: math.unit(2.36, "feet"),
  5694. name: "Dick",
  5695. image: {
  5696. source: "./media/characters/sigvald/dick.svg"
  5697. }
  5698. },
  5699. eye: {
  5700. height: math.unit(0.31, "feet"),
  5701. name: "Eye",
  5702. image: {
  5703. source: "./media/characters/sigvald/eye.svg"
  5704. }
  5705. },
  5706. mouth: {
  5707. height: math.unit(0.92, "feet"),
  5708. name: "Mouth",
  5709. image: {
  5710. source: "./media/characters/sigvald/mouth.svg"
  5711. }
  5712. },
  5713. paws: {
  5714. height: math.unit(2.2, "feet"),
  5715. name: "Paws",
  5716. image: {
  5717. source: "./media/characters/sigvald/paws.svg"
  5718. }
  5719. }
  5720. },
  5721. [
  5722. {
  5723. name: "Normal",
  5724. height: math.unit(8, "feet")
  5725. },
  5726. {
  5727. name: "Large",
  5728. height: math.unit(12, "feet")
  5729. },
  5730. {
  5731. name: "Larger",
  5732. height: math.unit(20, "feet")
  5733. },
  5734. {
  5735. name: "Macro",
  5736. height: math.unit(150, "feet")
  5737. },
  5738. {
  5739. name: "Macro+",
  5740. height: math.unit(200, "feet"),
  5741. default: true
  5742. },
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5747. {
  5748. side: {
  5749. height: math.unit(12, "feet"),
  5750. weight: math.unit(2000, "kg"),
  5751. name: "Side",
  5752. image: {
  5753. source: "./media/characters/scott/side.svg",
  5754. extra: 754 / 724,
  5755. bottom: 0.069
  5756. }
  5757. },
  5758. upright: {
  5759. height: math.unit(12, "feet"),
  5760. weight: math.unit(2000, "kg"),
  5761. name: "Upright",
  5762. image: {
  5763. source: "./media/characters/scott/upright.svg",
  5764. extra: 3881 / 3722,
  5765. bottom: 0.05
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(12, "feet"),
  5773. default: true
  5774. },
  5775. ]
  5776. ))
  5777. characterMakers.push(() => makeCharacter(
  5778. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5779. {
  5780. side: {
  5781. height: math.unit(8, "meters"),
  5782. weight: math.unit(84755, "lbs"),
  5783. name: "Side",
  5784. image: {
  5785. source: "./media/characters/tobias/side.svg",
  5786. extra: 1474 / 1096,
  5787. bottom: 38.9 / 1513.1235
  5788. }
  5789. },
  5790. },
  5791. [
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(8, "meters"),
  5795. default: true
  5796. },
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5801. {
  5802. front: {
  5803. height: math.unit(5.5, "feet"),
  5804. weight: math.unit(400, "lbs"),
  5805. name: "Front",
  5806. image: {
  5807. source: "./media/characters/kieran/front.svg",
  5808. extra: 2694 / 2364,
  5809. bottom: 217 / 2908
  5810. }
  5811. },
  5812. side: {
  5813. height: math.unit(5.5, "feet"),
  5814. weight: math.unit(400, "lbs"),
  5815. name: "Side",
  5816. image: {
  5817. source: "./media/characters/kieran/side.svg",
  5818. extra: 875 / 777,
  5819. bottom: 84.6 / 959
  5820. }
  5821. },
  5822. },
  5823. [
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(5.5, "feet"),
  5827. default: true
  5828. },
  5829. ]
  5830. ))
  5831. characterMakers.push(() => makeCharacter(
  5832. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5833. {
  5834. side: {
  5835. height: math.unit(2, "meters"),
  5836. weight: math.unit(70, "kg"),
  5837. name: "Side",
  5838. image: {
  5839. source: "./media/characters/sanya/side.svg",
  5840. bottom: 0.02,
  5841. extra: 1.02
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Small",
  5848. height: math.unit(2, "meters")
  5849. },
  5850. {
  5851. name: "Normal",
  5852. height: math.unit(3, "meters")
  5853. },
  5854. {
  5855. name: "Macro",
  5856. height: math.unit(16, "meters"),
  5857. default: true
  5858. },
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(2, "meters"),
  5866. weight: math.unit(120, "kg"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/miranda/front.svg",
  5870. extra: 195 / 185,
  5871. bottom: 10.9 / 206.5
  5872. }
  5873. },
  5874. back: {
  5875. height: math.unit(2, "meters"),
  5876. weight: math.unit(120, "kg"),
  5877. name: "Back",
  5878. image: {
  5879. source: "./media/characters/miranda/back.svg",
  5880. extra: 201 / 193,
  5881. bottom: 2.3 / 203.7
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Normal",
  5888. height: math.unit(10, "feet"),
  5889. default: true
  5890. }
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "James", species: ["deer"], tags: ["anthro"] },
  5895. {
  5896. side: {
  5897. height: math.unit(2, "meters"),
  5898. weight: math.unit(100, "kg"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/james/front.svg",
  5902. extra: 10 / 8.5
  5903. }
  5904. },
  5905. },
  5906. [
  5907. {
  5908. name: "Normal",
  5909. height: math.unit(8.5, "feet"),
  5910. default: true
  5911. }
  5912. ]
  5913. ))
  5914. characterMakers.push(() => makeCharacter(
  5915. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5916. {
  5917. side: {
  5918. height: math.unit(9.5, "feet"),
  5919. weight: math.unit(2500, "lbs"),
  5920. name: "Side",
  5921. image: {
  5922. source: "./media/characters/heather/side.svg"
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(9.5, "feet"),
  5930. default: true
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5936. {
  5937. side: {
  5938. height: math.unit(6.5, "feet"),
  5939. weight: math.unit(400, "lbs"),
  5940. name: "Side",
  5941. image: {
  5942. source: "./media/characters/lukas/side.svg",
  5943. extra: 7.25 / 6.5
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(6.5, "feet"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5957. {
  5958. side: {
  5959. height: math.unit(5, "feet"),
  5960. weight: math.unit(3000, "lbs"),
  5961. name: "Side",
  5962. image: {
  5963. source: "./media/characters/louise/side.svg"
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(5, "feet"),
  5971. default: true
  5972. }
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5977. {
  5978. side: {
  5979. height: math.unit(6, "feet"),
  5980. weight: math.unit(150, "lbs"),
  5981. name: "Side",
  5982. image: {
  5983. source: "./media/characters/ramona/side.svg",
  5984. extra: 871/854,
  5985. bottom: 41/912
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(6 + 4/12, "feet")
  5993. },
  5994. {
  5995. name: "Minimacro",
  5996. height: math.unit(5.3, "meters"),
  5997. default: true
  5998. },
  5999. {
  6000. name: "Macro",
  6001. height: math.unit(20, "stories")
  6002. },
  6003. {
  6004. name: "Macro+",
  6005. height: math.unit(50, "stories")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6011. {
  6012. standing: {
  6013. height: math.unit(5.75, "feet"),
  6014. weight: math.unit(160, "lbs"),
  6015. name: "Standing",
  6016. image: {
  6017. source: "./media/characters/deerpuff/standing.svg",
  6018. extra: 682 / 624
  6019. }
  6020. },
  6021. sitting: {
  6022. height: math.unit(5.75 / 1.79, "feet"),
  6023. weight: math.unit(160, "lbs"),
  6024. name: "Sitting",
  6025. image: {
  6026. source: "./media/characters/deerpuff/sitting.svg",
  6027. bottom: 44 / 400,
  6028. extra: 1
  6029. }
  6030. },
  6031. taurLaying: {
  6032. height: math.unit(6, "feet"),
  6033. weight: math.unit(400, "lbs"),
  6034. name: "Taur (Laying)",
  6035. image: {
  6036. source: "./media/characters/deerpuff/taur-laying.svg"
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Puffball",
  6043. height: math.unit(6, "inches")
  6044. },
  6045. {
  6046. name: "Normalpuff",
  6047. height: math.unit(5.75, "feet")
  6048. },
  6049. {
  6050. name: "Macropuff",
  6051. height: math.unit(1500, "feet"),
  6052. default: true
  6053. },
  6054. {
  6055. name: "Megapuff",
  6056. height: math.unit(500, "miles")
  6057. },
  6058. {
  6059. name: "Gigapuff",
  6060. height: math.unit(250000, "miles")
  6061. },
  6062. {
  6063. name: "Omegapuff",
  6064. height: math.unit(1000, "lightyears")
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6070. {
  6071. stomping: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(170, "lbs"),
  6074. name: "Stomping",
  6075. image: {
  6076. source: "./media/characters/vivian/stomping.svg"
  6077. }
  6078. },
  6079. sitting: {
  6080. height: math.unit(6 / 1.75, "feet"),
  6081. weight: math.unit(170, "lbs"),
  6082. name: "Sitting",
  6083. image: {
  6084. source: "./media/characters/vivian/sitting.svg",
  6085. bottom: 1 / 6.4,
  6086. extra: 1,
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(7, "feet"),
  6094. default: true
  6095. },
  6096. {
  6097. name: "Macro",
  6098. height: math.unit(10, "stories")
  6099. },
  6100. {
  6101. name: "Macro+",
  6102. height: math.unit(30, "stories")
  6103. },
  6104. {
  6105. name: "Megamacro",
  6106. height: math.unit(10, "miles")
  6107. },
  6108. {
  6109. name: "Megamacro+",
  6110. height: math.unit(2750000, "meters")
  6111. },
  6112. ]
  6113. ))
  6114. characterMakers.push(() => makeCharacter(
  6115. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6116. {
  6117. front: {
  6118. height: math.unit(6, "feet"),
  6119. weight: math.unit(160, "lbs"),
  6120. name: "Front",
  6121. image: {
  6122. source: "./media/characters/prince/front.svg",
  6123. extra: 1938/1682,
  6124. bottom: 45/1983
  6125. }
  6126. },
  6127. back: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(160, "lbs"),
  6130. name: "Back",
  6131. image: {
  6132. source: "./media/characters/prince/back.svg",
  6133. extra: 1955/1726,
  6134. bottom: 6/1961
  6135. }
  6136. },
  6137. },
  6138. [
  6139. {
  6140. name: "Normal",
  6141. height: math.unit(7.75, "feet"),
  6142. default: true
  6143. },
  6144. {
  6145. name: "Not cute",
  6146. height: math.unit(17, "feet")
  6147. },
  6148. {
  6149. name: "I said NOT",
  6150. height: math.unit(91, "feet")
  6151. },
  6152. {
  6153. name: "Please stop",
  6154. height: math.unit(560, "feet")
  6155. },
  6156. {
  6157. name: "What have you done",
  6158. height: math.unit(2200, "feet")
  6159. },
  6160. {
  6161. name: "Deer God",
  6162. height: math.unit(3.6, "miles")
  6163. },
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6168. {
  6169. standing: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(300, "lbs"),
  6172. name: "Standing",
  6173. image: {
  6174. source: "./media/characters/psymon/standing.svg",
  6175. extra: 1888 / 1810,
  6176. bottom: 0.05
  6177. }
  6178. },
  6179. slithering: {
  6180. height: math.unit(6, "feet"),
  6181. weight: math.unit(300, "lbs"),
  6182. name: "Slithering",
  6183. image: {
  6184. source: "./media/characters/psymon/slithering.svg",
  6185. extra: 1330 / 1224
  6186. }
  6187. },
  6188. slitheringAlt: {
  6189. height: math.unit(6, "feet"),
  6190. weight: math.unit(300, "lbs"),
  6191. name: "Slithering (Alt)",
  6192. image: {
  6193. source: "./media/characters/psymon/slithering-alt.svg",
  6194. extra: 1330 / 1224
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Normal",
  6201. height: math.unit(11.25, "feet"),
  6202. default: true
  6203. },
  6204. {
  6205. name: "Large",
  6206. height: math.unit(27, "feet")
  6207. },
  6208. {
  6209. name: "Giant",
  6210. height: math.unit(87, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(365, "feet")
  6215. },
  6216. {
  6217. name: "Megamacro",
  6218. height: math.unit(3, "miles")
  6219. },
  6220. {
  6221. name: "World Serpent",
  6222. height: math.unit(8000, "miles")
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6228. {
  6229. front: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(180, "lbs"),
  6232. name: "Front",
  6233. image: {
  6234. source: "./media/characters/daimos/front.svg",
  6235. extra: 4160 / 3897,
  6236. bottom: 0.021
  6237. }
  6238. }
  6239. },
  6240. [
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(8, "feet"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Big Dog",
  6248. height: math.unit(22, "feet")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(127, "feet")
  6253. },
  6254. {
  6255. name: "Megamacro",
  6256. height: math.unit(3600, "feet")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6262. {
  6263. side: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(180, "lbs"),
  6266. name: "Side",
  6267. image: {
  6268. source: "./media/characters/blake/side.svg",
  6269. extra: 1212 / 1120,
  6270. bottom: 0.05
  6271. }
  6272. },
  6273. crouched: {
  6274. height: math.unit(6 * 0.57, "feet"),
  6275. weight: math.unit(180, "lbs"),
  6276. name: "Crouched",
  6277. image: {
  6278. source: "./media/characters/blake/crouched.svg",
  6279. extra: 840 / 587,
  6280. bottom: 0.04
  6281. }
  6282. },
  6283. bent: {
  6284. height: math.unit(6 * 0.75, "feet"),
  6285. weight: math.unit(180, "lbs"),
  6286. name: "Bent",
  6287. image: {
  6288. source: "./media/characters/blake/bent.svg",
  6289. extra: 592 / 544,
  6290. bottom: 0.035
  6291. }
  6292. },
  6293. },
  6294. [
  6295. {
  6296. name: "Normal",
  6297. height: math.unit(8 + 1 / 6, "feet"),
  6298. default: true
  6299. },
  6300. {
  6301. name: "Big Backside",
  6302. height: math.unit(37, "feet")
  6303. },
  6304. {
  6305. name: "Subway Shredder",
  6306. height: math.unit(72, "feet")
  6307. },
  6308. {
  6309. name: "City Carver",
  6310. height: math.unit(1675, "feet")
  6311. },
  6312. {
  6313. name: "Tectonic Tweaker",
  6314. height: math.unit(2300, "miles")
  6315. },
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(180, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/guisetto/front.svg",
  6327. extra: 856 / 817,
  6328. bottom: 0.06
  6329. }
  6330. },
  6331. airborne: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(180, "lbs"),
  6334. name: "Airborne",
  6335. image: {
  6336. source: "./media/characters/guisetto/airborne.svg",
  6337. extra: 584 / 525
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(10 + 11 / 12, "feet"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Large",
  6349. height: math.unit(35, "feet")
  6350. },
  6351. {
  6352. name: "Macro",
  6353. height: math.unit(475, "feet")
  6354. },
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(180, "lbs"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/luxor/front.svg",
  6366. extra: 2940 / 2152
  6367. }
  6368. },
  6369. back: {
  6370. height: math.unit(6, "feet"),
  6371. weight: math.unit(180, "lbs"),
  6372. name: "Back",
  6373. image: {
  6374. source: "./media/characters/luxor/back.svg",
  6375. extra: 1083 / 960
  6376. }
  6377. },
  6378. },
  6379. [
  6380. {
  6381. name: "Normal",
  6382. height: math.unit(5 + 5 / 6, "feet"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Lamp",
  6387. height: math.unit(50, "feet")
  6388. },
  6389. {
  6390. name: "Lämp",
  6391. height: math.unit(300, "feet")
  6392. },
  6393. {
  6394. name: "The sun is a lamp",
  6395. height: math.unit(250000, "miles")
  6396. },
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6401. {
  6402. front: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(50, "lbs"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/huoyan/front.svg"
  6408. }
  6409. },
  6410. side: {
  6411. height: math.unit(6, "feet"),
  6412. weight: math.unit(180, "lbs"),
  6413. name: "Side",
  6414. image: {
  6415. source: "./media/characters/huoyan/side.svg"
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Chef",
  6422. height: math.unit(9, "feet")
  6423. },
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(65, "feet"),
  6427. default: true
  6428. },
  6429. {
  6430. name: "Macro",
  6431. height: math.unit(780, "feet")
  6432. },
  6433. {
  6434. name: "Flaming Mountain",
  6435. height: math.unit(4.8, "miles")
  6436. },
  6437. {
  6438. name: "Celestial",
  6439. height: math.unit(765000, "miles")
  6440. },
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6445. {
  6446. front: {
  6447. height: math.unit(5 + 3 / 4, "feet"),
  6448. weight: math.unit(120, "lbs"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/tails/front.svg"
  6452. }
  6453. }
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(5 + 3 / 4, "feet"),
  6459. default: true
  6460. }
  6461. ]
  6462. ))
  6463. characterMakers.push(() => makeCharacter(
  6464. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6465. {
  6466. front: {
  6467. height: math.unit(4, "feet"),
  6468. weight: math.unit(50, "lbs"),
  6469. name: "Front",
  6470. image: {
  6471. source: "./media/characters/rainy/front.svg"
  6472. }
  6473. }
  6474. },
  6475. [
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(800, "feet"),
  6479. default: true
  6480. }
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(6, "feet"),
  6488. weight: math.unit(150, "lbs"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/rainier/front.svg"
  6492. }
  6493. }
  6494. },
  6495. [
  6496. {
  6497. name: "Micro",
  6498. height: math.unit(2, "mm"),
  6499. default: true
  6500. }
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(8 + 4/12, "feet"),
  6508. weight: math.unit(450, "kilograms"),
  6509. volume: math.unit(5, "cups"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/andy-renard/front.svg",
  6513. extra: 1839/1726,
  6514. bottom: 134/1973
  6515. }
  6516. },
  6517. back: {
  6518. height: math.unit(8 + 4/12, "feet"),
  6519. weight: math.unit(450, "kilograms"),
  6520. volume: math.unit(5, "cups"),
  6521. name: "Back",
  6522. image: {
  6523. source: "./media/characters/andy-renard/back.svg",
  6524. extra: 1838/1710,
  6525. bottom: 105/1943
  6526. }
  6527. },
  6528. },
  6529. [
  6530. {
  6531. name: "Tall",
  6532. height: math.unit(8 + 4/12, "feet")
  6533. },
  6534. {
  6535. name: "Mini Macro",
  6536. height: math.unit(15, "feet"),
  6537. default: true
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(100, "feet")
  6542. },
  6543. {
  6544. name: "Mega Macro",
  6545. height: math.unit(1000, "feet")
  6546. },
  6547. {
  6548. name: "Giga Macro",
  6549. height: math.unit(10, "miles")
  6550. },
  6551. {
  6552. name: "God Macro",
  6553. height: math.unit(1, "multiverse")
  6554. },
  6555. ]
  6556. ))
  6557. characterMakers.push(() => makeCharacter(
  6558. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6559. {
  6560. front: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(210, "lbs"),
  6563. name: "Front",
  6564. image: {
  6565. source: "./media/characters/cimmaron/front-sfw.svg",
  6566. extra: 701 / 676,
  6567. bottom: 0.046
  6568. }
  6569. },
  6570. back: {
  6571. height: math.unit(6, "feet"),
  6572. weight: math.unit(210, "lbs"),
  6573. name: "Back",
  6574. image: {
  6575. source: "./media/characters/cimmaron/back-sfw.svg",
  6576. extra: 701 / 676,
  6577. bottom: 0.046
  6578. }
  6579. },
  6580. frontNsfw: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(210, "lbs"),
  6583. name: "Front (NSFW)",
  6584. image: {
  6585. source: "./media/characters/cimmaron/front-nsfw.svg",
  6586. extra: 701 / 676,
  6587. bottom: 0.046
  6588. }
  6589. },
  6590. backNsfw: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(210, "lbs"),
  6593. name: "Back (NSFW)",
  6594. image: {
  6595. source: "./media/characters/cimmaron/back-nsfw.svg",
  6596. extra: 701 / 676,
  6597. bottom: 0.046
  6598. }
  6599. },
  6600. dick: {
  6601. height: math.unit(1.714, "feet"),
  6602. name: "Dick",
  6603. image: {
  6604. source: "./media/characters/cimmaron/dick.svg"
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(6, "feet"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Macro Mayor",
  6616. height: math.unit(350, "meters")
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6622. {
  6623. front: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(200, "lbs"),
  6626. name: "Front",
  6627. image: {
  6628. source: "./media/characters/akari/front.svg",
  6629. extra: 962 / 901,
  6630. bottom: 0.04
  6631. }
  6632. }
  6633. },
  6634. [
  6635. {
  6636. name: "Micro",
  6637. height: math.unit(5, "inches"),
  6638. default: true
  6639. },
  6640. {
  6641. name: "Normal",
  6642. height: math.unit(7, "feet")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(140, "lbs"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/cynosura/front.svg",
  6655. extra: 437/410,
  6656. bottom: 9/446
  6657. }
  6658. },
  6659. back: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(140, "lbs"),
  6662. name: "Back",
  6663. image: {
  6664. source: "./media/characters/cynosura/back.svg",
  6665. extra: 1304/1160,
  6666. bottom: 71/1375
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Micro",
  6673. height: math.unit(4, "inches")
  6674. },
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(5.75, "feet"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Tall",
  6682. height: math.unit(10, "feet")
  6683. },
  6684. {
  6685. name: "Big",
  6686. height: math.unit(20, "feet")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(50, "feet")
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(13 + 2/12, "feet"),
  6699. weight: math.unit(800, "kg"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/gin/front.svg",
  6703. extra: 1312/1191,
  6704. bottom: 45/1357
  6705. }
  6706. },
  6707. mouth: {
  6708. height: math.unit(2.39 * 1.8, "feet"),
  6709. name: "Mouth",
  6710. image: {
  6711. source: "./media/characters/gin/mouth.svg"
  6712. }
  6713. },
  6714. hand: {
  6715. height: math.unit(1.57 * 2.19, "feet"),
  6716. name: "Hand",
  6717. image: {
  6718. source: "./media/characters/gin/hand.svg"
  6719. }
  6720. },
  6721. foot: {
  6722. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6723. name: "Foot",
  6724. image: {
  6725. source: "./media/characters/gin/foot.svg"
  6726. }
  6727. },
  6728. sole: {
  6729. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6730. name: "Sole",
  6731. image: {
  6732. source: "./media/characters/gin/sole.svg"
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Very Small",
  6739. height: math.unit(13 + 2 / 12, "feet")
  6740. },
  6741. {
  6742. name: "Micro",
  6743. height: math.unit(600, "miles")
  6744. },
  6745. {
  6746. name: "Regular",
  6747. height: math.unit(20, "earths"),
  6748. default: true
  6749. },
  6750. {
  6751. name: "Macro",
  6752. height: math.unit(2.2, "solarradii")
  6753. },
  6754. {
  6755. name: "Teramacro",
  6756. height: math.unit(1.2, "galaxies")
  6757. },
  6758. {
  6759. name: "Omegamacro",
  6760. height: math.unit(200, "universes")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(6 + 1 / 6, "feet"),
  6769. weight: math.unit(178, "lbs"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/guy/front.svg"
  6773. }
  6774. }
  6775. },
  6776. [
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(6 + 1 / 6, "feet"),
  6780. default: true
  6781. },
  6782. {
  6783. name: "Large",
  6784. height: math.unit(25 + 7 / 12, "feet")
  6785. },
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(60 + 9 / 12, "feet")
  6789. },
  6790. {
  6791. name: "Macro+",
  6792. height: math.unit(246, "feet")
  6793. },
  6794. {
  6795. name: "Macro++",
  6796. height: math.unit(878, "feet")
  6797. }
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(9, "feet"),
  6805. weight: math.unit(800, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/tiberius/front.svg",
  6809. extra: 2295 / 2071
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(9, "feet"),
  6814. weight: math.unit(800, "lbs"),
  6815. name: "Back",
  6816. image: {
  6817. source: "./media/characters/tiberius/back.svg",
  6818. extra: 2373 / 2160
  6819. }
  6820. },
  6821. },
  6822. [
  6823. {
  6824. name: "Normal",
  6825. height: math.unit(9, "feet"),
  6826. default: true
  6827. }
  6828. ]
  6829. ))
  6830. characterMakers.push(() => makeCharacter(
  6831. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6832. {
  6833. front: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(600, "lbs"),
  6836. name: "Front",
  6837. image: {
  6838. source: "./media/characters/surgo/front.svg",
  6839. extra: 3591 / 2227
  6840. }
  6841. },
  6842. back: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(600, "lbs"),
  6845. name: "Back",
  6846. image: {
  6847. source: "./media/characters/surgo/back.svg",
  6848. extra: 3557 / 2228
  6849. }
  6850. },
  6851. laying: {
  6852. height: math.unit(6 * 0.85, "feet"),
  6853. weight: math.unit(600, "lbs"),
  6854. name: "Laying",
  6855. image: {
  6856. source: "./media/characters/surgo/laying.svg"
  6857. }
  6858. },
  6859. },
  6860. [
  6861. {
  6862. name: "Normal",
  6863. height: math.unit(6, "feet"),
  6864. default: true
  6865. }
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6870. {
  6871. side: {
  6872. height: math.unit(6, "feet"),
  6873. weight: math.unit(150, "lbs"),
  6874. name: "Side",
  6875. image: {
  6876. source: "./media/characters/cibus/side.svg",
  6877. extra: 800 / 400
  6878. }
  6879. },
  6880. },
  6881. [
  6882. {
  6883. name: "Normal",
  6884. height: math.unit(6, "feet"),
  6885. default: true
  6886. }
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6891. {
  6892. front: {
  6893. height: math.unit(6, "feet"),
  6894. weight: math.unit(240, "lbs"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/nibbles/front.svg"
  6898. }
  6899. },
  6900. side: {
  6901. height: math.unit(6, "feet"),
  6902. weight: math.unit(240, "lbs"),
  6903. name: "Side",
  6904. image: {
  6905. source: "./media/characters/nibbles/side.svg"
  6906. }
  6907. },
  6908. },
  6909. [
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(9, "feet"),
  6913. default: true
  6914. }
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6919. {
  6920. side: {
  6921. height: math.unit(5 + 1 / 6, "feet"),
  6922. weight: math.unit(130, "lbs"),
  6923. name: "Side",
  6924. image: {
  6925. source: "./media/characters/rikky/side.svg",
  6926. extra: 851 / 801
  6927. }
  6928. },
  6929. },
  6930. [
  6931. {
  6932. name: "Normal",
  6933. height: math.unit(5 + 1 / 6, "feet")
  6934. },
  6935. {
  6936. name: "Macro",
  6937. height: math.unit(152, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Megamacro",
  6942. height: math.unit(7, "miles")
  6943. }
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6948. {
  6949. side: {
  6950. height: math.unit(370, "cm"),
  6951. weight: math.unit(350, "lbs"),
  6952. name: "Side",
  6953. image: {
  6954. source: "./media/characters/malfressa/side.svg"
  6955. }
  6956. },
  6957. walking: {
  6958. height: math.unit(370, "cm"),
  6959. weight: math.unit(350, "lbs"),
  6960. name: "Walking",
  6961. image: {
  6962. source: "./media/characters/malfressa/walking.svg"
  6963. }
  6964. },
  6965. feral: {
  6966. height: math.unit(2500, "cm"),
  6967. weight: math.unit(100000, "lbs"),
  6968. name: "Feral",
  6969. image: {
  6970. source: "./media/characters/malfressa/feral.svg",
  6971. extra: 2108 / 837,
  6972. bottom: 0.02
  6973. }
  6974. },
  6975. },
  6976. [
  6977. {
  6978. name: "Normal",
  6979. height: math.unit(370, "cm")
  6980. },
  6981. {
  6982. name: "Macro",
  6983. height: math.unit(300, "meters"),
  6984. default: true
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(60, "kg"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/jaro/front.svg",
  6997. extra: 845/817,
  6998. bottom: 45/890
  6999. }
  7000. },
  7001. back: {
  7002. height: math.unit(6, "feet"),
  7003. weight: math.unit(60, "kg"),
  7004. name: "Back",
  7005. image: {
  7006. source: "./media/characters/jaro/back.svg",
  7007. extra: 847/817,
  7008. bottom: 34/881
  7009. }
  7010. },
  7011. },
  7012. [
  7013. {
  7014. name: "Micro",
  7015. height: math.unit(7, "inches")
  7016. },
  7017. {
  7018. name: "Normal",
  7019. height: math.unit(5.5, "feet"),
  7020. default: true
  7021. },
  7022. {
  7023. name: "Minimacro",
  7024. height: math.unit(20, "feet")
  7025. },
  7026. {
  7027. name: "Macro",
  7028. height: math.unit(200, "meters")
  7029. }
  7030. ]
  7031. ))
  7032. characterMakers.push(() => makeCharacter(
  7033. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7034. {
  7035. front: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(195, "lb"),
  7038. name: "Front",
  7039. image: {
  7040. source: "./media/characters/rogue/front.svg"
  7041. }
  7042. },
  7043. },
  7044. [
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(90, "feet"),
  7048. default: true
  7049. },
  7050. ]
  7051. ))
  7052. characterMakers.push(() => makeCharacter(
  7053. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7054. {
  7055. standing: {
  7056. height: math.unit(5 + 8 / 12, "feet"),
  7057. weight: math.unit(140, "lb"),
  7058. name: "Standing",
  7059. image: {
  7060. source: "./media/characters/piper/standing.svg",
  7061. extra: 1440/1284,
  7062. bottom: 66/1506
  7063. }
  7064. },
  7065. running: {
  7066. height: math.unit(5 + 8 / 12, "feet"),
  7067. weight: math.unit(140, "lb"),
  7068. name: "Running",
  7069. image: {
  7070. source: "./media/characters/piper/running.svg",
  7071. extra: 3948/3655,
  7072. bottom: 0/3948
  7073. }
  7074. },
  7075. sole: {
  7076. height: math.unit(0.81, "feet"),
  7077. weight: math.unit(2, "kg"),
  7078. name: "Sole",
  7079. image: {
  7080. source: "./media/characters/piper/sole.svg"
  7081. }
  7082. },
  7083. nipple: {
  7084. height: math.unit(0.25, "feet"),
  7085. weight: math.unit(1.5, "lb"),
  7086. name: "Nipple",
  7087. image: {
  7088. source: "./media/characters/piper/nipple.svg"
  7089. }
  7090. },
  7091. head: {
  7092. height: math.unit(1.1, "feet"),
  7093. name: "Head",
  7094. image: {
  7095. source: "./media/characters/piper/head.svg"
  7096. }
  7097. },
  7098. },
  7099. [
  7100. {
  7101. name: "Micro",
  7102. height: math.unit(2, "inches")
  7103. },
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(5 + 8 / 12, "feet")
  7107. },
  7108. {
  7109. name: "Macro",
  7110. height: math.unit(250, "feet"),
  7111. default: true
  7112. },
  7113. {
  7114. name: "Megamacro",
  7115. height: math.unit(7, "miles")
  7116. },
  7117. ]
  7118. ))
  7119. characterMakers.push(() => makeCharacter(
  7120. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7121. {
  7122. front: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(220, "lb"),
  7125. name: "Front",
  7126. image: {
  7127. source: "./media/characters/gemini/front.svg"
  7128. }
  7129. },
  7130. back: {
  7131. height: math.unit(6, "feet"),
  7132. weight: math.unit(220, "lb"),
  7133. name: "Back",
  7134. image: {
  7135. source: "./media/characters/gemini/back.svg"
  7136. }
  7137. },
  7138. kneeling: {
  7139. height: math.unit(6 / 1.5, "feet"),
  7140. weight: math.unit(220, "lb"),
  7141. name: "Kneeling",
  7142. image: {
  7143. source: "./media/characters/gemini/kneeling.svg",
  7144. bottom: 0.02
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(300, "meters"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Megamacro",
  7156. height: math.unit(6900, "meters")
  7157. },
  7158. ]
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7162. {
  7163. anthro: {
  7164. height: math.unit(2.35, "meters"),
  7165. weight: math.unit(73, "kg"),
  7166. name: "Anthro",
  7167. image: {
  7168. source: "./media/characters/alicia/anthro.svg",
  7169. extra: 2571 / 2385,
  7170. bottom: 75 / 2648
  7171. }
  7172. },
  7173. paw: {
  7174. height: math.unit(1.32, "feet"),
  7175. name: "Paw",
  7176. image: {
  7177. source: "./media/characters/alicia/paw.svg"
  7178. }
  7179. },
  7180. feral: {
  7181. height: math.unit(1.69, "meters"),
  7182. weight: math.unit(73, "kg"),
  7183. name: "Feral",
  7184. image: {
  7185. source: "./media/characters/alicia/feral.svg",
  7186. extra: 2123 / 1715,
  7187. bottom: 222 / 2349
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(2.35, "meters")
  7195. },
  7196. {
  7197. name: "Macro",
  7198. height: math.unit(60, "meters"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Megamacro",
  7203. height: math.unit(10000, "kilometers")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(7, "feet"),
  7212. weight: math.unit(250, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/archy/front.svg"
  7216. }
  7217. }
  7218. },
  7219. [
  7220. {
  7221. name: "Micro",
  7222. height: math.unit(1, "inch")
  7223. },
  7224. {
  7225. name: "Shorty",
  7226. height: math.unit(5, "feet")
  7227. },
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(7, "feet")
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(600, "meters"),
  7235. default: true
  7236. },
  7237. {
  7238. name: "Megamacro",
  7239. height: math.unit(1, "mile")
  7240. },
  7241. ]
  7242. ))
  7243. characterMakers.push(() => makeCharacter(
  7244. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7245. {
  7246. front: {
  7247. height: math.unit(1.65, "meters"),
  7248. weight: math.unit(74, "kg"),
  7249. name: "Front",
  7250. image: {
  7251. source: "./media/characters/berri/front.svg",
  7252. extra: 857 / 837,
  7253. bottom: 18 / 877
  7254. }
  7255. },
  7256. bum: {
  7257. height: math.unit(1.46, "feet"),
  7258. name: "Bum",
  7259. image: {
  7260. source: "./media/characters/berri/bum.svg"
  7261. }
  7262. },
  7263. mouth: {
  7264. height: math.unit(0.44, "feet"),
  7265. name: "Mouth",
  7266. image: {
  7267. source: "./media/characters/berri/mouth.svg"
  7268. }
  7269. },
  7270. paw: {
  7271. height: math.unit(0.826, "feet"),
  7272. name: "Paw",
  7273. image: {
  7274. source: "./media/characters/berri/paw.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(1.65, "meters")
  7282. },
  7283. {
  7284. name: "Macro",
  7285. height: math.unit(60, "m"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Megamacro",
  7290. height: math.unit(9.213, "km")
  7291. },
  7292. {
  7293. name: "Planet Eater",
  7294. height: math.unit(489, "megameters")
  7295. },
  7296. {
  7297. name: "Teramacro",
  7298. height: math.unit(2471635000000, "meters")
  7299. },
  7300. {
  7301. name: "Examacro",
  7302. height: math.unit(8.0624e+26, "meters")
  7303. }
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(1.72, "meters"),
  7311. weight: math.unit(68, "kg"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/lexi/front.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Very Smol",
  7321. height: math.unit(10, "mm")
  7322. },
  7323. {
  7324. name: "Micro",
  7325. height: math.unit(6.8, "cm"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Normal",
  7330. height: math.unit(1.72, "m")
  7331. }
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(1.69, "meters"),
  7339. weight: math.unit(68, "kg"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/martin/front.svg",
  7343. extra: 596 / 581
  7344. }
  7345. }
  7346. },
  7347. [
  7348. {
  7349. name: "Micro",
  7350. height: math.unit(6.85, "cm"),
  7351. default: true
  7352. },
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(1.69, "m")
  7356. }
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(1.69, "meters"),
  7364. weight: math.unit(68, "kg"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/juno/front.svg"
  7368. }
  7369. }
  7370. },
  7371. [
  7372. {
  7373. name: "Micro",
  7374. height: math.unit(7, "cm")
  7375. },
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(1.89, "m")
  7379. },
  7380. {
  7381. name: "Macro",
  7382. height: math.unit(353, "meters"),
  7383. default: true
  7384. }
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7389. {
  7390. front: {
  7391. height: math.unit(1.93, "meters"),
  7392. weight: math.unit(83, "kg"),
  7393. name: "Front",
  7394. image: {
  7395. source: "./media/characters/samantha/front.svg"
  7396. }
  7397. },
  7398. frontClothed: {
  7399. height: math.unit(1.93, "meters"),
  7400. weight: math.unit(83, "kg"),
  7401. name: "Front (Clothed)",
  7402. image: {
  7403. source: "./media/characters/samantha/front-clothed.svg"
  7404. }
  7405. },
  7406. back: {
  7407. height: math.unit(1.93, "meters"),
  7408. weight: math.unit(83, "kg"),
  7409. name: "Back",
  7410. image: {
  7411. source: "./media/characters/samantha/back.svg"
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(1.93, "m")
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(74, "meters"),
  7423. default: true
  7424. },
  7425. {
  7426. name: "Macro+",
  7427. height: math.unit(223, "meters"),
  7428. },
  7429. {
  7430. name: "Megamacro",
  7431. height: math.unit(8381, "meters"),
  7432. },
  7433. {
  7434. name: "Megamacro+",
  7435. height: math.unit(12000, "kilometers")
  7436. },
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(1.92, "meters"),
  7444. weight: math.unit(80, "kg"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/dr-clay/front.svg"
  7448. }
  7449. },
  7450. frontClothed: {
  7451. height: math.unit(1.92, "meters"),
  7452. weight: math.unit(80, "kg"),
  7453. name: "Front (Clothed)",
  7454. image: {
  7455. source: "./media/characters/dr-clay/front-clothed.svg"
  7456. }
  7457. }
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(1.92, "m")
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(214, "meters"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Macro+",
  7471. height: math.unit(12.237, "meters"),
  7472. },
  7473. {
  7474. name: "Megamacro",
  7475. height: math.unit(557, "megameters"),
  7476. },
  7477. {
  7478. name: "Unimaginable",
  7479. height: math.unit(120e9, "lightyears")
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7485. {
  7486. front: {
  7487. height: math.unit(2, "meters"),
  7488. weight: math.unit(80, "kg"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7492. }
  7493. }
  7494. },
  7495. [
  7496. {
  7497. name: "Teramacro",
  7498. height: math.unit(500000, "lightyears"),
  7499. default: true
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7505. {
  7506. crux: {
  7507. height: math.unit(2, "meters"),
  7508. weight: math.unit(150, "kg"),
  7509. name: "Crux",
  7510. image: {
  7511. source: "./media/characters/vemus/crux.svg",
  7512. extra: 1074/936,
  7513. bottom: 23/1097
  7514. }
  7515. },
  7516. skunkTanuki: {
  7517. height: math.unit(2, "meters"),
  7518. weight: math.unit(150, "kg"),
  7519. name: "Skunk-Tanuki",
  7520. image: {
  7521. source: "./media/characters/vemus/skunk-tanuki.svg",
  7522. extra: 926/893,
  7523. bottom: 20/946
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Normal",
  7530. height: math.unit(4, "meters"),
  7531. default: true
  7532. },
  7533. {
  7534. name: "Big",
  7535. height: math.unit(8, "meters")
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(100, "meters")
  7540. },
  7541. {
  7542. name: "Macro+",
  7543. height: math.unit(1500, "meters")
  7544. },
  7545. {
  7546. name: "Stellar",
  7547. height: math.unit(14e8, "meters")
  7548. },
  7549. ]
  7550. ))
  7551. characterMakers.push(() => makeCharacter(
  7552. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7553. {
  7554. front: {
  7555. height: math.unit(2, "meters"),
  7556. weight: math.unit(70, "kg"),
  7557. name: "Front",
  7558. image: {
  7559. source: "./media/characters/beherit/front.svg",
  7560. extra: 1234/1109,
  7561. bottom: 55/1289
  7562. }
  7563. }
  7564. },
  7565. [
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(6, "feet")
  7569. },
  7570. {
  7571. name: "Lorg",
  7572. height: math.unit(25, "feet"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Lorger",
  7577. height: math.unit(75, "feet")
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(200, "meters")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(2, "meters"),
  7590. weight: math.unit(150, "kg"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/everett/front.svg",
  7594. extra: 1017/866,
  7595. bottom: 86/1103
  7596. }
  7597. },
  7598. paw: {
  7599. height: math.unit(2 / 3.6, "meters"),
  7600. name: "Paw",
  7601. image: {
  7602. source: "./media/characters/everett/paw.svg"
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(15, "feet"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Lorg",
  7614. height: math.unit(70, "feet"),
  7615. default: true
  7616. },
  7617. {
  7618. name: "Lorger",
  7619. height: math.unit(250, "feet")
  7620. },
  7621. {
  7622. name: "Macro",
  7623. height: math.unit(500, "meters")
  7624. },
  7625. ]
  7626. ))
  7627. characterMakers.push(() => makeCharacter(
  7628. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7629. {
  7630. front: {
  7631. height: math.unit(2, "meters"),
  7632. weight: math.unit(86, "kg"),
  7633. name: "Front",
  7634. image: {
  7635. source: "./media/characters/rose/front.svg",
  7636. extra: 1785/1636,
  7637. bottom: 30/1815
  7638. },
  7639. form: "liom",
  7640. default: true
  7641. },
  7642. frontSporty: {
  7643. height: math.unit(2, "meters"),
  7644. weight: math.unit(86, "kg"),
  7645. name: "Front (Sporty)",
  7646. image: {
  7647. source: "./media/characters/rose/front-sporty.svg",
  7648. extra: 350/335,
  7649. bottom: 10/360
  7650. },
  7651. form: "liom"
  7652. },
  7653. frontAlt: {
  7654. height: math.unit(1.6, "meters"),
  7655. weight: math.unit(86, "kg"),
  7656. name: "Front (Alt)",
  7657. image: {
  7658. source: "./media/characters/rose/front-alt.svg",
  7659. extra: 299/283,
  7660. bottom: 3/302
  7661. },
  7662. form: "liom"
  7663. },
  7664. plush: {
  7665. height: math.unit(2, "meters"),
  7666. weight: math.unit(86/3, "kg"),
  7667. name: "Plush",
  7668. image: {
  7669. source: "./media/characters/rose/plush.svg",
  7670. extra: 361/337,
  7671. bottom: 11/372
  7672. },
  7673. form: "plush",
  7674. default: true
  7675. },
  7676. faeStanding: {
  7677. height: math.unit(10, "cm"),
  7678. weight: math.unit(10, "grams"),
  7679. name: "Standing",
  7680. image: {
  7681. source: "./media/characters/rose/fae-standing.svg",
  7682. extra: 1189/1060,
  7683. bottom: 27/1216
  7684. },
  7685. form: "fae",
  7686. default: true
  7687. },
  7688. faeSitting: {
  7689. height: math.unit(5, "cm"),
  7690. weight: math.unit(10, "grams"),
  7691. name: "Sitting",
  7692. image: {
  7693. source: "./media/characters/rose/fae-sitting.svg",
  7694. extra: 737/577,
  7695. bottom: 356/1093
  7696. },
  7697. form: "fae"
  7698. },
  7699. faePaw: {
  7700. height: math.unit(1.35, "cm"),
  7701. name: "Paw",
  7702. image: {
  7703. source: "./media/characters/rose/fae-paw.svg"
  7704. },
  7705. form: "fae"
  7706. },
  7707. },
  7708. [
  7709. {
  7710. name: "True Micro",
  7711. height: math.unit(9, "cm"),
  7712. form: "liom"
  7713. },
  7714. {
  7715. name: "Micro",
  7716. height: math.unit(16, "cm"),
  7717. form: "liom"
  7718. },
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(1.85, "meters"),
  7722. default: true,
  7723. form: "liom"
  7724. },
  7725. {
  7726. name: "Mini-Macro",
  7727. height: math.unit(5, "meters"),
  7728. form: "liom"
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(15, "meters"),
  7733. form: "liom"
  7734. },
  7735. {
  7736. name: "True Macro",
  7737. height: math.unit(40, "meters"),
  7738. form: "liom"
  7739. },
  7740. {
  7741. name: "City Scale",
  7742. height: math.unit(1, "km"),
  7743. form: "liom"
  7744. },
  7745. {
  7746. name: "Plushie",
  7747. height: math.unit(9, "cm"),
  7748. form: "plush",
  7749. default: true
  7750. },
  7751. {
  7752. name: "Fae",
  7753. height: math.unit(10, "cm"),
  7754. form: "fae",
  7755. default: true
  7756. },
  7757. ],
  7758. {
  7759. "liom": {
  7760. name: "Liom"
  7761. },
  7762. "plush": {
  7763. name: "Plush"
  7764. },
  7765. "fae": {
  7766. name: "Fae Fox",
  7767. default: true
  7768. }
  7769. }
  7770. ))
  7771. characterMakers.push(() => makeCharacter(
  7772. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7773. {
  7774. front: {
  7775. height: math.unit(2, "meters"),
  7776. weight: math.unit(350, "lbs"),
  7777. name: "Front",
  7778. image: {
  7779. source: "./media/characters/regal/front.svg"
  7780. }
  7781. },
  7782. back: {
  7783. height: math.unit(2, "meters"),
  7784. weight: math.unit(350, "lbs"),
  7785. name: "Back",
  7786. image: {
  7787. source: "./media/characters/regal/back.svg"
  7788. }
  7789. },
  7790. },
  7791. [
  7792. {
  7793. name: "Macro",
  7794. height: math.unit(350, "feet"),
  7795. default: true
  7796. }
  7797. ]
  7798. ))
  7799. characterMakers.push(() => makeCharacter(
  7800. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7801. {
  7802. front: {
  7803. height: math.unit(4 + 11 / 12, "feet"),
  7804. weight: math.unit(100, "lbs"),
  7805. name: "Front",
  7806. image: {
  7807. source: "./media/characters/opal/front.svg"
  7808. }
  7809. },
  7810. frontAlt: {
  7811. height: math.unit(4 + 11 / 12, "feet"),
  7812. weight: math.unit(100, "lbs"),
  7813. name: "Front (Alt)",
  7814. image: {
  7815. source: "./media/characters/opal/front-alt.svg"
  7816. }
  7817. },
  7818. },
  7819. [
  7820. {
  7821. name: "Small",
  7822. height: math.unit(4 + 11 / 12, "feet")
  7823. },
  7824. {
  7825. name: "Normal",
  7826. height: math.unit(20, "feet"),
  7827. default: true
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(120, "feet")
  7832. },
  7833. {
  7834. name: "Megamacro",
  7835. height: math.unit(80, "miles")
  7836. },
  7837. {
  7838. name: "True Size",
  7839. height: math.unit(100000, "lightyears")
  7840. },
  7841. ]
  7842. ))
  7843. characterMakers.push(() => makeCharacter(
  7844. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7845. {
  7846. front: {
  7847. height: math.unit(6, "feet"),
  7848. weight: math.unit(200, "lbs"),
  7849. name: "Front",
  7850. image: {
  7851. source: "./media/characters/vector-wuff/front.svg"
  7852. }
  7853. }
  7854. },
  7855. [
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(2.8, "meters")
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(450, "meters"),
  7863. default: true
  7864. },
  7865. {
  7866. name: "Megamacro",
  7867. height: math.unit(15, "kilometers")
  7868. }
  7869. ]
  7870. ))
  7871. characterMakers.push(() => makeCharacter(
  7872. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7873. {
  7874. front: {
  7875. height: math.unit(6, "feet"),
  7876. weight: math.unit(256, "lbs"),
  7877. name: "Front",
  7878. image: {
  7879. source: "./media/characters/dannik/front.svg"
  7880. }
  7881. }
  7882. },
  7883. [
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(69.57, "meters"),
  7887. default: true
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(120, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/azura-saharah/front.svg"
  7900. }
  7901. },
  7902. back: {
  7903. height: math.unit(6, "feet"),
  7904. weight: math.unit(120, "lbs"),
  7905. name: "Back",
  7906. image: {
  7907. source: "./media/characters/azura-saharah/back.svg"
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(100, "feet"),
  7915. default: true
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7921. {
  7922. side: {
  7923. height: math.unit(5 + 4 / 12, "feet"),
  7924. weight: math.unit(163, "lbs"),
  7925. name: "Side",
  7926. image: {
  7927. source: "./media/characters/kennedy/side.svg"
  7928. }
  7929. }
  7930. },
  7931. [
  7932. {
  7933. name: "Standard Doggo",
  7934. height: math.unit(5 + 4 / 12, "feet")
  7935. },
  7936. {
  7937. name: "Big Doggo",
  7938. height: math.unit(25 + 3 / 12, "feet"),
  7939. default: true
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(5 + 5/12, "feet"),
  7948. weight: math.unit(100, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/odios-de-lunar/front.svg",
  7952. extra: 1468/1323,
  7953. bottom: 22/1490
  7954. }
  7955. }
  7956. },
  7957. [
  7958. {
  7959. name: "Micro",
  7960. height: math.unit(3, "inches")
  7961. },
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(5.5, "feet"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Macro",
  7969. height: math.unit(100, "feet")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7975. {
  7976. back: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(220, "lbs"),
  7979. name: "Back",
  7980. image: {
  7981. source: "./media/characters/mandake/back.svg"
  7982. }
  7983. }
  7984. },
  7985. [
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(7, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Macro",
  7993. height: math.unit(78, "feet")
  7994. },
  7995. {
  7996. name: "Macro+",
  7997. height: math.unit(300, "meters")
  7998. },
  7999. {
  8000. name: "Macro++",
  8001. height: math.unit(2400, "feet")
  8002. },
  8003. {
  8004. name: "Megamacro",
  8005. height: math.unit(5167, "meters")
  8006. },
  8007. {
  8008. name: "Gigamacro",
  8009. height: math.unit(41769, "miles")
  8010. },
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(120, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/yozey/front.svg"
  8022. }
  8023. },
  8024. frontAlt: {
  8025. height: math.unit(6, "feet"),
  8026. weight: math.unit(120, "lbs"),
  8027. name: "Front (Alt)",
  8028. image: {
  8029. source: "./media/characters/yozey/front-alt.svg"
  8030. }
  8031. },
  8032. side: {
  8033. height: math.unit(6, "feet"),
  8034. weight: math.unit(120, "lbs"),
  8035. name: "Side",
  8036. image: {
  8037. source: "./media/characters/yozey/side.svg"
  8038. }
  8039. },
  8040. },
  8041. [
  8042. {
  8043. name: "Micro",
  8044. height: math.unit(3, "inches"),
  8045. default: true
  8046. },
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(6, "feet")
  8050. }
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(6, "feet"),
  8058. weight: math.unit(103, "lbs"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/valeska-voss/front.svg"
  8062. }
  8063. }
  8064. },
  8065. [
  8066. {
  8067. name: "Mini-Sized Sub",
  8068. height: math.unit(3.1, "inches")
  8069. },
  8070. {
  8071. name: "Mid-Sized Sub",
  8072. height: math.unit(6.2, "inches")
  8073. },
  8074. {
  8075. name: "Full-Sized Sub",
  8076. height: math.unit(9.3, "inches")
  8077. },
  8078. {
  8079. name: "Normal",
  8080. height: math.unit(5 + 2 / 12, "foot"),
  8081. default: true
  8082. },
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8087. {
  8088. front: {
  8089. height: math.unit(6, "feet"),
  8090. weight: math.unit(160, "lbs"),
  8091. name: "Front",
  8092. image: {
  8093. source: "./media/characters/gene-zeta/front.svg",
  8094. extra: 3006 / 2826,
  8095. bottom: 182 / 3188
  8096. }
  8097. }
  8098. },
  8099. [
  8100. {
  8101. name: "Micro",
  8102. height: math.unit(6, "inches")
  8103. },
  8104. {
  8105. name: "Normal",
  8106. height: math.unit(5 + 11 / 12, "foot"),
  8107. default: true
  8108. },
  8109. {
  8110. name: "Macro",
  8111. height: math.unit(140, "feet")
  8112. },
  8113. {
  8114. name: "Supercharged",
  8115. height: math.unit(2500, "feet")
  8116. },
  8117. ]
  8118. ))
  8119. characterMakers.push(() => makeCharacter(
  8120. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8121. {
  8122. front: {
  8123. height: math.unit(6, "feet"),
  8124. weight: math.unit(350, "lbs"),
  8125. name: "Front",
  8126. image: {
  8127. source: "./media/characters/razinox/front.svg",
  8128. extra: 1686 / 1548,
  8129. bottom: 28.2 / 1868
  8130. }
  8131. },
  8132. back: {
  8133. height: math.unit(6, "feet"),
  8134. weight: math.unit(350, "lbs"),
  8135. name: "Back",
  8136. image: {
  8137. source: "./media/characters/razinox/back.svg",
  8138. extra: 1660 / 1590,
  8139. bottom: 15 / 1665
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(10 + 8 / 12, "foot")
  8147. },
  8148. {
  8149. name: "Minimacro",
  8150. height: math.unit(15, "foot")
  8151. },
  8152. {
  8153. name: "Macro",
  8154. height: math.unit(60, "foot"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Megamacro",
  8159. height: math.unit(5, "miles")
  8160. },
  8161. {
  8162. name: "Gigamacro",
  8163. height: math.unit(6000, "miles")
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(150, "lbs"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/cobalt/front.svg"
  8176. }
  8177. }
  8178. },
  8179. [
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(8 + 1 / 12, "foot")
  8183. },
  8184. {
  8185. name: "Macro",
  8186. height: math.unit(111, "foot"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Supracosmic",
  8191. height: math.unit(1e42, "feet")
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(5, "inches"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/amanda/front.svg",
  8203. extra: 926/791,
  8204. bottom: 38/964
  8205. }
  8206. },
  8207. back: {
  8208. height: math.unit(5, "inches"),
  8209. name: "Back",
  8210. image: {
  8211. source: "./media/characters/amanda/back.svg",
  8212. extra: 909/805,
  8213. bottom: 43/952
  8214. }
  8215. },
  8216. },
  8217. [
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(5, "inches"),
  8221. default: true
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(2.75, "meters"),
  8230. weight: math.unit(1200, "lb"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/teal/front.svg",
  8234. extra: 2463 / 2320,
  8235. bottom: 166 / 2629
  8236. }
  8237. },
  8238. back: {
  8239. height: math.unit(2.75, "meters"),
  8240. weight: math.unit(1200, "lb"),
  8241. name: "Back",
  8242. image: {
  8243. source: "./media/characters/teal/back.svg",
  8244. extra: 2580 / 2489,
  8245. bottom: 151 / 2731
  8246. }
  8247. },
  8248. sitting: {
  8249. height: math.unit(1.9, "meters"),
  8250. weight: math.unit(1200, "lb"),
  8251. name: "Sitting",
  8252. image: {
  8253. source: "./media/characters/teal/sitting.svg",
  8254. extra: 623 / 590,
  8255. bottom: 121 / 744
  8256. }
  8257. },
  8258. standing: {
  8259. height: math.unit(2.75, "meters"),
  8260. weight: math.unit(1200, "lb"),
  8261. name: "Standing",
  8262. image: {
  8263. source: "./media/characters/teal/standing.svg",
  8264. extra: 923 / 893,
  8265. bottom: 60 / 983
  8266. }
  8267. },
  8268. stretching: {
  8269. height: math.unit(3.65, "meters"),
  8270. weight: math.unit(1200, "lb"),
  8271. name: "Stretching",
  8272. image: {
  8273. source: "./media/characters/teal/stretching.svg",
  8274. extra: 1276 / 1244,
  8275. bottom: 0 / 1276
  8276. }
  8277. },
  8278. legged: {
  8279. height: math.unit(1.3, "meters"),
  8280. weight: math.unit(100, "lb"),
  8281. name: "Legged",
  8282. image: {
  8283. source: "./media/characters/teal/legged.svg",
  8284. extra: 462 / 437,
  8285. bottom: 24 / 486
  8286. }
  8287. },
  8288. naga: {
  8289. height: math.unit(5.4, "meters"),
  8290. weight: math.unit(4000, "lb"),
  8291. name: "Naga",
  8292. image: {
  8293. source: "./media/characters/teal/naga.svg",
  8294. extra: 1902 / 1858,
  8295. bottom: 0 / 1902
  8296. }
  8297. },
  8298. hand: {
  8299. height: math.unit(0.52, "meters"),
  8300. name: "Hand",
  8301. image: {
  8302. source: "./media/characters/teal/hand.svg"
  8303. }
  8304. },
  8305. maw: {
  8306. height: math.unit(0.43, "meters"),
  8307. name: "Maw",
  8308. image: {
  8309. source: "./media/characters/teal/maw.svg"
  8310. }
  8311. },
  8312. slit: {
  8313. height: math.unit(0.25, "meters"),
  8314. name: "Slit",
  8315. image: {
  8316. source: "./media/characters/teal/slit.svg"
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(2.75, "meters"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(300, "feet")
  8329. },
  8330. {
  8331. name: "Macro+",
  8332. height: math.unit(2000, "feet")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8338. {
  8339. frontCat: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(180, "lbs"),
  8342. name: "Front (Cat)",
  8343. image: {
  8344. source: "./media/characters/ravin-amulet/front-cat.svg"
  8345. }
  8346. },
  8347. frontCatAlt: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(180, "lbs"),
  8350. name: "Front (Alt, Cat)",
  8351. image: {
  8352. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8353. }
  8354. },
  8355. frontWerewolf: {
  8356. height: math.unit(6 * 1.2, "feet"),
  8357. weight: math.unit(225, "lbs"),
  8358. name: "Front (Werewolf)",
  8359. image: {
  8360. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8361. }
  8362. },
  8363. backWerewolf: {
  8364. height: math.unit(6 * 1.2, "feet"),
  8365. weight: math.unit(225, "lbs"),
  8366. name: "Back (Werewolf)",
  8367. image: {
  8368. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Nano",
  8375. height: math.unit(1, "micrometer")
  8376. },
  8377. {
  8378. name: "Micro",
  8379. height: math.unit(1, "inch")
  8380. },
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(6, "feet"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(60, "feet")
  8389. }
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(165, "lbs"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/fluoresce/front.svg"
  8401. }
  8402. }
  8403. },
  8404. [
  8405. {
  8406. name: "Micro",
  8407. height: math.unit(6, "cm")
  8408. },
  8409. {
  8410. name: "Normal",
  8411. height: math.unit(5 + 7 / 12, "feet"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(56, "feet")
  8417. },
  8418. {
  8419. name: "Megamacro",
  8420. height: math.unit(1.9, "miles")
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(9 + 6 / 12, "feet"),
  8429. weight: math.unit(523, "lbs"),
  8430. name: "Side",
  8431. image: {
  8432. source: "./media/characters/aurora/side.svg",
  8433. extra: 474/393,
  8434. bottom: 5/479
  8435. }
  8436. }
  8437. },
  8438. [
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(9 + 6 / 12, "feet")
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(96, "feet"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Macro+",
  8450. height: math.unit(243, "feet")
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(194, "cm"),
  8459. weight: math.unit(90, "kg"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/ranek/front.svg",
  8463. extra: 1862/1791,
  8464. bottom: 80/1942
  8465. }
  8466. },
  8467. back: {
  8468. height: math.unit(194, "cm"),
  8469. weight: math.unit(90, "kg"),
  8470. name: "Back",
  8471. image: {
  8472. source: "./media/characters/ranek/back.svg",
  8473. extra: 1853/1787,
  8474. bottom: 74/1927
  8475. }
  8476. },
  8477. feral: {
  8478. height: math.unit(30, "cm"),
  8479. weight: math.unit(1.6, "lbs"),
  8480. name: "Feral",
  8481. image: {
  8482. source: "./media/characters/ranek/feral.svg",
  8483. extra: 990/631,
  8484. bottom: 29/1019
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(194, "cm"),
  8492. default: true
  8493. },
  8494. {
  8495. name: "Macro",
  8496. height: math.unit(100, "meters")
  8497. },
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(5 + 6 / 12, "feet"),
  8505. weight: math.unit(153, "lbs"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/andrew-cooper/front.svg"
  8509. }
  8510. },
  8511. },
  8512. [
  8513. {
  8514. name: "Nano",
  8515. height: math.unit(1, "mm")
  8516. },
  8517. {
  8518. name: "Micro",
  8519. height: math.unit(2, "inches")
  8520. },
  8521. {
  8522. name: "Normal",
  8523. height: math.unit(5 + 6 / 12, "feet"),
  8524. default: true
  8525. }
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8530. {
  8531. front: {
  8532. height: math.unit(6, "feet"),
  8533. weight: math.unit(180, "lbs"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/akane-sato/front.svg",
  8537. extra: 1219 / 1140
  8538. }
  8539. },
  8540. back: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(180, "lbs"),
  8543. name: "Back",
  8544. image: {
  8545. source: "./media/characters/akane-sato/back.svg",
  8546. extra: 1219 / 1170
  8547. }
  8548. },
  8549. },
  8550. [
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(2.5, "meters")
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(250, "meters"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Megamacro",
  8562. height: math.unit(25, "km")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8568. {
  8569. front: {
  8570. height: math.unit(6, "feet"),
  8571. weight: math.unit(65, "kg"),
  8572. name: "Front",
  8573. image: {
  8574. source: "./media/characters/rook/front.svg",
  8575. extra: 960 / 950
  8576. }
  8577. }
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(8.8, "feet")
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(88, "feet"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Megamacro",
  8591. height: math.unit(8, "miles")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(12 + 2 / 12, "feet"),
  8600. weight: math.unit(808, "lbs"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/prodigy/front.svg"
  8604. }
  8605. }
  8606. },
  8607. [
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(12 + 2 / 12, "feet"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(143, "feet")
  8616. },
  8617. {
  8618. name: "Macro+",
  8619. height: math.unit(400, "feet")
  8620. },
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8625. {
  8626. front: {
  8627. height: math.unit(6, "feet"),
  8628. weight: math.unit(225, "lbs"),
  8629. name: "Front",
  8630. image: {
  8631. source: "./media/characters/daniel/front.svg"
  8632. }
  8633. },
  8634. leaning: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(225, "lbs"),
  8637. name: "Leaning",
  8638. image: {
  8639. source: "./media/characters/daniel/leaning.svg"
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(1000, "feet"),
  8647. default: true
  8648. },
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(6, "feet"),
  8656. weight: math.unit(88, "lbs"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/chiros/front.svg",
  8660. extra: 306 / 226
  8661. }
  8662. },
  8663. side: {
  8664. height: math.unit(6, "feet"),
  8665. weight: math.unit(88, "lbs"),
  8666. name: "Side",
  8667. image: {
  8668. source: "./media/characters/chiros/side.svg",
  8669. extra: 306 / 226
  8670. }
  8671. },
  8672. },
  8673. [
  8674. {
  8675. name: "Normal",
  8676. height: math.unit(6, "cm"),
  8677. default: true
  8678. },
  8679. ]
  8680. ))
  8681. characterMakers.push(() => makeCharacter(
  8682. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8683. {
  8684. front: {
  8685. height: math.unit(6, "feet"),
  8686. weight: math.unit(100, "lbs"),
  8687. name: "Front",
  8688. image: {
  8689. source: "./media/characters/selka/front.svg",
  8690. extra: 947 / 887
  8691. }
  8692. }
  8693. },
  8694. [
  8695. {
  8696. name: "Normal",
  8697. height: math.unit(5, "cm"),
  8698. default: true
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(8 + 3 / 12, "feet"),
  8707. weight: math.unit(424, "lbs"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/verin/front.svg",
  8711. extra: 1845 / 1550
  8712. }
  8713. },
  8714. frontArmored: {
  8715. height: math.unit(8 + 3 / 12, "feet"),
  8716. weight: math.unit(424, "lbs"),
  8717. name: "Front (Armored)",
  8718. image: {
  8719. source: "./media/characters/verin/front-armor.svg",
  8720. extra: 1845 / 1550,
  8721. bottom: 0.01
  8722. }
  8723. },
  8724. back: {
  8725. height: math.unit(8 + 3 / 12, "feet"),
  8726. weight: math.unit(424, "lbs"),
  8727. name: "Back",
  8728. image: {
  8729. source: "./media/characters/verin/back.svg",
  8730. bottom: 0.1,
  8731. extra: 1
  8732. }
  8733. },
  8734. foot: {
  8735. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8736. name: "Foot",
  8737. image: {
  8738. source: "./media/characters/verin/foot.svg"
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(8 + 3 / 12, "feet")
  8746. },
  8747. {
  8748. name: "Minimacro",
  8749. height: math.unit(21, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(626, "feet")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(2.718, "meters"),
  8763. weight: math.unit(150, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/sovrim-terraquian/front.svg",
  8767. extra: 1752/1689,
  8768. bottom: 36/1788
  8769. }
  8770. },
  8771. back: {
  8772. height: math.unit(2.718, "meters"),
  8773. weight: math.unit(150, "lbs"),
  8774. name: "Back",
  8775. image: {
  8776. source: "./media/characters/sovrim-terraquian/back.svg",
  8777. extra: 1698/1657,
  8778. bottom: 58/1756
  8779. }
  8780. },
  8781. tongue: {
  8782. height: math.unit(2.865, "feet"),
  8783. name: "Tongue",
  8784. image: {
  8785. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8786. }
  8787. },
  8788. hand: {
  8789. height: math.unit(1.61, "feet"),
  8790. name: "Hand",
  8791. image: {
  8792. source: "./media/characters/sovrim-terraquian/hand.svg"
  8793. }
  8794. },
  8795. foot: {
  8796. height: math.unit(1.05, "feet"),
  8797. name: "Foot",
  8798. image: {
  8799. source: "./media/characters/sovrim-terraquian/foot.svg"
  8800. }
  8801. },
  8802. footAlt: {
  8803. height: math.unit(0.88, "feet"),
  8804. name: "Foot (Alt)",
  8805. image: {
  8806. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Micro",
  8813. height: math.unit(2, "inches")
  8814. },
  8815. {
  8816. name: "Small",
  8817. height: math.unit(1, "meter")
  8818. },
  8819. {
  8820. name: "Normal",
  8821. height: math.unit(Math.E, "meters"),
  8822. default: true
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(20, "meters")
  8827. },
  8828. {
  8829. name: "Macro+",
  8830. height: math.unit(400, "meters")
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(7, "feet"),
  8839. weight: math.unit(489, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/reece-silvermane/front.svg",
  8843. bottom: 0.02,
  8844. extra: 1
  8845. }
  8846. },
  8847. },
  8848. [
  8849. {
  8850. name: "Macro",
  8851. height: math.unit(1.5, "miles"),
  8852. default: true
  8853. },
  8854. ]
  8855. ))
  8856. characterMakers.push(() => makeCharacter(
  8857. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8858. {
  8859. front: {
  8860. height: math.unit(6, "feet"),
  8861. weight: math.unit(78, "kg"),
  8862. name: "Front",
  8863. image: {
  8864. source: "./media/characters/kane/front.svg",
  8865. extra: 978 / 899
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Normal",
  8872. height: math.unit(2.1, "m"),
  8873. },
  8874. {
  8875. name: "Macro",
  8876. height: math.unit(1, "km"),
  8877. default: true
  8878. },
  8879. ]
  8880. ))
  8881. characterMakers.push(() => makeCharacter(
  8882. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8883. {
  8884. front: {
  8885. height: math.unit(6, "feet"),
  8886. weight: math.unit(200, "kg"),
  8887. name: "Front",
  8888. image: {
  8889. source: "./media/characters/tegon/front.svg",
  8890. bottom: 0.01,
  8891. extra: 1
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Micro",
  8898. height: math.unit(1, "inch")
  8899. },
  8900. {
  8901. name: "Normal",
  8902. height: math.unit(6 + 3 / 12, "feet"),
  8903. default: true
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(300, "feet")
  8908. },
  8909. {
  8910. name: "Megamacro",
  8911. height: math.unit(69, "miles")
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8917. {
  8918. side: {
  8919. height: math.unit(6, "feet"),
  8920. weight: math.unit(2304, "lbs"),
  8921. name: "Side",
  8922. image: {
  8923. source: "./media/characters/arcturax/side.svg",
  8924. extra: 790 / 376,
  8925. bottom: 0.01
  8926. }
  8927. },
  8928. },
  8929. [
  8930. {
  8931. name: "Micro",
  8932. height: math.unit(2, "inch")
  8933. },
  8934. {
  8935. name: "Normal",
  8936. height: math.unit(6, "feet")
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(39, "feet"),
  8941. default: true
  8942. },
  8943. {
  8944. name: "Megamacro",
  8945. height: math.unit(7, "miles")
  8946. },
  8947. ]
  8948. ))
  8949. characterMakers.push(() => makeCharacter(
  8950. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8951. {
  8952. front: {
  8953. height: math.unit(6, "feet"),
  8954. weight: math.unit(50, "lbs"),
  8955. name: "Front",
  8956. image: {
  8957. source: "./media/characters/sentri/front.svg",
  8958. extra: 1750 / 1570,
  8959. bottom: 0.025
  8960. }
  8961. },
  8962. frontAlt: {
  8963. height: math.unit(6, "feet"),
  8964. weight: math.unit(50, "lbs"),
  8965. name: "Front (Alt)",
  8966. image: {
  8967. source: "./media/characters/sentri/front-alt.svg",
  8968. extra: 1750 / 1570,
  8969. bottom: 0.025
  8970. }
  8971. },
  8972. },
  8973. [
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(15, "feet"),
  8977. default: true
  8978. },
  8979. {
  8980. name: "Macro",
  8981. height: math.unit(2500, "feet")
  8982. }
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(5 + 8 / 12, "feet"),
  8990. weight: math.unit(130, "lbs"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/corvin/front.svg",
  8994. extra: 1803 / 1629
  8995. }
  8996. },
  8997. frontShirt: {
  8998. height: math.unit(5 + 8 / 12, "feet"),
  8999. weight: math.unit(130, "lbs"),
  9000. name: "Front (Shirt)",
  9001. image: {
  9002. source: "./media/characters/corvin/front-shirt.svg",
  9003. extra: 1803 / 1629
  9004. }
  9005. },
  9006. frontPoncho: {
  9007. height: math.unit(5 + 8 / 12, "feet"),
  9008. weight: math.unit(130, "lbs"),
  9009. name: "Front (Poncho)",
  9010. image: {
  9011. source: "./media/characters/corvin/front-poncho.svg",
  9012. extra: 1803 / 1629
  9013. }
  9014. },
  9015. side: {
  9016. height: math.unit(5 + 8 / 12, "feet"),
  9017. weight: math.unit(130, "lbs"),
  9018. name: "Side",
  9019. image: {
  9020. source: "./media/characters/corvin/side.svg",
  9021. extra: 1012 / 945
  9022. }
  9023. },
  9024. back: {
  9025. height: math.unit(5 + 8 / 12, "feet"),
  9026. weight: math.unit(130, "lbs"),
  9027. name: "Back",
  9028. image: {
  9029. source: "./media/characters/corvin/back.svg",
  9030. extra: 1803 / 1629
  9031. }
  9032. },
  9033. },
  9034. [
  9035. {
  9036. name: "Micro",
  9037. height: math.unit(3, "inches")
  9038. },
  9039. {
  9040. name: "Normal",
  9041. height: math.unit(5 + 8 / 12, "feet")
  9042. },
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(300, "feet"),
  9046. default: true
  9047. },
  9048. {
  9049. name: "Megamacro",
  9050. height: math.unit(500, "miles")
  9051. }
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(135, "lbs"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/q/front.svg",
  9063. extra: 854 / 752,
  9064. bottom: 0.005
  9065. }
  9066. },
  9067. back: {
  9068. height: math.unit(6, "feet"),
  9069. weight: math.unit(130, "lbs"),
  9070. name: "Back",
  9071. image: {
  9072. source: "./media/characters/q/back.svg",
  9073. extra: 854 / 752
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Macro",
  9080. height: math.unit(90, "feet"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Extra Macro",
  9085. height: math.unit(300, "feet"),
  9086. },
  9087. {
  9088. name: "BIG WALF",
  9089. height: math.unit(750, "feet"),
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(3, "feet"),
  9098. weight: math.unit(28, "lbs"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/citrine/front.svg"
  9102. }
  9103. }
  9104. },
  9105. [
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(3, "feet"),
  9109. default: true
  9110. }
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9115. {
  9116. front: {
  9117. height: math.unit(14, "feet"),
  9118. weight: math.unit(1450, "kg"),
  9119. preyCapacity: math.unit(15, "people"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/aura-starwind/front.svg",
  9123. extra: 1440/1327,
  9124. bottom: 11/1451
  9125. }
  9126. },
  9127. side: {
  9128. height: math.unit(14, "feet"),
  9129. weight: math.unit(1450, "kg"),
  9130. preyCapacity: math.unit(15, "people"),
  9131. name: "Side",
  9132. image: {
  9133. source: "./media/characters/aura-starwind/side.svg",
  9134. extra: 1654 / 1497
  9135. }
  9136. },
  9137. taur: {
  9138. height: math.unit(18, "feet"),
  9139. weight: math.unit(5500, "kg"),
  9140. preyCapacity: math.unit(50, "people"),
  9141. name: "Taur",
  9142. image: {
  9143. source: "./media/characters/aura-starwind/taur.svg",
  9144. extra: 1760 / 1650
  9145. }
  9146. },
  9147. feral: {
  9148. height: math.unit(46, "feet"),
  9149. weight: math.unit(25000, "kg"),
  9150. preyCapacity: math.unit(120, "people"),
  9151. name: "Feral",
  9152. image: {
  9153. source: "./media/characters/aura-starwind/feral.svg"
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(14, "feet"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "Macro",
  9165. height: math.unit(50, "meters")
  9166. },
  9167. {
  9168. name: "Megamacro",
  9169. height: math.unit(5000, "meters")
  9170. },
  9171. {
  9172. name: "Gigamacro",
  9173. height: math.unit(100000, "kilometers")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(2 + 7 / 12, "feet"),
  9182. weight: math.unit(32, "lbs"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/rivet/front.svg",
  9186. extra: 1716 / 1658,
  9187. bottom: 0.03
  9188. }
  9189. },
  9190. foot: {
  9191. height: math.unit(0.551, "feet"),
  9192. name: "Rivet's Foot",
  9193. image: {
  9194. source: "./media/characters/rivet/foot.svg"
  9195. },
  9196. rename: true
  9197. }
  9198. },
  9199. [
  9200. {
  9201. name: "Micro",
  9202. height: math.unit(1.5, "inches"),
  9203. },
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(2 + 7 / 12, "feet"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(85, "feet")
  9212. },
  9213. {
  9214. name: "Megamacro",
  9215. height: math.unit(2.2, "km")
  9216. }
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9221. {
  9222. front: {
  9223. height: math.unit(5 + 9 / 12, "feet"),
  9224. weight: math.unit(150, "lbs"),
  9225. name: "Front",
  9226. image: {
  9227. source: "./media/characters/coffee/front.svg",
  9228. extra: 946/880,
  9229. bottom: 66/1012
  9230. }
  9231. },
  9232. foot: {
  9233. height: math.unit(1.29, "feet"),
  9234. name: "Foot",
  9235. image: {
  9236. source: "./media/characters/coffee/foot.svg"
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Micro",
  9243. height: math.unit(2, "inches"),
  9244. },
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(5 + 9 / 12, "feet"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Macro",
  9252. height: math.unit(800, "feet")
  9253. },
  9254. {
  9255. name: "Megamacro",
  9256. height: math.unit(25, "miles")
  9257. }
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(6, "feet"),
  9265. weight: math.unit(200, "lbs"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/chari-gal/front.svg",
  9269. extra: 1568 / 1385,
  9270. bottom: 0.047
  9271. }
  9272. },
  9273. gigantamax: {
  9274. height: math.unit(6 * 16, "feet"),
  9275. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9276. name: "Gigantamax",
  9277. image: {
  9278. source: "./media/characters/chari-gal/gigantamax.svg",
  9279. extra: 1124 / 888,
  9280. bottom: 0.03
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Normal",
  9287. height: math.unit(5 + 7 / 12, "feet")
  9288. },
  9289. {
  9290. name: "Macro",
  9291. height: math.unit(200, "feet"),
  9292. default: true
  9293. }
  9294. ]
  9295. ))
  9296. characterMakers.push(() => makeCharacter(
  9297. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9298. {
  9299. front: {
  9300. height: math.unit(6, "feet"),
  9301. weight: math.unit(150, "lbs"),
  9302. name: "Front",
  9303. image: {
  9304. source: "./media/characters/nova/front.svg",
  9305. extra: 5000 / 4722,
  9306. bottom: 0.02
  9307. }
  9308. }
  9309. },
  9310. [
  9311. {
  9312. name: "Micro-",
  9313. height: math.unit(0.8, "inches")
  9314. },
  9315. {
  9316. name: "Micro",
  9317. height: math.unit(2, "inches"),
  9318. default: true
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9324. {
  9325. koboldFront: {
  9326. height: math.unit(3 + 1 / 12, "feet"),
  9327. weight: math.unit(21.7, "lbs"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/argent/kobold-front.svg",
  9331. extra: 1471 / 1331,
  9332. bottom: 100.8 / 1575.5
  9333. },
  9334. form: "kobold",
  9335. default: true
  9336. },
  9337. dragonFront: {
  9338. height: math.unit(75, "inches"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/argent/dragon-front.svg",
  9342. extra: 1389/1248,
  9343. bottom: 54/1443
  9344. },
  9345. form: "dragon",
  9346. },
  9347. dragonBack: {
  9348. height: math.unit(75, "inches"),
  9349. name: "Back",
  9350. image: {
  9351. source: "./media/characters/argent/dragon-back.svg",
  9352. extra: 1399/1271,
  9353. bottom: 23/1422
  9354. },
  9355. form: "dragon",
  9356. },
  9357. dragonDressed: {
  9358. height: math.unit(75, "inches"),
  9359. name: "Dressed",
  9360. image: {
  9361. source: "./media/characters/argent/dragon-dressed.svg",
  9362. extra: 1350/1215,
  9363. bottom: 26/1376
  9364. },
  9365. form: "dragon"
  9366. },
  9367. dragonHead: {
  9368. height: math.unit(23.5, "inches"),
  9369. name: "Head",
  9370. image: {
  9371. source: "./media/characters/argent/dragon-head.svg"
  9372. },
  9373. form: "dragon",
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Micro",
  9379. height: math.unit(2, "inches"),
  9380. form: "kobold",
  9381. },
  9382. {
  9383. name: "Normal",
  9384. height: math.unit(3 + 1 / 12, "feet"),
  9385. form: "kobold",
  9386. default: true
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(120, "feet"),
  9391. form: "kobold",
  9392. },
  9393. {
  9394. name: "Speck",
  9395. height: math.unit(1, "mm"),
  9396. form: "dragon",
  9397. },
  9398. {
  9399. name: "Tiny",
  9400. height: math.unit(1, "cm"),
  9401. form: "dragon",
  9402. },
  9403. {
  9404. name: "Micro",
  9405. height: math.unit(5, "cm"),
  9406. form: "dragon",
  9407. },
  9408. {
  9409. name: "Normal",
  9410. height: math.unit(75, "inches"),
  9411. form: "dragon",
  9412. default: true
  9413. },
  9414. {
  9415. name: "Extra Tall",
  9416. height: math.unit(9, "feet"),
  9417. form: "dragon",
  9418. },
  9419. {
  9420. name: "Inconvenient",
  9421. height: math.unit(5, "meters"),
  9422. form: "dragon",
  9423. },
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(70, "meters"),
  9427. form: "dragon",
  9428. },
  9429. {
  9430. name: "Macro+",
  9431. height: math.unit(250, "meters"),
  9432. form: "dragon",
  9433. },
  9434. {
  9435. name: "Megamacro",
  9436. height: math.unit(20, "km"),
  9437. form: "dragon",
  9438. },
  9439. {
  9440. name: "Mountainous",
  9441. height: math.unit(100, "km"),
  9442. form: "dragon",
  9443. },
  9444. {
  9445. name: "Continental",
  9446. height: math.unit(2, "megameters"),
  9447. form: "dragon",
  9448. },
  9449. {
  9450. name: "Too Big",
  9451. height: math.unit(900, "megameters"),
  9452. form: "dragon",
  9453. },
  9454. ],
  9455. {
  9456. "kobold": {
  9457. name: "Kobold",
  9458. default: true
  9459. },
  9460. "dragon": {
  9461. name: "Dragon",
  9462. },
  9463. }
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9467. {
  9468. lamp: {
  9469. height: math.unit(7 * 1559 / 989, "feet"),
  9470. name: "Magic Lamp",
  9471. image: {
  9472. source: "./media/characters/mira-al-cul/lamp.svg",
  9473. extra: 1617 / 1559
  9474. }
  9475. },
  9476. front: {
  9477. height: math.unit(7, "feet"),
  9478. name: "Front",
  9479. image: {
  9480. source: "./media/characters/mira-al-cul/front.svg",
  9481. extra: 1044 / 990
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Heavily Restricted",
  9488. height: math.unit(7 * 1559 / 989, "feet")
  9489. },
  9490. {
  9491. name: "Freshly Freed",
  9492. height: math.unit(50 * 1559 / 989, "feet")
  9493. },
  9494. {
  9495. name: "World Encompassing",
  9496. height: math.unit(10000 * 1559 / 989, "miles")
  9497. },
  9498. {
  9499. name: "Galactic",
  9500. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9501. },
  9502. {
  9503. name: "Palmed Universe",
  9504. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Multiversal Matriarch",
  9509. height: math.unit(8.87e10, "yottameters")
  9510. },
  9511. {
  9512. name: "Void Mother",
  9513. height: math.unit(3.14e110, "yottaparsecs")
  9514. },
  9515. {
  9516. name: "Toying with Transcendence",
  9517. height: math.unit(1e307, "meters")
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9523. {
  9524. front: {
  9525. height: math.unit(17 + 1 / 12, "feet"),
  9526. weight: math.unit(476.2 * 5, "lbs"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/kuro-shi-uchū/front.svg",
  9530. extra: 2329 / 1835,
  9531. bottom: 0.02
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Micro",
  9538. height: math.unit(2, "inches")
  9539. },
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(12, "meters")
  9543. },
  9544. {
  9545. name: "Planetary",
  9546. height: math.unit(0.00929, "AU"),
  9547. default: true
  9548. },
  9549. {
  9550. name: "Universal",
  9551. height: math.unit(20, "gigaparsecs")
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(5 + 2 / 12, "feet"),
  9560. weight: math.unit(120, "lbs"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/katherine/front.svg",
  9564. extra: 2075 / 1969
  9565. }
  9566. },
  9567. dress: {
  9568. height: math.unit(5 + 2 / 12, "feet"),
  9569. weight: math.unit(120, "lbs"),
  9570. name: "Dress",
  9571. image: {
  9572. source: "./media/characters/katherine/dress.svg",
  9573. extra: 2258 / 2064
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Micro",
  9580. height: math.unit(1, "inches"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Normal",
  9585. height: math.unit(5 + 2 / 12, "feet")
  9586. },
  9587. {
  9588. name: "Macro",
  9589. height: math.unit(100, "meters")
  9590. },
  9591. {
  9592. name: "Megamacro",
  9593. height: math.unit(80, "miles")
  9594. },
  9595. ]
  9596. ))
  9597. characterMakers.push(() => makeCharacter(
  9598. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9599. {
  9600. front: {
  9601. height: math.unit(7 + 8 / 12, "feet"),
  9602. weight: math.unit(250, "lbs"),
  9603. name: "Front",
  9604. image: {
  9605. source: "./media/characters/yevis/front.svg",
  9606. extra: 1938 / 1755
  9607. }
  9608. }
  9609. },
  9610. [
  9611. {
  9612. name: "Mortal",
  9613. height: math.unit(7 + 8 / 12, "feet")
  9614. },
  9615. {
  9616. name: "Battle",
  9617. height: math.unit(25 + 11 / 12, "feet")
  9618. },
  9619. {
  9620. name: "Wrath",
  9621. height: math.unit(1654 + 11 / 12, "feet")
  9622. },
  9623. {
  9624. name: "Planet Destroyer",
  9625. height: math.unit(12000, "miles")
  9626. },
  9627. {
  9628. name: "Galaxy Conqueror",
  9629. height: math.unit(1.45, "zettameters"),
  9630. default: true
  9631. },
  9632. {
  9633. name: "Universal War",
  9634. height: math.unit(184, "gigaparsecs")
  9635. },
  9636. {
  9637. name: "Eternity War",
  9638. height: math.unit(1.98e55, "yottaparsecs")
  9639. },
  9640. ]
  9641. ))
  9642. characterMakers.push(() => makeCharacter(
  9643. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9644. {
  9645. front: {
  9646. height: math.unit(5 + 8 / 12, "feet"),
  9647. weight: math.unit(63, "kg"),
  9648. name: "Front",
  9649. image: {
  9650. source: "./media/characters/xavier/front.svg",
  9651. extra: 944 / 883
  9652. }
  9653. },
  9654. frontStretch: {
  9655. height: math.unit(5 + 8 / 12, "feet"),
  9656. weight: math.unit(63, "kg"),
  9657. name: "Stretching",
  9658. image: {
  9659. source: "./media/characters/xavier/front-stretch.svg",
  9660. extra: 962 / 820
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Normal",
  9667. height: math.unit(5 + 8 / 12, "feet")
  9668. },
  9669. {
  9670. name: "Macro",
  9671. height: math.unit(100, "meters"),
  9672. default: true
  9673. },
  9674. {
  9675. name: "McLargeHuge",
  9676. height: math.unit(10, "miles")
  9677. },
  9678. ]
  9679. ))
  9680. characterMakers.push(() => makeCharacter(
  9681. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9682. {
  9683. front: {
  9684. height: math.unit(5 + 5 / 12, "feet"),
  9685. weight: math.unit(150, "lb"),
  9686. name: "Front",
  9687. image: {
  9688. source: "./media/characters/joshii/front.svg",
  9689. extra: 765 / 653,
  9690. bottom: 51 / 816
  9691. }
  9692. },
  9693. foot: {
  9694. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9695. name: "Foot",
  9696. image: {
  9697. source: "./media/characters/joshii/foot.svg"
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Micro",
  9704. height: math.unit(2, "inches")
  9705. },
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(5 + 5 / 12, "feet")
  9709. },
  9710. {
  9711. name: "Macro",
  9712. height: math.unit(785, "feet"),
  9713. default: true
  9714. },
  9715. {
  9716. name: "Megamacro",
  9717. height: math.unit(24.5, "miles")
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(6, "feet"),
  9726. weight: math.unit(150, "lb"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/goddess-elizabeth/front.svg",
  9730. extra: 1800 / 1525,
  9731. bottom: 0.005
  9732. }
  9733. },
  9734. foot: {
  9735. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9736. name: "Foot",
  9737. image: {
  9738. source: "./media/characters/goddess-elizabeth/foot.svg"
  9739. }
  9740. },
  9741. mouth: {
  9742. height: math.unit(6, "feet"),
  9743. name: "Mouth",
  9744. image: {
  9745. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Micro",
  9752. height: math.unit(12, "feet")
  9753. },
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(80, "miles"),
  9757. default: true
  9758. },
  9759. {
  9760. name: "Macro",
  9761. height: math.unit(15000, "parsecs")
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(5 + 9 / 12, "feet"),
  9770. weight: math.unit(144, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/kara/front.svg"
  9774. }
  9775. },
  9776. feet: {
  9777. height: math.unit(6 / 6.765, "feet"),
  9778. name: "Kara's Feet",
  9779. rename: true,
  9780. image: {
  9781. source: "./media/characters/kara/feet.svg"
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(5 + 9 / 12, "feet")
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(174, "feet"),
  9793. default: true
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(18, "feet"),
  9802. weight: math.unit(4050, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/tyrone/front.svg",
  9806. extra: 2405 / 2270,
  9807. bottom: 182 / 2587
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(18, "feet"),
  9815. default: true
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(300, "feet")
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(15, "km")
  9824. },
  9825. {
  9826. name: "Gigamacro",
  9827. height: math.unit(500, "km")
  9828. },
  9829. {
  9830. name: "Teramacro",
  9831. height: math.unit(0.5, "gigameters")
  9832. },
  9833. {
  9834. name: "Omnimacro",
  9835. height: math.unit(1e252, "yottauniverse")
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(7 + 8 / 12, "feet"),
  9844. weight: math.unit(120, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/danny/front.svg",
  9848. extra: 1490 / 1350
  9849. }
  9850. },
  9851. back: {
  9852. height: math.unit(7 + 8 / 12, "feet"),
  9853. weight: math.unit(120, "lb"),
  9854. name: "Back",
  9855. image: {
  9856. source: "./media/characters/danny/back.svg",
  9857. extra: 1490 / 1350
  9858. }
  9859. },
  9860. },
  9861. [
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(7 + 8 / 12, "feet"),
  9865. default: true
  9866. },
  9867. ]
  9868. ))
  9869. characterMakers.push(() => makeCharacter(
  9870. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9871. {
  9872. front: {
  9873. height: math.unit(3.5, "inches"),
  9874. weight: math.unit(19, "grams"),
  9875. name: "Front",
  9876. image: {
  9877. source: "./media/characters/mallow/front.svg",
  9878. extra: 471 / 431
  9879. }
  9880. },
  9881. back: {
  9882. height: math.unit(3.5, "inches"),
  9883. weight: math.unit(19, "grams"),
  9884. name: "Back",
  9885. image: {
  9886. source: "./media/characters/mallow/back.svg",
  9887. extra: 471 / 431
  9888. }
  9889. },
  9890. },
  9891. [
  9892. {
  9893. name: "Normal",
  9894. height: math.unit(3.5, "inches"),
  9895. default: true
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9901. {
  9902. front: {
  9903. height: math.unit(9, "feet"),
  9904. weight: math.unit(230, "kg"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/starry-aqua/front.svg"
  9908. }
  9909. },
  9910. back: {
  9911. height: math.unit(9, "feet"),
  9912. weight: math.unit(230, "kg"),
  9913. name: "Back",
  9914. image: {
  9915. source: "./media/characters/starry-aqua/back.svg"
  9916. }
  9917. },
  9918. hand: {
  9919. height: math.unit(9 * 0.1168, "feet"),
  9920. name: "Hand",
  9921. image: {
  9922. source: "./media/characters/starry-aqua/hand.svg"
  9923. }
  9924. },
  9925. foot: {
  9926. height: math.unit(9 * 0.18, "feet"),
  9927. name: "Foot",
  9928. image: {
  9929. source: "./media/characters/starry-aqua/foot.svg"
  9930. }
  9931. }
  9932. },
  9933. [
  9934. {
  9935. name: "Micro",
  9936. height: math.unit(3, "inches")
  9937. },
  9938. {
  9939. name: "Normal",
  9940. height: math.unit(9, "feet")
  9941. },
  9942. {
  9943. name: "Macro",
  9944. height: math.unit(300, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Megamacro",
  9949. height: math.unit(3200, "feet")
  9950. }
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(15, "feet"),
  9958. weight: math.unit(5026, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/luka-towers/front.svg",
  9962. extra: 1269/1133,
  9963. bottom: 51/1320
  9964. }
  9965. },
  9966. },
  9967. [
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(15, "feet"),
  9971. default: true
  9972. },
  9973. {
  9974. name: "Minimacro",
  9975. height: math.unit(25, "feet")
  9976. },
  9977. {
  9978. name: "Macro",
  9979. height: math.unit(320, "feet")
  9980. },
  9981. {
  9982. name: "Megamacro",
  9983. height: math.unit(35000, "feet")
  9984. },
  9985. {
  9986. name: "Gigamacro",
  9987. height: math.unit(4000, "miles")
  9988. },
  9989. {
  9990. name: "Teramacro",
  9991. height: math.unit(15000, "miles")
  9992. },
  9993. ]
  9994. ))
  9995. characterMakers.push(() => makeCharacter(
  9996. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9997. {
  9998. front: {
  9999. height: math.unit(6, "feet"),
  10000. weight: math.unit(150, "lb"),
  10001. name: "Front",
  10002. image: {
  10003. source: "./media/characters/natalie-nightring/front.svg",
  10004. extra: 1,
  10005. bottom: 0.06
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Uh Oh",
  10012. height: math.unit(0.1, "mm")
  10013. },
  10014. {
  10015. name: "Small",
  10016. height: math.unit(3, "inches")
  10017. },
  10018. {
  10019. name: "Human Scale",
  10020. height: math.unit(6, "feet")
  10021. },
  10022. {
  10023. name: "Librarian",
  10024. height: math.unit(50, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Immense",
  10029. height: math.unit(200, "miles")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(180, "lbs"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/danni-rosie/front.svg",
  10042. extra: 1260 / 1128,
  10043. bottom: 0.022
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Micro",
  10050. height: math.unit(2, "inches"),
  10051. default: true
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(5 + 9 / 12, "feet"),
  10060. weight: math.unit(220, "lb"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/samantha-kruse/front.svg",
  10064. extra: (985 / 935),
  10065. bottom: 0.03
  10066. }
  10067. },
  10068. frontUndressed: {
  10069. height: math.unit(5 + 9 / 12, "feet"),
  10070. weight: math.unit(220, "lb"),
  10071. name: "Front (Undressed)",
  10072. image: {
  10073. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10074. extra: (973 / 923),
  10075. bottom: 0.025
  10076. }
  10077. },
  10078. fat: {
  10079. height: math.unit(5 + 9 / 12, "feet"),
  10080. weight: math.unit(900, "lb"),
  10081. name: "Front (Fat)",
  10082. image: {
  10083. source: "./media/characters/samantha-kruse/fat.svg",
  10084. extra: 2688 / 2561
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(5 + 9 / 12, "feet"),
  10092. default: true
  10093. }
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10098. {
  10099. back: {
  10100. height: math.unit(5 + 4 / 12, "feet"),
  10101. weight: math.unit(4963, "lb"),
  10102. name: "Back",
  10103. image: {
  10104. source: "./media/characters/amelia-rosie/back.svg",
  10105. extra: 1113 / 963,
  10106. bottom: 0.01
  10107. }
  10108. },
  10109. },
  10110. [
  10111. {
  10112. name: "Level 0",
  10113. height: math.unit(5 + 4 / 12, "feet")
  10114. },
  10115. {
  10116. name: "Level 1",
  10117. height: math.unit(164597, "feet"),
  10118. default: true
  10119. },
  10120. {
  10121. name: "Level 2",
  10122. height: math.unit(956243, "miles")
  10123. },
  10124. {
  10125. name: "Level 3",
  10126. height: math.unit(29421709423, "miles")
  10127. },
  10128. {
  10129. name: "Level 4",
  10130. height: math.unit(154, "lightyears")
  10131. },
  10132. {
  10133. name: "Level 5",
  10134. height: math.unit(4738272, "lightyears")
  10135. },
  10136. {
  10137. name: "Level 6",
  10138. height: math.unit(145787152896, "lightyears")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(5 + 11 / 12, "feet"),
  10147. weight: math.unit(65, "kg"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/rook-kitara/front.svg",
  10151. extra: 1347 / 1274,
  10152. bottom: 0.005
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Totally Unfair",
  10159. height: math.unit(1.8, "mm")
  10160. },
  10161. {
  10162. name: "Lap Rookie",
  10163. height: math.unit(1.4, "feet")
  10164. },
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(5 + 11 / 12, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "How Did This Happen",
  10172. height: math.unit(80, "miles")
  10173. }
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(7, "feet"),
  10181. weight: math.unit(300, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/pisces/front.svg",
  10185. extra: 2255 / 2115,
  10186. bottom: 0.03
  10187. }
  10188. },
  10189. back: {
  10190. height: math.unit(7, "feet"),
  10191. weight: math.unit(300, "lb"),
  10192. name: "Back",
  10193. image: {
  10194. source: "./media/characters/pisces/back.svg",
  10195. extra: 2146 / 2055,
  10196. bottom: 0.04
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Normal",
  10203. height: math.unit(7, "feet"),
  10204. default: true
  10205. },
  10206. {
  10207. name: "Swimming Pool",
  10208. height: math.unit(12.2, "meters")
  10209. },
  10210. {
  10211. name: "Olympic Swimming Pool",
  10212. height: math.unit(56.3, "meters")
  10213. },
  10214. {
  10215. name: "Lake Superior",
  10216. height: math.unit(93900, "meters")
  10217. },
  10218. {
  10219. name: "Mediterranean Sea",
  10220. height: math.unit(644457, "meters")
  10221. },
  10222. {
  10223. name: "World's Oceans",
  10224. height: math.unit(4567491, "meters")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(2.3, "meters"),
  10233. weight: math.unit(120, "kg"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/zelas/front.svg"
  10237. }
  10238. },
  10239. side: {
  10240. height: math.unit(2.3, "meters"),
  10241. weight: math.unit(120, "kg"),
  10242. name: "Side",
  10243. image: {
  10244. source: "./media/characters/zelas/side.svg"
  10245. }
  10246. },
  10247. back: {
  10248. height: math.unit(2.3, "meters"),
  10249. weight: math.unit(120, "kg"),
  10250. name: "Back",
  10251. image: {
  10252. source: "./media/characters/zelas/back.svg"
  10253. }
  10254. },
  10255. foot: {
  10256. height: math.unit(1.116, "feet"),
  10257. name: "Foot",
  10258. image: {
  10259. source: "./media/characters/zelas/foot.svg"
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(2.3, "meters")
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(30, "meters"),
  10271. default: true
  10272. },
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10277. {
  10278. front: {
  10279. height: math.unit(1, "inch"),
  10280. weight: math.unit(0.21, "grams"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/talbot/front.svg",
  10284. extra: 594 / 544
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Micro",
  10291. height: math.unit(1, "inch"),
  10292. default: true
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10298. {
  10299. front: {
  10300. height: math.unit(3 + 3 / 12, "feet"),
  10301. weight: math.unit(51.8, "lb"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/fliss/front.svg",
  10305. extra: 840 / 640
  10306. }
  10307. },
  10308. },
  10309. [
  10310. {
  10311. name: "Teeny Tiny",
  10312. height: math.unit(1, "mm")
  10313. },
  10314. {
  10315. name: "Small",
  10316. height: math.unit(1, "inch"),
  10317. default: true
  10318. },
  10319. {
  10320. name: "Standard Sylveon",
  10321. height: math.unit(3 + 3 / 12, "feet")
  10322. },
  10323. {
  10324. name: "Large Nuisance",
  10325. height: math.unit(33, "feet")
  10326. },
  10327. {
  10328. name: "City Filler",
  10329. height: math.unit(3000, "feet")
  10330. },
  10331. {
  10332. name: "New Horizon",
  10333. height: math.unit(6000, "miles")
  10334. },
  10335. ]
  10336. ))
  10337. characterMakers.push(() => makeCharacter(
  10338. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10339. {
  10340. front: {
  10341. height: math.unit(5, "cm"),
  10342. weight: math.unit(1.94, "g"),
  10343. name: "Front",
  10344. image: {
  10345. source: "./media/characters/fleta/front.svg",
  10346. extra: 835 / 803
  10347. }
  10348. },
  10349. back: {
  10350. height: math.unit(5, "cm"),
  10351. weight: math.unit(1.94, "g"),
  10352. name: "Back",
  10353. image: {
  10354. source: "./media/characters/fleta/back.svg",
  10355. extra: 835 / 803
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Micro",
  10362. height: math.unit(5, "cm"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(225, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/dominic/front.svg",
  10376. extra: 1770 / 1620,
  10377. bottom: 0.025
  10378. }
  10379. },
  10380. back: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(225, "lb"),
  10383. name: "Back",
  10384. image: {
  10385. source: "./media/characters/dominic/back.svg",
  10386. extra: 1745 / 1620,
  10387. bottom: 0.065
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Nano",
  10394. height: math.unit(0.1, "mm")
  10395. },
  10396. {
  10397. name: "Micro-",
  10398. height: math.unit(1, "mm")
  10399. },
  10400. {
  10401. name: "Micro",
  10402. height: math.unit(4, "inches")
  10403. },
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(6 + 4 / 12, "feet"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Macro",
  10411. height: math.unit(115, "feet")
  10412. },
  10413. {
  10414. name: "Macro+",
  10415. height: math.unit(955, "feet")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(8990, "feet")
  10420. },
  10421. {
  10422. name: "Gigmacro",
  10423. height: math.unit(9310, "miles")
  10424. },
  10425. {
  10426. name: "Teramacro",
  10427. height: math.unit(1567005010, "miles")
  10428. },
  10429. {
  10430. name: "Examacro",
  10431. height: math.unit(1425, "parsecs")
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(400, "feet"),
  10440. weight: math.unit(44444444, "lb"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/major-colonel/front.svg"
  10444. }
  10445. },
  10446. back: {
  10447. height: math.unit(400, "feet"),
  10448. weight: math.unit(44444444, "lb"),
  10449. name: "Back",
  10450. image: {
  10451. source: "./media/characters/major-colonel/back.svg"
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Macro",
  10458. height: math.unit(400, "feet"),
  10459. default: true
  10460. },
  10461. ]
  10462. ))
  10463. characterMakers.push(() => makeCharacter(
  10464. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10465. {
  10466. catFront: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(120, "lb"),
  10469. name: "Front (Cat Side)",
  10470. image: {
  10471. source: "./media/characters/axel-lycan/cat-front.svg",
  10472. extra: 430 / 402,
  10473. bottom: 43 / 472.35
  10474. }
  10475. },
  10476. catBack: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(120, "lb"),
  10479. name: "Back (Cat Side)",
  10480. image: {
  10481. source: "./media/characters/axel-lycan/cat-back.svg",
  10482. extra: 447 / 419,
  10483. bottom: 23.3 / 469
  10484. }
  10485. },
  10486. wolfFront: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(120, "lb"),
  10489. name: "Front (Wolf Side)",
  10490. image: {
  10491. source: "./media/characters/axel-lycan/wolf-front.svg",
  10492. extra: 485 / 456,
  10493. bottom: 19 / 504
  10494. }
  10495. },
  10496. wolfBack: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(120, "lb"),
  10499. name: "Back (Wolf Side)",
  10500. image: {
  10501. source: "./media/characters/axel-lycan/wolf-back.svg",
  10502. extra: 475 / 438,
  10503. bottom: 39.2 / 514
  10504. }
  10505. },
  10506. },
  10507. [
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(1, "km"),
  10511. default: true
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10517. {
  10518. front: {
  10519. height: math.unit(5 + 9 / 12, "feet"),
  10520. weight: math.unit(175, "lb"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/vanrel-hyena/front.svg",
  10524. extra: 1086 / 1010,
  10525. bottom: 0.04
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(5 + 9 / 12, "feet"),
  10533. default: true
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10539. {
  10540. front: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(103, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/abbott-absol/front.svg",
  10546. extra: 2010 / 1842
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Megamicro",
  10553. height: math.unit(0.1, "mm")
  10554. },
  10555. {
  10556. name: "Micro",
  10557. height: math.unit(1, "inch")
  10558. },
  10559. {
  10560. name: "Normal",
  10561. height: math.unit(6, "feet"),
  10562. default: true
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(264, "lb"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/hector/front.svg",
  10575. extra: 2280 / 2130,
  10576. bottom: 0.07
  10577. }
  10578. },
  10579. },
  10580. [
  10581. {
  10582. name: "Normal",
  10583. height: math.unit(12.25, "foot"),
  10584. default: true
  10585. },
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(160, "feet")
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10594. {
  10595. front: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(150, "lb"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/sal/front.svg",
  10601. extra: 1846 / 1699,
  10602. bottom: 0.04
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Megamacro",
  10609. height: math.unit(10, "miles"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10616. {
  10617. front: {
  10618. height: math.unit(3, "meters"),
  10619. weight: math.unit(450, "kg"),
  10620. name: "front",
  10621. image: {
  10622. source: "./media/characters/ranger/front.svg",
  10623. extra: 2401 / 2243,
  10624. bottom: 0.05
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(3, "meters"),
  10632. default: true
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(14, "feet"),
  10641. weight: math.unit(800, "kg"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/theresa/front.svg",
  10645. extra: 3575 / 3346,
  10646. bottom: 0.03
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(14, "feet"),
  10654. default: true
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10660. {
  10661. front: {
  10662. height: math.unit(6, "feet"),
  10663. weight: math.unit(3, "kg"),
  10664. name: "Front",
  10665. image: {
  10666. source: "./media/characters/ine/front.svg",
  10667. extra: 678 / 539,
  10668. bottom: 0.023
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Normal",
  10675. height: math.unit(2.265, "feet"),
  10676. default: true
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(5, "feet"),
  10685. weight: math.unit(30, "kg"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/vial/front.svg",
  10689. extra: 1365 / 1277,
  10690. bottom: 0.04
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Normal",
  10697. height: math.unit(5, "feet"),
  10698. default: true
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10704. {
  10705. side: {
  10706. height: math.unit(3.4, "meters"),
  10707. weight: math.unit(1000, "lb"),
  10708. name: "Side",
  10709. image: {
  10710. source: "./media/characters/rovoska/side.svg",
  10711. extra: 4403 / 1515
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Normal",
  10718. height: math.unit(3.4, "meters"),
  10719. default: true
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(8, "feet"),
  10728. weight: math.unit(315, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/gunner-rotthbauer/front.svg"
  10732. }
  10733. },
  10734. back: {
  10735. height: math.unit(8, "feet"),
  10736. weight: math.unit(315, "lb"),
  10737. name: "Back",
  10738. image: {
  10739. source: "./media/characters/gunner-rotthbauer/back.svg"
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Micro",
  10746. height: math.unit(3.5, "inches")
  10747. },
  10748. {
  10749. name: "Normal",
  10750. height: math.unit(8, "feet"),
  10751. default: true
  10752. },
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(250, "feet")
  10756. },
  10757. {
  10758. name: "Megamacro",
  10759. height: math.unit(1, "AU")
  10760. },
  10761. ]
  10762. ))
  10763. characterMakers.push(() => makeCharacter(
  10764. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10765. {
  10766. front: {
  10767. height: math.unit(5 + 5 / 12, "feet"),
  10768. weight: math.unit(140, "lb"),
  10769. name: "Front",
  10770. image: {
  10771. source: "./media/characters/allatia/front.svg",
  10772. extra: 1227 / 1180,
  10773. bottom: 0.027
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(5 + 5 / 12, "feet")
  10781. },
  10782. {
  10783. name: "Macro",
  10784. height: math.unit(250, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Megamacro",
  10789. height: math.unit(8, "miles")
  10790. }
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10795. {
  10796. front: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(120, "lb"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/tene/front.svg",
  10802. extra: 814/750,
  10803. bottom: 36/850
  10804. }
  10805. },
  10806. stomping: {
  10807. height: math.unit(2.025, "meters"),
  10808. weight: math.unit(120, "lb"),
  10809. name: "Stomping",
  10810. image: {
  10811. source: "./media/characters/tene/stomping.svg",
  10812. extra: 885/821,
  10813. bottom: 15/900
  10814. }
  10815. },
  10816. sitting: {
  10817. height: math.unit(1, "meter"),
  10818. weight: math.unit(120, "lb"),
  10819. name: "Sitting",
  10820. image: {
  10821. source: "./media/characters/tene/sitting.svg",
  10822. extra: 396/366,
  10823. bottom: 79/475
  10824. }
  10825. },
  10826. smiling: {
  10827. height: math.unit(1.2, "feet"),
  10828. name: "Smiling",
  10829. image: {
  10830. source: "./media/characters/tene/smiling.svg",
  10831. extra: 1364/1071,
  10832. bottom: 0/1364
  10833. }
  10834. },
  10835. smug: {
  10836. height: math.unit(1.3, "feet"),
  10837. name: "Smug",
  10838. image: {
  10839. source: "./media/characters/tene/smug.svg",
  10840. extra: 1323/1082,
  10841. bottom: 0/1323
  10842. }
  10843. },
  10844. feral: {
  10845. height: math.unit(3.9, "feet"),
  10846. weight: math.unit(250, "lb"),
  10847. name: "Feral",
  10848. image: {
  10849. source: "./media/characters/tene/feral.svg",
  10850. extra: 717 / 458,
  10851. bottom: 0.179
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Normal",
  10858. height: math.unit(6, "feet")
  10859. },
  10860. {
  10861. name: "Macro",
  10862. height: math.unit(300, "feet"),
  10863. default: true
  10864. },
  10865. {
  10866. name: "Megamacro",
  10867. height: math.unit(5, "miles")
  10868. },
  10869. ]
  10870. ))
  10871. characterMakers.push(() => makeCharacter(
  10872. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10873. {
  10874. side: {
  10875. height: math.unit(6, "feet"),
  10876. name: "Side",
  10877. image: {
  10878. source: "./media/characters/evander/side.svg",
  10879. extra: 877 / 477
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(0.83, "meters"),
  10887. default: true
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(12, "feet"),
  10896. weight: math.unit(1000, "lb"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10900. extra: 1762 / 1611
  10901. }
  10902. },
  10903. back: {
  10904. height: math.unit(12, "feet"),
  10905. weight: math.unit(1000, "lb"),
  10906. name: "Back",
  10907. image: {
  10908. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10909. extra: 1762 / 1611
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(12, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Kaiju",
  10921. height: math.unit(150, "feet")
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10927. {
  10928. front: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(150, "lb"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/zero-alurus/front.svg"
  10934. }
  10935. },
  10936. back: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(150, "lb"),
  10939. name: "Back",
  10940. image: {
  10941. source: "./media/characters/zero-alurus/back.svg"
  10942. }
  10943. },
  10944. },
  10945. [
  10946. {
  10947. name: "Normal",
  10948. height: math.unit(5 + 10 / 12, "feet")
  10949. },
  10950. {
  10951. name: "Macro",
  10952. height: math.unit(60, "feet"),
  10953. default: true
  10954. },
  10955. {
  10956. name: "Macro+",
  10957. height: math.unit(450, "feet")
  10958. },
  10959. ]
  10960. ))
  10961. characterMakers.push(() => makeCharacter(
  10962. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10963. {
  10964. front: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(200, "lb"),
  10967. name: "Front",
  10968. image: {
  10969. source: "./media/characters/mega-shi/front.svg",
  10970. extra: 1279 / 1250,
  10971. bottom: 0.02
  10972. }
  10973. },
  10974. back: {
  10975. height: math.unit(6, "feet"),
  10976. weight: math.unit(200, "lb"),
  10977. name: "Back",
  10978. image: {
  10979. source: "./media/characters/mega-shi/back.svg",
  10980. extra: 1279 / 1250,
  10981. bottom: 0.02
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Micro",
  10988. height: math.unit(16 + 6 / 12, "feet")
  10989. },
  10990. {
  10991. name: "Third Dimension",
  10992. height: math.unit(40, "meters")
  10993. },
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(660, "feet"),
  10997. default: true
  10998. },
  10999. {
  11000. name: "Megamacro",
  11001. height: math.unit(10, "miles")
  11002. },
  11003. {
  11004. name: "Planetary Launch",
  11005. height: math.unit(500, "miles")
  11006. },
  11007. {
  11008. name: "Interstellar",
  11009. height: math.unit(1e9, "miles")
  11010. },
  11011. {
  11012. name: "Leaving the Universe",
  11013. height: math.unit(1, "gigaparsec")
  11014. },
  11015. {
  11016. name: "Travelling Universes",
  11017. height: math.unit(30e15, "parsecs")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(5 + 4/12, "feet"),
  11026. weight: math.unit(120, "lb"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/odyssey/front.svg",
  11030. extra: 1747/1571,
  11031. bottom: 47/1794
  11032. }
  11033. },
  11034. side: {
  11035. height: math.unit(5.1, "feet"),
  11036. weight: math.unit(120, "lb"),
  11037. name: "Side",
  11038. image: {
  11039. source: "./media/characters/odyssey/side.svg",
  11040. extra: 1847/1619,
  11041. bottom: 47/1894
  11042. }
  11043. },
  11044. lounging: {
  11045. height: math.unit(1.464, "feet"),
  11046. weight: math.unit(120, "lb"),
  11047. name: "Lounging",
  11048. image: {
  11049. source: "./media/characters/odyssey/lounging.svg",
  11050. extra: 1235/837,
  11051. bottom: 551/1786
  11052. }
  11053. },
  11054. },
  11055. [
  11056. {
  11057. name: "Normal",
  11058. height: math.unit(5 + 4 / 12, "feet")
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(1, "km")
  11063. },
  11064. {
  11065. name: "Megamacro",
  11066. height: math.unit(3000, "km")
  11067. },
  11068. {
  11069. name: "Gigamacro",
  11070. height: math.unit(1, "AU"),
  11071. default: true
  11072. },
  11073. {
  11074. name: "Omniversal",
  11075. height: math.unit(100e14, "lightyears")
  11076. },
  11077. ]
  11078. ))
  11079. characterMakers.push(() => makeCharacter(
  11080. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11081. {
  11082. front: {
  11083. height: math.unit(6, "feet"),
  11084. weight: math.unit(300, "lb"),
  11085. name: "Front",
  11086. image: {
  11087. source: "./media/characters/mekuto/front.svg",
  11088. extra: 921 / 832,
  11089. bottom: 0.03
  11090. }
  11091. },
  11092. hand: {
  11093. height: math.unit(6 / 10.24, "feet"),
  11094. name: "Hand",
  11095. image: {
  11096. source: "./media/characters/mekuto/hand.svg"
  11097. }
  11098. },
  11099. foot: {
  11100. height: math.unit(6 / 5.05, "feet"),
  11101. name: "Foot",
  11102. image: {
  11103. source: "./media/characters/mekuto/foot.svg"
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Minimicro",
  11110. height: math.unit(0.2, "inches")
  11111. },
  11112. {
  11113. name: "Micro",
  11114. height: math.unit(1.5, "inches")
  11115. },
  11116. {
  11117. name: "Normal",
  11118. height: math.unit(5 + 11 / 12, "feet"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Minimacro",
  11123. height: math.unit(17 + 9 / 12, "feet")
  11124. },
  11125. {
  11126. name: "Macro",
  11127. height: math.unit(177.5, "feet")
  11128. },
  11129. {
  11130. name: "Megamacro",
  11131. height: math.unit(152, "miles")
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11137. {
  11138. front: {
  11139. height: math.unit(6.5, "inches"),
  11140. weight: math.unit(13, "oz"),
  11141. name: "Front",
  11142. image: {
  11143. source: "./media/characters/dafydd-tomos/front.svg",
  11144. extra: 2990 / 2603,
  11145. bottom: 0.03
  11146. }
  11147. },
  11148. },
  11149. [
  11150. {
  11151. name: "Micro",
  11152. height: math.unit(6.5, "inches"),
  11153. default: true
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11159. {
  11160. front: {
  11161. height: math.unit(6, "feet"),
  11162. weight: math.unit(150, "lb"),
  11163. name: "Front",
  11164. image: {
  11165. source: "./media/characters/splinter/front.svg",
  11166. extra: 2990 / 2882,
  11167. bottom: 0.04
  11168. }
  11169. },
  11170. back: {
  11171. height: math.unit(6, "feet"),
  11172. weight: math.unit(150, "lb"),
  11173. name: "Back",
  11174. image: {
  11175. source: "./media/characters/splinter/back.svg",
  11176. extra: 2990 / 2882,
  11177. bottom: 0.04
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Normal",
  11184. height: math.unit(6, "feet")
  11185. },
  11186. {
  11187. name: "Macro",
  11188. height: math.unit(230, "meters"),
  11189. default: true
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(4 + 10 / 12, "feet"),
  11198. weight: math.unit(480, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/snow-gabumon/front.svg",
  11202. extra: 1140 / 963,
  11203. bottom: 0.058
  11204. }
  11205. },
  11206. back: {
  11207. height: math.unit(4 + 10 / 12, "feet"),
  11208. weight: math.unit(480, "lb"),
  11209. name: "Back",
  11210. image: {
  11211. source: "./media/characters/snow-gabumon/back.svg",
  11212. extra: 1115 / 962,
  11213. bottom: 0.041
  11214. }
  11215. },
  11216. frontUndresed: {
  11217. height: math.unit(4 + 10 / 12, "feet"),
  11218. weight: math.unit(480, "lb"),
  11219. name: "Front (Undressed)",
  11220. image: {
  11221. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11222. extra: 1061 / 960,
  11223. bottom: 0.045
  11224. }
  11225. },
  11226. },
  11227. [
  11228. {
  11229. name: "Micro",
  11230. height: math.unit(1, "inch")
  11231. },
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(4 + 10 / 12, "feet"),
  11235. default: true
  11236. },
  11237. {
  11238. name: "Macro",
  11239. height: math.unit(200, "feet")
  11240. },
  11241. {
  11242. name: "Megamacro",
  11243. height: math.unit(120, "miles")
  11244. },
  11245. {
  11246. name: "Gigamacro",
  11247. height: math.unit(9800, "miles")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(1.7, "meters"),
  11256. weight: math.unit(140, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/moody/front.svg",
  11260. extra: 3226 / 3007,
  11261. bottom: 0.087
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Micro",
  11268. height: math.unit(1, "mm")
  11269. },
  11270. {
  11271. name: "Normal",
  11272. height: math.unit(1.7, "meters"),
  11273. default: true
  11274. },
  11275. {
  11276. name: "Macro",
  11277. height: math.unit(80, "meters")
  11278. },
  11279. {
  11280. name: "Macro+",
  11281. height: math.unit(500, "meters")
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11287. {
  11288. front: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(150, "lb"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/zyas/front.svg",
  11294. extra: 1180 / 1120,
  11295. bottom: 0.045
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Normal",
  11302. height: math.unit(10, "feet"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Macro",
  11307. height: math.unit(500, "feet")
  11308. },
  11309. {
  11310. name: "Megamacro",
  11311. height: math.unit(5, "miles")
  11312. },
  11313. {
  11314. name: "Teramacro",
  11315. height: math.unit(150000, "miles")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(6, "feet"),
  11324. weight: math.unit(150, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/cuon/front.svg",
  11328. extra: 1390 / 1320,
  11329. bottom: 0.008
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Micro",
  11336. height: math.unit(3, "inches")
  11337. },
  11338. {
  11339. name: "Normal",
  11340. height: math.unit(18 + 9 / 12, "feet"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Macro",
  11345. height: math.unit(360, "feet")
  11346. },
  11347. {
  11348. name: "Megamacro",
  11349. height: math.unit(360, "miles")
  11350. },
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11355. {
  11356. front: {
  11357. height: math.unit(2.4, "meters"),
  11358. weight: math.unit(70, "kg"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/nyanuxk/front.svg",
  11362. extra: 1172 / 1084,
  11363. bottom: 0.065
  11364. }
  11365. },
  11366. side: {
  11367. height: math.unit(2.4, "meters"),
  11368. weight: math.unit(70, "kg"),
  11369. name: "Side",
  11370. image: {
  11371. source: "./media/characters/nyanuxk/side.svg",
  11372. extra: 1190 / 1132,
  11373. bottom: 0.007
  11374. }
  11375. },
  11376. back: {
  11377. height: math.unit(2.4, "meters"),
  11378. weight: math.unit(70, "kg"),
  11379. name: "Back",
  11380. image: {
  11381. source: "./media/characters/nyanuxk/back.svg",
  11382. extra: 1200 / 1141,
  11383. bottom: 0.015
  11384. }
  11385. },
  11386. foot: {
  11387. height: math.unit(0.52, "meters"),
  11388. name: "Foot",
  11389. image: {
  11390. source: "./media/characters/nyanuxk/foot.svg"
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Micro",
  11397. height: math.unit(2, "cm")
  11398. },
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(2.4, "meters"),
  11402. default: true
  11403. },
  11404. {
  11405. name: "Smaller Macro",
  11406. height: math.unit(120, "meters")
  11407. },
  11408. {
  11409. name: "Bigger Macro",
  11410. height: math.unit(1.2, "km")
  11411. },
  11412. {
  11413. name: "Megamacro",
  11414. height: math.unit(15, "kilometers")
  11415. },
  11416. {
  11417. name: "Gigamacro",
  11418. height: math.unit(2000, "km")
  11419. },
  11420. {
  11421. name: "Teramacro",
  11422. height: math.unit(500000, "km")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11428. {
  11429. side: {
  11430. height: math.unit(6, "feet"),
  11431. name: "Side",
  11432. image: {
  11433. source: "./media/characters/ailbhe/side.svg",
  11434. extra: 757 / 464,
  11435. bottom: 0.041
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(1.07, "meters"),
  11443. default: true
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(6, "feet"),
  11452. weight: math.unit(120, "kg"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/zevulfius/front.svg",
  11456. extra: 965 / 903
  11457. }
  11458. },
  11459. side: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(120, "kg"),
  11462. name: "Side",
  11463. image: {
  11464. source: "./media/characters/zevulfius/side.svg",
  11465. extra: 939 / 900
  11466. }
  11467. },
  11468. back: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(120, "kg"),
  11471. name: "Back",
  11472. image: {
  11473. source: "./media/characters/zevulfius/back.svg",
  11474. extra: 918 / 854,
  11475. bottom: 0.005
  11476. }
  11477. },
  11478. foot: {
  11479. height: math.unit(6 / 3.72, "feet"),
  11480. name: "Foot",
  11481. image: {
  11482. source: "./media/characters/zevulfius/foot.svg"
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(750, "meters")
  11490. },
  11491. {
  11492. name: "Megamacro",
  11493. height: math.unit(20, "km"),
  11494. default: true
  11495. },
  11496. {
  11497. name: "Gigamacro",
  11498. height: math.unit(2000, "km")
  11499. },
  11500. {
  11501. name: "Teramacro",
  11502. height: math.unit(250000, "km")
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(100, "feet"),
  11511. weight: math.unit(350, "kg"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/rikes/front.svg",
  11515. extra: 1565 / 1483,
  11516. bottom: 0.017
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Macro",
  11523. height: math.unit(100, "feet"),
  11524. default: true
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11530. {
  11531. front: {
  11532. height: math.unit(8, "feet"),
  11533. weight: math.unit(356, "lb"),
  11534. name: "Front",
  11535. image: {
  11536. source: "./media/characters/adam-silver-mane/front.svg",
  11537. extra: 1036/937,
  11538. bottom: 63/1099
  11539. }
  11540. },
  11541. side: {
  11542. height: math.unit(8, "feet"),
  11543. weight: math.unit(356, "lb"),
  11544. name: "Side",
  11545. image: {
  11546. source: "./media/characters/adam-silver-mane/side.svg",
  11547. extra: 997/901,
  11548. bottom: 59/1056
  11549. }
  11550. },
  11551. frontNsfw: {
  11552. height: math.unit(8, "feet"),
  11553. weight: math.unit(356, "lb"),
  11554. name: "Front (NSFW)",
  11555. image: {
  11556. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11557. extra: 1036/937,
  11558. bottom: 63/1099
  11559. }
  11560. },
  11561. sideNsfw: {
  11562. height: math.unit(8, "feet"),
  11563. weight: math.unit(356, "lb"),
  11564. name: "Side (NSFW)",
  11565. image: {
  11566. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11567. extra: 997/901,
  11568. bottom: 59/1056
  11569. }
  11570. },
  11571. dick: {
  11572. height: math.unit(2.1, "feet"),
  11573. name: "Dick",
  11574. image: {
  11575. source: "./media/characters/adam-silver-mane/dick.svg"
  11576. }
  11577. },
  11578. taur: {
  11579. height: math.unit(16, "feet"),
  11580. weight: math.unit(1500, "kg"),
  11581. name: "Taur",
  11582. image: {
  11583. source: "./media/characters/adam-silver-mane/taur.svg",
  11584. extra: 1713 / 1571,
  11585. bottom: 0.01
  11586. }
  11587. },
  11588. },
  11589. [
  11590. {
  11591. name: "Normal",
  11592. height: math.unit(8, "feet")
  11593. },
  11594. {
  11595. name: "Minimacro",
  11596. height: math.unit(80, "feet")
  11597. },
  11598. {
  11599. name: "MDA",
  11600. height: math.unit(80, "meters")
  11601. },
  11602. {
  11603. name: "Macro",
  11604. height: math.unit(800, "feet"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Megamacro",
  11609. height: math.unit(8000, "feet")
  11610. },
  11611. {
  11612. name: "Gigamacro",
  11613. height: math.unit(800, "miles")
  11614. },
  11615. {
  11616. name: "Teramacro",
  11617. height: math.unit(80000, "miles")
  11618. },
  11619. {
  11620. name: "Celestial",
  11621. height: math.unit(8e6, "miles")
  11622. },
  11623. {
  11624. name: "Star Dragon",
  11625. height: math.unit(800000, "parsecs")
  11626. },
  11627. {
  11628. name: "Godly",
  11629. height: math.unit(800, "teraparsecs")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11635. {
  11636. front: {
  11637. height: math.unit(6, "feet"),
  11638. weight: math.unit(150, "lb"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/ky'owin/front.svg",
  11642. extra: 3862/3053,
  11643. bottom: 74/3936
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(6 + 8 / 12, "feet")
  11651. },
  11652. {
  11653. name: "Large",
  11654. height: math.unit(68, "feet")
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(132, "feet")
  11659. },
  11660. {
  11661. name: "Macro+",
  11662. height: math.unit(340, "feet")
  11663. },
  11664. {
  11665. name: "Macro++",
  11666. height: math.unit(680, "feet"),
  11667. default: true
  11668. },
  11669. {
  11670. name: "Megamacro",
  11671. height: math.unit(1, "mile")
  11672. },
  11673. {
  11674. name: "Megamacro+",
  11675. height: math.unit(10, "miles")
  11676. },
  11677. ]
  11678. ))
  11679. characterMakers.push(() => makeCharacter(
  11680. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11681. {
  11682. front: {
  11683. height: math.unit(4, "feet"),
  11684. weight: math.unit(50, "lb"),
  11685. name: "Front",
  11686. image: {
  11687. source: "./media/characters/mal/front.svg",
  11688. extra: 785 / 724,
  11689. bottom: 0.07
  11690. }
  11691. },
  11692. },
  11693. [
  11694. {
  11695. name: "Micro",
  11696. height: math.unit(4, "inches")
  11697. },
  11698. {
  11699. name: "Normal",
  11700. height: math.unit(4, "feet"),
  11701. default: true
  11702. },
  11703. {
  11704. name: "Macro",
  11705. height: math.unit(200, "feet")
  11706. },
  11707. ]
  11708. ))
  11709. characterMakers.push(() => makeCharacter(
  11710. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11711. {
  11712. front: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(150, "lb"),
  11715. name: "Front",
  11716. image: {
  11717. source: "./media/characters/jordan-deware/front.svg",
  11718. extra: 1191 / 1012
  11719. }
  11720. },
  11721. },
  11722. [
  11723. {
  11724. name: "Nano",
  11725. height: math.unit(0.01, "mm")
  11726. },
  11727. {
  11728. name: "Minimicro",
  11729. height: math.unit(1, "mm")
  11730. },
  11731. {
  11732. name: "Micro",
  11733. height: math.unit(0.5, "inches")
  11734. },
  11735. {
  11736. name: "Normal",
  11737. height: math.unit(4, "feet"),
  11738. default: true
  11739. },
  11740. {
  11741. name: "Minimacro",
  11742. height: math.unit(40, "meters")
  11743. },
  11744. {
  11745. name: "Small Macro",
  11746. height: math.unit(400, "meters")
  11747. },
  11748. {
  11749. name: "Macro",
  11750. height: math.unit(4, "miles")
  11751. },
  11752. {
  11753. name: "Megamacro",
  11754. height: math.unit(40, "miles")
  11755. },
  11756. {
  11757. name: "Megamacro+",
  11758. height: math.unit(400, "miles")
  11759. },
  11760. {
  11761. name: "Gigamacro",
  11762. height: math.unit(400000, "miles")
  11763. },
  11764. ]
  11765. ))
  11766. characterMakers.push(() => makeCharacter(
  11767. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11768. {
  11769. side: {
  11770. height: math.unit(6, "feet"),
  11771. weight: math.unit(150, "lb"),
  11772. name: "Side",
  11773. image: {
  11774. source: "./media/characters/kimiko/side.svg",
  11775. extra: 600 / 358
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(15, "feet"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Macro",
  11787. height: math.unit(220, "feet")
  11788. },
  11789. {
  11790. name: "Macro+",
  11791. height: math.unit(1450, "feet")
  11792. },
  11793. {
  11794. name: "Megamacro",
  11795. height: math.unit(11500, "feet")
  11796. },
  11797. {
  11798. name: "Gigamacro",
  11799. height: math.unit(9500, "miles")
  11800. },
  11801. {
  11802. name: "Teramacro",
  11803. height: math.unit(2208005005, "miles")
  11804. },
  11805. {
  11806. name: "Examacro",
  11807. height: math.unit(2750, "parsecs")
  11808. },
  11809. {
  11810. name: "Zettamacro",
  11811. height: math.unit(101500, "parsecs")
  11812. },
  11813. ]
  11814. ))
  11815. characterMakers.push(() => makeCharacter(
  11816. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11817. {
  11818. front: {
  11819. height: math.unit(6, "feet"),
  11820. weight: math.unit(70, "kg"),
  11821. name: "Front",
  11822. image: {
  11823. source: "./media/characters/andrew-sleepy/front.svg"
  11824. }
  11825. },
  11826. side: {
  11827. height: math.unit(6, "feet"),
  11828. weight: math.unit(70, "kg"),
  11829. name: "Side",
  11830. image: {
  11831. source: "./media/characters/andrew-sleepy/side.svg"
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Micro",
  11838. height: math.unit(1, "mm"),
  11839. default: true
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(150, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/judio/front.svg",
  11852. extra: 1258 / 1110
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Normal",
  11859. height: math.unit(5 + 6 / 12, "feet")
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(1000, "feet"),
  11864. default: true
  11865. },
  11866. {
  11867. name: "Megamacro",
  11868. height: math.unit(10, "miles")
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11874. {
  11875. frontDressed: {
  11876. height: math.unit(6, "feet"),
  11877. weight: math.unit(68, "kg"),
  11878. name: "Front (Dressed)",
  11879. image: {
  11880. source: "./media/characters/nomaxice/front-dressed.svg",
  11881. extra: 1137/824,
  11882. bottom: 74/1211
  11883. }
  11884. },
  11885. frontShorts: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(68, "kg"),
  11888. name: "Front (Shorts)",
  11889. image: {
  11890. source: "./media/characters/nomaxice/front-shorts.svg",
  11891. extra: 1137/824,
  11892. bottom: 74/1211
  11893. }
  11894. },
  11895. back: {
  11896. height: math.unit(6, "feet"),
  11897. weight: math.unit(68, "kg"),
  11898. name: "Back",
  11899. image: {
  11900. source: "./media/characters/nomaxice/back.svg",
  11901. extra: 822/786,
  11902. bottom: 39/861
  11903. }
  11904. },
  11905. hand: {
  11906. height: math.unit(0.565, "feet"),
  11907. name: "Hand",
  11908. image: {
  11909. source: "./media/characters/nomaxice/hand.svg"
  11910. }
  11911. },
  11912. foot: {
  11913. height: math.unit(1, "feet"),
  11914. name: "Foot",
  11915. image: {
  11916. source: "./media/characters/nomaxice/foot.svg"
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Micro",
  11923. height: math.unit(8, "cm")
  11924. },
  11925. {
  11926. name: "Norm",
  11927. height: math.unit(1.82, "m")
  11928. },
  11929. {
  11930. name: "Norm+",
  11931. height: math.unit(8.8, "feet"),
  11932. default: true
  11933. },
  11934. {
  11935. name: "Big",
  11936. height: math.unit(8, "meters")
  11937. },
  11938. {
  11939. name: "Macro",
  11940. height: math.unit(18, "meters")
  11941. },
  11942. {
  11943. name: "Macro+",
  11944. height: math.unit(88, "meters")
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11950. {
  11951. front: {
  11952. height: math.unit(12, "feet"),
  11953. weight: math.unit(1.5, "tons"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/dydros/front.svg",
  11957. extra: 863 / 800,
  11958. bottom: 0.015
  11959. }
  11960. },
  11961. back: {
  11962. height: math.unit(12, "feet"),
  11963. weight: math.unit(1.5, "tons"),
  11964. name: "Back",
  11965. image: {
  11966. source: "./media/characters/dydros/back.svg",
  11967. extra: 900 / 843,
  11968. bottom: 0.005
  11969. }
  11970. },
  11971. },
  11972. [
  11973. {
  11974. name: "Normal",
  11975. height: math.unit(12, "feet"),
  11976. default: true
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(6, "feet"),
  11985. weight: math.unit(100, "kg"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/riggi/front.svg",
  11989. extra: 5787 / 5303
  11990. }
  11991. },
  11992. hyper: {
  11993. height: math.unit(6 * 5 / 3, "feet"),
  11994. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11995. name: "Hyper",
  11996. image: {
  11997. source: "./media/characters/riggi/hyper.svg",
  11998. extra: 3595 / 3485
  11999. }
  12000. },
  12001. },
  12002. [
  12003. {
  12004. name: "Small Macro",
  12005. height: math.unit(50, "feet")
  12006. },
  12007. {
  12008. name: "Default",
  12009. height: math.unit(200, "feet"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Loom",
  12014. height: math.unit(10000, "feet")
  12015. },
  12016. {
  12017. name: "Cruising Altitude",
  12018. height: math.unit(30000, "feet")
  12019. },
  12020. {
  12021. name: "Megamacro",
  12022. height: math.unit(100, "miles")
  12023. },
  12024. {
  12025. name: "Continent Sized",
  12026. height: math.unit(2800, "miles")
  12027. },
  12028. {
  12029. name: "Earth Sized",
  12030. height: math.unit(8000, "miles")
  12031. },
  12032. ]
  12033. ))
  12034. characterMakers.push(() => makeCharacter(
  12035. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12036. {
  12037. front: {
  12038. height: math.unit(6, "feet"),
  12039. weight: math.unit(250, "lb"),
  12040. name: "Front",
  12041. image: {
  12042. source: "./media/characters/alexi/front.svg",
  12043. extra: 3483 / 3291,
  12044. bottom: 0.04
  12045. }
  12046. },
  12047. back: {
  12048. height: math.unit(6, "feet"),
  12049. weight: math.unit(250, "lb"),
  12050. name: "Back",
  12051. image: {
  12052. source: "./media/characters/alexi/back.svg",
  12053. extra: 3533 / 3356,
  12054. bottom: 0.021
  12055. }
  12056. },
  12057. frontTransforming: {
  12058. height: math.unit(8.58, "feet"),
  12059. weight: math.unit(1300, "lb"),
  12060. name: "Transforming",
  12061. image: {
  12062. source: "./media/characters/alexi/front-transforming.svg",
  12063. extra: 437 / 409,
  12064. bottom: 19 / 458.66
  12065. }
  12066. },
  12067. frontTransformed: {
  12068. height: math.unit(12.5, "feet"),
  12069. weight: math.unit(4000, "lb"),
  12070. name: "Transformed",
  12071. image: {
  12072. source: "./media/characters/alexi/front-transformed.svg",
  12073. extra: 639 / 614,
  12074. bottom: 30.55 / 671
  12075. }
  12076. },
  12077. },
  12078. [
  12079. {
  12080. name: "Normal",
  12081. height: math.unit(14, "feet"),
  12082. default: true
  12083. },
  12084. {
  12085. name: "Minimacro",
  12086. height: math.unit(30, "meters")
  12087. },
  12088. {
  12089. name: "Macro",
  12090. height: math.unit(500, "meters")
  12091. },
  12092. {
  12093. name: "Megamacro",
  12094. height: math.unit(9000, "km")
  12095. },
  12096. {
  12097. name: "Teramacro",
  12098. height: math.unit(384000, "km")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(6, "feet"),
  12107. weight: math.unit(150, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/kayroo/front.svg",
  12111. extra: 1153 / 1038,
  12112. bottom: 0.06
  12113. }
  12114. },
  12115. foot: {
  12116. height: math.unit(6, "feet"),
  12117. weight: math.unit(150, "lb"),
  12118. name: "Foot",
  12119. image: {
  12120. source: "./media/characters/kayroo/foot.svg"
  12121. }
  12122. },
  12123. },
  12124. [
  12125. {
  12126. name: "Normal",
  12127. height: math.unit(8, "feet"),
  12128. default: true
  12129. },
  12130. {
  12131. name: "Minimacro",
  12132. height: math.unit(250, "feet")
  12133. },
  12134. {
  12135. name: "Macro",
  12136. height: math.unit(2800, "feet")
  12137. },
  12138. {
  12139. name: "Megamacro",
  12140. height: math.unit(5200, "feet")
  12141. },
  12142. {
  12143. name: "Gigamacro",
  12144. height: math.unit(27000, "feet")
  12145. },
  12146. {
  12147. name: "Omega",
  12148. height: math.unit(45000, "feet")
  12149. },
  12150. ]
  12151. ))
  12152. characterMakers.push(() => makeCharacter(
  12153. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12154. {
  12155. front: {
  12156. height: math.unit(18, "feet"),
  12157. weight: math.unit(5800, "lb"),
  12158. name: "Front",
  12159. image: {
  12160. source: "./media/characters/rhys/front.svg",
  12161. extra: 3386 / 3090,
  12162. bottom: 0.07
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Normal",
  12169. height: math.unit(18, "feet"),
  12170. default: true
  12171. },
  12172. {
  12173. name: "Working Size",
  12174. height: math.unit(200, "feet")
  12175. },
  12176. {
  12177. name: "Demolition Size",
  12178. height: math.unit(2000, "feet")
  12179. },
  12180. {
  12181. name: "Maximum Licensed Size",
  12182. height: math.unit(5, "miles")
  12183. },
  12184. {
  12185. name: "Maximum Observed Size",
  12186. height: math.unit(10, "yottameters")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(250, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/toto/front.svg",
  12199. extra: 527 / 479,
  12200. bottom: 0.05
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Micro",
  12207. height: math.unit(3, "feet")
  12208. },
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(10, "feet")
  12212. },
  12213. {
  12214. name: "Macro",
  12215. height: math.unit(150, "feet"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Megamacro",
  12220. height: math.unit(1200, "feet")
  12221. },
  12222. ]
  12223. ))
  12224. characterMakers.push(() => makeCharacter(
  12225. { name: "King", species: ["lion"], tags: ["anthro"] },
  12226. {
  12227. back: {
  12228. height: math.unit(6, "feet"),
  12229. weight: math.unit(150, "lb"),
  12230. name: "Back",
  12231. image: {
  12232. source: "./media/characters/king/back.svg"
  12233. }
  12234. },
  12235. },
  12236. [
  12237. {
  12238. name: "Micro",
  12239. height: math.unit(2, "inches")
  12240. },
  12241. {
  12242. name: "Normal",
  12243. height: math.unit(8, "feet")
  12244. },
  12245. {
  12246. name: "Macro",
  12247. height: math.unit(200, "feet"),
  12248. default: true
  12249. },
  12250. {
  12251. name: "Megamacro",
  12252. height: math.unit(50, "miles")
  12253. },
  12254. ]
  12255. ))
  12256. characterMakers.push(() => makeCharacter(
  12257. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12258. {
  12259. front: {
  12260. height: math.unit(11, "feet"),
  12261. weight: math.unit(1400, "lb"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/cordite/front.svg",
  12265. extra: 1919/1827,
  12266. bottom: 40/1959
  12267. }
  12268. },
  12269. side: {
  12270. height: math.unit(11, "feet"),
  12271. weight: math.unit(1400, "lb"),
  12272. name: "Side",
  12273. image: {
  12274. source: "./media/characters/cordite/side.svg",
  12275. extra: 1908/1793,
  12276. bottom: 38/1946
  12277. }
  12278. },
  12279. back: {
  12280. height: math.unit(11, "feet"),
  12281. weight: math.unit(1400, "lb"),
  12282. name: "Back",
  12283. image: {
  12284. source: "./media/characters/cordite/back.svg",
  12285. extra: 1938/1837,
  12286. bottom: 10/1948
  12287. }
  12288. },
  12289. feral: {
  12290. height: math.unit(2, "feet"),
  12291. weight: math.unit(90, "lb"),
  12292. name: "Feral",
  12293. image: {
  12294. source: "./media/characters/cordite/feral.svg",
  12295. extra: 1260 / 755,
  12296. bottom: 0.05
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(11, "feet"),
  12304. default: true
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12310. {
  12311. front: {
  12312. height: math.unit(6, "feet"),
  12313. weight: math.unit(150, "lb"),
  12314. name: "Front",
  12315. image: {
  12316. source: "./media/characters/pianostrong/front.svg",
  12317. extra: 6577 / 6254,
  12318. bottom: 0.02
  12319. }
  12320. },
  12321. side: {
  12322. height: math.unit(6, "feet"),
  12323. weight: math.unit(150, "lb"),
  12324. name: "Side",
  12325. image: {
  12326. source: "./media/characters/pianostrong/side.svg",
  12327. extra: 6106 / 5730
  12328. }
  12329. },
  12330. back: {
  12331. height: math.unit(6, "feet"),
  12332. weight: math.unit(150, "lb"),
  12333. name: "Back",
  12334. image: {
  12335. source: "./media/characters/pianostrong/back.svg",
  12336. extra: 6085 / 5733,
  12337. bottom: 0.01
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(100, "feet")
  12345. },
  12346. {
  12347. name: "Macro+",
  12348. height: math.unit(300, "feet"),
  12349. default: true
  12350. },
  12351. {
  12352. name: "Macro++",
  12353. height: math.unit(1000, "feet")
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(150, "lb"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/kona/front.svg",
  12366. extra: 2960 / 2629,
  12367. bottom: 0.005
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Normal",
  12374. height: math.unit(11 + 8 / 12, "feet")
  12375. },
  12376. {
  12377. name: "Macro",
  12378. height: math.unit(850, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Macro+",
  12383. height: math.unit(1.5, "km"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Megamacro",
  12388. height: math.unit(80, "miles")
  12389. },
  12390. {
  12391. name: "Gigamacro",
  12392. height: math.unit(3500, "miles")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12398. {
  12399. side: {
  12400. height: math.unit(1.9, "meters"),
  12401. weight: math.unit(326, "kg"),
  12402. name: "Side",
  12403. image: {
  12404. source: "./media/characters/levi/side.svg",
  12405. extra: 1704 / 1334,
  12406. bottom: 0.02
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Normal",
  12413. height: math.unit(1.9, "meters"),
  12414. default: true
  12415. },
  12416. {
  12417. name: "Macro",
  12418. height: math.unit(20, "meters")
  12419. },
  12420. {
  12421. name: "Macro+",
  12422. height: math.unit(200, "meters")
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(2, "km")
  12427. },
  12428. {
  12429. name: "Megamacro+",
  12430. height: math.unit(20, "km")
  12431. },
  12432. {
  12433. name: "Gigamacro",
  12434. height: math.unit(2500, "km")
  12435. },
  12436. {
  12437. name: "Gigamacro+",
  12438. height: math.unit(120000, "km")
  12439. },
  12440. {
  12441. name: "Teramacro",
  12442. height: math.unit(7.77e6, "km")
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12448. {
  12449. front: {
  12450. height: math.unit(6 + 4/12, "feet"),
  12451. weight: math.unit(190, "lb"),
  12452. name: "Front",
  12453. image: {
  12454. source: "./media/characters/bmc/front.svg",
  12455. extra: 1626/1472,
  12456. bottom: 79/1705
  12457. }
  12458. },
  12459. back: {
  12460. height: math.unit(6 + 4/12, "feet"),
  12461. weight: math.unit(190, "lb"),
  12462. name: "Back",
  12463. image: {
  12464. source: "./media/characters/bmc/back.svg",
  12465. extra: 1640/1479,
  12466. bottom: 45/1685
  12467. }
  12468. },
  12469. frontArmor: {
  12470. height: math.unit(6 + 4/12, "feet"),
  12471. weight: math.unit(190, "lb"),
  12472. name: "Front-armor",
  12473. image: {
  12474. source: "./media/characters/bmc/front-armor.svg",
  12475. extra: 1538/1468,
  12476. bottom: 79/1617
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Human-sized",
  12483. height: math.unit(6 + 4 / 12, "feet")
  12484. },
  12485. {
  12486. name: "Interactive Size",
  12487. height: math.unit(25, "feet")
  12488. },
  12489. {
  12490. name: "Small",
  12491. height: math.unit(250, "feet")
  12492. },
  12493. {
  12494. name: "Normal",
  12495. height: math.unit(1250, "feet"),
  12496. default: true
  12497. },
  12498. {
  12499. name: "Good Day",
  12500. height: math.unit(88, "miles")
  12501. },
  12502. {
  12503. name: "Largest Measured Size",
  12504. height: math.unit(105.960, "galaxies")
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12510. {
  12511. front: {
  12512. height: math.unit(20, "feet"),
  12513. weight: math.unit(2016, "kg"),
  12514. name: "Front",
  12515. image: {
  12516. source: "./media/characters/sven-the-kaiju/front.svg",
  12517. extra: 1277/1250,
  12518. bottom: 35/1312
  12519. }
  12520. },
  12521. mouth: {
  12522. height: math.unit(1.85, "feet"),
  12523. name: "Mouth",
  12524. image: {
  12525. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Fairy",
  12532. height: math.unit(6, "inches")
  12533. },
  12534. {
  12535. name: "Normal",
  12536. height: math.unit(20, "feet"),
  12537. default: true
  12538. },
  12539. {
  12540. name: "Rampage",
  12541. height: math.unit(200, "feet")
  12542. },
  12543. {
  12544. name: "Archfey Forest Guardian",
  12545. height: math.unit(1, "mile")
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(4, "meters"),
  12554. weight: math.unit(2, "tons"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/marik/front.svg",
  12558. extra: 1057 / 1003,
  12559. bottom: 0.08
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Normal",
  12566. height: math.unit(4, "meters"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Macro",
  12571. height: math.unit(20, "meters")
  12572. },
  12573. {
  12574. name: "Megamacro",
  12575. height: math.unit(50, "km")
  12576. },
  12577. {
  12578. name: "Gigamacro",
  12579. height: math.unit(100, "km")
  12580. },
  12581. {
  12582. name: "Alpha Macro",
  12583. height: math.unit(7.88e7, "yottameters")
  12584. },
  12585. ]
  12586. ))
  12587. characterMakers.push(() => makeCharacter(
  12588. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12589. {
  12590. front: {
  12591. height: math.unit(6, "feet"),
  12592. weight: math.unit(110, "lb"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/mel/front.svg",
  12596. extra: 736 / 617,
  12597. bottom: 0.017
  12598. }
  12599. },
  12600. },
  12601. [
  12602. {
  12603. name: "Pico",
  12604. height: math.unit(3, "pm")
  12605. },
  12606. {
  12607. name: "Nano",
  12608. height: math.unit(3, "nm")
  12609. },
  12610. {
  12611. name: "Micro",
  12612. height: math.unit(0.3, "mm"),
  12613. default: true
  12614. },
  12615. {
  12616. name: "Micro+",
  12617. height: math.unit(3, "mm")
  12618. },
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(5 + 10.5 / 12, "feet")
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12627. {
  12628. kaiju: {
  12629. height: math.unit(1.75, "meters"),
  12630. weight: math.unit(55, "kg"),
  12631. name: "Kaiju",
  12632. image: {
  12633. source: "./media/characters/lykonous/kaiju.svg",
  12634. extra: 1055 / 946,
  12635. bottom: 0.135
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Normal",
  12642. height: math.unit(2.5, "meters"),
  12643. default: true
  12644. },
  12645. {
  12646. name: "Kaiju Dragon",
  12647. height: math.unit(60, "meters")
  12648. },
  12649. {
  12650. name: "Mega Kaiju",
  12651. height: math.unit(120, "km")
  12652. },
  12653. {
  12654. name: "Giga Kaiju",
  12655. height: math.unit(200, "megameters")
  12656. },
  12657. {
  12658. name: "Terra Kaiju",
  12659. height: math.unit(400, "gigameters")
  12660. },
  12661. {
  12662. name: "Kaiju Dragon God",
  12663. height: math.unit(13000, "exaparsecs")
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(6, "feet"),
  12672. weight: math.unit(150, "lb"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/blü/front.svg",
  12676. extra: 1883 / 1564,
  12677. bottom: 0.031
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Normal",
  12684. height: math.unit(13, "feet"),
  12685. default: true
  12686. },
  12687. {
  12688. name: "Big Boi",
  12689. height: math.unit(150, "meters")
  12690. },
  12691. {
  12692. name: "Mini Stomper",
  12693. height: math.unit(300, "meters")
  12694. },
  12695. {
  12696. name: "Macro",
  12697. height: math.unit(1000, "meters")
  12698. },
  12699. {
  12700. name: "Megamacro",
  12701. height: math.unit(11000, "meters")
  12702. },
  12703. {
  12704. name: "Gigamacro",
  12705. height: math.unit(11000, "km")
  12706. },
  12707. {
  12708. name: "Teramacro",
  12709. height: math.unit(420000, "km")
  12710. },
  12711. {
  12712. name: "Examacro",
  12713. height: math.unit(120, "parsecs")
  12714. },
  12715. {
  12716. name: "God Tho",
  12717. height: math.unit(98000000000, "parsecs")
  12718. },
  12719. ]
  12720. ))
  12721. characterMakers.push(() => makeCharacter(
  12722. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12723. {
  12724. taurFront: {
  12725. height: math.unit(6, "feet"),
  12726. weight: math.unit(200, "lb"),
  12727. name: "Taur (Front)",
  12728. image: {
  12729. source: "./media/characters/scales/taur-front.svg",
  12730. extra: 1,
  12731. bottom: 0.05
  12732. }
  12733. },
  12734. taurBack: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(200, "lb"),
  12737. name: "Taur (Back)",
  12738. image: {
  12739. source: "./media/characters/scales/taur-back.svg",
  12740. extra: 1,
  12741. bottom: 0.08
  12742. }
  12743. },
  12744. anthro: {
  12745. height: math.unit(6 * 7 / 12, "feet"),
  12746. weight: math.unit(100, "lb"),
  12747. name: "Anthro",
  12748. image: {
  12749. source: "./media/characters/scales/anthro.svg",
  12750. extra: 1,
  12751. bottom: 0.06
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(12, "feet"),
  12759. default: true
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6, "feet"),
  12768. weight: math.unit(150, "lb"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/koragos/front.svg",
  12772. extra: 841 / 794,
  12773. bottom: 0.035
  12774. }
  12775. },
  12776. back: {
  12777. height: math.unit(6, "feet"),
  12778. weight: math.unit(150, "lb"),
  12779. name: "Back",
  12780. image: {
  12781. source: "./media/characters/koragos/back.svg",
  12782. extra: 841 / 810,
  12783. bottom: 0.022
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Normal",
  12790. height: math.unit(6 + 11 / 12, "feet"),
  12791. default: true
  12792. },
  12793. {
  12794. name: "Macro",
  12795. height: math.unit(490, "feet")
  12796. },
  12797. {
  12798. name: "Megamacro",
  12799. height: math.unit(10, "miles")
  12800. },
  12801. {
  12802. name: "Gigamacro",
  12803. height: math.unit(50, "miles")
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12809. {
  12810. front: {
  12811. height: math.unit(6, "feet"),
  12812. weight: math.unit(250, "lb"),
  12813. name: "Front",
  12814. image: {
  12815. source: "./media/characters/xylrem/front.svg",
  12816. extra: 3323 / 3050,
  12817. bottom: 0.065
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Micro",
  12824. height: math.unit(4, "feet")
  12825. },
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(16, "feet"),
  12829. default: true
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(2720, "feet")
  12834. },
  12835. {
  12836. name: "Megamacro",
  12837. height: math.unit(25000, "miles")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(8, "feet"),
  12846. weight: math.unit(250, "kg"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/ikideru/front.svg",
  12850. extra: 930 / 870,
  12851. bottom: 0.087
  12852. }
  12853. },
  12854. back: {
  12855. height: math.unit(8, "feet"),
  12856. weight: math.unit(250, "kg"),
  12857. name: "Back",
  12858. image: {
  12859. source: "./media/characters/ikideru/back.svg",
  12860. extra: 919 / 852,
  12861. bottom: 0.055
  12862. }
  12863. },
  12864. },
  12865. [
  12866. {
  12867. name: "Rare",
  12868. height: math.unit(8, "feet"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Playful Loom",
  12873. height: math.unit(80, "feet")
  12874. },
  12875. {
  12876. name: "City Leaner",
  12877. height: math.unit(230, "feet")
  12878. },
  12879. {
  12880. name: "Megamacro",
  12881. height: math.unit(2500, "feet")
  12882. },
  12883. {
  12884. name: "Gigamacro",
  12885. height: math.unit(26400, "feet")
  12886. },
  12887. {
  12888. name: "Tectonic Shifter",
  12889. height: math.unit(1.7, "megameters")
  12890. },
  12891. {
  12892. name: "Planet Carer",
  12893. height: math.unit(21, "megameters")
  12894. },
  12895. {
  12896. name: "God",
  12897. height: math.unit(11157.22, "parsecs")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(120, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/neo/front.svg"
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Micro",
  12916. height: math.unit(2, "inches"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Human Size",
  12921. height: math.unit(5 + 8 / 12, "feet")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(13 + 10 / 12, "feet"),
  12930. weight: math.unit(5320, "lb"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/chauncey-chantz/front.svg",
  12934. extra: 1587 / 1435,
  12935. bottom: 0.02
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Normal",
  12942. height: math.unit(13 + 10 / 12, "feet"),
  12943. default: true
  12944. },
  12945. {
  12946. name: "Macro",
  12947. height: math.unit(45, "feet")
  12948. },
  12949. {
  12950. name: "Megamacro",
  12951. height: math.unit(250, "miles")
  12952. },
  12953. {
  12954. name: "Planetary",
  12955. height: math.unit(10000, "miles")
  12956. },
  12957. {
  12958. name: "Galactic",
  12959. height: math.unit(40000, "parsecs")
  12960. },
  12961. {
  12962. name: "Universal",
  12963. height: math.unit(1, "yottameter")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(150, "lb"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/epifox/front.svg",
  12976. extra: 1,
  12977. bottom: 0.075
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Micro",
  12984. height: math.unit(6, "inches")
  12985. },
  12986. {
  12987. name: "Normal",
  12988. height: math.unit(12, "feet"),
  12989. default: true
  12990. },
  12991. {
  12992. name: "Macro",
  12993. height: math.unit(3810, "feet")
  12994. },
  12995. {
  12996. name: "Megamacro",
  12997. height: math.unit(500, "miles")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13003. {
  13004. front: {
  13005. height: math.unit(1.8796, "m"),
  13006. weight: math.unit(230, "lb"),
  13007. name: "Front",
  13008. image: {
  13009. source: "./media/characters/colin-t/front.svg",
  13010. extra: 1272 / 1193,
  13011. bottom: 0.07
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Micro",
  13018. height: math.unit(0.571, "meters")
  13019. },
  13020. {
  13021. name: "Normal",
  13022. height: math.unit(1.8796, "meters"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Tall",
  13027. height: math.unit(4, "meters")
  13028. },
  13029. {
  13030. name: "Macro",
  13031. height: math.unit(67.241, "meters")
  13032. },
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(371.856, "meters")
  13036. },
  13037. {
  13038. name: "Planetary",
  13039. height: math.unit(12631.5689, "km")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(1.85, "meters"),
  13048. weight: math.unit(80, "kg"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/matvei/front.svg",
  13052. extra: 614 / 594,
  13053. bottom: 0.01
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Normal",
  13060. height: math.unit(1.85, "meters"),
  13061. default: true
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13067. {
  13068. front: {
  13069. height: math.unit(5 + 9 / 12, "feet"),
  13070. weight: math.unit(70, "lb"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/quincy/front.svg",
  13074. extra: 3041 / 2751
  13075. }
  13076. },
  13077. back: {
  13078. height: math.unit(5 + 9 / 12, "feet"),
  13079. weight: math.unit(70, "lb"),
  13080. name: "Back",
  13081. image: {
  13082. source: "./media/characters/quincy/back.svg",
  13083. extra: 3041 / 2751
  13084. }
  13085. },
  13086. flying: {
  13087. height: math.unit(5 + 4 / 12, "feet"),
  13088. weight: math.unit(70, "lb"),
  13089. name: "Flying",
  13090. image: {
  13091. source: "./media/characters/quincy/flying.svg",
  13092. extra: 1044 / 930
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Micro",
  13099. height: math.unit(3, "cm")
  13100. },
  13101. {
  13102. name: "Normal",
  13103. height: math.unit(5 + 9 / 12, "feet")
  13104. },
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(200, "meters"),
  13108. default: true
  13109. },
  13110. {
  13111. name: "Megamacro",
  13112. height: math.unit(1000, "meters")
  13113. },
  13114. ]
  13115. ))
  13116. characterMakers.push(() => makeCharacter(
  13117. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13118. {
  13119. front: {
  13120. height: math.unit(3 + 11/12, "feet"),
  13121. weight: math.unit(50, "lb"),
  13122. name: "Front",
  13123. image: {
  13124. source: "./media/characters/vanrel/front.svg",
  13125. extra: 1104/949,
  13126. bottom: 52/1156
  13127. }
  13128. },
  13129. back: {
  13130. height: math.unit(3 + 11/12, "feet"),
  13131. weight: math.unit(50, "lb"),
  13132. name: "Back",
  13133. image: {
  13134. source: "./media/characters/vanrel/back.svg",
  13135. extra: 1119/976,
  13136. bottom: 37/1156
  13137. }
  13138. },
  13139. tome: {
  13140. height: math.unit(1.35, "feet"),
  13141. weight: math.unit(10, "lb"),
  13142. name: "Vanrel's Tome",
  13143. rename: true,
  13144. image: {
  13145. source: "./media/characters/vanrel/tome.svg"
  13146. }
  13147. },
  13148. beans: {
  13149. height: math.unit(0.89, "feet"),
  13150. name: "Beans",
  13151. image: {
  13152. source: "./media/characters/vanrel/beans.svg"
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Normal",
  13159. height: math.unit(3 + 11/12, "feet"),
  13160. default: true
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(7 + 5 / 12, "feet"),
  13169. name: "Front",
  13170. image: {
  13171. source: "./media/characters/kuiper-vanrel/front.svg",
  13172. extra: 1219/1169,
  13173. bottom: 69/1288
  13174. }
  13175. },
  13176. back: {
  13177. height: math.unit(7 + 5 / 12, "feet"),
  13178. name: "Back",
  13179. image: {
  13180. source: "./media/characters/kuiper-vanrel/back.svg",
  13181. extra: 1236/1193,
  13182. bottom: 27/1263
  13183. }
  13184. },
  13185. foot: {
  13186. height: math.unit(0.55, "meters"),
  13187. name: "Foot",
  13188. image: {
  13189. source: "./media/characters/kuiper-vanrel/foot.svg",
  13190. }
  13191. },
  13192. battle: {
  13193. height: math.unit(6.824, "feet"),
  13194. name: "Battle",
  13195. image: {
  13196. source: "./media/characters/kuiper-vanrel/battle.svg",
  13197. extra: 1466 / 1327,
  13198. bottom: 29 / 1492.5
  13199. }
  13200. },
  13201. meerkui: {
  13202. height: math.unit(18, "inches"),
  13203. name: "Meerkui",
  13204. image: {
  13205. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13206. extra: 1354/1289,
  13207. bottom: 69/1423
  13208. }
  13209. },
  13210. },
  13211. [
  13212. {
  13213. name: "Normal",
  13214. height: math.unit(7 + 5 / 12, "feet"),
  13215. default: true
  13216. },
  13217. ]
  13218. ))
  13219. characterMakers.push(() => makeCharacter(
  13220. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13221. {
  13222. front: {
  13223. height: math.unit(8 + 5 / 12, "feet"),
  13224. name: "Front",
  13225. image: {
  13226. source: "./media/characters/keset-vanrel/front.svg",
  13227. extra: 1231/1148,
  13228. bottom: 82/1313
  13229. }
  13230. },
  13231. back: {
  13232. height: math.unit(8 + 5 / 12, "feet"),
  13233. name: "Back",
  13234. image: {
  13235. source: "./media/characters/keset-vanrel/back.svg",
  13236. extra: 1240/1174,
  13237. bottom: 33/1273
  13238. }
  13239. },
  13240. hand: {
  13241. height: math.unit(0.6, "meters"),
  13242. name: "Hand",
  13243. image: {
  13244. source: "./media/characters/keset-vanrel/hand.svg"
  13245. }
  13246. },
  13247. foot: {
  13248. height: math.unit(0.94978, "meters"),
  13249. name: "Foot",
  13250. image: {
  13251. source: "./media/characters/keset-vanrel/foot.svg"
  13252. }
  13253. },
  13254. battle: {
  13255. height: math.unit(7.408, "feet"),
  13256. name: "Battle",
  13257. image: {
  13258. source: "./media/characters/keset-vanrel/battle.svg",
  13259. extra: 1890 / 1386,
  13260. bottom: 73.28 / 1970
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Normal",
  13267. height: math.unit(8 + 5 / 12, "feet"),
  13268. default: true
  13269. },
  13270. ]
  13271. ))
  13272. characterMakers.push(() => makeCharacter(
  13273. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13274. {
  13275. front: {
  13276. height: math.unit(6, "feet"),
  13277. weight: math.unit(150, "lb"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/neos/front.svg",
  13281. extra: 1696 / 992,
  13282. bottom: 0.14
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Normal",
  13289. height: math.unit(54, "cm"),
  13290. default: true
  13291. },
  13292. {
  13293. name: "Macro",
  13294. height: math.unit(100, "m")
  13295. },
  13296. {
  13297. name: "Megamacro",
  13298. height: math.unit(10, "km")
  13299. },
  13300. {
  13301. name: "Megamacro+",
  13302. height: math.unit(100, "km")
  13303. },
  13304. {
  13305. name: "Gigamacro",
  13306. height: math.unit(100, "Mm")
  13307. },
  13308. {
  13309. name: "Teramacro",
  13310. height: math.unit(100, "Gm")
  13311. },
  13312. {
  13313. name: "Examacro",
  13314. height: math.unit(100, "Em")
  13315. },
  13316. {
  13317. name: "Godly",
  13318. height: math.unit(10000, "Ym")
  13319. },
  13320. {
  13321. name: "Beyond Godly",
  13322. height: math.unit(25, "multiverses")
  13323. },
  13324. ]
  13325. ))
  13326. characterMakers.push(() => makeCharacter(
  13327. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13328. {
  13329. feminine: {
  13330. height: math.unit(5, "feet"),
  13331. weight: math.unit(100, "lb"),
  13332. name: "Feminine",
  13333. image: {
  13334. source: "./media/characters/sammy-mouse/feminine.svg",
  13335. extra: 2526 / 2425,
  13336. bottom: 0.123
  13337. }
  13338. },
  13339. masculine: {
  13340. height: math.unit(5, "feet"),
  13341. weight: math.unit(100, "lb"),
  13342. name: "Masculine",
  13343. image: {
  13344. source: "./media/characters/sammy-mouse/masculine.svg",
  13345. extra: 2526 / 2425,
  13346. bottom: 0.123
  13347. }
  13348. },
  13349. },
  13350. [
  13351. {
  13352. name: "Micro",
  13353. height: math.unit(5, "inches")
  13354. },
  13355. {
  13356. name: "Normal",
  13357. height: math.unit(5, "feet"),
  13358. default: true
  13359. },
  13360. {
  13361. name: "Macro",
  13362. height: math.unit(60, "feet")
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(4, "feet"),
  13371. weight: math.unit(50, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/kole/front.svg",
  13375. extra: 1423 / 1303,
  13376. bottom: 0.025
  13377. }
  13378. },
  13379. back: {
  13380. height: math.unit(4, "feet"),
  13381. weight: math.unit(50, "lb"),
  13382. name: "Back",
  13383. image: {
  13384. source: "./media/characters/kole/back.svg",
  13385. extra: 1426 / 1280,
  13386. bottom: 0.02
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Normal",
  13393. height: math.unit(4, "feet"),
  13394. default: true
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(2.5, "feet"),
  13403. weight: math.unit(32, "lb"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/rufran/front.svg",
  13407. extra: 1313/885,
  13408. bottom: 94/1407
  13409. }
  13410. },
  13411. side: {
  13412. height: math.unit(2.5, "feet"),
  13413. weight: math.unit(32, "lb"),
  13414. name: "Side",
  13415. image: {
  13416. source: "./media/characters/rufran/side.svg",
  13417. extra: 1109/852,
  13418. bottom: 118/1227
  13419. }
  13420. },
  13421. back: {
  13422. height: math.unit(2.5, "feet"),
  13423. weight: math.unit(32, "lb"),
  13424. name: "Back",
  13425. image: {
  13426. source: "./media/characters/rufran/back.svg",
  13427. extra: 1280/878,
  13428. bottom: 131/1411
  13429. }
  13430. },
  13431. mouth: {
  13432. height: math.unit(1.13, "feet"),
  13433. name: "Mouth",
  13434. image: {
  13435. source: "./media/characters/rufran/mouth.svg"
  13436. }
  13437. },
  13438. foot: {
  13439. height: math.unit(1.33, "feet"),
  13440. name: "Foot",
  13441. image: {
  13442. source: "./media/characters/rufran/foot.svg"
  13443. }
  13444. },
  13445. koboldFront: {
  13446. height: math.unit(2 + 6 / 12, "feet"),
  13447. weight: math.unit(20, "lb"),
  13448. name: "Front (Kobold)",
  13449. image: {
  13450. source: "./media/characters/rufran/kobold-front.svg",
  13451. extra: 2041 / 1839,
  13452. bottom: 0.055
  13453. }
  13454. },
  13455. koboldBack: {
  13456. height: math.unit(2 + 6 / 12, "feet"),
  13457. weight: math.unit(20, "lb"),
  13458. name: "Back (Kobold)",
  13459. image: {
  13460. source: "./media/characters/rufran/kobold-back.svg",
  13461. extra: 2054 / 1839,
  13462. bottom: 0.01
  13463. }
  13464. },
  13465. koboldHand: {
  13466. height: math.unit(0.2166, "meters"),
  13467. name: "Hand (Kobold)",
  13468. image: {
  13469. source: "./media/characters/rufran/kobold-hand.svg"
  13470. }
  13471. },
  13472. koboldFoot: {
  13473. height: math.unit(0.185, "meters"),
  13474. name: "Foot (Kobold)",
  13475. image: {
  13476. source: "./media/characters/rufran/kobold-foot.svg"
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Micro",
  13483. height: math.unit(1, "inch")
  13484. },
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(2 + 6 / 12, "feet"),
  13488. default: true
  13489. },
  13490. {
  13491. name: "Big",
  13492. height: math.unit(60, "feet")
  13493. },
  13494. {
  13495. name: "Macro",
  13496. height: math.unit(325, "feet")
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13502. {
  13503. front: {
  13504. height: math.unit(0.3, "meters"),
  13505. weight: math.unit(3.5, "kg"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/chip/front.svg",
  13509. extra: 748 / 674
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Micro",
  13516. height: math.unit(1, "inch"),
  13517. default: true
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13523. {
  13524. side: {
  13525. height: math.unit(2.3, "meters"),
  13526. weight: math.unit(3500, "lb"),
  13527. name: "Side",
  13528. image: {
  13529. source: "./media/characters/torvid/side.svg",
  13530. extra: 1972 / 722,
  13531. bottom: 0.035
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(2.3, "meters"),
  13539. default: true
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(2, "meters"),
  13548. weight: math.unit(150.5, "kg"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/susan/front.svg",
  13552. extra: 693 / 635,
  13553. bottom: 0.05
  13554. }
  13555. },
  13556. },
  13557. [
  13558. {
  13559. name: "Megamacro",
  13560. height: math.unit(505, "miles"),
  13561. default: true
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(6, "feet"),
  13570. weight: math.unit(150, "lb"),
  13571. name: "Front",
  13572. image: {
  13573. source: "./media/characters/raindrops/front.svg",
  13574. extra: 2655 / 2461,
  13575. bottom: 49 / 2705
  13576. }
  13577. },
  13578. back: {
  13579. height: math.unit(6, "feet"),
  13580. weight: math.unit(150, "lb"),
  13581. name: "Back",
  13582. image: {
  13583. source: "./media/characters/raindrops/back.svg",
  13584. extra: 2574 / 2400,
  13585. bottom: 65 / 2634
  13586. }
  13587. },
  13588. },
  13589. [
  13590. {
  13591. name: "Micro",
  13592. height: math.unit(6, "inches")
  13593. },
  13594. {
  13595. name: "Normal",
  13596. height: math.unit(6 + 2 / 12, "feet")
  13597. },
  13598. {
  13599. name: "Macro",
  13600. height: math.unit(131, "feet"),
  13601. default: true
  13602. },
  13603. {
  13604. name: "Megamacro",
  13605. height: math.unit(15, "miles")
  13606. },
  13607. {
  13608. name: "Gigamacro",
  13609. height: math.unit(4000, "miles")
  13610. },
  13611. {
  13612. name: "Teramacro",
  13613. height: math.unit(315000, "miles")
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13619. {
  13620. front: {
  13621. height: math.unit(2.794, "meters"),
  13622. weight: math.unit(325, "kg"),
  13623. name: "Front",
  13624. image: {
  13625. source: "./media/characters/tezwa/front.svg",
  13626. extra: 2083 / 1906,
  13627. bottom: 0.031
  13628. }
  13629. },
  13630. foot: {
  13631. height: math.unit(0.687, "meters"),
  13632. name: "Foot",
  13633. image: {
  13634. source: "./media/characters/tezwa/foot.svg"
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Normal",
  13641. height: math.unit(9 + 2 / 12, "feet"),
  13642. default: true
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(58, "feet"),
  13651. weight: math.unit(89000, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/typhus/front.svg",
  13655. extra: 816 / 800,
  13656. bottom: 0.065
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Macro",
  13663. height: math.unit(58, "feet"),
  13664. default: true
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(12, "feet"),
  13673. weight: math.unit(6, "tonnes"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/lyra-von-wulf/front.svg",
  13677. extra: 1,
  13678. bottom: 0.10
  13679. }
  13680. },
  13681. frontMecha: {
  13682. height: math.unit(12, "feet"),
  13683. weight: math.unit(12, "tonnes"),
  13684. name: "Front (Mecha)",
  13685. image: {
  13686. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13687. extra: 1,
  13688. bottom: 0.042
  13689. }
  13690. },
  13691. maw: {
  13692. height: math.unit(2.2, "feet"),
  13693. name: "Maw",
  13694. image: {
  13695. source: "./media/characters/lyra-von-wulf/maw.svg"
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Normal",
  13702. height: math.unit(12, "feet"),
  13703. default: true
  13704. },
  13705. {
  13706. name: "Classic",
  13707. height: math.unit(50, "feet")
  13708. },
  13709. {
  13710. name: "Macro",
  13711. height: math.unit(500, "feet")
  13712. },
  13713. {
  13714. name: "Megamacro",
  13715. height: math.unit(1, "mile")
  13716. },
  13717. {
  13718. name: "Gigamacro",
  13719. height: math.unit(400, "miles")
  13720. },
  13721. {
  13722. name: "Teramacro",
  13723. height: math.unit(22000, "miles")
  13724. },
  13725. {
  13726. name: "Solarmacro",
  13727. height: math.unit(8600000, "miles")
  13728. },
  13729. {
  13730. name: "Galactic",
  13731. height: math.unit(1057000, "lightyears")
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(6 + 10 / 12, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/dixon/front.svg",
  13744. extra: 3361 / 3209,
  13745. bottom: 0.01
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Normal",
  13752. height: math.unit(6 + 10 / 12, "feet"),
  13753. default: true
  13754. },
  13755. {
  13756. name: "Big",
  13757. height: math.unit(12, "meters")
  13758. },
  13759. {
  13760. name: "Macro",
  13761. height: math.unit(500, "meters")
  13762. },
  13763. {
  13764. name: "Megamacro",
  13765. height: math.unit(2, "km")
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(185, "cm"),
  13774. weight: math.unit(68, "kg"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/kauko/front.svg",
  13778. extra: 1455 / 1421,
  13779. bottom: 0.03
  13780. }
  13781. },
  13782. back: {
  13783. height: math.unit(185, "cm"),
  13784. weight: math.unit(68, "kg"),
  13785. name: "Back",
  13786. image: {
  13787. source: "./media/characters/kauko/back.svg",
  13788. extra: 1455 / 1421,
  13789. bottom: 0.004
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(185, "cm"),
  13797. default: true
  13798. },
  13799. ]
  13800. ))
  13801. characterMakers.push(() => makeCharacter(
  13802. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13803. {
  13804. frontSfw: {
  13805. height: math.unit(5, "meters"),
  13806. weight: math.unit(4250, "lb"),
  13807. name: "Front",
  13808. image: {
  13809. source: "./media/characters/varg/front-sfw.svg",
  13810. extra: 1103/1010,
  13811. bottom: 50/1153
  13812. },
  13813. form: "anthro",
  13814. default: true
  13815. },
  13816. backSfw: {
  13817. height: math.unit(5, "meters"),
  13818. weight: math.unit(4250, "lb"),
  13819. name: "Back",
  13820. image: {
  13821. source: "./media/characters/varg/back-sfw.svg",
  13822. extra: 1038/1022,
  13823. bottom: 36/1074
  13824. },
  13825. form: "anthro"
  13826. },
  13827. frontNsfw: {
  13828. height: math.unit(5, "meters"),
  13829. weight: math.unit(4250, "lb"),
  13830. name: "Front (NSFW)",
  13831. image: {
  13832. source: "./media/characters/varg/front-nsfw.svg",
  13833. extra: 1103/1010,
  13834. bottom: 50/1153
  13835. },
  13836. form: "anthro"
  13837. },
  13838. sheath: {
  13839. height: math.unit(3.8, "feet"),
  13840. weight: math.unit(90, "kilograms"),
  13841. name: "Sheath",
  13842. image: {
  13843. source: "./media/characters/varg/sheath.svg"
  13844. },
  13845. form: "anthro"
  13846. },
  13847. dick: {
  13848. height: math.unit(4.6, "feet"),
  13849. weight: math.unit(451, "kilograms"),
  13850. name: "Dick",
  13851. image: {
  13852. source: "./media/characters/varg/dick.svg"
  13853. },
  13854. form: "anthro"
  13855. },
  13856. feralSfw: {
  13857. height: math.unit(5, "meters"),
  13858. weight: math.unit(100000, "lb"),
  13859. name: "Side",
  13860. image: {
  13861. source: "./media/characters/varg/feral-sfw.svg",
  13862. extra: 1065/511,
  13863. bottom: 211/1276
  13864. },
  13865. form: "feral",
  13866. default: true
  13867. },
  13868. feralNsfw: {
  13869. height: math.unit(5, "meters"),
  13870. weight: math.unit(100000, "lb"),
  13871. name: "Side (NSFW)",
  13872. image: {
  13873. source: "./media/characters/varg/feral-nsfw.svg",
  13874. extra: 1065/511,
  13875. bottom: 211/1276
  13876. },
  13877. form: "feral",
  13878. },
  13879. feralSheath: {
  13880. height: math.unit(9.8, "feet"),
  13881. weight: math.unit(2000, "kilograms"),
  13882. name: "Sheath",
  13883. image: {
  13884. source: "./media/characters/varg/sheath.svg"
  13885. },
  13886. form: "feral"
  13887. },
  13888. feralDick: {
  13889. height: math.unit(13.11, "feet"),
  13890. weight: math.unit(10440, "kilograms"),
  13891. name: "Dick",
  13892. image: {
  13893. source: "./media/characters/varg/dick.svg"
  13894. },
  13895. form: "feral"
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Normal",
  13901. height: math.unit(5, "meters"),
  13902. form: "anthro"
  13903. },
  13904. {
  13905. name: "Macro",
  13906. height: math.unit(200, "meters"),
  13907. form: "anthro"
  13908. },
  13909. {
  13910. name: "Megamacro",
  13911. height: math.unit(20, "kilometers"),
  13912. form: "anthro"
  13913. },
  13914. {
  13915. name: "True Size",
  13916. height: math.unit(211, "km"),
  13917. form: "anthro",
  13918. default: true
  13919. },
  13920. {
  13921. name: "Gigamacro",
  13922. height: math.unit(1000, "km"),
  13923. form: "anthro"
  13924. },
  13925. {
  13926. name: "Gigamacro+",
  13927. height: math.unit(8000, "km"),
  13928. form: "anthro"
  13929. },
  13930. {
  13931. name: "Teramacro",
  13932. height: math.unit(1000000, "km"),
  13933. form: "anthro"
  13934. },
  13935. {
  13936. name: "Normal",
  13937. height: math.unit(5, "meters"),
  13938. form: "feral"
  13939. },
  13940. {
  13941. name: "Macro",
  13942. height: math.unit(200, "meters"),
  13943. form: "feral"
  13944. },
  13945. {
  13946. name: "Megamacro",
  13947. height: math.unit(20, "kilometers"),
  13948. form: "feral"
  13949. },
  13950. {
  13951. name: "True Size",
  13952. height: math.unit(211, "km"),
  13953. form: "feral",
  13954. default: true
  13955. },
  13956. {
  13957. name: "Gigamacro",
  13958. height: math.unit(1000, "km"),
  13959. form: "feral"
  13960. },
  13961. {
  13962. name: "Gigamacro+",
  13963. height: math.unit(8000, "km"),
  13964. form: "feral"
  13965. },
  13966. {
  13967. name: "Teramacro",
  13968. height: math.unit(1000000, "km"),
  13969. form: "feral"
  13970. },
  13971. ],
  13972. {
  13973. "anthro": {
  13974. name: "Anthro",
  13975. default: true
  13976. },
  13977. "feral": {
  13978. name: "Feral",
  13979. },
  13980. }
  13981. ))
  13982. characterMakers.push(() => makeCharacter(
  13983. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13984. {
  13985. front: {
  13986. height: math.unit(7 + 7 / 12, "feet"),
  13987. weight: math.unit(267, "lb"),
  13988. name: "Front",
  13989. image: {
  13990. source: "./media/characters/dayza/front.svg",
  13991. extra: 1262 / 1200,
  13992. bottom: 0.035
  13993. }
  13994. },
  13995. side: {
  13996. height: math.unit(7 + 7 / 12, "feet"),
  13997. weight: math.unit(267, "lb"),
  13998. name: "Side",
  13999. image: {
  14000. source: "./media/characters/dayza/side.svg",
  14001. extra: 1295 / 1245,
  14002. bottom: 0.05
  14003. }
  14004. },
  14005. back: {
  14006. height: math.unit(7 + 7 / 12, "feet"),
  14007. weight: math.unit(267, "lb"),
  14008. name: "Back",
  14009. image: {
  14010. source: "./media/characters/dayza/back.svg",
  14011. extra: 1241 / 1170
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(7 + 7 / 12, "feet"),
  14019. default: true
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(155, "feet")
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14029. {
  14030. front: {
  14031. height: math.unit(6 + 5 / 12, "feet"),
  14032. weight: math.unit(160, "lb"),
  14033. name: "Front",
  14034. image: {
  14035. source: "./media/characters/xanthos/front.svg",
  14036. extra: 1,
  14037. bottom: 0.04
  14038. }
  14039. },
  14040. back: {
  14041. height: math.unit(6 + 5 / 12, "feet"),
  14042. weight: math.unit(160, "lb"),
  14043. name: "Back",
  14044. image: {
  14045. source: "./media/characters/xanthos/back.svg",
  14046. extra: 1,
  14047. bottom: 0.03
  14048. }
  14049. },
  14050. hand: {
  14051. height: math.unit(0.928, "feet"),
  14052. name: "Hand",
  14053. image: {
  14054. source: "./media/characters/xanthos/hand.svg"
  14055. }
  14056. },
  14057. foot: {
  14058. height: math.unit(1.286, "feet"),
  14059. name: "Foot",
  14060. image: {
  14061. source: "./media/characters/xanthos/foot.svg"
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Normal",
  14068. height: math.unit(6 + 5 / 12, "feet"),
  14069. default: true
  14070. },
  14071. {
  14072. name: "Normal+",
  14073. height: math.unit(6, "meters")
  14074. },
  14075. {
  14076. name: "Macro",
  14077. height: math.unit(40, "feet")
  14078. },
  14079. {
  14080. name: "Macro+",
  14081. height: math.unit(200, "meters")
  14082. },
  14083. {
  14084. name: "Megamacro",
  14085. height: math.unit(20, "km")
  14086. },
  14087. {
  14088. name: "Megamacro+",
  14089. height: math.unit(100, "km")
  14090. },
  14091. {
  14092. name: "Gigamacro",
  14093. height: math.unit(200, "megameters")
  14094. },
  14095. {
  14096. name: "Gigamacro+",
  14097. height: math.unit(1.5, "gigameters")
  14098. },
  14099. ]
  14100. ))
  14101. characterMakers.push(() => makeCharacter(
  14102. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14103. {
  14104. front: {
  14105. height: math.unit(6 + 3 / 12, "feet"),
  14106. weight: math.unit(215, "lb"),
  14107. name: "Front",
  14108. image: {
  14109. source: "./media/characters/grynn/front.svg",
  14110. extra: 4627 / 4209,
  14111. bottom: 0.047
  14112. }
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Micro",
  14118. height: math.unit(6, "inches")
  14119. },
  14120. {
  14121. name: "Normal",
  14122. height: math.unit(6 + 3 / 12, "feet"),
  14123. default: true
  14124. },
  14125. {
  14126. name: "Big",
  14127. height: math.unit(104, "feet")
  14128. },
  14129. {
  14130. name: "Macro",
  14131. height: math.unit(944, "feet")
  14132. },
  14133. {
  14134. name: "Macro+",
  14135. height: math.unit(9480, "feet")
  14136. },
  14137. {
  14138. name: "Megamacro",
  14139. height: math.unit(78752, "feet")
  14140. },
  14141. {
  14142. name: "Megamacro+",
  14143. height: math.unit(630128, "feet")
  14144. },
  14145. {
  14146. name: "Megamacro++",
  14147. height: math.unit(3150695, "feet")
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14153. {
  14154. front: {
  14155. height: math.unit(7 + 5 / 12, "feet"),
  14156. weight: math.unit(450, "lb"),
  14157. name: "Front",
  14158. image: {
  14159. source: "./media/characters/mocha-aura/front.svg",
  14160. extra: 1907 / 1817,
  14161. bottom: 0.04
  14162. }
  14163. },
  14164. back: {
  14165. height: math.unit(7 + 5 / 12, "feet"),
  14166. weight: math.unit(450, "lb"),
  14167. name: "Back",
  14168. image: {
  14169. source: "./media/characters/mocha-aura/back.svg",
  14170. extra: 1900 / 1825,
  14171. bottom: 0.045
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Nano",
  14178. height: math.unit(1, "nm")
  14179. },
  14180. {
  14181. name: "Megamicro",
  14182. height: math.unit(1, "mm")
  14183. },
  14184. {
  14185. name: "Micro",
  14186. height: math.unit(3, "inches")
  14187. },
  14188. {
  14189. name: "Normal",
  14190. height: math.unit(7 + 5 / 12, "feet"),
  14191. default: true
  14192. },
  14193. {
  14194. name: "Macro",
  14195. height: math.unit(30, "feet")
  14196. },
  14197. {
  14198. name: "Megamacro",
  14199. height: math.unit(3500, "feet")
  14200. },
  14201. {
  14202. name: "Teramacro",
  14203. height: math.unit(500000, "miles")
  14204. },
  14205. {
  14206. name: "Petamacro",
  14207. height: math.unit(50000000000000000, "parsecs")
  14208. },
  14209. ]
  14210. ))
  14211. characterMakers.push(() => makeCharacter(
  14212. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14213. {
  14214. front: {
  14215. height: math.unit(6, "feet"),
  14216. weight: math.unit(150, "lb"),
  14217. name: "Front",
  14218. image: {
  14219. source: "./media/characters/ilisha-devya/front.svg",
  14220. extra: 1053/1049,
  14221. bottom: 270/1323
  14222. }
  14223. },
  14224. back: {
  14225. height: math.unit(6, "feet"),
  14226. weight: math.unit(150, "lb"),
  14227. name: "Back",
  14228. image: {
  14229. source: "./media/characters/ilisha-devya/back.svg",
  14230. extra: 1131/1128,
  14231. bottom: 39/1170
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(500, "feet"),
  14239. default: true
  14240. },
  14241. {
  14242. name: "Megamacro",
  14243. height: math.unit(10, "miles")
  14244. },
  14245. {
  14246. name: "Gigamacro",
  14247. height: math.unit(100000, "miles")
  14248. },
  14249. {
  14250. name: "Examacro",
  14251. height: math.unit(1e9, "lightyears")
  14252. },
  14253. {
  14254. name: "Omniversal",
  14255. height: math.unit(1e33, "lightyears")
  14256. },
  14257. {
  14258. name: "Beyond Infinite",
  14259. height: math.unit(1e100, "lightyears")
  14260. },
  14261. ]
  14262. ))
  14263. characterMakers.push(() => makeCharacter(
  14264. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14265. {
  14266. Side: {
  14267. height: math.unit(6, "feet"),
  14268. weight: math.unit(150, "lb"),
  14269. name: "Side",
  14270. image: {
  14271. source: "./media/characters/mira/side.svg",
  14272. extra: 900 / 799,
  14273. bottom: 0.02
  14274. }
  14275. },
  14276. },
  14277. [
  14278. {
  14279. name: "Human Size",
  14280. height: math.unit(6, "feet")
  14281. },
  14282. {
  14283. name: "Macro",
  14284. height: math.unit(100, "feet"),
  14285. default: true
  14286. },
  14287. {
  14288. name: "Megamacro",
  14289. height: math.unit(10, "miles")
  14290. },
  14291. {
  14292. name: "Gigamacro",
  14293. height: math.unit(25000, "miles")
  14294. },
  14295. {
  14296. name: "Teramacro",
  14297. height: math.unit(300, "AU")
  14298. },
  14299. {
  14300. name: "Full Size",
  14301. height: math.unit(4.5e10, "lightyears")
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/holly/front.svg",
  14314. extra: 639 / 606
  14315. }
  14316. },
  14317. back: {
  14318. height: math.unit(6, "feet"),
  14319. weight: math.unit(150, "lb"),
  14320. name: "Back",
  14321. image: {
  14322. source: "./media/characters/holly/back.svg",
  14323. extra: 623 / 598
  14324. }
  14325. },
  14326. frontWorking: {
  14327. height: math.unit(6, "feet"),
  14328. weight: math.unit(150, "lb"),
  14329. name: "Front (Working)",
  14330. image: {
  14331. source: "./media/characters/holly/front-working.svg",
  14332. extra: 607 / 577,
  14333. bottom: 0.048
  14334. }
  14335. },
  14336. },
  14337. [
  14338. {
  14339. name: "Normal",
  14340. height: math.unit(12 + 3 / 12, "feet"),
  14341. default: true
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(6, "feet"),
  14350. weight: math.unit(150, "lb"),
  14351. name: "Front",
  14352. image: {
  14353. source: "./media/characters/porter/front.svg",
  14354. extra: 1,
  14355. bottom: 0.01
  14356. }
  14357. },
  14358. frontRobes: {
  14359. height: math.unit(6, "feet"),
  14360. weight: math.unit(150, "lb"),
  14361. name: "Front (Robes)",
  14362. image: {
  14363. source: "./media/characters/porter/front-robes.svg",
  14364. extra: 1.01,
  14365. bottom: 0.01
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Normal",
  14372. height: math.unit(11 + 9 / 12, "feet"),
  14373. default: true
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14379. {
  14380. legendary: {
  14381. height: math.unit(6, "feet"),
  14382. weight: math.unit(150, "lb"),
  14383. name: "Legendary",
  14384. image: {
  14385. source: "./media/characters/lucy/legendary.svg",
  14386. extra: 1355 / 1100,
  14387. bottom: 0.045
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Legendary",
  14394. height: math.unit(86882 * 2, "miles"),
  14395. default: true
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(6, "feet"),
  14404. weight: math.unit(150, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/drusilla/front.svg",
  14408. extra: 678 / 635,
  14409. bottom: 0.03
  14410. }
  14411. },
  14412. back: {
  14413. height: math.unit(6, "feet"),
  14414. weight: math.unit(150, "lb"),
  14415. name: "Back",
  14416. image: {
  14417. source: "./media/characters/drusilla/back.svg",
  14418. extra: 678 / 635,
  14419. bottom: 0.005
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "Macro",
  14426. height: math.unit(100, "feet")
  14427. },
  14428. {
  14429. name: "Canon Height",
  14430. height: math.unit(2000, "feet"),
  14431. default: true
  14432. },
  14433. ]
  14434. ))
  14435. characterMakers.push(() => makeCharacter(
  14436. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14437. {
  14438. front: {
  14439. height: math.unit(6, "feet"),
  14440. weight: math.unit(180, "lb"),
  14441. name: "Front",
  14442. image: {
  14443. source: "./media/characters/renard-thatch/front.svg",
  14444. extra: 2411 / 2275,
  14445. bottom: 0.01
  14446. }
  14447. },
  14448. frontPosing: {
  14449. height: math.unit(6, "feet"),
  14450. weight: math.unit(180, "lb"),
  14451. name: "Front (Posing)",
  14452. image: {
  14453. source: "./media/characters/renard-thatch/front-posing.svg",
  14454. extra: 2381 / 2261,
  14455. bottom: 0.01
  14456. }
  14457. },
  14458. back: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(180, "lb"),
  14461. name: "Back",
  14462. image: {
  14463. source: "./media/characters/renard-thatch/back.svg",
  14464. extra: 2428 / 2288
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Micro",
  14471. height: math.unit(3, "inches")
  14472. },
  14473. {
  14474. name: "Default",
  14475. height: math.unit(6, "feet"),
  14476. default: true
  14477. },
  14478. {
  14479. name: "Macro",
  14480. height: math.unit(75, "feet")
  14481. },
  14482. ]
  14483. ))
  14484. characterMakers.push(() => makeCharacter(
  14485. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14486. {
  14487. front: {
  14488. height: math.unit(1450, "feet"),
  14489. weight: math.unit(1.21e6, "tons"),
  14490. name: "Front",
  14491. image: {
  14492. source: "./media/characters/sekvra/front.svg",
  14493. extra: 1193/1190,
  14494. bottom: 78/1271
  14495. }
  14496. },
  14497. side: {
  14498. height: math.unit(1450, "feet"),
  14499. weight: math.unit(1.21e6, "tons"),
  14500. name: "Side",
  14501. image: {
  14502. source: "./media/characters/sekvra/side.svg",
  14503. extra: 1193/1190,
  14504. bottom: 52/1245
  14505. }
  14506. },
  14507. back: {
  14508. height: math.unit(1450, "feet"),
  14509. weight: math.unit(1.21e6, "tons"),
  14510. name: "Back",
  14511. image: {
  14512. source: "./media/characters/sekvra/back.svg",
  14513. extra: 1219/1216,
  14514. bottom: 21/1240
  14515. }
  14516. },
  14517. frontClothed: {
  14518. height: math.unit(1450, "feet"),
  14519. weight: math.unit(1.21e6, "tons"),
  14520. name: "Front (Clothed)",
  14521. image: {
  14522. source: "./media/characters/sekvra/front-clothed.svg",
  14523. extra: 1192/1189,
  14524. bottom: 79/1271
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Macro",
  14531. height: math.unit(1450, "feet"),
  14532. default: true
  14533. },
  14534. {
  14535. name: "Megamacro",
  14536. height: math.unit(15000, "feet")
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14542. {
  14543. front: {
  14544. height: math.unit(6, "feet"),
  14545. weight: math.unit(150, "lb"),
  14546. name: "Front",
  14547. image: {
  14548. source: "./media/characters/carmine/front.svg",
  14549. extra: 1,
  14550. bottom: 0.035
  14551. }
  14552. },
  14553. frontArmor: {
  14554. height: math.unit(6, "feet"),
  14555. weight: math.unit(150, "lb"),
  14556. name: "Front (Armor)",
  14557. image: {
  14558. source: "./media/characters/carmine/front-armor.svg",
  14559. extra: 1,
  14560. bottom: 0.035
  14561. }
  14562. },
  14563. },
  14564. [
  14565. {
  14566. name: "Large",
  14567. height: math.unit(1, "mile")
  14568. },
  14569. {
  14570. name: "Huge",
  14571. height: math.unit(40, "miles"),
  14572. default: true
  14573. },
  14574. {
  14575. name: "Colossal",
  14576. height: math.unit(2500, "miles")
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14582. {
  14583. front: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(150, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/elyssia/front.svg",
  14589. extra: 2201 / 2035,
  14590. bottom: 0.05
  14591. }
  14592. },
  14593. frontClothed: {
  14594. height: math.unit(6, "feet"),
  14595. weight: math.unit(150, "lb"),
  14596. name: "Front (Clothed)",
  14597. image: {
  14598. source: "./media/characters/elyssia/front-clothed.svg",
  14599. extra: 2201 / 2035,
  14600. bottom: 0.05
  14601. }
  14602. },
  14603. back: {
  14604. height: math.unit(6, "feet"),
  14605. weight: math.unit(150, "lb"),
  14606. name: "Back",
  14607. image: {
  14608. source: "./media/characters/elyssia/back.svg",
  14609. extra: 2201 / 2035,
  14610. bottom: 0.013
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Smaller",
  14617. height: math.unit(150, "feet")
  14618. },
  14619. {
  14620. name: "Standard",
  14621. height: math.unit(1400, "feet"),
  14622. default: true
  14623. },
  14624. {
  14625. name: "Distracted",
  14626. height: math.unit(15000, "feet")
  14627. },
  14628. ]
  14629. ))
  14630. characterMakers.push(() => makeCharacter(
  14631. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14632. {
  14633. front: {
  14634. height: math.unit(7 + 4/12, "feet"),
  14635. weight: math.unit(690, "lb"),
  14636. name: "Front",
  14637. image: {
  14638. source: "./media/characters/geno-maxwell/front.svg",
  14639. extra: 984/856,
  14640. bottom: 87/1071
  14641. }
  14642. },
  14643. back: {
  14644. height: math.unit(7 + 4/12, "feet"),
  14645. weight: math.unit(690, "lb"),
  14646. name: "Back",
  14647. image: {
  14648. source: "./media/characters/geno-maxwell/back.svg",
  14649. extra: 981/854,
  14650. bottom: 57/1038
  14651. }
  14652. },
  14653. frontCostume: {
  14654. height: math.unit(7 + 4/12, "feet"),
  14655. weight: math.unit(690, "lb"),
  14656. name: "Front (Costume)",
  14657. image: {
  14658. source: "./media/characters/geno-maxwell/front-costume.svg",
  14659. extra: 984/856,
  14660. bottom: 87/1071
  14661. }
  14662. },
  14663. backcostume: {
  14664. height: math.unit(7 + 4/12, "feet"),
  14665. weight: math.unit(690, "lb"),
  14666. name: "Back (Costume)",
  14667. image: {
  14668. source: "./media/characters/geno-maxwell/back-costume.svg",
  14669. extra: 981/854,
  14670. bottom: 57/1038
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Micro",
  14677. height: math.unit(3, "inches")
  14678. },
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(7 + 4 / 12, "feet"),
  14682. default: true
  14683. },
  14684. {
  14685. name: "Macro",
  14686. height: math.unit(220, "feet")
  14687. },
  14688. {
  14689. name: "Megamacro",
  14690. height: math.unit(11, "miles")
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(7 + 4/12, "feet"),
  14699. weight: math.unit(750, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/regena-maxwell/front.svg",
  14703. extra: 984/856,
  14704. bottom: 87/1071
  14705. }
  14706. },
  14707. back: {
  14708. height: math.unit(7 + 4/12, "feet"),
  14709. weight: math.unit(750, "lb"),
  14710. name: "Back",
  14711. image: {
  14712. source: "./media/characters/regena-maxwell/back.svg",
  14713. extra: 981/854,
  14714. bottom: 57/1038
  14715. }
  14716. },
  14717. frontCostume: {
  14718. height: math.unit(7 + 4/12, "feet"),
  14719. weight: math.unit(750, "lb"),
  14720. name: "Front (Costume)",
  14721. image: {
  14722. source: "./media/characters/regena-maxwell/front-costume.svg",
  14723. extra: 984/856,
  14724. bottom: 87/1071
  14725. }
  14726. },
  14727. backcostume: {
  14728. height: math.unit(7 + 4/12, "feet"),
  14729. weight: math.unit(750, "lb"),
  14730. name: "Back (Costume)",
  14731. image: {
  14732. source: "./media/characters/regena-maxwell/back-costume.svg",
  14733. extra: 981/854,
  14734. bottom: 57/1038
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Normal",
  14741. height: math.unit(7 + 4 / 12, "feet"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Macro",
  14746. height: math.unit(220, "feet")
  14747. },
  14748. {
  14749. name: "Megamacro",
  14750. height: math.unit(11, "miles")
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(6, "feet"),
  14759. weight: math.unit(150, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14763. extra: 860 / 690,
  14764. bottom: 0.03
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(1.7, "meters"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(6, "feet"),
  14781. weight: math.unit(150, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/quilly/front.svg",
  14785. extra: 890 / 776
  14786. }
  14787. },
  14788. },
  14789. [
  14790. {
  14791. name: "Gigamacro",
  14792. height: math.unit(404090, "miles"),
  14793. default: true
  14794. },
  14795. ]
  14796. ))
  14797. characterMakers.push(() => makeCharacter(
  14798. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14799. {
  14800. front: {
  14801. height: math.unit(7 + 8 / 12, "feet"),
  14802. weight: math.unit(350, "lb"),
  14803. name: "Front",
  14804. image: {
  14805. source: "./media/characters/tempest/front.svg",
  14806. extra: 1175 / 1086,
  14807. bottom: 0.02
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(7 + 8 / 12, "feet"),
  14815. default: true
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14821. {
  14822. side: {
  14823. height: math.unit(4 + 5 / 12, "feet"),
  14824. weight: math.unit(80, "lb"),
  14825. name: "Side",
  14826. image: {
  14827. source: "./media/characters/rodger/side.svg",
  14828. extra: 1235 / 1118
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Micro",
  14835. height: math.unit(1, "inch")
  14836. },
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(4 + 5 / 12, "feet"),
  14840. default: true
  14841. },
  14842. {
  14843. name: "Macro",
  14844. height: math.unit(120, "feet")
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14850. {
  14851. front: {
  14852. height: math.unit(6, "feet"),
  14853. weight: math.unit(150, "lb"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/danyel/front.svg",
  14857. extra: 1185 / 1123,
  14858. bottom: 0.05
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Shrunken",
  14865. height: math.unit(0.5, "mm")
  14866. },
  14867. {
  14868. name: "Micro",
  14869. height: math.unit(1, "mm"),
  14870. default: true
  14871. },
  14872. {
  14873. name: "Upsized",
  14874. height: math.unit(5 + 5 / 12, "feet")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(5 + 6 / 12, "feet"),
  14883. weight: math.unit(200, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/vivian-bijoux/front.svg",
  14887. extra: 1217/1209,
  14888. bottom: 76/1293
  14889. }
  14890. },
  14891. back: {
  14892. height: math.unit(5 + 6 / 12, "feet"),
  14893. weight: math.unit(200, "lb"),
  14894. name: "Back",
  14895. image: {
  14896. source: "./media/characters/vivian-bijoux/back.svg",
  14897. extra: 1214/1208,
  14898. bottom: 51/1265
  14899. }
  14900. },
  14901. dressed: {
  14902. height: math.unit(5 + 6 / 12, "feet"),
  14903. weight: math.unit(200, "lb"),
  14904. name: "Dressed",
  14905. image: {
  14906. source: "./media/characters/vivian-bijoux/dressed.svg",
  14907. extra: 1217/1209,
  14908. bottom: 76/1293
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(5 + 6 / 12, "feet"),
  14916. default: true
  14917. },
  14918. {
  14919. name: "Bad Dream",
  14920. height: math.unit(500, "feet")
  14921. },
  14922. {
  14923. name: "Nightmare",
  14924. height: math.unit(500, "miles")
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(6 + 1 / 12, "feet"),
  14933. weight: math.unit(260, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/zeta/front.svg",
  14937. extra: 1968 / 1889,
  14938. bottom: 0.06
  14939. }
  14940. },
  14941. back: {
  14942. height: math.unit(6 + 1 / 12, "feet"),
  14943. weight: math.unit(260, "lb"),
  14944. name: "Back",
  14945. image: {
  14946. source: "./media/characters/zeta/back.svg",
  14947. extra: 1944 / 1858,
  14948. bottom: 0.03
  14949. }
  14950. },
  14951. hand: {
  14952. height: math.unit(1.112, "feet"),
  14953. name: "Hand",
  14954. image: {
  14955. source: "./media/characters/zeta/hand.svg"
  14956. }
  14957. },
  14958. foot: {
  14959. height: math.unit(1.48, "feet"),
  14960. name: "Foot",
  14961. image: {
  14962. source: "./media/characters/zeta/foot.svg"
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Micro",
  14969. height: math.unit(6, "inches")
  14970. },
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(6 + 1 / 12, "feet"),
  14974. default: true
  14975. },
  14976. {
  14977. name: "Macro",
  14978. height: math.unit(20, "feet")
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14984. {
  14985. front: {
  14986. height: math.unit(6, "feet"),
  14987. weight: math.unit(150, "lb"),
  14988. name: "Front",
  14989. image: {
  14990. source: "./media/characters/jamie-larsen/front.svg",
  14991. extra: 962 / 933,
  14992. bottom: 0.02
  14993. }
  14994. },
  14995. back: {
  14996. height: math.unit(6, "feet"),
  14997. weight: math.unit(150, "lb"),
  14998. name: "Back",
  14999. image: {
  15000. source: "./media/characters/jamie-larsen/back.svg",
  15001. extra: 997 / 946
  15002. }
  15003. },
  15004. },
  15005. [
  15006. {
  15007. name: "Macro",
  15008. height: math.unit(28 + 7 / 12, "feet"),
  15009. default: true
  15010. },
  15011. {
  15012. name: "Macro+",
  15013. height: math.unit(180, "feet")
  15014. },
  15015. {
  15016. name: "Megamacro",
  15017. height: math.unit(10, "miles")
  15018. },
  15019. {
  15020. name: "Gigamacro",
  15021. height: math.unit(200000, "miles")
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15027. {
  15028. front: {
  15029. height: math.unit(6, "feet"),
  15030. weight: math.unit(120, "lb"),
  15031. name: "Front",
  15032. image: {
  15033. source: "./media/characters/vance/front.svg",
  15034. extra: 1980 / 1890,
  15035. bottom: 0.09
  15036. }
  15037. },
  15038. back: {
  15039. height: math.unit(6, "feet"),
  15040. weight: math.unit(120, "lb"),
  15041. name: "Back",
  15042. image: {
  15043. source: "./media/characters/vance/back.svg",
  15044. extra: 2081 / 1994,
  15045. bottom: 0.014
  15046. }
  15047. },
  15048. hand: {
  15049. height: math.unit(0.88, "feet"),
  15050. name: "Hand",
  15051. image: {
  15052. source: "./media/characters/vance/hand.svg"
  15053. }
  15054. },
  15055. foot: {
  15056. height: math.unit(0.64, "feet"),
  15057. name: "Foot",
  15058. image: {
  15059. source: "./media/characters/vance/foot.svg"
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Small",
  15066. height: math.unit(90, "feet"),
  15067. default: true
  15068. },
  15069. {
  15070. name: "Macro",
  15071. height: math.unit(100, "meters")
  15072. },
  15073. {
  15074. name: "Megamacro",
  15075. height: math.unit(15, "miles")
  15076. },
  15077. ]
  15078. ))
  15079. characterMakers.push(() => makeCharacter(
  15080. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15081. {
  15082. front: {
  15083. height: math.unit(6, "feet"),
  15084. weight: math.unit(180, "lb"),
  15085. name: "Front",
  15086. image: {
  15087. source: "./media/characters/xochitl/front.svg",
  15088. extra: 2297 / 2261,
  15089. bottom: 0.065
  15090. }
  15091. },
  15092. back: {
  15093. height: math.unit(6, "feet"),
  15094. weight: math.unit(180, "lb"),
  15095. name: "Back",
  15096. image: {
  15097. source: "./media/characters/xochitl/back.svg",
  15098. extra: 2386 / 2354,
  15099. bottom: 0.01
  15100. }
  15101. },
  15102. foot: {
  15103. height: math.unit(6 / 5 * 1.15, "feet"),
  15104. weight: math.unit(150, "lb"),
  15105. name: "Foot",
  15106. image: {
  15107. source: "./media/characters/xochitl/foot.svg"
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Macro",
  15114. height: math.unit(80, "feet")
  15115. },
  15116. {
  15117. name: "Macro+",
  15118. height: math.unit(400, "feet"),
  15119. default: true
  15120. },
  15121. {
  15122. name: "Gigamacro",
  15123. height: math.unit(80000, "miles")
  15124. },
  15125. {
  15126. name: "Gigamacro+",
  15127. height: math.unit(400000, "miles")
  15128. },
  15129. {
  15130. name: "Teramacro",
  15131. height: math.unit(300, "AU")
  15132. },
  15133. ]
  15134. ))
  15135. characterMakers.push(() => makeCharacter(
  15136. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15137. {
  15138. front: {
  15139. height: math.unit(6, "feet"),
  15140. weight: math.unit(150, "lb"),
  15141. name: "Front",
  15142. image: {
  15143. source: "./media/characters/vincent/front.svg",
  15144. extra: 1130 / 1080,
  15145. bottom: 0.055
  15146. }
  15147. },
  15148. beak: {
  15149. height: math.unit(6 * 0.1, "feet"),
  15150. name: "Beak",
  15151. image: {
  15152. source: "./media/characters/vincent/beak.svg"
  15153. }
  15154. },
  15155. hand: {
  15156. height: math.unit(6 * 0.85, "feet"),
  15157. weight: math.unit(150, "lb"),
  15158. name: "Hand",
  15159. image: {
  15160. source: "./media/characters/vincent/hand.svg"
  15161. }
  15162. },
  15163. foot: {
  15164. height: math.unit(6 * 0.19, "feet"),
  15165. weight: math.unit(150, "lb"),
  15166. name: "Foot",
  15167. image: {
  15168. source: "./media/characters/vincent/foot.svg"
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Base",
  15175. height: math.unit(6 + 5 / 12, "feet"),
  15176. default: true
  15177. },
  15178. {
  15179. name: "Macro",
  15180. height: math.unit(300, "feet")
  15181. },
  15182. {
  15183. name: "Megamacro",
  15184. height: math.unit(2, "miles")
  15185. },
  15186. {
  15187. name: "Gigamacro",
  15188. height: math.unit(1000, "miles")
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(2, "meters"),
  15197. weight: math.unit(500, "kg"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/coatl/front.svg",
  15201. extra: 3948 / 3500,
  15202. bottom: 0.082
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(4, "meters")
  15210. },
  15211. {
  15212. name: "Macro",
  15213. height: math.unit(100, "meters"),
  15214. default: true
  15215. },
  15216. {
  15217. name: "Macro+",
  15218. height: math.unit(300, "meters")
  15219. },
  15220. {
  15221. name: "Megamacro",
  15222. height: math.unit(3, "gigameters")
  15223. },
  15224. {
  15225. name: "Megamacro+",
  15226. height: math.unit(300, "terameters")
  15227. },
  15228. {
  15229. name: "Megamacro++",
  15230. height: math.unit(3, "lightyears")
  15231. },
  15232. ]
  15233. ))
  15234. characterMakers.push(() => makeCharacter(
  15235. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15236. {
  15237. front: {
  15238. height: math.unit(6, "feet"),
  15239. weight: math.unit(50, "kg"),
  15240. name: "front",
  15241. image: {
  15242. source: "./media/characters/shiroryu/front.svg",
  15243. extra: 1990 / 1935
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Mortal Mingling",
  15250. height: math.unit(3, "meters")
  15251. },
  15252. {
  15253. name: "Kaiju-ish",
  15254. height: math.unit(250, "meters")
  15255. },
  15256. {
  15257. name: "Somewhat Godly",
  15258. height: math.unit(400, "km"),
  15259. default: true
  15260. },
  15261. {
  15262. name: "Planetary",
  15263. height: math.unit(300, "megameters")
  15264. },
  15265. {
  15266. name: "Galaxy-dwarfing",
  15267. height: math.unit(450, "kiloparsecs")
  15268. },
  15269. {
  15270. name: "Universe Eater",
  15271. height: math.unit(150, "gigaparsecs")
  15272. },
  15273. {
  15274. name: "Almost Immeasurable",
  15275. height: math.unit(1.3e266, "yottaparsecs")
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(6, "feet"),
  15284. weight: math.unit(150, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/umeko/front.svg",
  15288. extra: 1,
  15289. bottom: 0.019
  15290. }
  15291. },
  15292. frontArmored: {
  15293. height: math.unit(6, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Front (Armored)",
  15296. image: {
  15297. source: "./media/characters/umeko/front-armored.svg",
  15298. extra: 1,
  15299. bottom: 0.021
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Macro",
  15306. height: math.unit(220, "feet"),
  15307. default: true
  15308. },
  15309. {
  15310. name: "Guardian Dragon",
  15311. height: math.unit(50, "miles")
  15312. },
  15313. {
  15314. name: "Cosmic",
  15315. height: math.unit(800000, "miles")
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(6, "feet"),
  15324. weight: math.unit(150, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/cassidy/front.svg",
  15328. extra: 810/808,
  15329. bottom: 41/851
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Canon Height",
  15336. height: math.unit(120, "feet"),
  15337. default: true
  15338. },
  15339. {
  15340. name: "Macro+",
  15341. height: math.unit(400, "feet")
  15342. },
  15343. {
  15344. name: "Macro++",
  15345. height: math.unit(4000, "feet")
  15346. },
  15347. {
  15348. name: "Megamacro",
  15349. height: math.unit(3, "miles")
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(150, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/isaac/front.svg",
  15362. extra: 896 / 815,
  15363. bottom: 0.11
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Human Size",
  15370. height: math.unit(8, "feet"),
  15371. default: true
  15372. },
  15373. {
  15374. name: "Macro",
  15375. height: math.unit(400, "feet")
  15376. },
  15377. {
  15378. name: "Megamacro",
  15379. height: math.unit(50, "miles")
  15380. },
  15381. {
  15382. name: "Canon Height",
  15383. height: math.unit(200, "AU")
  15384. },
  15385. ]
  15386. ))
  15387. characterMakers.push(() => makeCharacter(
  15388. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15389. {
  15390. front: {
  15391. height: math.unit(6, "feet"),
  15392. weight: math.unit(72, "kg"),
  15393. name: "Front",
  15394. image: {
  15395. source: "./media/characters/sleekit/front.svg",
  15396. extra: 4693 / 4487,
  15397. bottom: 0.012
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Minimum Height",
  15404. height: math.unit(10, "meters")
  15405. },
  15406. {
  15407. name: "Smaller",
  15408. height: math.unit(25, "meters")
  15409. },
  15410. {
  15411. name: "Larger",
  15412. height: math.unit(38, "meters"),
  15413. default: true
  15414. },
  15415. {
  15416. name: "Maximum height",
  15417. height: math.unit(100, "meters")
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15423. {
  15424. front: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/nillia/front.svg",
  15430. extra: 2195 / 2037,
  15431. bottom: 0.005
  15432. }
  15433. },
  15434. back: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Back",
  15438. image: {
  15439. source: "./media/characters/nillia/back.svg",
  15440. extra: 2195 / 2037,
  15441. bottom: 0.005
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Canon Height",
  15448. height: math.unit(489, "feet"),
  15449. default: true
  15450. }
  15451. ]
  15452. ))
  15453. characterMakers.push(() => makeCharacter(
  15454. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15455. {
  15456. front: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Front",
  15460. image: {
  15461. source: "./media/characters/mesmyriza/front.svg",
  15462. extra: 2067 / 1784,
  15463. bottom: 0.035
  15464. }
  15465. },
  15466. foot: {
  15467. height: math.unit(6 / (250 / 35), "feet"),
  15468. name: "Foot",
  15469. image: {
  15470. source: "./media/characters/mesmyriza/foot.svg"
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Macro",
  15477. height: math.unit(457, "meters"),
  15478. default: true
  15479. },
  15480. {
  15481. name: "Megamacro",
  15482. height: math.unit(8, "megameters")
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(6, "feet"),
  15491. weight: math.unit(250, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/saudade/front.svg",
  15495. extra: 1172 / 1139,
  15496. bottom: 0.035
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Micro",
  15503. height: math.unit(3, "inches")
  15504. },
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(6, "feet"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(50, "feet")
  15513. },
  15514. {
  15515. name: "Megamacro",
  15516. height: math.unit(2800, "feet")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(5 + 4 / 12, "feet"),
  15525. weight: math.unit(100, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/keireer/front.svg",
  15529. extra: 716 / 666,
  15530. bottom: 0.05
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(5 + 4 / 12, "feet"),
  15538. default: true
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(5.5, "feet"),
  15547. weight: math.unit(90, "kg"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/mirja/front.svg",
  15551. extra: 1452/1262,
  15552. bottom: 67/1519
  15553. }
  15554. },
  15555. frontDressed: {
  15556. height: math.unit(5.5, "feet"),
  15557. weight: math.unit(90, "lb"),
  15558. name: "Front (Dressed)",
  15559. image: {
  15560. source: "./media/characters/mirja/dressed.svg",
  15561. extra: 1452/1262,
  15562. bottom: 67/1519
  15563. }
  15564. },
  15565. back: {
  15566. height: math.unit(6, "feet"),
  15567. weight: math.unit(90, "lb"),
  15568. name: "Back",
  15569. image: {
  15570. source: "./media/characters/mirja/back.svg",
  15571. extra: 1892/1795,
  15572. bottom: 48/1940
  15573. }
  15574. },
  15575. maw: {
  15576. height: math.unit(1.312, "feet"),
  15577. name: "Maw",
  15578. image: {
  15579. source: "./media/characters/mirja/maw.svg"
  15580. }
  15581. },
  15582. paw: {
  15583. height: math.unit(1.15, "feet"),
  15584. name: "Paw",
  15585. image: {
  15586. source: "./media/characters/mirja/paw.svg"
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "\"Incognito\"",
  15593. height: math.unit(3, "meters")
  15594. },
  15595. {
  15596. name: "Strolling Size",
  15597. height: math.unit(15, "km")
  15598. },
  15599. {
  15600. name: "Larger Strolling Size",
  15601. height: math.unit(400, "km")
  15602. },
  15603. {
  15604. name: "Preferred Size",
  15605. height: math.unit(5000, "km"),
  15606. default: true
  15607. },
  15608. {
  15609. name: "True Size",
  15610. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(15, "feet"),
  15619. weight: math.unit(880, "kg"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/nightraver/front.svg",
  15623. extra: 2444 / 2160,
  15624. bottom: 0.027
  15625. }
  15626. },
  15627. back: {
  15628. height: math.unit(15, "feet"),
  15629. weight: math.unit(880, "kg"),
  15630. name: "Back",
  15631. image: {
  15632. source: "./media/characters/nightraver/back.svg",
  15633. extra: 2309 / 2180,
  15634. bottom: 0.005
  15635. }
  15636. },
  15637. sole: {
  15638. height: math.unit(2.878, "feet"),
  15639. name: "Sole",
  15640. image: {
  15641. source: "./media/characters/nightraver/sole.svg"
  15642. }
  15643. },
  15644. foot: {
  15645. height: math.unit(2.285, "feet"),
  15646. name: "Foot",
  15647. image: {
  15648. source: "./media/characters/nightraver/foot.svg"
  15649. }
  15650. },
  15651. maw: {
  15652. height: math.unit(2.67, "feet"),
  15653. name: "Maw",
  15654. image: {
  15655. source: "./media/characters/nightraver/maw.svg"
  15656. }
  15657. },
  15658. },
  15659. [
  15660. {
  15661. name: "Micro",
  15662. height: math.unit(1, "cm")
  15663. },
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(15, "feet"),
  15667. default: true
  15668. },
  15669. {
  15670. name: "Macro",
  15671. height: math.unit(300, "feet")
  15672. },
  15673. {
  15674. name: "Megamacro",
  15675. height: math.unit(300, "miles")
  15676. },
  15677. {
  15678. name: "Gigamacro",
  15679. height: math.unit(10000, "miles")
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15685. {
  15686. side: {
  15687. height: math.unit(2, "inches"),
  15688. weight: math.unit(5, "grams"),
  15689. name: "Side",
  15690. image: {
  15691. source: "./media/characters/arc/side.svg"
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Micro",
  15698. height: math.unit(2, "inches"),
  15699. default: true
  15700. },
  15701. ]
  15702. ))
  15703. characterMakers.push(() => makeCharacter(
  15704. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15705. {
  15706. front: {
  15707. height: math.unit(1.1938, "meters"),
  15708. weight: math.unit(54, "kg"),
  15709. name: "Front",
  15710. image: {
  15711. source: "./media/characters/nebula-shahar/front.svg",
  15712. extra: 1642 / 1436,
  15713. bottom: 0.06
  15714. }
  15715. },
  15716. },
  15717. [
  15718. {
  15719. name: "Megamicro",
  15720. height: math.unit(0.3, "mm")
  15721. },
  15722. {
  15723. name: "Micro",
  15724. height: math.unit(3, "cm")
  15725. },
  15726. {
  15727. name: "Normal",
  15728. height: math.unit(138, "cm"),
  15729. default: true
  15730. },
  15731. {
  15732. name: "Macro",
  15733. height: math.unit(30, "m")
  15734. },
  15735. ]
  15736. ))
  15737. characterMakers.push(() => makeCharacter(
  15738. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15739. {
  15740. front: {
  15741. height: math.unit(5.24, "feet"),
  15742. weight: math.unit(150, "lb"),
  15743. name: "Front",
  15744. image: {
  15745. source: "./media/characters/shayla/front.svg",
  15746. extra: 1512 / 1414,
  15747. bottom: 0.01
  15748. }
  15749. },
  15750. back: {
  15751. height: math.unit(5.24, "feet"),
  15752. weight: math.unit(150, "lb"),
  15753. name: "Back",
  15754. image: {
  15755. source: "./media/characters/shayla/back.svg",
  15756. extra: 1512 / 1414
  15757. }
  15758. },
  15759. hand: {
  15760. height: math.unit(0.7781496062992126, "feet"),
  15761. name: "Hand",
  15762. image: {
  15763. source: "./media/characters/shayla/hand.svg"
  15764. }
  15765. },
  15766. foot: {
  15767. height: math.unit(1.4206036745406823, "feet"),
  15768. name: "Foot",
  15769. image: {
  15770. source: "./media/characters/shayla/foot.svg"
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Micro",
  15777. height: math.unit(0.32, "feet")
  15778. },
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(5.24, "feet"),
  15782. default: true
  15783. },
  15784. {
  15785. name: "Macro",
  15786. height: math.unit(492.12, "feet")
  15787. },
  15788. {
  15789. name: "Megamacro",
  15790. height: math.unit(186.41, "miles")
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(2.2, "m"),
  15799. weight: math.unit(120, "kg"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/pia-jr/front.svg",
  15803. extra: 1000 / 970,
  15804. bottom: 0.035
  15805. }
  15806. },
  15807. hand: {
  15808. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15809. name: "Hand",
  15810. image: {
  15811. source: "./media/characters/pia-jr/hand.svg"
  15812. }
  15813. },
  15814. paw: {
  15815. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15816. name: "Paw",
  15817. image: {
  15818. source: "./media/characters/pia-jr/paw.svg"
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Micro",
  15825. height: math.unit(1.2, "cm")
  15826. },
  15827. {
  15828. name: "Normal",
  15829. height: math.unit(2.2, "m"),
  15830. default: true
  15831. },
  15832. {
  15833. name: "Macro",
  15834. height: math.unit(180, "m")
  15835. },
  15836. {
  15837. name: "Megamacro",
  15838. height: math.unit(420, "km")
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(2, "m"),
  15847. weight: math.unit(115, "kg"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/pia-sr/front.svg",
  15851. extra: 760 / 730,
  15852. bottom: 0.015
  15853. }
  15854. },
  15855. back: {
  15856. height: math.unit(2, "m"),
  15857. weight: math.unit(115, "kg"),
  15858. name: "Back",
  15859. image: {
  15860. source: "./media/characters/pia-sr/back.svg",
  15861. extra: 760 / 730,
  15862. bottom: 0.01
  15863. }
  15864. },
  15865. hand: {
  15866. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15867. name: "Hand",
  15868. image: {
  15869. source: "./media/characters/pia-sr/hand.svg"
  15870. }
  15871. },
  15872. foot: {
  15873. height: math.unit(1.83, "feet"),
  15874. name: "Foot",
  15875. image: {
  15876. source: "./media/characters/pia-sr/foot.svg"
  15877. }
  15878. },
  15879. },
  15880. [
  15881. {
  15882. name: "Micro",
  15883. height: math.unit(88, "mm")
  15884. },
  15885. {
  15886. name: "Normal",
  15887. height: math.unit(2, "m"),
  15888. default: true
  15889. },
  15890. {
  15891. name: "Macro",
  15892. height: math.unit(200, "m")
  15893. },
  15894. {
  15895. name: "Megamacro",
  15896. height: math.unit(420, "km")
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15902. {
  15903. front: {
  15904. height: math.unit(8 + 2 / 12, "feet"),
  15905. weight: math.unit(300, "lb"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/kibibyte/front.svg",
  15909. extra: 2221 / 2098,
  15910. bottom: 0.04
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(8 + 2 / 12, "feet"),
  15918. default: true
  15919. },
  15920. {
  15921. name: "Socialable Macro",
  15922. height: math.unit(50, "feet")
  15923. },
  15924. {
  15925. name: "Macro",
  15926. height: math.unit(300, "feet")
  15927. },
  15928. {
  15929. name: "Megamacro",
  15930. height: math.unit(500, "miles")
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15936. {
  15937. front: {
  15938. height: math.unit(6, "feet"),
  15939. weight: math.unit(150, "lb"),
  15940. name: "Front",
  15941. image: {
  15942. source: "./media/characters/felix/front.svg",
  15943. extra: 762 / 722,
  15944. bottom: 0.02
  15945. }
  15946. },
  15947. frontClothed: {
  15948. height: math.unit(6, "feet"),
  15949. weight: math.unit(150, "lb"),
  15950. name: "Front (Clothed)",
  15951. image: {
  15952. source: "./media/characters/felix/front-clothed.svg",
  15953. extra: 762 / 722,
  15954. bottom: 0.02
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(6 + 8 / 12, "feet"),
  15962. default: true
  15963. },
  15964. {
  15965. name: "Macro",
  15966. height: math.unit(2600, "feet")
  15967. },
  15968. {
  15969. name: "Megamacro",
  15970. height: math.unit(450, "miles")
  15971. },
  15972. ]
  15973. ))
  15974. characterMakers.push(() => makeCharacter(
  15975. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15976. {
  15977. front: {
  15978. height: math.unit(6 + 1 / 12, "feet"),
  15979. weight: math.unit(250, "lb"),
  15980. name: "Front",
  15981. image: {
  15982. source: "./media/characters/tobo/front.svg",
  15983. extra: 608 / 586,
  15984. bottom: 0.023
  15985. }
  15986. },
  15987. back: {
  15988. height: math.unit(6 + 1 / 12, "feet"),
  15989. weight: math.unit(250, "lb"),
  15990. name: "Back",
  15991. image: {
  15992. source: "./media/characters/tobo/back.svg",
  15993. extra: 608 / 586
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Nano",
  16000. height: math.unit(2, "nm")
  16001. },
  16002. {
  16003. name: "Megamicro",
  16004. height: math.unit(0.1, "mm")
  16005. },
  16006. {
  16007. name: "Micro",
  16008. height: math.unit(1, "inch"),
  16009. default: true
  16010. },
  16011. {
  16012. name: "Human-sized",
  16013. height: math.unit(6 + 1 / 12, "feet")
  16014. },
  16015. {
  16016. name: "Macro",
  16017. height: math.unit(250, "feet")
  16018. },
  16019. {
  16020. name: "Megamacro",
  16021. height: math.unit(75, "miles")
  16022. },
  16023. {
  16024. name: "Texas-sized",
  16025. height: math.unit(750, "miles")
  16026. },
  16027. {
  16028. name: "Teramacro",
  16029. height: math.unit(50000, "miles")
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(6, "feet"),
  16038. weight: math.unit(269, "lb"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/danny-kapowsky/front.svg",
  16042. extra: 766 / 736,
  16043. bottom: 0.044
  16044. }
  16045. },
  16046. back: {
  16047. height: math.unit(6, "feet"),
  16048. weight: math.unit(269, "lb"),
  16049. name: "Back",
  16050. image: {
  16051. source: "./media/characters/danny-kapowsky/back.svg",
  16052. extra: 797 / 760,
  16053. bottom: 0.025
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(150, "feet"),
  16061. default: true
  16062. },
  16063. {
  16064. name: "Macro+",
  16065. height: math.unit(200, "feet")
  16066. },
  16067. {
  16068. name: "Macro++",
  16069. height: math.unit(300, "feet")
  16070. },
  16071. {
  16072. name: "Macro+++",
  16073. height: math.unit(400, "feet")
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16079. {
  16080. side: {
  16081. height: math.unit(6, "feet"),
  16082. weight: math.unit(170, "lb"),
  16083. name: "Side",
  16084. image: {
  16085. source: "./media/characters/finn/side.svg",
  16086. extra: 1953 / 1807,
  16087. bottom: 0.057
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Megamacro",
  16094. height: math.unit(14445, "feet"),
  16095. default: true
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16101. {
  16102. front: {
  16103. height: math.unit(5 + 6 / 12, "feet"),
  16104. weight: math.unit(125, "lb"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/roy/front.svg",
  16108. extra: 1,
  16109. bottom: 0.11
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Micro",
  16116. height: math.unit(3, "inches"),
  16117. default: true
  16118. },
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(5 + 6 / 12, "feet")
  16122. },
  16123. {
  16124. name: "Lesser Macro",
  16125. height: math.unit(60, "feet")
  16126. },
  16127. {
  16128. name: "Greater Macro",
  16129. height: math.unit(120, "feet")
  16130. },
  16131. ]
  16132. ))
  16133. characterMakers.push(() => makeCharacter(
  16134. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16135. {
  16136. front: {
  16137. height: math.unit(6, "feet"),
  16138. weight: math.unit(100, "lb"),
  16139. name: "Front",
  16140. image: {
  16141. source: "./media/characters/aevsivs/front.svg",
  16142. extra: 1,
  16143. bottom: 0.03
  16144. }
  16145. },
  16146. back: {
  16147. height: math.unit(6, "feet"),
  16148. weight: math.unit(100, "lb"),
  16149. name: "Back",
  16150. image: {
  16151. source: "./media/characters/aevsivs/back.svg"
  16152. }
  16153. },
  16154. },
  16155. [
  16156. {
  16157. name: "Micro",
  16158. height: math.unit(2, "inches"),
  16159. default: true
  16160. },
  16161. {
  16162. name: "Normal",
  16163. height: math.unit(5, "feet")
  16164. },
  16165. ]
  16166. ))
  16167. characterMakers.push(() => makeCharacter(
  16168. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16169. {
  16170. front: {
  16171. height: math.unit(5 + 7 / 12, "feet"),
  16172. weight: math.unit(159, "lb"),
  16173. name: "Front",
  16174. image: {
  16175. source: "./media/characters/hildegard/front.svg",
  16176. extra: 289 / 269,
  16177. bottom: 7.63 / 297.8
  16178. }
  16179. },
  16180. back: {
  16181. height: math.unit(5 + 7 / 12, "feet"),
  16182. weight: math.unit(159, "lb"),
  16183. name: "Back",
  16184. image: {
  16185. source: "./media/characters/hildegard/back.svg",
  16186. extra: 280 / 260,
  16187. bottom: 2.3 / 282
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Normal",
  16194. height: math.unit(5 + 7 / 12, "feet"),
  16195. default: true
  16196. },
  16197. ]
  16198. ))
  16199. characterMakers.push(() => makeCharacter(
  16200. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16201. {
  16202. bernard: {
  16203. height: math.unit(2 + 7 / 12, "feet"),
  16204. weight: math.unit(66, "lb"),
  16205. name: "Bernard",
  16206. rename: true,
  16207. image: {
  16208. source: "./media/characters/bernard-wilder/bernard.svg",
  16209. extra: 192 / 128,
  16210. bottom: 0.05
  16211. }
  16212. },
  16213. wilder: {
  16214. height: math.unit(5 + 8 / 12, "feet"),
  16215. weight: math.unit(143, "lb"),
  16216. name: "Wilder",
  16217. rename: true,
  16218. image: {
  16219. source: "./media/characters/bernard-wilder/wilder.svg",
  16220. extra: 361 / 312,
  16221. bottom: 0.02
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Normal",
  16228. height: math.unit(2 + 7 / 12, "feet"),
  16229. default: true
  16230. },
  16231. ]
  16232. ))
  16233. characterMakers.push(() => makeCharacter(
  16234. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16235. {
  16236. anthro: {
  16237. height: math.unit(6 + 1 / 12, "feet"),
  16238. weight: math.unit(155, "lb"),
  16239. name: "Anthro",
  16240. image: {
  16241. source: "./media/characters/hearth/anthro.svg",
  16242. extra: 1178/1136,
  16243. bottom: 28/1206
  16244. }
  16245. },
  16246. feral: {
  16247. height: math.unit(3.78, "feet"),
  16248. weight: math.unit(35, "kg"),
  16249. name: "Feral",
  16250. image: {
  16251. source: "./media/characters/hearth/feral.svg",
  16252. extra: 153 / 135,
  16253. bottom: 0.03
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Normal",
  16260. height: math.unit(6 + 1 / 12, "feet"),
  16261. default: true
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(6, "feet"),
  16270. weight: math.unit(182, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/ingrid/front.svg",
  16274. extra: 294 / 268,
  16275. bottom: 0.027
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(6, "feet"),
  16283. default: true
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16289. {
  16290. eevee: {
  16291. height: math.unit(2 + 10 / 12, "feet"),
  16292. weight: math.unit(86, "lb"),
  16293. name: "Malgam",
  16294. image: {
  16295. source: "./media/characters/malgam/eevee.svg",
  16296. extra: 952/784,
  16297. bottom: 38/990
  16298. }
  16299. },
  16300. sylveon: {
  16301. height: math.unit(4, "feet"),
  16302. weight: math.unit(101, "lb"),
  16303. name: "Future Malgam",
  16304. rename: true,
  16305. image: {
  16306. source: "./media/characters/malgam/sylveon.svg",
  16307. extra: 371 / 325,
  16308. bottom: 0.015
  16309. }
  16310. },
  16311. gigantamax: {
  16312. height: math.unit(50, "feet"),
  16313. name: "Gigantamax Malgam",
  16314. rename: true,
  16315. image: {
  16316. source: "./media/characters/malgam/gigantamax.svg"
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(2 + 10 / 12, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(5 + 11 / 12, "feet"),
  16333. weight: math.unit(188, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/fleur/front.svg",
  16337. extra: 309 / 283,
  16338. bottom: 0.007
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(5 + 11 / 12, "feet"),
  16346. default: true
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(5 + 4 / 12, "feet"),
  16355. weight: math.unit(122, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/jude/front.svg",
  16359. extra: 288 / 273,
  16360. bottom: 0.03
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(5 + 4 / 12, "feet"),
  16368. default: true
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(5 + 11 / 12, "feet"),
  16377. weight: math.unit(190, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/seara/front.svg",
  16381. extra: 1,
  16382. bottom: 0.05
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(5 + 11 / 12, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(16 + 5 / 12, "feet"),
  16399. weight: math.unit(524, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/caspian-lugia/front.svg",
  16403. extra: 1,
  16404. bottom: 0.04
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(16 + 5 / 12, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(5 + 7 / 12, "feet"),
  16421. weight: math.unit(170, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/mika/front.svg",
  16425. extra: 1,
  16426. bottom: 0.016
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(5 + 7 / 12, "feet"),
  16434. default: true
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(6 + 2 / 12, "feet"),
  16443. weight: math.unit(268, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/sol/front.svg",
  16447. extra: 247 / 231,
  16448. bottom: 0.05
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(6 + 2 / 12, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16462. {
  16463. buizel: {
  16464. height: math.unit(2 + 5 / 12, "feet"),
  16465. weight: math.unit(87, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/umiko/buizel.svg",
  16469. extra: 172 / 157,
  16470. bottom: 0.01
  16471. },
  16472. form: "buizel",
  16473. default: true
  16474. },
  16475. floatzel: {
  16476. height: math.unit(5 + 9 / 12, "feet"),
  16477. weight: math.unit(250, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/umiko/floatzel.svg",
  16481. extra: 1076/1006,
  16482. bottom: 15/1091
  16483. },
  16484. form: "floatzel",
  16485. default: true
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Normal",
  16491. height: math.unit(2 + 5 / 12, "feet"),
  16492. form: "buizel",
  16493. default: true
  16494. },
  16495. {
  16496. name: "Normal",
  16497. height: math.unit(5 + 9 / 12, "feet"),
  16498. form: "floatzel",
  16499. default: true
  16500. },
  16501. ],
  16502. {
  16503. "buizel": {
  16504. name: "Buizel"
  16505. },
  16506. "floatzel": {
  16507. name: "Floatzel",
  16508. default: true
  16509. }
  16510. }
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16514. {
  16515. front: {
  16516. height: math.unit(6 + 2 / 12, "feet"),
  16517. weight: math.unit(146, "lb"),
  16518. name: "Front",
  16519. image: {
  16520. source: "./media/characters/iliac/front.svg",
  16521. extra: 389 / 365,
  16522. bottom: 0.035
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(6 + 2 / 12, "feet"),
  16530. default: true
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16536. {
  16537. front: {
  16538. height: math.unit(6, "feet"),
  16539. weight: math.unit(170, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/topaz/front.svg",
  16543. extra: 317 / 303,
  16544. bottom: 0.055
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(6, "feet"),
  16552. default: true
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16558. {
  16559. front: {
  16560. height: math.unit(5 + 11 / 12, "feet"),
  16561. weight: math.unit(144, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/gabriel/front.svg",
  16565. extra: 285 / 262,
  16566. bottom: 0.004
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(5 + 11 / 12, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16580. {
  16581. side: {
  16582. height: math.unit(6 + 5 / 12, "feet"),
  16583. weight: math.unit(300, "lb"),
  16584. name: "Side",
  16585. image: {
  16586. source: "./media/characters/tempest-suicune/side.svg",
  16587. extra: 195 / 154,
  16588. bottom: 0.04
  16589. }
  16590. },
  16591. },
  16592. [
  16593. {
  16594. name: "Normal",
  16595. height: math.unit(6 + 5 / 12, "feet"),
  16596. default: true
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16602. {
  16603. front: {
  16604. height: math.unit(7 + 2 / 12, "feet"),
  16605. weight: math.unit(322, "lb"),
  16606. name: "Front",
  16607. image: {
  16608. source: "./media/characters/vulcan/front.svg",
  16609. extra: 154 / 147,
  16610. bottom: 0.04
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(7 + 2 / 12, "feet"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16624. {
  16625. front: {
  16626. height: math.unit(5 + 10 / 12, "feet"),
  16627. weight: math.unit(264, "lb"),
  16628. name: "Front",
  16629. image: {
  16630. source: "./media/characters/gault/front.svg",
  16631. extra: 161 / 140,
  16632. bottom: 0.028
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(5 + 10 / 12, "feet"),
  16640. default: true
  16641. },
  16642. ]
  16643. ))
  16644. characterMakers.push(() => makeCharacter(
  16645. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16646. {
  16647. front: {
  16648. height: math.unit(6, "feet"),
  16649. weight: math.unit(150, "lb"),
  16650. name: "Front",
  16651. image: {
  16652. source: "./media/characters/shard/front.svg",
  16653. extra: 273 / 238,
  16654. bottom: 0.02
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(3 + 6 / 12, "feet"),
  16662. default: true
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16668. {
  16669. front: {
  16670. height: math.unit(5 + 11 / 12, "feet"),
  16671. weight: math.unit(146, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/ashe/front.svg",
  16675. extra: 400 / 373,
  16676. bottom: 0.01
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Normal",
  16683. height: math.unit(5 + 11 / 12, "feet"),
  16684. default: true
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16690. {
  16691. front: {
  16692. height: math.unit(5 + 5 / 12, "feet"),
  16693. weight: math.unit(135, "lb"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/beatrix/front.svg",
  16697. extra: 392 / 379,
  16698. bottom: 0.01
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(6, "feet"),
  16706. default: true
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16712. {
  16713. front: {
  16714. height: math.unit(6 + 2/12, "feet"),
  16715. weight: math.unit(135, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/ignatius/front.svg",
  16719. extra: 1380/1259,
  16720. bottom: 27/1407
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(6 + 2/12, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(6 + 2 / 12, "feet"),
  16737. weight: math.unit(138, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/mei-li/front.svg",
  16741. extra: 237 / 229,
  16742. bottom: 0.03
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Normal",
  16749. height: math.unit(6 + 2 / 12, "feet"),
  16750. default: true
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16756. {
  16757. front: {
  16758. height: math.unit(2 + 4 / 12, "feet"),
  16759. weight: math.unit(62, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/puru/front.svg",
  16763. extra: 206 / 149,
  16764. bottom: 0.06
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(2 + 4 / 12, "feet"),
  16772. default: true
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16778. {
  16779. anthro: {
  16780. height: math.unit(5 + 8/12, "feet"),
  16781. weight: math.unit(200, "lb"),
  16782. energyNeed: math.unit(2000, "kcal"),
  16783. name: "Anthro",
  16784. image: {
  16785. source: "./media/characters/kee/anthro.svg",
  16786. extra: 3251/3184,
  16787. bottom: 250/3501
  16788. }
  16789. },
  16790. taur: {
  16791. height: math.unit(11, "feet"),
  16792. weight: math.unit(500, "lb"),
  16793. energyNeed: math.unit(5000, "kcal"),
  16794. name: "Taur",
  16795. image: {
  16796. source: "./media/characters/kee/taur.svg",
  16797. extra: 1362/1320,
  16798. bottom: 83/1445
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Normal",
  16805. height: math.unit(5 + 8/12, "feet"),
  16806. default: true
  16807. },
  16808. {
  16809. name: "Macro",
  16810. height: math.unit(35, "feet")
  16811. },
  16812. ]
  16813. ))
  16814. characterMakers.push(() => makeCharacter(
  16815. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16816. {
  16817. anthro: {
  16818. height: math.unit(7, "feet"),
  16819. weight: math.unit(190, "lb"),
  16820. name: "Anthro",
  16821. image: {
  16822. source: "./media/characters/cobalt-dracha/anthro.svg",
  16823. extra: 231 / 225,
  16824. bottom: 0.04
  16825. }
  16826. },
  16827. feral: {
  16828. height: math.unit(9 + 7 / 12, "feet"),
  16829. weight: math.unit(294, "lb"),
  16830. name: "Feral",
  16831. image: {
  16832. source: "./media/characters/cobalt-dracha/feral.svg",
  16833. extra: 692 / 633,
  16834. bottom: 0.05
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(7, "feet"),
  16842. default: true
  16843. },
  16844. ]
  16845. ))
  16846. characterMakers.push(() => makeCharacter(
  16847. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16848. {
  16849. fallen: {
  16850. height: math.unit(11 + 8 / 12, "feet"),
  16851. weight: math.unit(485, "lb"),
  16852. name: "Java (Fallen)",
  16853. rename: true,
  16854. image: {
  16855. source: "./media/characters/java/fallen.svg",
  16856. extra: 226 / 208,
  16857. bottom: 0.005
  16858. }
  16859. },
  16860. godkin: {
  16861. height: math.unit(10 + 6 / 12, "feet"),
  16862. weight: math.unit(328, "lb"),
  16863. name: "Java (Godkin)",
  16864. rename: true,
  16865. image: {
  16866. source: "./media/characters/java/godkin.svg",
  16867. extra: 1104/1068,
  16868. bottom: 36/1140
  16869. }
  16870. },
  16871. },
  16872. [
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(11 + 8 / 12, "feet"),
  16876. default: true
  16877. },
  16878. ]
  16879. ))
  16880. characterMakers.push(() => makeCharacter(
  16881. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16882. {
  16883. front: {
  16884. height: math.unit(5 + 9 / 12, "feet"),
  16885. weight: math.unit(170, "lb"),
  16886. name: "Front",
  16887. image: {
  16888. source: "./media/characters/purna/front.svg",
  16889. extra: 239 / 229,
  16890. bottom: 0.01
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(5 + 9 / 12, "feet"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16904. {
  16905. front: {
  16906. height: math.unit(5 + 9 / 12, "feet"),
  16907. weight: math.unit(142, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/kuva/front.svg",
  16911. extra: 281 / 271,
  16912. bottom: 0.006
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(5 + 9 / 12, "feet"),
  16920. default: true
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16926. {
  16927. anthro: {
  16928. height: math.unit(9 + 2 / 12, "feet"),
  16929. weight: math.unit(270, "lb"),
  16930. name: "Anthro",
  16931. image: {
  16932. source: "./media/characters/embra/anthro.svg",
  16933. extra: 200 / 187,
  16934. bottom: 0.02
  16935. }
  16936. },
  16937. feral: {
  16938. height: math.unit(18 + 8 / 12, "feet"),
  16939. weight: math.unit(576, "lb"),
  16940. name: "Feral",
  16941. image: {
  16942. source: "./media/characters/embra/feral.svg",
  16943. extra: 152 / 137,
  16944. bottom: 0.037
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(9 + 2 / 12, "feet"),
  16952. default: true
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16958. {
  16959. anthro: {
  16960. height: math.unit(10 + 9 / 12, "feet"),
  16961. weight: math.unit(224, "lb"),
  16962. name: "Anthro",
  16963. image: {
  16964. source: "./media/characters/grottos/anthro.svg",
  16965. extra: 350 / 332,
  16966. bottom: 0.045
  16967. }
  16968. },
  16969. feral: {
  16970. height: math.unit(20 + 7 / 12, "feet"),
  16971. weight: math.unit(629, "lb"),
  16972. name: "Feral",
  16973. image: {
  16974. source: "./media/characters/grottos/feral.svg",
  16975. extra: 207 / 190,
  16976. bottom: 0.05
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(10 + 9 / 12, "feet"),
  16984. default: true
  16985. },
  16986. ]
  16987. ))
  16988. characterMakers.push(() => makeCharacter(
  16989. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16990. {
  16991. anthro: {
  16992. height: math.unit(9 + 6 / 12, "feet"),
  16993. weight: math.unit(298, "lb"),
  16994. name: "Anthro",
  16995. image: {
  16996. source: "./media/characters/frifna/anthro.svg",
  16997. extra: 282 / 269,
  16998. bottom: 0.015
  16999. }
  17000. },
  17001. feral: {
  17002. height: math.unit(16 + 2 / 12, "feet"),
  17003. weight: math.unit(624, "lb"),
  17004. name: "Feral",
  17005. image: {
  17006. source: "./media/characters/frifna/feral.svg"
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(9 + 6 / 12, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17020. {
  17021. front: {
  17022. height: math.unit(6 + 2 / 12, "feet"),
  17023. weight: math.unit(168, "lb"),
  17024. name: "Front",
  17025. image: {
  17026. source: "./media/characters/elise/front.svg",
  17027. extra: 276 / 271
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Normal",
  17034. height: math.unit(6 + 2 / 12, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(5 + 10 / 12, "feet"),
  17044. weight: math.unit(210, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/glade/front.svg",
  17048. extra: 258 / 247,
  17049. bottom: 0.008
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(5 + 10 / 12, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(5 + 10 / 12, "feet"),
  17066. weight: math.unit(129, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/rina/front.svg",
  17070. extra: 266 / 255,
  17071. bottom: 0.005
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(5 + 10 / 12, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(6 + 1 / 12, "feet"),
  17088. weight: math.unit(192, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/veronica/front.svg",
  17092. extra: 319 / 309,
  17093. bottom: 0.005
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(6 + 1 / 12, "feet"),
  17101. default: true
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17107. {
  17108. front: {
  17109. height: math.unit(9 + 3 / 12, "feet"),
  17110. weight: math.unit(1100, "lb"),
  17111. name: "Front",
  17112. image: {
  17113. source: "./media/characters/braxton/front.svg",
  17114. extra: 1057 / 984,
  17115. bottom: 0.05
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(9 + 3 / 12, "feet")
  17123. },
  17124. {
  17125. name: "Giant",
  17126. height: math.unit(300, "feet"),
  17127. default: true
  17128. },
  17129. {
  17130. name: "Macro",
  17131. height: math.unit(700, "feet")
  17132. },
  17133. {
  17134. name: "Megamacro",
  17135. height: math.unit(6000, "feet")
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(6 + 7 / 12, "feet"),
  17144. weight: math.unit(150, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/blue-feyonics/front.svg",
  17148. extra: 1403 / 1306,
  17149. bottom: 0.047
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(6 + 7 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(1.8, "meters"),
  17166. weight: math.unit(60, "kg"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/maxwell/front.svg",
  17170. extra: 2060 / 1873
  17171. }
  17172. },
  17173. },
  17174. [
  17175. {
  17176. name: "Micro",
  17177. height: math.unit(1, "mm")
  17178. },
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(1.8, "meter"),
  17182. default: true
  17183. },
  17184. {
  17185. name: "Macro",
  17186. height: math.unit(30, "meters")
  17187. },
  17188. {
  17189. name: "Megamacro",
  17190. height: math.unit(10, "km")
  17191. },
  17192. ]
  17193. ))
  17194. characterMakers.push(() => makeCharacter(
  17195. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17196. {
  17197. front: {
  17198. height: math.unit(6, "feet"),
  17199. weight: math.unit(150, "lb"),
  17200. name: "Front",
  17201. image: {
  17202. source: "./media/characters/jack/front.svg",
  17203. extra: 1754 / 1640,
  17204. bottom: 0.01
  17205. }
  17206. },
  17207. },
  17208. [
  17209. {
  17210. name: "Normal",
  17211. height: math.unit(80000, "feet"),
  17212. default: true
  17213. },
  17214. {
  17215. name: "Max size",
  17216. height: math.unit(10, "lightyears")
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17222. {
  17223. urban: {
  17224. height: math.unit(5, "feet"),
  17225. weight: math.unit(240, "lb"),
  17226. name: "Urban",
  17227. image: {
  17228. source: "./media/characters/cafat/urban.svg",
  17229. extra: 1223/1126,
  17230. bottom: 205/1428
  17231. }
  17232. },
  17233. summer: {
  17234. height: math.unit(5, "feet"),
  17235. weight: math.unit(240, "lb"),
  17236. name: "Summer",
  17237. image: {
  17238. source: "./media/characters/cafat/summer.svg",
  17239. extra: 1223/1126,
  17240. bottom: 205/1428
  17241. }
  17242. },
  17243. winter: {
  17244. height: math.unit(5, "feet"),
  17245. weight: math.unit(240, "lb"),
  17246. name: "Winter",
  17247. image: {
  17248. source: "./media/characters/cafat/winter.svg",
  17249. extra: 1223/1126,
  17250. bottom: 205/1428
  17251. }
  17252. },
  17253. lingerie: {
  17254. height: math.unit(5, "feet"),
  17255. weight: math.unit(240, "lb"),
  17256. name: "Lingerie",
  17257. image: {
  17258. source: "./media/characters/cafat/lingerie.svg",
  17259. extra: 1223/1126,
  17260. bottom: 205/1428
  17261. }
  17262. },
  17263. upright: {
  17264. height: math.unit(6.3, "feet"),
  17265. weight: math.unit(240, "lb"),
  17266. name: "Upright",
  17267. image: {
  17268. source: "./media/characters/cafat/upright.svg",
  17269. bottom: 0.01
  17270. }
  17271. },
  17272. uprightFull: {
  17273. height: math.unit(6.3, "feet"),
  17274. weight: math.unit(240, "lb"),
  17275. name: "Upright (Full)",
  17276. image: {
  17277. source: "./media/characters/cafat/upright-full.svg",
  17278. bottom: 0.01
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Small",
  17285. height: math.unit(5, "feet"),
  17286. default: true
  17287. },
  17288. {
  17289. name: "Large",
  17290. height: math.unit(13, "feet")
  17291. },
  17292. ]
  17293. ))
  17294. characterMakers.push(() => makeCharacter(
  17295. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17296. {
  17297. front: {
  17298. height: math.unit(6, "feet"),
  17299. weight: math.unit(150, "lb"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/verin-raharra/front.svg",
  17303. extra: 5019 / 4835,
  17304. bottom: 0.023
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Normal",
  17311. height: math.unit(7 + 5 / 12, "feet"),
  17312. default: true
  17313. },
  17314. {
  17315. name: "Upsized",
  17316. height: math.unit(20, "feet")
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17322. {
  17323. front: {
  17324. height: math.unit(7, "feet"),
  17325. weight: math.unit(230, "lb"),
  17326. name: "Front",
  17327. image: {
  17328. source: "./media/characters/nakata/front.svg",
  17329. extra: 1.005,
  17330. bottom: 0.01
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Normal",
  17337. height: math.unit(7, "feet"),
  17338. default: true
  17339. },
  17340. {
  17341. name: "Big",
  17342. height: math.unit(14, "feet")
  17343. },
  17344. {
  17345. name: "Macro",
  17346. height: math.unit(400, "feet")
  17347. },
  17348. ]
  17349. ))
  17350. characterMakers.push(() => makeCharacter(
  17351. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17352. {
  17353. front: {
  17354. height: math.unit(4.91, "feet"),
  17355. weight: math.unit(100, "lb"),
  17356. name: "Front",
  17357. image: {
  17358. source: "./media/characters/lily/front.svg",
  17359. extra: 1585 / 1415,
  17360. bottom: 0.02
  17361. }
  17362. },
  17363. },
  17364. [
  17365. {
  17366. name: "Normal",
  17367. height: math.unit(4.91, "feet"),
  17368. default: true
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17374. {
  17375. laying: {
  17376. height: math.unit(4 + 4 / 12, "feet"),
  17377. weight: math.unit(600, "lb"),
  17378. name: "Laying",
  17379. image: {
  17380. source: "./media/characters/sheila/laying.svg",
  17381. extra: 1333 / 1265,
  17382. bottom: 0.16
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(4 + 4 / 12, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17396. {
  17397. front: {
  17398. height: math.unit(6, "feet"),
  17399. weight: math.unit(190, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/sax/front.svg",
  17403. extra: 1187 / 973,
  17404. bottom: 0.042
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Micro",
  17411. height: math.unit(4, "inches"),
  17412. default: true
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(6, "feet"),
  17421. weight: math.unit(150, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/pandora/front.svg",
  17425. extra: 2720 / 2556,
  17426. bottom: 0.015
  17427. }
  17428. },
  17429. back: {
  17430. height: math.unit(6, "feet"),
  17431. weight: math.unit(150, "lb"),
  17432. name: "Back",
  17433. image: {
  17434. source: "./media/characters/pandora/back.svg",
  17435. extra: 2720 / 2556,
  17436. bottom: 0.01
  17437. }
  17438. },
  17439. beans: {
  17440. height: math.unit(6 / 8, "feet"),
  17441. name: "Beans",
  17442. image: {
  17443. source: "./media/characters/pandora/beans.svg"
  17444. }
  17445. },
  17446. collar: {
  17447. height: math.unit(0.31, "feet"),
  17448. name: "Collar",
  17449. image: {
  17450. source: "./media/characters/pandora/collar.svg"
  17451. }
  17452. },
  17453. skirt: {
  17454. height: math.unit(6, "feet"),
  17455. weight: math.unit(150, "lb"),
  17456. name: "Skirt",
  17457. image: {
  17458. source: "./media/characters/pandora/skirt.svg",
  17459. extra: 1622 / 1525,
  17460. bottom: 0.015
  17461. }
  17462. },
  17463. hoodie: {
  17464. height: math.unit(6, "feet"),
  17465. weight: math.unit(150, "lb"),
  17466. name: "Hoodie",
  17467. image: {
  17468. source: "./media/characters/pandora/hoodie.svg",
  17469. extra: 1622 / 1525,
  17470. bottom: 0.015
  17471. }
  17472. },
  17473. casual: {
  17474. height: math.unit(6, "feet"),
  17475. weight: math.unit(150, "lb"),
  17476. name: "Casual",
  17477. image: {
  17478. source: "./media/characters/pandora/casual.svg",
  17479. extra: 1622 / 1525,
  17480. bottom: 0.015
  17481. }
  17482. },
  17483. },
  17484. [
  17485. {
  17486. name: "Normal",
  17487. height: math.unit(6, "feet")
  17488. },
  17489. {
  17490. name: "Big Steppy",
  17491. height: math.unit(1, "km"),
  17492. default: true
  17493. },
  17494. {
  17495. name: "Galactic Steppy",
  17496. height: math.unit(2, "gigameters")
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17502. {
  17503. side: {
  17504. height: math.unit(10, "feet"),
  17505. weight: math.unit(800, "kg"),
  17506. name: "Side",
  17507. image: {
  17508. source: "./media/characters/venio-darcony/side.svg",
  17509. extra: 1373 / 1003,
  17510. bottom: 0.037
  17511. }
  17512. },
  17513. front: {
  17514. height: math.unit(19, "feet"),
  17515. weight: math.unit(800, "kg"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/venio-darcony/front.svg"
  17519. }
  17520. },
  17521. back: {
  17522. height: math.unit(19, "feet"),
  17523. weight: math.unit(800, "kg"),
  17524. name: "Back",
  17525. image: {
  17526. source: "./media/characters/venio-darcony/back.svg"
  17527. }
  17528. },
  17529. sideNsfw: {
  17530. height: math.unit(10, "feet"),
  17531. weight: math.unit(800, "kg"),
  17532. name: "Side (NSFW)",
  17533. image: {
  17534. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17535. extra: 1373 / 1003,
  17536. bottom: 0.037
  17537. }
  17538. },
  17539. frontNsfw: {
  17540. height: math.unit(19, "feet"),
  17541. weight: math.unit(800, "kg"),
  17542. name: "Front (NSFW)",
  17543. image: {
  17544. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17545. }
  17546. },
  17547. backNsfw: {
  17548. height: math.unit(19, "feet"),
  17549. weight: math.unit(800, "kg"),
  17550. name: "Back (NSFW)",
  17551. image: {
  17552. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17553. }
  17554. },
  17555. sideArmored: {
  17556. height: math.unit(10, "feet"),
  17557. weight: math.unit(800, "kg"),
  17558. name: "Side (Armored)",
  17559. image: {
  17560. source: "./media/characters/venio-darcony/side-armored.svg",
  17561. extra: 1373 / 1003,
  17562. bottom: 0.037
  17563. }
  17564. },
  17565. frontArmored: {
  17566. height: math.unit(19, "feet"),
  17567. weight: math.unit(900, "kg"),
  17568. name: "Front (Armored)",
  17569. image: {
  17570. source: "./media/characters/venio-darcony/front-armored.svg"
  17571. }
  17572. },
  17573. backArmored: {
  17574. height: math.unit(19, "feet"),
  17575. weight: math.unit(900, "kg"),
  17576. name: "Back (Armored)",
  17577. image: {
  17578. source: "./media/characters/venio-darcony/back-armored.svg"
  17579. }
  17580. },
  17581. sword: {
  17582. height: math.unit(10, "feet"),
  17583. weight: math.unit(50, "lb"),
  17584. name: "Sword",
  17585. image: {
  17586. source: "./media/characters/venio-darcony/sword.svg"
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(10, "feet")
  17594. },
  17595. {
  17596. name: "Macro",
  17597. height: math.unit(130, "feet"),
  17598. default: true
  17599. },
  17600. {
  17601. name: "Macro+",
  17602. height: math.unit(240, "feet")
  17603. },
  17604. ]
  17605. ))
  17606. characterMakers.push(() => makeCharacter(
  17607. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17608. {
  17609. front: {
  17610. height: math.unit(6, "feet"),
  17611. weight: math.unit(150, "lb"),
  17612. name: "Front",
  17613. image: {
  17614. source: "./media/characters/veski/front.svg",
  17615. extra: 1299 / 1225,
  17616. bottom: 0.04
  17617. }
  17618. },
  17619. back: {
  17620. height: math.unit(6, "feet"),
  17621. weight: math.unit(150, "lb"),
  17622. name: "Back",
  17623. image: {
  17624. source: "./media/characters/veski/back.svg",
  17625. extra: 1299 / 1225,
  17626. bottom: 0.008
  17627. }
  17628. },
  17629. maw: {
  17630. height: math.unit(1.5 * 1.21, "feet"),
  17631. name: "Maw",
  17632. image: {
  17633. source: "./media/characters/veski/maw.svg"
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Macro",
  17640. height: math.unit(2, "km"),
  17641. default: true
  17642. },
  17643. ]
  17644. ))
  17645. characterMakers.push(() => makeCharacter(
  17646. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17647. {
  17648. front: {
  17649. height: math.unit(5 + 7 / 12, "feet"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/isabelle/front.svg",
  17653. extra: 2130 / 1976,
  17654. bottom: 0.05
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Supermicro",
  17661. height: math.unit(10, "micrometers")
  17662. },
  17663. {
  17664. name: "Micro",
  17665. height: math.unit(1, "inch")
  17666. },
  17667. {
  17668. name: "Tiny",
  17669. height: math.unit(5, "inches")
  17670. },
  17671. {
  17672. name: "Standard",
  17673. height: math.unit(5 + 7 / 12, "inches")
  17674. },
  17675. {
  17676. name: "Macro",
  17677. height: math.unit(80, "meters"),
  17678. default: true
  17679. },
  17680. {
  17681. name: "Megamacro",
  17682. height: math.unit(250, "meters")
  17683. },
  17684. {
  17685. name: "Gigamacro",
  17686. height: math.unit(5, "km")
  17687. },
  17688. {
  17689. name: "Cosmic",
  17690. height: math.unit(2.5e6, "miles")
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17696. {
  17697. front: {
  17698. height: math.unit(6, "feet"),
  17699. weight: math.unit(150, "lb"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/hanzo/front.svg",
  17703. extra: 374 / 344,
  17704. bottom: 0.02
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(8, "feet"),
  17712. default: true
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(7, "feet"),
  17721. weight: math.unit(130, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/anna/front.svg",
  17725. extra: 169 / 145,
  17726. bottom: 0.06
  17727. }
  17728. },
  17729. full: {
  17730. height: math.unit(4.96, "feet"),
  17731. weight: math.unit(220, "lb"),
  17732. name: "Full",
  17733. image: {
  17734. source: "./media/characters/anna/full.svg",
  17735. extra: 138 / 114,
  17736. bottom: 0.15
  17737. }
  17738. },
  17739. tongue: {
  17740. height: math.unit(2.53, "feet"),
  17741. name: "Tongue",
  17742. image: {
  17743. source: "./media/characters/anna/tongue.svg"
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(7, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(7, "feet"),
  17760. weight: math.unit(150, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/ian-corvid/front.svg",
  17764. extra: 150 / 142,
  17765. bottom: 0.02
  17766. }
  17767. },
  17768. back: {
  17769. height: math.unit(7, "feet"),
  17770. weight: math.unit(150, "lb"),
  17771. name: "Back",
  17772. image: {
  17773. source: "./media/characters/ian-corvid/back.svg",
  17774. extra: 150 / 143,
  17775. bottom: 0.01
  17776. }
  17777. },
  17778. stomping: {
  17779. height: math.unit(7, "feet"),
  17780. weight: math.unit(150, "lb"),
  17781. name: "Stomping",
  17782. image: {
  17783. source: "./media/characters/ian-corvid/stomping.svg",
  17784. extra: 76 / 72
  17785. }
  17786. },
  17787. sitting: {
  17788. height: math.unit(7 / 1.8, "feet"),
  17789. weight: math.unit(150, "lb"),
  17790. name: "Sitting",
  17791. image: {
  17792. source: "./media/characters/ian-corvid/sitting.svg",
  17793. extra: 1400 / 1269,
  17794. bottom: 0.15
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Tiny Microw",
  17801. height: math.unit(1, "inch")
  17802. },
  17803. {
  17804. name: "Microw",
  17805. height: math.unit(6, "inches")
  17806. },
  17807. {
  17808. name: "Crow",
  17809. height: math.unit(7 + 1 / 12, "feet"),
  17810. default: true
  17811. },
  17812. {
  17813. name: "Macrow",
  17814. height: math.unit(176, "feet")
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17820. {
  17821. front: {
  17822. height: math.unit(5 + 7 / 12, "feet"),
  17823. weight: math.unit(147, "lb"),
  17824. name: "Front",
  17825. image: {
  17826. source: "./media/characters/natalie-kellon/front.svg",
  17827. extra: 1214 / 1141,
  17828. bottom: 0.02
  17829. }
  17830. },
  17831. },
  17832. [
  17833. {
  17834. name: "Micro",
  17835. height: math.unit(1 / 16, "inch")
  17836. },
  17837. {
  17838. name: "Tiny",
  17839. height: math.unit(4, "inches")
  17840. },
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(5 + 7 / 12, "feet"),
  17844. default: true
  17845. },
  17846. {
  17847. name: "Amazon",
  17848. height: math.unit(12, "feet")
  17849. },
  17850. {
  17851. name: "Giantess",
  17852. height: math.unit(160, "meters")
  17853. },
  17854. {
  17855. name: "Titaness",
  17856. height: math.unit(800, "meters")
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17862. {
  17863. front: {
  17864. height: math.unit(6, "feet"),
  17865. weight: math.unit(150, "lb"),
  17866. name: "Front",
  17867. image: {
  17868. source: "./media/characters/alluria/front.svg",
  17869. extra: 806 / 738,
  17870. bottom: 0.01
  17871. }
  17872. },
  17873. side: {
  17874. height: math.unit(6, "feet"),
  17875. weight: math.unit(150, "lb"),
  17876. name: "Side",
  17877. image: {
  17878. source: "./media/characters/alluria/side.svg",
  17879. extra: 800 / 750,
  17880. }
  17881. },
  17882. back: {
  17883. height: math.unit(6, "feet"),
  17884. weight: math.unit(150, "lb"),
  17885. name: "Back",
  17886. image: {
  17887. source: "./media/characters/alluria/back.svg",
  17888. extra: 806 / 738,
  17889. }
  17890. },
  17891. frontMaid: {
  17892. height: math.unit(6, "feet"),
  17893. weight: math.unit(150, "lb"),
  17894. name: "Front (Maid)",
  17895. image: {
  17896. source: "./media/characters/alluria/front-maid.svg",
  17897. extra: 806 / 738,
  17898. bottom: 0.01
  17899. }
  17900. },
  17901. sideMaid: {
  17902. height: math.unit(6, "feet"),
  17903. weight: math.unit(150, "lb"),
  17904. name: "Side (Maid)",
  17905. image: {
  17906. source: "./media/characters/alluria/side-maid.svg",
  17907. extra: 800 / 750,
  17908. bottom: 0.005
  17909. }
  17910. },
  17911. backMaid: {
  17912. height: math.unit(6, "feet"),
  17913. weight: math.unit(150, "lb"),
  17914. name: "Back (Maid)",
  17915. image: {
  17916. source: "./media/characters/alluria/back-maid.svg",
  17917. extra: 806 / 738,
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Micro",
  17924. height: math.unit(6, "inches"),
  17925. default: true
  17926. },
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17931. {
  17932. front: {
  17933. height: math.unit(6, "feet"),
  17934. weight: math.unit(150, "lb"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/kyle/front.svg",
  17938. extra: 1069 / 962,
  17939. bottom: 77.228 / 1727.45
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Macro",
  17946. height: math.unit(150, "feet"),
  17947. default: true
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(6, "feet"),
  17956. weight: math.unit(300, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/duncan/front.svg",
  17960. extra: 1650 / 1482,
  17961. bottom: 0.05
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Macro",
  17968. height: math.unit(100, "feet"),
  17969. default: true
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17975. {
  17976. front: {
  17977. height: math.unit(5 + 4 / 12, "feet"),
  17978. weight: math.unit(220, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/memory/front.svg",
  17982. extra: 3641 / 3545,
  17983. bottom: 0.03
  17984. }
  17985. },
  17986. back: {
  17987. height: math.unit(5 + 4 / 12, "feet"),
  17988. weight: math.unit(220, "lb"),
  17989. name: "Back",
  17990. image: {
  17991. source: "./media/characters/memory/back.svg",
  17992. extra: 3641 / 3545,
  17993. bottom: 0.025
  17994. }
  17995. },
  17996. frontSkirt: {
  17997. height: math.unit(5 + 4 / 12, "feet"),
  17998. weight: math.unit(220, "lb"),
  17999. name: "Front (Skirt)",
  18000. image: {
  18001. source: "./media/characters/memory/front-skirt.svg",
  18002. extra: 3641 / 3545,
  18003. bottom: 0.03
  18004. }
  18005. },
  18006. frontDress: {
  18007. height: math.unit(5 + 4 / 12, "feet"),
  18008. weight: math.unit(220, "lb"),
  18009. name: "Front (Dress)",
  18010. image: {
  18011. source: "./media/characters/memory/front-dress.svg",
  18012. extra: 3641 / 3545,
  18013. bottom: 0.03
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Micro",
  18020. height: math.unit(6, "inches"),
  18021. default: true
  18022. },
  18023. {
  18024. name: "Normal",
  18025. height: math.unit(5 + 4 / 12, "feet")
  18026. },
  18027. ]
  18028. ))
  18029. characterMakers.push(() => makeCharacter(
  18030. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18031. {
  18032. front: {
  18033. height: math.unit(4 + 11 / 12, "feet"),
  18034. weight: math.unit(100, "lb"),
  18035. name: "Front",
  18036. image: {
  18037. source: "./media/characters/luno/front.svg",
  18038. extra: 1535 / 1487,
  18039. bottom: 0.03
  18040. }
  18041. },
  18042. },
  18043. [
  18044. {
  18045. name: "Micro",
  18046. height: math.unit(3, "inches")
  18047. },
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(4 + 11 / 12, "feet"),
  18051. default: true
  18052. },
  18053. {
  18054. name: "Macro",
  18055. height: math.unit(300, "feet")
  18056. },
  18057. {
  18058. name: "Megamacro",
  18059. height: math.unit(700, "miles")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(6 + 2 / 12, "feet"),
  18068. weight: math.unit(170, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/jamesy/front.svg",
  18072. extra: 440 / 382,
  18073. bottom: 0.005
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Micro",
  18080. height: math.unit(3, "inches")
  18081. },
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(6 + 2 / 12, "feet"),
  18085. default: true
  18086. },
  18087. {
  18088. name: "Macro",
  18089. height: math.unit(300, "feet")
  18090. },
  18091. {
  18092. name: "Megamacro",
  18093. height: math.unit(700, "miles")
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18099. {
  18100. front: {
  18101. height: math.unit(6, "feet"),
  18102. weight: math.unit(160, "lb"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/mark/front.svg",
  18106. extra: 3300 / 3100,
  18107. bottom: 136.42 / 3440.47
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Macro",
  18114. height: math.unit(120, "meters")
  18115. },
  18116. {
  18117. name: "Bigger Macro",
  18118. height: math.unit(350, "meters")
  18119. },
  18120. {
  18121. name: "Megamacro",
  18122. height: math.unit(8, "km"),
  18123. default: true
  18124. },
  18125. {
  18126. name: "Continental",
  18127. height: math.unit(4550, "km")
  18128. },
  18129. {
  18130. name: "Planetary",
  18131. height: math.unit(65000, "km")
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(6, "feet"),
  18140. weight: math.unit(400, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/mac/front.svg",
  18144. extra: 1048 / 987.7,
  18145. bottom: 60 / 1107.6,
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Macro",
  18152. height: math.unit(500, "feet"),
  18153. default: true
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(5 + 2 / 12, "feet"),
  18162. weight: math.unit(190, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/bari/front.svg",
  18166. extra: 3156 / 2880,
  18167. bottom: 0.03
  18168. }
  18169. },
  18170. back: {
  18171. height: math.unit(5 + 2 / 12, "feet"),
  18172. weight: math.unit(190, "lb"),
  18173. name: "Back",
  18174. image: {
  18175. source: "./media/characters/bari/back.svg",
  18176. extra: 3260 / 2834,
  18177. bottom: 0.025
  18178. }
  18179. },
  18180. frontPlush: {
  18181. height: math.unit(5 + 2 / 12, "feet"),
  18182. weight: math.unit(190, "lb"),
  18183. name: "Front (Plush)",
  18184. image: {
  18185. source: "./media/characters/bari/front-plush.svg",
  18186. extra: 1112 / 1061,
  18187. bottom: 0.002
  18188. }
  18189. },
  18190. },
  18191. [
  18192. {
  18193. name: "Micro",
  18194. height: math.unit(3, "inches")
  18195. },
  18196. {
  18197. name: "Normal",
  18198. height: math.unit(5 + 2 / 12, "feet"),
  18199. default: true
  18200. },
  18201. {
  18202. name: "Macro",
  18203. height: math.unit(20, "feet")
  18204. },
  18205. ]
  18206. ))
  18207. characterMakers.push(() => makeCharacter(
  18208. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18209. {
  18210. front: {
  18211. height: math.unit(6 + 1 / 12, "feet"),
  18212. weight: math.unit(275, "lb"),
  18213. name: "Front",
  18214. image: {
  18215. source: "./media/characters/hunter-misha-raven/front.svg"
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Mortal",
  18222. height: math.unit(6 + 1 / 12, "feet")
  18223. },
  18224. {
  18225. name: "Divine",
  18226. height: math.unit(1.12134e34, "parsecs"),
  18227. default: true
  18228. },
  18229. ]
  18230. ))
  18231. characterMakers.push(() => makeCharacter(
  18232. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18233. {
  18234. front: {
  18235. height: math.unit(6 + 3 / 12, "feet"),
  18236. weight: math.unit(220, "lb"),
  18237. name: "Front",
  18238. image: {
  18239. source: "./media/characters/max-calore/front.svg",
  18240. extra: 1700 / 1648,
  18241. bottom: 0.01
  18242. }
  18243. },
  18244. back: {
  18245. height: math.unit(6 + 3 / 12, "feet"),
  18246. weight: math.unit(220, "lb"),
  18247. name: "Back",
  18248. image: {
  18249. source: "./media/characters/max-calore/back.svg",
  18250. extra: 1700 / 1648,
  18251. bottom: 0.01
  18252. }
  18253. },
  18254. },
  18255. [
  18256. {
  18257. name: "Normal",
  18258. height: math.unit(6 + 3 / 12, "feet"),
  18259. default: true
  18260. },
  18261. ]
  18262. ))
  18263. characterMakers.push(() => makeCharacter(
  18264. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18265. {
  18266. side: {
  18267. height: math.unit(2 + 8 / 12, "feet"),
  18268. weight: math.unit(99, "lb"),
  18269. name: "Side",
  18270. image: {
  18271. source: "./media/characters/aspen/side.svg",
  18272. extra: 152 / 138,
  18273. bottom: 0.032
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Normal",
  18280. height: math.unit(2 + 8 / 12, "feet"),
  18281. default: true
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18287. {
  18288. side: {
  18289. height: math.unit(3 + 2 / 12, "feet"),
  18290. weight: math.unit(224, "lb"),
  18291. name: "Side",
  18292. image: {
  18293. source: "./media/characters/sheila-feral-wolf/side.svg",
  18294. extra: 179 / 166,
  18295. bottom: 0.03
  18296. }
  18297. },
  18298. },
  18299. [
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(3 + 2 / 12, "feet"),
  18303. default: true
  18304. },
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18309. {
  18310. side: {
  18311. height: math.unit(1 + 9 / 12, "feet"),
  18312. weight: math.unit(38, "lb"),
  18313. name: "Side",
  18314. image: {
  18315. source: "./media/characters/michelle/side.svg",
  18316. extra: 147 / 136.7,
  18317. bottom: 0.03
  18318. }
  18319. },
  18320. },
  18321. [
  18322. {
  18323. name: "Normal",
  18324. height: math.unit(1 + 9 / 12, "feet"),
  18325. default: true
  18326. },
  18327. ]
  18328. ))
  18329. characterMakers.push(() => makeCharacter(
  18330. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18331. {
  18332. front: {
  18333. height: math.unit(1.54, "feet"),
  18334. weight: math.unit(50, "lb"),
  18335. name: "Front",
  18336. image: {
  18337. source: "./media/characters/nino/front.svg"
  18338. }
  18339. },
  18340. },
  18341. [
  18342. {
  18343. name: "Normal",
  18344. height: math.unit(1.54, "feet"),
  18345. default: true
  18346. },
  18347. ]
  18348. ))
  18349. characterMakers.push(() => makeCharacter(
  18350. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18351. {
  18352. front: {
  18353. height: math.unit(1.49, "feet"),
  18354. weight: math.unit(45, "lb"),
  18355. name: "Front",
  18356. image: {
  18357. source: "./media/characters/viola/front.svg"
  18358. }
  18359. },
  18360. },
  18361. [
  18362. {
  18363. name: "Normal",
  18364. height: math.unit(1.49, "feet"),
  18365. default: true
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18371. {
  18372. front: {
  18373. height: math.unit(6 + 5 / 12, "feet"),
  18374. weight: math.unit(580, "lb"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/atlas/front.svg",
  18378. extra: 298.5 / 290,
  18379. bottom: 0.015
  18380. }
  18381. },
  18382. },
  18383. [
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(6 + 5 / 12, "feet"),
  18387. default: true
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18393. {
  18394. side: {
  18395. height: math.unit(15.6, "inches"),
  18396. weight: math.unit(10, "lb"),
  18397. name: "Side",
  18398. image: {
  18399. source: "./media/characters/davy/side.svg",
  18400. extra: 200 / 170,
  18401. bottom: 0.01
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Normal",
  18408. height: math.unit(15.6, "inches"),
  18409. default: true
  18410. },
  18411. ]
  18412. ))
  18413. characterMakers.push(() => makeCharacter(
  18414. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18415. {
  18416. side: {
  18417. height: math.unit(4 + 8 / 12, "feet"),
  18418. weight: math.unit(166, "lb"),
  18419. name: "Side",
  18420. image: {
  18421. source: "./media/characters/fiona/side.svg",
  18422. extra: 232 / 220,
  18423. bottom: 0.03
  18424. }
  18425. },
  18426. },
  18427. [
  18428. {
  18429. name: "Normal",
  18430. height: math.unit(4 + 8 / 12, "feet"),
  18431. default: true
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18437. {
  18438. front: {
  18439. height: math.unit(26, "inches"),
  18440. weight: math.unit(35, "lb"),
  18441. name: "Front",
  18442. image: {
  18443. source: "./media/characters/lyla/front.svg",
  18444. bottom: 0.1
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(3, "feet"),
  18452. default: true
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18458. {
  18459. side: {
  18460. height: math.unit(1.8, "feet"),
  18461. weight: math.unit(44, "lb"),
  18462. name: "Side",
  18463. image: {
  18464. source: "./media/characters/perseus/side.svg",
  18465. bottom: 0.21
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Normal",
  18472. height: math.unit(1.8, "feet"),
  18473. default: true
  18474. },
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18479. {
  18480. side: {
  18481. height: math.unit(4 + 2 / 12, "feet"),
  18482. weight: math.unit(20, "lb"),
  18483. name: "Side",
  18484. image: {
  18485. source: "./media/characters/remus/side.svg"
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(4 + 2 / 12, "feet"),
  18493. default: true
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18499. {
  18500. front: {
  18501. height: math.unit(4 + 11 / 12, "feet"),
  18502. weight: math.unit(114, "lb"),
  18503. name: "Front",
  18504. image: {
  18505. source: "./media/characters/raf/front.svg",
  18506. extra: 1504/1339,
  18507. bottom: 26/1530
  18508. }
  18509. },
  18510. side: {
  18511. height: math.unit(4 + 11 / 12, "feet"),
  18512. weight: math.unit(114, "lb"),
  18513. name: "Side",
  18514. image: {
  18515. source: "./media/characters/raf/side.svg",
  18516. extra: 1466/1316,
  18517. bottom: 29/1495
  18518. }
  18519. },
  18520. paw: {
  18521. height: math.unit(1.45, "feet"),
  18522. name: "Paw",
  18523. image: {
  18524. source: "./media/characters/raf/paw.svg"
  18525. },
  18526. extraAttributes: {
  18527. "toeSize": {
  18528. name: "Toe Size",
  18529. power: 2,
  18530. type: "area",
  18531. base: math.unit(0.004, "m^2")
  18532. },
  18533. "padSize": {
  18534. name: "Pad Size",
  18535. power: 2,
  18536. type: "area",
  18537. base: math.unit(0.04, "m^2")
  18538. },
  18539. "footSize": {
  18540. name: "Foot Size",
  18541. power: 2,
  18542. type: "area",
  18543. base: math.unit(0.08, "m^2")
  18544. },
  18545. }
  18546. },
  18547. },
  18548. [
  18549. {
  18550. name: "Micro",
  18551. height: math.unit(2, "inches")
  18552. },
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(4 + 11 / 12, "feet"),
  18556. default: true
  18557. },
  18558. {
  18559. name: "Macro",
  18560. height: math.unit(70, "feet")
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18566. {
  18567. front: {
  18568. height: math.unit(1.5, "meters"),
  18569. weight: math.unit(68, "kg"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/liam-einarr/front.svg",
  18573. extra: 2822 / 2666
  18574. }
  18575. },
  18576. back: {
  18577. height: math.unit(1.5, "meters"),
  18578. weight: math.unit(68, "kg"),
  18579. name: "Back",
  18580. image: {
  18581. source: "./media/characters/liam-einarr/back.svg",
  18582. extra: 2822 / 2666,
  18583. bottom: 0.015
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Normal",
  18590. height: math.unit(1.5, "meters"),
  18591. default: true
  18592. },
  18593. {
  18594. name: "Macro",
  18595. height: math.unit(150, "meters")
  18596. },
  18597. {
  18598. name: "Megamacro",
  18599. height: math.unit(35, "km")
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(6, "feet"),
  18608. weight: math.unit(75, "kg"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/linda/front.svg",
  18612. extra: 930 / 874,
  18613. bottom: 0.004
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(6, "feet"),
  18621. default: true
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(6 + 8 / 12, "feet"),
  18630. weight: math.unit(220, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/caylex/front.svg",
  18634. extra: 821 / 772,
  18635. bottom: 0.07
  18636. }
  18637. },
  18638. back: {
  18639. height: math.unit(6 + 8 / 12, "feet"),
  18640. weight: math.unit(220, "lb"),
  18641. name: "Back",
  18642. image: {
  18643. source: "./media/characters/caylex/back.svg",
  18644. extra: 821 / 772,
  18645. bottom: 0.022
  18646. }
  18647. },
  18648. hand: {
  18649. height: math.unit(1.25, "feet"),
  18650. name: "Hand",
  18651. image: {
  18652. source: "./media/characters/caylex/hand.svg"
  18653. }
  18654. },
  18655. foot: {
  18656. height: math.unit(1.6, "feet"),
  18657. name: "Foot",
  18658. image: {
  18659. source: "./media/characters/caylex/foot.svg"
  18660. }
  18661. },
  18662. armored: {
  18663. height: math.unit(6 + 8 / 12, "feet"),
  18664. weight: math.unit(250, "lb"),
  18665. name: "Armored",
  18666. image: {
  18667. source: "./media/characters/caylex/armored.svg",
  18668. extra: 1420 / 1310,
  18669. bottom: 0.045
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(6 + 8 / 12, "feet"),
  18677. default: true
  18678. },
  18679. {
  18680. name: "Normal+",
  18681. height: math.unit(12, "feet")
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18687. {
  18688. front: {
  18689. height: math.unit(7 + 6 / 12, "feet"),
  18690. weight: math.unit(288, "lb"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/alana/front.svg",
  18694. extra: 679 / 653,
  18695. bottom: 22.5 / 701
  18696. }
  18697. },
  18698. },
  18699. [
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(7 + 6 / 12, "feet")
  18703. },
  18704. {
  18705. name: "Large",
  18706. height: math.unit(50, "feet")
  18707. },
  18708. {
  18709. name: "Macro",
  18710. height: math.unit(100, "feet"),
  18711. default: true
  18712. },
  18713. {
  18714. name: "Macro+",
  18715. height: math.unit(200, "feet")
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(6 + 1 / 12, "feet"),
  18724. weight: math.unit(210, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/hasani/front.svg",
  18728. extra: 244 / 232,
  18729. bottom: 0.01
  18730. }
  18731. },
  18732. back: {
  18733. height: math.unit(6 + 1 / 12, "feet"),
  18734. weight: math.unit(210, "lb"),
  18735. name: "Back",
  18736. image: {
  18737. source: "./media/characters/hasani/back.svg",
  18738. extra: 244 / 232,
  18739. bottom: 0.01
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(6 + 1 / 12, "feet")
  18747. },
  18748. {
  18749. name: "Macro",
  18750. height: math.unit(175, "feet"),
  18751. default: true
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18757. {
  18758. front: {
  18759. height: math.unit(1.82, "meters"),
  18760. weight: math.unit(140, "lb"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/nita/front.svg",
  18764. extra: 2473 / 2363,
  18765. bottom: 0.01
  18766. }
  18767. },
  18768. },
  18769. [
  18770. {
  18771. name: "Normal",
  18772. height: math.unit(1.82, "m")
  18773. },
  18774. {
  18775. name: "Macro",
  18776. height: math.unit(300, "m")
  18777. },
  18778. {
  18779. name: "Mistake Canon",
  18780. height: math.unit(0.5, "miles"),
  18781. default: true
  18782. },
  18783. {
  18784. name: "Big Mistake",
  18785. height: math.unit(13, "miles")
  18786. },
  18787. {
  18788. name: "Playing God",
  18789. height: math.unit(2450, "miles")
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(4, "feet"),
  18798. weight: math.unit(120, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/shiriko/front.svg",
  18802. extra: 970/934,
  18803. bottom: 5/975
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Normal",
  18810. height: math.unit(4, "feet"),
  18811. default: true
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(6, "feet"),
  18820. name: "front",
  18821. image: {
  18822. source: "./media/characters/deja/front.svg",
  18823. extra: 926 / 840,
  18824. bottom: 0.07
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Planck Length",
  18831. height: math.unit(1.6e-35, "meters")
  18832. },
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(30.48, "meters"),
  18836. default: true
  18837. },
  18838. {
  18839. name: "Universal",
  18840. height: math.unit(8.8e26, "meters")
  18841. },
  18842. ]
  18843. ))
  18844. characterMakers.push(() => makeCharacter(
  18845. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18846. {
  18847. side: {
  18848. height: math.unit(8, "feet"),
  18849. weight: math.unit(6300, "lb"),
  18850. name: "Side",
  18851. image: {
  18852. source: "./media/characters/anima/side.svg",
  18853. bottom: 0.035
  18854. }
  18855. },
  18856. },
  18857. [
  18858. {
  18859. name: "Normal",
  18860. height: math.unit(8, "feet"),
  18861. default: true
  18862. },
  18863. ]
  18864. ))
  18865. characterMakers.push(() => makeCharacter(
  18866. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18867. {
  18868. front: {
  18869. height: math.unit(8, "feet"),
  18870. weight: math.unit(350, "lb"),
  18871. name: "Front",
  18872. image: {
  18873. source: "./media/characters/bianca/front.svg",
  18874. extra: 234 / 225,
  18875. bottom: 0.03
  18876. }
  18877. },
  18878. },
  18879. [
  18880. {
  18881. name: "Normal",
  18882. height: math.unit(8, "feet"),
  18883. default: true
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(11 + 5/12, "feet"),
  18892. weight: math.unit(1200, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/adinia/front.svg",
  18896. extra: 1767/1641,
  18897. bottom: 44/1811
  18898. },
  18899. extraAttributes: {
  18900. "energyIntake": {
  18901. name: "Energy Intake",
  18902. power: 3,
  18903. type: "energy",
  18904. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18905. },
  18906. }
  18907. },
  18908. back: {
  18909. height: math.unit(11 + 5/12, "feet"),
  18910. weight: math.unit(1200, "lb"),
  18911. name: "Back",
  18912. image: {
  18913. source: "./media/characters/adinia/back.svg",
  18914. extra: 1834/1684,
  18915. bottom: 14/1848
  18916. },
  18917. extraAttributes: {
  18918. "energyIntake": {
  18919. name: "Energy Intake",
  18920. power: 3,
  18921. type: "energy",
  18922. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18923. },
  18924. }
  18925. },
  18926. maw: {
  18927. height: math.unit(3.79, "feet"),
  18928. name: "Maw",
  18929. image: {
  18930. source: "./media/characters/adinia/maw.svg"
  18931. }
  18932. },
  18933. rump: {
  18934. height: math.unit(4.6, "feet"),
  18935. name: "Rump",
  18936. image: {
  18937. source: "./media/characters/adinia/rump.svg"
  18938. }
  18939. },
  18940. },
  18941. [
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(11 + 5 / 12, "feet"),
  18945. default: true
  18946. },
  18947. ]
  18948. ))
  18949. characterMakers.push(() => makeCharacter(
  18950. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18951. {
  18952. front: {
  18953. height: math.unit(3, "meters"),
  18954. weight: math.unit(200, "kg"),
  18955. name: "Front",
  18956. image: {
  18957. source: "./media/characters/lykasa/front.svg",
  18958. extra: 1076 / 976,
  18959. bottom: 0.06
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(3, "meters")
  18967. },
  18968. {
  18969. name: "Kaiju",
  18970. height: math.unit(120, "meters"),
  18971. default: true
  18972. },
  18973. {
  18974. name: "Mega Kaiju",
  18975. height: math.unit(240, "km")
  18976. },
  18977. {
  18978. name: "Giga Kaiju",
  18979. height: math.unit(400, "megameters")
  18980. },
  18981. {
  18982. name: "Tera Kaiju",
  18983. height: math.unit(800, "gigameters")
  18984. },
  18985. {
  18986. name: "Kaiju Dragon Goddess",
  18987. height: math.unit(26, "zettaparsecs")
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18993. {
  18994. side: {
  18995. height: math.unit(283 / 124 * 6, "feet"),
  18996. weight: math.unit(35000, "lb"),
  18997. name: "Side",
  18998. image: {
  18999. source: "./media/characters/malfaren/side.svg",
  19000. extra: 1310/529,
  19001. bottom: 24/1334
  19002. }
  19003. },
  19004. front: {
  19005. height: math.unit(22.36, "feet"),
  19006. weight: math.unit(35000, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/malfaren/front.svg",
  19010. extra: 1237/1115,
  19011. bottom: 32/1269
  19012. }
  19013. },
  19014. maw: {
  19015. height: math.unit(6.9, "feet"),
  19016. name: "Maw",
  19017. image: {
  19018. source: "./media/characters/malfaren/maw.svg"
  19019. }
  19020. },
  19021. dick: {
  19022. height: math.unit(6.19, "feet"),
  19023. name: "Dick",
  19024. image: {
  19025. source: "./media/characters/malfaren/dick.svg"
  19026. }
  19027. },
  19028. eye: {
  19029. height: math.unit(0.69, "feet"),
  19030. name: "Eye",
  19031. image: {
  19032. source: "./media/characters/malfaren/eye.svg"
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Big",
  19039. height: math.unit(283 / 162 * 6, "feet"),
  19040. },
  19041. {
  19042. name: "Bigger",
  19043. height: math.unit(283 / 124 * 6, "feet")
  19044. },
  19045. {
  19046. name: "Massive",
  19047. height: math.unit(283 / 92 * 6, "feet"),
  19048. default: true
  19049. },
  19050. {
  19051. name: "👀💦",
  19052. height: math.unit(283 / 73 * 6, "feet"),
  19053. },
  19054. ]
  19055. ))
  19056. characterMakers.push(() => makeCharacter(
  19057. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19058. {
  19059. front: {
  19060. height: math.unit(1.7, "m"),
  19061. weight: math.unit(70, "kg"),
  19062. name: "Front",
  19063. image: {
  19064. source: "./media/characters/kernel/front.svg",
  19065. extra: 222 / 210,
  19066. bottom: 0.007
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Nano",
  19073. height: math.unit(17, "micrometers")
  19074. },
  19075. {
  19076. name: "Micro",
  19077. height: math.unit(1.7, "mm")
  19078. },
  19079. {
  19080. name: "Small",
  19081. height: math.unit(1.7, "cm")
  19082. },
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(1.7, "m"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(1.75, "meters"),
  19095. weight: math.unit(65, "kg"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/jayne-folest/front.svg",
  19099. extra: 2115 / 2007,
  19100. bottom: 0.02
  19101. }
  19102. },
  19103. back: {
  19104. height: math.unit(1.75, "meters"),
  19105. weight: math.unit(65, "kg"),
  19106. name: "Back",
  19107. image: {
  19108. source: "./media/characters/jayne-folest/back.svg",
  19109. extra: 2115 / 2007,
  19110. bottom: 0.005
  19111. }
  19112. },
  19113. frontClothed: {
  19114. height: math.unit(1.75, "meters"),
  19115. weight: math.unit(65, "kg"),
  19116. name: "Front (Clothed)",
  19117. image: {
  19118. source: "./media/characters/jayne-folest/front-clothed.svg",
  19119. extra: 2115 / 2007,
  19120. bottom: 0.035
  19121. }
  19122. },
  19123. hand: {
  19124. height: math.unit(1 / 1.260, "feet"),
  19125. name: "Hand",
  19126. image: {
  19127. source: "./media/characters/jayne-folest/hand.svg"
  19128. }
  19129. },
  19130. foot: {
  19131. height: math.unit(1 / 0.918, "feet"),
  19132. name: "Foot",
  19133. image: {
  19134. source: "./media/characters/jayne-folest/foot.svg"
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Micro",
  19141. height: math.unit(4, "cm")
  19142. },
  19143. {
  19144. name: "Normal",
  19145. height: math.unit(1.75, "meters")
  19146. },
  19147. {
  19148. name: "Macro",
  19149. height: math.unit(47.5, "meters"),
  19150. default: true
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19156. {
  19157. front: {
  19158. height: math.unit(180, "cm"),
  19159. weight: math.unit(70, "kg"),
  19160. name: "Front",
  19161. image: {
  19162. source: "./media/characters/algier/front.svg",
  19163. extra: 596 / 572,
  19164. bottom: 0.04
  19165. }
  19166. },
  19167. back: {
  19168. height: math.unit(180, "cm"),
  19169. weight: math.unit(70, "kg"),
  19170. name: "Back",
  19171. image: {
  19172. source: "./media/characters/algier/back.svg",
  19173. extra: 596 / 572,
  19174. bottom: 0.025
  19175. }
  19176. },
  19177. frontdressed: {
  19178. height: math.unit(180, "cm"),
  19179. weight: math.unit(150, "kg"),
  19180. name: "Front-dressed",
  19181. image: {
  19182. source: "./media/characters/algier/front-dressed.svg",
  19183. extra: 596 / 572,
  19184. bottom: 0.038
  19185. }
  19186. },
  19187. },
  19188. [
  19189. {
  19190. name: "Micro",
  19191. height: math.unit(5, "cm")
  19192. },
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(180, "cm"),
  19196. default: true
  19197. },
  19198. {
  19199. name: "Macro",
  19200. height: math.unit(64, "m")
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19206. {
  19207. upright: {
  19208. height: math.unit(7, "feet"),
  19209. weight: math.unit(300, "lb"),
  19210. name: "Upright",
  19211. image: {
  19212. source: "./media/characters/pretzel/upright.svg",
  19213. extra: 534 / 522,
  19214. bottom: 0.065
  19215. }
  19216. },
  19217. sprawling: {
  19218. height: math.unit(3.75, "feet"),
  19219. weight: math.unit(300, "lb"),
  19220. name: "Sprawling",
  19221. image: {
  19222. source: "./media/characters/pretzel/sprawling.svg",
  19223. extra: 314 / 281,
  19224. bottom: 0.1
  19225. }
  19226. },
  19227. tongue: {
  19228. height: math.unit(2, "feet"),
  19229. name: "Tongue",
  19230. image: {
  19231. source: "./media/characters/pretzel/tongue.svg"
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(7, "feet"),
  19239. default: true
  19240. },
  19241. {
  19242. name: "Oversized",
  19243. height: math.unit(15, "feet")
  19244. },
  19245. {
  19246. name: "Huge",
  19247. height: math.unit(30, "feet")
  19248. },
  19249. {
  19250. name: "Macro",
  19251. height: math.unit(250, "feet")
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19257. {
  19258. sideFront: {
  19259. height: math.unit(5 + 2 / 12, "feet"),
  19260. weight: math.unit(120, "lb"),
  19261. name: "Front Side",
  19262. image: {
  19263. source: "./media/characters/roxi/side-front.svg",
  19264. extra: 2924 / 2717,
  19265. bottom: 0.08
  19266. }
  19267. },
  19268. sideBack: {
  19269. height: math.unit(5 + 2 / 12, "feet"),
  19270. weight: math.unit(120, "lb"),
  19271. name: "Back Side",
  19272. image: {
  19273. source: "./media/characters/roxi/side-back.svg",
  19274. extra: 2904 / 2693,
  19275. bottom: 0.06
  19276. }
  19277. },
  19278. front: {
  19279. height: math.unit(5 + 2 / 12, "feet"),
  19280. weight: math.unit(120, "lb"),
  19281. name: "Front",
  19282. image: {
  19283. source: "./media/characters/roxi/front.svg",
  19284. extra: 2028 / 1907,
  19285. bottom: 0.01
  19286. }
  19287. },
  19288. frontAlt: {
  19289. height: math.unit(5 + 2 / 12, "feet"),
  19290. weight: math.unit(120, "lb"),
  19291. name: "Front (Alt)",
  19292. image: {
  19293. source: "./media/characters/roxi/front-alt.svg",
  19294. extra: 1828 / 1798,
  19295. bottom: 0.01
  19296. }
  19297. },
  19298. sitting: {
  19299. height: math.unit(2.8, "feet"),
  19300. weight: math.unit(120, "lb"),
  19301. name: "Sitting",
  19302. image: {
  19303. source: "./media/characters/roxi/sitting.svg",
  19304. extra: 2660 / 2462,
  19305. bottom: 0.1
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Normal",
  19312. height: math.unit(5 + 2 / 12, "feet"),
  19313. default: true
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19319. {
  19320. side: {
  19321. height: math.unit(55, "feet"),
  19322. weight: math.unit(153, "tons"),
  19323. name: "Side",
  19324. image: {
  19325. source: "./media/characters/shadow/side.svg",
  19326. extra: 701 / 628,
  19327. bottom: 0.02
  19328. }
  19329. },
  19330. flying: {
  19331. height: math.unit(145, "feet"),
  19332. weight: math.unit(153, "tons"),
  19333. name: "Flying",
  19334. image: {
  19335. source: "./media/characters/shadow/flying.svg"
  19336. }
  19337. },
  19338. },
  19339. [
  19340. {
  19341. name: "Normal",
  19342. height: math.unit(55, "feet"),
  19343. default: true
  19344. },
  19345. ]
  19346. ))
  19347. characterMakers.push(() => makeCharacter(
  19348. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19349. {
  19350. front: {
  19351. height: math.unit(6, "feet"),
  19352. weight: math.unit(200, "lb"),
  19353. name: "Front",
  19354. image: {
  19355. source: "./media/characters/marcie/front.svg",
  19356. extra: 960 / 876,
  19357. bottom: 58 / 1017.87
  19358. }
  19359. },
  19360. },
  19361. [
  19362. {
  19363. name: "Macro",
  19364. height: math.unit(1, "mile"),
  19365. default: true
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(7, "feet"),
  19374. weight: math.unit(200, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/kachina/front.svg",
  19378. extra: 1290.68 / 1119,
  19379. bottom: 36.5 / 1327.18
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(7, "feet"),
  19387. default: true
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19393. {
  19394. looking: {
  19395. height: math.unit(2, "meters"),
  19396. weight: math.unit(300, "kg"),
  19397. name: "Looking",
  19398. image: {
  19399. source: "./media/characters/kash/looking.svg",
  19400. extra: 474 / 344,
  19401. bottom: 0.03
  19402. }
  19403. },
  19404. side: {
  19405. height: math.unit(2, "meters"),
  19406. weight: math.unit(300, "kg"),
  19407. name: "Side",
  19408. image: {
  19409. source: "./media/characters/kash/side.svg",
  19410. extra: 302 / 251,
  19411. bottom: 0.03
  19412. }
  19413. },
  19414. front: {
  19415. height: math.unit(2, "meters"),
  19416. weight: math.unit(300, "kg"),
  19417. name: "Front",
  19418. image: {
  19419. source: "./media/characters/kash/front.svg",
  19420. extra: 495 / 360,
  19421. bottom: 0.015
  19422. }
  19423. },
  19424. },
  19425. [
  19426. {
  19427. name: "Normal",
  19428. height: math.unit(2, "meters"),
  19429. default: true
  19430. },
  19431. {
  19432. name: "Big",
  19433. height: math.unit(3, "meters")
  19434. },
  19435. {
  19436. name: "Large",
  19437. height: math.unit(5, "meters")
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19443. {
  19444. feeding: {
  19445. height: math.unit(6.7, "feet"),
  19446. weight: math.unit(350, "lb"),
  19447. name: "Feeding",
  19448. image: {
  19449. source: "./media/characters/lalim/feeding.svg",
  19450. }
  19451. },
  19452. },
  19453. [
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(6.7, "feet"),
  19457. default: true
  19458. },
  19459. ]
  19460. ))
  19461. characterMakers.push(() => makeCharacter(
  19462. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19463. {
  19464. front: {
  19465. height: math.unit(9.5, "feet"),
  19466. weight: math.unit(600, "lb"),
  19467. name: "Front",
  19468. image: {
  19469. source: "./media/characters/de'vout/front.svg",
  19470. extra: 1443 / 1328,
  19471. bottom: 0.025
  19472. }
  19473. },
  19474. back: {
  19475. height: math.unit(9.5, "feet"),
  19476. weight: math.unit(600, "lb"),
  19477. name: "Back",
  19478. image: {
  19479. source: "./media/characters/de'vout/back.svg",
  19480. extra: 1443 / 1328
  19481. }
  19482. },
  19483. frontDressed: {
  19484. height: math.unit(9.5, "feet"),
  19485. weight: math.unit(600, "lb"),
  19486. name: "Front (Dressed",
  19487. image: {
  19488. source: "./media/characters/de'vout/front-dressed.svg",
  19489. extra: 1443 / 1328,
  19490. bottom: 0.025
  19491. }
  19492. },
  19493. backDressed: {
  19494. height: math.unit(9.5, "feet"),
  19495. weight: math.unit(600, "lb"),
  19496. name: "Back (Dressed",
  19497. image: {
  19498. source: "./media/characters/de'vout/back-dressed.svg",
  19499. extra: 1443 / 1328
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Normal",
  19506. height: math.unit(9.5, "feet"),
  19507. default: true
  19508. },
  19509. ]
  19510. ))
  19511. characterMakers.push(() => makeCharacter(
  19512. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19513. {
  19514. front: {
  19515. height: math.unit(8, "feet"),
  19516. weight: math.unit(225, "lb"),
  19517. name: "Front",
  19518. image: {
  19519. source: "./media/characters/talana/front.svg",
  19520. extra: 1410 / 1300,
  19521. bottom: 0.015
  19522. }
  19523. },
  19524. frontDressed: {
  19525. height: math.unit(8, "feet"),
  19526. weight: math.unit(225, "lb"),
  19527. name: "Front (Dressed",
  19528. image: {
  19529. source: "./media/characters/talana/front-dressed.svg",
  19530. extra: 1410 / 1300,
  19531. bottom: 0.015
  19532. }
  19533. },
  19534. },
  19535. [
  19536. {
  19537. name: "Normal",
  19538. height: math.unit(8, "feet"),
  19539. default: true
  19540. },
  19541. ]
  19542. ))
  19543. characterMakers.push(() => makeCharacter(
  19544. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19545. {
  19546. side: {
  19547. height: math.unit(7.2, "feet"),
  19548. weight: math.unit(150, "lb"),
  19549. name: "Side",
  19550. image: {
  19551. source: "./media/characters/xeauvok/side.svg",
  19552. extra: 1975 / 1523,
  19553. bottom: 0.07
  19554. }
  19555. },
  19556. },
  19557. [
  19558. {
  19559. name: "Normal",
  19560. height: math.unit(7.2, "feet"),
  19561. default: true
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19567. {
  19568. side: {
  19569. height: math.unit(4, "meters"),
  19570. weight: math.unit(2200, "kg"),
  19571. name: "Side",
  19572. image: {
  19573. source: "./media/characters/zara/side.svg",
  19574. extra: 765/744,
  19575. bottom: 156/921
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Normal",
  19582. height: math.unit(4, "meters"),
  19583. default: true
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19589. {
  19590. side: {
  19591. height: math.unit(6, "feet"),
  19592. weight: math.unit(150, "lb"),
  19593. name: "Side",
  19594. image: {
  19595. source: "./media/characters/richard-dragon/side.svg",
  19596. extra: 845 / 340,
  19597. bottom: 0.017
  19598. }
  19599. },
  19600. maw: {
  19601. height: math.unit(2.97, "feet"),
  19602. name: "Maw",
  19603. image: {
  19604. source: "./media/characters/richard-dragon/maw.svg"
  19605. }
  19606. },
  19607. },
  19608. [
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19613. {
  19614. front: {
  19615. height: math.unit(4, "feet"),
  19616. weight: math.unit(100, "lb"),
  19617. name: "Front",
  19618. image: {
  19619. source: "./media/characters/richard-smeargle/front.svg",
  19620. extra: 2952 / 2820,
  19621. bottom: 0.028
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(4, "feet"),
  19629. default: true
  19630. },
  19631. {
  19632. name: "Dynamax",
  19633. height: math.unit(20, "meters")
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19639. {
  19640. front: {
  19641. height: math.unit(6, "feet"),
  19642. weight: math.unit(110, "lb"),
  19643. name: "Front",
  19644. image: {
  19645. source: "./media/characters/klay/front.svg",
  19646. extra: 962 / 883,
  19647. bottom: 0.04
  19648. }
  19649. },
  19650. back: {
  19651. height: math.unit(6, "feet"),
  19652. weight: math.unit(110, "lb"),
  19653. name: "Back",
  19654. image: {
  19655. source: "./media/characters/klay/back.svg",
  19656. extra: 962 / 883
  19657. }
  19658. },
  19659. beans: {
  19660. height: math.unit(1.15, "feet"),
  19661. name: "Beans",
  19662. image: {
  19663. source: "./media/characters/klay/beans.svg"
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Micro",
  19670. height: math.unit(6, "inches")
  19671. },
  19672. {
  19673. name: "Mini",
  19674. height: math.unit(3, "feet")
  19675. },
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(6, "feet"),
  19679. default: true
  19680. },
  19681. {
  19682. name: "Big",
  19683. height: math.unit(25, "feet")
  19684. },
  19685. {
  19686. name: "Macro",
  19687. height: math.unit(100, "feet")
  19688. },
  19689. {
  19690. name: "Megamacro",
  19691. height: math.unit(400, "feet")
  19692. },
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19697. {
  19698. front: {
  19699. height: math.unit(6, "feet"),
  19700. weight: math.unit(160, "lb"),
  19701. name: "Front",
  19702. image: {
  19703. source: "./media/characters/marcus/front.svg",
  19704. extra: 734 / 676,
  19705. bottom: 0.03
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Little",
  19712. height: math.unit(6, "feet")
  19713. },
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(110, "feet"),
  19717. default: true
  19718. },
  19719. {
  19720. name: "Macro",
  19721. height: math.unit(250, "feet")
  19722. },
  19723. {
  19724. name: "Megamacro",
  19725. height: math.unit(1000, "feet")
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(7, "feet"),
  19734. weight: math.unit(275, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/claude-delroute/front.svg",
  19738. extra: 902/827,
  19739. bottom: 26/928
  19740. }
  19741. },
  19742. side: {
  19743. height: math.unit(7, "feet"),
  19744. weight: math.unit(275, "lb"),
  19745. name: "Side",
  19746. image: {
  19747. source: "./media/characters/claude-delroute/side.svg",
  19748. extra: 908/853,
  19749. bottom: 16/924
  19750. }
  19751. },
  19752. back: {
  19753. height: math.unit(7, "feet"),
  19754. weight: math.unit(275, "lb"),
  19755. name: "Back",
  19756. image: {
  19757. source: "./media/characters/claude-delroute/back.svg",
  19758. extra: 911/829,
  19759. bottom: 18/929
  19760. }
  19761. },
  19762. maw: {
  19763. height: math.unit(0.6407, "meters"),
  19764. name: "Maw",
  19765. image: {
  19766. source: "./media/characters/claude-delroute/maw.svg"
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(7, "feet"),
  19774. default: true
  19775. },
  19776. {
  19777. name: "Lorge",
  19778. height: math.unit(20, "feet")
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19784. {
  19785. front: {
  19786. height: math.unit(8 + 4 / 12, "feet"),
  19787. weight: math.unit(600, "lb"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/dragonien/front.svg",
  19791. extra: 100 / 94,
  19792. bottom: 3.3 / 103.3445
  19793. }
  19794. },
  19795. back: {
  19796. height: math.unit(8 + 4 / 12, "feet"),
  19797. weight: math.unit(600, "lb"),
  19798. name: "Back",
  19799. image: {
  19800. source: "./media/characters/dragonien/back.svg",
  19801. extra: 776 / 746,
  19802. bottom: 6.4 / 782.0616
  19803. }
  19804. },
  19805. foot: {
  19806. height: math.unit(1.54, "feet"),
  19807. name: "Foot",
  19808. image: {
  19809. source: "./media/characters/dragonien/foot.svg",
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(8 + 4 / 12, "feet"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Macro",
  19821. height: math.unit(200, "feet")
  19822. },
  19823. {
  19824. name: "Megamacro",
  19825. height: math.unit(1, "mile")
  19826. },
  19827. {
  19828. name: "Gigamacro",
  19829. height: math.unit(1000, "miles")
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(5 + 2 / 12, "feet"),
  19838. weight: math.unit(110, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/desta/front.svg",
  19842. extra: 767 / 726,
  19843. bottom: 11.7 / 779
  19844. }
  19845. },
  19846. back: {
  19847. height: math.unit(5 + 2 / 12, "feet"),
  19848. weight: math.unit(110, "lb"),
  19849. name: "Back",
  19850. image: {
  19851. source: "./media/characters/desta/back.svg",
  19852. extra: 777 / 728,
  19853. bottom: 6 / 784
  19854. }
  19855. },
  19856. frontAlt: {
  19857. height: math.unit(5 + 2 / 12, "feet"),
  19858. weight: math.unit(110, "lb"),
  19859. name: "Front",
  19860. image: {
  19861. source: "./media/characters/desta/front-alt.svg",
  19862. extra: 1482 / 1417
  19863. }
  19864. },
  19865. side: {
  19866. height: math.unit(5 + 2 / 12, "feet"),
  19867. weight: math.unit(110, "lb"),
  19868. name: "Side",
  19869. image: {
  19870. source: "./media/characters/desta/side.svg",
  19871. extra: 2579 / 2491,
  19872. bottom: 0.053
  19873. }
  19874. },
  19875. },
  19876. [
  19877. {
  19878. name: "Micro",
  19879. height: math.unit(6, "inches")
  19880. },
  19881. {
  19882. name: "Normal",
  19883. height: math.unit(5 + 2 / 12, "feet"),
  19884. default: true
  19885. },
  19886. {
  19887. name: "Macro",
  19888. height: math.unit(62, "feet")
  19889. },
  19890. {
  19891. name: "Megamacro",
  19892. height: math.unit(1800, "feet")
  19893. },
  19894. ]
  19895. ))
  19896. characterMakers.push(() => makeCharacter(
  19897. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19898. {
  19899. front: {
  19900. height: math.unit(10, "feet"),
  19901. weight: math.unit(700, "lb"),
  19902. name: "Front",
  19903. image: {
  19904. source: "./media/characters/storm-alystar/front.svg",
  19905. extra: 2112 / 1898,
  19906. bottom: 0.034
  19907. }
  19908. },
  19909. },
  19910. [
  19911. {
  19912. name: "Micro",
  19913. height: math.unit(3.5, "inches")
  19914. },
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(10, "feet"),
  19918. default: true
  19919. },
  19920. {
  19921. name: "Macro",
  19922. height: math.unit(400, "feet")
  19923. },
  19924. {
  19925. name: "Deific",
  19926. height: math.unit(60, "miles")
  19927. },
  19928. ]
  19929. ))
  19930. characterMakers.push(() => makeCharacter(
  19931. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19932. {
  19933. front: {
  19934. height: math.unit(2.35, "meters"),
  19935. weight: math.unit(119, "kg"),
  19936. name: "Front",
  19937. image: {
  19938. source: "./media/characters/ilia/front.svg",
  19939. extra: 1285 / 1255,
  19940. bottom: 0.06
  19941. }
  19942. },
  19943. },
  19944. [
  19945. {
  19946. name: "Normal",
  19947. height: math.unit(2.35, "meters")
  19948. },
  19949. {
  19950. name: "Macro",
  19951. height: math.unit(140, "meters"),
  19952. default: true
  19953. },
  19954. {
  19955. name: "Megamacro",
  19956. height: math.unit(100, "miles")
  19957. },
  19958. ]
  19959. ))
  19960. characterMakers.push(() => makeCharacter(
  19961. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19962. {
  19963. front: {
  19964. height: math.unit(6 + 5 / 12, "feet"),
  19965. weight: math.unit(190, "lb"),
  19966. name: "Front",
  19967. image: {
  19968. source: "./media/characters/kingdead/front.svg",
  19969. extra: 1228 / 1177
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Micro",
  19976. height: math.unit(7, "inches")
  19977. },
  19978. {
  19979. name: "Normal",
  19980. height: math.unit(6 + 5 / 12, "feet")
  19981. },
  19982. {
  19983. name: "Macro",
  19984. height: math.unit(150, "feet"),
  19985. default: true
  19986. },
  19987. {
  19988. name: "Megamacro",
  19989. height: math.unit(200, "miles")
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19995. {
  19996. front: {
  19997. height: math.unit(8, "feet"),
  19998. weight: math.unit(600, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/kyrehx/front.svg",
  20002. extra: 1195 / 1095,
  20003. bottom: 0.034
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Micro",
  20010. height: math.unit(2, "inches")
  20011. },
  20012. {
  20013. name: "Normal",
  20014. height: math.unit(8, "feet"),
  20015. default: true
  20016. },
  20017. {
  20018. name: "Macro",
  20019. height: math.unit(255, "feet")
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20025. {
  20026. front: {
  20027. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20028. weight: math.unit(184, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/xang/front.svg",
  20032. extra: 845 / 755
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Normal",
  20039. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20040. default: true
  20041. },
  20042. {
  20043. name: "Macro",
  20044. height: math.unit(0.935 * 146, "feet")
  20045. },
  20046. {
  20047. name: "Megamacro",
  20048. height: math.unit(0.935 * 3, "miles")
  20049. },
  20050. ]
  20051. ))
  20052. characterMakers.push(() => makeCharacter(
  20053. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20054. {
  20055. frontDressed: {
  20056. height: math.unit(5 + 7 / 12, "feet"),
  20057. weight: math.unit(140, "lb"),
  20058. name: "Front (Dressed)",
  20059. image: {
  20060. source: "./media/characters/doc-weardno/front-dressed.svg",
  20061. extra: 263 / 234
  20062. }
  20063. },
  20064. backDressed: {
  20065. height: math.unit(5 + 7 / 12, "feet"),
  20066. weight: math.unit(140, "lb"),
  20067. name: "Back (Dressed)",
  20068. image: {
  20069. source: "./media/characters/doc-weardno/back-dressed.svg",
  20070. extra: 266 / 238
  20071. }
  20072. },
  20073. front: {
  20074. height: math.unit(5 + 7 / 12, "feet"),
  20075. weight: math.unit(140, "lb"),
  20076. name: "Front",
  20077. image: {
  20078. source: "./media/characters/doc-weardno/front.svg",
  20079. extra: 254 / 233
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Micro",
  20086. height: math.unit(3, "inches")
  20087. },
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(5 + 7 / 12, "feet"),
  20091. default: true
  20092. },
  20093. {
  20094. name: "Macro",
  20095. height: math.unit(25, "feet")
  20096. },
  20097. {
  20098. name: "Megamacro",
  20099. height: math.unit(2, "miles")
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20105. {
  20106. front: {
  20107. height: math.unit(6 + 2 / 12, "feet"),
  20108. weight: math.unit(153, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/seth-whilst/front.svg",
  20112. bottom: 0.07
  20113. }
  20114. },
  20115. },
  20116. [
  20117. {
  20118. name: "Micro",
  20119. height: math.unit(5, "inches")
  20120. },
  20121. {
  20122. name: "Normal",
  20123. height: math.unit(6 + 2 / 12, "feet"),
  20124. default: true
  20125. },
  20126. ]
  20127. ))
  20128. characterMakers.push(() => makeCharacter(
  20129. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20130. {
  20131. front: {
  20132. height: math.unit(3, "inches"),
  20133. weight: math.unit(8, "grams"),
  20134. name: "Front",
  20135. image: {
  20136. source: "./media/characters/pocket-jabari/front.svg",
  20137. extra: 1024 / 974,
  20138. bottom: 0.039
  20139. }
  20140. },
  20141. },
  20142. [
  20143. {
  20144. name: "Minimicro",
  20145. height: math.unit(8, "mm")
  20146. },
  20147. {
  20148. name: "Micro",
  20149. height: math.unit(3, "inches"),
  20150. default: true
  20151. },
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(3, "feet")
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20160. {
  20161. frontDressed: {
  20162. height: math.unit(15, "feet"),
  20163. weight: math.unit(3280, "lb"),
  20164. name: "Front (Dressed)",
  20165. image: {
  20166. source: "./media/characters/sapphy/front-dressed.svg",
  20167. extra: 1951/1654,
  20168. bottom: 194/2145
  20169. },
  20170. form: "anthro",
  20171. default: true
  20172. },
  20173. backDressed: {
  20174. height: math.unit(15, "feet"),
  20175. weight: math.unit(3280, "lb"),
  20176. name: "Back (Dressed)",
  20177. image: {
  20178. source: "./media/characters/sapphy/back-dressed.svg",
  20179. extra: 2058/1918,
  20180. bottom: 125/2183
  20181. },
  20182. form: "anthro"
  20183. },
  20184. frontNude: {
  20185. height: math.unit(15, "feet"),
  20186. weight: math.unit(3280, "lb"),
  20187. name: "Front (Nude)",
  20188. image: {
  20189. source: "./media/characters/sapphy/front-nude.svg",
  20190. extra: 1951/1654,
  20191. bottom: 194/2145
  20192. },
  20193. form: "anthro"
  20194. },
  20195. backNude: {
  20196. height: math.unit(15, "feet"),
  20197. weight: math.unit(3280, "lb"),
  20198. name: "Back (Nude)",
  20199. image: {
  20200. source: "./media/characters/sapphy/back-nude.svg",
  20201. extra: 2058/1918,
  20202. bottom: 125/2183
  20203. },
  20204. form: "anthro"
  20205. },
  20206. full: {
  20207. height: math.unit(15, "feet"),
  20208. weight: math.unit(3280, "lb"),
  20209. name: "Full",
  20210. image: {
  20211. source: "./media/characters/sapphy/full.svg",
  20212. extra: 1396/1317,
  20213. bottom: 44/1440
  20214. },
  20215. form: "anthro"
  20216. },
  20217. dick: {
  20218. height: math.unit(3.8, "feet"),
  20219. name: "Dick",
  20220. image: {
  20221. source: "./media/characters/sapphy/dick.svg"
  20222. },
  20223. form: "anthro"
  20224. },
  20225. feral: {
  20226. height: math.unit(35, "feet"),
  20227. weight: math.unit(160, "tons"),
  20228. name: "Feral",
  20229. image: {
  20230. source: "./media/characters/sapphy/feral.svg",
  20231. extra: 1050/573,
  20232. bottom: 60/1110
  20233. },
  20234. form: "feral",
  20235. default: true
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Normal",
  20241. height: math.unit(15, "feet"),
  20242. form: "anthro"
  20243. },
  20244. {
  20245. name: "Casual Macro",
  20246. height: math.unit(120, "feet"),
  20247. form: "anthro"
  20248. },
  20249. {
  20250. name: "Macro",
  20251. height: math.unit(2150, "feet"),
  20252. default: true,
  20253. form: "anthro"
  20254. },
  20255. {
  20256. name: "Megamacro",
  20257. height: math.unit(8, "miles"),
  20258. form: "anthro"
  20259. },
  20260. {
  20261. name: "Galaxy Mom",
  20262. height: math.unit(6, "megalightyears"),
  20263. form: "anthro"
  20264. },
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(35, "feet"),
  20268. form: "feral",
  20269. default: true
  20270. },
  20271. {
  20272. name: "Macro",
  20273. height: math.unit(300, "feet"),
  20274. form: "feral"
  20275. },
  20276. {
  20277. name: "Galaxy Mom",
  20278. height: math.unit(10, "megalightyears"),
  20279. form: "feral"
  20280. },
  20281. ],
  20282. {
  20283. "anthro": {
  20284. name: "Anthro",
  20285. default: true
  20286. },
  20287. "feral": {
  20288. name: "Feral"
  20289. }
  20290. }
  20291. ))
  20292. characterMakers.push(() => makeCharacter(
  20293. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20294. {
  20295. hyenaFront: {
  20296. height: math.unit(6, "feet"),
  20297. weight: math.unit(190, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/kiro/hyena-front.svg",
  20301. extra: 927/839,
  20302. bottom: 91/1018
  20303. },
  20304. form: "hyena",
  20305. default: true
  20306. },
  20307. front: {
  20308. height: math.unit(6, "feet"),
  20309. weight: math.unit(170, "lb"),
  20310. name: "Front",
  20311. image: {
  20312. source: "./media/characters/kiro/front.svg",
  20313. extra: 1064 / 1012,
  20314. bottom: 0.052
  20315. },
  20316. form: "folf",
  20317. default: true
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Micro",
  20323. height: math.unit(6, "inches"),
  20324. form: "folf"
  20325. },
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(6, "feet"),
  20329. form: "folf",
  20330. default: true
  20331. },
  20332. {
  20333. name: "Macro",
  20334. height: math.unit(72, "feet"),
  20335. form: "folf"
  20336. },
  20337. {
  20338. name: "Micro",
  20339. height: math.unit(6, "inches"),
  20340. form: "hyena"
  20341. },
  20342. {
  20343. name: "Normal",
  20344. height: math.unit(6, "feet"),
  20345. form: "hyena",
  20346. default: true
  20347. },
  20348. {
  20349. name: "Macro",
  20350. height: math.unit(72, "feet"),
  20351. form: "hyena"
  20352. },
  20353. ],
  20354. {
  20355. "hyena": {
  20356. name: "Hyena",
  20357. default: true
  20358. },
  20359. "folf": {
  20360. name: "Folf",
  20361. },
  20362. }
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20366. {
  20367. front: {
  20368. height: math.unit(5 + 9 / 12, "feet"),
  20369. weight: math.unit(175, "lb"),
  20370. name: "Front",
  20371. image: {
  20372. source: "./media/characters/irishfox/front.svg",
  20373. extra: 1912 / 1680,
  20374. bottom: 0.02
  20375. }
  20376. },
  20377. },
  20378. [
  20379. {
  20380. name: "Nano",
  20381. height: math.unit(1, "mm")
  20382. },
  20383. {
  20384. name: "Micro",
  20385. height: math.unit(2, "inches")
  20386. },
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(5 + 9 / 12, "feet"),
  20390. default: true
  20391. },
  20392. {
  20393. name: "Macro",
  20394. height: math.unit(45, "feet")
  20395. },
  20396. ]
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20400. {
  20401. front: {
  20402. height: math.unit(6 + 1 / 12, "feet"),
  20403. weight: math.unit(75, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/aronai-sieyes/front.svg",
  20407. extra: 1532/1450,
  20408. bottom: 42/1574
  20409. }
  20410. },
  20411. side: {
  20412. height: math.unit(6 + 1 / 12, "feet"),
  20413. weight: math.unit(75, "lb"),
  20414. name: "Side",
  20415. image: {
  20416. source: "./media/characters/aronai-sieyes/side.svg",
  20417. extra: 1422/1365,
  20418. bottom: 148/1570
  20419. }
  20420. },
  20421. back: {
  20422. height: math.unit(6 + 1 / 12, "feet"),
  20423. weight: math.unit(75, "lb"),
  20424. name: "Back",
  20425. image: {
  20426. source: "./media/characters/aronai-sieyes/back.svg",
  20427. extra: 1526/1464,
  20428. bottom: 51/1577
  20429. }
  20430. },
  20431. dressed: {
  20432. height: math.unit(6 + 1 / 12, "feet"),
  20433. weight: math.unit(75, "lb"),
  20434. name: "Dressed",
  20435. image: {
  20436. source: "./media/characters/aronai-sieyes/dressed.svg",
  20437. extra: 1559/1483,
  20438. bottom: 39/1598
  20439. }
  20440. },
  20441. slit: {
  20442. height: math.unit(1.3, "feet"),
  20443. name: "Slit",
  20444. image: {
  20445. source: "./media/characters/aronai-sieyes/slit.svg"
  20446. }
  20447. },
  20448. slitSpread: {
  20449. height: math.unit(0.9, "feet"),
  20450. name: "Slit (Spread)",
  20451. image: {
  20452. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20453. }
  20454. },
  20455. rump: {
  20456. height: math.unit(1.3, "feet"),
  20457. name: "Rump",
  20458. image: {
  20459. source: "./media/characters/aronai-sieyes/rump.svg"
  20460. }
  20461. },
  20462. maw: {
  20463. height: math.unit(1.25, "feet"),
  20464. name: "Maw",
  20465. image: {
  20466. source: "./media/characters/aronai-sieyes/maw.svg"
  20467. }
  20468. },
  20469. feral: {
  20470. height: math.unit(18, "feet"),
  20471. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20472. name: "Feral",
  20473. image: {
  20474. source: "./media/characters/aronai-sieyes/feral.svg",
  20475. extra: 1530 / 1240,
  20476. bottom: 0.035
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Micro",
  20483. height: math.unit(2, "inches")
  20484. },
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(6 + 1 / 12, "feet"),
  20488. default: true
  20489. }
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20494. {
  20495. front: {
  20496. height: math.unit(12, "feet"),
  20497. weight: math.unit(410, "kg"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/xuna/front.svg",
  20501. extra: 2184 / 1980
  20502. }
  20503. },
  20504. side: {
  20505. height: math.unit(12, "feet"),
  20506. weight: math.unit(410, "kg"),
  20507. name: "Side",
  20508. image: {
  20509. source: "./media/characters/xuna/side.svg",
  20510. extra: 2184 / 1980
  20511. }
  20512. },
  20513. back: {
  20514. height: math.unit(12, "feet"),
  20515. weight: math.unit(410, "kg"),
  20516. name: "Back",
  20517. image: {
  20518. source: "./media/characters/xuna/back.svg",
  20519. extra: 2184 / 1980
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Nano glow",
  20526. height: math.unit(10, "nm")
  20527. },
  20528. {
  20529. name: "Micro floof",
  20530. height: math.unit(0.3, "m")
  20531. },
  20532. {
  20533. name: "Huggable softy boi",
  20534. height: math.unit(3.6576, "m"),
  20535. default: true
  20536. },
  20537. {
  20538. name: "Admirable floof",
  20539. height: math.unit(80, "meters")
  20540. },
  20541. {
  20542. name: "Gentle macro",
  20543. height: math.unit(300, "meters")
  20544. },
  20545. {
  20546. name: "Very careful floof",
  20547. height: math.unit(3200, "meters")
  20548. },
  20549. {
  20550. name: "The mega floof",
  20551. height: math.unit(36000, "meters")
  20552. },
  20553. {
  20554. name: "Giga-fur-Wicker",
  20555. height: math.unit(4800000, "meters")
  20556. },
  20557. {
  20558. name: "Licky world",
  20559. height: math.unit(20000000, "meters")
  20560. },
  20561. {
  20562. name: "Floofy cyan sun",
  20563. height: math.unit(1500000000, "meters")
  20564. },
  20565. {
  20566. name: "Milky Wicker",
  20567. height: math.unit(1000000000000000000000, "meters")
  20568. },
  20569. {
  20570. name: "The observing Wicker",
  20571. height: math.unit(999999999999999999999999999, "meters")
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20577. {
  20578. front: {
  20579. height: math.unit(5 + 9 / 12, "feet"),
  20580. weight: math.unit(150, "lb"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/arokha-sieyes/front.svg",
  20584. extra: 1425 / 1284,
  20585. bottom: 0.05
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Normal",
  20592. height: math.unit(5 + 9 / 12, "feet")
  20593. },
  20594. {
  20595. name: "Macro",
  20596. height: math.unit(30, "meters"),
  20597. default: true
  20598. },
  20599. ]
  20600. ))
  20601. characterMakers.push(() => makeCharacter(
  20602. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20603. {
  20604. front: {
  20605. height: math.unit(6, "feet"),
  20606. weight: math.unit(180, "lb"),
  20607. name: "Front",
  20608. image: {
  20609. source: "./media/characters/arokh-sieyes/front.svg",
  20610. extra: 1830 / 1769,
  20611. bottom: 0.01
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Normal",
  20618. height: math.unit(6, "feet")
  20619. },
  20620. {
  20621. name: "Macro",
  20622. height: math.unit(30, "meters"),
  20623. default: true
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20629. {
  20630. side: {
  20631. height: math.unit(13 + 1 / 12, "feet"),
  20632. weight: math.unit(8.5, "tonnes"),
  20633. preyCapacity: math.unit(36, "people"),
  20634. name: "Side",
  20635. image: {
  20636. source: "./media/characters/goldeneye/side.svg",
  20637. extra: 1139/741,
  20638. bottom: 98/1237
  20639. }
  20640. },
  20641. front: {
  20642. height: math.unit(5.1, "feet"),
  20643. weight: math.unit(8.5, "tonnes"),
  20644. preyCapacity: math.unit(36, "people"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/goldeneye/front.svg",
  20648. extra: 635/365,
  20649. bottom: 598/1233
  20650. }
  20651. },
  20652. maw: {
  20653. height: math.unit(6.6, "feet"),
  20654. name: "Maw",
  20655. image: {
  20656. source: "./media/characters/goldeneye/maw.svg"
  20657. }
  20658. },
  20659. headFront: {
  20660. height: math.unit(8, "feet"),
  20661. name: "Head (Front)",
  20662. image: {
  20663. source: "./media/characters/goldeneye/head-front.svg"
  20664. }
  20665. },
  20666. headSide: {
  20667. height: math.unit(6, "feet"),
  20668. name: "Head (Side)",
  20669. image: {
  20670. source: "./media/characters/goldeneye/head-side.svg"
  20671. }
  20672. },
  20673. headBack: {
  20674. height: math.unit(8, "feet"),
  20675. name: "Head (Back)",
  20676. image: {
  20677. source: "./media/characters/goldeneye/head-back.svg"
  20678. }
  20679. },
  20680. paw: {
  20681. height: math.unit(3.4, "feet"),
  20682. name: "Paw",
  20683. image: {
  20684. source: "./media/characters/goldeneye/paw.svg"
  20685. }
  20686. },
  20687. toering: {
  20688. height: math.unit(0.45, "feet"),
  20689. name: "Toering",
  20690. image: {
  20691. source: "./media/characters/goldeneye/toering.svg"
  20692. }
  20693. },
  20694. eyes: {
  20695. height: math.unit(0.5, "feet"),
  20696. name: "Eyes",
  20697. image: {
  20698. source: "./media/characters/goldeneye/eyes.svg"
  20699. }
  20700. },
  20701. },
  20702. [
  20703. {
  20704. name: "Normal",
  20705. height: math.unit(13 + 1 / 12, "feet"),
  20706. default: true
  20707. },
  20708. ]
  20709. ))
  20710. characterMakers.push(() => makeCharacter(
  20711. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20712. {
  20713. front: {
  20714. height: math.unit(6 + 1 / 12, "feet"),
  20715. weight: math.unit(210, "lb"),
  20716. name: "Front",
  20717. image: {
  20718. source: "./media/characters/leonardo-lycheborne/front.svg",
  20719. extra: 776/723,
  20720. bottom: 34/810
  20721. }
  20722. },
  20723. side: {
  20724. height: math.unit(6 + 1 / 12, "feet"),
  20725. weight: math.unit(210, "lb"),
  20726. name: "Side",
  20727. image: {
  20728. source: "./media/characters/leonardo-lycheborne/side.svg",
  20729. extra: 780/728,
  20730. bottom: 12/792
  20731. }
  20732. },
  20733. back: {
  20734. height: math.unit(6 + 1 / 12, "feet"),
  20735. weight: math.unit(210, "lb"),
  20736. name: "Back",
  20737. image: {
  20738. source: "./media/characters/leonardo-lycheborne/back.svg",
  20739. extra: 775/721,
  20740. bottom: 17/792
  20741. }
  20742. },
  20743. hand: {
  20744. height: math.unit(1.08, "feet"),
  20745. name: "Hand",
  20746. image: {
  20747. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20748. }
  20749. },
  20750. foot: {
  20751. height: math.unit(1.32, "feet"),
  20752. name: "Foot",
  20753. image: {
  20754. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20755. }
  20756. },
  20757. maw: {
  20758. height: math.unit(1, "feet"),
  20759. name: "Maw",
  20760. image: {
  20761. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20762. }
  20763. },
  20764. were: {
  20765. height: math.unit(20, "feet"),
  20766. weight: math.unit(7800, "lb"),
  20767. name: "Were",
  20768. image: {
  20769. source: "./media/characters/leonardo-lycheborne/were.svg",
  20770. extra: 1224/1165,
  20771. bottom: 72/1296
  20772. }
  20773. },
  20774. feral: {
  20775. height: math.unit(7.5, "feet"),
  20776. weight: math.unit(600, "lb"),
  20777. name: "Feral",
  20778. image: {
  20779. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20780. extra: 797/702,
  20781. bottom: 139/936
  20782. }
  20783. },
  20784. taur: {
  20785. height: math.unit(11, "feet"),
  20786. weight: math.unit(3300, "lb"),
  20787. name: "Taur",
  20788. image: {
  20789. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20790. extra: 1271/1197,
  20791. bottom: 47/1318
  20792. }
  20793. },
  20794. barghest: {
  20795. height: math.unit(11, "feet"),
  20796. weight: math.unit(1300, "lb"),
  20797. name: "Barghest",
  20798. image: {
  20799. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20800. extra: 1291/1204,
  20801. bottom: 37/1328
  20802. }
  20803. },
  20804. dick: {
  20805. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20806. name: "Dick",
  20807. image: {
  20808. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20809. }
  20810. },
  20811. dickWere: {
  20812. height: math.unit((20) / 3.8, "feet"),
  20813. name: "Dick (Were)",
  20814. image: {
  20815. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20816. }
  20817. },
  20818. },
  20819. [
  20820. {
  20821. name: "Normal",
  20822. height: math.unit(6 + 1 / 12, "feet"),
  20823. default: true
  20824. },
  20825. ]
  20826. ))
  20827. characterMakers.push(() => makeCharacter(
  20828. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20829. {
  20830. front: {
  20831. height: math.unit(10, "feet"),
  20832. weight: math.unit(350, "lb"),
  20833. name: "Front",
  20834. image: {
  20835. source: "./media/characters/jet/front.svg",
  20836. extra: 2050 / 1980,
  20837. bottom: 0.013
  20838. }
  20839. },
  20840. back: {
  20841. height: math.unit(10, "feet"),
  20842. weight: math.unit(350, "lb"),
  20843. name: "Back",
  20844. image: {
  20845. source: "./media/characters/jet/back.svg",
  20846. extra: 2050 / 1980,
  20847. bottom: 0.013
  20848. }
  20849. },
  20850. },
  20851. [
  20852. {
  20853. name: "Micro",
  20854. height: math.unit(6, "inches")
  20855. },
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(10, "feet"),
  20859. default: true
  20860. },
  20861. {
  20862. name: "Macro",
  20863. height: math.unit(100, "feet")
  20864. },
  20865. ]
  20866. ))
  20867. characterMakers.push(() => makeCharacter(
  20868. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20869. {
  20870. front: {
  20871. height: math.unit(15, "feet"),
  20872. weight: math.unit(2800, "lb"),
  20873. name: "Front",
  20874. image: {
  20875. source: "./media/characters/tanarath/front.svg",
  20876. extra: 2392 / 2220,
  20877. bottom: 0.03
  20878. }
  20879. },
  20880. back: {
  20881. height: math.unit(15, "feet"),
  20882. weight: math.unit(2800, "lb"),
  20883. name: "Back",
  20884. image: {
  20885. source: "./media/characters/tanarath/back.svg",
  20886. extra: 2392 / 2220,
  20887. bottom: 0.03
  20888. }
  20889. },
  20890. },
  20891. [
  20892. {
  20893. name: "Normal",
  20894. height: math.unit(15, "feet"),
  20895. default: true
  20896. },
  20897. ]
  20898. ))
  20899. characterMakers.push(() => makeCharacter(
  20900. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20901. {
  20902. front: {
  20903. height: math.unit(7 + 1 / 12, "feet"),
  20904. weight: math.unit(175, "lb"),
  20905. name: "Front",
  20906. image: {
  20907. source: "./media/characters/patty-cattybatty/front.svg",
  20908. extra: 908 / 874,
  20909. bottom: 0.025
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Micro",
  20916. height: math.unit(1, "inch")
  20917. },
  20918. {
  20919. name: "Normal",
  20920. height: math.unit(7 + 1 / 12, "feet")
  20921. },
  20922. {
  20923. name: "Mini Macro",
  20924. height: math.unit(155, "feet")
  20925. },
  20926. {
  20927. name: "Macro",
  20928. height: math.unit(1077, "feet")
  20929. },
  20930. {
  20931. name: "Mega Macro",
  20932. height: math.unit(47650, "feet"),
  20933. default: true
  20934. },
  20935. {
  20936. name: "Giga Macro",
  20937. height: math.unit(440, "miles")
  20938. },
  20939. {
  20940. name: "Tera Macro",
  20941. height: math.unit(8700, "miles")
  20942. },
  20943. {
  20944. name: "Planetary Macro",
  20945. height: math.unit(32700, "miles")
  20946. },
  20947. {
  20948. name: "Solar Macro",
  20949. height: math.unit(550000, "miles")
  20950. },
  20951. {
  20952. name: "Celestial Macro",
  20953. height: math.unit(2.5, "AU")
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(4 + 5 / 12, "feet"),
  20962. weight: math.unit(90, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/cappu/front.svg",
  20966. extra: 1247 / 1152,
  20967. bottom: 0.012
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(4 + 5 / 12, "feet"),
  20975. default: true
  20976. },
  20977. ]
  20978. ))
  20979. characterMakers.push(() => makeCharacter(
  20980. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20981. {
  20982. frontDressed: {
  20983. height: math.unit(70, "cm"),
  20984. weight: math.unit(6, "kg"),
  20985. name: "Front (Dressed)",
  20986. image: {
  20987. source: "./media/characters/sebi/front-dressed.svg",
  20988. extra: 713.5 / 686.5,
  20989. bottom: 0.003
  20990. }
  20991. },
  20992. front: {
  20993. height: math.unit(70, "cm"),
  20994. weight: math.unit(5, "kg"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/sebi/front.svg",
  20998. extra: 713.5 / 686.5,
  20999. bottom: 0.003
  21000. }
  21001. }
  21002. },
  21003. [
  21004. {
  21005. name: "Normal",
  21006. height: math.unit(70, "cm"),
  21007. default: true
  21008. },
  21009. {
  21010. name: "Macro",
  21011. height: math.unit(8, "meters")
  21012. },
  21013. ]
  21014. ))
  21015. characterMakers.push(() => makeCharacter(
  21016. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21017. {
  21018. front: {
  21019. height: math.unit(6, "feet"),
  21020. weight: math.unit(150, "lb"),
  21021. name: "Front",
  21022. image: {
  21023. source: "./media/characters/typhek/front.svg",
  21024. extra: 1948 / 1929,
  21025. bottom: 0.025
  21026. }
  21027. },
  21028. side: {
  21029. height: math.unit(6, "feet"),
  21030. weight: math.unit(150, "lb"),
  21031. name: "Side",
  21032. image: {
  21033. source: "./media/characters/typhek/side.svg",
  21034. extra: 2034 / 2010,
  21035. bottom: 0.003
  21036. }
  21037. },
  21038. back: {
  21039. height: math.unit(6, "feet"),
  21040. weight: math.unit(150, "lb"),
  21041. name: "Back",
  21042. image: {
  21043. source: "./media/characters/typhek/back.svg",
  21044. extra: 2005 / 1978,
  21045. bottom: 0.004
  21046. }
  21047. },
  21048. palm: {
  21049. height: math.unit(1.2, "feet"),
  21050. name: "Palm",
  21051. image: {
  21052. source: "./media/characters/typhek/palm.svg"
  21053. }
  21054. },
  21055. fist: {
  21056. height: math.unit(1.1, "feet"),
  21057. name: "Fist",
  21058. image: {
  21059. source: "./media/characters/typhek/fist.svg"
  21060. }
  21061. },
  21062. foot: {
  21063. height: math.unit(1.57, "feet"),
  21064. name: "Foot",
  21065. image: {
  21066. source: "./media/characters/typhek/foot.svg"
  21067. }
  21068. },
  21069. sole: {
  21070. height: math.unit(2.05, "feet"),
  21071. name: "Sole",
  21072. image: {
  21073. source: "./media/characters/typhek/sole.svg"
  21074. }
  21075. },
  21076. },
  21077. [
  21078. {
  21079. name: "Macro",
  21080. height: math.unit(40, "stories"),
  21081. default: true
  21082. },
  21083. {
  21084. name: "Megamacro",
  21085. height: math.unit(1, "mile")
  21086. },
  21087. {
  21088. name: "Gigamacro",
  21089. height: math.unit(4000, "solarradii")
  21090. },
  21091. {
  21092. name: "Universal",
  21093. height: math.unit(1.1, "universes")
  21094. }
  21095. ]
  21096. ))
  21097. characterMakers.push(() => makeCharacter(
  21098. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21099. {
  21100. side: {
  21101. height: math.unit(5 + 7 / 12, "feet"),
  21102. weight: math.unit(150, "lb"),
  21103. name: "Side",
  21104. image: {
  21105. source: "./media/characters/kassy/side.svg",
  21106. extra: 1280 / 1225,
  21107. bottom: 0.002
  21108. }
  21109. },
  21110. front: {
  21111. height: math.unit(5 + 7 / 12, "feet"),
  21112. weight: math.unit(150, "lb"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/kassy/front.svg",
  21116. extra: 1280 / 1225,
  21117. bottom: 0.025
  21118. }
  21119. },
  21120. back: {
  21121. height: math.unit(5 + 7 / 12, "feet"),
  21122. weight: math.unit(150, "lb"),
  21123. name: "Back",
  21124. image: {
  21125. source: "./media/characters/kassy/back.svg",
  21126. extra: 1280 / 1225,
  21127. bottom: 0.002
  21128. }
  21129. },
  21130. foot: {
  21131. height: math.unit(1.266, "feet"),
  21132. name: "Foot",
  21133. image: {
  21134. source: "./media/characters/kassy/foot.svg"
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(5 + 7 / 12, "feet")
  21142. },
  21143. {
  21144. name: "Macro",
  21145. height: math.unit(137, "feet"),
  21146. default: true
  21147. },
  21148. {
  21149. name: "Megamacro",
  21150. height: math.unit(1, "mile")
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21156. {
  21157. front: {
  21158. height: math.unit(6 + 1 / 12, "feet"),
  21159. weight: math.unit(200, "lb"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/neil/front.svg",
  21163. extra: 1326 / 1250,
  21164. bottom: 0.023
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Normal",
  21171. height: math.unit(6 + 1 / 12, "feet"),
  21172. default: true
  21173. },
  21174. {
  21175. name: "Macro",
  21176. height: math.unit(200, "feet")
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(5 + 9 / 12, "feet"),
  21185. weight: math.unit(190, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/atticus/front.svg",
  21189. extra: 2934 / 2785,
  21190. bottom: 0.025
  21191. }
  21192. },
  21193. },
  21194. [
  21195. {
  21196. name: "Normal",
  21197. height: math.unit(5 + 9 / 12, "feet"),
  21198. default: true
  21199. },
  21200. {
  21201. name: "Macro",
  21202. height: math.unit(180, "feet")
  21203. },
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21208. {
  21209. side: {
  21210. height: math.unit(9, "feet"),
  21211. weight: math.unit(650, "lb"),
  21212. name: "Side",
  21213. image: {
  21214. source: "./media/characters/milo/side.svg",
  21215. extra: 2644 / 2310,
  21216. bottom: 0.032
  21217. }
  21218. },
  21219. },
  21220. [
  21221. {
  21222. name: "Normal",
  21223. height: math.unit(9, "feet"),
  21224. default: true
  21225. },
  21226. {
  21227. name: "Macro",
  21228. height: math.unit(300, "feet")
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21234. {
  21235. side: {
  21236. height: math.unit(8, "meters"),
  21237. weight: math.unit(90000, "kg"),
  21238. name: "Side",
  21239. image: {
  21240. source: "./media/characters/ijzer/side.svg",
  21241. extra: 2756 / 1600,
  21242. bottom: 0.01
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Small",
  21249. height: math.unit(3, "meters")
  21250. },
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(8, "meters"),
  21254. default: true
  21255. },
  21256. {
  21257. name: "Normal+",
  21258. height: math.unit(10, "meters")
  21259. },
  21260. {
  21261. name: "Bigger",
  21262. height: math.unit(24, "meters")
  21263. },
  21264. {
  21265. name: "Huge",
  21266. height: math.unit(80, "meters")
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(6 + 2 / 12, "feet"),
  21275. weight: math.unit(153, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/luca-cervicum/front.svg",
  21279. extra: 370 / 327,
  21280. bottom: 0.015
  21281. }
  21282. },
  21283. back: {
  21284. height: math.unit(6 + 2 / 12, "feet"),
  21285. weight: math.unit(153, "lb"),
  21286. name: "Back",
  21287. image: {
  21288. source: "./media/characters/luca-cervicum/back.svg",
  21289. extra: 367 / 333,
  21290. bottom: 0.005
  21291. }
  21292. },
  21293. frontGear: {
  21294. height: math.unit(6 + 2 / 12, "feet"),
  21295. weight: math.unit(173, "lb"),
  21296. name: "Front (Gear)",
  21297. image: {
  21298. source: "./media/characters/luca-cervicum/front-gear.svg",
  21299. extra: 377 / 333,
  21300. bottom: 0.006
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(6 + 2 / 12, "feet"),
  21308. default: true
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21314. {
  21315. front: {
  21316. height: math.unit(6 + 1 / 12, "feet"),
  21317. weight: math.unit(304, "lb"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/oliver/front.svg",
  21321. extra: 157 / 143,
  21322. bottom: 0.08
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Normal",
  21329. height: math.unit(6 + 1 / 12, "feet"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21336. {
  21337. front: {
  21338. height: math.unit(5 + 7 / 12, "feet"),
  21339. weight: math.unit(140, "lb"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/shane/front.svg",
  21343. extra: 304 / 289,
  21344. bottom: 0.005
  21345. }
  21346. },
  21347. },
  21348. [
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(5 + 7 / 12, "feet"),
  21352. default: true
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21358. {
  21359. front: {
  21360. height: math.unit(5 + 9 / 12, "feet"),
  21361. weight: math.unit(178, "lb"),
  21362. name: "Front",
  21363. image: {
  21364. source: "./media/characters/shin/front.svg",
  21365. extra: 159 / 151,
  21366. bottom: 0.015
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Normal",
  21373. height: math.unit(5 + 9 / 12, "feet"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(5 + 10 / 12, "feet"),
  21383. weight: math.unit(168, "lb"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/xerxes/front.svg",
  21387. extra: 282 / 260,
  21388. bottom: 0.045
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Normal",
  21395. height: math.unit(5 + 10 / 12, "feet"),
  21396. default: true
  21397. },
  21398. ]
  21399. ))
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21402. {
  21403. front: {
  21404. height: math.unit(6 + 7 / 12, "feet"),
  21405. weight: math.unit(208, "lb"),
  21406. name: "Front",
  21407. image: {
  21408. source: "./media/characters/chaska/front.svg",
  21409. extra: 332 / 319,
  21410. bottom: 0.015
  21411. }
  21412. },
  21413. },
  21414. [
  21415. {
  21416. name: "Normal",
  21417. height: math.unit(6 + 7 / 12, "feet"),
  21418. default: true
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21424. {
  21425. front: {
  21426. height: math.unit(5 + 8 / 12, "feet"),
  21427. weight: math.unit(208, "lb"),
  21428. name: "Front",
  21429. image: {
  21430. source: "./media/characters/enuk/front.svg",
  21431. extra: 437 / 406,
  21432. bottom: 0.02
  21433. }
  21434. },
  21435. },
  21436. [
  21437. {
  21438. name: "Normal",
  21439. height: math.unit(5 + 8 / 12, "feet"),
  21440. default: true
  21441. },
  21442. ]
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21446. {
  21447. front: {
  21448. height: math.unit(5 + 10 / 12, "feet"),
  21449. weight: math.unit(252, "lb"),
  21450. name: "Front",
  21451. image: {
  21452. source: "./media/characters/bruun/front.svg",
  21453. extra: 197 / 187,
  21454. bottom: 0.012
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Normal",
  21461. height: math.unit(5 + 10 / 12, "feet"),
  21462. default: true
  21463. },
  21464. ]
  21465. ))
  21466. characterMakers.push(() => makeCharacter(
  21467. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21468. {
  21469. front: {
  21470. height: math.unit(6 + 10 / 12, "feet"),
  21471. weight: math.unit(255, "lb"),
  21472. name: "Front",
  21473. image: {
  21474. source: "./media/characters/alexeev/front.svg",
  21475. extra: 213 / 200,
  21476. bottom: 0.05
  21477. }
  21478. },
  21479. },
  21480. [
  21481. {
  21482. name: "Normal",
  21483. height: math.unit(6 + 10 / 12, "feet"),
  21484. default: true
  21485. },
  21486. ]
  21487. ))
  21488. characterMakers.push(() => makeCharacter(
  21489. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21490. {
  21491. front: {
  21492. height: math.unit(2 + 8 / 12, "feet"),
  21493. weight: math.unit(22, "lb"),
  21494. name: "Front",
  21495. image: {
  21496. source: "./media/characters/evelyn/front.svg",
  21497. extra: 208 / 180
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(2 + 8 / 12, "feet"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(5 + 9 / 12, "feet"),
  21514. weight: math.unit(139, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/inca/front.svg",
  21518. extra: 294 / 291,
  21519. bottom: 0.03
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(5 + 9 / 12, "feet"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(6 + 3 / 12, "feet"),
  21536. weight: math.unit(185, "lb"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/mera/front.svg",
  21540. extra: 291 / 277,
  21541. bottom: 0.03
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(6 + 3 / 12, "feet"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(6 + 7 / 12, "feet"),
  21558. weight: math.unit(160, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/ceres/front.svg",
  21562. extra: 1023 / 950,
  21563. bottom: 0.027
  21564. }
  21565. },
  21566. back: {
  21567. height: math.unit(6 + 7 / 12, "feet"),
  21568. weight: math.unit(160, "lb"),
  21569. name: "Back",
  21570. image: {
  21571. source: "./media/characters/ceres/back.svg",
  21572. extra: 1023 / 950
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Normal",
  21579. height: math.unit(6 + 7 / 12, "feet"),
  21580. default: true
  21581. },
  21582. ]
  21583. ))
  21584. characterMakers.push(() => makeCharacter(
  21585. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21586. {
  21587. front: {
  21588. height: math.unit(5 + 10 / 12, "feet"),
  21589. weight: math.unit(150, "lb"),
  21590. name: "Front",
  21591. image: {
  21592. source: "./media/characters/kris/front.svg",
  21593. extra: 885 / 803,
  21594. bottom: 0.03
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(5 + 10 / 12, "feet"),
  21602. default: true
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(7, "feet"),
  21611. weight: math.unit(120, "kg"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/taluthus/front.svg",
  21615. extra: 903 / 833,
  21616. bottom: 0.015
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(7, "feet"),
  21624. default: true
  21625. },
  21626. {
  21627. name: "Macro",
  21628. height: math.unit(300, "feet")
  21629. },
  21630. ]
  21631. ))
  21632. characterMakers.push(() => makeCharacter(
  21633. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21634. {
  21635. front: {
  21636. height: math.unit(5 + 9 / 12, "feet"),
  21637. weight: math.unit(145, "lb"),
  21638. name: "Front",
  21639. image: {
  21640. source: "./media/characters/dawn/front.svg",
  21641. extra: 2094 / 2016,
  21642. bottom: 0.025
  21643. }
  21644. },
  21645. back: {
  21646. height: math.unit(5 + 9 / 12, "feet"),
  21647. weight: math.unit(160, "lb"),
  21648. name: "Back",
  21649. image: {
  21650. source: "./media/characters/dawn/back.svg",
  21651. extra: 2112 / 2080,
  21652. bottom: 0.005
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(6 + 7 / 12, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21666. {
  21667. anthro: {
  21668. height: math.unit(8 + 3 / 12, "feet"),
  21669. weight: math.unit(450, "lb"),
  21670. name: "Anthro",
  21671. image: {
  21672. source: "./media/characters/arador/anthro.svg",
  21673. extra: 1835 / 1718,
  21674. bottom: 0.025
  21675. }
  21676. },
  21677. feral: {
  21678. height: math.unit(4, "feet"),
  21679. weight: math.unit(200, "lb"),
  21680. name: "Feral",
  21681. image: {
  21682. source: "./media/characters/arador/feral.svg",
  21683. extra: 1683 / 1514,
  21684. bottom: 0.07
  21685. }
  21686. },
  21687. },
  21688. [
  21689. {
  21690. name: "Normal",
  21691. height: math.unit(8 + 3 / 12, "feet")
  21692. },
  21693. {
  21694. name: "Macro",
  21695. height: math.unit(82.5, "feet"),
  21696. default: true
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(5 + 10 / 12, "feet"),
  21705. weight: math.unit(125, "lb"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/dharsi/front.svg",
  21709. extra: 716 / 630,
  21710. bottom: 0.035
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Nano",
  21717. height: math.unit(100, "nm")
  21718. },
  21719. {
  21720. name: "Micro",
  21721. height: math.unit(2, "inches")
  21722. },
  21723. {
  21724. name: "Normal",
  21725. height: math.unit(5 + 10 / 12, "feet"),
  21726. default: true
  21727. },
  21728. {
  21729. name: "Macro",
  21730. height: math.unit(1000, "feet")
  21731. },
  21732. {
  21733. name: "Megamacro",
  21734. height: math.unit(10, "miles")
  21735. },
  21736. {
  21737. name: "Gigamacro",
  21738. height: math.unit(3000, "miles")
  21739. },
  21740. {
  21741. name: "Teramacro",
  21742. height: math.unit(500000, "miles")
  21743. },
  21744. {
  21745. name: "Teramacro+",
  21746. height: math.unit(30, "galaxies")
  21747. },
  21748. ]
  21749. ))
  21750. characterMakers.push(() => makeCharacter(
  21751. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21752. {
  21753. front: {
  21754. height: math.unit(6, "feet"),
  21755. weight: math.unit(150, "lb"),
  21756. name: "Front",
  21757. image: {
  21758. source: "./media/characters/deathy/front.svg",
  21759. extra: 1552 / 1463,
  21760. bottom: 0.025
  21761. }
  21762. },
  21763. side: {
  21764. height: math.unit(6, "feet"),
  21765. weight: math.unit(150, "lb"),
  21766. name: "Side",
  21767. image: {
  21768. source: "./media/characters/deathy/side.svg",
  21769. extra: 1604 / 1455,
  21770. bottom: 0.025
  21771. }
  21772. },
  21773. back: {
  21774. height: math.unit(6, "feet"),
  21775. weight: math.unit(150, "lb"),
  21776. name: "Back",
  21777. image: {
  21778. source: "./media/characters/deathy/back.svg",
  21779. extra: 1580 / 1463,
  21780. bottom: 0.005
  21781. }
  21782. },
  21783. },
  21784. [
  21785. {
  21786. name: "Micro",
  21787. height: math.unit(5, "millimeters")
  21788. },
  21789. {
  21790. name: "Normal",
  21791. height: math.unit(6 + 5 / 12, "feet"),
  21792. default: true
  21793. },
  21794. ]
  21795. ))
  21796. characterMakers.push(() => makeCharacter(
  21797. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21798. {
  21799. front: {
  21800. height: math.unit(16, "feet"),
  21801. weight: math.unit(4000, "lb"),
  21802. name: "Front",
  21803. image: {
  21804. source: "./media/characters/juniper/front.svg",
  21805. bottom: 0.04
  21806. }
  21807. },
  21808. },
  21809. [
  21810. {
  21811. name: "Normal",
  21812. height: math.unit(16, "feet"),
  21813. default: true
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(6, "feet"),
  21822. weight: math.unit(150, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/hipster/front.svg",
  21826. extra: 1312 / 1209,
  21827. bottom: 0.025
  21828. }
  21829. },
  21830. back: {
  21831. height: math.unit(6, "feet"),
  21832. weight: math.unit(150, "lb"),
  21833. name: "Back",
  21834. image: {
  21835. source: "./media/characters/hipster/back.svg",
  21836. extra: 1281 / 1196,
  21837. bottom: 0.01
  21838. }
  21839. },
  21840. },
  21841. [
  21842. {
  21843. name: "Micro",
  21844. height: math.unit(1, "mm")
  21845. },
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(4, "inches"),
  21849. default: true
  21850. },
  21851. {
  21852. name: "Macro",
  21853. height: math.unit(500, "feet")
  21854. },
  21855. {
  21856. name: "Megamacro",
  21857. height: math.unit(1000, "miles")
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(6, "feet"),
  21866. weight: math.unit(150, "lb"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/tendirmuldr/front.svg",
  21870. extra: 1878 / 1772,
  21871. bottom: 0.015
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Megamacro",
  21878. height: math.unit(1500, "miles"),
  21879. default: true
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21885. {
  21886. front: {
  21887. height: math.unit(14, "feet"),
  21888. weight: math.unit(12000, "lb"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/mort/front.svg",
  21892. extra: 365 / 318,
  21893. bottom: 0.01
  21894. }
  21895. },
  21896. side: {
  21897. height: math.unit(14, "feet"),
  21898. weight: math.unit(12000, "lb"),
  21899. name: "Side",
  21900. image: {
  21901. source: "./media/characters/mort/side.svg",
  21902. extra: 365 / 318,
  21903. bottom: 0.052
  21904. },
  21905. default: true
  21906. },
  21907. back: {
  21908. height: math.unit(14, "feet"),
  21909. weight: math.unit(12000, "lb"),
  21910. name: "Back",
  21911. image: {
  21912. source: "./media/characters/mort/back.svg",
  21913. extra: 371 / 332,
  21914. bottom: 0.18
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(14, "feet"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21928. {
  21929. front: {
  21930. height: math.unit(8, "feet"),
  21931. weight: math.unit(1, "ton"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/lycoa/front.svg",
  21935. extra: 1836/1728,
  21936. bottom: 81/1917
  21937. }
  21938. },
  21939. back: {
  21940. height: math.unit(8, "feet"),
  21941. weight: math.unit(1, "ton"),
  21942. name: "Back",
  21943. image: {
  21944. source: "./media/characters/lycoa/back.svg",
  21945. extra: 1785/1720,
  21946. bottom: 91/1876
  21947. }
  21948. },
  21949. head: {
  21950. height: math.unit(1.6243, "feet"),
  21951. name: "Head",
  21952. image: {
  21953. source: "./media/characters/lycoa/head.svg",
  21954. extra: 1011/782,
  21955. bottom: 0/1011
  21956. }
  21957. },
  21958. tailmaw: {
  21959. height: math.unit(1.9, "feet"),
  21960. name: "Tailmaw",
  21961. image: {
  21962. source: "./media/characters/lycoa/tailmaw.svg"
  21963. }
  21964. },
  21965. tentacles: {
  21966. height: math.unit(2.1, "feet"),
  21967. name: "Tentacles",
  21968. image: {
  21969. source: "./media/characters/lycoa/tentacles.svg"
  21970. }
  21971. },
  21972. dick: {
  21973. height: math.unit(1.73, "feet"),
  21974. name: "Dick",
  21975. image: {
  21976. source: "./media/characters/lycoa/dick.svg"
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Normal",
  21983. height: math.unit(8, "feet"),
  21984. default: true
  21985. },
  21986. {
  21987. name: "Macro",
  21988. height: math.unit(30, "feet")
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21994. {
  21995. front: {
  21996. height: math.unit(4 + 2 / 12, "feet"),
  21997. weight: math.unit(70, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/naldara/front.svg",
  22001. extra: 1664/1387,
  22002. bottom: 81/1745
  22003. },
  22004. form: "anthro",
  22005. default: true
  22006. },
  22007. naga: {
  22008. height: math.unit(20, "feet"),
  22009. weight: math.unit(15000, "kg"),
  22010. name: "Front",
  22011. image: {
  22012. source: "./media/characters/naldara/naga.svg",
  22013. extra: 1590/1396,
  22014. bottom: 285/1875
  22015. },
  22016. form: "naga",
  22017. default: true
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Normal",
  22023. height: math.unit(4 + 2 / 12, "feet"),
  22024. form: "anthro",
  22025. default: true
  22026. },
  22027. {
  22028. name: "Normal",
  22029. height: math.unit(20, "feet"),
  22030. form: "naga",
  22031. default: true
  22032. },
  22033. ],
  22034. {
  22035. "anthro": {
  22036. name: "Anthro",
  22037. default: true
  22038. },
  22039. "naga": {
  22040. name: "Naga"
  22041. }
  22042. }
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(13 + 7 / 12, "feet"),
  22049. weight: math.unit(1500, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/briar/front.svg",
  22053. extra: 1223/1157,
  22054. bottom: 123/1346
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(13 + 7 / 12, "feet"),
  22062. default: true
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22068. {
  22069. side: {
  22070. height: math.unit(16, "feet"),
  22071. weight: math.unit(500, "lb"),
  22072. name: "Side",
  22073. image: {
  22074. source: "./media/characters/vanguard/side.svg",
  22075. extra: 1022/914,
  22076. bottom: 30/1052
  22077. }
  22078. },
  22079. sideAlt: {
  22080. height: math.unit(10, "feet"),
  22081. weight: math.unit(500, "lb"),
  22082. name: "Side (Alt)",
  22083. image: {
  22084. source: "./media/characters/vanguard/side-alt.svg",
  22085. extra: 502 / 425,
  22086. bottom: 0.087
  22087. }
  22088. },
  22089. },
  22090. [
  22091. {
  22092. name: "Normal",
  22093. height: math.unit(17.71, "feet"),
  22094. default: true
  22095. },
  22096. ]
  22097. ))
  22098. characterMakers.push(() => makeCharacter(
  22099. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22100. {
  22101. front: {
  22102. height: math.unit(7.5, "feet"),
  22103. weight: math.unit(2, "lb"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/artemis/work-safe-front.svg",
  22107. extra: 1192 / 1075,
  22108. bottom: 0.07
  22109. },
  22110. form: "work-safe",
  22111. default: true
  22112. },
  22113. frontNsfw: {
  22114. height: math.unit(7.5, "feet"),
  22115. weight: math.unit(2, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/artemis/calibrating-front.svg",
  22119. extra: 1192 / 1075,
  22120. bottom: 0.07
  22121. },
  22122. form: "calibrating",
  22123. default: true
  22124. },
  22125. frontNsfwer: {
  22126. height: math.unit(7.5, "feet"),
  22127. weight: math.unit(2, "lb"),
  22128. name: "Front",
  22129. image: {
  22130. source: "./media/characters/artemis/oversize-load-front.svg",
  22131. extra: 1192 / 1075,
  22132. bottom: 0.07
  22133. },
  22134. form: "oversize-load",
  22135. default: true
  22136. },
  22137. side: {
  22138. height: math.unit(7.5, "feet"),
  22139. weight: math.unit(2, "lb"),
  22140. name: "Side",
  22141. image: {
  22142. source: "./media/characters/artemis/work-safe-side.svg",
  22143. extra: 1192 / 1075,
  22144. bottom: 0.07
  22145. },
  22146. form: "work-safe"
  22147. },
  22148. sideNsfw: {
  22149. height: math.unit(7.5, "feet"),
  22150. weight: math.unit(2, "lb"),
  22151. name: "Side",
  22152. image: {
  22153. source: "./media/characters/artemis/calibrating-side.svg",
  22154. extra: 1192 / 1075,
  22155. bottom: 0.07
  22156. },
  22157. form: "calibrating"
  22158. },
  22159. sideNsfwer: {
  22160. height: math.unit(7.5, "feet"),
  22161. weight: math.unit(2, "lb"),
  22162. name: "Side",
  22163. image: {
  22164. source: "./media/characters/artemis/oversize-load-side.svg",
  22165. extra: 1192 / 1075,
  22166. bottom: 0.07
  22167. },
  22168. form: "oversize-load"
  22169. },
  22170. maw: {
  22171. height: math.unit(1.1, "feet"),
  22172. name: "Maw",
  22173. image: {
  22174. source: "./media/characters/artemis/maw.svg"
  22175. },
  22176. form: "work-safe"
  22177. },
  22178. stomach: {
  22179. height: math.unit(0.95, "feet"),
  22180. name: "Stomach",
  22181. image: {
  22182. source: "./media/characters/artemis/stomach.svg"
  22183. },
  22184. form: "work-safe"
  22185. },
  22186. dickCanine: {
  22187. height: math.unit(1, "feet"),
  22188. name: "Dick (Canine)",
  22189. image: {
  22190. source: "./media/characters/artemis/dick-canine.svg"
  22191. },
  22192. form: "calibrating"
  22193. },
  22194. dickEquine: {
  22195. height: math.unit(0.85, "feet"),
  22196. name: "Dick (Equine)",
  22197. image: {
  22198. source: "./media/characters/artemis/dick-equine.svg"
  22199. },
  22200. form: "calibrating"
  22201. },
  22202. dickExotic: {
  22203. height: math.unit(0.85, "feet"),
  22204. name: "Dick (Exotic)",
  22205. image: {
  22206. source: "./media/characters/artemis/dick-exotic.svg"
  22207. },
  22208. form: "calibrating"
  22209. },
  22210. dickCanineBigger: {
  22211. height: math.unit(1 * 1.33, "feet"),
  22212. name: "Dick (Canine)",
  22213. image: {
  22214. source: "./media/characters/artemis/dick-canine.svg"
  22215. },
  22216. form: "oversize-load"
  22217. },
  22218. dickEquineBigger: {
  22219. height: math.unit(0.85 * 1.33, "feet"),
  22220. name: "Dick (Equine)",
  22221. image: {
  22222. source: "./media/characters/artemis/dick-equine.svg"
  22223. },
  22224. form: "oversize-load"
  22225. },
  22226. dickExoticBigger: {
  22227. height: math.unit(0.85 * 1.33, "feet"),
  22228. name: "Dick (Exotic)",
  22229. image: {
  22230. source: "./media/characters/artemis/dick-exotic.svg"
  22231. },
  22232. form: "oversize-load"
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(7.5, "feet"),
  22239. form: "work-safe",
  22240. default: true
  22241. },
  22242. {
  22243. name: "Normal",
  22244. height: math.unit(7.5, "feet"),
  22245. form: "calibrating",
  22246. default: true
  22247. },
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(7.5, "feet"),
  22251. form: "oversize-load",
  22252. default: true
  22253. },
  22254. {
  22255. name: "Enlarged",
  22256. height: math.unit(12, "feet"),
  22257. form: "work-safe",
  22258. },
  22259. {
  22260. name: "Enlarged",
  22261. height: math.unit(12, "feet"),
  22262. form: "calibrating",
  22263. },
  22264. {
  22265. name: "Enlarged",
  22266. height: math.unit(12, "feet"),
  22267. form: "oversize-load",
  22268. },
  22269. ],
  22270. {
  22271. "work-safe": {
  22272. name: "Work-Safe",
  22273. default: true
  22274. },
  22275. "calibrating": {
  22276. name: "Calibrating"
  22277. },
  22278. "oversize-load": {
  22279. name: "Oversize Load"
  22280. }
  22281. }
  22282. ))
  22283. characterMakers.push(() => makeCharacter(
  22284. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22285. {
  22286. front: {
  22287. height: math.unit(5 + 3 / 12, "feet"),
  22288. weight: math.unit(160, "lb"),
  22289. name: "Front",
  22290. image: {
  22291. source: "./media/characters/kira/front.svg",
  22292. extra: 906 / 786,
  22293. bottom: 0.01
  22294. }
  22295. },
  22296. back: {
  22297. height: math.unit(5 + 3 / 12, "feet"),
  22298. weight: math.unit(160, "lb"),
  22299. name: "Back",
  22300. image: {
  22301. source: "./media/characters/kira/back.svg",
  22302. extra: 882 / 757,
  22303. bottom: 0.005
  22304. }
  22305. },
  22306. frontDressed: {
  22307. height: math.unit(5 + 3 / 12, "feet"),
  22308. weight: math.unit(160, "lb"),
  22309. name: "Front (Dressed)",
  22310. image: {
  22311. source: "./media/characters/kira/front-dressed.svg",
  22312. extra: 906 / 786,
  22313. bottom: 0.01
  22314. }
  22315. },
  22316. beans: {
  22317. height: math.unit(0.92, "feet"),
  22318. name: "Beans",
  22319. image: {
  22320. source: "./media/characters/kira/beans.svg"
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Normal",
  22327. height: math.unit(5 + 3 / 12, "feet"),
  22328. default: true
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(5 + 4 / 12, "feet"),
  22337. weight: math.unit(145, "lb"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/scramble/front.svg",
  22341. extra: 763 / 727,
  22342. bottom: 0.05
  22343. }
  22344. },
  22345. back: {
  22346. height: math.unit(5 + 4 / 12, "feet"),
  22347. weight: math.unit(145, "lb"),
  22348. name: "Back",
  22349. image: {
  22350. source: "./media/characters/scramble/back.svg",
  22351. extra: 826 / 737,
  22352. bottom: 0.002
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(5 + 4 / 12, "feet"),
  22360. default: true
  22361. },
  22362. ]
  22363. ))
  22364. characterMakers.push(() => makeCharacter(
  22365. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22366. {
  22367. side: {
  22368. height: math.unit(6 + 2 / 12, "feet"),
  22369. weight: math.unit(190, "lb"),
  22370. name: "Side",
  22371. image: {
  22372. source: "./media/characters/biscuit/side.svg",
  22373. extra: 858 / 791,
  22374. bottom: 0.044
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(6 + 2 / 12, "feet"),
  22382. default: true
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22388. {
  22389. front: {
  22390. height: math.unit(5 + 2 / 12, "feet"),
  22391. weight: math.unit(120, "lb"),
  22392. name: "Front",
  22393. image: {
  22394. source: "./media/characters/poffin/front.svg",
  22395. extra: 786 / 680,
  22396. bottom: 0.005
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Normal",
  22403. height: math.unit(5 + 2 / 12, "feet"),
  22404. default: true
  22405. },
  22406. ]
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22410. {
  22411. front: {
  22412. height: math.unit(6 + 3 / 12, "feet"),
  22413. weight: math.unit(519, "lb"),
  22414. name: "Front",
  22415. image: {
  22416. source: "./media/characters/dhari/front.svg",
  22417. extra: 1048 / 946,
  22418. bottom: 0.015
  22419. }
  22420. },
  22421. back: {
  22422. height: math.unit(6 + 3 / 12, "feet"),
  22423. weight: math.unit(519, "lb"),
  22424. name: "Back",
  22425. image: {
  22426. source: "./media/characters/dhari/back.svg",
  22427. extra: 1048 / 931,
  22428. bottom: 0.005
  22429. }
  22430. },
  22431. frontDressed: {
  22432. height: math.unit(6 + 3 / 12, "feet"),
  22433. weight: math.unit(519, "lb"),
  22434. name: "Front (Dressed)",
  22435. image: {
  22436. source: "./media/characters/dhari/front-dressed.svg",
  22437. extra: 1713 / 1546,
  22438. bottom: 0.02
  22439. }
  22440. },
  22441. backDressed: {
  22442. height: math.unit(6 + 3 / 12, "feet"),
  22443. weight: math.unit(519, "lb"),
  22444. name: "Back (Dressed)",
  22445. image: {
  22446. source: "./media/characters/dhari/back-dressed.svg",
  22447. extra: 1699 / 1537,
  22448. bottom: 0.01
  22449. }
  22450. },
  22451. maw: {
  22452. height: math.unit(0.95, "feet"),
  22453. name: "Maw",
  22454. image: {
  22455. source: "./media/characters/dhari/maw.svg"
  22456. }
  22457. },
  22458. wereFront: {
  22459. height: math.unit(12 + 8 / 12, "feet"),
  22460. weight: math.unit(4000, "lb"),
  22461. name: "Front (Were)",
  22462. image: {
  22463. source: "./media/characters/dhari/were-front.svg",
  22464. extra: 1065 / 969,
  22465. bottom: 0.015
  22466. }
  22467. },
  22468. wereBack: {
  22469. height: math.unit(12 + 8 / 12, "feet"),
  22470. weight: math.unit(4000, "lb"),
  22471. name: "Back (Were)",
  22472. image: {
  22473. source: "./media/characters/dhari/were-back.svg",
  22474. extra: 1065 / 969,
  22475. bottom: 0.012
  22476. }
  22477. },
  22478. wereMaw: {
  22479. height: math.unit(0.625, "meters"),
  22480. name: "Maw (Were)",
  22481. image: {
  22482. source: "./media/characters/dhari/were-maw.svg"
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Normal",
  22489. height: math.unit(6 + 3 / 12, "feet"),
  22490. default: true
  22491. },
  22492. ]
  22493. ))
  22494. characterMakers.push(() => makeCharacter(
  22495. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22496. {
  22497. anthro: {
  22498. height: math.unit(5 + 7 / 12, "feet"),
  22499. weight: math.unit(175, "lb"),
  22500. name: "Anthro",
  22501. image: {
  22502. source: "./media/characters/rena-dyne/anthro.svg",
  22503. extra: 1849 / 1785,
  22504. bottom: 0.005
  22505. }
  22506. },
  22507. taur: {
  22508. height: math.unit(15 + 6 / 12, "feet"),
  22509. weight: math.unit(8000, "lb"),
  22510. name: "Taur",
  22511. image: {
  22512. source: "./media/characters/rena-dyne/taur.svg",
  22513. extra: 2315 / 2234,
  22514. bottom: 0.033
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Normal",
  22521. height: math.unit(5 + 7 / 12, "feet"),
  22522. default: true
  22523. },
  22524. ]
  22525. ))
  22526. characterMakers.push(() => makeCharacter(
  22527. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22528. {
  22529. front: {
  22530. height: math.unit(8, "feet"),
  22531. weight: math.unit(600, "lb"),
  22532. name: "Front",
  22533. image: {
  22534. source: "./media/characters/weremeep/front.svg",
  22535. extra: 970/849,
  22536. bottom: 7/977
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Normal",
  22543. height: math.unit(8, "feet"),
  22544. default: true
  22545. },
  22546. {
  22547. name: "Lorg",
  22548. height: math.unit(12, "feet")
  22549. },
  22550. {
  22551. name: "Oh Lawd She Comin'",
  22552. height: math.unit(20, "feet")
  22553. },
  22554. ]
  22555. ))
  22556. characterMakers.push(() => makeCharacter(
  22557. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22558. {
  22559. front: {
  22560. height: math.unit(4, "feet"),
  22561. weight: math.unit(90, "lb"),
  22562. name: "Front",
  22563. image: {
  22564. source: "./media/characters/reza/front.svg",
  22565. extra: 1183 / 1111,
  22566. bottom: 0.017
  22567. }
  22568. },
  22569. back: {
  22570. height: math.unit(4, "feet"),
  22571. weight: math.unit(90, "lb"),
  22572. name: "Back",
  22573. image: {
  22574. source: "./media/characters/reza/back.svg",
  22575. extra: 1183 / 1111,
  22576. bottom: 0.01
  22577. }
  22578. },
  22579. drake: {
  22580. height: math.unit(30, "feet"),
  22581. weight: math.unit(246960, "lb"),
  22582. name: "Drake",
  22583. image: {
  22584. source: "./media/characters/reza/drake.svg",
  22585. extra: 2350 / 2024,
  22586. bottom: 60.7 / 2403
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Normal",
  22593. height: math.unit(4, "feet"),
  22594. default: true
  22595. },
  22596. ]
  22597. ))
  22598. characterMakers.push(() => makeCharacter(
  22599. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22600. {
  22601. side: {
  22602. height: math.unit(15, "feet"),
  22603. weight: math.unit(14, "tons"),
  22604. name: "Side",
  22605. image: {
  22606. source: "./media/characters/athea/side.svg",
  22607. extra: 960 / 540,
  22608. bottom: 0.003
  22609. }
  22610. },
  22611. sitting: {
  22612. height: math.unit(6 * 2.85, "feet"),
  22613. weight: math.unit(14, "tons"),
  22614. name: "Sitting",
  22615. image: {
  22616. source: "./media/characters/athea/sitting.svg",
  22617. extra: 621 / 581,
  22618. bottom: 0.075
  22619. }
  22620. },
  22621. maw: {
  22622. height: math.unit(7.59498031496063, "feet"),
  22623. name: "Maw",
  22624. image: {
  22625. source: "./media/characters/athea/maw.svg"
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Lap Cat",
  22632. height: math.unit(2.5, "feet")
  22633. },
  22634. {
  22635. name: "Minimacro",
  22636. height: math.unit(15, "feet"),
  22637. default: true
  22638. },
  22639. {
  22640. name: "Macro",
  22641. height: math.unit(120, "feet")
  22642. },
  22643. {
  22644. name: "Macro+",
  22645. height: math.unit(640, "feet")
  22646. },
  22647. {
  22648. name: "Colossus",
  22649. height: math.unit(2.2, "miles")
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22655. {
  22656. front: {
  22657. height: math.unit(8 + 8 / 12, "feet"),
  22658. weight: math.unit(130, "kg"),
  22659. name: "Front",
  22660. image: {
  22661. source: "./media/characters/seroko/front.svg",
  22662. extra: 1385 / 1280,
  22663. bottom: 0.025
  22664. }
  22665. },
  22666. back: {
  22667. height: math.unit(8 + 8 / 12, "feet"),
  22668. weight: math.unit(130, "kg"),
  22669. name: "Back",
  22670. image: {
  22671. source: "./media/characters/seroko/back.svg",
  22672. extra: 1369 / 1238,
  22673. bottom: 0.018
  22674. }
  22675. },
  22676. frontDressed: {
  22677. height: math.unit(8 + 8 / 12, "feet"),
  22678. weight: math.unit(130, "kg"),
  22679. name: "Front (Dressed)",
  22680. image: {
  22681. source: "./media/characters/seroko/front-dressed.svg",
  22682. extra: 1366 / 1275,
  22683. bottom: 0.03
  22684. }
  22685. },
  22686. },
  22687. [
  22688. {
  22689. name: "Normal",
  22690. height: math.unit(8 + 8 / 12, "feet"),
  22691. default: true
  22692. },
  22693. ]
  22694. ))
  22695. characterMakers.push(() => makeCharacter(
  22696. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22697. {
  22698. front: {
  22699. height: math.unit(5.5, "feet"),
  22700. weight: math.unit(160, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/quatzi/front.svg",
  22704. extra: 2346 / 2242,
  22705. bottom: 0.015
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(5.5, "feet"),
  22713. default: true
  22714. },
  22715. {
  22716. name: "Big",
  22717. height: math.unit(7.7, "feet")
  22718. },
  22719. ]
  22720. ))
  22721. characterMakers.push(() => makeCharacter(
  22722. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22723. {
  22724. front: {
  22725. height: math.unit(5 + 11 / 12, "feet"),
  22726. weight: math.unit(180, "lb"),
  22727. name: "Front",
  22728. image: {
  22729. source: "./media/characters/sen/front.svg",
  22730. extra: 1321 / 1254,
  22731. bottom: 0.015
  22732. }
  22733. },
  22734. side: {
  22735. height: math.unit(5 + 11 / 12, "feet"),
  22736. weight: math.unit(180, "lb"),
  22737. name: "Side",
  22738. image: {
  22739. source: "./media/characters/sen/side.svg",
  22740. extra: 1321 / 1254,
  22741. bottom: 0.007
  22742. }
  22743. },
  22744. back: {
  22745. height: math.unit(5 + 11 / 12, "feet"),
  22746. weight: math.unit(180, "lb"),
  22747. name: "Back",
  22748. image: {
  22749. source: "./media/characters/sen/back.svg",
  22750. extra: 1321 / 1254
  22751. }
  22752. },
  22753. },
  22754. [
  22755. {
  22756. name: "Normal",
  22757. height: math.unit(5 + 11 / 12, "feet"),
  22758. default: true
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22764. {
  22765. front: {
  22766. height: math.unit(166.6, "cm"),
  22767. weight: math.unit(66.6, "kg"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/fruity/front.svg",
  22771. extra: 1510 / 1386,
  22772. bottom: 0.04
  22773. }
  22774. },
  22775. back: {
  22776. height: math.unit(166.6, "cm"),
  22777. weight: math.unit(66.6, "lb"),
  22778. name: "Back",
  22779. image: {
  22780. source: "./media/characters/fruity/back.svg",
  22781. extra: 1563 / 1435,
  22782. bottom: 0.005
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Normal",
  22789. height: math.unit(166.6, "cm"),
  22790. default: true
  22791. },
  22792. {
  22793. name: "Demonic",
  22794. height: math.unit(166.6, "feet")
  22795. },
  22796. ]
  22797. ))
  22798. characterMakers.push(() => makeCharacter(
  22799. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22800. {
  22801. side: {
  22802. height: math.unit(10, "feet"),
  22803. weight: math.unit(500, "lb"),
  22804. name: "Side",
  22805. image: {
  22806. source: "./media/characters/zost/side.svg",
  22807. extra: 2870/2533,
  22808. bottom: 252/3122
  22809. }
  22810. },
  22811. mawFront: {
  22812. height: math.unit(1.08, "meters"),
  22813. name: "Maw (Front)",
  22814. image: {
  22815. source: "./media/characters/zost/maw-front.svg"
  22816. }
  22817. },
  22818. mawSide: {
  22819. height: math.unit(2.66, "feet"),
  22820. name: "Maw (Side)",
  22821. image: {
  22822. source: "./media/characters/zost/maw-side.svg"
  22823. }
  22824. },
  22825. wingspan: {
  22826. height: math.unit(7.4, "feet"),
  22827. name: "Wingspan",
  22828. image: {
  22829. source: "./media/characters/zost/wingspan.svg"
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Normal",
  22836. height: math.unit(10, "feet"),
  22837. default: true
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(5 + 4 / 12, "feet"),
  22846. weight: math.unit(120, "lb"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/luci/front.svg",
  22850. extra: 1985 / 1884,
  22851. bottom: 0.04
  22852. }
  22853. },
  22854. back: {
  22855. height: math.unit(5 + 4 / 12, "feet"),
  22856. weight: math.unit(120, "lb"),
  22857. name: "Back",
  22858. image: {
  22859. source: "./media/characters/luci/back.svg",
  22860. extra: 1892 / 1791,
  22861. bottom: 0.002
  22862. }
  22863. },
  22864. },
  22865. [
  22866. {
  22867. name: "Normal",
  22868. height: math.unit(5 + 4 / 12, "feet"),
  22869. default: true
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(1500, "feet"),
  22878. weight: math.unit(3.8e6, "tons"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/2th/front.svg",
  22882. extra: 3489 / 3350,
  22883. bottom: 0.1
  22884. }
  22885. },
  22886. foot: {
  22887. height: math.unit(461, "feet"),
  22888. name: "Foot",
  22889. image: {
  22890. source: "./media/characters/2th/foot.svg"
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "\"Micro\"",
  22897. height: math.unit(15 + 7 / 12, "feet")
  22898. },
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(1500, "feet"),
  22902. default: true
  22903. },
  22904. {
  22905. name: "Macro",
  22906. height: math.unit(5000, "feet")
  22907. },
  22908. {
  22909. name: "Megamacro",
  22910. height: math.unit(15, "miles")
  22911. },
  22912. {
  22913. name: "Gigamacro",
  22914. height: math.unit(4000, "miles")
  22915. },
  22916. {
  22917. name: "Galactic",
  22918. height: math.unit(50, "AU")
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(5 + 6 / 12, "feet"),
  22927. weight: math.unit(220, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/amethyst/front.svg",
  22931. extra: 2078 / 2040,
  22932. bottom: 0.045
  22933. }
  22934. },
  22935. back: {
  22936. height: math.unit(5 + 6 / 12, "feet"),
  22937. weight: math.unit(220, "lb"),
  22938. name: "Back",
  22939. image: {
  22940. source: "./media/characters/amethyst/back.svg",
  22941. extra: 2021 / 1989,
  22942. bottom: 0.02
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(5 + 6 / 12, "feet"),
  22950. default: true
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22956. {
  22957. front: {
  22958. height: math.unit(4 + 11 / 12, "feet"),
  22959. weight: math.unit(120, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/yumi-akiyama/front.svg",
  22963. extra: 1327 / 1235,
  22964. bottom: 0.02
  22965. }
  22966. },
  22967. back: {
  22968. height: math.unit(4 + 11 / 12, "feet"),
  22969. weight: math.unit(120, "lb"),
  22970. name: "Back",
  22971. image: {
  22972. source: "./media/characters/yumi-akiyama/back.svg",
  22973. extra: 1287 / 1245,
  22974. bottom: 0.002
  22975. }
  22976. },
  22977. },
  22978. [
  22979. {
  22980. name: "Galactic",
  22981. height: math.unit(50, "galaxies"),
  22982. default: true
  22983. },
  22984. {
  22985. name: "Universal",
  22986. height: math.unit(100, "universes")
  22987. },
  22988. ]
  22989. ))
  22990. characterMakers.push(() => makeCharacter(
  22991. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22992. {
  22993. front: {
  22994. height: math.unit(8, "feet"),
  22995. weight: math.unit(500, "lb"),
  22996. name: "Front",
  22997. image: {
  22998. source: "./media/characters/rifter-yrmori/front.svg",
  22999. extra: 1180 / 1125,
  23000. bottom: 0.02
  23001. }
  23002. },
  23003. back: {
  23004. height: math.unit(8, "feet"),
  23005. weight: math.unit(500, "lb"),
  23006. name: "Back",
  23007. image: {
  23008. source: "./media/characters/rifter-yrmori/back.svg",
  23009. extra: 1190 / 1145,
  23010. bottom: 0.001
  23011. }
  23012. },
  23013. wings: {
  23014. height: math.unit(7.75, "feet"),
  23015. weight: math.unit(500, "lb"),
  23016. name: "Wings",
  23017. image: {
  23018. source: "./media/characters/rifter-yrmori/wings.svg",
  23019. extra: 1357 / 1285
  23020. }
  23021. },
  23022. maw: {
  23023. height: math.unit(0.8, "feet"),
  23024. name: "Maw",
  23025. image: {
  23026. source: "./media/characters/rifter-yrmori/maw.svg"
  23027. }
  23028. },
  23029. mawfront: {
  23030. height: math.unit(1.45, "feet"),
  23031. name: "Maw (Front)",
  23032. image: {
  23033. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23034. }
  23035. },
  23036. },
  23037. [
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(8, "feet"),
  23041. default: true
  23042. },
  23043. {
  23044. name: "Macro",
  23045. height: math.unit(42, "meters")
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23051. {
  23052. were: {
  23053. height: math.unit(25 + 6 / 12, "feet"),
  23054. weight: math.unit(10000, "lb"),
  23055. name: "Were",
  23056. image: {
  23057. source: "./media/characters/tahajin/were.svg",
  23058. extra: 801 / 770,
  23059. bottom: 0.042
  23060. }
  23061. },
  23062. aquatic: {
  23063. height: math.unit(6 + 4 / 12, "feet"),
  23064. weight: math.unit(160, "lb"),
  23065. name: "Aquatic",
  23066. image: {
  23067. source: "./media/characters/tahajin/aquatic.svg",
  23068. extra: 572 / 542,
  23069. bottom: 0.04
  23070. }
  23071. },
  23072. chow: {
  23073. height: math.unit(8 + 11 / 12, "feet"),
  23074. weight: math.unit(450, "lb"),
  23075. name: "Chow",
  23076. image: {
  23077. source: "./media/characters/tahajin/chow.svg",
  23078. extra: 660 / 640,
  23079. bottom: 0.015
  23080. }
  23081. },
  23082. demiNaga: {
  23083. height: math.unit(6 + 8 / 12, "feet"),
  23084. weight: math.unit(300, "lb"),
  23085. name: "Demi Naga",
  23086. image: {
  23087. source: "./media/characters/tahajin/demi-naga.svg",
  23088. extra: 643 / 615,
  23089. bottom: 0.1
  23090. }
  23091. },
  23092. data: {
  23093. height: math.unit(5, "inches"),
  23094. weight: math.unit(0.1, "lb"),
  23095. name: "Data",
  23096. image: {
  23097. source: "./media/characters/tahajin/data.svg"
  23098. }
  23099. },
  23100. fluu: {
  23101. height: math.unit(5 + 7 / 12, "feet"),
  23102. weight: math.unit(140, "lb"),
  23103. name: "Fluu",
  23104. image: {
  23105. source: "./media/characters/tahajin/fluu.svg",
  23106. extra: 628 / 592,
  23107. bottom: 0.02
  23108. }
  23109. },
  23110. starWarrior: {
  23111. height: math.unit(4 + 5 / 12, "feet"),
  23112. weight: math.unit(50, "lb"),
  23113. name: "Star Warrior",
  23114. image: {
  23115. source: "./media/characters/tahajin/star-warrior.svg"
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Normal",
  23122. height: math.unit(25 + 6 / 12, "feet"),
  23123. default: true
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23129. {
  23130. front: {
  23131. height: math.unit(8, "feet"),
  23132. weight: math.unit(350, "lb"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/gabira/front.svg",
  23136. extra: 1261/1154,
  23137. bottom: 51/1312
  23138. }
  23139. },
  23140. back: {
  23141. height: math.unit(8, "feet"),
  23142. weight: math.unit(350, "lb"),
  23143. name: "Back",
  23144. image: {
  23145. source: "./media/characters/gabira/back.svg",
  23146. extra: 1265/1163,
  23147. bottom: 46/1311
  23148. }
  23149. },
  23150. head: {
  23151. height: math.unit(2.85, "feet"),
  23152. name: "Head",
  23153. image: {
  23154. source: "./media/characters/gabira/head.svg"
  23155. }
  23156. },
  23157. },
  23158. [
  23159. {
  23160. name: "Normal",
  23161. height: math.unit(8, "feet"),
  23162. default: true
  23163. },
  23164. ]
  23165. ))
  23166. characterMakers.push(() => makeCharacter(
  23167. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23168. {
  23169. front: {
  23170. height: math.unit(5 + 3 / 12, "feet"),
  23171. weight: math.unit(137, "lb"),
  23172. name: "Front",
  23173. image: {
  23174. source: "./media/characters/sasha-katraine/front.svg",
  23175. extra: 1745/1694,
  23176. bottom: 37/1782
  23177. }
  23178. },
  23179. back: {
  23180. height: math.unit(5 + 3 / 12, "feet"),
  23181. weight: math.unit(137, "lb"),
  23182. name: "Back",
  23183. image: {
  23184. source: "./media/characters/sasha-katraine/back.svg",
  23185. extra: 1776/1699,
  23186. bottom: 26/1802
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Micro",
  23193. height: math.unit(5, "inches")
  23194. },
  23195. {
  23196. name: "Normal",
  23197. height: math.unit(5 + 3 / 12, "feet"),
  23198. default: true
  23199. },
  23200. ]
  23201. ))
  23202. characterMakers.push(() => makeCharacter(
  23203. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23204. {
  23205. side: {
  23206. height: math.unit(4, "inches"),
  23207. weight: math.unit(200, "grams"),
  23208. name: "Side",
  23209. image: {
  23210. source: "./media/characters/der/side.svg",
  23211. extra: 719 / 400,
  23212. bottom: 30.6 / 749.9187
  23213. }
  23214. },
  23215. },
  23216. [
  23217. {
  23218. name: "Micro",
  23219. height: math.unit(4, "inches"),
  23220. default: true
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23226. {
  23227. side: {
  23228. height: math.unit(30, "meters"),
  23229. weight: math.unit(700, "tonnes"),
  23230. name: "Side",
  23231. image: {
  23232. source: "./media/characters/fixerdragon/side.svg",
  23233. extra: (1293.0514 - 116.03) / 1106.86,
  23234. bottom: 116.03 / 1293.0514
  23235. }
  23236. },
  23237. },
  23238. [
  23239. {
  23240. name: "Planck",
  23241. height: math.unit(1.6e-35, "meters")
  23242. },
  23243. {
  23244. name: "Micro",
  23245. height: math.unit(0.4, "meters")
  23246. },
  23247. {
  23248. name: "Normal",
  23249. height: math.unit(30, "meters"),
  23250. default: true
  23251. },
  23252. {
  23253. name: "Megamacro",
  23254. height: math.unit(1.2, "megameters")
  23255. },
  23256. {
  23257. name: "Teramacro",
  23258. height: math.unit(130, "terameters")
  23259. },
  23260. {
  23261. name: "Yottamacro",
  23262. height: math.unit(6200, "yottameters")
  23263. },
  23264. ]
  23265. ));
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23268. {
  23269. front: {
  23270. height: math.unit(8, "feet"),
  23271. weight: math.unit(250, "lb"),
  23272. name: "Front",
  23273. image: {
  23274. source: "./media/characters/kite/front.svg",
  23275. extra: 2796 / 2659,
  23276. bottom: 0.002
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(8, "feet"),
  23284. default: true
  23285. },
  23286. {
  23287. name: "Macro",
  23288. height: math.unit(360, "feet")
  23289. },
  23290. {
  23291. name: "Megamacro",
  23292. height: math.unit(1500, "feet")
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23298. {
  23299. front: {
  23300. height: math.unit(5 + 11/12, "feet"),
  23301. weight: math.unit(170, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/poojawa-vynar/front.svg",
  23305. extra: 1735/1585,
  23306. bottom: 96/1831
  23307. }
  23308. },
  23309. back: {
  23310. height: math.unit(5 + 11/12, "feet"),
  23311. weight: math.unit(170, "lb"),
  23312. name: "Back",
  23313. image: {
  23314. source: "./media/characters/poojawa-vynar/back.svg",
  23315. extra: 1749/1607,
  23316. bottom: 28/1777
  23317. }
  23318. },
  23319. male: {
  23320. height: math.unit(5 + 11/12, "feet"),
  23321. weight: math.unit(170, "lb"),
  23322. name: "Male",
  23323. image: {
  23324. source: "./media/characters/poojawa-vynar/male.svg",
  23325. extra: 1855/1713,
  23326. bottom: 63/1918
  23327. }
  23328. },
  23329. taur: {
  23330. height: math.unit(5 + 11/12, "feet"),
  23331. weight: math.unit(170, "lb"),
  23332. name: "Taur",
  23333. image: {
  23334. source: "./media/characters/poojawa-vynar/taur.svg",
  23335. extra: 1151/1059,
  23336. bottom: 356/1507
  23337. }
  23338. },
  23339. frontDressed: {
  23340. height: math.unit(5 + 11/12, "feet"),
  23341. weight: math.unit(170, "lb"),
  23342. name: "Front (Dressed)",
  23343. image: {
  23344. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23345. extra: 1735/1585,
  23346. bottom: 96/1831
  23347. }
  23348. },
  23349. backDressed: {
  23350. height: math.unit(5 + 11/12, "feet"),
  23351. weight: math.unit(170, "lb"),
  23352. name: "Back (Dressed)",
  23353. image: {
  23354. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23355. extra: 1749/1607,
  23356. bottom: 28/1777
  23357. }
  23358. },
  23359. maleDressed: {
  23360. height: math.unit(5 + 11/12, "feet"),
  23361. weight: math.unit(170, "lb"),
  23362. name: "Male (Dressed)",
  23363. image: {
  23364. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23365. extra: 1855/1713,
  23366. bottom: 63/1918
  23367. }
  23368. },
  23369. taurDressed: {
  23370. height: math.unit(5 + 11/12, "feet"),
  23371. weight: math.unit(170, "lb"),
  23372. name: "Taur (Dressed)",
  23373. image: {
  23374. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23375. extra: 1151/1059,
  23376. bottom: 356/1507
  23377. }
  23378. },
  23379. maw: {
  23380. height: math.unit(1.46, "feet"),
  23381. name: "Maw",
  23382. image: {
  23383. source: "./media/characters/poojawa-vynar/maw.svg"
  23384. }
  23385. },
  23386. head: {
  23387. height: math.unit(2.34, "feet"),
  23388. name: "Head",
  23389. image: {
  23390. source: "./media/characters/poojawa-vynar/head.svg"
  23391. }
  23392. },
  23393. paw: {
  23394. height: math.unit(1.61, "feet"),
  23395. name: "Paw",
  23396. image: {
  23397. source: "./media/characters/poojawa-vynar/paw.svg"
  23398. }
  23399. },
  23400. pawToering: {
  23401. height: math.unit(1.72, "feet"),
  23402. name: "Paw (Toering)",
  23403. image: {
  23404. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23405. }
  23406. },
  23407. toering: {
  23408. height: math.unit(2.9, "inches"),
  23409. name: "Toering",
  23410. image: {
  23411. source: "./media/characters/poojawa-vynar/toering.svg"
  23412. }
  23413. },
  23414. shaft: {
  23415. height: math.unit(0.625, "feet"),
  23416. name: "Shaft",
  23417. image: {
  23418. source: "./media/characters/poojawa-vynar/shaft.svg"
  23419. }
  23420. },
  23421. spade: {
  23422. height: math.unit(0.42, "feet"),
  23423. name: "Spade",
  23424. image: {
  23425. source: "./media/characters/poojawa-vynar/spade.svg"
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "Shortstack",
  23432. height: math.unit(4, "feet")
  23433. },
  23434. {
  23435. name: "Normal",
  23436. height: math.unit(5 + 11 / 12, "feet"),
  23437. default: true
  23438. },
  23439. {
  23440. name: "Tauric",
  23441. height: math.unit(4, "meters")
  23442. },
  23443. ]
  23444. ))
  23445. characterMakers.push(() => makeCharacter(
  23446. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23447. {
  23448. front: {
  23449. height: math.unit(293, "meters"),
  23450. weight: math.unit(70400, "tons"),
  23451. name: "Front",
  23452. image: {
  23453. source: "./media/characters/violette/front.svg",
  23454. extra: 1227 / 1180,
  23455. bottom: 0.005
  23456. }
  23457. },
  23458. back: {
  23459. height: math.unit(293, "meters"),
  23460. weight: math.unit(70400, "tons"),
  23461. name: "Back",
  23462. image: {
  23463. source: "./media/characters/violette/back.svg",
  23464. extra: 1227 / 1180,
  23465. bottom: 0.005
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Macro",
  23472. height: math.unit(293, "meters"),
  23473. default: true
  23474. },
  23475. ]
  23476. ))
  23477. characterMakers.push(() => makeCharacter(
  23478. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23479. {
  23480. front: {
  23481. height: math.unit(1050, "feet"),
  23482. weight: math.unit(200000, "tons"),
  23483. name: "Front",
  23484. image: {
  23485. source: "./media/characters/alessandra/front.svg",
  23486. extra: 960 / 912,
  23487. bottom: 0.06
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Macro",
  23494. height: math.unit(1050, "feet")
  23495. },
  23496. {
  23497. name: "Macro+",
  23498. height: math.unit(900, "meters"),
  23499. default: true
  23500. },
  23501. ]
  23502. ))
  23503. characterMakers.push(() => makeCharacter(
  23504. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23505. {
  23506. front: {
  23507. height: math.unit(5, "feet"),
  23508. weight: math.unit(187, "lb"),
  23509. name: "Front",
  23510. image: {
  23511. source: "./media/characters/person/front.svg",
  23512. extra: 3087 / 2945,
  23513. bottom: 91 / 3181
  23514. }
  23515. },
  23516. },
  23517. [
  23518. {
  23519. name: "Micro",
  23520. height: math.unit(3, "inches")
  23521. },
  23522. {
  23523. name: "Normal",
  23524. height: math.unit(5, "feet"),
  23525. default: true
  23526. },
  23527. {
  23528. name: "Macro",
  23529. height: math.unit(90, "feet")
  23530. },
  23531. {
  23532. name: "Max Size",
  23533. height: math.unit(280, "feet")
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23539. {
  23540. front: {
  23541. height: math.unit(4.5, "meters"),
  23542. weight: math.unit(3200, "lb"),
  23543. name: "Front",
  23544. image: {
  23545. source: "./media/characters/ty/front.svg",
  23546. extra: 1038 / 960,
  23547. bottom: 31.156 / 1068
  23548. }
  23549. },
  23550. back: {
  23551. height: math.unit(4.5, "meters"),
  23552. weight: math.unit(3200, "lb"),
  23553. name: "Back",
  23554. image: {
  23555. source: "./media/characters/ty/back.svg",
  23556. extra: 1044 / 966,
  23557. bottom: 7.48 / 1049
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(4.5, "meters"),
  23565. default: true
  23566. },
  23567. ]
  23568. ))
  23569. characterMakers.push(() => makeCharacter(
  23570. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23571. {
  23572. front: {
  23573. height: math.unit(5 + 4 / 12, "feet"),
  23574. weight: math.unit(115, "lb"),
  23575. name: "Front",
  23576. image: {
  23577. source: "./media/characters/rocky/front.svg",
  23578. extra: 1012 / 975,
  23579. bottom: 54 / 1066
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Normal",
  23586. height: math.unit(5 + 4 / 12, "feet"),
  23587. default: true
  23588. },
  23589. ]
  23590. ))
  23591. characterMakers.push(() => makeCharacter(
  23592. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23593. {
  23594. upright: {
  23595. height: math.unit(6, "meters"),
  23596. weight: math.unit(4000, "kg"),
  23597. name: "Upright",
  23598. image: {
  23599. source: "./media/characters/ruin/upright.svg",
  23600. extra: 668 / 661,
  23601. bottom: 42 / 799.8396
  23602. }
  23603. },
  23604. },
  23605. [
  23606. {
  23607. name: "Normal",
  23608. height: math.unit(6, "meters"),
  23609. default: true
  23610. },
  23611. ]
  23612. ))
  23613. characterMakers.push(() => makeCharacter(
  23614. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23615. {
  23616. front: {
  23617. height: math.unit(5, "feet"),
  23618. weight: math.unit(106, "lb"),
  23619. name: "Front",
  23620. image: {
  23621. source: "./media/characters/robin/front.svg",
  23622. extra: 862 / 799,
  23623. bottom: 42.4 / 914.8856
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(5, "feet"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23637. {
  23638. side: {
  23639. height: math.unit(3, "feet"),
  23640. weight: math.unit(225, "lb"),
  23641. name: "Side",
  23642. image: {
  23643. source: "./media/characters/saian/side.svg",
  23644. extra: 566 / 356,
  23645. bottom: 79.7 / 643
  23646. }
  23647. },
  23648. maw: {
  23649. height: math.unit(2.85, "feet"),
  23650. name: "Maw",
  23651. image: {
  23652. source: "./media/characters/saian/maw.svg"
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Normal",
  23659. height: math.unit(3, "feet"),
  23660. default: true
  23661. },
  23662. ]
  23663. ))
  23664. characterMakers.push(() => makeCharacter(
  23665. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23666. {
  23667. side: {
  23668. height: math.unit(8, "feet"),
  23669. weight: math.unit(300, "lb"),
  23670. name: "Side",
  23671. image: {
  23672. source: "./media/characters/equus-silvermane/side.svg",
  23673. extra: 2176 / 2050,
  23674. bottom: 65.7 / 2245
  23675. }
  23676. },
  23677. front: {
  23678. height: math.unit(8, "feet"),
  23679. weight: math.unit(300, "lb"),
  23680. name: "Front",
  23681. image: {
  23682. source: "./media/characters/equus-silvermane/front.svg",
  23683. extra: 4633 / 4400,
  23684. bottom: 71.3 / 4706.915
  23685. }
  23686. },
  23687. sideStepping: {
  23688. height: math.unit(8, "feet"),
  23689. weight: math.unit(300, "lb"),
  23690. name: "Side (Stepping)",
  23691. image: {
  23692. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23693. extra: 1968 / 1860,
  23694. bottom: 16.4 / 1989
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(8, "feet")
  23702. },
  23703. {
  23704. name: "Minimacro",
  23705. height: math.unit(75, "feet"),
  23706. default: true
  23707. },
  23708. {
  23709. name: "Macro",
  23710. height: math.unit(150, "feet")
  23711. },
  23712. {
  23713. name: "Macro+",
  23714. height: math.unit(1000, "feet")
  23715. },
  23716. {
  23717. name: "Megamacro",
  23718. height: math.unit(1, "mile")
  23719. },
  23720. ]
  23721. ))
  23722. characterMakers.push(() => makeCharacter(
  23723. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23724. {
  23725. side: {
  23726. height: math.unit(20, "feet"),
  23727. weight: math.unit(30000, "kg"),
  23728. name: "Side",
  23729. image: {
  23730. source: "./media/characters/windar/side.svg",
  23731. extra: 1491 / 1248,
  23732. bottom: 82.56 / 1568
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Normal",
  23739. height: math.unit(20, "feet"),
  23740. default: true
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23746. {
  23747. side: {
  23748. height: math.unit(15.66, "feet"),
  23749. weight: math.unit(150, "lb"),
  23750. name: "Side",
  23751. image: {
  23752. source: "./media/characters/melody/side.svg",
  23753. extra: 1097 / 944,
  23754. bottom: 11.8 / 1109
  23755. }
  23756. },
  23757. sideOutfit: {
  23758. height: math.unit(15.66, "feet"),
  23759. weight: math.unit(150, "lb"),
  23760. name: "Side (Outfit)",
  23761. image: {
  23762. source: "./media/characters/melody/side-outfit.svg",
  23763. extra: 1097 / 944,
  23764. bottom: 11.8 / 1109
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "Normal",
  23771. height: math.unit(15.66, "feet"),
  23772. default: true
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23778. {
  23779. armoredFront: {
  23780. height: math.unit(8, "feet"),
  23781. weight: math.unit(325, "lb"),
  23782. name: "Front",
  23783. image: {
  23784. source: "./media/characters/windera/armored-front.svg",
  23785. extra: 1830/1598,
  23786. bottom: 151/1981
  23787. },
  23788. form: "armored",
  23789. default: true
  23790. },
  23791. macroFront: {
  23792. height: math.unit(70, "feet"),
  23793. weight: math.unit(315453, "lb"),
  23794. name: "Front",
  23795. image: {
  23796. source: "./media/characters/windera/macro-front.svg",
  23797. extra: 963/883,
  23798. bottom: 23/986
  23799. },
  23800. form: "macro",
  23801. default: true
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Normal",
  23807. height: math.unit(8, "feet"),
  23808. default: true,
  23809. form: "armored"
  23810. },
  23811. {
  23812. name: "Normal",
  23813. height: math.unit(70, "feet"),
  23814. default: true,
  23815. form: "macro"
  23816. },
  23817. ],
  23818. {
  23819. "armored": {
  23820. name: "Armored",
  23821. default: true
  23822. },
  23823. "macro": {
  23824. name: "Macro",
  23825. },
  23826. }
  23827. ))
  23828. characterMakers.push(() => makeCharacter(
  23829. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23830. {
  23831. front: {
  23832. height: math.unit(28.75, "feet"),
  23833. weight: math.unit(2000, "kg"),
  23834. name: "Front",
  23835. image: {
  23836. source: "./media/characters/sonear/front.svg",
  23837. extra: 1041.1 / 964.9,
  23838. bottom: 53.7 / 1096.6
  23839. }
  23840. },
  23841. },
  23842. [
  23843. {
  23844. name: "Normal",
  23845. height: math.unit(28.75, "feet"),
  23846. default: true
  23847. },
  23848. ]
  23849. ))
  23850. characterMakers.push(() => makeCharacter(
  23851. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23852. {
  23853. side: {
  23854. height: math.unit(25.5, "feet"),
  23855. weight: math.unit(23000, "kg"),
  23856. name: "Side",
  23857. image: {
  23858. source: "./media/characters/kanara/side.svg"
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(25.5, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23872. {
  23873. side: {
  23874. height: math.unit(10, "feet"),
  23875. weight: math.unit(1000, "kg"),
  23876. name: "Side",
  23877. image: {
  23878. source: "./media/characters/ereus/side.svg",
  23879. extra: 1157 / 959,
  23880. bottom: 153 / 1312.5
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Normal",
  23887. height: math.unit(10, "feet"),
  23888. default: true
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23894. {
  23895. side: {
  23896. height: math.unit(4.5, "feet"),
  23897. weight: math.unit(500, "lb"),
  23898. name: "Side",
  23899. image: {
  23900. source: "./media/characters/e-ter/side.svg",
  23901. extra: 1550 / 1248,
  23902. bottom: 146 / 1694
  23903. }
  23904. },
  23905. },
  23906. [
  23907. {
  23908. name: "Normal",
  23909. height: math.unit(4.5, "feet"),
  23910. default: true
  23911. },
  23912. ]
  23913. ))
  23914. characterMakers.push(() => makeCharacter(
  23915. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23916. {
  23917. side: {
  23918. height: math.unit(9.7, "feet"),
  23919. weight: math.unit(4000, "kg"),
  23920. name: "Side",
  23921. image: {
  23922. source: "./media/characters/yamie/side.svg"
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Normal",
  23929. height: math.unit(9.7, "feet"),
  23930. default: true
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(50, "feet"),
  23939. weight: math.unit(50000, "kg"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/anders/front.svg",
  23943. extra: 570 / 539,
  23944. bottom: 14.7 / 586.7
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Large",
  23951. height: math.unit(50, "feet")
  23952. },
  23953. {
  23954. name: "Macro",
  23955. height: math.unit(2000, "feet"),
  23956. default: true
  23957. },
  23958. {
  23959. name: "Megamacro",
  23960. height: math.unit(12, "miles")
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23966. {
  23967. front: {
  23968. height: math.unit(7 + 2 / 12, "feet"),
  23969. weight: math.unit(300, "lb"),
  23970. name: "Front",
  23971. image: {
  23972. source: "./media/characters/reban/front.svg",
  23973. extra: 1287/1212,
  23974. bottom: 148/1435
  23975. }
  23976. },
  23977. head: {
  23978. height: math.unit(1.95, "feet"),
  23979. name: "Head",
  23980. image: {
  23981. source: "./media/characters/reban/head.svg"
  23982. }
  23983. },
  23984. maw: {
  23985. height: math.unit(0.95, "feet"),
  23986. name: "Maw",
  23987. image: {
  23988. source: "./media/characters/reban/maw.svg"
  23989. }
  23990. },
  23991. foot: {
  23992. height: math.unit(1.65, "feet"),
  23993. name: "Foot",
  23994. image: {
  23995. source: "./media/characters/reban/foot.svg"
  23996. }
  23997. },
  23998. dick: {
  23999. height: math.unit(7 / 5, "feet"),
  24000. name: "Dick",
  24001. image: {
  24002. source: "./media/characters/reban/dick.svg"
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Natural Height",
  24009. height: math.unit(7 + 2 / 12, "feet")
  24010. },
  24011. {
  24012. name: "Macro",
  24013. height: math.unit(500, "feet"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Canon Height",
  24018. height: math.unit(50, "AU")
  24019. },
  24020. ]
  24021. ))
  24022. characterMakers.push(() => makeCharacter(
  24023. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24024. {
  24025. front: {
  24026. height: math.unit(6, "feet"),
  24027. weight: math.unit(150, "lb"),
  24028. name: "Front",
  24029. image: {
  24030. source: "./media/characters/terrance-keayes/front.svg",
  24031. extra: 1.005,
  24032. bottom: 151 / 1615
  24033. }
  24034. },
  24035. side: {
  24036. height: math.unit(6, "feet"),
  24037. weight: math.unit(150, "lb"),
  24038. name: "Side",
  24039. image: {
  24040. source: "./media/characters/terrance-keayes/side.svg",
  24041. extra: 1.005,
  24042. bottom: 129.4 / 1544
  24043. }
  24044. },
  24045. back: {
  24046. height: math.unit(6, "feet"),
  24047. weight: math.unit(150, "lb"),
  24048. name: "Back",
  24049. image: {
  24050. source: "./media/characters/terrance-keayes/back.svg",
  24051. extra: 1.005,
  24052. bottom: 58.4 / 1557.3
  24053. }
  24054. },
  24055. dick: {
  24056. height: math.unit(6 * 0.208, "feet"),
  24057. name: "Dick",
  24058. image: {
  24059. source: "./media/characters/terrance-keayes/dick.svg"
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Canon Height",
  24066. height: math.unit(35, "miles"),
  24067. default: true
  24068. },
  24069. ]
  24070. ))
  24071. characterMakers.push(() => makeCharacter(
  24072. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24073. {
  24074. front: {
  24075. height: math.unit(6, "feet"),
  24076. weight: math.unit(150, "lb"),
  24077. name: "Front",
  24078. image: {
  24079. source: "./media/characters/ofelia/front.svg",
  24080. extra: 1130/1117,
  24081. bottom: 91/1221
  24082. }
  24083. },
  24084. back: {
  24085. height: math.unit(6, "feet"),
  24086. weight: math.unit(150, "lb"),
  24087. name: "Back",
  24088. image: {
  24089. source: "./media/characters/ofelia/back.svg",
  24090. extra: 1172/1159,
  24091. bottom: 28/1200
  24092. }
  24093. },
  24094. maw: {
  24095. height: math.unit(1, "feet"),
  24096. name: "Maw",
  24097. image: {
  24098. source: "./media/characters/ofelia/maw.svg"
  24099. }
  24100. },
  24101. foot: {
  24102. height: math.unit(1.949, "feet"),
  24103. name: "Foot",
  24104. image: {
  24105. source: "./media/characters/ofelia/foot.svg"
  24106. }
  24107. },
  24108. },
  24109. [
  24110. {
  24111. name: "Canon Height",
  24112. height: math.unit(2000, "miles"),
  24113. default: true
  24114. },
  24115. ]
  24116. ))
  24117. characterMakers.push(() => makeCharacter(
  24118. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24119. {
  24120. front: {
  24121. height: math.unit(6, "feet"),
  24122. weight: math.unit(150, "lb"),
  24123. name: "Front",
  24124. image: {
  24125. source: "./media/characters/samuel/front.svg",
  24126. extra: 265 / 258,
  24127. bottom: 2 / 266.1566
  24128. }
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Macro",
  24134. height: math.unit(100, "feet"),
  24135. default: true
  24136. },
  24137. {
  24138. name: "Full Size",
  24139. height: math.unit(1000, "miles")
  24140. },
  24141. ]
  24142. ))
  24143. characterMakers.push(() => makeCharacter(
  24144. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24145. {
  24146. front: {
  24147. height: math.unit(6, "feet"),
  24148. weight: math.unit(300, "lb"),
  24149. name: "Front",
  24150. image: {
  24151. source: "./media/characters/beishir-kiel/front.svg",
  24152. extra: 569 / 547,
  24153. bottom: 41.9 / 609
  24154. }
  24155. },
  24156. maw: {
  24157. height: math.unit(6 * 0.202, "feet"),
  24158. name: "Maw",
  24159. image: {
  24160. source: "./media/characters/beishir-kiel/maw.svg"
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Macro",
  24167. height: math.unit(300, "feet"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24174. {
  24175. front: {
  24176. height: math.unit(5 + 7/12, "feet"),
  24177. weight: math.unit(120, "lb"),
  24178. name: "Front",
  24179. image: {
  24180. source: "./media/characters/logan-grey/front.svg",
  24181. extra: 1836/1738,
  24182. bottom: 108/1944
  24183. }
  24184. },
  24185. back: {
  24186. height: math.unit(5 + 7/12, "feet"),
  24187. weight: math.unit(120, "lb"),
  24188. name: "Back",
  24189. image: {
  24190. source: "./media/characters/logan-grey/back.svg",
  24191. extra: 1880/1794,
  24192. bottom: 24/1904
  24193. }
  24194. },
  24195. frontSfw: {
  24196. height: math.unit(5 + 7/12, "feet"),
  24197. weight: math.unit(120, "lb"),
  24198. name: "Front (SFW)",
  24199. image: {
  24200. source: "./media/characters/logan-grey/front-sfw.svg",
  24201. extra: 1836/1738,
  24202. bottom: 108/1944
  24203. }
  24204. },
  24205. backSfw: {
  24206. height: math.unit(5 + 7/12, "feet"),
  24207. weight: math.unit(120, "lb"),
  24208. name: "Back (SFW)",
  24209. image: {
  24210. source: "./media/characters/logan-grey/back-sfw.svg",
  24211. extra: 1880/1794,
  24212. bottom: 24/1904
  24213. }
  24214. },
  24215. hands: {
  24216. height: math.unit(0.84, "feet"),
  24217. name: "Hands",
  24218. image: {
  24219. source: "./media/characters/logan-grey/hands.svg"
  24220. }
  24221. },
  24222. paws: {
  24223. height: math.unit(0.72, "feet"),
  24224. name: "Paws",
  24225. image: {
  24226. source: "./media/characters/logan-grey/paws.svg"
  24227. }
  24228. },
  24229. cock: {
  24230. height: math.unit(1.45, "feet"),
  24231. name: "Cock",
  24232. image: {
  24233. source: "./media/characters/logan-grey/cock.svg"
  24234. }
  24235. },
  24236. cockAlt: {
  24237. height: math.unit(1.437, "feet"),
  24238. name: "Cock (alt)",
  24239. image: {
  24240. source: "./media/characters/logan-grey/cock-alt.svg"
  24241. }
  24242. },
  24243. },
  24244. [
  24245. {
  24246. name: "Normal",
  24247. height: math.unit(5 + 8 / 12, "feet")
  24248. },
  24249. {
  24250. name: "The 500 Foot Femboy",
  24251. height: math.unit(500, "feet"),
  24252. default: true
  24253. },
  24254. {
  24255. name: "Megmacro",
  24256. height: math.unit(20, "miles")
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24262. {
  24263. front: {
  24264. height: math.unit(8 + 2 / 12, "feet"),
  24265. weight: math.unit(275, "lb"),
  24266. name: "Front",
  24267. image: {
  24268. source: "./media/characters/draganta/front.svg",
  24269. extra: 1177 / 1135,
  24270. bottom: 33.46 / 1212.1
  24271. }
  24272. },
  24273. },
  24274. [
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(8 + 6 / 12, "feet"),
  24278. default: true
  24279. },
  24280. {
  24281. name: "Macro",
  24282. height: math.unit(150, "feet")
  24283. },
  24284. {
  24285. name: "Megamacro",
  24286. height: math.unit(1000, "miles")
  24287. },
  24288. ]
  24289. ))
  24290. characterMakers.push(() => makeCharacter(
  24291. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24292. {
  24293. front: {
  24294. height: math.unit(1.72, "m"),
  24295. weight: math.unit(80, "lb"),
  24296. name: "Front",
  24297. image: {
  24298. source: "./media/characters/voski/front.svg",
  24299. extra: 2076.22 / 2022.4,
  24300. bottom: 102.7 / 2177.3866
  24301. }
  24302. },
  24303. frontFlaccid: {
  24304. height: math.unit(1.72, "m"),
  24305. weight: math.unit(80, "lb"),
  24306. name: "Front (Flaccid)",
  24307. image: {
  24308. source: "./media/characters/voski/front-flaccid.svg",
  24309. extra: 2076.22 / 2022.4,
  24310. bottom: 102.7 / 2177.3866
  24311. }
  24312. },
  24313. frontErect: {
  24314. height: math.unit(1.72, "m"),
  24315. weight: math.unit(80, "lb"),
  24316. name: "Front (Erect)",
  24317. image: {
  24318. source: "./media/characters/voski/front-erect.svg",
  24319. extra: 2076.22 / 2022.4,
  24320. bottom: 102.7 / 2177.3866
  24321. }
  24322. },
  24323. back: {
  24324. height: math.unit(1.72, "m"),
  24325. weight: math.unit(80, "lb"),
  24326. name: "Back",
  24327. image: {
  24328. source: "./media/characters/voski/back.svg",
  24329. extra: 2104 / 2051,
  24330. bottom: 10.45 / 2113.63
  24331. }
  24332. },
  24333. },
  24334. [
  24335. {
  24336. name: "Normal",
  24337. height: math.unit(1.72, "m")
  24338. },
  24339. {
  24340. name: "Macro",
  24341. height: math.unit(55, "m"),
  24342. default: true
  24343. },
  24344. {
  24345. name: "Macro+",
  24346. height: math.unit(300, "m")
  24347. },
  24348. {
  24349. name: "Macro++",
  24350. height: math.unit(700, "m")
  24351. },
  24352. {
  24353. name: "Macro+++",
  24354. height: math.unit(4500, "m")
  24355. },
  24356. {
  24357. name: "Macro++++",
  24358. height: math.unit(45, "km")
  24359. },
  24360. {
  24361. name: "Macro+++++",
  24362. height: math.unit(1220, "km")
  24363. },
  24364. ]
  24365. ))
  24366. characterMakers.push(() => makeCharacter(
  24367. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24368. {
  24369. front: {
  24370. height: math.unit(2.3, "m"),
  24371. weight: math.unit(304, "kg"),
  24372. name: "Front",
  24373. image: {
  24374. source: "./media/characters/icowom-lee/front.svg",
  24375. extra: 985 / 955,
  24376. bottom: 25.4 / 1012
  24377. }
  24378. },
  24379. fronttentacles: {
  24380. height: math.unit(2.3, "m"),
  24381. weight: math.unit(304, "kg"),
  24382. name: "Front-tentacles",
  24383. image: {
  24384. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24385. extra: 985 / 955,
  24386. bottom: 25.4 / 1012
  24387. }
  24388. },
  24389. back: {
  24390. height: math.unit(2.3, "m"),
  24391. weight: math.unit(304, "kg"),
  24392. name: "Back",
  24393. image: {
  24394. source: "./media/characters/icowom-lee/back.svg",
  24395. extra: 975 / 954,
  24396. bottom: 9.5 / 985
  24397. }
  24398. },
  24399. backtentacles: {
  24400. height: math.unit(2.3, "m"),
  24401. weight: math.unit(304, "kg"),
  24402. name: "Back-tentacles",
  24403. image: {
  24404. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24405. extra: 975 / 954,
  24406. bottom: 9.5 / 985
  24407. }
  24408. },
  24409. frontDressed: {
  24410. height: math.unit(2.3, "m"),
  24411. weight: math.unit(304, "kg"),
  24412. name: "Front (Dressed)",
  24413. image: {
  24414. source: "./media/characters/icowom-lee/front-dressed.svg",
  24415. extra: 3076 / 2933,
  24416. bottom: 51.4 / 3125.1889
  24417. }
  24418. },
  24419. rump: {
  24420. height: math.unit(0.776, "meters"),
  24421. name: "Rump",
  24422. image: {
  24423. source: "./media/characters/icowom-lee/rump.svg"
  24424. }
  24425. },
  24426. genitals: {
  24427. height: math.unit(0.78, "meters"),
  24428. name: "Genitals",
  24429. image: {
  24430. source: "./media/characters/icowom-lee/genitals.svg"
  24431. }
  24432. },
  24433. },
  24434. [
  24435. {
  24436. name: "Normal",
  24437. height: math.unit(2.3, "meters"),
  24438. default: true
  24439. },
  24440. {
  24441. name: "Macro",
  24442. height: math.unit(94, "meters"),
  24443. default: true
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24449. {
  24450. front: {
  24451. height: math.unit(22, "meters"),
  24452. weight: math.unit(21000, "kg"),
  24453. name: "Front",
  24454. image: {
  24455. source: "./media/characters/shock-diamond/front.svg",
  24456. extra: 2204 / 2053,
  24457. bottom: 65 / 2239.47
  24458. }
  24459. },
  24460. frontNude: {
  24461. height: math.unit(22, "meters"),
  24462. weight: math.unit(21000, "kg"),
  24463. name: "Front (Nude)",
  24464. image: {
  24465. source: "./media/characters/shock-diamond/front-nude.svg",
  24466. extra: 2514 / 2285,
  24467. bottom: 13 / 2527.56
  24468. }
  24469. },
  24470. },
  24471. [
  24472. {
  24473. name: "Normal",
  24474. height: math.unit(3, "meters")
  24475. },
  24476. {
  24477. name: "Macro",
  24478. height: math.unit(22, "meters"),
  24479. default: true
  24480. },
  24481. ]
  24482. ))
  24483. characterMakers.push(() => makeCharacter(
  24484. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24485. {
  24486. front: {
  24487. height: math.unit(5 + 4/12, "feet"),
  24488. weight: math.unit(125, "lb"),
  24489. name: "Front",
  24490. image: {
  24491. source: "./media/characters/rory/front.svg",
  24492. extra: 1790/1681,
  24493. bottom: 66/1856
  24494. }
  24495. },
  24496. back: {
  24497. height: math.unit(5 + 4/12, "feet"),
  24498. weight: math.unit(125, "lb"),
  24499. name: "Back",
  24500. image: {
  24501. source: "./media/characters/rory/back.svg",
  24502. extra: 1805/1690,
  24503. bottom: 56/1861
  24504. }
  24505. },
  24506. frontDressed: {
  24507. height: math.unit(5 + 4/12, "feet"),
  24508. weight: math.unit(125, "lb"),
  24509. name: "Front (Dressed)",
  24510. image: {
  24511. source: "./media/characters/rory/front-dressed.svg",
  24512. extra: 1790/1681,
  24513. bottom: 66/1856
  24514. }
  24515. },
  24516. backDressed: {
  24517. height: math.unit(5 + 4/12, "feet"),
  24518. weight: math.unit(125, "lb"),
  24519. name: "Back (Dressed)",
  24520. image: {
  24521. source: "./media/characters/rory/back-dressed.svg",
  24522. extra: 1805/1690,
  24523. bottom: 56/1861
  24524. }
  24525. },
  24526. frontNsfw: {
  24527. height: math.unit(5 + 4/12, "feet"),
  24528. weight: math.unit(125, "lb"),
  24529. name: "Front (NSFW)",
  24530. image: {
  24531. source: "./media/characters/rory/front-nsfw.svg",
  24532. extra: 1790/1681,
  24533. bottom: 66/1856
  24534. }
  24535. },
  24536. backNsfw: {
  24537. height: math.unit(5 + 4/12, "feet"),
  24538. weight: math.unit(125, "lb"),
  24539. name: "Back (NSFW)",
  24540. image: {
  24541. source: "./media/characters/rory/back-nsfw.svg",
  24542. extra: 1805/1690,
  24543. bottom: 56/1861
  24544. }
  24545. },
  24546. dick: {
  24547. height: math.unit(0.8, "feet"),
  24548. name: "Dick",
  24549. image: {
  24550. source: "./media/characters/rory/dick.svg"
  24551. }
  24552. },
  24553. },
  24554. [
  24555. {
  24556. name: "Micro",
  24557. height: math.unit(3, "inches")
  24558. },
  24559. {
  24560. name: "Normal",
  24561. height: math.unit(5 + 4/12, "feet"),
  24562. default: true
  24563. },
  24564. {
  24565. name: "Macro",
  24566. height: math.unit(90, "feet")
  24567. },
  24568. {
  24569. name: "Supercharged",
  24570. height: math.unit(270, "feet")
  24571. },
  24572. ]
  24573. ))
  24574. characterMakers.push(() => makeCharacter(
  24575. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24576. {
  24577. front: {
  24578. height: math.unit(5 + 9 / 12, "feet"),
  24579. weight: math.unit(190, "lb"),
  24580. name: "Front",
  24581. image: {
  24582. source: "./media/characters/sprisk/front.svg",
  24583. extra: 1225 / 1180,
  24584. bottom: 42.7 / 1266.4
  24585. }
  24586. },
  24587. frontNsfw: {
  24588. height: math.unit(5 + 9 / 12, "feet"),
  24589. weight: math.unit(190, "lb"),
  24590. name: "Front (NSFW)",
  24591. image: {
  24592. source: "./media/characters/sprisk/front-nsfw.svg",
  24593. extra: 1225 / 1180,
  24594. bottom: 42.7 / 1266.4
  24595. }
  24596. },
  24597. back: {
  24598. height: math.unit(5 + 9 / 12, "feet"),
  24599. weight: math.unit(190, "lb"),
  24600. name: "Back",
  24601. image: {
  24602. source: "./media/characters/sprisk/back.svg",
  24603. extra: 1247 / 1200,
  24604. bottom: 5.6 / 1253.04
  24605. }
  24606. },
  24607. },
  24608. [
  24609. {
  24610. name: "Tiny",
  24611. height: math.unit(2, "inches")
  24612. },
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(5 + 9 / 12, "feet"),
  24616. default: true
  24617. },
  24618. {
  24619. name: "Mini Macro",
  24620. height: math.unit(18, "feet")
  24621. },
  24622. {
  24623. name: "Macro",
  24624. height: math.unit(100, "feet")
  24625. },
  24626. {
  24627. name: "MACRO",
  24628. height: math.unit(50, "miles")
  24629. },
  24630. {
  24631. name: "M A C R O",
  24632. height: math.unit(300, "miles")
  24633. },
  24634. ]
  24635. ))
  24636. characterMakers.push(() => makeCharacter(
  24637. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24638. {
  24639. side: {
  24640. height: math.unit(15.6, "meters"),
  24641. weight: math.unit(700000, "kg"),
  24642. name: "Side",
  24643. image: {
  24644. source: "./media/characters/bunsen/side.svg",
  24645. extra: 1644 / 358
  24646. }
  24647. },
  24648. foot: {
  24649. height: math.unit(1.611 * 1644 / 358, "meter"),
  24650. name: "Foot",
  24651. image: {
  24652. source: "./media/characters/bunsen/foot.svg"
  24653. }
  24654. },
  24655. },
  24656. [
  24657. {
  24658. name: "Small",
  24659. height: math.unit(10, "feet")
  24660. },
  24661. {
  24662. name: "Normal",
  24663. height: math.unit(15.6, "meters"),
  24664. default: true
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24670. {
  24671. front: {
  24672. height: math.unit(4 + 11 / 12, "feet"),
  24673. weight: math.unit(140, "lb"),
  24674. name: "Front",
  24675. image: {
  24676. source: "./media/characters/sesh/front.svg",
  24677. extra: 3420 / 3231,
  24678. bottom: 72 / 3949.5
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Normal",
  24685. height: math.unit(4 + 11 / 12, "feet")
  24686. },
  24687. {
  24688. name: "Grown",
  24689. height: math.unit(15, "feet"),
  24690. default: true
  24691. },
  24692. {
  24693. name: "Macro",
  24694. height: math.unit(1500, "feet")
  24695. },
  24696. {
  24697. name: "Megamacro",
  24698. height: math.unit(30, "miles")
  24699. },
  24700. {
  24701. name: "Continental",
  24702. height: math.unit(3000, "miles")
  24703. },
  24704. {
  24705. name: "Gravity Mass",
  24706. height: math.unit(300000, "miles")
  24707. },
  24708. {
  24709. name: "Planet Buster",
  24710. height: math.unit(30000000, "miles")
  24711. },
  24712. {
  24713. name: "Big",
  24714. height: math.unit(3000000000, "miles")
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24720. {
  24721. front: {
  24722. height: math.unit(9, "feet"),
  24723. weight: math.unit(350, "lb"),
  24724. name: "Front",
  24725. image: {
  24726. source: "./media/characters/pepper/front.svg",
  24727. extra: 1448 / 1312,
  24728. bottom: 9.4 / 1457.88
  24729. }
  24730. },
  24731. back: {
  24732. height: math.unit(9, "feet"),
  24733. weight: math.unit(350, "lb"),
  24734. name: "Back",
  24735. image: {
  24736. source: "./media/characters/pepper/back.svg",
  24737. extra: 1423 / 1300,
  24738. bottom: 4.6 / 1429
  24739. }
  24740. },
  24741. maw: {
  24742. height: math.unit(0.932, "feet"),
  24743. name: "Maw",
  24744. image: {
  24745. source: "./media/characters/pepper/maw.svg"
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Normal",
  24752. height: math.unit(9, "feet"),
  24753. default: true
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24759. {
  24760. front: {
  24761. height: math.unit(6, "feet"),
  24762. weight: math.unit(150, "lb"),
  24763. name: "Front",
  24764. image: {
  24765. source: "./media/characters/maelstrom/front.svg",
  24766. extra: 2100 / 1883,
  24767. bottom: 94 / 2196.7
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Less Kaiju",
  24774. height: math.unit(200, "feet")
  24775. },
  24776. {
  24777. name: "Kaiju",
  24778. height: math.unit(400, "feet"),
  24779. default: true
  24780. },
  24781. {
  24782. name: "Kaiju-er",
  24783. height: math.unit(600, "feet")
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24789. {
  24790. front: {
  24791. height: math.unit(6 + 5 / 12, "feet"),
  24792. weight: math.unit(180, "lb"),
  24793. name: "Front",
  24794. image: {
  24795. source: "./media/characters/lexir/front.svg",
  24796. extra: 180 / 172,
  24797. bottom: 12 / 192
  24798. }
  24799. },
  24800. back: {
  24801. height: math.unit(6 + 5 / 12, "feet"),
  24802. weight: math.unit(180, "lb"),
  24803. name: "Back",
  24804. image: {
  24805. source: "./media/characters/lexir/back.svg",
  24806. extra: 1273/1201,
  24807. bottom: 39/1312
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Very Smal",
  24814. height: math.unit(1, "nm")
  24815. },
  24816. {
  24817. name: "Normal",
  24818. height: math.unit(6 + 5 / 12, "feet"),
  24819. default: true
  24820. },
  24821. {
  24822. name: "Macro",
  24823. height: math.unit(1, "mile")
  24824. },
  24825. {
  24826. name: "Megamacro",
  24827. height: math.unit(50, "miles")
  24828. },
  24829. ]
  24830. ))
  24831. characterMakers.push(() => makeCharacter(
  24832. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24833. {
  24834. front: {
  24835. height: math.unit(1.5, "meters"),
  24836. weight: math.unit(100, "lb"),
  24837. name: "Front",
  24838. image: {
  24839. source: "./media/characters/maksio/front.svg",
  24840. extra: 1549 / 1531,
  24841. bottom: 123.7 / 1674.5429
  24842. }
  24843. },
  24844. back: {
  24845. height: math.unit(1.5, "meters"),
  24846. weight: math.unit(100, "lb"),
  24847. name: "Back",
  24848. image: {
  24849. source: "./media/characters/maksio/back.svg",
  24850. extra: 1541 / 1509,
  24851. bottom: 97 / 1639
  24852. }
  24853. },
  24854. hand: {
  24855. height: math.unit(0.621, "feet"),
  24856. name: "Hand",
  24857. image: {
  24858. source: "./media/characters/maksio/hand.svg"
  24859. }
  24860. },
  24861. foot: {
  24862. height: math.unit(1.611, "feet"),
  24863. name: "Foot",
  24864. image: {
  24865. source: "./media/characters/maksio/foot.svg"
  24866. }
  24867. },
  24868. },
  24869. [
  24870. {
  24871. name: "Shrunken",
  24872. height: math.unit(10, "cm")
  24873. },
  24874. {
  24875. name: "Normal",
  24876. height: math.unit(150, "cm"),
  24877. default: true
  24878. },
  24879. ]
  24880. ))
  24881. characterMakers.push(() => makeCharacter(
  24882. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24883. {
  24884. front: {
  24885. height: math.unit(100, "feet"),
  24886. name: "Front",
  24887. image: {
  24888. source: "./media/characters/erza-bear/front.svg",
  24889. extra: 2449 / 2390,
  24890. bottom: 46 / 2494
  24891. }
  24892. },
  24893. back: {
  24894. height: math.unit(100, "feet"),
  24895. name: "Back",
  24896. image: {
  24897. source: "./media/characters/erza-bear/back.svg",
  24898. extra: 2489 / 2430,
  24899. bottom: 85.4 / 2480
  24900. }
  24901. },
  24902. tail: {
  24903. height: math.unit(42, "feet"),
  24904. name: "Tail",
  24905. image: {
  24906. source: "./media/characters/erza-bear/tail.svg"
  24907. }
  24908. },
  24909. tongue: {
  24910. height: math.unit(8, "feet"),
  24911. name: "Tongue",
  24912. image: {
  24913. source: "./media/characters/erza-bear/tongue.svg"
  24914. }
  24915. },
  24916. dick: {
  24917. height: math.unit(10.5, "feet"),
  24918. name: "Dick",
  24919. image: {
  24920. source: "./media/characters/erza-bear/dick.svg"
  24921. }
  24922. },
  24923. dickVertical: {
  24924. height: math.unit(16.9, "feet"),
  24925. name: "Dick (Vertical)",
  24926. image: {
  24927. source: "./media/characters/erza-bear/dick-vertical.svg"
  24928. }
  24929. },
  24930. },
  24931. [
  24932. {
  24933. name: "Macro",
  24934. height: math.unit(100, "feet"),
  24935. default: true
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(172, "cm"),
  24944. weight: math.unit(73, "kg"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/violet-flor/front.svg",
  24948. extra: 1530 / 1442,
  24949. bottom: 61.9 / 1588.8
  24950. }
  24951. },
  24952. back: {
  24953. height: math.unit(180, "cm"),
  24954. weight: math.unit(73, "kg"),
  24955. name: "Back",
  24956. image: {
  24957. source: "./media/characters/violet-flor/back.svg",
  24958. extra: 1692 / 1630,
  24959. bottom: 20 / 1712
  24960. }
  24961. },
  24962. },
  24963. [
  24964. {
  24965. name: "Normal",
  24966. height: math.unit(172, "cm"),
  24967. default: true
  24968. },
  24969. ]
  24970. ))
  24971. characterMakers.push(() => makeCharacter(
  24972. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24973. {
  24974. front: {
  24975. height: math.unit(6, "feet"),
  24976. weight: math.unit(220, "lb"),
  24977. name: "Front",
  24978. image: {
  24979. source: "./media/characters/lynn-rhea/front.svg",
  24980. extra: 310 / 273
  24981. }
  24982. },
  24983. back: {
  24984. height: math.unit(6, "feet"),
  24985. weight: math.unit(220, "lb"),
  24986. name: "Back",
  24987. image: {
  24988. source: "./media/characters/lynn-rhea/back.svg",
  24989. extra: 310 / 273
  24990. }
  24991. },
  24992. dicks: {
  24993. height: math.unit(0.9, "feet"),
  24994. name: "Dicks",
  24995. image: {
  24996. source: "./media/characters/lynn-rhea/dicks.svg"
  24997. }
  24998. },
  24999. slit: {
  25000. height: math.unit(0.4, "feet"),
  25001. name: "Slit",
  25002. image: {
  25003. source: "./media/characters/lynn-rhea/slit.svg"
  25004. }
  25005. },
  25006. },
  25007. [
  25008. {
  25009. name: "Micro",
  25010. height: math.unit(1, "inch")
  25011. },
  25012. {
  25013. name: "Macro",
  25014. height: math.unit(60, "feet"),
  25015. default: true
  25016. },
  25017. {
  25018. name: "Megamacro",
  25019. height: math.unit(2, "miles")
  25020. },
  25021. {
  25022. name: "Gigamacro",
  25023. height: math.unit(3, "earths")
  25024. },
  25025. {
  25026. name: "Galactic",
  25027. height: math.unit(0.8, "galaxies")
  25028. },
  25029. ]
  25030. ))
  25031. characterMakers.push(() => makeCharacter(
  25032. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25033. {
  25034. front: {
  25035. height: math.unit(1600, "feet"),
  25036. weight: math.unit(85758785169, "kg"),
  25037. name: "Front",
  25038. image: {
  25039. source: "./media/characters/valathos/front.svg",
  25040. extra: 1451 / 1339
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Macro",
  25047. height: math.unit(1600, "feet"),
  25048. default: true
  25049. },
  25050. ]
  25051. ))
  25052. characterMakers.push(() => makeCharacter(
  25053. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25054. {
  25055. front: {
  25056. height: math.unit(7 + 5 / 12, "feet"),
  25057. weight: math.unit(300, "lb"),
  25058. name: "Front",
  25059. image: {
  25060. source: "./media/characters/azula/front.svg",
  25061. extra: 3208 / 2880,
  25062. bottom: 80.2 / 3277
  25063. }
  25064. },
  25065. back: {
  25066. height: math.unit(7 + 5 / 12, "feet"),
  25067. weight: math.unit(300, "lb"),
  25068. name: "Back",
  25069. image: {
  25070. source: "./media/characters/azula/back.svg",
  25071. extra: 3169 / 2822,
  25072. bottom: 150.6 / 3321
  25073. }
  25074. },
  25075. },
  25076. [
  25077. {
  25078. name: "Normal",
  25079. height: math.unit(7 + 5 / 12, "feet"),
  25080. default: true
  25081. },
  25082. {
  25083. name: "Big",
  25084. height: math.unit(20, "feet")
  25085. },
  25086. ]
  25087. ))
  25088. characterMakers.push(() => makeCharacter(
  25089. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25090. {
  25091. front: {
  25092. height: math.unit(5 + 1 / 12, "feet"),
  25093. weight: math.unit(110, "lb"),
  25094. name: "Front",
  25095. image: {
  25096. source: "./media/characters/rupert/front.svg",
  25097. extra: 1549 / 1495,
  25098. bottom: 54.2 / 1604.4
  25099. }
  25100. },
  25101. },
  25102. [
  25103. {
  25104. name: "Normal",
  25105. height: math.unit(5 + 1 / 12, "feet"),
  25106. default: true
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25112. {
  25113. front: {
  25114. height: math.unit(8 + 4 / 12, "feet"),
  25115. weight: math.unit(350, "lb"),
  25116. name: "Front",
  25117. image: {
  25118. source: "./media/characters/sheera-castellar/front.svg",
  25119. extra: 1957 / 1894,
  25120. bottom: 26.97 / 1975.017
  25121. }
  25122. },
  25123. side: {
  25124. height: math.unit(8 + 4 / 12, "feet"),
  25125. weight: math.unit(350, "lb"),
  25126. name: "Side",
  25127. image: {
  25128. source: "./media/characters/sheera-castellar/side.svg",
  25129. extra: 1957 / 1894
  25130. }
  25131. },
  25132. back: {
  25133. height: math.unit(8 + 4 / 12, "feet"),
  25134. weight: math.unit(350, "lb"),
  25135. name: "Back",
  25136. image: {
  25137. source: "./media/characters/sheera-castellar/back.svg",
  25138. extra: 1957 / 1894
  25139. }
  25140. },
  25141. angled: {
  25142. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25143. weight: math.unit(350, "lb"),
  25144. name: "Angled",
  25145. image: {
  25146. source: "./media/characters/sheera-castellar/angled.svg",
  25147. extra: 1807 / 1707,
  25148. bottom: 68 / 1875
  25149. }
  25150. },
  25151. genitals: {
  25152. height: math.unit(2.2, "feet"),
  25153. name: "Genitals",
  25154. image: {
  25155. source: "./media/characters/sheera-castellar/genitals.svg"
  25156. }
  25157. },
  25158. taur: {
  25159. height: math.unit(10 + 6/12, "feet"),
  25160. name: "Taur",
  25161. image: {
  25162. source: "./media/characters/sheera-castellar/taur.svg",
  25163. extra: 2017/1909,
  25164. bottom: 185/2202
  25165. }
  25166. },
  25167. },
  25168. [
  25169. {
  25170. name: "Normal",
  25171. height: math.unit(8 + 4 / 12, "feet")
  25172. },
  25173. {
  25174. name: "Macro",
  25175. height: math.unit(150, "feet"),
  25176. default: true
  25177. },
  25178. {
  25179. name: "Macro+",
  25180. height: math.unit(800, "feet")
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25186. {
  25187. front: {
  25188. height: math.unit(6, "feet"),
  25189. weight: math.unit(150, "lb"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/jaipur/front.svg",
  25193. extra: 3860 / 3731,
  25194. bottom: 287 / 4140
  25195. }
  25196. },
  25197. back: {
  25198. height: math.unit(6, "feet"),
  25199. weight: math.unit(150, "lb"),
  25200. name: "Back",
  25201. image: {
  25202. source: "./media/characters/jaipur/back.svg",
  25203. extra: 1637/1561,
  25204. bottom: 154/1791
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Normal",
  25211. height: math.unit(1.85, "meters"),
  25212. default: true
  25213. },
  25214. {
  25215. name: "Macro",
  25216. height: math.unit(150, "meters")
  25217. },
  25218. {
  25219. name: "Macro+",
  25220. height: math.unit(0.5, "miles")
  25221. },
  25222. {
  25223. name: "Macro++",
  25224. height: math.unit(2.5, "miles")
  25225. },
  25226. {
  25227. name: "Macro+++",
  25228. height: math.unit(12, "miles")
  25229. },
  25230. {
  25231. name: "Macro++++",
  25232. height: math.unit(120, "miles")
  25233. },
  25234. {
  25235. name: "Macro+++++",
  25236. height: math.unit(1200, "miles")
  25237. },
  25238. ]
  25239. ))
  25240. characterMakers.push(() => makeCharacter(
  25241. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25242. {
  25243. front: {
  25244. height: math.unit(6, "feet"),
  25245. weight: math.unit(150, "lb"),
  25246. name: "Front",
  25247. image: {
  25248. source: "./media/characters/sheila-wolf/front.svg",
  25249. extra: 1931 / 1808,
  25250. bottom: 29.5 / 1960
  25251. }
  25252. },
  25253. dick: {
  25254. height: math.unit(1.464, "feet"),
  25255. name: "Dick",
  25256. image: {
  25257. source: "./media/characters/sheila-wolf/dick.svg"
  25258. }
  25259. },
  25260. muzzle: {
  25261. height: math.unit(0.513, "feet"),
  25262. name: "Muzzle",
  25263. image: {
  25264. source: "./media/characters/sheila-wolf/muzzle.svg"
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Macro",
  25271. height: math.unit(70, "feet"),
  25272. default: true
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25278. {
  25279. front: {
  25280. height: math.unit(32, "meters"),
  25281. weight: math.unit(300000, "kg"),
  25282. name: "Front",
  25283. image: {
  25284. source: "./media/characters/almor/front.svg",
  25285. extra: 1408 / 1322,
  25286. bottom: 94.6 / 1506.5
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Macro",
  25293. height: math.unit(32, "meters"),
  25294. default: true
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(7, "feet"),
  25303. weight: math.unit(200, "lb"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/silver/front.svg",
  25307. extra: 472.1 / 450.5,
  25308. bottom: 26.5 / 499.424
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(7, "feet"),
  25316. default: true
  25317. },
  25318. {
  25319. name: "Macro",
  25320. height: math.unit(800, "feet")
  25321. },
  25322. {
  25323. name: "Megamacro",
  25324. height: math.unit(250, "miles")
  25325. },
  25326. ]
  25327. ))
  25328. characterMakers.push(() => makeCharacter(
  25329. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25330. {
  25331. front: {
  25332. height: math.unit(6, "feet"),
  25333. weight: math.unit(150, "lb"),
  25334. name: "Front",
  25335. image: {
  25336. source: "./media/characters/pliskin/front.svg",
  25337. extra: 1469 / 1359,
  25338. bottom: 70 / 1540
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Micro",
  25345. height: math.unit(3, "inches")
  25346. },
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(5 + 11 / 12, "feet"),
  25350. default: true
  25351. },
  25352. {
  25353. name: "Macro",
  25354. height: math.unit(120, "feet")
  25355. },
  25356. ]
  25357. ))
  25358. characterMakers.push(() => makeCharacter(
  25359. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25360. {
  25361. front: {
  25362. height: math.unit(6, "feet"),
  25363. weight: math.unit(150, "lb"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/sammy/front.svg",
  25367. extra: 1193 / 1089,
  25368. bottom: 30.5 / 1226
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Macro",
  25375. height: math.unit(1700, "feet"),
  25376. default: true
  25377. },
  25378. {
  25379. name: "Examacro",
  25380. height: math.unit(2.5e9, "lightyears")
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(21, "meters"),
  25389. weight: math.unit(12, "tonnes"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/kuru/front.svg",
  25393. extra: 4301 / 3785,
  25394. bottom: 371.3 / 4691
  25395. }
  25396. },
  25397. },
  25398. [
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(21, "meters"),
  25402. default: true
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(23, "meters"),
  25411. weight: math.unit(12.2, "tonnes"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/rakka/front.svg",
  25415. extra: 4670 / 4169,
  25416. bottom: 301 / 4968.7
  25417. }
  25418. },
  25419. },
  25420. [
  25421. {
  25422. name: "Macro",
  25423. height: math.unit(23, "meters"),
  25424. default: true
  25425. },
  25426. ]
  25427. ))
  25428. characterMakers.push(() => makeCharacter(
  25429. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25430. {
  25431. front: {
  25432. height: math.unit(6, "feet"),
  25433. weight: math.unit(150, "lb"),
  25434. name: "Front",
  25435. image: {
  25436. source: "./media/characters/rhys-feline/front.svg",
  25437. extra: 2488 / 2308,
  25438. bottom: 35.67 / 2519.19
  25439. }
  25440. },
  25441. },
  25442. [
  25443. {
  25444. name: "Really Small",
  25445. height: math.unit(1, "nm")
  25446. },
  25447. {
  25448. name: "Micro",
  25449. height: math.unit(4, "inches")
  25450. },
  25451. {
  25452. name: "Normal",
  25453. height: math.unit(4 + 10 / 12, "feet"),
  25454. default: true
  25455. },
  25456. {
  25457. name: "Macro",
  25458. height: math.unit(100, "feet")
  25459. },
  25460. {
  25461. name: "Megamacto",
  25462. height: math.unit(50, "miles")
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25468. {
  25469. side: {
  25470. height: math.unit(30, "feet"),
  25471. weight: math.unit(35000, "kg"),
  25472. name: "Side",
  25473. image: {
  25474. source: "./media/characters/alydar/side.svg",
  25475. extra: 234 / 222,
  25476. bottom: 6.5 / 241
  25477. }
  25478. },
  25479. front: {
  25480. height: math.unit(30, "feet"),
  25481. weight: math.unit(35000, "kg"),
  25482. name: "Front",
  25483. image: {
  25484. source: "./media/characters/alydar/front.svg",
  25485. extra: 223.37 / 210.2,
  25486. bottom: 22.3 / 246.76
  25487. }
  25488. },
  25489. top: {
  25490. height: math.unit(64.54, "feet"),
  25491. weight: math.unit(35000, "kg"),
  25492. name: "Top",
  25493. image: {
  25494. source: "./media/characters/alydar/top.svg"
  25495. }
  25496. },
  25497. anthro: {
  25498. height: math.unit(30, "feet"),
  25499. weight: math.unit(9000, "kg"),
  25500. name: "Anthro",
  25501. image: {
  25502. source: "./media/characters/alydar/anthro.svg",
  25503. extra: 432 / 421,
  25504. bottom: 7.18 / 440
  25505. }
  25506. },
  25507. maw: {
  25508. height: math.unit(11.693, "feet"),
  25509. name: "Maw",
  25510. image: {
  25511. source: "./media/characters/alydar/maw.svg"
  25512. }
  25513. },
  25514. head: {
  25515. height: math.unit(11.693, "feet"),
  25516. name: "Head",
  25517. image: {
  25518. source: "./media/characters/alydar/head.svg"
  25519. }
  25520. },
  25521. headAlt: {
  25522. height: math.unit(12.861, "feet"),
  25523. name: "Head (Alt)",
  25524. image: {
  25525. source: "./media/characters/alydar/head-alt.svg"
  25526. }
  25527. },
  25528. wing: {
  25529. height: math.unit(20.712, "feet"),
  25530. name: "Wing",
  25531. image: {
  25532. source: "./media/characters/alydar/wing.svg"
  25533. }
  25534. },
  25535. wingFeather: {
  25536. height: math.unit(9.662, "feet"),
  25537. name: "Wing Feather",
  25538. image: {
  25539. source: "./media/characters/alydar/wing-feather.svg"
  25540. }
  25541. },
  25542. countourFeather: {
  25543. height: math.unit(4.154, "feet"),
  25544. name: "Contour Feather",
  25545. image: {
  25546. source: "./media/characters/alydar/contour-feather.svg"
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Diplomatic",
  25553. height: math.unit(13, "feet"),
  25554. default: true
  25555. },
  25556. {
  25557. name: "Small",
  25558. height: math.unit(30, "feet")
  25559. },
  25560. {
  25561. name: "Normal",
  25562. height: math.unit(95, "feet"),
  25563. default: true
  25564. },
  25565. {
  25566. name: "Large",
  25567. height: math.unit(285, "feet")
  25568. },
  25569. {
  25570. name: "Incomprehensible",
  25571. height: math.unit(450, "megameters")
  25572. },
  25573. ]
  25574. ))
  25575. characterMakers.push(() => makeCharacter(
  25576. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25577. {
  25578. side: {
  25579. height: math.unit(11, "feet"),
  25580. weight: math.unit(1750, "kg"),
  25581. name: "Side",
  25582. image: {
  25583. source: "./media/characters/selicia/side.svg",
  25584. extra: 440 / 396,
  25585. bottom: 24.8 / 465.979
  25586. }
  25587. },
  25588. maw: {
  25589. height: math.unit(4.665, "feet"),
  25590. name: "Maw",
  25591. image: {
  25592. source: "./media/characters/selicia/maw.svg"
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Normal",
  25599. height: math.unit(11, "feet"),
  25600. default: true
  25601. },
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25606. {
  25607. side: {
  25608. height: math.unit(2 + 6 / 12, "feet"),
  25609. weight: math.unit(30, "lb"),
  25610. name: "Side",
  25611. image: {
  25612. source: "./media/characters/layla/side.svg",
  25613. extra: 244 / 188,
  25614. bottom: 18.2 / 262.1
  25615. }
  25616. },
  25617. back: {
  25618. height: math.unit(2 + 6 / 12, "feet"),
  25619. weight: math.unit(30, "lb"),
  25620. name: "Back",
  25621. image: {
  25622. source: "./media/characters/layla/back.svg",
  25623. extra: 308 / 241.5,
  25624. bottom: 8.9 / 316.8
  25625. }
  25626. },
  25627. cumming: {
  25628. height: math.unit(2 + 6 / 12, "feet"),
  25629. weight: math.unit(30, "lb"),
  25630. name: "Cumming",
  25631. image: {
  25632. source: "./media/characters/layla/cumming.svg",
  25633. extra: 342 / 279,
  25634. bottom: 595 / 938
  25635. }
  25636. },
  25637. dickFlaccid: {
  25638. height: math.unit(2.595, "feet"),
  25639. name: "Flaccid Genitals",
  25640. image: {
  25641. source: "./media/characters/layla/dick-flaccid.svg"
  25642. }
  25643. },
  25644. dickErect: {
  25645. height: math.unit(2.359, "feet"),
  25646. name: "Erect Genitals",
  25647. image: {
  25648. source: "./media/characters/layla/dick-erect.svg"
  25649. }
  25650. },
  25651. dragon: {
  25652. height: math.unit(40, "feet"),
  25653. name: "Dragon",
  25654. image: {
  25655. source: "./media/characters/layla/dragon.svg",
  25656. extra: 610/535,
  25657. bottom: 367/977
  25658. }
  25659. },
  25660. taur: {
  25661. height: math.unit(30, "feet"),
  25662. name: "Taur",
  25663. image: {
  25664. source: "./media/characters/layla/taur.svg",
  25665. extra: 1268/1199,
  25666. bottom: 112/1380
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Micro",
  25673. height: math.unit(1, "inch")
  25674. },
  25675. {
  25676. name: "Small",
  25677. height: math.unit(1, "foot")
  25678. },
  25679. {
  25680. name: "Normal",
  25681. height: math.unit(2 + 6 / 12, "feet"),
  25682. default: true
  25683. },
  25684. {
  25685. name: "Macro",
  25686. height: math.unit(200, "feet")
  25687. },
  25688. {
  25689. name: "Megamacro",
  25690. height: math.unit(1000, "miles")
  25691. },
  25692. {
  25693. name: "Planetary",
  25694. height: math.unit(8000, "miles")
  25695. },
  25696. {
  25697. name: "True Layla",
  25698. height: math.unit(200000 * 7, "multiverses")
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25704. {
  25705. back: {
  25706. height: math.unit(10.5, "feet"),
  25707. weight: math.unit(800, "lb"),
  25708. name: "Back",
  25709. image: {
  25710. source: "./media/characters/knox/back.svg",
  25711. extra: 1486 / 1089,
  25712. bottom: 107 / 1601.4
  25713. }
  25714. },
  25715. side: {
  25716. height: math.unit(10.5, "feet"),
  25717. weight: math.unit(800, "lb"),
  25718. name: "Side",
  25719. image: {
  25720. source: "./media/characters/knox/side.svg",
  25721. extra: 244 / 218,
  25722. bottom: 14 / 260
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Compact",
  25729. height: math.unit(10.5, "feet"),
  25730. default: true
  25731. },
  25732. {
  25733. name: "Dynamax",
  25734. height: math.unit(210, "feet")
  25735. },
  25736. {
  25737. name: "Full Macro",
  25738. height: math.unit(850, "feet")
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25744. {
  25745. front: {
  25746. height: math.unit(28, "feet"),
  25747. weight: math.unit(10500, "lb"),
  25748. name: "Front",
  25749. image: {
  25750. source: "./media/characters/kayda/front.svg",
  25751. extra: 1536 / 1428,
  25752. bottom: 68.7 / 1603
  25753. }
  25754. },
  25755. back: {
  25756. height: math.unit(28, "feet"),
  25757. weight: math.unit(10500, "lb"),
  25758. name: "Back",
  25759. image: {
  25760. source: "./media/characters/kayda/back.svg",
  25761. extra: 1557 / 1464,
  25762. bottom: 39.5 / 1597.49
  25763. }
  25764. },
  25765. dick: {
  25766. height: math.unit(3.858, "feet"),
  25767. name: "Dick",
  25768. image: {
  25769. source: "./media/characters/kayda/dick.svg"
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Macro",
  25776. height: math.unit(28, "feet"),
  25777. default: true
  25778. },
  25779. ]
  25780. ))
  25781. characterMakers.push(() => makeCharacter(
  25782. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25783. {
  25784. front: {
  25785. height: math.unit(10 + 11 / 12, "feet"),
  25786. weight: math.unit(1400, "lb"),
  25787. name: "Front",
  25788. image: {
  25789. source: "./media/characters/brian/front.svg",
  25790. extra: 737 / 692,
  25791. bottom: 55.4 / 785
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Normal",
  25798. height: math.unit(10 + 11 / 12, "feet"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25805. {
  25806. front: {
  25807. height: math.unit(5 + 8 / 12, "feet"),
  25808. weight: math.unit(140, "lb"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/khemri/front.svg",
  25812. extra: 4780 / 4059,
  25813. bottom: 80.1 / 4859.25
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Micro",
  25820. height: math.unit(6, "inches")
  25821. },
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(5 + 8 / 12, "feet"),
  25825. default: true
  25826. },
  25827. ]
  25828. ))
  25829. characterMakers.push(() => makeCharacter(
  25830. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25831. {
  25832. front: {
  25833. height: math.unit(13, "feet"),
  25834. weight: math.unit(1700, "lb"),
  25835. name: "Front",
  25836. image: {
  25837. source: "./media/characters/felix-braveheart/front.svg",
  25838. extra: 1222 / 1157,
  25839. bottom: 53.2 / 1280
  25840. }
  25841. },
  25842. back: {
  25843. height: math.unit(13, "feet"),
  25844. weight: math.unit(1700, "lb"),
  25845. name: "Back",
  25846. image: {
  25847. source: "./media/characters/felix-braveheart/back.svg",
  25848. extra: 1277 / 1203,
  25849. bottom: 50.2 / 1327
  25850. }
  25851. },
  25852. feral: {
  25853. height: math.unit(6, "feet"),
  25854. weight: math.unit(400, "lb"),
  25855. name: "Feral",
  25856. image: {
  25857. source: "./media/characters/felix-braveheart/feral.svg",
  25858. extra: 682 / 625,
  25859. bottom: 6.9 / 688
  25860. }
  25861. },
  25862. },
  25863. [
  25864. {
  25865. name: "Normal",
  25866. height: math.unit(13, "feet"),
  25867. default: true
  25868. },
  25869. ]
  25870. ))
  25871. characterMakers.push(() => makeCharacter(
  25872. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25873. {
  25874. side: {
  25875. height: math.unit(5 + 11 / 12, "feet"),
  25876. weight: math.unit(1400, "lb"),
  25877. name: "Side",
  25878. image: {
  25879. source: "./media/characters/shadow-blade/side.svg",
  25880. extra: 1726 / 1267,
  25881. bottom: 58.4 / 1785
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(5 + 11 / 12, "feet"),
  25889. default: true
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25895. {
  25896. front: {
  25897. height: math.unit(1 + 6 / 12, "feet"),
  25898. weight: math.unit(25, "lb"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/karla-halldor/front.svg",
  25902. extra: 1459 / 1383,
  25903. bottom: 12 / 1472
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(1 + 6 / 12, "feet"),
  25911. default: true
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(6 + 2 / 12, "feet"),
  25920. weight: math.unit(160, "lb"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/ariam/front.svg",
  25924. extra: 1073/976,
  25925. bottom: 52/1125
  25926. }
  25927. },
  25928. back: {
  25929. height: math.unit(6 + 2/12, "feet"),
  25930. weight: math.unit(160, "lb"),
  25931. name: "Back",
  25932. image: {
  25933. source: "./media/characters/ariam/back.svg",
  25934. extra: 1103/1023,
  25935. bottom: 9/1112
  25936. }
  25937. },
  25938. dressed: {
  25939. height: math.unit(6 + 2/12, "feet"),
  25940. weight: math.unit(160, "lb"),
  25941. name: "Dressed",
  25942. image: {
  25943. source: "./media/characters/ariam/dressed.svg",
  25944. extra: 1099/1009,
  25945. bottom: 25/1124
  25946. }
  25947. },
  25948. squatting: {
  25949. height: math.unit(4.1, "feet"),
  25950. weight: math.unit(160, "lb"),
  25951. name: "Squatting",
  25952. image: {
  25953. source: "./media/characters/ariam/squatting.svg",
  25954. extra: 2617 / 2112,
  25955. bottom: 61.2 / 2681,
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Normal",
  25962. height: math.unit(6 + 2 / 12, "feet"),
  25963. default: true
  25964. },
  25965. {
  25966. name: "Normal+",
  25967. height: math.unit(4, "meters")
  25968. },
  25969. {
  25970. name: "Macro",
  25971. height: math.unit(50, "meters")
  25972. },
  25973. {
  25974. name: "Macro+",
  25975. height: math.unit(100, "meters")
  25976. },
  25977. {
  25978. name: "Megamacro",
  25979. height: math.unit(20, "km")
  25980. },
  25981. {
  25982. name: "Caretaker",
  25983. height: math.unit(444, "megameters")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(1.67, "meters"),
  25992. weight: math.unit(140, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25996. extra: 438 / 410,
  25997. bottom: 0.75 / 439
  25998. }
  25999. },
  26000. },
  26001. [
  26002. {
  26003. name: "Shrunken",
  26004. height: math.unit(7.6, "cm")
  26005. },
  26006. {
  26007. name: "Human Scale",
  26008. height: math.unit(1.67, "meters")
  26009. },
  26010. {
  26011. name: "Wolxi Scale",
  26012. height: math.unit(36.7, "meters"),
  26013. default: true
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(1.73, "meters"),
  26022. weight: math.unit(240, "lb"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/izue-two-mothers/front.svg",
  26026. extra: 469 / 437,
  26027. bottom: 1.24 / 470.6
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Shrunken",
  26034. height: math.unit(7.86, "cm")
  26035. },
  26036. {
  26037. name: "Human Scale",
  26038. height: math.unit(1.73, "meters")
  26039. },
  26040. {
  26041. name: "Wolxi Scale",
  26042. height: math.unit(38, "meters"),
  26043. default: true
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(1.55, "meters"),
  26052. weight: math.unit(120, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/teeku-love-shack/front.svg",
  26056. extra: 387 / 362,
  26057. bottom: 1.51 / 388
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Shrunken",
  26064. height: math.unit(7, "cm")
  26065. },
  26066. {
  26067. name: "Human Scale",
  26068. height: math.unit(1.55, "meters")
  26069. },
  26070. {
  26071. name: "Wolxi Scale",
  26072. height: math.unit(34.1, "meters"),
  26073. default: true
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26079. {
  26080. front: {
  26081. height: math.unit(1.83, "meters"),
  26082. weight: math.unit(135, "lb"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/dejma-the-red/front.svg",
  26086. extra: 480 / 458,
  26087. bottom: 1.8 / 482
  26088. }
  26089. },
  26090. },
  26091. [
  26092. {
  26093. name: "Shrunken",
  26094. height: math.unit(8.3, "cm")
  26095. },
  26096. {
  26097. name: "Human Scale",
  26098. height: math.unit(1.83, "meters")
  26099. },
  26100. {
  26101. name: "Wolxi Scale",
  26102. height: math.unit(40, "meters"),
  26103. default: true
  26104. },
  26105. ]
  26106. ))
  26107. characterMakers.push(() => makeCharacter(
  26108. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26109. {
  26110. front: {
  26111. height: math.unit(1.78, "meters"),
  26112. weight: math.unit(65, "kg"),
  26113. name: "Front",
  26114. image: {
  26115. source: "./media/characters/aki/front.svg",
  26116. extra: 452 / 415
  26117. }
  26118. },
  26119. frontNsfw: {
  26120. height: math.unit(1.78, "meters"),
  26121. weight: math.unit(65, "kg"),
  26122. name: "Front (NSFW)",
  26123. image: {
  26124. source: "./media/characters/aki/front-nsfw.svg",
  26125. extra: 452 / 415
  26126. }
  26127. },
  26128. back: {
  26129. height: math.unit(1.78, "meters"),
  26130. weight: math.unit(65, "kg"),
  26131. name: "Back",
  26132. image: {
  26133. source: "./media/characters/aki/back.svg",
  26134. extra: 452 / 415
  26135. }
  26136. },
  26137. rump: {
  26138. height: math.unit(2.05, "feet"),
  26139. name: "Rump",
  26140. image: {
  26141. source: "./media/characters/aki/rump.svg"
  26142. }
  26143. },
  26144. dick: {
  26145. height: math.unit(0.95, "feet"),
  26146. name: "Dick",
  26147. image: {
  26148. source: "./media/characters/aki/dick.svg"
  26149. }
  26150. },
  26151. },
  26152. [
  26153. {
  26154. name: "Micro",
  26155. height: math.unit(15, "cm")
  26156. },
  26157. {
  26158. name: "Normal",
  26159. height: math.unit(178, "cm"),
  26160. default: true
  26161. },
  26162. {
  26163. name: "Macro",
  26164. height: math.unit(214, "m")
  26165. },
  26166. {
  26167. name: "Macro+",
  26168. height: math.unit(534, "m")
  26169. },
  26170. ]
  26171. ))
  26172. characterMakers.push(() => makeCharacter(
  26173. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26174. {
  26175. front: {
  26176. height: math.unit(5 + 5 / 12, "feet"),
  26177. weight: math.unit(120, "lb"),
  26178. name: "Front",
  26179. image: {
  26180. source: "./media/characters/ari/front.svg",
  26181. extra: 1550/1471,
  26182. bottom: 39/1589
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Normal",
  26189. height: math.unit(5 + 5 / 12, "feet")
  26190. },
  26191. {
  26192. name: "Macro",
  26193. height: math.unit(100, "feet"),
  26194. default: true
  26195. },
  26196. {
  26197. name: "Megamacro",
  26198. height: math.unit(100, "miles")
  26199. },
  26200. {
  26201. name: "Gigamacro",
  26202. height: math.unit(80000, "miles")
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26208. {
  26209. side: {
  26210. height: math.unit(9, "feet"),
  26211. weight: math.unit(400, "kg"),
  26212. name: "Side",
  26213. image: {
  26214. source: "./media/characters/bolt/side.svg",
  26215. extra: 1126 / 896,
  26216. bottom: 60 / 1187.3,
  26217. }
  26218. },
  26219. },
  26220. [
  26221. {
  26222. name: "Micro",
  26223. height: math.unit(5, "inches")
  26224. },
  26225. {
  26226. name: "Normal",
  26227. height: math.unit(9, "feet"),
  26228. default: true
  26229. },
  26230. {
  26231. name: "Macro",
  26232. height: math.unit(700, "feet")
  26233. },
  26234. {
  26235. name: "Max Size",
  26236. height: math.unit(1.52e22, "yottameters")
  26237. },
  26238. ]
  26239. ))
  26240. characterMakers.push(() => makeCharacter(
  26241. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26242. {
  26243. front: {
  26244. height: math.unit(4.3, "meters"),
  26245. weight: math.unit(3, "tons"),
  26246. name: "Front",
  26247. image: {
  26248. source: "./media/characters/draekon-sylviar/front.svg",
  26249. extra: 2072/1512,
  26250. bottom: 74/2146
  26251. }
  26252. },
  26253. back: {
  26254. height: math.unit(4.3, "meters"),
  26255. weight: math.unit(3, "tons"),
  26256. name: "Back",
  26257. image: {
  26258. source: "./media/characters/draekon-sylviar/back.svg",
  26259. extra: 1639/1483,
  26260. bottom: 41/1680
  26261. }
  26262. },
  26263. feral: {
  26264. height: math.unit(1.15, "meters"),
  26265. weight: math.unit(3, "tons"),
  26266. name: "Feral",
  26267. image: {
  26268. source: "./media/characters/draekon-sylviar/feral.svg",
  26269. extra: 1033/395,
  26270. bottom: 130/1163
  26271. }
  26272. },
  26273. maw: {
  26274. height: math.unit(1.3, "meters"),
  26275. name: "Maw",
  26276. image: {
  26277. source: "./media/characters/draekon-sylviar/maw.svg"
  26278. }
  26279. },
  26280. mawSeparated: {
  26281. height: math.unit(1.53, "meters"),
  26282. name: "Separated Maw",
  26283. image: {
  26284. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26285. }
  26286. },
  26287. tail: {
  26288. height: math.unit(1.15, "meters"),
  26289. name: "Tail",
  26290. image: {
  26291. source: "./media/characters/draekon-sylviar/tail.svg"
  26292. }
  26293. },
  26294. tailDick: {
  26295. height: math.unit(1.15, "meters"),
  26296. name: "Tail (Dick)",
  26297. image: {
  26298. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26299. }
  26300. },
  26301. tailDickSeparated: {
  26302. height: math.unit(1.19, "meters"),
  26303. name: "Tail (Separated Dick)",
  26304. image: {
  26305. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26306. }
  26307. },
  26308. slit: {
  26309. height: math.unit(1, "meters"),
  26310. name: "Slit",
  26311. image: {
  26312. source: "./media/characters/draekon-sylviar/slit.svg"
  26313. }
  26314. },
  26315. dick: {
  26316. height: math.unit(1.15, "meters"),
  26317. name: "Dick",
  26318. image: {
  26319. source: "./media/characters/draekon-sylviar/dick.svg"
  26320. }
  26321. },
  26322. dickSeparated: {
  26323. height: math.unit(1.1, "meters"),
  26324. name: "Separated Dick",
  26325. image: {
  26326. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26327. }
  26328. },
  26329. sheath: {
  26330. height: math.unit(1.15, "meters"),
  26331. name: "Sheath",
  26332. image: {
  26333. source: "./media/characters/draekon-sylviar/sheath.svg"
  26334. }
  26335. },
  26336. },
  26337. [
  26338. {
  26339. name: "Small",
  26340. height: math.unit(4.53 / 2, "meters"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Normal",
  26345. height: math.unit(4.53, "meters"),
  26346. default: true
  26347. },
  26348. {
  26349. name: "Large",
  26350. height: math.unit(4.53 * 2, "meters"),
  26351. },
  26352. ]
  26353. ))
  26354. characterMakers.push(() => makeCharacter(
  26355. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26356. {
  26357. front: {
  26358. height: math.unit(6 + 2 / 12, "feet"),
  26359. weight: math.unit(180, "lb"),
  26360. name: "Front",
  26361. image: {
  26362. source: "./media/characters/brawler/front.svg",
  26363. extra: 3301 / 3027,
  26364. bottom: 138 / 3439
  26365. }
  26366. },
  26367. },
  26368. [
  26369. {
  26370. name: "Normal",
  26371. height: math.unit(6 + 2 / 12, "feet"),
  26372. default: true
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(11, "feet"),
  26381. weight: math.unit(1000, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/alex/front.svg",
  26385. bottom: 44.5 / 620
  26386. }
  26387. },
  26388. },
  26389. [
  26390. {
  26391. name: "Micro",
  26392. height: math.unit(5, "inches")
  26393. },
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(11, "feet"),
  26397. default: true
  26398. },
  26399. {
  26400. name: "Macro",
  26401. height: math.unit(9.5e9, "feet")
  26402. },
  26403. {
  26404. name: "Max Size",
  26405. height: math.unit(1.4e283, "yottameters")
  26406. },
  26407. ]
  26408. ))
  26409. characterMakers.push(() => makeCharacter(
  26410. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26411. {
  26412. female: {
  26413. height: math.unit(29.9, "m"),
  26414. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26415. name: "Female",
  26416. image: {
  26417. source: "./media/characters/zenari/female.svg",
  26418. extra: 3281.6 / 3217,
  26419. bottom: 72.2 / 3353
  26420. }
  26421. },
  26422. male: {
  26423. height: math.unit(27.7, "m"),
  26424. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26425. name: "Male",
  26426. image: {
  26427. source: "./media/characters/zenari/male.svg",
  26428. extra: 3008 / 2991,
  26429. bottom: 54.6 / 3069
  26430. }
  26431. },
  26432. },
  26433. [
  26434. {
  26435. name: "Macro",
  26436. height: math.unit(29.7, "meters"),
  26437. default: true
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26443. {
  26444. female: {
  26445. height: math.unit(23.8, "m"),
  26446. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26447. name: "Female",
  26448. image: {
  26449. source: "./media/characters/mactarian/female.svg",
  26450. extra: 2662 / 2569,
  26451. bottom: 73 / 2736
  26452. }
  26453. },
  26454. male: {
  26455. height: math.unit(23.8, "m"),
  26456. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26457. name: "Male",
  26458. image: {
  26459. source: "./media/characters/mactarian/male.svg",
  26460. extra: 2673 / 2600,
  26461. bottom: 76 / 2750
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Macro",
  26468. height: math.unit(23.8, "meters"),
  26469. default: true
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26475. {
  26476. female: {
  26477. height: math.unit(19.3, "m"),
  26478. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26479. name: "Female",
  26480. image: {
  26481. source: "./media/characters/umok/female.svg",
  26482. extra: 2186 / 2078,
  26483. bottom: 87 / 2277
  26484. }
  26485. },
  26486. male: {
  26487. height: math.unit(19.5, "m"),
  26488. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26489. name: "Male",
  26490. image: {
  26491. source: "./media/characters/umok/male.svg",
  26492. extra: 2233 / 2140,
  26493. bottom: 24.4 / 2258
  26494. }
  26495. },
  26496. },
  26497. [
  26498. {
  26499. name: "Macro",
  26500. height: math.unit(19.3, "meters"),
  26501. default: true
  26502. },
  26503. ]
  26504. ))
  26505. characterMakers.push(() => makeCharacter(
  26506. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26507. {
  26508. female: {
  26509. height: math.unit(26.15, "m"),
  26510. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26511. name: "Female",
  26512. image: {
  26513. source: "./media/characters/joraxian/female.svg",
  26514. extra: 2912 / 2824,
  26515. bottom: 36 / 2956
  26516. }
  26517. },
  26518. male: {
  26519. height: math.unit(25.4, "m"),
  26520. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26521. name: "Male",
  26522. image: {
  26523. source: "./media/characters/joraxian/male.svg",
  26524. extra: 2877 / 2721,
  26525. bottom: 82 / 2967
  26526. }
  26527. },
  26528. },
  26529. [
  26530. {
  26531. name: "Macro",
  26532. height: math.unit(26.15, "meters"),
  26533. default: true
  26534. },
  26535. ]
  26536. ))
  26537. characterMakers.push(() => makeCharacter(
  26538. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26539. {
  26540. female: {
  26541. height: math.unit(21.6, "m"),
  26542. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26543. name: "Female",
  26544. image: {
  26545. source: "./media/characters/sthara/female.svg",
  26546. extra: 2516 / 2347,
  26547. bottom: 21.5 / 2537
  26548. }
  26549. },
  26550. male: {
  26551. height: math.unit(24, "m"),
  26552. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26553. name: "Male",
  26554. image: {
  26555. source: "./media/characters/sthara/male.svg",
  26556. extra: 2732 / 2607,
  26557. bottom: 23 / 2732
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Macro",
  26564. height: math.unit(21.6, "meters"),
  26565. default: true
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(6 + 4 / 12, "feet"),
  26574. weight: math.unit(175, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/luka-bryzant/front.svg",
  26578. extra: 311 / 289,
  26579. bottom: 4 / 315
  26580. }
  26581. },
  26582. back: {
  26583. height: math.unit(6 + 4 / 12, "feet"),
  26584. weight: math.unit(175, "lb"),
  26585. name: "Back",
  26586. image: {
  26587. source: "./media/characters/luka-bryzant/back.svg",
  26588. extra: 311 / 289,
  26589. bottom: 3.8 / 313.7
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Micro",
  26596. height: math.unit(10, "inches")
  26597. },
  26598. {
  26599. name: "Normal",
  26600. height: math.unit(6 + 4 / 12, "feet"),
  26601. default: true
  26602. },
  26603. {
  26604. name: "Large",
  26605. height: math.unit(12, "feet")
  26606. },
  26607. ]
  26608. ))
  26609. characterMakers.push(() => makeCharacter(
  26610. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26611. {
  26612. front: {
  26613. height: math.unit(5 + 7 / 12, "feet"),
  26614. weight: math.unit(185, "lb"),
  26615. name: "Front",
  26616. image: {
  26617. source: "./media/characters/aman-aquila/front.svg",
  26618. extra: 1013 / 976,
  26619. bottom: 45.6 / 1057
  26620. }
  26621. },
  26622. side: {
  26623. height: math.unit(5 + 7 / 12, "feet"),
  26624. weight: math.unit(185, "lb"),
  26625. name: "Side",
  26626. image: {
  26627. source: "./media/characters/aman-aquila/side.svg",
  26628. extra: 1054 / 1011,
  26629. bottom: 15 / 1070
  26630. }
  26631. },
  26632. back: {
  26633. height: math.unit(5 + 7 / 12, "feet"),
  26634. weight: math.unit(185, "lb"),
  26635. name: "Back",
  26636. image: {
  26637. source: "./media/characters/aman-aquila/back.svg",
  26638. extra: 1026 / 970,
  26639. bottom: 12 / 1039
  26640. }
  26641. },
  26642. head: {
  26643. height: math.unit(1.211, "feet"),
  26644. name: "Head",
  26645. image: {
  26646. source: "./media/characters/aman-aquila/head.svg",
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Minimicro",
  26653. height: math.unit(0.057, "inches")
  26654. },
  26655. {
  26656. name: "Micro",
  26657. height: math.unit(7, "inches")
  26658. },
  26659. {
  26660. name: "Mini",
  26661. height: math.unit(3 + 7 / 12, "feet")
  26662. },
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(5 + 7 / 12, "feet"),
  26666. default: true
  26667. },
  26668. {
  26669. name: "Macro",
  26670. height: math.unit(157 + 7 / 12, "feet")
  26671. },
  26672. {
  26673. name: "Megamacro",
  26674. height: math.unit(1557 + 7 / 12, "feet")
  26675. },
  26676. {
  26677. name: "Gigamacro",
  26678. height: math.unit(15557 + 7 / 12, "feet")
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26684. {
  26685. front: {
  26686. height: math.unit(3 + 2 / 12, "inches"),
  26687. weight: math.unit(0.3, "ounces"),
  26688. name: "Front",
  26689. image: {
  26690. source: "./media/characters/hiphae/front.svg",
  26691. extra: 1931 / 1683,
  26692. bottom: 24 / 1955
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(3 + 1 / 2, "inches"),
  26700. default: true
  26701. },
  26702. ]
  26703. ))
  26704. characterMakers.push(() => makeCharacter(
  26705. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26706. {
  26707. front: {
  26708. height: math.unit(5 + 10 / 12, "feet"),
  26709. weight: math.unit(165, "lb"),
  26710. name: "Front",
  26711. image: {
  26712. source: "./media/characters/nicky/front.svg",
  26713. extra: 3144 / 2886,
  26714. bottom: 45.6 / 3192
  26715. }
  26716. },
  26717. back: {
  26718. height: math.unit(5 + 10 / 12, "feet"),
  26719. weight: math.unit(165, "lb"),
  26720. name: "Back",
  26721. image: {
  26722. source: "./media/characters/nicky/back.svg",
  26723. extra: 3055 / 2804,
  26724. bottom: 28.4 / 3087
  26725. }
  26726. },
  26727. frontclothed: {
  26728. height: math.unit(5 + 10 / 12, "feet"),
  26729. weight: math.unit(165, "lb"),
  26730. name: "Front-clothed",
  26731. image: {
  26732. source: "./media/characters/nicky/front-clothed.svg",
  26733. extra: 3184.9 / 2926.9,
  26734. bottom: 86.5 / 3239.9
  26735. }
  26736. },
  26737. foot: {
  26738. height: math.unit(1.16, "feet"),
  26739. name: "Foot",
  26740. image: {
  26741. source: "./media/characters/nicky/foot.svg"
  26742. }
  26743. },
  26744. feet: {
  26745. height: math.unit(1.34, "feet"),
  26746. name: "Feet",
  26747. image: {
  26748. source: "./media/characters/nicky/feet.svg"
  26749. }
  26750. },
  26751. maw: {
  26752. height: math.unit(0.9, "feet"),
  26753. name: "Maw",
  26754. image: {
  26755. source: "./media/characters/nicky/maw.svg"
  26756. }
  26757. },
  26758. },
  26759. [
  26760. {
  26761. name: "Normal",
  26762. height: math.unit(5 + 10 / 12, "feet"),
  26763. default: true
  26764. },
  26765. {
  26766. name: "Macro",
  26767. height: math.unit(60, "feet")
  26768. },
  26769. {
  26770. name: "Megamacro",
  26771. height: math.unit(1, "mile")
  26772. },
  26773. ]
  26774. ))
  26775. characterMakers.push(() => makeCharacter(
  26776. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26777. {
  26778. side: {
  26779. height: math.unit(10, "feet"),
  26780. weight: math.unit(600, "lb"),
  26781. name: "Side",
  26782. image: {
  26783. source: "./media/characters/blair/side.svg",
  26784. bottom: 16.6 / 475,
  26785. extra: 458 / 431
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Micro",
  26792. height: math.unit(8, "inches")
  26793. },
  26794. {
  26795. name: "Normal",
  26796. height: math.unit(10, "feet"),
  26797. default: true
  26798. },
  26799. {
  26800. name: "Macro",
  26801. height: math.unit(180, "feet")
  26802. },
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26807. {
  26808. front: {
  26809. height: math.unit(5 + 4 / 12, "feet"),
  26810. weight: math.unit(125, "lb"),
  26811. name: "Front",
  26812. image: {
  26813. source: "./media/characters/fisher/front.svg",
  26814. extra: 444 / 390,
  26815. bottom: 2 / 444.8
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Micro",
  26822. height: math.unit(4, "inches")
  26823. },
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(5 + 4 / 12, "feet"),
  26827. default: true
  26828. },
  26829. {
  26830. name: "Macro",
  26831. height: math.unit(100, "feet")
  26832. },
  26833. ]
  26834. ))
  26835. characterMakers.push(() => makeCharacter(
  26836. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26837. {
  26838. front: {
  26839. height: math.unit(6.71, "feet"),
  26840. weight: math.unit(200, "lb"),
  26841. preyCapacity: math.unit(1000000, "people"),
  26842. name: "Front",
  26843. image: {
  26844. source: "./media/characters/gliss/front.svg",
  26845. extra: 2347 / 2231,
  26846. bottom: 113 / 2462
  26847. }
  26848. },
  26849. hammerspaceSize: {
  26850. height: math.unit(6.71 * 717, "feet"),
  26851. weight: math.unit(200, "lb"),
  26852. preyCapacity: math.unit(1000000, "people"),
  26853. name: "Hammerspace Size",
  26854. image: {
  26855. source: "./media/characters/gliss/front.svg",
  26856. extra: 2347 / 2231,
  26857. bottom: 113 / 2462
  26858. }
  26859. },
  26860. },
  26861. [
  26862. {
  26863. name: "Normal",
  26864. height: math.unit(6.71, "feet"),
  26865. default: true
  26866. },
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26871. {
  26872. side: {
  26873. height: math.unit(1.44, "m"),
  26874. weight: math.unit(80, "kg"),
  26875. name: "Side",
  26876. image: {
  26877. source: "./media/characters/dune-anderson/side.svg",
  26878. bottom: 49 / 1426
  26879. }
  26880. },
  26881. },
  26882. [
  26883. {
  26884. name: "Wolf-sized",
  26885. height: math.unit(1.44, "meters")
  26886. },
  26887. {
  26888. name: "Normal",
  26889. height: math.unit(5.05, "meters"),
  26890. default: true
  26891. },
  26892. {
  26893. name: "Big",
  26894. height: math.unit(14.4, "meters")
  26895. },
  26896. {
  26897. name: "Huge",
  26898. height: math.unit(144, "meters")
  26899. },
  26900. ]
  26901. ))
  26902. characterMakers.push(() => makeCharacter(
  26903. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26904. {
  26905. front: {
  26906. height: math.unit(7, "feet"),
  26907. weight: math.unit(425, "lb"),
  26908. name: "Front",
  26909. image: {
  26910. source: "./media/characters/hind/front.svg",
  26911. extra: 2091 / 1860,
  26912. bottom: 129 / 2220
  26913. }
  26914. },
  26915. back: {
  26916. height: math.unit(7, "feet"),
  26917. weight: math.unit(425, "lb"),
  26918. name: "Back",
  26919. image: {
  26920. source: "./media/characters/hind/back.svg",
  26921. extra: 2091 / 1860,
  26922. bottom: 24.6 / 2309
  26923. }
  26924. },
  26925. tail: {
  26926. height: math.unit(2.8, "feet"),
  26927. name: "Tail",
  26928. image: {
  26929. source: "./media/characters/hind/tail.svg"
  26930. }
  26931. },
  26932. head: {
  26933. height: math.unit(2.55, "feet"),
  26934. name: "Head",
  26935. image: {
  26936. source: "./media/characters/hind/head.svg"
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "XS",
  26943. height: math.unit(0.7, "feet")
  26944. },
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(7, "feet"),
  26948. default: true
  26949. },
  26950. {
  26951. name: "XL",
  26952. height: math.unit(70, "feet")
  26953. },
  26954. ]
  26955. ))
  26956. characterMakers.push(() => makeCharacter(
  26957. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26958. {
  26959. front: {
  26960. height: math.unit(2.1, "meters"),
  26961. weight: math.unit(150, "lb"),
  26962. name: "Front",
  26963. image: {
  26964. source: "./media/characters/tharquench-sizestealer/front.svg",
  26965. extra: 1605/1470,
  26966. bottom: 36/1641
  26967. }
  26968. },
  26969. frontAlt: {
  26970. height: math.unit(2.1, "meters"),
  26971. weight: math.unit(150, "lb"),
  26972. name: "Front (Alt)",
  26973. image: {
  26974. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26975. extra: 2318 / 2063,
  26976. bottom: 93.4 / 2410
  26977. }
  26978. },
  26979. },
  26980. [
  26981. {
  26982. name: "Nano",
  26983. height: math.unit(1, "mm")
  26984. },
  26985. {
  26986. name: "Micro",
  26987. height: math.unit(1, "cm")
  26988. },
  26989. {
  26990. name: "Normal",
  26991. height: math.unit(2.1, "meters"),
  26992. default: true
  26993. },
  26994. ]
  26995. ))
  26996. characterMakers.push(() => makeCharacter(
  26997. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26998. {
  26999. front: {
  27000. height: math.unit(7 + 5 / 12, "feet"),
  27001. weight: math.unit(357, "lb"),
  27002. name: "Front",
  27003. image: {
  27004. source: "./media/characters/solex-draconov/front.svg",
  27005. extra: 1993 / 1865,
  27006. bottom: 117 / 2111
  27007. }
  27008. },
  27009. },
  27010. [
  27011. {
  27012. name: "Natural Height",
  27013. height: math.unit(7 + 5 / 12, "feet"),
  27014. default: true
  27015. },
  27016. {
  27017. name: "Macro",
  27018. height: math.unit(350, "feet")
  27019. },
  27020. {
  27021. name: "Macro+",
  27022. height: math.unit(1000, "feet")
  27023. },
  27024. {
  27025. name: "Megamacro",
  27026. height: math.unit(20, "km")
  27027. },
  27028. {
  27029. name: "Megamacro+",
  27030. height: math.unit(1000, "km")
  27031. },
  27032. {
  27033. name: "Gigamacro",
  27034. height: math.unit(2.5, "Gm")
  27035. },
  27036. {
  27037. name: "Teramacro",
  27038. height: math.unit(15, "Tm")
  27039. },
  27040. {
  27041. name: "Galactic",
  27042. height: math.unit(30, "Zm")
  27043. },
  27044. {
  27045. name: "Universal",
  27046. height: math.unit(21000, "Ym")
  27047. },
  27048. {
  27049. name: "Omniversal",
  27050. height: math.unit(9.861e50, "Ym")
  27051. },
  27052. {
  27053. name: "Existential",
  27054. height: math.unit(1e300, "meters")
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27060. {
  27061. side: {
  27062. height: math.unit(25, "feet"),
  27063. weight: math.unit(90000, "lb"),
  27064. name: "Side",
  27065. image: {
  27066. source: "./media/characters/mandarax/side.svg",
  27067. extra: 614 / 332,
  27068. bottom: 55 / 630
  27069. }
  27070. },
  27071. lounging: {
  27072. height: math.unit(15.4, "feet"),
  27073. weight: math.unit(90000, "lb"),
  27074. name: "Lounging",
  27075. image: {
  27076. source: "./media/characters/mandarax/lounging.svg",
  27077. extra: 817/609,
  27078. bottom: 685/1502
  27079. }
  27080. },
  27081. head: {
  27082. height: math.unit(11.4, "feet"),
  27083. name: "Head",
  27084. image: {
  27085. source: "./media/characters/mandarax/head.svg"
  27086. }
  27087. },
  27088. belly: {
  27089. height: math.unit(33, "feet"),
  27090. name: "Belly",
  27091. preyCapacity: math.unit(500, "people"),
  27092. image: {
  27093. source: "./media/characters/mandarax/belly.svg"
  27094. }
  27095. },
  27096. dick: {
  27097. height: math.unit(8.46, "feet"),
  27098. name: "Dick",
  27099. image: {
  27100. source: "./media/characters/mandarax/dick.svg"
  27101. }
  27102. },
  27103. top: {
  27104. height: math.unit(28, "meters"),
  27105. name: "Top",
  27106. image: {
  27107. source: "./media/characters/mandarax/top.svg"
  27108. }
  27109. },
  27110. },
  27111. [
  27112. {
  27113. name: "Normal",
  27114. height: math.unit(25, "feet"),
  27115. default: true
  27116. },
  27117. ]
  27118. ))
  27119. characterMakers.push(() => makeCharacter(
  27120. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27121. {
  27122. front: {
  27123. height: math.unit(5, "feet"),
  27124. weight: math.unit(90, "lb"),
  27125. name: "Front",
  27126. image: {
  27127. source: "./media/characters/pixil/front.svg",
  27128. extra: 2000 / 1618,
  27129. bottom: 12.3 / 2011
  27130. }
  27131. },
  27132. },
  27133. [
  27134. {
  27135. name: "Normal",
  27136. height: math.unit(5, "feet"),
  27137. default: true
  27138. },
  27139. {
  27140. name: "Megamacro",
  27141. height: math.unit(10, "miles"),
  27142. },
  27143. ]
  27144. ))
  27145. characterMakers.push(() => makeCharacter(
  27146. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27147. {
  27148. front: {
  27149. height: math.unit(7 + 2 / 12, "feet"),
  27150. weight: math.unit(200, "lb"),
  27151. name: "Front",
  27152. image: {
  27153. source: "./media/characters/angel/front.svg",
  27154. extra: 1830 / 1737,
  27155. bottom: 22.6 / 1854,
  27156. }
  27157. },
  27158. },
  27159. [
  27160. {
  27161. name: "Normal",
  27162. height: math.unit(7 + 2 / 12, "feet"),
  27163. default: true
  27164. },
  27165. {
  27166. name: "Macro",
  27167. height: math.unit(1000, "feet")
  27168. },
  27169. {
  27170. name: "Megamacro",
  27171. height: math.unit(2, "miles")
  27172. },
  27173. {
  27174. name: "Gigamacro",
  27175. height: math.unit(20, "earths")
  27176. },
  27177. ]
  27178. ))
  27179. characterMakers.push(() => makeCharacter(
  27180. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27181. {
  27182. front: {
  27183. height: math.unit(5, "feet"),
  27184. weight: math.unit(180, "lb"),
  27185. name: "Front",
  27186. image: {
  27187. source: "./media/characters/mekana/front.svg",
  27188. extra: 1671 / 1605,
  27189. bottom: 3.5 / 1691
  27190. }
  27191. },
  27192. side: {
  27193. height: math.unit(5, "feet"),
  27194. weight: math.unit(180, "lb"),
  27195. name: "Side",
  27196. image: {
  27197. source: "./media/characters/mekana/side.svg",
  27198. extra: 1671 / 1605,
  27199. bottom: 3.5 / 1691
  27200. }
  27201. },
  27202. back: {
  27203. height: math.unit(5, "feet"),
  27204. weight: math.unit(180, "lb"),
  27205. name: "Back",
  27206. image: {
  27207. source: "./media/characters/mekana/back.svg",
  27208. extra: 1671 / 1605,
  27209. bottom: 3.5 / 1691
  27210. }
  27211. },
  27212. },
  27213. [
  27214. {
  27215. name: "Normal",
  27216. height: math.unit(5, "feet"),
  27217. default: true
  27218. },
  27219. ]
  27220. ))
  27221. characterMakers.push(() => makeCharacter(
  27222. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27223. {
  27224. front: {
  27225. height: math.unit(4 + 6 / 12, "feet"),
  27226. weight: math.unit(80, "lb"),
  27227. name: "Front",
  27228. image: {
  27229. source: "./media/characters/pixie/front.svg",
  27230. extra: 1924 / 1825,
  27231. bottom: 22.4 / 1946
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(4 + 6 / 12, "feet"),
  27239. default: true
  27240. },
  27241. {
  27242. name: "Macro",
  27243. height: math.unit(40, "feet")
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(2.1, "meters"),
  27252. weight: math.unit(200, "lb"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/the-lascivious/front.svg",
  27256. extra: 1 / 0.893,
  27257. bottom: 3.5 / 573.7
  27258. }
  27259. },
  27260. },
  27261. [
  27262. {
  27263. name: "Human Scale",
  27264. height: math.unit(2.1, "meters")
  27265. },
  27266. {
  27267. name: "Wolxi Scale",
  27268. height: math.unit(46.2, "m"),
  27269. default: true
  27270. },
  27271. {
  27272. name: "Boinker of Buildings",
  27273. height: math.unit(10, "km")
  27274. },
  27275. {
  27276. name: "Shagger of Skyscrapers",
  27277. height: math.unit(40, "km")
  27278. },
  27279. {
  27280. name: "Banger of Boroughs",
  27281. height: math.unit(4000, "km")
  27282. },
  27283. {
  27284. name: "Screwer of States",
  27285. height: math.unit(100000, "km")
  27286. },
  27287. {
  27288. name: "Pounder of Planets",
  27289. height: math.unit(2000000, "km")
  27290. },
  27291. ]
  27292. ))
  27293. characterMakers.push(() => makeCharacter(
  27294. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27295. {
  27296. front: {
  27297. height: math.unit(6, "feet"),
  27298. weight: math.unit(150, "lb"),
  27299. name: "Front",
  27300. image: {
  27301. source: "./media/characters/aj/front.svg",
  27302. extra: 2039 / 1562,
  27303. bottom: 40 / 2079
  27304. }
  27305. },
  27306. },
  27307. [
  27308. {
  27309. name: "Normal",
  27310. height: math.unit(11 + 6 / 12, "feet"),
  27311. default: true
  27312. },
  27313. {
  27314. name: "Megamacro",
  27315. height: math.unit(60, "megameters")
  27316. },
  27317. ]
  27318. ))
  27319. characterMakers.push(() => makeCharacter(
  27320. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27321. {
  27322. side: {
  27323. height: math.unit(31 + 8 / 12, "feet"),
  27324. weight: math.unit(75000, "kg"),
  27325. name: "Side",
  27326. image: {
  27327. source: "./media/characters/koros/side.svg",
  27328. extra: 1442 / 1297,
  27329. bottom: 122.7 / 1562
  27330. }
  27331. },
  27332. dicksKingsCrown: {
  27333. height: math.unit(6, "feet"),
  27334. name: "Dicks (King's Crown)",
  27335. image: {
  27336. source: "./media/characters/koros/dicks-kings-crown.svg"
  27337. }
  27338. },
  27339. dicksTailSet: {
  27340. height: math.unit(3, "feet"),
  27341. name: "Dicks (Tail Set)",
  27342. image: {
  27343. source: "./media/characters/koros/dicks-tail-set.svg"
  27344. }
  27345. },
  27346. dickCumming: {
  27347. height: math.unit(7.98, "feet"),
  27348. name: "Dick (Cumming)",
  27349. image: {
  27350. source: "./media/characters/koros/dick-cumming.svg"
  27351. }
  27352. },
  27353. dicksBack: {
  27354. height: math.unit(5.9, "feet"),
  27355. name: "Dicks (Back)",
  27356. image: {
  27357. source: "./media/characters/koros/dicks-back.svg"
  27358. }
  27359. },
  27360. dicksFront: {
  27361. height: math.unit(3.72, "feet"),
  27362. name: "Dicks (Front)",
  27363. image: {
  27364. source: "./media/characters/koros/dicks-front.svg"
  27365. }
  27366. },
  27367. dicksPeeking: {
  27368. height: math.unit(3.0, "feet"),
  27369. name: "Dicks (Peeking)",
  27370. image: {
  27371. source: "./media/characters/koros/dicks-peeking.svg"
  27372. }
  27373. },
  27374. eye: {
  27375. height: math.unit(1.7, "feet"),
  27376. name: "Eye",
  27377. image: {
  27378. source: "./media/characters/koros/eye.svg"
  27379. }
  27380. },
  27381. headFront: {
  27382. height: math.unit(11.69, "feet"),
  27383. name: "Head (Front)",
  27384. image: {
  27385. source: "./media/characters/koros/head-front.svg"
  27386. }
  27387. },
  27388. headSide: {
  27389. height: math.unit(14, "feet"),
  27390. name: "Head (Side)",
  27391. image: {
  27392. source: "./media/characters/koros/head-side.svg"
  27393. }
  27394. },
  27395. leg: {
  27396. height: math.unit(17, "feet"),
  27397. name: "Leg",
  27398. image: {
  27399. source: "./media/characters/koros/leg.svg"
  27400. }
  27401. },
  27402. mawSide: {
  27403. height: math.unit(12.8, "feet"),
  27404. name: "Maw (Side)",
  27405. image: {
  27406. source: "./media/characters/koros/maw-side.svg"
  27407. }
  27408. },
  27409. mawSpitting: {
  27410. height: math.unit(17, "feet"),
  27411. name: "Maw (Spitting)",
  27412. image: {
  27413. source: "./media/characters/koros/maw-spitting.svg"
  27414. }
  27415. },
  27416. slit: {
  27417. height: math.unit(2.8, "feet"),
  27418. name: "Slit",
  27419. image: {
  27420. source: "./media/characters/koros/slit.svg"
  27421. }
  27422. },
  27423. stomach: {
  27424. height: math.unit(6.8, "feet"),
  27425. preyCapacity: math.unit(20, "people"),
  27426. name: "Stomach",
  27427. image: {
  27428. source: "./media/characters/koros/stomach.svg"
  27429. }
  27430. },
  27431. wingspanBottom: {
  27432. height: math.unit(114, "feet"),
  27433. name: "Wingspan (Bottom)",
  27434. image: {
  27435. source: "./media/characters/koros/wingspan-bottom.svg"
  27436. }
  27437. },
  27438. wingspanTop: {
  27439. height: math.unit(104, "feet"),
  27440. name: "Wingspan (Top)",
  27441. image: {
  27442. source: "./media/characters/koros/wingspan-top.svg"
  27443. }
  27444. },
  27445. },
  27446. [
  27447. {
  27448. name: "Normal",
  27449. height: math.unit(31 + 8 / 12, "feet"),
  27450. default: true
  27451. },
  27452. ]
  27453. ))
  27454. characterMakers.push(() => makeCharacter(
  27455. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27456. {
  27457. front: {
  27458. height: math.unit(18 + 5 / 12, "feet"),
  27459. weight: math.unit(3750, "kg"),
  27460. name: "Front",
  27461. image: {
  27462. source: "./media/characters/vexx/front.svg",
  27463. extra: 426 / 396,
  27464. bottom: 31.5 / 458
  27465. }
  27466. },
  27467. maw: {
  27468. height: math.unit(6, "feet"),
  27469. name: "Maw",
  27470. image: {
  27471. source: "./media/characters/vexx/maw.svg"
  27472. }
  27473. },
  27474. },
  27475. [
  27476. {
  27477. name: "Normal",
  27478. height: math.unit(18 + 5 / 12, "feet"),
  27479. default: true
  27480. },
  27481. ]
  27482. ))
  27483. characterMakers.push(() => makeCharacter(
  27484. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27485. {
  27486. front: {
  27487. height: math.unit(17 + 6 / 12, "feet"),
  27488. weight: math.unit(150, "lb"),
  27489. name: "Front",
  27490. image: {
  27491. source: "./media/characters/baadra/front.svg",
  27492. extra: 1694/1553,
  27493. bottom: 179/1873
  27494. }
  27495. },
  27496. frontAlt: {
  27497. height: math.unit(17 + 6 / 12, "feet"),
  27498. weight: math.unit(150, "lb"),
  27499. name: "Front (Alt)",
  27500. image: {
  27501. source: "./media/characters/baadra/front-alt.svg",
  27502. extra: 3137 / 2890,
  27503. bottom: 168.4 / 3305
  27504. }
  27505. },
  27506. back: {
  27507. height: math.unit(17 + 6 / 12, "feet"),
  27508. weight: math.unit(150, "lb"),
  27509. name: "Back",
  27510. image: {
  27511. source: "./media/characters/baadra/back.svg",
  27512. extra: 3142 / 2890,
  27513. bottom: 220 / 3371
  27514. }
  27515. },
  27516. head: {
  27517. height: math.unit(5.45, "feet"),
  27518. name: "Head",
  27519. image: {
  27520. source: "./media/characters/baadra/head.svg"
  27521. }
  27522. },
  27523. headAngry: {
  27524. height: math.unit(4.95, "feet"),
  27525. name: "Head (Angry)",
  27526. image: {
  27527. source: "./media/characters/baadra/head-angry.svg"
  27528. }
  27529. },
  27530. headOpen: {
  27531. height: math.unit(6, "feet"),
  27532. name: "Head (Open)",
  27533. image: {
  27534. source: "./media/characters/baadra/head-open.svg"
  27535. }
  27536. },
  27537. },
  27538. [
  27539. {
  27540. name: "Normal",
  27541. height: math.unit(17 + 6 / 12, "feet"),
  27542. default: true
  27543. },
  27544. ]
  27545. ))
  27546. characterMakers.push(() => makeCharacter(
  27547. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27548. {
  27549. front: {
  27550. height: math.unit(7 + 3 / 12, "feet"),
  27551. weight: math.unit(180, "lb"),
  27552. name: "Front",
  27553. image: {
  27554. source: "./media/characters/juri/front.svg",
  27555. extra: 1401 / 1237,
  27556. bottom: 18.5 / 1418
  27557. }
  27558. },
  27559. side: {
  27560. height: math.unit(7 + 3 / 12, "feet"),
  27561. weight: math.unit(180, "lb"),
  27562. name: "Side",
  27563. image: {
  27564. source: "./media/characters/juri/side.svg",
  27565. extra: 1424 / 1242,
  27566. bottom: 18.5 / 1447
  27567. }
  27568. },
  27569. sitting: {
  27570. height: math.unit(6, "feet"),
  27571. weight: math.unit(180, "lb"),
  27572. name: "Sitting",
  27573. image: {
  27574. source: "./media/characters/juri/sitting.svg",
  27575. extra: 1270 / 1143,
  27576. bottom: 100 / 1343
  27577. }
  27578. },
  27579. back: {
  27580. height: math.unit(7 + 3 / 12, "feet"),
  27581. weight: math.unit(180, "lb"),
  27582. name: "Back",
  27583. image: {
  27584. source: "./media/characters/juri/back.svg",
  27585. extra: 1377 / 1240,
  27586. bottom: 23.7 / 1405
  27587. }
  27588. },
  27589. maw: {
  27590. height: math.unit(2.8, "feet"),
  27591. name: "Maw",
  27592. image: {
  27593. source: "./media/characters/juri/maw.svg"
  27594. }
  27595. },
  27596. stomach: {
  27597. height: math.unit(0.89, "feet"),
  27598. preyCapacity: math.unit(4, "liters"),
  27599. name: "Stomach",
  27600. image: {
  27601. source: "./media/characters/juri/stomach.svg"
  27602. }
  27603. },
  27604. },
  27605. [
  27606. {
  27607. name: "Normal",
  27608. height: math.unit(7 + 3 / 12, "feet"),
  27609. default: true
  27610. },
  27611. ]
  27612. ))
  27613. characterMakers.push(() => makeCharacter(
  27614. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27615. {
  27616. fox: {
  27617. height: math.unit(5 + 6 / 12, "feet"),
  27618. weight: math.unit(140, "lb"),
  27619. name: "Fox",
  27620. image: {
  27621. source: "./media/characters/maxene-sita/fox.svg",
  27622. extra: 146 / 138,
  27623. bottom: 2.1 / 148.19
  27624. }
  27625. },
  27626. foxLaying: {
  27627. height: math.unit(1.70, "feet"),
  27628. weight: math.unit(140, "lb"),
  27629. name: "Fox (Laying)",
  27630. image: {
  27631. source: "./media/characters/maxene-sita/fox-laying.svg",
  27632. extra: 910 / 572,
  27633. bottom: 71 / 981
  27634. }
  27635. },
  27636. kitsune: {
  27637. height: math.unit(10, "feet"),
  27638. weight: math.unit(800, "lb"),
  27639. name: "Kitsune",
  27640. image: {
  27641. source: "./media/characters/maxene-sita/kitsune.svg",
  27642. extra: 185 / 176,
  27643. bottom: 4.7 / 189.9
  27644. }
  27645. },
  27646. hellhound: {
  27647. height: math.unit(10, "feet"),
  27648. weight: math.unit(700, "lb"),
  27649. name: "Hellhound",
  27650. image: {
  27651. source: "./media/characters/maxene-sita/hellhound.svg",
  27652. extra: 1600 / 1545,
  27653. bottom: 81 / 1681
  27654. }
  27655. },
  27656. },
  27657. [
  27658. {
  27659. name: "Normal",
  27660. height: math.unit(5 + 6 / 12, "feet"),
  27661. default: true
  27662. },
  27663. ]
  27664. ))
  27665. characterMakers.push(() => makeCharacter(
  27666. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27667. {
  27668. front: {
  27669. height: math.unit(3 + 4 / 12, "feet"),
  27670. weight: math.unit(70, "lb"),
  27671. name: "Front",
  27672. image: {
  27673. source: "./media/characters/maia/front.svg",
  27674. extra: 227 / 219.5,
  27675. bottom: 40 / 267
  27676. }
  27677. },
  27678. back: {
  27679. height: math.unit(3 + 4 / 12, "feet"),
  27680. weight: math.unit(70, "lb"),
  27681. name: "Back",
  27682. image: {
  27683. source: "./media/characters/maia/back.svg",
  27684. extra: 237 / 225
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Normal",
  27691. height: math.unit(3 + 4 / 12, "feet"),
  27692. default: true
  27693. },
  27694. ]
  27695. ))
  27696. characterMakers.push(() => makeCharacter(
  27697. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27698. {
  27699. front: {
  27700. height: math.unit(5 + 10 / 12, "feet"),
  27701. weight: math.unit(197, "lb"),
  27702. name: "Front",
  27703. image: {
  27704. source: "./media/characters/jabaro/front.svg",
  27705. extra: 225 / 216,
  27706. bottom: 5.06 / 230
  27707. }
  27708. },
  27709. back: {
  27710. height: math.unit(5 + 10 / 12, "feet"),
  27711. weight: math.unit(197, "lb"),
  27712. name: "Back",
  27713. image: {
  27714. source: "./media/characters/jabaro/back.svg",
  27715. extra: 225 / 219,
  27716. bottom: 1.9 / 227
  27717. }
  27718. },
  27719. },
  27720. [
  27721. {
  27722. name: "Normal",
  27723. height: math.unit(5 + 10 / 12, "feet"),
  27724. default: true
  27725. },
  27726. ]
  27727. ))
  27728. characterMakers.push(() => makeCharacter(
  27729. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27730. {
  27731. front: {
  27732. height: math.unit(5 + 8 / 12, "feet"),
  27733. weight: math.unit(139, "lb"),
  27734. name: "Front",
  27735. image: {
  27736. source: "./media/characters/risa/front.svg",
  27737. extra: 270 / 260,
  27738. bottom: 11.2 / 282
  27739. }
  27740. },
  27741. back: {
  27742. height: math.unit(5 + 8 / 12, "feet"),
  27743. weight: math.unit(139, "lb"),
  27744. name: "Back",
  27745. image: {
  27746. source: "./media/characters/risa/back.svg",
  27747. extra: 264 / 255,
  27748. bottom: 4 / 268
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(5 + 8 / 12, "feet"),
  27756. default: true
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27762. {
  27763. front: {
  27764. height: math.unit(2 + 11 / 12, "feet"),
  27765. weight: math.unit(30, "lb"),
  27766. name: "Front",
  27767. image: {
  27768. source: "./media/characters/weatley/front.svg",
  27769. bottom: 10.7 / 414,
  27770. extra: 403.5 / 362
  27771. }
  27772. },
  27773. back: {
  27774. height: math.unit(2 + 11 / 12, "feet"),
  27775. weight: math.unit(30, "lb"),
  27776. name: "Back",
  27777. image: {
  27778. source: "./media/characters/weatley/back.svg",
  27779. bottom: 10.7 / 414,
  27780. extra: 403.5 / 362
  27781. }
  27782. },
  27783. },
  27784. [
  27785. {
  27786. name: "Normal",
  27787. height: math.unit(2 + 11 / 12, "feet"),
  27788. default: true
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27794. {
  27795. front: {
  27796. height: math.unit(5 + 2 / 12, "feet"),
  27797. weight: math.unit(50, "kg"),
  27798. name: "Front",
  27799. image: {
  27800. source: "./media/characters/mercury-crescent/front.svg",
  27801. extra: 1088 / 1033,
  27802. bottom: 18.9 / 1109
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(5 + 2 / 12, "feet"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27816. {
  27817. front: {
  27818. height: math.unit(2, "feet"),
  27819. weight: math.unit(15, "kg"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/diamond-jones/front.svg",
  27823. extra: 727/723,
  27824. bottom: 46/773
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(2, "feet"),
  27832. default: true
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27838. {
  27839. front: {
  27840. height: math.unit(3, "feet"),
  27841. weight: math.unit(30, "kg"),
  27842. name: "Front",
  27843. image: {
  27844. source: "./media/characters/sweet-bit/front.svg",
  27845. extra: 675 / 567,
  27846. bottom: 27.7 / 703
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(3, "feet"),
  27854. default: true
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27860. {
  27861. side: {
  27862. height: math.unit(9.178, "feet"),
  27863. weight: math.unit(500, "lb"),
  27864. name: "Side",
  27865. image: {
  27866. source: "./media/characters/umbrazen/side.svg",
  27867. extra: 1730 / 1473,
  27868. bottom: 34.6 / 1765
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(9.178, "feet"),
  27876. default: true
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27882. {
  27883. front: {
  27884. height: math.unit(10, "feet"),
  27885. weight: math.unit(750, "lb"),
  27886. name: "Front",
  27887. image: {
  27888. source: "./media/characters/arlist/front.svg",
  27889. extra: 961 / 778,
  27890. bottom: 6.2 / 986
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(10, "feet"),
  27898. default: true
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(5 + 1 / 12, "feet"),
  27907. weight: math.unit(110, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/aradel/front.svg",
  27911. extra: 324 / 303,
  27912. bottom: 3.6 / 329.4
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Normal",
  27919. height: math.unit(5 + 1 / 12, "feet"),
  27920. default: true
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27926. {
  27927. dressed: {
  27928. height: math.unit(3 + 8 / 12, "feet"),
  27929. weight: math.unit(50, "lb"),
  27930. name: "Dressed",
  27931. image: {
  27932. source: "./media/characters/serryn/dressed.svg",
  27933. extra: 1792 / 1656,
  27934. bottom: 43.5 / 1840
  27935. }
  27936. },
  27937. nude: {
  27938. height: math.unit(3 + 8 / 12, "feet"),
  27939. weight: math.unit(50, "lb"),
  27940. name: "Nude",
  27941. image: {
  27942. source: "./media/characters/serryn/nude.svg",
  27943. extra: 1792 / 1656,
  27944. bottom: 43.5 / 1840
  27945. }
  27946. },
  27947. },
  27948. [
  27949. {
  27950. name: "Normal",
  27951. height: math.unit(3 + 8 / 12, "feet"),
  27952. default: true
  27953. },
  27954. ]
  27955. ))
  27956. characterMakers.push(() => makeCharacter(
  27957. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27958. {
  27959. front: {
  27960. height: math.unit(7 + 10 / 12, "feet"),
  27961. weight: math.unit(255, "lb"),
  27962. name: "Front",
  27963. image: {
  27964. source: "./media/characters/xavier-thyme/front.svg",
  27965. extra: 3733 / 3642,
  27966. bottom: 131 / 3869
  27967. }
  27968. },
  27969. frontRaven: {
  27970. height: math.unit(7 + 10 / 12, "feet"),
  27971. weight: math.unit(255, "lb"),
  27972. name: "Front (Raven)",
  27973. image: {
  27974. source: "./media/characters/xavier-thyme/front-raven.svg",
  27975. extra: 4385 / 3642,
  27976. bottom: 131 / 4517
  27977. }
  27978. },
  27979. },
  27980. [
  27981. {
  27982. name: "Normal",
  27983. height: math.unit(7 + 10 / 12, "feet"),
  27984. default: true
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27990. {
  27991. front: {
  27992. height: math.unit(1.6, "m"),
  27993. weight: math.unit(50, "kg"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/kiki/front.svg",
  27997. extra: 4682 / 3610,
  27998. bottom: 115 / 4777
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(1.6, "meters"),
  28006. default: true
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(50, "m"),
  28015. weight: math.unit(500, "tonnes"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/ryoko/front.svg",
  28019. extra: 4632 / 3926,
  28020. bottom: 193 / 4823
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(50, "meters"),
  28028. default: true
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28034. {
  28035. front: {
  28036. height: math.unit(30, "m"),
  28037. weight: math.unit(22, "tonnes"),
  28038. name: "Front",
  28039. image: {
  28040. source: "./media/characters/elio/front.svg",
  28041. extra: 4582 / 3720,
  28042. bottom: 236 / 4828
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Normal",
  28049. height: math.unit(30, "meters"),
  28050. default: true
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28056. {
  28057. front: {
  28058. height: math.unit(6 + 3 / 12, "feet"),
  28059. weight: math.unit(120, "lb"),
  28060. name: "Front",
  28061. image: {
  28062. source: "./media/characters/azura/front.svg",
  28063. extra: 1149 / 1135,
  28064. bottom: 45 / 1194
  28065. }
  28066. },
  28067. frontClothed: {
  28068. height: math.unit(6 + 3 / 12, "feet"),
  28069. weight: math.unit(120, "lb"),
  28070. name: "Front (Clothed)",
  28071. image: {
  28072. source: "./media/characters/azura/front-clothed.svg",
  28073. extra: 1149 / 1135,
  28074. bottom: 45 / 1194
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Normal",
  28081. height: math.unit(6 + 3 / 12, "feet"),
  28082. default: true
  28083. },
  28084. {
  28085. name: "Macro",
  28086. height: math.unit(20 + 6 / 12, "feet")
  28087. },
  28088. {
  28089. name: "Megamacro",
  28090. height: math.unit(12, "miles")
  28091. },
  28092. {
  28093. name: "Gigamacro",
  28094. height: math.unit(10000, "miles")
  28095. },
  28096. {
  28097. name: "Teramacro",
  28098. height: math.unit(900000, "miles")
  28099. },
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(12, "feet"),
  28107. weight: math.unit(1, "ton"),
  28108. capacity: math.unit(660000, "gallons"),
  28109. name: "Front",
  28110. image: {
  28111. source: "./media/characters/zeus/front.svg",
  28112. extra: 5005 / 4717,
  28113. bottom: 363 / 5388
  28114. }
  28115. },
  28116. },
  28117. [
  28118. {
  28119. name: "Normal",
  28120. height: math.unit(12, "feet")
  28121. },
  28122. {
  28123. name: "Preferred Size",
  28124. height: math.unit(0.5, "miles"),
  28125. default: true
  28126. },
  28127. {
  28128. name: "Giga Horse",
  28129. height: math.unit(300, "miles")
  28130. },
  28131. {
  28132. name: "Riding Planets",
  28133. height: math.unit(30, "megameters")
  28134. },
  28135. {
  28136. name: "Cosmic Giant",
  28137. height: math.unit(3, "zettameters")
  28138. },
  28139. {
  28140. name: "Breeding God",
  28141. height: math.unit(9.92e22, "yottameters")
  28142. },
  28143. ]
  28144. ))
  28145. characterMakers.push(() => makeCharacter(
  28146. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28147. {
  28148. side: {
  28149. height: math.unit(9, "feet"),
  28150. weight: math.unit(1500, "kg"),
  28151. name: "Side",
  28152. image: {
  28153. source: "./media/characters/fang/side.svg",
  28154. extra: 924 / 866,
  28155. bottom: 47.5 / 972.3
  28156. }
  28157. },
  28158. },
  28159. [
  28160. {
  28161. name: "Normal",
  28162. height: math.unit(9, "feet"),
  28163. default: true
  28164. },
  28165. {
  28166. name: "Macro",
  28167. height: math.unit(75 + 6 / 12, "feet")
  28168. },
  28169. {
  28170. name: "Teramacro",
  28171. height: math.unit(50000, "miles")
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28177. {
  28178. front: {
  28179. height: math.unit(10, "feet"),
  28180. weight: math.unit(2, "tons"),
  28181. name: "Front",
  28182. image: {
  28183. source: "./media/characters/rekhit/front.svg",
  28184. extra: 2796 / 2590,
  28185. bottom: 225 / 3022
  28186. }
  28187. },
  28188. },
  28189. [
  28190. {
  28191. name: "Normal",
  28192. height: math.unit(10, "feet"),
  28193. default: true
  28194. },
  28195. {
  28196. name: "Macro",
  28197. height: math.unit(500, "feet")
  28198. },
  28199. ]
  28200. ))
  28201. characterMakers.push(() => makeCharacter(
  28202. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28203. {
  28204. front: {
  28205. height: math.unit(7 + 6.451 / 12, "feet"),
  28206. weight: math.unit(310, "lb"),
  28207. name: "Front",
  28208. image: {
  28209. source: "./media/characters/dahlia-verrick/front.svg",
  28210. extra: 1488 / 1365,
  28211. bottom: 6.2 / 1495
  28212. }
  28213. },
  28214. back: {
  28215. height: math.unit(7 + 6.451 / 12, "feet"),
  28216. weight: math.unit(310, "lb"),
  28217. name: "Back",
  28218. image: {
  28219. source: "./media/characters/dahlia-verrick/back.svg",
  28220. extra: 1472 / 1351,
  28221. bottom: 5.28 / 1477
  28222. }
  28223. },
  28224. frontBusiness: {
  28225. height: math.unit(7 + 6.451 / 12, "feet"),
  28226. weight: math.unit(200, "lb"),
  28227. name: "Front (Business)",
  28228. image: {
  28229. source: "./media/characters/dahlia-verrick/front-business.svg",
  28230. extra: 1478 / 1381,
  28231. bottom: 5.5 / 1484
  28232. }
  28233. },
  28234. frontCasual: {
  28235. height: math.unit(7 + 6.451 / 12, "feet"),
  28236. weight: math.unit(200, "lb"),
  28237. name: "Front (Casual)",
  28238. image: {
  28239. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28240. extra: 1478 / 1381,
  28241. bottom: 5.5 / 1484
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Travel-Sized",
  28248. height: math.unit(7.45, "inches")
  28249. },
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(7 + 6.451 / 12, "feet"),
  28253. default: true
  28254. },
  28255. {
  28256. name: "Hitting the Town",
  28257. height: math.unit(37 + 8 / 12, "feet")
  28258. },
  28259. {
  28260. name: "Stomp in the Suburbs",
  28261. height: math.unit(964 + 9.728 / 12, "feet")
  28262. },
  28263. {
  28264. name: "Sit on the City",
  28265. height: math.unit(61747 + 10.592 / 12, "feet")
  28266. },
  28267. {
  28268. name: "Glomp the Globe",
  28269. height: math.unit(252919327 + 4.832 / 12, "feet")
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28275. {
  28276. front: {
  28277. height: math.unit(6 + 4 / 12, "feet"),
  28278. weight: math.unit(320, "lb"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/balina-mahigan/front.svg",
  28282. extra: 447 / 428,
  28283. bottom: 18 / 466
  28284. }
  28285. },
  28286. back: {
  28287. height: math.unit(6 + 4 / 12, "feet"),
  28288. weight: math.unit(320, "lb"),
  28289. name: "Back",
  28290. image: {
  28291. source: "./media/characters/balina-mahigan/back.svg",
  28292. extra: 445 / 428,
  28293. bottom: 4.07 / 448
  28294. }
  28295. },
  28296. arm: {
  28297. height: math.unit(1.88, "feet"),
  28298. name: "Arm",
  28299. image: {
  28300. source: "./media/characters/balina-mahigan/arm.svg"
  28301. }
  28302. },
  28303. backPort: {
  28304. height: math.unit(0.685, "feet"),
  28305. name: "Back Port",
  28306. image: {
  28307. source: "./media/characters/balina-mahigan/back-port.svg"
  28308. }
  28309. },
  28310. hoofpaw: {
  28311. height: math.unit(1.41, "feet"),
  28312. name: "Hoofpaw",
  28313. image: {
  28314. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28315. }
  28316. },
  28317. leftHandBack: {
  28318. height: math.unit(0.938, "feet"),
  28319. name: "Left Hand (Back)",
  28320. image: {
  28321. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28322. }
  28323. },
  28324. leftHandFront: {
  28325. height: math.unit(0.938, "feet"),
  28326. name: "Left Hand (Front)",
  28327. image: {
  28328. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28329. }
  28330. },
  28331. rightHandBack: {
  28332. height: math.unit(0.95, "feet"),
  28333. name: "Right Hand (Back)",
  28334. image: {
  28335. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28336. }
  28337. },
  28338. rightHandFront: {
  28339. height: math.unit(0.95, "feet"),
  28340. name: "Right Hand (Front)",
  28341. image: {
  28342. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28343. }
  28344. },
  28345. },
  28346. [
  28347. {
  28348. name: "Normal",
  28349. height: math.unit(6 + 4 / 12, "feet"),
  28350. default: true
  28351. },
  28352. ]
  28353. ))
  28354. characterMakers.push(() => makeCharacter(
  28355. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28356. {
  28357. front: {
  28358. height: math.unit(6, "feet"),
  28359. weight: math.unit(320, "lb"),
  28360. name: "Front",
  28361. image: {
  28362. source: "./media/characters/balina-mejeri/front.svg",
  28363. extra: 517 / 488,
  28364. bottom: 44.2 / 561
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Normal",
  28371. height: math.unit(6 + 4 / 12, "feet")
  28372. },
  28373. {
  28374. name: "Business",
  28375. height: math.unit(155, "feet"),
  28376. default: true
  28377. },
  28378. ]
  28379. ))
  28380. characterMakers.push(() => makeCharacter(
  28381. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28382. {
  28383. kneeling: {
  28384. height: math.unit(6 + 4 / 12, "feet"),
  28385. weight: math.unit(300 * 20, "lb"),
  28386. name: "Kneeling",
  28387. image: {
  28388. source: "./media/characters/balbarian/kneeling.svg",
  28389. extra: 922 / 862,
  28390. bottom: 42.4 / 965
  28391. }
  28392. },
  28393. },
  28394. [
  28395. {
  28396. name: "Normal",
  28397. height: math.unit(6 + 4 / 12, "feet")
  28398. },
  28399. {
  28400. name: "Treasured",
  28401. height: math.unit(18 + 9 / 12, "feet"),
  28402. default: true
  28403. },
  28404. {
  28405. name: "Macro",
  28406. height: math.unit(900, "feet")
  28407. },
  28408. ]
  28409. ))
  28410. characterMakers.push(() => makeCharacter(
  28411. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28412. {
  28413. front: {
  28414. height: math.unit(6 + 4 / 12, "feet"),
  28415. weight: math.unit(325, "lb"),
  28416. name: "Front",
  28417. image: {
  28418. source: "./media/characters/balina-amarini/front.svg",
  28419. extra: 415 / 403,
  28420. bottom: 19 / 433.4
  28421. }
  28422. },
  28423. back: {
  28424. height: math.unit(6 + 4 / 12, "feet"),
  28425. weight: math.unit(325, "lb"),
  28426. name: "Back",
  28427. image: {
  28428. source: "./media/characters/balina-amarini/back.svg",
  28429. extra: 415 / 403,
  28430. bottom: 13.5 / 432
  28431. }
  28432. },
  28433. overdrive: {
  28434. height: math.unit(6 + 4 / 12, "feet"),
  28435. weight: math.unit(400, "lb"),
  28436. name: "Overdrive",
  28437. image: {
  28438. source: "./media/characters/balina-amarini/overdrive.svg",
  28439. extra: 269 / 259,
  28440. bottom: 12 / 282
  28441. }
  28442. },
  28443. },
  28444. [
  28445. {
  28446. name: "Boom",
  28447. height: math.unit(9 + 10 / 12, "feet"),
  28448. default: true
  28449. },
  28450. {
  28451. name: "Macro",
  28452. height: math.unit(280, "feet")
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28458. {
  28459. goddess: {
  28460. height: math.unit(600, "feet"),
  28461. weight: math.unit(2000000, "tons"),
  28462. name: "Goddess",
  28463. image: {
  28464. source: "./media/characters/lady-kubwa/goddess.svg",
  28465. extra: 1240.5 / 1223,
  28466. bottom: 22 / 1263
  28467. }
  28468. },
  28469. goddesser: {
  28470. height: math.unit(900, "feet"),
  28471. weight: math.unit(20000000, "lb"),
  28472. name: "Goddess-er",
  28473. image: {
  28474. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28475. extra: 899 / 888,
  28476. bottom: 12.6 / 912
  28477. }
  28478. },
  28479. },
  28480. [
  28481. {
  28482. name: "Macro",
  28483. height: math.unit(600, "feet"),
  28484. default: true
  28485. },
  28486. {
  28487. name: "Megamacro",
  28488. height: math.unit(250, "miles")
  28489. },
  28490. ]
  28491. ))
  28492. characterMakers.push(() => makeCharacter(
  28493. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28494. {
  28495. front: {
  28496. height: math.unit(7 + 7 / 12, "feet"),
  28497. weight: math.unit(250, "lb"),
  28498. name: "Front",
  28499. image: {
  28500. source: "./media/characters/tala-grovehorn/front.svg",
  28501. extra: 2636 / 2525,
  28502. bottom: 147 / 2781
  28503. }
  28504. },
  28505. back: {
  28506. height: math.unit(7 + 7 / 12, "feet"),
  28507. weight: math.unit(250, "lb"),
  28508. name: "Back",
  28509. image: {
  28510. source: "./media/characters/tala-grovehorn/back.svg",
  28511. extra: 2635 / 2539,
  28512. bottom: 100 / 2732.8
  28513. }
  28514. },
  28515. mouth: {
  28516. height: math.unit(1.15, "feet"),
  28517. name: "Mouth",
  28518. image: {
  28519. source: "./media/characters/tala-grovehorn/mouth.svg"
  28520. }
  28521. },
  28522. dick: {
  28523. height: math.unit(2.36, "feet"),
  28524. name: "Dick",
  28525. image: {
  28526. source: "./media/characters/tala-grovehorn/dick.svg"
  28527. }
  28528. },
  28529. slit: {
  28530. height: math.unit(0.61, "feet"),
  28531. name: "Slit",
  28532. image: {
  28533. source: "./media/characters/tala-grovehorn/slit.svg"
  28534. }
  28535. },
  28536. },
  28537. [
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28542. {
  28543. front: {
  28544. height: math.unit(7 + 7 / 12, "feet"),
  28545. weight: math.unit(225, "lb"),
  28546. name: "Front",
  28547. image: {
  28548. source: "./media/characters/epona/front.svg",
  28549. extra: 2445 / 2290,
  28550. bottom: 251 / 2696
  28551. }
  28552. },
  28553. back: {
  28554. height: math.unit(7 + 7 / 12, "feet"),
  28555. weight: math.unit(225, "lb"),
  28556. name: "Back",
  28557. image: {
  28558. source: "./media/characters/epona/back.svg",
  28559. extra: 2546 / 2408,
  28560. bottom: 44 / 2589
  28561. }
  28562. },
  28563. genitals: {
  28564. height: math.unit(1.5, "feet"),
  28565. name: "Genitals",
  28566. image: {
  28567. source: "./media/characters/epona/genitals.svg"
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Normal",
  28574. height: math.unit(7 + 7 / 12, "feet"),
  28575. default: true
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(7, "feet"),
  28584. weight: math.unit(518, "lb"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/avia-bloodbourn/front.svg",
  28588. extra: 1466 / 1350,
  28589. bottom: 65 / 1527
  28590. }
  28591. },
  28592. },
  28593. [
  28594. ]
  28595. ))
  28596. characterMakers.push(() => makeCharacter(
  28597. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28598. {
  28599. front: {
  28600. height: math.unit(9.35, "feet"),
  28601. weight: math.unit(600, "lb"),
  28602. name: "Front",
  28603. image: {
  28604. source: "./media/characters/amera/front.svg",
  28605. extra: 891 / 818,
  28606. bottom: 30 / 922.7
  28607. }
  28608. },
  28609. back: {
  28610. height: math.unit(9.35, "feet"),
  28611. weight: math.unit(600, "lb"),
  28612. name: "Back",
  28613. image: {
  28614. source: "./media/characters/amera/back.svg",
  28615. extra: 876 / 824,
  28616. bottom: 6.8 / 884
  28617. }
  28618. },
  28619. dick: {
  28620. height: math.unit(2.14, "feet"),
  28621. name: "Dick",
  28622. image: {
  28623. source: "./media/characters/amera/dick.svg"
  28624. }
  28625. },
  28626. },
  28627. [
  28628. {
  28629. name: "Normal",
  28630. height: math.unit(9.35, "feet"),
  28631. default: true
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28637. {
  28638. kneeling: {
  28639. height: math.unit(3 + 4 / 12, "feet"),
  28640. weight: math.unit(90, "lb"),
  28641. name: "Kneeling",
  28642. image: {
  28643. source: "./media/characters/rosewen/kneeling.svg",
  28644. extra: 1835 / 1571,
  28645. bottom: 27.7 / 1862
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Normal",
  28652. height: math.unit(3 + 4 / 12, "feet"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(5 + 10 / 12, "feet"),
  28662. weight: math.unit(200, "lb"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/sabah/front.svg",
  28666. extra: 849 / 763,
  28667. bottom: 33.9 / 881
  28668. }
  28669. },
  28670. },
  28671. [
  28672. {
  28673. name: "Normal",
  28674. height: math.unit(5 + 10 / 12, "feet"),
  28675. default: true
  28676. },
  28677. ]
  28678. ))
  28679. characterMakers.push(() => makeCharacter(
  28680. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28681. {
  28682. front: {
  28683. height: math.unit(3 + 5 / 12, "feet"),
  28684. weight: math.unit(40, "kg"),
  28685. name: "Front",
  28686. image: {
  28687. source: "./media/characters/purple-flame/front.svg",
  28688. extra: 1577 / 1412,
  28689. bottom: 97 / 1694
  28690. }
  28691. },
  28692. frontDressed: {
  28693. height: math.unit(3 + 5 / 12, "feet"),
  28694. weight: math.unit(40, "kg"),
  28695. name: "Front (Dressed)",
  28696. image: {
  28697. source: "./media/characters/purple-flame/front-dressed.svg",
  28698. extra: 1577 / 1412,
  28699. bottom: 97 / 1694
  28700. }
  28701. },
  28702. headphones: {
  28703. height: math.unit(0.85, "feet"),
  28704. name: "Headphones",
  28705. image: {
  28706. source: "./media/characters/purple-flame/headphones.svg"
  28707. }
  28708. },
  28709. },
  28710. [
  28711. {
  28712. name: "Really Small",
  28713. height: math.unit(5, "cm")
  28714. },
  28715. {
  28716. name: "Micro",
  28717. height: math.unit(1 + 5 / 12, "feet")
  28718. },
  28719. {
  28720. name: "Normal",
  28721. height: math.unit(3 + 5 / 12, "feet"),
  28722. default: true
  28723. },
  28724. {
  28725. name: "Minimacro",
  28726. height: math.unit(125, "feet")
  28727. },
  28728. {
  28729. name: "Macro",
  28730. height: math.unit(0.5, "miles")
  28731. },
  28732. {
  28733. name: "Megamacro",
  28734. height: math.unit(50, "miles")
  28735. },
  28736. {
  28737. name: "Gigantic",
  28738. height: math.unit(750, "miles")
  28739. },
  28740. {
  28741. name: "Planetary",
  28742. height: math.unit(15000, "miles")
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28748. {
  28749. front: {
  28750. height: math.unit(14, "feet"),
  28751. weight: math.unit(959, "lb"),
  28752. name: "Front",
  28753. image: {
  28754. source: "./media/characters/arsenal/front.svg",
  28755. extra: 2357 / 2157,
  28756. bottom: 93 / 2458
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Normal",
  28763. height: math.unit(14, "feet"),
  28764. default: true
  28765. },
  28766. ]
  28767. ))
  28768. characterMakers.push(() => makeCharacter(
  28769. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28770. {
  28771. front: {
  28772. height: math.unit(6, "feet"),
  28773. weight: math.unit(150, "lb"),
  28774. name: "Front",
  28775. image: {
  28776. source: "./media/characters/adira/front.svg",
  28777. extra: 1078 / 1029,
  28778. bottom: 87 / 1166
  28779. }
  28780. },
  28781. },
  28782. [
  28783. {
  28784. name: "Micro",
  28785. height: math.unit(4, "inches"),
  28786. default: true
  28787. },
  28788. {
  28789. name: "Macro",
  28790. height: math.unit(50, "feet")
  28791. },
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(16, "feet"),
  28799. weight: math.unit(1000, "lb"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/grim/front.svg",
  28803. extra: 622 / 614,
  28804. bottom: 18.1 / 642
  28805. }
  28806. },
  28807. back: {
  28808. height: math.unit(16, "feet"),
  28809. weight: math.unit(1000, "lb"),
  28810. name: "Back",
  28811. image: {
  28812. source: "./media/characters/grim/back.svg",
  28813. extra: 610.6 / 602,
  28814. bottom: 40.8 / 652
  28815. }
  28816. },
  28817. hunched: {
  28818. height: math.unit(9.75, "feet"),
  28819. weight: math.unit(1000, "lb"),
  28820. name: "Hunched",
  28821. image: {
  28822. source: "./media/characters/grim/hunched.svg",
  28823. extra: 304 / 297,
  28824. bottom: 35.4 / 394
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(16, "feet"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(2.3, "meters"),
  28841. weight: math.unit(300, "lb"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/sinja/front-sfw.svg",
  28845. extra: 1393 / 1294,
  28846. bottom: 70 / 1463
  28847. }
  28848. },
  28849. frontNsfw: {
  28850. height: math.unit(2.3, "meters"),
  28851. weight: math.unit(300, "lb"),
  28852. name: "Front (NSFW)",
  28853. image: {
  28854. source: "./media/characters/sinja/front-nsfw.svg",
  28855. extra: 1393 / 1294,
  28856. bottom: 70 / 1463
  28857. }
  28858. },
  28859. back: {
  28860. height: math.unit(2.3, "meters"),
  28861. weight: math.unit(300, "lb"),
  28862. name: "Back",
  28863. image: {
  28864. source: "./media/characters/sinja/back.svg",
  28865. extra: 1393 / 1294,
  28866. bottom: 70 / 1463
  28867. }
  28868. },
  28869. head: {
  28870. height: math.unit(1.771, "feet"),
  28871. name: "Head",
  28872. image: {
  28873. source: "./media/characters/sinja/head.svg"
  28874. }
  28875. },
  28876. slit: {
  28877. height: math.unit(0.8, "feet"),
  28878. name: "Slit",
  28879. image: {
  28880. source: "./media/characters/sinja/slit.svg"
  28881. }
  28882. },
  28883. },
  28884. [
  28885. {
  28886. name: "Normal",
  28887. height: math.unit(2.3, "meters")
  28888. },
  28889. {
  28890. name: "Macro",
  28891. height: math.unit(91, "meters"),
  28892. default: true
  28893. },
  28894. {
  28895. name: "Megamacro",
  28896. height: math.unit(91440, "meters")
  28897. },
  28898. {
  28899. name: "Gigamacro",
  28900. height: math.unit(60960000, "meters")
  28901. },
  28902. {
  28903. name: "Teramacro",
  28904. height: math.unit(9144000000, "meters")
  28905. },
  28906. ]
  28907. ))
  28908. characterMakers.push(() => makeCharacter(
  28909. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28910. {
  28911. front: {
  28912. height: math.unit(1.7, "meters"),
  28913. weight: math.unit(130, "lb"),
  28914. name: "Front",
  28915. image: {
  28916. source: "./media/characters/kyu/front.svg",
  28917. extra: 415 / 395,
  28918. bottom: 5 / 420
  28919. }
  28920. },
  28921. head: {
  28922. height: math.unit(1.75, "feet"),
  28923. name: "Head",
  28924. image: {
  28925. source: "./media/characters/kyu/head.svg"
  28926. }
  28927. },
  28928. foot: {
  28929. height: math.unit(0.81, "feet"),
  28930. name: "Foot",
  28931. image: {
  28932. source: "./media/characters/kyu/foot.svg"
  28933. }
  28934. },
  28935. },
  28936. [
  28937. {
  28938. name: "Normal",
  28939. height: math.unit(1.7, "meters")
  28940. },
  28941. {
  28942. name: "Macro",
  28943. height: math.unit(131, "feet"),
  28944. default: true
  28945. },
  28946. {
  28947. name: "Megamacro",
  28948. height: math.unit(91440, "meters")
  28949. },
  28950. {
  28951. name: "Gigamacro",
  28952. height: math.unit(60960000, "meters")
  28953. },
  28954. {
  28955. name: "Teramacro",
  28956. height: math.unit(9144000000, "meters")
  28957. },
  28958. ]
  28959. ))
  28960. characterMakers.push(() => makeCharacter(
  28961. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28962. {
  28963. front: {
  28964. height: math.unit(7 + 1 / 12, "feet"),
  28965. weight: math.unit(250, "lb"),
  28966. name: "Front",
  28967. image: {
  28968. source: "./media/characters/joey/front.svg",
  28969. extra: 1791 / 1537,
  28970. bottom: 28 / 1816
  28971. }
  28972. },
  28973. },
  28974. [
  28975. {
  28976. name: "Micro",
  28977. height: math.unit(3, "inches")
  28978. },
  28979. {
  28980. name: "Normal",
  28981. height: math.unit(7 + 1 / 12, "feet"),
  28982. default: true
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(165, "cm"),
  28991. weight: math.unit(140, "lb"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/sam-evans/front.svg",
  28995. extra: 3417 / 3230,
  28996. bottom: 41.3 / 3417
  28997. }
  28998. },
  28999. frontSixTails: {
  29000. height: math.unit(165, "cm"),
  29001. weight: math.unit(140, "lb"),
  29002. name: "Front-six-tails",
  29003. image: {
  29004. source: "./media/characters/sam-evans/front-six-tails.svg",
  29005. extra: 3417 / 3230,
  29006. bottom: 41.3 / 3417
  29007. }
  29008. },
  29009. back: {
  29010. height: math.unit(165, "cm"),
  29011. weight: math.unit(140, "lb"),
  29012. name: "Back",
  29013. image: {
  29014. source: "./media/characters/sam-evans/back.svg",
  29015. extra: 3227 / 3032,
  29016. bottom: 6.8 / 3234
  29017. }
  29018. },
  29019. face: {
  29020. height: math.unit(0.68, "feet"),
  29021. name: "Face",
  29022. image: {
  29023. source: "./media/characters/sam-evans/face.svg"
  29024. }
  29025. },
  29026. },
  29027. [
  29028. {
  29029. name: "Normal",
  29030. height: math.unit(165, "cm"),
  29031. default: true
  29032. },
  29033. {
  29034. name: "Macro",
  29035. height: math.unit(100, "meters")
  29036. },
  29037. {
  29038. name: "Macro+",
  29039. height: math.unit(800, "meters")
  29040. },
  29041. {
  29042. name: "Macro++",
  29043. height: math.unit(3, "km")
  29044. },
  29045. {
  29046. name: "Macro+++",
  29047. height: math.unit(30, "km")
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(10, "feet"),
  29056. weight: math.unit(750, "lb"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/juliet-a/front.svg",
  29060. extra: 1766 / 1720,
  29061. bottom: 43 / 1809
  29062. }
  29063. },
  29064. back: {
  29065. height: math.unit(10, "feet"),
  29066. weight: math.unit(750, "lb"),
  29067. name: "Back",
  29068. image: {
  29069. source: "./media/characters/juliet-a/back.svg",
  29070. extra: 1781 / 1734,
  29071. bottom: 35 / 1810,
  29072. }
  29073. },
  29074. },
  29075. [
  29076. {
  29077. name: "Normal",
  29078. height: math.unit(10, "feet"),
  29079. default: true
  29080. },
  29081. {
  29082. name: "Dragon Form",
  29083. height: math.unit(250, "feet")
  29084. },
  29085. {
  29086. name: "Macro",
  29087. height: math.unit(1000, "feet")
  29088. },
  29089. {
  29090. name: "Megamacro",
  29091. height: math.unit(10000, "feet")
  29092. }
  29093. ]
  29094. ))
  29095. characterMakers.push(() => makeCharacter(
  29096. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29097. {
  29098. regular: {
  29099. height: math.unit(7 + 3 / 12, "feet"),
  29100. weight: math.unit(260, "lb"),
  29101. name: "Regular",
  29102. image: {
  29103. source: "./media/characters/wild/regular.svg",
  29104. extra: 97.45 / 92,
  29105. bottom: 6.8 / 104.3
  29106. }
  29107. },
  29108. biggums: {
  29109. height: math.unit(8 + 6 / 12, "feet"),
  29110. weight: math.unit(425, "lb"),
  29111. name: "Biggums",
  29112. image: {
  29113. source: "./media/characters/wild/biggums.svg",
  29114. extra: 97.45 / 92,
  29115. bottom: 7.5 / 132.34
  29116. }
  29117. },
  29118. mawRegular: {
  29119. height: math.unit(1.24, "feet"),
  29120. name: "Maw (Regular)",
  29121. image: {
  29122. source: "./media/characters/wild/maw.svg"
  29123. }
  29124. },
  29125. mawBiggums: {
  29126. height: math.unit(1.47, "feet"),
  29127. name: "Maw (Biggums)",
  29128. image: {
  29129. source: "./media/characters/wild/maw.svg"
  29130. }
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Normal",
  29136. height: math.unit(7 + 3 / 12, "feet"),
  29137. default: true
  29138. },
  29139. ]
  29140. ))
  29141. characterMakers.push(() => makeCharacter(
  29142. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29143. {
  29144. front: {
  29145. height: math.unit(2.5, "meters"),
  29146. weight: math.unit(200, "kg"),
  29147. name: "Front",
  29148. image: {
  29149. source: "./media/characters/vidar/front.svg",
  29150. extra: 2994 / 2795,
  29151. bottom: 56 / 3061
  29152. }
  29153. },
  29154. back: {
  29155. height: math.unit(2.5, "meters"),
  29156. weight: math.unit(200, "kg"),
  29157. name: "Back",
  29158. image: {
  29159. source: "./media/characters/vidar/back.svg",
  29160. extra: 3131 / 2928,
  29161. bottom: 13.5 / 3141.5
  29162. }
  29163. },
  29164. feral: {
  29165. height: math.unit(2.5, "meters"),
  29166. weight: math.unit(2000, "kg"),
  29167. name: "Feral",
  29168. image: {
  29169. source: "./media/characters/vidar/feral.svg",
  29170. extra: 2790 / 1765,
  29171. bottom: 6 / 2796
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Normal",
  29178. height: math.unit(2.5, "meters"),
  29179. default: true
  29180. },
  29181. {
  29182. name: "Macro",
  29183. height: math.unit(100, "meters")
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(5 + 9 / 12, "feet"),
  29192. weight: math.unit(120, "lb"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/ash/front.svg",
  29196. extra: 2189 / 1961,
  29197. bottom: 5.2 / 2194
  29198. }
  29199. },
  29200. },
  29201. [
  29202. {
  29203. name: "Normal",
  29204. height: math.unit(5 + 9 / 12, "feet"),
  29205. default: true
  29206. },
  29207. ]
  29208. ))
  29209. characterMakers.push(() => makeCharacter(
  29210. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29211. {
  29212. front: {
  29213. height: math.unit(9, "feet"),
  29214. weight: math.unit(10000, "lb"),
  29215. name: "Front",
  29216. image: {
  29217. source: "./media/characters/gygabite/front.svg",
  29218. bottom: 31.7 / 537.8,
  29219. extra: 505 / 370
  29220. }
  29221. },
  29222. },
  29223. [
  29224. {
  29225. name: "Normal",
  29226. height: math.unit(9, "feet"),
  29227. default: true
  29228. },
  29229. ]
  29230. ))
  29231. characterMakers.push(() => makeCharacter(
  29232. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29233. {
  29234. front: {
  29235. height: math.unit(12, "feet"),
  29236. weight: math.unit(4000, "lb"),
  29237. name: "Front",
  29238. image: {
  29239. source: "./media/characters/p0tat0/front.svg",
  29240. extra: 1065 / 921,
  29241. bottom: 55.7 / 1121.25
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(12, "feet"),
  29249. default: true
  29250. },
  29251. ]
  29252. ))
  29253. characterMakers.push(() => makeCharacter(
  29254. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29255. {
  29256. side: {
  29257. height: math.unit(6.5, "feet"),
  29258. weight: math.unit(800, "lb"),
  29259. name: "Side",
  29260. image: {
  29261. source: "./media/characters/dusk/side.svg",
  29262. extra: 615 / 373,
  29263. bottom: 53 / 664
  29264. }
  29265. },
  29266. sitting: {
  29267. height: math.unit(7, "feet"),
  29268. weight: math.unit(800, "lb"),
  29269. name: "Sitting",
  29270. image: {
  29271. source: "./media/characters/dusk/sitting.svg",
  29272. extra: 753 / 425,
  29273. bottom: 33 / 774
  29274. }
  29275. },
  29276. head: {
  29277. height: math.unit(6.1, "feet"),
  29278. name: "Head",
  29279. image: {
  29280. source: "./media/characters/dusk/head.svg"
  29281. }
  29282. },
  29283. },
  29284. [
  29285. {
  29286. name: "Normal",
  29287. height: math.unit(7, "feet"),
  29288. default: true
  29289. },
  29290. ]
  29291. ))
  29292. characterMakers.push(() => makeCharacter(
  29293. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29294. {
  29295. front: {
  29296. height: math.unit(15, "feet"),
  29297. weight: math.unit(7000, "lb"),
  29298. name: "Front",
  29299. image: {
  29300. source: "./media/characters/jay-direwolf/front.svg",
  29301. extra: 1810 / 1732,
  29302. bottom: 66 / 1892
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(15, "feet"),
  29310. default: true
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29316. {
  29317. front: {
  29318. height: math.unit(4 + 9 / 12, "feet"),
  29319. weight: math.unit(130, "lb"),
  29320. name: "Front",
  29321. image: {
  29322. source: "./media/characters/anchovie/front.svg",
  29323. extra: 382 / 350,
  29324. bottom: 25 / 409
  29325. }
  29326. },
  29327. back: {
  29328. height: math.unit(4 + 9 / 12, "feet"),
  29329. weight: math.unit(130, "lb"),
  29330. name: "Back",
  29331. image: {
  29332. source: "./media/characters/anchovie/back.svg",
  29333. extra: 385 / 352,
  29334. bottom: 16.6 / 402
  29335. }
  29336. },
  29337. frontDressed: {
  29338. height: math.unit(4 + 9 / 12, "feet"),
  29339. weight: math.unit(130, "lb"),
  29340. name: "Front (Dressed)",
  29341. image: {
  29342. source: "./media/characters/anchovie/front-dressed.svg",
  29343. extra: 382 / 350,
  29344. bottom: 25 / 409
  29345. }
  29346. },
  29347. backDressed: {
  29348. height: math.unit(4 + 9 / 12, "feet"),
  29349. weight: math.unit(130, "lb"),
  29350. name: "Back (Dressed)",
  29351. image: {
  29352. source: "./media/characters/anchovie/back-dressed.svg",
  29353. extra: 385 / 352,
  29354. bottom: 16.6 / 402
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Micro",
  29361. height: math.unit(6.4, "inches")
  29362. },
  29363. {
  29364. name: "Normal",
  29365. height: math.unit(4 + 9 / 12, "feet"),
  29366. default: true
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29372. {
  29373. front: {
  29374. height: math.unit(2, "meters"),
  29375. weight: math.unit(180, "lb"),
  29376. name: "Front",
  29377. image: {
  29378. source: "./media/characters/acidrenamon/front.svg",
  29379. extra: 987 / 890,
  29380. bottom: 22.8 / 1009
  29381. }
  29382. },
  29383. back: {
  29384. height: math.unit(2, "meters"),
  29385. weight: math.unit(180, "lb"),
  29386. name: "Back",
  29387. image: {
  29388. source: "./media/characters/acidrenamon/back.svg",
  29389. extra: 983 / 891,
  29390. bottom: 8.4 / 992
  29391. }
  29392. },
  29393. head: {
  29394. height: math.unit(1.92, "feet"),
  29395. name: "Head",
  29396. image: {
  29397. source: "./media/characters/acidrenamon/head.svg"
  29398. }
  29399. },
  29400. rump: {
  29401. height: math.unit(1.72, "feet"),
  29402. name: "Rump",
  29403. image: {
  29404. source: "./media/characters/acidrenamon/rump.svg"
  29405. }
  29406. },
  29407. tail: {
  29408. height: math.unit(4.2, "feet"),
  29409. name: "Tail",
  29410. image: {
  29411. source: "./media/characters/acidrenamon/tail.svg"
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Normal",
  29418. height: math.unit(2, "meters"),
  29419. default: true
  29420. },
  29421. {
  29422. name: "Minimacro",
  29423. height: math.unit(7, "meters")
  29424. },
  29425. {
  29426. name: "Macro",
  29427. height: math.unit(200, "meters")
  29428. },
  29429. {
  29430. name: "Gigamacro",
  29431. height: math.unit(0.2, "earths")
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(152, "feet"),
  29440. name: "Front",
  29441. image: {
  29442. source: "./media/characters/kenzie-lee/front.svg",
  29443. extra: 1869/1774,
  29444. bottom: 128/1997
  29445. }
  29446. },
  29447. side: {
  29448. height: math.unit(86, "feet"),
  29449. name: "Side",
  29450. image: {
  29451. source: "./media/characters/kenzie-lee/side.svg",
  29452. extra: 930/815,
  29453. bottom: 177/1107
  29454. }
  29455. },
  29456. paw: {
  29457. height: math.unit(15, "feet"),
  29458. name: "Paw",
  29459. image: {
  29460. source: "./media/characters/kenzie-lee/paw.svg"
  29461. }
  29462. },
  29463. },
  29464. [
  29465. {
  29466. name: "Kenzie Flea",
  29467. height: math.unit(2, "mm"),
  29468. default: true
  29469. },
  29470. {
  29471. name: "Micro",
  29472. height: math.unit(2, "inches")
  29473. },
  29474. {
  29475. name: "Normal",
  29476. height: math.unit(152, "feet")
  29477. },
  29478. {
  29479. name: "Megamacro",
  29480. height: math.unit(7, "miles")
  29481. },
  29482. {
  29483. name: "Gigamacro",
  29484. height: math.unit(8000, "miles")
  29485. },
  29486. ]
  29487. ))
  29488. characterMakers.push(() => makeCharacter(
  29489. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29490. {
  29491. front: {
  29492. height: math.unit(6, "feet"),
  29493. name: "Front",
  29494. image: {
  29495. source: "./media/characters/withers/front.svg",
  29496. extra: 1935/1760,
  29497. bottom: 72/2007
  29498. }
  29499. },
  29500. back: {
  29501. height: math.unit(6, "feet"),
  29502. name: "Back",
  29503. image: {
  29504. source: "./media/characters/withers/back.svg",
  29505. extra: 1944/1792,
  29506. bottom: 12/1956
  29507. }
  29508. },
  29509. dressed: {
  29510. height: math.unit(6, "feet"),
  29511. name: "Dressed",
  29512. image: {
  29513. source: "./media/characters/withers/dressed.svg",
  29514. extra: 1937/1765,
  29515. bottom: 73/2010
  29516. }
  29517. },
  29518. phase1: {
  29519. height: math.unit(1.1, "feet"),
  29520. name: "Phase 1",
  29521. image: {
  29522. source: "./media/characters/withers/phase-1.svg",
  29523. extra: 1885/1232,
  29524. bottom: 0/1885
  29525. }
  29526. },
  29527. phase2: {
  29528. height: math.unit(1.05, "feet"),
  29529. name: "Phase 2",
  29530. image: {
  29531. source: "./media/characters/withers/phase-2.svg",
  29532. extra: 1792/1090,
  29533. bottom: 0/1792
  29534. }
  29535. },
  29536. partyWipe: {
  29537. height: math.unit(1.1, "feet"),
  29538. name: "Party Wipe",
  29539. image: {
  29540. source: "./media/characters/withers/party-wipe.svg",
  29541. extra: 1864/1207,
  29542. bottom: 0/1864
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Macro",
  29549. height: math.unit(167, "feet"),
  29550. default: true
  29551. },
  29552. {
  29553. name: "Megamacro",
  29554. height: math.unit(15, "miles")
  29555. }
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(6 + 7 / 12, "feet"),
  29563. weight: math.unit(250, "lb"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/nemoskii/front.svg",
  29567. extra: 2270 / 1734,
  29568. bottom: 86 / 2354
  29569. }
  29570. },
  29571. back: {
  29572. height: math.unit(6 + 7 / 12, "feet"),
  29573. weight: math.unit(250, "lb"),
  29574. name: "Back",
  29575. image: {
  29576. source: "./media/characters/nemoskii/back.svg",
  29577. extra: 1845 / 1788,
  29578. bottom: 10.5 / 1852
  29579. }
  29580. },
  29581. head: {
  29582. height: math.unit(1.31, "feet"),
  29583. name: "Head",
  29584. image: {
  29585. source: "./media/characters/nemoskii/head.svg"
  29586. }
  29587. },
  29588. },
  29589. [
  29590. {
  29591. name: "Micro",
  29592. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29593. },
  29594. {
  29595. name: "Normal",
  29596. height: math.unit(6 + 7 / 12, "feet"),
  29597. default: true
  29598. },
  29599. {
  29600. name: "Macro",
  29601. height: math.unit((6 + 7 / 12) * 150, "feet")
  29602. },
  29603. {
  29604. name: "Macro+",
  29605. height: math.unit((6 + 7 / 12) * 500, "feet")
  29606. },
  29607. {
  29608. name: "Megamacro",
  29609. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29610. },
  29611. ]
  29612. ))
  29613. characterMakers.push(() => makeCharacter(
  29614. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29615. {
  29616. front: {
  29617. height: math.unit(1, "mile"),
  29618. weight: math.unit(265261.9, "lb"),
  29619. name: "Front",
  29620. image: {
  29621. source: "./media/characters/shui/front.svg",
  29622. extra: 1633 / 1564,
  29623. bottom: 91.5 / 1726
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Macro",
  29630. height: math.unit(1, "mile"),
  29631. default: true
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(12 + 6 / 12, "feet"),
  29640. weight: math.unit(1342, "lb"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/arokh-takakura/front.svg",
  29644. extra: 1089 / 1043,
  29645. bottom: 77.4 / 1176.7
  29646. }
  29647. },
  29648. back: {
  29649. height: math.unit(12 + 6 / 12, "feet"),
  29650. weight: math.unit(1342, "lb"),
  29651. name: "Back",
  29652. image: {
  29653. source: "./media/characters/arokh-takakura/back.svg",
  29654. extra: 1046 / 1019,
  29655. bottom: 102 / 1150
  29656. }
  29657. },
  29658. },
  29659. [
  29660. {
  29661. name: "Big",
  29662. height: math.unit(12 + 6 / 12, "feet"),
  29663. default: true
  29664. },
  29665. ]
  29666. ))
  29667. characterMakers.push(() => makeCharacter(
  29668. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29669. {
  29670. front: {
  29671. height: math.unit(5 + 6 / 12, "feet"),
  29672. weight: math.unit(150, "lb"),
  29673. name: "Front",
  29674. image: {
  29675. source: "./media/characters/theo/front.svg",
  29676. extra: 1184 / 1131,
  29677. bottom: 7.4 / 1191
  29678. }
  29679. },
  29680. },
  29681. [
  29682. {
  29683. name: "Micro",
  29684. height: math.unit(5, "inches")
  29685. },
  29686. {
  29687. name: "Normal",
  29688. height: math.unit(5 + 6 / 12, "feet"),
  29689. default: true
  29690. },
  29691. ]
  29692. ))
  29693. characterMakers.push(() => makeCharacter(
  29694. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29695. {
  29696. front: {
  29697. height: math.unit(5 + 9 / 12, "feet"),
  29698. weight: math.unit(130, "lb"),
  29699. name: "Front",
  29700. image: {
  29701. source: "./media/characters/cecelia-swift/front.svg",
  29702. extra: 502 / 484,
  29703. bottom: 23 / 523
  29704. }
  29705. },
  29706. back: {
  29707. height: math.unit(5 + 9 / 12, "feet"),
  29708. weight: math.unit(130, "lb"),
  29709. name: "Back",
  29710. image: {
  29711. source: "./media/characters/cecelia-swift/back.svg",
  29712. extra: 499 / 485,
  29713. bottom: 12 / 511
  29714. }
  29715. },
  29716. head: {
  29717. height: math.unit(0.90, "feet"),
  29718. name: "Head",
  29719. image: {
  29720. source: "./media/characters/cecelia-swift/head.svg"
  29721. }
  29722. },
  29723. rump: {
  29724. height: math.unit(1.75, "feet"),
  29725. name: "Rump",
  29726. image: {
  29727. source: "./media/characters/cecelia-swift/rump.svg"
  29728. }
  29729. },
  29730. },
  29731. [
  29732. {
  29733. name: "Normal",
  29734. height: math.unit(5 + 9 / 12, "feet"),
  29735. default: true
  29736. },
  29737. {
  29738. name: "Big",
  29739. height: math.unit(50, "feet")
  29740. },
  29741. {
  29742. name: "Macro",
  29743. height: math.unit(100, "feet")
  29744. },
  29745. {
  29746. name: "Macro+",
  29747. height: math.unit(500, "feet")
  29748. },
  29749. {
  29750. name: "Macro++",
  29751. height: math.unit(1000, "feet")
  29752. },
  29753. ]
  29754. ))
  29755. characterMakers.push(() => makeCharacter(
  29756. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29757. {
  29758. front: {
  29759. height: math.unit(6, "feet"),
  29760. weight: math.unit(150, "lb"),
  29761. name: "Front",
  29762. image: {
  29763. source: "./media/characters/kaunan/front.svg",
  29764. extra: 2890 / 2523,
  29765. bottom: 49 / 2939
  29766. }
  29767. },
  29768. },
  29769. [
  29770. {
  29771. name: "Macro",
  29772. height: math.unit(150, "feet"),
  29773. default: true
  29774. },
  29775. ]
  29776. ))
  29777. characterMakers.push(() => makeCharacter(
  29778. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29779. {
  29780. dressed: {
  29781. height: math.unit(175, "cm"),
  29782. weight: math.unit(60, "kg"),
  29783. name: "Dressed",
  29784. image: {
  29785. source: "./media/characters/fei/dressed.svg",
  29786. extra: 1402/1278,
  29787. bottom: 27/1429
  29788. }
  29789. },
  29790. nude: {
  29791. height: math.unit(175, "cm"),
  29792. weight: math.unit(60, "kg"),
  29793. name: "Nude",
  29794. image: {
  29795. source: "./media/characters/fei/nude.svg",
  29796. extra: 1402/1278,
  29797. bottom: 27/1429
  29798. }
  29799. },
  29800. heels: {
  29801. height: math.unit(0.466, "feet"),
  29802. name: "Heels",
  29803. image: {
  29804. source: "./media/characters/fei/heels.svg",
  29805. extra: 156/152,
  29806. bottom: 28/184
  29807. }
  29808. },
  29809. },
  29810. [
  29811. {
  29812. name: "Mortal",
  29813. height: math.unit(175, "cm")
  29814. },
  29815. {
  29816. name: "Normal",
  29817. height: math.unit(3500, "m")
  29818. },
  29819. {
  29820. name: "Stroll",
  29821. height: math.unit(18.4, "km"),
  29822. default: true
  29823. },
  29824. {
  29825. name: "Showoff",
  29826. height: math.unit(175, "km")
  29827. },
  29828. ]
  29829. ))
  29830. characterMakers.push(() => makeCharacter(
  29831. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29832. {
  29833. front: {
  29834. height: math.unit(7, "feet"),
  29835. weight: math.unit(1000, "kg"),
  29836. name: "Front",
  29837. image: {
  29838. source: "./media/characters/edrax/front.svg",
  29839. extra: 2838 / 2550,
  29840. bottom: 130 / 2968
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Small",
  29847. height: math.unit(7, "feet")
  29848. },
  29849. {
  29850. name: "Normal",
  29851. height: math.unit(1500, "meters")
  29852. },
  29853. {
  29854. name: "Mega",
  29855. height: math.unit(12000000, "km"),
  29856. default: true
  29857. },
  29858. {
  29859. name: "Megamacro",
  29860. height: math.unit(10600000, "lightyears")
  29861. },
  29862. {
  29863. name: "Hypermacro",
  29864. height: math.unit(256, "yottameters")
  29865. },
  29866. ]
  29867. ))
  29868. characterMakers.push(() => makeCharacter(
  29869. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29870. {
  29871. front: {
  29872. height: math.unit(10, "feet"),
  29873. weight: math.unit(750, "lb"),
  29874. name: "Front",
  29875. image: {
  29876. source: "./media/characters/clove/front.svg",
  29877. extra: 1918/1751,
  29878. bottom: 52/1970
  29879. }
  29880. },
  29881. back: {
  29882. height: math.unit(10, "feet"),
  29883. weight: math.unit(750, "lb"),
  29884. name: "Back",
  29885. image: {
  29886. source: "./media/characters/clove/back.svg",
  29887. extra: 1912/1747,
  29888. bottom: 50/1962
  29889. }
  29890. },
  29891. },
  29892. [
  29893. {
  29894. name: "Normal",
  29895. height: math.unit(10, "feet"),
  29896. default: true
  29897. },
  29898. ]
  29899. ))
  29900. characterMakers.push(() => makeCharacter(
  29901. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29902. {
  29903. front: {
  29904. height: math.unit(4, "feet"),
  29905. weight: math.unit(50, "lb"),
  29906. name: "Front",
  29907. image: {
  29908. source: "./media/characters/alex-rabbit/front.svg",
  29909. extra: 507 / 458,
  29910. bottom: 18.5 / 527
  29911. }
  29912. },
  29913. back: {
  29914. height: math.unit(4, "feet"),
  29915. weight: math.unit(50, "lb"),
  29916. name: "Back",
  29917. image: {
  29918. source: "./media/characters/alex-rabbit/back.svg",
  29919. extra: 502 / 460,
  29920. bottom: 18.9 / 521
  29921. }
  29922. },
  29923. },
  29924. [
  29925. {
  29926. name: "Normal",
  29927. height: math.unit(4, "feet"),
  29928. default: true
  29929. },
  29930. ]
  29931. ))
  29932. characterMakers.push(() => makeCharacter(
  29933. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29934. {
  29935. front: {
  29936. height: math.unit(1 + 3 / 12, "feet"),
  29937. weight: math.unit(80, "lb"),
  29938. name: "Front",
  29939. image: {
  29940. source: "./media/characters/zander-rose/front.svg",
  29941. extra: 916 / 797,
  29942. bottom: 17 / 933
  29943. }
  29944. },
  29945. back: {
  29946. height: math.unit(1 + 3 / 12, "feet"),
  29947. weight: math.unit(80, "lb"),
  29948. name: "Back",
  29949. image: {
  29950. source: "./media/characters/zander-rose/back.svg",
  29951. extra: 903 / 779,
  29952. bottom: 31 / 934
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Normal",
  29959. height: math.unit(1 + 3 / 12, "feet"),
  29960. default: true
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29966. {
  29967. anthro: {
  29968. height: math.unit(6, "feet"),
  29969. weight: math.unit(150, "lb"),
  29970. name: "Anthro",
  29971. image: {
  29972. source: "./media/characters/razz/anthro.svg",
  29973. extra: 1437 / 1343,
  29974. bottom: 48 / 1485
  29975. }
  29976. },
  29977. feral: {
  29978. height: math.unit(6, "feet"),
  29979. weight: math.unit(150, "lb"),
  29980. name: "Feral",
  29981. image: {
  29982. source: "./media/characters/razz/feral.svg",
  29983. extra: 2569 / 1385,
  29984. bottom: 95 / 2664
  29985. }
  29986. },
  29987. },
  29988. [
  29989. {
  29990. name: "Normal",
  29991. height: math.unit(6, "feet"),
  29992. default: true
  29993. },
  29994. ]
  29995. ))
  29996. characterMakers.push(() => makeCharacter(
  29997. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29998. {
  29999. front: {
  30000. height: math.unit(9 + 4 / 12, "feet"),
  30001. weight: math.unit(500, "lb"),
  30002. name: "Front",
  30003. image: {
  30004. source: "./media/characters/morrigan/front.svg",
  30005. extra: 2707 / 2579,
  30006. bottom: 156 / 2863
  30007. }
  30008. },
  30009. },
  30010. [
  30011. {
  30012. name: "Normal",
  30013. height: math.unit(9 + 4 / 12, "feet"),
  30014. default: true
  30015. },
  30016. ]
  30017. ))
  30018. characterMakers.push(() => makeCharacter(
  30019. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30020. {
  30021. front: {
  30022. height: math.unit(5, "stories"),
  30023. weight: math.unit(4000, "lb"),
  30024. name: "Front",
  30025. image: {
  30026. source: "./media/characters/jenene/front.svg",
  30027. extra: 1780 / 1710,
  30028. bottom: 57 / 1837
  30029. }
  30030. },
  30031. },
  30032. [
  30033. {
  30034. name: "Normal",
  30035. height: math.unit(5, "stories"),
  30036. default: true
  30037. },
  30038. ]
  30039. ))
  30040. characterMakers.push(() => makeCharacter(
  30041. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30042. {
  30043. taurSfw: {
  30044. height: math.unit(10, "meters"),
  30045. weight: math.unit(17500, "kg"),
  30046. name: "Taur",
  30047. image: {
  30048. source: "./media/characters/faey/taur-sfw.svg",
  30049. extra: 1200 / 968,
  30050. bottom: 41 / 1241
  30051. }
  30052. },
  30053. chestmaw: {
  30054. height: math.unit(2.01, "meters"),
  30055. name: "Chestmaw",
  30056. image: {
  30057. source: "./media/characters/faey/chestmaw.svg"
  30058. }
  30059. },
  30060. foot: {
  30061. height: math.unit(2.43, "meters"),
  30062. name: "Foot",
  30063. image: {
  30064. source: "./media/characters/faey/foot.svg"
  30065. }
  30066. },
  30067. jaws: {
  30068. height: math.unit(1.66, "meters"),
  30069. name: "Jaws",
  30070. image: {
  30071. source: "./media/characters/faey/jaws.svg"
  30072. }
  30073. },
  30074. tongues: {
  30075. height: math.unit(2.01, "meters"),
  30076. name: "Tongues",
  30077. image: {
  30078. source: "./media/characters/faey/tongues.svg"
  30079. }
  30080. },
  30081. },
  30082. [
  30083. {
  30084. name: "Small",
  30085. height: math.unit(10, "meters"),
  30086. default: true
  30087. },
  30088. {
  30089. name: "Big",
  30090. height: math.unit(500000, "km")
  30091. },
  30092. ]
  30093. ))
  30094. characterMakers.push(() => makeCharacter(
  30095. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30096. {
  30097. front: {
  30098. height: math.unit(7, "feet"),
  30099. weight: math.unit(275, "lb"),
  30100. name: "Front",
  30101. image: {
  30102. source: "./media/characters/roku/front.svg",
  30103. extra: 903 / 878,
  30104. bottom: 37 / 940
  30105. }
  30106. },
  30107. },
  30108. [
  30109. {
  30110. name: "Normal",
  30111. height: math.unit(7, "feet"),
  30112. default: true
  30113. },
  30114. {
  30115. name: "Macro",
  30116. height: math.unit(500, "feet")
  30117. },
  30118. {
  30119. name: "Megamacro",
  30120. height: math.unit(200, "miles")
  30121. },
  30122. ]
  30123. ))
  30124. characterMakers.push(() => makeCharacter(
  30125. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30126. {
  30127. front: {
  30128. height: math.unit(6 + 2 / 12, "feet"),
  30129. weight: math.unit(150, "lb"),
  30130. name: "Front",
  30131. image: {
  30132. source: "./media/characters/lira/front.svg",
  30133. extra: 1727 / 1605,
  30134. bottom: 26 / 1753
  30135. }
  30136. },
  30137. back: {
  30138. height: math.unit(6 + 2 / 12, "feet"),
  30139. weight: math.unit(150, "lb"),
  30140. name: "Back",
  30141. image: {
  30142. source: "./media/characters/lira/back.svg",
  30143. extra: 1713/1621,
  30144. bottom: 20/1733
  30145. }
  30146. },
  30147. hand: {
  30148. height: math.unit(0.75, "feet"),
  30149. name: "Hand",
  30150. image: {
  30151. source: "./media/characters/lira/hand.svg"
  30152. }
  30153. },
  30154. maw: {
  30155. height: math.unit(0.65, "feet"),
  30156. name: "Maw",
  30157. image: {
  30158. source: "./media/characters/lira/maw.svg"
  30159. }
  30160. },
  30161. pawDigi: {
  30162. height: math.unit(1.6, "feet"),
  30163. name: "Paw Digi",
  30164. image: {
  30165. source: "./media/characters/lira/paw-digi.svg"
  30166. }
  30167. },
  30168. pawPlanti: {
  30169. height: math.unit(1.4, "feet"),
  30170. name: "Paw Planti",
  30171. image: {
  30172. source: "./media/characters/lira/paw-planti.svg"
  30173. }
  30174. },
  30175. },
  30176. [
  30177. {
  30178. name: "Normal",
  30179. height: math.unit(6 + 2 / 12, "feet"),
  30180. default: true
  30181. },
  30182. {
  30183. name: "Macro",
  30184. height: math.unit(100, "feet")
  30185. },
  30186. {
  30187. name: "Macro²",
  30188. height: math.unit(1600, "feet")
  30189. },
  30190. {
  30191. name: "Planetary",
  30192. height: math.unit(20, "earths")
  30193. },
  30194. ]
  30195. ))
  30196. characterMakers.push(() => makeCharacter(
  30197. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30198. {
  30199. front: {
  30200. height: math.unit(6, "feet"),
  30201. weight: math.unit(150, "lb"),
  30202. name: "Front",
  30203. image: {
  30204. source: "./media/characters/hadjet/front.svg",
  30205. extra: 1480 / 1346,
  30206. bottom: 26 / 1506
  30207. }
  30208. },
  30209. frontNsfw: {
  30210. height: math.unit(6, "feet"),
  30211. weight: math.unit(150, "lb"),
  30212. name: "Front (NSFW)",
  30213. image: {
  30214. source: "./media/characters/hadjet/front-nsfw.svg",
  30215. extra: 1440 / 1358,
  30216. bottom: 52 / 1492
  30217. }
  30218. },
  30219. },
  30220. [
  30221. {
  30222. name: "Macro",
  30223. height: math.unit(10, "stories"),
  30224. default: true
  30225. },
  30226. {
  30227. name: "Megamacro",
  30228. height: math.unit(1.5, "miles")
  30229. },
  30230. {
  30231. name: "Megamacro+",
  30232. height: math.unit(5, "miles")
  30233. },
  30234. ]
  30235. ))
  30236. characterMakers.push(() => makeCharacter(
  30237. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30238. {
  30239. side: {
  30240. height: math.unit(106, "feet"),
  30241. weight: math.unit(500, "tonnes"),
  30242. name: "Side",
  30243. image: {
  30244. source: "./media/characters/kodran/side.svg",
  30245. extra: 553 / 480,
  30246. bottom: 33 / 586
  30247. }
  30248. },
  30249. front: {
  30250. height: math.unit(132, "feet"),
  30251. weight: math.unit(500, "tonnes"),
  30252. name: "Front",
  30253. image: {
  30254. source: "./media/characters/kodran/front.svg",
  30255. extra: 667 / 643,
  30256. bottom: 42 / 709
  30257. }
  30258. },
  30259. flying: {
  30260. height: math.unit(350, "feet"),
  30261. weight: math.unit(500, "tonnes"),
  30262. name: "Flying",
  30263. image: {
  30264. source: "./media/characters/kodran/flying.svg"
  30265. }
  30266. },
  30267. foot: {
  30268. height: math.unit(33, "feet"),
  30269. name: "Foot",
  30270. image: {
  30271. source: "./media/characters/kodran/foot.svg"
  30272. }
  30273. },
  30274. footFront: {
  30275. height: math.unit(19, "feet"),
  30276. name: "Foot (Front)",
  30277. image: {
  30278. source: "./media/characters/kodran/foot-front.svg",
  30279. extra: 261 / 261,
  30280. bottom: 91 / 352
  30281. }
  30282. },
  30283. headFront: {
  30284. height: math.unit(53, "feet"),
  30285. name: "Head (Front)",
  30286. image: {
  30287. source: "./media/characters/kodran/head-front.svg"
  30288. }
  30289. },
  30290. headSide: {
  30291. height: math.unit(65, "feet"),
  30292. name: "Head (Side)",
  30293. image: {
  30294. source: "./media/characters/kodran/head-side.svg"
  30295. }
  30296. },
  30297. throat: {
  30298. height: math.unit(79, "feet"),
  30299. name: "Throat",
  30300. image: {
  30301. source: "./media/characters/kodran/throat.svg"
  30302. }
  30303. },
  30304. },
  30305. [
  30306. {
  30307. name: "Large",
  30308. height: math.unit(106, "feet"),
  30309. default: true
  30310. },
  30311. ]
  30312. ))
  30313. characterMakers.push(() => makeCharacter(
  30314. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30315. {
  30316. side: {
  30317. height: math.unit(11, "feet"),
  30318. weight: math.unit(150, "lb"),
  30319. name: "Side",
  30320. image: {
  30321. source: "./media/characters/pyxaron/side.svg",
  30322. extra: 305 / 195,
  30323. bottom: 17 / 322
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Normal",
  30330. height: math.unit(11, "feet"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30337. {
  30338. front: {
  30339. height: math.unit(6, "feet"),
  30340. weight: math.unit(150, "lb"),
  30341. name: "Front",
  30342. image: {
  30343. source: "./media/characters/meep/front.svg",
  30344. extra: 88 / 80,
  30345. bottom: 6 / 94
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "Fun Sized",
  30352. height: math.unit(2, "inches"),
  30353. default: true
  30354. },
  30355. {
  30356. name: "Friend Sized",
  30357. height: math.unit(8, "inches")
  30358. },
  30359. ]
  30360. ))
  30361. characterMakers.push(() => makeCharacter(
  30362. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30363. {
  30364. front: {
  30365. height: math.unit(15, "feet"),
  30366. weight: math.unit(2500, "lb"),
  30367. name: "Front",
  30368. image: {
  30369. source: "./media/characters/holly-rabbit/front.svg",
  30370. extra: 1433 / 1233,
  30371. bottom: 125 / 1558
  30372. }
  30373. },
  30374. dick: {
  30375. height: math.unit(4.6, "feet"),
  30376. name: "Dick",
  30377. image: {
  30378. source: "./media/characters/holly-rabbit/dick.svg"
  30379. }
  30380. },
  30381. },
  30382. [
  30383. {
  30384. name: "Normal",
  30385. height: math.unit(15, "feet"),
  30386. default: true
  30387. },
  30388. {
  30389. name: "Macro",
  30390. height: math.unit(250, "feet")
  30391. },
  30392. {
  30393. name: "Macro+",
  30394. height: math.unit(2500, "feet")
  30395. },
  30396. ]
  30397. ))
  30398. characterMakers.push(() => makeCharacter(
  30399. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30400. {
  30401. front: {
  30402. height: math.unit(3.02, "meters"),
  30403. weight: math.unit(500, "kg"),
  30404. name: "Front",
  30405. image: {
  30406. source: "./media/characters/drena/front.svg",
  30407. extra: 282 / 243,
  30408. bottom: 8 / 290
  30409. }
  30410. },
  30411. side: {
  30412. height: math.unit(3.02, "meters"),
  30413. weight: math.unit(500, "kg"),
  30414. name: "Side",
  30415. image: {
  30416. source: "./media/characters/drena/side.svg",
  30417. extra: 280 / 245,
  30418. bottom: 10 / 290
  30419. }
  30420. },
  30421. back: {
  30422. height: math.unit(3.02, "meters"),
  30423. weight: math.unit(500, "kg"),
  30424. name: "Back",
  30425. image: {
  30426. source: "./media/characters/drena/back.svg",
  30427. extra: 278 / 243,
  30428. bottom: 2 / 280
  30429. }
  30430. },
  30431. foot: {
  30432. height: math.unit(0.75, "meters"),
  30433. name: "Foot",
  30434. image: {
  30435. source: "./media/characters/drena/foot.svg"
  30436. }
  30437. },
  30438. maw: {
  30439. height: math.unit(0.82, "meters"),
  30440. name: "Maw",
  30441. image: {
  30442. source: "./media/characters/drena/maw.svg"
  30443. }
  30444. },
  30445. eating: {
  30446. height: math.unit(0.75, "meters"),
  30447. name: "Eating",
  30448. image: {
  30449. source: "./media/characters/drena/eating.svg"
  30450. }
  30451. },
  30452. rump: {
  30453. height: math.unit(0.93, "meters"),
  30454. name: "Rump",
  30455. image: {
  30456. source: "./media/characters/drena/rump.svg"
  30457. }
  30458. },
  30459. },
  30460. [
  30461. {
  30462. name: "Normal",
  30463. height: math.unit(3.02, "meters"),
  30464. default: true
  30465. },
  30466. ]
  30467. ))
  30468. characterMakers.push(() => makeCharacter(
  30469. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30470. {
  30471. front: {
  30472. height: math.unit(6 + 4 / 12, "feet"),
  30473. weight: math.unit(250, "lb"),
  30474. name: "Front",
  30475. image: {
  30476. source: "./media/characters/remmyzilla/front.svg",
  30477. extra: 4033 / 3588,
  30478. bottom: 123 / 4156
  30479. }
  30480. },
  30481. back: {
  30482. height: math.unit(6 + 4 / 12, "feet"),
  30483. weight: math.unit(250, "lb"),
  30484. name: "Back",
  30485. image: {
  30486. source: "./media/characters/remmyzilla/back.svg",
  30487. extra: 2687 / 2555,
  30488. bottom: 48 / 2735
  30489. }
  30490. },
  30491. paw: {
  30492. height: math.unit(1.73, "feet"),
  30493. name: "Paw",
  30494. image: {
  30495. source: "./media/characters/remmyzilla/paw.svg"
  30496. },
  30497. extraAttributes: {
  30498. "toeSize": {
  30499. name: "Toe Size",
  30500. power: 2,
  30501. type: "area",
  30502. base: math.unit(0.0035, "m^2")
  30503. },
  30504. "padSize": {
  30505. name: "Pad Size",
  30506. power: 2,
  30507. type: "area",
  30508. base: math.unit(0.015, "m^2")
  30509. },
  30510. "pawsize": {
  30511. name: "Paw Size",
  30512. power: 2,
  30513. type: "area",
  30514. base: math.unit(0.072, "m^2")
  30515. },
  30516. }
  30517. },
  30518. maw: {
  30519. height: math.unit(1.73, "feet"),
  30520. name: "Maw",
  30521. image: {
  30522. source: "./media/characters/remmyzilla/maw.svg"
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Normal",
  30529. height: math.unit(6 + 4 / 12, "feet")
  30530. },
  30531. {
  30532. name: "Minimacro",
  30533. height: math.unit(12 + 8 / 12, "feet")
  30534. },
  30535. {
  30536. name: "Normal",
  30537. height: math.unit(640, "feet"),
  30538. default: true
  30539. },
  30540. {
  30541. name: "Megamacro",
  30542. height: math.unit(6400, "feet")
  30543. },
  30544. {
  30545. name: "Gigamacro",
  30546. height: math.unit(64000, "miles")
  30547. },
  30548. ]
  30549. ))
  30550. characterMakers.push(() => makeCharacter(
  30551. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30552. {
  30553. front: {
  30554. height: math.unit(2.5, "meters"),
  30555. weight: math.unit(300, "lb"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/lawrence/front.svg",
  30559. extra: 357 / 335,
  30560. bottom: 30 / 387
  30561. }
  30562. },
  30563. back: {
  30564. height: math.unit(2.5, "meters"),
  30565. weight: math.unit(300, "lb"),
  30566. name: "Back",
  30567. image: {
  30568. source: "./media/characters/lawrence/back.svg",
  30569. extra: 357 / 338,
  30570. bottom: 16 / 373
  30571. }
  30572. },
  30573. head: {
  30574. height: math.unit(0.9, "meter"),
  30575. name: "Head",
  30576. image: {
  30577. source: "./media/characters/lawrence/head.svg"
  30578. }
  30579. },
  30580. maw: {
  30581. height: math.unit(0.7, "meter"),
  30582. name: "Maw",
  30583. image: {
  30584. source: "./media/characters/lawrence/maw.svg"
  30585. }
  30586. },
  30587. footBottom: {
  30588. height: math.unit(0.5, "meter"),
  30589. name: "Foot (Bottom)",
  30590. image: {
  30591. source: "./media/characters/lawrence/foot-bottom.svg"
  30592. }
  30593. },
  30594. footTop: {
  30595. height: math.unit(0.5, "meter"),
  30596. name: "Foot (Top)",
  30597. image: {
  30598. source: "./media/characters/lawrence/foot-top.svg"
  30599. }
  30600. },
  30601. },
  30602. [
  30603. {
  30604. name: "Normal",
  30605. height: math.unit(2.5, "meters"),
  30606. default: true
  30607. },
  30608. {
  30609. name: "Macro",
  30610. height: math.unit(95, "meters")
  30611. },
  30612. {
  30613. name: "Megamacro",
  30614. height: math.unit(150, "km")
  30615. },
  30616. ]
  30617. ))
  30618. characterMakers.push(() => makeCharacter(
  30619. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30620. {
  30621. front: {
  30622. height: math.unit(4.2, "meters"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/sydney/front.svg",
  30626. extra: 1323 / 1277,
  30627. bottom: 111 / 1434
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Normal",
  30634. height: math.unit(4.2, "meters"),
  30635. default: true
  30636. },
  30637. ]
  30638. ))
  30639. characterMakers.push(() => makeCharacter(
  30640. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30641. {
  30642. back: {
  30643. height: math.unit(201, "feet"),
  30644. name: "Back",
  30645. image: {
  30646. source: "./media/characters/jessica/back.svg",
  30647. extra: 273 / 259,
  30648. bottom: 7 / 280
  30649. }
  30650. },
  30651. },
  30652. [
  30653. {
  30654. name: "Normal",
  30655. height: math.unit(201, "feet"),
  30656. default: true
  30657. },
  30658. {
  30659. name: "Megamacro",
  30660. height: math.unit(8, "miles")
  30661. },
  30662. ]
  30663. ))
  30664. characterMakers.push(() => makeCharacter(
  30665. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30666. {
  30667. side: {
  30668. height: math.unit(5.6, "m"),
  30669. weight: math.unit(8000, "kg"),
  30670. name: "Side",
  30671. image: {
  30672. source: "./media/characters/victoria/side.svg",
  30673. extra: 1542/1229,
  30674. bottom: 124/1666
  30675. }
  30676. },
  30677. maw: {
  30678. height: math.unit(7.14, "feet"),
  30679. name: "Maw",
  30680. image: {
  30681. source: "./media/characters/victoria/maw.svg"
  30682. }
  30683. },
  30684. },
  30685. [
  30686. {
  30687. name: "Normal",
  30688. height: math.unit(5.6, "m"),
  30689. default: true
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30695. {
  30696. front: {
  30697. height: math.unit(5 + 6 / 12, "feet"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/cat/front.svg",
  30701. extra: 1449/1295,
  30702. bottom: 34/1483
  30703. },
  30704. form: "cat",
  30705. default: true
  30706. },
  30707. back: {
  30708. height: math.unit(5 + 6 / 12, "feet"),
  30709. name: "Back",
  30710. image: {
  30711. source: "./media/characters/cat/back.svg",
  30712. extra: 1466/1301,
  30713. bottom: 19/1485
  30714. },
  30715. form: "cat"
  30716. },
  30717. taur: {
  30718. height: math.unit(7, "feet"),
  30719. name: "Taur",
  30720. image: {
  30721. source: "./media/characters/cat/taur.svg",
  30722. extra: 1389/1233,
  30723. bottom: 83/1472
  30724. },
  30725. form: "taur",
  30726. default: true
  30727. },
  30728. lucarioFront: {
  30729. height: math.unit(4, "feet"),
  30730. name: "Lucario (Front)",
  30731. image: {
  30732. source: "./media/characters/cat/lucario-front.svg",
  30733. extra: 1149/1019,
  30734. bottom: 84/1233
  30735. },
  30736. form: "lucario",
  30737. default: true
  30738. },
  30739. lucarioBack: {
  30740. height: math.unit(4, "feet"),
  30741. name: "Lucario (Back)",
  30742. image: {
  30743. source: "./media/characters/cat/lucario-back.svg",
  30744. extra: 1190/1059,
  30745. bottom: 33/1223
  30746. },
  30747. form: "lucario"
  30748. },
  30749. megaLucario: {
  30750. height: math.unit(4, "feet"),
  30751. name: "Mega Lucario",
  30752. image: {
  30753. source: "./media/characters/cat/mega-lucario.svg",
  30754. extra: 1515 / 1319,
  30755. bottom: 63 / 1578
  30756. },
  30757. form: "lucario"
  30758. },
  30759. nickit: {
  30760. height: math.unit(2, "feet"),
  30761. name: "Nickit",
  30762. image: {
  30763. source: "./media/characters/cat/nickit.svg",
  30764. extra: 1980 / 1585,
  30765. bottom: 102 / 2082
  30766. },
  30767. form: "nickit",
  30768. default: true
  30769. },
  30770. lopunnyFront: {
  30771. height: math.unit(5, "feet"),
  30772. name: "Lopunny (Front)",
  30773. image: {
  30774. source: "./media/characters/cat/lopunny-front.svg",
  30775. extra: 1782 / 1469,
  30776. bottom: 38 / 1820
  30777. },
  30778. form: "lopunny",
  30779. default: true
  30780. },
  30781. lopunnyBack: {
  30782. height: math.unit(5, "feet"),
  30783. name: "Lopunny (Back)",
  30784. image: {
  30785. source: "./media/characters/cat/lopunny-back.svg",
  30786. extra: 1660 / 1490,
  30787. bottom: 25 / 1685
  30788. },
  30789. form: "lopunny"
  30790. },
  30791. },
  30792. [
  30793. {
  30794. name: "Really small",
  30795. height: math.unit(1, "nm")
  30796. },
  30797. {
  30798. name: "Micro",
  30799. height: math.unit(5, "inches")
  30800. },
  30801. {
  30802. name: "Normal",
  30803. height: math.unit(5 + 6 / 12, "feet"),
  30804. default: true
  30805. },
  30806. {
  30807. name: "Macro",
  30808. height: math.unit(50, "feet")
  30809. },
  30810. {
  30811. name: "Macro+",
  30812. height: math.unit(150, "feet")
  30813. },
  30814. {
  30815. name: "Megamacro",
  30816. height: math.unit(100, "miles")
  30817. },
  30818. ]
  30819. ))
  30820. characterMakers.push(() => makeCharacter(
  30821. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30822. {
  30823. front: {
  30824. height: math.unit(63.4, "meters"),
  30825. weight: math.unit(3.28349e+6, "kilograms"),
  30826. name: "Front",
  30827. image: {
  30828. source: "./media/characters/kirina-violet/front.svg",
  30829. extra: 2812 / 2725,
  30830. bottom: 0 / 2812
  30831. }
  30832. },
  30833. back: {
  30834. height: math.unit(63.4, "meters"),
  30835. weight: math.unit(3.28349e+6, "kilograms"),
  30836. name: "Back",
  30837. image: {
  30838. source: "./media/characters/kirina-violet/back.svg",
  30839. extra: 2812 / 2725,
  30840. bottom: 0 / 2812
  30841. }
  30842. },
  30843. mouth: {
  30844. height: math.unit(4.35, "meters"),
  30845. name: "Mouth",
  30846. image: {
  30847. source: "./media/characters/kirina-violet/mouth.svg"
  30848. }
  30849. },
  30850. paw: {
  30851. height: math.unit(5.6, "meters"),
  30852. name: "Paw",
  30853. image: {
  30854. source: "./media/characters/kirina-violet/paw.svg"
  30855. }
  30856. },
  30857. tail: {
  30858. height: math.unit(18, "meters"),
  30859. name: "Tail",
  30860. image: {
  30861. source: "./media/characters/kirina-violet/tail.svg"
  30862. }
  30863. },
  30864. },
  30865. [
  30866. {
  30867. name: "Macro",
  30868. height: math.unit(63.4, "meters"),
  30869. default: true
  30870. },
  30871. ]
  30872. ))
  30873. characterMakers.push(() => makeCharacter(
  30874. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30875. {
  30876. front: {
  30877. height: math.unit(75, "feet"),
  30878. name: "Front",
  30879. image: {
  30880. source: "./media/characters/cat-gigachu/front.svg",
  30881. extra: 1239/1027,
  30882. bottom: 32/1271
  30883. }
  30884. },
  30885. back: {
  30886. height: math.unit(75, "feet"),
  30887. name: "Back",
  30888. image: {
  30889. source: "./media/characters/cat-gigachu/back.svg",
  30890. extra: 1229/1030,
  30891. bottom: 9/1238
  30892. }
  30893. },
  30894. },
  30895. [
  30896. {
  30897. name: "Dynamax",
  30898. height: math.unit(75, "feet"),
  30899. default: true
  30900. },
  30901. ]
  30902. ))
  30903. characterMakers.push(() => makeCharacter(
  30904. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30905. {
  30906. front: {
  30907. height: math.unit(6, "feet"),
  30908. weight: math.unit(150, "lb"),
  30909. name: "Front",
  30910. image: {
  30911. source: "./media/characters/sfaiyan/front.svg",
  30912. extra: 999 / 978,
  30913. bottom: 5 / 1004
  30914. }
  30915. },
  30916. },
  30917. [
  30918. {
  30919. name: "Normal",
  30920. height: math.unit(1.82, "meters")
  30921. },
  30922. {
  30923. name: "Giant",
  30924. height: math.unit(2.27, "km"),
  30925. default: true
  30926. },
  30927. ]
  30928. ))
  30929. characterMakers.push(() => makeCharacter(
  30930. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30931. {
  30932. front: {
  30933. height: math.unit(179, "cm"),
  30934. weight: math.unit(100, "kg"),
  30935. name: "Front",
  30936. image: {
  30937. source: "./media/characters/raunehkeli/front.svg",
  30938. extra: 1934 / 1926,
  30939. bottom: 0 / 1934
  30940. }
  30941. },
  30942. },
  30943. [
  30944. {
  30945. name: "Normal",
  30946. height: math.unit(179, "cm")
  30947. },
  30948. {
  30949. name: "Maximum",
  30950. height: math.unit(575, "meters"),
  30951. default: true
  30952. },
  30953. ]
  30954. ))
  30955. characterMakers.push(() => makeCharacter(
  30956. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30957. {
  30958. front: {
  30959. height: math.unit(6, "feet"),
  30960. weight: math.unit(150, "lb"),
  30961. name: "Front",
  30962. image: {
  30963. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30964. extra: 2625 / 2518,
  30965. bottom: 60 / 2685
  30966. }
  30967. },
  30968. },
  30969. [
  30970. {
  30971. name: "Normal",
  30972. height: math.unit(6 + 2 / 12, "feet")
  30973. },
  30974. {
  30975. name: "Macro",
  30976. height: math.unit(1180, "feet"),
  30977. default: true
  30978. },
  30979. ]
  30980. ))
  30981. characterMakers.push(() => makeCharacter(
  30982. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30983. {
  30984. front: {
  30985. height: math.unit(5 + 6 / 12, "feet"),
  30986. weight: math.unit(108, "lb"),
  30987. name: "Front",
  30988. image: {
  30989. source: "./media/characters/lilith-zott/front.svg",
  30990. extra: 2510 / 2238,
  30991. bottom: 100 / 2610
  30992. }
  30993. },
  30994. frontDressed: {
  30995. height: math.unit(5 + 6 / 12, "feet"),
  30996. weight: math.unit(108, "lb"),
  30997. name: "Front (Dressed)",
  30998. image: {
  30999. source: "./media/characters/lilith-zott/front-dressed.svg",
  31000. extra: 2510 / 2238,
  31001. bottom: 100 / 2610
  31002. }
  31003. },
  31004. },
  31005. [
  31006. {
  31007. name: "Normal",
  31008. height: math.unit(5 + 6 / 12, "feet")
  31009. },
  31010. {
  31011. name: "Macro",
  31012. height: math.unit(1030, "feet"),
  31013. default: true
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31019. {
  31020. front: {
  31021. height: math.unit(6, "feet"),
  31022. weight: math.unit(150, "lb"),
  31023. name: "Front",
  31024. image: {
  31025. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31026. extra: 2567 / 2435,
  31027. bottom: 39 / 2606
  31028. }
  31029. },
  31030. frontSuper: {
  31031. height: math.unit(6, "feet"),
  31032. name: "Front (Super)",
  31033. image: {
  31034. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31035. extra: 2567 / 2435,
  31036. bottom: 39 / 2606
  31037. }
  31038. },
  31039. },
  31040. [
  31041. {
  31042. name: "Normal",
  31043. height: math.unit(5 + 10 / 12, "feet")
  31044. },
  31045. {
  31046. name: "Macro",
  31047. height: math.unit(1100, "feet"),
  31048. default: true
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31054. {
  31055. front: {
  31056. height: math.unit(100, "miles"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/sona/front.svg",
  31060. extra: 2433 / 2201,
  31061. bottom: 53 / 2486
  31062. }
  31063. },
  31064. foot: {
  31065. height: math.unit(16.1, "miles"),
  31066. name: "Foot",
  31067. image: {
  31068. source: "./media/characters/sona/foot.svg"
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Macro",
  31075. height: math.unit(100, "miles"),
  31076. default: true
  31077. },
  31078. ]
  31079. ))
  31080. characterMakers.push(() => makeCharacter(
  31081. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31082. {
  31083. front: {
  31084. height: math.unit(6, "feet"),
  31085. weight: math.unit(150, "lb"),
  31086. name: "Front",
  31087. image: {
  31088. source: "./media/characters/bailey/front.svg",
  31089. extra: 1778 / 1724,
  31090. bottom: 30 / 1808
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Micro",
  31097. height: math.unit(4, "inches")
  31098. },
  31099. {
  31100. name: "Normal",
  31101. height: math.unit(5 + 5 / 12, "feet"),
  31102. default: true
  31103. },
  31104. {
  31105. name: "Macro",
  31106. height: math.unit(250, "feet")
  31107. },
  31108. {
  31109. name: "Megamacro",
  31110. height: math.unit(100, "miles")
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31116. {
  31117. front: {
  31118. height: math.unit(5 + 2 / 12, "feet"),
  31119. weight: math.unit(120, "lb"),
  31120. name: "Front",
  31121. image: {
  31122. source: "./media/characters/snaps/front.svg",
  31123. extra: 2370 / 2177,
  31124. bottom: 48 / 2418
  31125. }
  31126. },
  31127. back: {
  31128. height: math.unit(5 + 2 / 12, "feet"),
  31129. weight: math.unit(120, "lb"),
  31130. name: "Back",
  31131. image: {
  31132. source: "./media/characters/snaps/back.svg",
  31133. extra: 2408 / 2258,
  31134. bottom: 15 / 2423
  31135. }
  31136. },
  31137. },
  31138. [
  31139. {
  31140. name: "Micro",
  31141. height: math.unit(9, "inches")
  31142. },
  31143. {
  31144. name: "Normal",
  31145. height: math.unit(5 + 2 / 12, "feet"),
  31146. default: true
  31147. },
  31148. {
  31149. name: "Mini Macro",
  31150. height: math.unit(10, "feet")
  31151. },
  31152. ]
  31153. ))
  31154. characterMakers.push(() => makeCharacter(
  31155. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31156. {
  31157. front: {
  31158. height: math.unit(1.8, "meters"),
  31159. weight: math.unit(85, "kg"),
  31160. name: "Front",
  31161. image: {
  31162. source: "./media/characters/azteck/front.svg",
  31163. extra: 2815 / 2625,
  31164. bottom: 89 / 2904
  31165. }
  31166. },
  31167. back: {
  31168. height: math.unit(1.8, "meters"),
  31169. weight: math.unit(85, "kg"),
  31170. name: "Back",
  31171. image: {
  31172. source: "./media/characters/azteck/back.svg",
  31173. extra: 2856 / 2648,
  31174. bottom: 85 / 2941
  31175. }
  31176. },
  31177. frontDressed: {
  31178. height: math.unit(1.8, "meters"),
  31179. weight: math.unit(85, "kg"),
  31180. name: "Front (Dressed)",
  31181. image: {
  31182. source: "./media/characters/azteck/front-dressed.svg",
  31183. extra: 2147 / 2003,
  31184. bottom: 68 / 2215
  31185. }
  31186. },
  31187. head: {
  31188. height: math.unit(0.47, "meters"),
  31189. weight: math.unit(85, "kg"),
  31190. name: "Head",
  31191. image: {
  31192. source: "./media/characters/azteck/head.svg"
  31193. }
  31194. },
  31195. },
  31196. [
  31197. {
  31198. name: "Bite sized",
  31199. height: math.unit(16, "cm")
  31200. },
  31201. {
  31202. name: "Normal",
  31203. height: math.unit(1.8, "meters"),
  31204. default: true
  31205. },
  31206. ]
  31207. ))
  31208. characterMakers.push(() => makeCharacter(
  31209. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31210. {
  31211. front: {
  31212. height: math.unit(6, "feet"),
  31213. weight: math.unit(150, "lb"),
  31214. name: "Front",
  31215. image: {
  31216. source: "./media/characters/pidge/front.svg",
  31217. extra: 1936/1820,
  31218. bottom: 0/1936
  31219. }
  31220. },
  31221. back: {
  31222. height: math.unit(6, "feet"),
  31223. weight: math.unit(150, "lb"),
  31224. name: "Back",
  31225. image: {
  31226. source: "./media/characters/pidge/back.svg",
  31227. extra: 1938/1843,
  31228. bottom: 0/1938
  31229. }
  31230. },
  31231. casual: {
  31232. height: math.unit(6, "feet"),
  31233. weight: math.unit(150, "lb"),
  31234. name: "Casual",
  31235. image: {
  31236. source: "./media/characters/pidge/casual.svg",
  31237. extra: 1936/1820,
  31238. bottom: 0/1936
  31239. }
  31240. },
  31241. tech: {
  31242. height: math.unit(6, "feet"),
  31243. weight: math.unit(150, "lb"),
  31244. name: "Tech",
  31245. image: {
  31246. source: "./media/characters/pidge/tech.svg",
  31247. extra: 1802/1682,
  31248. bottom: 0/1802
  31249. }
  31250. },
  31251. head: {
  31252. height: math.unit(1.61, "feet"),
  31253. name: "Head",
  31254. image: {
  31255. source: "./media/characters/pidge/head.svg"
  31256. }
  31257. },
  31258. collar: {
  31259. height: math.unit(0.82, "feet"),
  31260. name: "Collar",
  31261. image: {
  31262. source: "./media/characters/pidge/collar.svg"
  31263. }
  31264. },
  31265. },
  31266. [
  31267. {
  31268. name: "Macro",
  31269. height: math.unit(2, "mile"),
  31270. default: true
  31271. },
  31272. {
  31273. name: "PUPPY",
  31274. height: math.unit(20, "miles")
  31275. },
  31276. ]
  31277. ))
  31278. characterMakers.push(() => makeCharacter(
  31279. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31280. {
  31281. front: {
  31282. height: math.unit(6, "feet"),
  31283. weight: math.unit(150, "lb"),
  31284. name: "Front",
  31285. image: {
  31286. source: "./media/characters/en/front.svg",
  31287. extra: 1697 / 1563,
  31288. bottom: 103 / 1800
  31289. }
  31290. },
  31291. back: {
  31292. height: math.unit(6, "feet"),
  31293. weight: math.unit(150, "lb"),
  31294. name: "Back",
  31295. image: {
  31296. source: "./media/characters/en/back.svg",
  31297. extra: 1700 / 1570,
  31298. bottom: 51 / 1751
  31299. }
  31300. },
  31301. frontDressed: {
  31302. height: math.unit(6, "feet"),
  31303. weight: math.unit(150, "lb"),
  31304. name: "Front (Dressed)",
  31305. image: {
  31306. source: "./media/characters/en/front-dressed.svg",
  31307. extra: 1697 / 1563,
  31308. bottom: 103 / 1800
  31309. }
  31310. },
  31311. backDressed: {
  31312. height: math.unit(6, "feet"),
  31313. weight: math.unit(150, "lb"),
  31314. name: "Back (Dressed)",
  31315. image: {
  31316. source: "./media/characters/en/back-dressed.svg",
  31317. extra: 1700 / 1570,
  31318. bottom: 51 / 1751
  31319. }
  31320. },
  31321. },
  31322. [
  31323. {
  31324. name: "Macro",
  31325. height: math.unit(210, "feet"),
  31326. default: true
  31327. },
  31328. ]
  31329. ))
  31330. characterMakers.push(() => makeCharacter(
  31331. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31332. {
  31333. front: {
  31334. height: math.unit(6, "feet"),
  31335. weight: math.unit(150, "lb"),
  31336. name: "Front",
  31337. image: {
  31338. source: "./media/characters/haze-orris/front.svg",
  31339. extra: 3975 / 3525,
  31340. bottom: 137 / 4112
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Micro",
  31347. height: math.unit(150, "mm"),
  31348. default: true
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(6, "feet"),
  31357. weight: math.unit(150, "lb"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/casselene-yaro/front.svg",
  31361. extra: 4721 / 4541,
  31362. bottom: 82 / 4803
  31363. }
  31364. },
  31365. back: {
  31366. height: math.unit(6, "feet"),
  31367. weight: math.unit(150, "lb"),
  31368. name: "Back",
  31369. image: {
  31370. source: "./media/characters/casselene-yaro/back.svg",
  31371. extra: 4569 / 4377,
  31372. bottom: 69 / 4638
  31373. }
  31374. },
  31375. dressed: {
  31376. height: math.unit(6, "feet"),
  31377. weight: math.unit(150, "lb"),
  31378. name: "Dressed",
  31379. image: {
  31380. source: "./media/characters/casselene-yaro/dressed.svg",
  31381. extra: 4721 / 4541,
  31382. bottom: 82 / 4803
  31383. }
  31384. },
  31385. maw: {
  31386. height: math.unit(1, "feet"),
  31387. name: "Maw",
  31388. image: {
  31389. source: "./media/characters/casselene-yaro/maw.svg"
  31390. }
  31391. },
  31392. },
  31393. [
  31394. {
  31395. name: "Macro",
  31396. height: math.unit(190, "feet"),
  31397. default: true
  31398. },
  31399. ]
  31400. ))
  31401. characterMakers.push(() => makeCharacter(
  31402. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31403. {
  31404. front: {
  31405. height: math.unit(10, "feet"),
  31406. weight: math.unit(15015, "lb"),
  31407. name: "Front",
  31408. image: {
  31409. source: "./media/characters/platine/front.svg",
  31410. extra: 1741/1650,
  31411. bottom: 84/1825
  31412. }
  31413. },
  31414. side: {
  31415. height: math.unit(10, "feet"),
  31416. weight: math.unit(15015, "lb"),
  31417. name: "Side",
  31418. image: {
  31419. source: "./media/characters/platine/side.svg",
  31420. extra: 1790/1705,
  31421. bottom: 29/1819
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Normal",
  31428. height: math.unit(10, "feet"),
  31429. default: true
  31430. },
  31431. {
  31432. name: "Macro",
  31433. height: math.unit(100, "feet")
  31434. },
  31435. {
  31436. name: "Megamacro",
  31437. height: math.unit(1000, "feet")
  31438. },
  31439. ]
  31440. ))
  31441. characterMakers.push(() => makeCharacter(
  31442. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31443. {
  31444. front: {
  31445. height: math.unit(15 + 5 / 12, "feet"),
  31446. weight: math.unit(4600, "lb"),
  31447. name: "Front",
  31448. image: {
  31449. source: "./media/characters/neapolitan-ananassa/front.svg",
  31450. extra: 2903 / 2736,
  31451. bottom: 0 / 2903
  31452. }
  31453. },
  31454. side: {
  31455. height: math.unit(15 + 5 / 12, "feet"),
  31456. weight: math.unit(4600, "lb"),
  31457. name: "Side",
  31458. image: {
  31459. source: "./media/characters/neapolitan-ananassa/side.svg",
  31460. extra: 2925 / 2719,
  31461. bottom: 0 / 2925
  31462. }
  31463. },
  31464. back: {
  31465. height: math.unit(15 + 5 / 12, "feet"),
  31466. weight: math.unit(4600, "lb"),
  31467. name: "Back",
  31468. image: {
  31469. source: "./media/characters/neapolitan-ananassa/back.svg",
  31470. extra: 2903 / 2736,
  31471. bottom: 0 / 2903
  31472. }
  31473. },
  31474. },
  31475. [
  31476. {
  31477. name: "Normal",
  31478. height: math.unit(15 + 5 / 12, "feet"),
  31479. default: true
  31480. },
  31481. {
  31482. name: "Post-Millenium",
  31483. height: math.unit(35 + 5 / 12, "feet")
  31484. },
  31485. {
  31486. name: "Post-Era",
  31487. height: math.unit(450 + 5 / 12, "feet")
  31488. },
  31489. ]
  31490. ))
  31491. characterMakers.push(() => makeCharacter(
  31492. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31493. {
  31494. front: {
  31495. height: math.unit(300, "meters"),
  31496. weight: math.unit(125000, "tonnes"),
  31497. name: "Front",
  31498. image: {
  31499. source: "./media/characters/pazuzu/front.svg",
  31500. extra: 877 / 794,
  31501. bottom: 47 / 924
  31502. }
  31503. },
  31504. },
  31505. [
  31506. {
  31507. name: "Macro",
  31508. height: math.unit(300, "meters"),
  31509. default: true
  31510. },
  31511. ]
  31512. ))
  31513. characterMakers.push(() => makeCharacter(
  31514. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31515. {
  31516. side: {
  31517. height: math.unit(10 + 7 / 12, "feet"),
  31518. weight: math.unit(2.5, "tons"),
  31519. name: "Side",
  31520. image: {
  31521. source: "./media/characters/aasha/side.svg",
  31522. extra: 1345 / 1245,
  31523. bottom: 111 / 1456
  31524. }
  31525. },
  31526. back: {
  31527. height: math.unit(10 + 7 / 12, "feet"),
  31528. weight: math.unit(2.5, "tons"),
  31529. name: "Back",
  31530. image: {
  31531. source: "./media/characters/aasha/back.svg",
  31532. extra: 1133 / 1057,
  31533. bottom: 257 / 1390
  31534. }
  31535. },
  31536. },
  31537. [
  31538. {
  31539. name: "Normal",
  31540. height: math.unit(10 + 7 / 12, "feet"),
  31541. default: true
  31542. },
  31543. ]
  31544. ))
  31545. characterMakers.push(() => makeCharacter(
  31546. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31547. {
  31548. front: {
  31549. height: math.unit(6 + 3 / 12, "feet"),
  31550. name: "Front",
  31551. image: {
  31552. source: "./media/characters/nevan/front.svg",
  31553. extra: 704 / 704,
  31554. bottom: 28 / 732
  31555. }
  31556. },
  31557. back: {
  31558. height: math.unit(6 + 3 / 12, "feet"),
  31559. name: "Back",
  31560. image: {
  31561. source: "./media/characters/nevan/back.svg",
  31562. extra: 714 / 714,
  31563. bottom: 21 / 735
  31564. }
  31565. },
  31566. frontFlaccid: {
  31567. height: math.unit(6 + 3 / 12, "feet"),
  31568. name: "Front (Flaccid)",
  31569. image: {
  31570. source: "./media/characters/nevan/front-flaccid.svg",
  31571. extra: 704 / 704,
  31572. bottom: 28 / 732
  31573. }
  31574. },
  31575. frontErect: {
  31576. height: math.unit(6 + 3 / 12, "feet"),
  31577. name: "Front (Erect)",
  31578. image: {
  31579. source: "./media/characters/nevan/front-erect.svg",
  31580. extra: 704 / 704,
  31581. bottom: 28 / 732
  31582. }
  31583. },
  31584. backFlaccid: {
  31585. height: math.unit(6 + 3 / 12, "feet"),
  31586. name: "Back (Flaccid)",
  31587. image: {
  31588. source: "./media/characters/nevan/back-flaccid.svg",
  31589. extra: 714 / 714,
  31590. bottom: 21 / 735
  31591. }
  31592. },
  31593. },
  31594. [
  31595. {
  31596. name: "Normal",
  31597. height: math.unit(6 + 3 / 12, "feet"),
  31598. default: true
  31599. },
  31600. ]
  31601. ))
  31602. characterMakers.push(() => makeCharacter(
  31603. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31604. {
  31605. front: {
  31606. height: math.unit(4, "feet"),
  31607. name: "Front",
  31608. image: {
  31609. source: "./media/characters/arhan/front.svg",
  31610. extra: 3368 / 3133,
  31611. bottom: 0 / 3368
  31612. }
  31613. },
  31614. side: {
  31615. height: math.unit(4, "feet"),
  31616. name: "Side",
  31617. image: {
  31618. source: "./media/characters/arhan/side.svg",
  31619. extra: 3347 / 3105,
  31620. bottom: 0 / 3347
  31621. }
  31622. },
  31623. tongue: {
  31624. height: math.unit(1.42, "feet"),
  31625. name: "Tongue",
  31626. image: {
  31627. source: "./media/characters/arhan/tongue.svg"
  31628. }
  31629. },
  31630. head: {
  31631. height: math.unit(0.85, "feet"),
  31632. name: "Head",
  31633. image: {
  31634. source: "./media/characters/arhan/head.svg"
  31635. }
  31636. },
  31637. },
  31638. [
  31639. {
  31640. name: "Normal",
  31641. height: math.unit(4, "feet"),
  31642. default: true
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31648. {
  31649. front: {
  31650. height: math.unit(5 + 7.5 / 12, "feet"),
  31651. weight: math.unit(120, "lb"),
  31652. name: "Front",
  31653. image: {
  31654. source: "./media/characters/digi-duncan/front.svg",
  31655. extra: 330 / 326,
  31656. bottom: 16 / 346
  31657. }
  31658. },
  31659. side: {
  31660. height: math.unit(5 + 7.5 / 12, "feet"),
  31661. weight: math.unit(120, "lb"),
  31662. name: "Side",
  31663. image: {
  31664. source: "./media/characters/digi-duncan/side.svg",
  31665. extra: 341 / 337,
  31666. bottom: 1 / 342
  31667. }
  31668. },
  31669. back: {
  31670. height: math.unit(5 + 7.5 / 12, "feet"),
  31671. weight: math.unit(120, "lb"),
  31672. name: "Back",
  31673. image: {
  31674. source: "./media/characters/digi-duncan/back.svg",
  31675. extra: 330 / 326,
  31676. bottom: 12 / 342
  31677. }
  31678. },
  31679. },
  31680. [
  31681. {
  31682. name: "Speck",
  31683. height: math.unit(0.25, "mm")
  31684. },
  31685. {
  31686. name: "Micro",
  31687. height: math.unit(5, "mm")
  31688. },
  31689. {
  31690. name: "Tiny",
  31691. height: math.unit(0.5, "inches"),
  31692. default: true
  31693. },
  31694. {
  31695. name: "Human",
  31696. height: math.unit(5 + 7.5 / 12, "feet")
  31697. },
  31698. {
  31699. name: "Minigiant",
  31700. height: math.unit(8 + 5.25, "feet")
  31701. },
  31702. {
  31703. name: "Giant",
  31704. height: math.unit(2000, "feet")
  31705. },
  31706. {
  31707. name: "Mega",
  31708. height: math.unit(371.1, "miles")
  31709. },
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31714. {
  31715. front: {
  31716. height: math.unit(2, "meters"),
  31717. weight: math.unit(350, "kg"),
  31718. name: "Front",
  31719. image: {
  31720. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31721. extra: 898 / 838,
  31722. bottom: 9 / 907
  31723. }
  31724. },
  31725. },
  31726. [
  31727. {
  31728. name: "Micro",
  31729. height: math.unit(8, "meters")
  31730. },
  31731. {
  31732. name: "Normal",
  31733. height: math.unit(50, "meters"),
  31734. default: true
  31735. },
  31736. {
  31737. name: "Macro",
  31738. height: math.unit(500, "meters")
  31739. },
  31740. ]
  31741. ))
  31742. characterMakers.push(() => makeCharacter(
  31743. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31744. {
  31745. front: {
  31746. height: math.unit(6 + 6 / 12, "feet"),
  31747. name: "Front",
  31748. image: {
  31749. source: "./media/characters/khardesh/front.svg",
  31750. extra: 1788/1596,
  31751. bottom: 66/1854
  31752. }
  31753. },
  31754. back: {
  31755. height: math.unit(6 + 6 / 12, "feet"),
  31756. name: "Back",
  31757. image: {
  31758. source: "./media/characters/khardesh/back.svg",
  31759. extra: 1781/1584,
  31760. bottom: 68/1849
  31761. }
  31762. },
  31763. },
  31764. [
  31765. {
  31766. name: "Normal",
  31767. height: math.unit(6 + 6 / 12, "feet"),
  31768. default: true
  31769. },
  31770. {
  31771. name: "Normal+",
  31772. height: math.unit(4, "meters")
  31773. },
  31774. {
  31775. name: "Macro",
  31776. height: math.unit(50, "meters")
  31777. },
  31778. {
  31779. name: "Macro+",
  31780. height: math.unit(100, "meters")
  31781. },
  31782. {
  31783. name: "Megamacro",
  31784. height: math.unit(20, "km")
  31785. },
  31786. ]
  31787. ))
  31788. characterMakers.push(() => makeCharacter(
  31789. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31790. {
  31791. front: {
  31792. height: math.unit(6, "feet"),
  31793. weight: math.unit(150, "lb"),
  31794. name: "Front",
  31795. image: {
  31796. source: "./media/characters/kosho/front.svg",
  31797. extra: 1847 / 1847,
  31798. bottom: 86 / 1933
  31799. }
  31800. },
  31801. },
  31802. [
  31803. {
  31804. name: "Second-stage micro",
  31805. height: math.unit(0.5, "inches")
  31806. },
  31807. {
  31808. name: "First-stage micro",
  31809. height: math.unit(6, "inches")
  31810. },
  31811. {
  31812. name: "Normal",
  31813. height: math.unit(6, "feet"),
  31814. default: true
  31815. },
  31816. {
  31817. name: "First-stage macro",
  31818. height: math.unit(72, "feet")
  31819. },
  31820. {
  31821. name: "Second-stage macro",
  31822. height: math.unit(864, "feet")
  31823. },
  31824. ]
  31825. ))
  31826. characterMakers.push(() => makeCharacter(
  31827. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31828. {
  31829. normal: {
  31830. height: math.unit(4 + 6 / 12, "feet"),
  31831. name: "Normal",
  31832. image: {
  31833. source: "./media/characters/hydra/normal.svg",
  31834. extra: 2833 / 2634,
  31835. bottom: 68 / 2901
  31836. }
  31837. },
  31838. smol: {
  31839. height: math.unit(0.705, "inches"),
  31840. name: "Smol",
  31841. image: {
  31842. source: "./media/characters/hydra/smol.svg",
  31843. extra: 2715 / 2540,
  31844. bottom: 0 / 2715
  31845. }
  31846. },
  31847. },
  31848. [
  31849. {
  31850. name: "Normal",
  31851. height: math.unit(4 + 6 / 12, "feet"),
  31852. default: true
  31853. }
  31854. ]
  31855. ))
  31856. characterMakers.push(() => makeCharacter(
  31857. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31858. {
  31859. front: {
  31860. height: math.unit(0.6, "cm"),
  31861. name: "Front",
  31862. image: {
  31863. source: "./media/characters/daz/front.svg",
  31864. extra: 1682 / 1164,
  31865. bottom: 42 / 1724
  31866. }
  31867. },
  31868. },
  31869. [
  31870. {
  31871. name: "Normal",
  31872. height: math.unit(0.6, "cm"),
  31873. default: true
  31874. },
  31875. ]
  31876. ))
  31877. characterMakers.push(() => makeCharacter(
  31878. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31879. {
  31880. front: {
  31881. height: math.unit(6, "feet"),
  31882. weight: math.unit(235, "lb"),
  31883. name: "Front",
  31884. image: {
  31885. source: "./media/characters/theo-pangolin/front.svg",
  31886. extra: 1996 / 1969,
  31887. bottom: 115 / 2111
  31888. }
  31889. },
  31890. back: {
  31891. height: math.unit(6, "feet"),
  31892. weight: math.unit(235, "lb"),
  31893. name: "Back",
  31894. image: {
  31895. source: "./media/characters/theo-pangolin/back.svg",
  31896. extra: 1979 / 1979,
  31897. bottom: 40 / 2019
  31898. }
  31899. },
  31900. feral: {
  31901. height: math.unit(2, "feet"),
  31902. weight: math.unit(30, "lb"),
  31903. name: "Feral",
  31904. image: {
  31905. source: "./media/characters/theo-pangolin/feral.svg",
  31906. extra: 803 / 791,
  31907. bottom: 181 / 984
  31908. }
  31909. },
  31910. footFive: {
  31911. height: math.unit(1.43, "feet"),
  31912. name: "Foot (Five Toes)",
  31913. image: {
  31914. source: "./media/characters/theo-pangolin/foot-five.svg"
  31915. }
  31916. },
  31917. footFour: {
  31918. height: math.unit(1.43, "feet"),
  31919. name: "Foot (Four Toes)",
  31920. image: {
  31921. source: "./media/characters/theo-pangolin/foot-four.svg"
  31922. }
  31923. },
  31924. handFour: {
  31925. height: math.unit(0.81, "feet"),
  31926. name: "Hand (Four Fingers)",
  31927. image: {
  31928. source: "./media/characters/theo-pangolin/hand-four.svg"
  31929. }
  31930. },
  31931. handThree: {
  31932. height: math.unit(0.81, "feet"),
  31933. name: "Hand (Three Fingers)",
  31934. image: {
  31935. source: "./media/characters/theo-pangolin/hand-three.svg"
  31936. }
  31937. },
  31938. headFront: {
  31939. height: math.unit(1.37, "feet"),
  31940. name: "Head (Front)",
  31941. image: {
  31942. source: "./media/characters/theo-pangolin/head-front.svg"
  31943. }
  31944. },
  31945. headSide: {
  31946. height: math.unit(1.43, "feet"),
  31947. name: "Head (Side)",
  31948. image: {
  31949. source: "./media/characters/theo-pangolin/head-side.svg"
  31950. }
  31951. },
  31952. tongue: {
  31953. height: math.unit(2.29, "feet"),
  31954. name: "Tongue",
  31955. image: {
  31956. source: "./media/characters/theo-pangolin/tongue.svg"
  31957. }
  31958. },
  31959. },
  31960. [
  31961. {
  31962. name: "Normal",
  31963. height: math.unit(6, "feet")
  31964. },
  31965. {
  31966. name: "Macro",
  31967. height: math.unit(400, "feet"),
  31968. default: true
  31969. },
  31970. ]
  31971. ))
  31972. characterMakers.push(() => makeCharacter(
  31973. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31974. {
  31975. front: {
  31976. height: math.unit(6, "inches"),
  31977. weight: math.unit(0.036, "kg"),
  31978. name: "Front",
  31979. image: {
  31980. source: "./media/characters/renée/front.svg",
  31981. extra: 900 / 886,
  31982. bottom: 8 / 908
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Nano",
  31989. height: math.unit(1, "nm")
  31990. },
  31991. {
  31992. name: "Micro",
  31993. height: math.unit(1, "mm")
  31994. },
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(6, "inches")
  31998. },
  31999. {
  32000. name: "Macro",
  32001. height: math.unit(2000, "feet"),
  32002. default: true
  32003. },
  32004. {
  32005. name: "Megamacro",
  32006. height: math.unit(2, "km")
  32007. },
  32008. {
  32009. name: "Gigamacro",
  32010. height: math.unit(2000, "km")
  32011. },
  32012. {
  32013. name: "Teramacro",
  32014. height: math.unit(250000, "km")
  32015. },
  32016. ]
  32017. ))
  32018. characterMakers.push(() => makeCharacter(
  32019. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32020. {
  32021. front: {
  32022. height: math.unit(4, "meters"),
  32023. weight: math.unit(150, "kg"),
  32024. name: "Front",
  32025. image: {
  32026. source: "./media/characters/caledvwlch/front.svg",
  32027. extra: 1760 / 1551,
  32028. bottom: 28 / 1788
  32029. }
  32030. },
  32031. side: {
  32032. height: math.unit(4, "meters"),
  32033. weight: math.unit(150, "kg"),
  32034. name: "Side",
  32035. image: {
  32036. source: "./media/characters/caledvwlch/side.svg",
  32037. extra: 1605 / 1536,
  32038. bottom: 31 / 1636
  32039. }
  32040. },
  32041. back: {
  32042. height: math.unit(4, "meters"),
  32043. weight: math.unit(150, "kg"),
  32044. name: "Back",
  32045. image: {
  32046. source: "./media/characters/caledvwlch/back.svg",
  32047. extra: 1635 / 1565,
  32048. bottom: 27 / 1662
  32049. }
  32050. },
  32051. },
  32052. [
  32053. {
  32054. name: "\"Incognito\"",
  32055. height: math.unit(4, "meters")
  32056. },
  32057. {
  32058. name: "Small rampage",
  32059. height: math.unit(600, "meters")
  32060. },
  32061. {
  32062. name: "Mega",
  32063. height: math.unit(30, "km")
  32064. },
  32065. {
  32066. name: "Home-size",
  32067. height: math.unit(50, "km"),
  32068. default: true
  32069. },
  32070. {
  32071. name: "Giga",
  32072. height: math.unit(300, "km")
  32073. },
  32074. {
  32075. name: "Lounging",
  32076. height: math.unit(11000, "km")
  32077. },
  32078. {
  32079. name: "Planet snacking",
  32080. height: math.unit(2000000, "km")
  32081. },
  32082. ]
  32083. ))
  32084. characterMakers.push(() => makeCharacter(
  32085. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32086. {
  32087. front: {
  32088. height: math.unit(6, "feet"),
  32089. weight: math.unit(215, "lb"),
  32090. name: "Front",
  32091. image: {
  32092. source: "./media/characters/sapphire-svell/front.svg",
  32093. extra: 495 / 455,
  32094. bottom: 20 / 515
  32095. }
  32096. },
  32097. back: {
  32098. height: math.unit(6, "feet"),
  32099. weight: math.unit(216, "lb"),
  32100. name: "Back",
  32101. image: {
  32102. source: "./media/characters/sapphire-svell/back.svg",
  32103. extra: 497 / 477,
  32104. bottom: 7 / 504
  32105. }
  32106. },
  32107. maw: {
  32108. height: math.unit(1.57, "feet"),
  32109. name: "Maw",
  32110. image: {
  32111. source: "./media/characters/sapphire-svell/maw.svg"
  32112. }
  32113. },
  32114. foot: {
  32115. height: math.unit(1.07, "feet"),
  32116. name: "Foot",
  32117. image: {
  32118. source: "./media/characters/sapphire-svell/foot.svg"
  32119. }
  32120. },
  32121. toering: {
  32122. height: math.unit(1.7, "inch"),
  32123. name: "Toering",
  32124. image: {
  32125. source: "./media/characters/sapphire-svell/toering.svg"
  32126. }
  32127. },
  32128. },
  32129. [
  32130. {
  32131. name: "Normal",
  32132. height: math.unit(300, "feet"),
  32133. default: true
  32134. },
  32135. {
  32136. name: "Augmented",
  32137. height: math.unit(1250, "feet")
  32138. },
  32139. {
  32140. name: "Unleashed",
  32141. height: math.unit(3000, "feet")
  32142. },
  32143. ]
  32144. ))
  32145. characterMakers.push(() => makeCharacter(
  32146. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32147. {
  32148. side: {
  32149. height: math.unit(2 + 3 / 12, "feet"),
  32150. weight: math.unit(110, "lb"),
  32151. name: "Side",
  32152. image: {
  32153. source: "./media/characters/glitch-flux/side.svg",
  32154. extra: 997 / 805,
  32155. bottom: 20 / 1017
  32156. }
  32157. },
  32158. },
  32159. [
  32160. {
  32161. name: "Normal",
  32162. height: math.unit(2 + 3 / 12, "feet"),
  32163. default: true
  32164. },
  32165. ]
  32166. ))
  32167. characterMakers.push(() => makeCharacter(
  32168. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32169. {
  32170. front: {
  32171. height: math.unit(4, "meters"),
  32172. name: "Front",
  32173. image: {
  32174. source: "./media/characters/mid/front.svg",
  32175. extra: 507 / 476,
  32176. bottom: 17 / 524
  32177. }
  32178. },
  32179. back: {
  32180. height: math.unit(4, "meters"),
  32181. name: "Back",
  32182. image: {
  32183. source: "./media/characters/mid/back.svg",
  32184. extra: 519 / 487,
  32185. bottom: 7 / 526
  32186. }
  32187. },
  32188. stuck: {
  32189. height: math.unit(2.2, "meters"),
  32190. name: "Stuck",
  32191. image: {
  32192. source: "./media/characters/mid/stuck.svg",
  32193. extra: 1951 / 1869,
  32194. bottom: 88 / 2039
  32195. }
  32196. }
  32197. },
  32198. [
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(4, "meters"),
  32202. default: true
  32203. },
  32204. {
  32205. name: "Big",
  32206. height: math.unit(10, "meters")
  32207. },
  32208. {
  32209. name: "Macro",
  32210. height: math.unit(800, "meters")
  32211. },
  32212. {
  32213. name: "Megamacro",
  32214. height: math.unit(100, "km")
  32215. },
  32216. {
  32217. name: "Overgrown",
  32218. height: math.unit(1, "parsec")
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32224. {
  32225. front: {
  32226. height: math.unit(2.5, "meters"),
  32227. weight: math.unit(225, "kg"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/iris/front.svg",
  32231. extra: 3348 / 3251,
  32232. bottom: 205 / 3553
  32233. }
  32234. },
  32235. maw: {
  32236. height: math.unit(0.56, "meter"),
  32237. name: "Maw",
  32238. image: {
  32239. source: "./media/characters/iris/maw.svg"
  32240. }
  32241. },
  32242. },
  32243. [
  32244. {
  32245. name: "Mewter cat",
  32246. height: math.unit(1.2, "meters")
  32247. },
  32248. {
  32249. name: "Normal",
  32250. height: math.unit(2.5, "meters"),
  32251. default: true
  32252. },
  32253. {
  32254. name: "Minimacro",
  32255. height: math.unit(18, "feet")
  32256. },
  32257. {
  32258. name: "Macro",
  32259. height: math.unit(140, "feet")
  32260. },
  32261. {
  32262. name: "Macro+",
  32263. height: math.unit(180, "meters")
  32264. },
  32265. {
  32266. name: "Megamacro",
  32267. height: math.unit(2746, "meters")
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32273. {
  32274. front: {
  32275. height: math.unit(6, "feet"),
  32276. weight: math.unit(135, "lb"),
  32277. name: "Front",
  32278. image: {
  32279. source: "./media/characters/axel/front.svg",
  32280. extra: 908 / 908,
  32281. bottom: 58 / 966
  32282. }
  32283. },
  32284. side: {
  32285. height: math.unit(6, "feet"),
  32286. weight: math.unit(135, "lb"),
  32287. name: "Side",
  32288. image: {
  32289. source: "./media/characters/axel/side.svg",
  32290. extra: 958 / 958,
  32291. bottom: 11 / 969
  32292. }
  32293. },
  32294. back: {
  32295. height: math.unit(6, "feet"),
  32296. weight: math.unit(135, "lb"),
  32297. name: "Back",
  32298. image: {
  32299. source: "./media/characters/axel/back.svg",
  32300. extra: 887 / 887,
  32301. bottom: 34 / 921
  32302. }
  32303. },
  32304. head: {
  32305. height: math.unit(1.07, "feet"),
  32306. name: "Head",
  32307. image: {
  32308. source: "./media/characters/axel/head.svg"
  32309. }
  32310. },
  32311. beak: {
  32312. height: math.unit(1.4, "feet"),
  32313. name: "Beak",
  32314. image: {
  32315. source: "./media/characters/axel/beak.svg"
  32316. }
  32317. },
  32318. beakSide: {
  32319. height: math.unit(1.4, "feet"),
  32320. name: "Beak Side",
  32321. image: {
  32322. source: "./media/characters/axel/beak-side.svg"
  32323. }
  32324. },
  32325. sheath: {
  32326. height: math.unit(0.5, "feet"),
  32327. name: "Sheath",
  32328. image: {
  32329. source: "./media/characters/axel/sheath.svg"
  32330. }
  32331. },
  32332. dick: {
  32333. height: math.unit(0.98, "feet"),
  32334. name: "Dick",
  32335. image: {
  32336. source: "./media/characters/axel/dick.svg"
  32337. }
  32338. },
  32339. },
  32340. [
  32341. {
  32342. name: "Macro",
  32343. height: math.unit(68, "meters"),
  32344. default: true
  32345. },
  32346. ]
  32347. ))
  32348. characterMakers.push(() => makeCharacter(
  32349. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32350. {
  32351. front: {
  32352. height: math.unit(3.5, "meters"),
  32353. weight: math.unit(1200, "kg"),
  32354. name: "Front",
  32355. image: {
  32356. source: "./media/characters/joanna/front.svg",
  32357. extra: 1596 / 1488,
  32358. bottom: 29 / 1625
  32359. }
  32360. },
  32361. back: {
  32362. height: math.unit(3.5, "meters"),
  32363. weight: math.unit(1200, "kg"),
  32364. name: "Back",
  32365. image: {
  32366. source: "./media/characters/joanna/back.svg",
  32367. extra: 1594 / 1495,
  32368. bottom: 26 / 1620
  32369. }
  32370. },
  32371. frontShorts: {
  32372. height: math.unit(3.5, "meters"),
  32373. weight: math.unit(1200, "kg"),
  32374. name: "Front (Shorts)",
  32375. image: {
  32376. source: "./media/characters/joanna/front-shorts.svg",
  32377. extra: 1596 / 1488,
  32378. bottom: 29 / 1625
  32379. }
  32380. },
  32381. frontBiker: {
  32382. height: math.unit(3.5, "meters"),
  32383. weight: math.unit(1200, "kg"),
  32384. name: "Front (Biker)",
  32385. image: {
  32386. source: "./media/characters/joanna/front-biker.svg",
  32387. extra: 1596 / 1488,
  32388. bottom: 29 / 1625
  32389. }
  32390. },
  32391. backBiker: {
  32392. height: math.unit(3.5, "meters"),
  32393. weight: math.unit(1200, "kg"),
  32394. name: "Back (Biker)",
  32395. image: {
  32396. source: "./media/characters/joanna/back-biker.svg",
  32397. extra: 1594 / 1495,
  32398. bottom: 88 / 1682
  32399. }
  32400. },
  32401. bikeLeft: {
  32402. height: math.unit(2.4, "meters"),
  32403. weight: math.unit(1600, "kg"),
  32404. name: "Bike (Left)",
  32405. image: {
  32406. source: "./media/characters/joanna/bike-left.svg",
  32407. extra: 720 / 720,
  32408. bottom: 8 / 728
  32409. }
  32410. },
  32411. bikeRight: {
  32412. height: math.unit(2.4, "meters"),
  32413. weight: math.unit(1600, "kg"),
  32414. name: "Bike (Right)",
  32415. image: {
  32416. source: "./media/characters/joanna/bike-right.svg",
  32417. extra: 720 / 720,
  32418. bottom: 8 / 728
  32419. }
  32420. },
  32421. },
  32422. [
  32423. {
  32424. name: "Incognito",
  32425. height: math.unit(3.5, "meters")
  32426. },
  32427. {
  32428. name: "Casual Big",
  32429. height: math.unit(200, "meters")
  32430. },
  32431. {
  32432. name: "Macro",
  32433. height: math.unit(600, "meters")
  32434. },
  32435. {
  32436. name: "Original",
  32437. height: math.unit(20, "km"),
  32438. default: true
  32439. },
  32440. {
  32441. name: "Giga",
  32442. height: math.unit(400, "km")
  32443. },
  32444. {
  32445. name: "Lounging",
  32446. height: math.unit(1500, "km")
  32447. },
  32448. {
  32449. name: "Planetary",
  32450. height: math.unit(200000, "km")
  32451. },
  32452. ]
  32453. ))
  32454. characterMakers.push(() => makeCharacter(
  32455. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32456. {
  32457. front: {
  32458. height: math.unit(6, "feet"),
  32459. weight: math.unit(150, "lb"),
  32460. name: "Front",
  32461. image: {
  32462. source: "./media/characters/hugo-sigil/front.svg",
  32463. extra: 522 / 500,
  32464. bottom: 2 / 524
  32465. }
  32466. },
  32467. back: {
  32468. height: math.unit(6, "feet"),
  32469. weight: math.unit(150, "lb"),
  32470. name: "Back",
  32471. image: {
  32472. source: "./media/characters/hugo-sigil/back.svg",
  32473. extra: 519 / 495,
  32474. bottom: 5 / 524
  32475. }
  32476. },
  32477. maw: {
  32478. height: math.unit(1.4, "feet"),
  32479. weight: math.unit(150, "lb"),
  32480. name: "Maw",
  32481. image: {
  32482. source: "./media/characters/hugo-sigil/maw.svg"
  32483. }
  32484. },
  32485. feet: {
  32486. height: math.unit(1.56, "feet"),
  32487. weight: math.unit(150, "lb"),
  32488. name: "Feet",
  32489. image: {
  32490. source: "./media/characters/hugo-sigil/feet.svg",
  32491. extra: 177 / 177,
  32492. bottom: 12 / 189
  32493. }
  32494. },
  32495. },
  32496. [
  32497. {
  32498. name: "Normal",
  32499. height: math.unit(6, "feet")
  32500. },
  32501. {
  32502. name: "Macro",
  32503. height: math.unit(200, "feet"),
  32504. default: true
  32505. },
  32506. ]
  32507. ))
  32508. characterMakers.push(() => makeCharacter(
  32509. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32510. {
  32511. front: {
  32512. height: math.unit(6, "feet"),
  32513. weight: math.unit(150, "lb"),
  32514. name: "Front",
  32515. image: {
  32516. source: "./media/characters/peri/front.svg",
  32517. extra: 2354 / 2233,
  32518. bottom: 49 / 2403
  32519. }
  32520. },
  32521. },
  32522. [
  32523. {
  32524. name: "Really Small",
  32525. height: math.unit(1, "nm")
  32526. },
  32527. {
  32528. name: "Micro",
  32529. height: math.unit(4, "inches")
  32530. },
  32531. {
  32532. name: "Normal",
  32533. height: math.unit(7, "inches"),
  32534. default: true
  32535. },
  32536. {
  32537. name: "Macro",
  32538. height: math.unit(400, "feet")
  32539. },
  32540. {
  32541. name: "Megamacro",
  32542. height: math.unit(100, "miles")
  32543. },
  32544. ]
  32545. ))
  32546. characterMakers.push(() => makeCharacter(
  32547. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32548. {
  32549. frontSlim: {
  32550. height: math.unit(7, "feet"),
  32551. name: "Front (Slim)",
  32552. image: {
  32553. source: "./media/characters/issilora/front-slim.svg",
  32554. extra: 529 / 449,
  32555. bottom: 53 / 582
  32556. }
  32557. },
  32558. sideSlim: {
  32559. height: math.unit(7, "feet"),
  32560. name: "Side (Slim)",
  32561. image: {
  32562. source: "./media/characters/issilora/side-slim.svg",
  32563. extra: 570 / 480,
  32564. bottom: 30 / 600
  32565. }
  32566. },
  32567. backSlim: {
  32568. height: math.unit(7, "feet"),
  32569. name: "Back (Slim)",
  32570. image: {
  32571. source: "./media/characters/issilora/back-slim.svg",
  32572. extra: 537 / 455,
  32573. bottom: 46 / 583
  32574. }
  32575. },
  32576. frontBuff: {
  32577. height: math.unit(7, "feet"),
  32578. name: "Front (Buff)",
  32579. image: {
  32580. source: "./media/characters/issilora/front-buff.svg",
  32581. extra: 2310 / 2035,
  32582. bottom: 335 / 2645
  32583. }
  32584. },
  32585. head: {
  32586. height: math.unit(1.94, "feet"),
  32587. name: "Head",
  32588. image: {
  32589. source: "./media/characters/issilora/head.svg"
  32590. }
  32591. },
  32592. },
  32593. [
  32594. {
  32595. name: "Minimum",
  32596. height: math.unit(7, "feet")
  32597. },
  32598. {
  32599. name: "Comfortable",
  32600. height: math.unit(17, "feet")
  32601. },
  32602. {
  32603. name: "Fun Size",
  32604. height: math.unit(47, "feet")
  32605. },
  32606. {
  32607. name: "Natural Macro",
  32608. height: math.unit(137, "feet"),
  32609. default: true
  32610. },
  32611. {
  32612. name: "Maximum Kaiju",
  32613. height: math.unit(397, "feet")
  32614. },
  32615. ]
  32616. ))
  32617. characterMakers.push(() => makeCharacter(
  32618. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32619. {
  32620. front: {
  32621. height: math.unit(50 + 9/12, "feet"),
  32622. weight: math.unit(32.8, "tons"),
  32623. name: "Front",
  32624. image: {
  32625. source: "./media/characters/irb'iiritaahn/front.svg",
  32626. extra: 1878/1826,
  32627. bottom: 326/2204
  32628. }
  32629. },
  32630. back: {
  32631. height: math.unit(50 + 9/12, "feet"),
  32632. weight: math.unit(32.8, "tons"),
  32633. name: "Back",
  32634. image: {
  32635. source: "./media/characters/irb'iiritaahn/back.svg",
  32636. extra: 2052/2018,
  32637. bottom: 152/2204
  32638. }
  32639. },
  32640. head: {
  32641. height: math.unit(12.86, "feet"),
  32642. name: "Head",
  32643. image: {
  32644. source: "./media/characters/irb'iiritaahn/head.svg"
  32645. }
  32646. },
  32647. maw: {
  32648. height: math.unit(9.66, "feet"),
  32649. name: "Maw",
  32650. image: {
  32651. source: "./media/characters/irb'iiritaahn/maw.svg"
  32652. }
  32653. },
  32654. frontDick: {
  32655. height: math.unit(8.78461, "feet"),
  32656. name: "Front Dick",
  32657. image: {
  32658. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32659. }
  32660. },
  32661. rearDick: {
  32662. height: math.unit(8.78461, "feet"),
  32663. name: "Rear Dick",
  32664. image: {
  32665. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32666. }
  32667. },
  32668. rearDickUnfolded: {
  32669. height: math.unit(8.78, "feet"),
  32670. name: "Rear Dick (Unfolded)",
  32671. image: {
  32672. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32673. }
  32674. },
  32675. wings: {
  32676. height: math.unit(43, "feet"),
  32677. name: "Wings",
  32678. image: {
  32679. source: "./media/characters/irb'iiritaahn/wings.svg"
  32680. }
  32681. },
  32682. },
  32683. [
  32684. {
  32685. name: "Macro",
  32686. height: math.unit(50 + 9/12, "feet"),
  32687. default: true
  32688. },
  32689. ]
  32690. ))
  32691. characterMakers.push(() => makeCharacter(
  32692. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32693. {
  32694. front: {
  32695. height: math.unit(205, "cm"),
  32696. weight: math.unit(102, "kg"),
  32697. name: "Front",
  32698. image: {
  32699. source: "./media/characters/irbisgreif/front.svg",
  32700. extra: 785/706,
  32701. bottom: 13/798
  32702. }
  32703. },
  32704. back: {
  32705. height: math.unit(205, "cm"),
  32706. weight: math.unit(102, "kg"),
  32707. name: "Back",
  32708. image: {
  32709. source: "./media/characters/irbisgreif/back.svg",
  32710. extra: 713/701,
  32711. bottom: 26/739
  32712. }
  32713. },
  32714. frontDressed: {
  32715. height: math.unit(216, "cm"),
  32716. weight: math.unit(102, "kg"),
  32717. name: "Front-dressed",
  32718. image: {
  32719. source: "./media/characters/irbisgreif/front-dressed.svg",
  32720. extra: 902/776,
  32721. bottom: 14/916
  32722. }
  32723. },
  32724. sideDressed: {
  32725. height: math.unit(195, "cm"),
  32726. weight: math.unit(102, "kg"),
  32727. name: "Side-dressed",
  32728. image: {
  32729. source: "./media/characters/irbisgreif/side-dressed.svg",
  32730. extra: 788/688,
  32731. bottom: 21/809
  32732. }
  32733. },
  32734. backDressed: {
  32735. height: math.unit(216, "cm"),
  32736. weight: math.unit(102, "kg"),
  32737. name: "Back-dressed",
  32738. image: {
  32739. source: "./media/characters/irbisgreif/back-dressed.svg",
  32740. extra: 901/783,
  32741. bottom: 10/911
  32742. }
  32743. },
  32744. dick: {
  32745. height: math.unit(0.49, "feet"),
  32746. name: "Dick",
  32747. image: {
  32748. source: "./media/characters/irbisgreif/dick.svg"
  32749. }
  32750. },
  32751. wingTop: {
  32752. height: math.unit(1.93 , "feet"),
  32753. name: "Wing-top",
  32754. image: {
  32755. source: "./media/characters/irbisgreif/wing-top.svg"
  32756. }
  32757. },
  32758. wingBottom: {
  32759. height: math.unit(1.93 , "feet"),
  32760. name: "Wing-bottom",
  32761. image: {
  32762. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32763. }
  32764. },
  32765. },
  32766. [
  32767. {
  32768. name: "Normal",
  32769. height: math.unit(216, "cm"),
  32770. default: true
  32771. },
  32772. ]
  32773. ))
  32774. characterMakers.push(() => makeCharacter(
  32775. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32776. {
  32777. front: {
  32778. height: math.unit(6, "feet"),
  32779. weight: math.unit(150, "lb"),
  32780. name: "Front",
  32781. image: {
  32782. source: "./media/characters/pride/front.svg",
  32783. extra: 1299/1230,
  32784. bottom: 18/1317
  32785. }
  32786. },
  32787. },
  32788. [
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(7, "feet")
  32792. },
  32793. {
  32794. name: "Mini-macro",
  32795. height: math.unit(11, "feet")
  32796. },
  32797. {
  32798. name: "Macro",
  32799. height: math.unit(15, "meters"),
  32800. default: true
  32801. },
  32802. {
  32803. name: "Macro+",
  32804. height: math.unit(40, "meters")
  32805. },
  32806. ]
  32807. ))
  32808. characterMakers.push(() => makeCharacter(
  32809. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32810. {
  32811. front: {
  32812. height: math.unit(4 + 2 / 12, "feet"),
  32813. weight: math.unit(95, "lb"),
  32814. name: "Front",
  32815. image: {
  32816. source: "./media/characters/vaelophis-nyx/front.svg",
  32817. extra: 2532/2330,
  32818. bottom: 0/2532
  32819. }
  32820. },
  32821. back: {
  32822. height: math.unit(4 + 2 / 12, "feet"),
  32823. weight: math.unit(95, "lb"),
  32824. name: "Back",
  32825. image: {
  32826. source: "./media/characters/vaelophis-nyx/back.svg",
  32827. extra: 2484/2361,
  32828. bottom: 0/2484
  32829. }
  32830. },
  32831. feralSide: {
  32832. height: math.unit(2 + 1/12, "feet"),
  32833. weight: math.unit(20, "lb"),
  32834. name: "Feral (Side)",
  32835. image: {
  32836. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32837. extra: 1721/1581,
  32838. bottom: 70/1791
  32839. }
  32840. },
  32841. feralLazing: {
  32842. height: math.unit(1.08, "feet"),
  32843. weight: math.unit(20, "lb"),
  32844. name: "Feral (Lazing)",
  32845. image: {
  32846. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32847. extra: 822/822,
  32848. bottom: 248/1070
  32849. }
  32850. },
  32851. ear: {
  32852. height: math.unit(0.416, "feet"),
  32853. name: "Ear",
  32854. image: {
  32855. source: "./media/characters/vaelophis-nyx/ear.svg"
  32856. }
  32857. },
  32858. eye: {
  32859. height: math.unit(0.0748, "feet"),
  32860. name: "Eye",
  32861. image: {
  32862. source: "./media/characters/vaelophis-nyx/eye.svg"
  32863. }
  32864. },
  32865. mouth: {
  32866. height: math.unit(0.378, "feet"),
  32867. name: "Mouth",
  32868. image: {
  32869. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32870. }
  32871. },
  32872. spade: {
  32873. height: math.unit(0.55, "feet"),
  32874. name: "Spade",
  32875. image: {
  32876. source: "./media/characters/vaelophis-nyx/spade.svg"
  32877. }
  32878. },
  32879. },
  32880. [
  32881. {
  32882. name: "Normal",
  32883. height: math.unit(4 + 2/12, "feet"),
  32884. default: true
  32885. },
  32886. ]
  32887. ))
  32888. characterMakers.push(() => makeCharacter(
  32889. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32890. {
  32891. front: {
  32892. height: math.unit(7, "feet"),
  32893. weight: math.unit(231, "lb"),
  32894. name: "Front",
  32895. image: {
  32896. source: "./media/characters/flux/front.svg",
  32897. extra: 919/871,
  32898. bottom: 0/919
  32899. }
  32900. },
  32901. back: {
  32902. height: math.unit(7, "feet"),
  32903. weight: math.unit(231, "lb"),
  32904. name: "Back",
  32905. image: {
  32906. source: "./media/characters/flux/back.svg",
  32907. extra: 1040/992,
  32908. bottom: 0/1040
  32909. }
  32910. },
  32911. frontDressed: {
  32912. height: math.unit(7, "feet"),
  32913. weight: math.unit(231, "lb"),
  32914. name: "Front (Dressed)",
  32915. image: {
  32916. source: "./media/characters/flux/front-dressed.svg",
  32917. extra: 919/871,
  32918. bottom: 0/919
  32919. }
  32920. },
  32921. feralSide: {
  32922. height: math.unit(5, "feet"),
  32923. weight: math.unit(150, "lb"),
  32924. name: "Feral (Side)",
  32925. image: {
  32926. source: "./media/characters/flux/feral-side.svg",
  32927. extra: 598/528,
  32928. bottom: 28/626
  32929. }
  32930. },
  32931. head: {
  32932. height: math.unit(1.585, "feet"),
  32933. name: "Head",
  32934. image: {
  32935. source: "./media/characters/flux/head.svg"
  32936. }
  32937. },
  32938. headSide: {
  32939. height: math.unit(1.74, "feet"),
  32940. name: "Head (Side)",
  32941. image: {
  32942. source: "./media/characters/flux/head-side.svg"
  32943. }
  32944. },
  32945. headSideFire: {
  32946. height: math.unit(1.76, "feet"),
  32947. name: "Head (Side, Fire)",
  32948. image: {
  32949. source: "./media/characters/flux/head-side-fire.svg"
  32950. }
  32951. },
  32952. },
  32953. [
  32954. {
  32955. name: "Normal",
  32956. height: math.unit(7, "feet"),
  32957. default: true
  32958. },
  32959. ]
  32960. ))
  32961. characterMakers.push(() => makeCharacter(
  32962. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32963. {
  32964. front: {
  32965. height: math.unit(9, "feet"),
  32966. weight: math.unit(1012, "lb"),
  32967. name: "Front",
  32968. image: {
  32969. source: "./media/characters/ulfra-lupae/front.svg",
  32970. extra: 1083/1011,
  32971. bottom: 67/1150
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Micro",
  32978. height: math.unit(6, "inches")
  32979. },
  32980. {
  32981. name: "Socializing",
  32982. height: math.unit(6 + 5/12, "feet")
  32983. },
  32984. {
  32985. name: "Normal",
  32986. height: math.unit(9, "feet"),
  32987. default: true
  32988. },
  32989. {
  32990. name: "Macro",
  32991. height: math.unit(150, "feet")
  32992. },
  32993. ]
  32994. ))
  32995. characterMakers.push(() => makeCharacter(
  32996. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32997. {
  32998. front: {
  32999. height: math.unit(5 + 2/12, "feet"),
  33000. weight: math.unit(120, "lb"),
  33001. name: "Front",
  33002. image: {
  33003. source: "./media/characters/timber/front.svg",
  33004. extra: 2814/2705,
  33005. bottom: 181/2995
  33006. }
  33007. },
  33008. },
  33009. [
  33010. {
  33011. name: "Normal",
  33012. height: math.unit(5 + 2/12, "feet"),
  33013. default: true
  33014. },
  33015. ]
  33016. ))
  33017. characterMakers.push(() => makeCharacter(
  33018. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33019. {
  33020. front: {
  33021. height: math.unit(9, "feet"),
  33022. name: "Front",
  33023. image: {
  33024. source: "./media/characters/nicki/front.svg",
  33025. extra: 1240/990,
  33026. bottom: 45/1285
  33027. },
  33028. form: "anthro",
  33029. default: true
  33030. },
  33031. side: {
  33032. height: math.unit(9, "feet"),
  33033. name: "Side",
  33034. image: {
  33035. source: "./media/characters/nicki/side.svg",
  33036. extra: 1047/973,
  33037. bottom: 61/1108
  33038. },
  33039. form: "anthro"
  33040. },
  33041. back: {
  33042. height: math.unit(9, "feet"),
  33043. name: "Back",
  33044. image: {
  33045. source: "./media/characters/nicki/back.svg",
  33046. extra: 1006/965,
  33047. bottom: 39/1045
  33048. },
  33049. form: "anthro"
  33050. },
  33051. taur: {
  33052. height: math.unit(15, "feet"),
  33053. name: "Taur",
  33054. image: {
  33055. source: "./media/characters/nicki/taur.svg",
  33056. extra: 1592/1347,
  33057. bottom: 0/1592
  33058. },
  33059. form: "taur",
  33060. default: true
  33061. },
  33062. },
  33063. [
  33064. {
  33065. name: "Normal",
  33066. height: math.unit(9, "feet"),
  33067. form: "anthro",
  33068. default: true
  33069. },
  33070. {
  33071. name: "Normal",
  33072. height: math.unit(15, "feet"),
  33073. form: "taur",
  33074. default: true
  33075. }
  33076. ],
  33077. {
  33078. "anthro": {
  33079. name: "Anthro",
  33080. default: true
  33081. },
  33082. "taur": {
  33083. name: "Taur"
  33084. }
  33085. }
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33089. {
  33090. front: {
  33091. height: math.unit(7 + 10/12, "feet"),
  33092. weight: math.unit(3.5, "tons"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/lee/front.svg",
  33096. extra: 1773/1615,
  33097. bottom: 86/1859
  33098. }
  33099. },
  33100. hand: {
  33101. height: math.unit(1.78, "feet"),
  33102. name: "Hand",
  33103. image: {
  33104. source: "./media/characters/lee/hand.svg"
  33105. }
  33106. },
  33107. maw: {
  33108. height: math.unit(1.18, "feet"),
  33109. name: "Maw",
  33110. image: {
  33111. source: "./media/characters/lee/maw.svg"
  33112. }
  33113. },
  33114. },
  33115. [
  33116. {
  33117. name: "Normal",
  33118. height: math.unit(7 + 10/12, "feet"),
  33119. default: true
  33120. },
  33121. ]
  33122. ))
  33123. characterMakers.push(() => makeCharacter(
  33124. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33125. {
  33126. front: {
  33127. height: math.unit(9, "feet"),
  33128. name: "Front",
  33129. image: {
  33130. source: "./media/characters/guti/front.svg",
  33131. extra: 4551/4355,
  33132. bottom: 123/4674
  33133. }
  33134. },
  33135. tongue: {
  33136. height: math.unit(1, "feet"),
  33137. name: "Tongue",
  33138. image: {
  33139. source: "./media/characters/guti/tongue.svg"
  33140. }
  33141. },
  33142. paw: {
  33143. height: math.unit(1.18, "feet"),
  33144. name: "Paw",
  33145. image: {
  33146. source: "./media/characters/guti/paw.svg"
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Normal",
  33153. height: math.unit(9, "feet"),
  33154. default: true
  33155. },
  33156. ]
  33157. ))
  33158. characterMakers.push(() => makeCharacter(
  33159. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33160. {
  33161. side: {
  33162. height: math.unit(5, "meters"),
  33163. name: "Side",
  33164. image: {
  33165. source: "./media/characters/vesper/side.svg",
  33166. extra: 1605/1518,
  33167. bottom: 0/1605
  33168. }
  33169. },
  33170. },
  33171. [
  33172. {
  33173. name: "Small",
  33174. height: math.unit(5, "meters")
  33175. },
  33176. {
  33177. name: "Sage",
  33178. height: math.unit(100, "meters"),
  33179. default: true
  33180. },
  33181. {
  33182. name: "Fun Size",
  33183. height: math.unit(600, "meters")
  33184. },
  33185. {
  33186. name: "Goddess",
  33187. height: math.unit(20000, "km")
  33188. },
  33189. {
  33190. name: "Maximum",
  33191. height: math.unit(5, "galaxies")
  33192. },
  33193. ]
  33194. ))
  33195. characterMakers.push(() => makeCharacter(
  33196. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33197. {
  33198. front: {
  33199. height: math.unit(6 + 3/12, "feet"),
  33200. weight: math.unit(190, "lb"),
  33201. name: "Front",
  33202. image: {
  33203. source: "./media/characters/gawain/front.svg",
  33204. extra: 2222/2139,
  33205. bottom: 90/2312
  33206. }
  33207. },
  33208. back: {
  33209. height: math.unit(6 + 3/12, "feet"),
  33210. weight: math.unit(190, "lb"),
  33211. name: "Back",
  33212. image: {
  33213. source: "./media/characters/gawain/back.svg",
  33214. extra: 2199/2111,
  33215. bottom: 73/2272
  33216. }
  33217. },
  33218. },
  33219. [
  33220. {
  33221. name: "Normal",
  33222. height: math.unit(6 + 3/12, "feet"),
  33223. default: true
  33224. },
  33225. ]
  33226. ))
  33227. characterMakers.push(() => makeCharacter(
  33228. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33229. {
  33230. side: {
  33231. height: math.unit(3.5, "meters"),
  33232. weight: math.unit(16000, "lb"),
  33233. name: "Side",
  33234. image: {
  33235. source: "./media/characters/dascalti/side.svg",
  33236. extra: 392/273,
  33237. bottom: 47/439
  33238. }
  33239. },
  33240. breath: {
  33241. height: math.unit(7.4, "feet"),
  33242. name: "Breath",
  33243. image: {
  33244. source: "./media/characters/dascalti/breath.svg"
  33245. }
  33246. },
  33247. fed: {
  33248. height: math.unit(3.6, "meters"),
  33249. weight: math.unit(16000, "lb"),
  33250. name: "Fed",
  33251. image: {
  33252. source: "./media/characters/dascalti/fed.svg",
  33253. extra: 1419/820,
  33254. bottom: 95/1514
  33255. }
  33256. },
  33257. },
  33258. [
  33259. {
  33260. name: "Normal",
  33261. height: math.unit(3.5, "meters"),
  33262. default: true
  33263. },
  33264. ]
  33265. ))
  33266. characterMakers.push(() => makeCharacter(
  33267. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33268. {
  33269. front: {
  33270. height: math.unit(3 + 5/12, "feet"),
  33271. name: "Front",
  33272. image: {
  33273. source: "./media/characters/mauve/front.svg",
  33274. extra: 1126/1033,
  33275. bottom: 65/1191
  33276. }
  33277. },
  33278. side: {
  33279. height: math.unit(3 + 5/12, "feet"),
  33280. name: "Side",
  33281. image: {
  33282. source: "./media/characters/mauve/side.svg",
  33283. extra: 1089/1001,
  33284. bottom: 29/1118
  33285. }
  33286. },
  33287. back: {
  33288. height: math.unit(3 + 5/12, "feet"),
  33289. name: "Back",
  33290. image: {
  33291. source: "./media/characters/mauve/back.svg",
  33292. extra: 1173/1053,
  33293. bottom: 109/1282
  33294. }
  33295. },
  33296. },
  33297. [
  33298. {
  33299. name: "Normal",
  33300. height: math.unit(3 + 5/12, "feet"),
  33301. default: true
  33302. },
  33303. ]
  33304. ))
  33305. characterMakers.push(() => makeCharacter(
  33306. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33307. {
  33308. front: {
  33309. height: math.unit(6 + 3/12, "feet"),
  33310. weight: math.unit(430, "lb"),
  33311. name: "Front",
  33312. image: {
  33313. source: "./media/characters/carlos/front.svg",
  33314. extra: 1964/1913,
  33315. bottom: 70/2034
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(6 + 3/12, "feet"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33329. {
  33330. back: {
  33331. height: math.unit(5 + 10/12, "feet"),
  33332. weight: math.unit(200, "lb"),
  33333. name: "Back",
  33334. image: {
  33335. source: "./media/characters/jax/back.svg",
  33336. extra: 764/739,
  33337. bottom: 25/789
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(5 + 10/12, "feet"),
  33345. default: true
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33351. {
  33352. front: {
  33353. height: math.unit(8, "feet"),
  33354. weight: math.unit(250, "lb"),
  33355. name: "Front",
  33356. image: {
  33357. source: "./media/characters/eikthynir/front.svg",
  33358. extra: 1332/1166,
  33359. bottom: 82/1414
  33360. }
  33361. },
  33362. back: {
  33363. height: math.unit(8, "feet"),
  33364. weight: math.unit(250, "lb"),
  33365. name: "Back",
  33366. image: {
  33367. source: "./media/characters/eikthynir/back.svg",
  33368. extra: 1342/1190,
  33369. bottom: 19/1361
  33370. }
  33371. },
  33372. dick: {
  33373. height: math.unit(2.35, "feet"),
  33374. name: "Dick",
  33375. image: {
  33376. source: "./media/characters/eikthynir/dick.svg"
  33377. }
  33378. },
  33379. },
  33380. [
  33381. {
  33382. name: "Normal",
  33383. height: math.unit(8, "feet"),
  33384. default: true
  33385. },
  33386. ]
  33387. ))
  33388. characterMakers.push(() => makeCharacter(
  33389. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33390. {
  33391. front: {
  33392. height: math.unit(99, "meters"),
  33393. weight: math.unit(13000, "tons"),
  33394. name: "Front",
  33395. image: {
  33396. source: "./media/characters/zlmos/front.svg",
  33397. extra: 2202/1992,
  33398. bottom: 315/2517
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Macro",
  33405. height: math.unit(99, "meters"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33412. {
  33413. front: {
  33414. height: math.unit(6 + 5/12, "feet"),
  33415. name: "Front",
  33416. image: {
  33417. source: "./media/characters/purri/front.svg",
  33418. extra: 1698/1610,
  33419. bottom: 32/1730
  33420. }
  33421. },
  33422. frontAlt: {
  33423. height: math.unit(6 + 5/12, "feet"),
  33424. name: "Front (Alt)",
  33425. image: {
  33426. source: "./media/characters/purri/front-alt.svg",
  33427. extra: 450/420,
  33428. bottom: 26/476
  33429. }
  33430. },
  33431. boots: {
  33432. height: math.unit(5.5, "feet"),
  33433. name: "Boots",
  33434. image: {
  33435. source: "./media/characters/purri/boots.svg",
  33436. extra: 905/853,
  33437. bottom: 18/923
  33438. }
  33439. },
  33440. lying: {
  33441. height: math.unit(2, "feet"),
  33442. name: "Lying",
  33443. image: {
  33444. source: "./media/characters/purri/lying.svg",
  33445. extra: 940/843,
  33446. bottom: 146/1086
  33447. }
  33448. },
  33449. devious: {
  33450. height: math.unit(1.77, "feet"),
  33451. name: "Devious",
  33452. image: {
  33453. source: "./media/characters/purri/devious.svg",
  33454. extra: 1440/1155,
  33455. bottom: 147/1587
  33456. }
  33457. },
  33458. bean: {
  33459. height: math.unit(1.94, "feet"),
  33460. name: "Bean",
  33461. image: {
  33462. source: "./media/characters/purri/bean.svg"
  33463. }
  33464. },
  33465. },
  33466. [
  33467. {
  33468. name: "Micro",
  33469. height: math.unit(1, "mm")
  33470. },
  33471. {
  33472. name: "Normal",
  33473. height: math.unit(6 + 5/12, "feet"),
  33474. default: true
  33475. },
  33476. {
  33477. name: "Macro :3c",
  33478. height: math.unit(2, "miles")
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(6 + 2/12, "feet"),
  33487. weight: math.unit(250, "lb"),
  33488. name: "Front",
  33489. image: {
  33490. source: "./media/characters/moonlight/front.svg",
  33491. extra: 1044/908,
  33492. bottom: 56/1100
  33493. }
  33494. },
  33495. feral: {
  33496. height: math.unit(3 + 1/12, "feet"),
  33497. weight: math.unit(50, "kg"),
  33498. name: "Feral",
  33499. image: {
  33500. source: "./media/characters/moonlight/feral.svg",
  33501. extra: 3705/2791,
  33502. bottom: 145/3850
  33503. }
  33504. },
  33505. paw: {
  33506. height: math.unit(1, "feet"),
  33507. name: "Paw",
  33508. image: {
  33509. source: "./media/characters/moonlight/paw.svg"
  33510. }
  33511. },
  33512. paws: {
  33513. height: math.unit(0.98, "feet"),
  33514. name: "Paws",
  33515. image: {
  33516. source: "./media/characters/moonlight/paws.svg",
  33517. extra: 939/939,
  33518. bottom: 50/989
  33519. }
  33520. },
  33521. mouth: {
  33522. height: math.unit(0.48, "feet"),
  33523. name: "Mouth",
  33524. image: {
  33525. source: "./media/characters/moonlight/mouth.svg"
  33526. }
  33527. },
  33528. dick: {
  33529. height: math.unit(1.46, "feet"),
  33530. name: "Dick",
  33531. image: {
  33532. source: "./media/characters/moonlight/dick.svg"
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Normal",
  33539. height: math.unit(6 + 2/12, "feet"),
  33540. default: true
  33541. },
  33542. {
  33543. name: "Macro",
  33544. height: math.unit(300, "feet")
  33545. },
  33546. {
  33547. name: "Macro+",
  33548. height: math.unit(1, "mile")
  33549. },
  33550. {
  33551. name: "Mt. Moon",
  33552. height: math.unit(5, "miles")
  33553. },
  33554. {
  33555. name: "Megamacro",
  33556. height: math.unit(15, "miles")
  33557. },
  33558. ]
  33559. ))
  33560. characterMakers.push(() => makeCharacter(
  33561. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33562. {
  33563. back: {
  33564. height: math.unit(6, "feet"),
  33565. weight: math.unit(150, "lb"),
  33566. name: "Back",
  33567. image: {
  33568. source: "./media/characters/sylen/back.svg",
  33569. extra: 1335/1273,
  33570. bottom: 107/1442
  33571. }
  33572. },
  33573. },
  33574. [
  33575. {
  33576. name: "Normal",
  33577. height: math.unit(5 + 5/12, "feet")
  33578. },
  33579. {
  33580. name: "Megamacro",
  33581. height: math.unit(3, "miles"),
  33582. default: true
  33583. },
  33584. ]
  33585. ))
  33586. characterMakers.push(() => makeCharacter(
  33587. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33588. {
  33589. front: {
  33590. height: math.unit(6, "feet"),
  33591. weight: math.unit(190, "lb"),
  33592. name: "Front",
  33593. image: {
  33594. source: "./media/characters/huttser/front.svg",
  33595. extra: 1152/1058,
  33596. bottom: 23/1175
  33597. }
  33598. },
  33599. side: {
  33600. height: math.unit(6, "feet"),
  33601. weight: math.unit(190, "lb"),
  33602. name: "Side",
  33603. image: {
  33604. source: "./media/characters/huttser/side.svg",
  33605. extra: 1174/1065,
  33606. bottom: 18/1192
  33607. }
  33608. },
  33609. back: {
  33610. height: math.unit(6, "feet"),
  33611. weight: math.unit(190, "lb"),
  33612. name: "Back",
  33613. image: {
  33614. source: "./media/characters/huttser/back.svg",
  33615. extra: 1158/1056,
  33616. bottom: 12/1170
  33617. }
  33618. },
  33619. },
  33620. [
  33621. ]
  33622. ))
  33623. characterMakers.push(() => makeCharacter(
  33624. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33625. {
  33626. side: {
  33627. height: math.unit(12 + 9/12, "feet"),
  33628. weight: math.unit(15000, "lb"),
  33629. name: "Side",
  33630. image: {
  33631. source: "./media/characters/faan/side.svg",
  33632. extra: 2747/2697,
  33633. bottom: 0/2747
  33634. }
  33635. },
  33636. front: {
  33637. height: math.unit(12 + 9/12, "feet"),
  33638. weight: math.unit(15000, "lb"),
  33639. name: "Front",
  33640. image: {
  33641. source: "./media/characters/faan/front.svg",
  33642. extra: 607/571,
  33643. bottom: 24/631
  33644. }
  33645. },
  33646. head: {
  33647. height: math.unit(2.85, "feet"),
  33648. name: "Head",
  33649. image: {
  33650. source: "./media/characters/faan/head.svg"
  33651. }
  33652. },
  33653. headAlt: {
  33654. height: math.unit(3.13, "feet"),
  33655. name: "Head-alt",
  33656. image: {
  33657. source: "./media/characters/faan/head-alt.svg"
  33658. }
  33659. },
  33660. },
  33661. [
  33662. {
  33663. name: "Normal",
  33664. height: math.unit(12 + 9/12, "feet"),
  33665. default: true
  33666. },
  33667. ]
  33668. ))
  33669. characterMakers.push(() => makeCharacter(
  33670. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33671. {
  33672. front: {
  33673. height: math.unit(6, "feet"),
  33674. weight: math.unit(300, "lb"),
  33675. name: "Front",
  33676. image: {
  33677. source: "./media/characters/tanio/front.svg",
  33678. extra: 711/673,
  33679. bottom: 25/736
  33680. }
  33681. },
  33682. },
  33683. [
  33684. {
  33685. name: "Normal",
  33686. height: math.unit(6, "feet"),
  33687. default: true
  33688. },
  33689. ]
  33690. ))
  33691. characterMakers.push(() => makeCharacter(
  33692. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33693. {
  33694. front: {
  33695. height: math.unit(3, "inches"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/noboru/front.svg",
  33699. extra: 1039/932,
  33700. bottom: 18/1057
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Micro",
  33707. height: math.unit(3, "inches"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(1.85, "meters"),
  33717. weight: math.unit(80, "kg"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/daniel-barrett/front.svg",
  33721. extra: 355/337,
  33722. bottom: 9/364
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Pico",
  33729. height: math.unit(0.0433, "mm")
  33730. },
  33731. {
  33732. name: "Nano",
  33733. height: math.unit(1.5, "mm")
  33734. },
  33735. {
  33736. name: "Micro",
  33737. height: math.unit(5.3, "cm"),
  33738. default: true
  33739. },
  33740. {
  33741. name: "Normal",
  33742. height: math.unit(1.85, "meters")
  33743. },
  33744. {
  33745. name: "Macro",
  33746. height: math.unit(64.7, "meters")
  33747. },
  33748. {
  33749. name: "Megamacro",
  33750. height: math.unit(2.26, "km")
  33751. },
  33752. {
  33753. name: "Gigamacro",
  33754. height: math.unit(79, "km")
  33755. },
  33756. {
  33757. name: "Teramacro",
  33758. height: math.unit(2765, "km")
  33759. },
  33760. {
  33761. name: "Petamacro",
  33762. height: math.unit(96678, "km")
  33763. },
  33764. ]
  33765. ))
  33766. characterMakers.push(() => makeCharacter(
  33767. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33768. {
  33769. front: {
  33770. height: math.unit(30, "meters"),
  33771. weight: math.unit(400, "tons"),
  33772. name: "Front",
  33773. image: {
  33774. source: "./media/characters/zeel/front.svg",
  33775. extra: 2599/2599,
  33776. bottom: 226/2825
  33777. }
  33778. },
  33779. },
  33780. [
  33781. {
  33782. name: "Macro",
  33783. height: math.unit(30, "meters"),
  33784. default: true
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33790. {
  33791. front: {
  33792. height: math.unit(6 + 7/12, "feet"),
  33793. weight: math.unit(210, "lb"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/tarn/front.svg",
  33797. extra: 3517/3220,
  33798. bottom: 91/3608
  33799. }
  33800. },
  33801. back: {
  33802. height: math.unit(6 + 7/12, "feet"),
  33803. weight: math.unit(210, "lb"),
  33804. name: "Back",
  33805. image: {
  33806. source: "./media/characters/tarn/back.svg",
  33807. extra: 3566/3241,
  33808. bottom: 34/3600
  33809. }
  33810. },
  33811. dick: {
  33812. height: math.unit(1.65, "feet"),
  33813. name: "Dick",
  33814. image: {
  33815. source: "./media/characters/tarn/dick.svg"
  33816. }
  33817. },
  33818. paw: {
  33819. height: math.unit(1.80, "feet"),
  33820. name: "Paw",
  33821. image: {
  33822. source: "./media/characters/tarn/paw.svg"
  33823. }
  33824. },
  33825. tongue: {
  33826. height: math.unit(0.97, "feet"),
  33827. name: "Tongue",
  33828. image: {
  33829. source: "./media/characters/tarn/tongue.svg"
  33830. }
  33831. },
  33832. },
  33833. [
  33834. {
  33835. name: "Micro",
  33836. height: math.unit(4, "inches")
  33837. },
  33838. {
  33839. name: "Normal",
  33840. height: math.unit(6 + 7/12, "feet"),
  33841. default: true
  33842. },
  33843. {
  33844. name: "Macro",
  33845. height: math.unit(300, "feet")
  33846. },
  33847. ]
  33848. ))
  33849. characterMakers.push(() => makeCharacter(
  33850. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33851. {
  33852. front: {
  33853. height: math.unit(5 + 7/12, "feet"),
  33854. weight: math.unit(80, "kg"),
  33855. name: "Front",
  33856. image: {
  33857. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33858. extra: 3023/2865,
  33859. bottom: 33/3056
  33860. }
  33861. },
  33862. back: {
  33863. height: math.unit(5 + 7/12, "feet"),
  33864. weight: math.unit(80, "kg"),
  33865. name: "Back",
  33866. image: {
  33867. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33868. extra: 3020/2886,
  33869. bottom: 30/3050
  33870. }
  33871. },
  33872. dick: {
  33873. height: math.unit(0.98, "feet"),
  33874. name: "Dick",
  33875. image: {
  33876. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33877. }
  33878. },
  33879. anatomy: {
  33880. height: math.unit(2.86, "feet"),
  33881. name: "Anatomy",
  33882. image: {
  33883. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33884. }
  33885. },
  33886. },
  33887. [
  33888. {
  33889. name: "Really Small",
  33890. height: math.unit(2, "inches")
  33891. },
  33892. {
  33893. name: "Micro",
  33894. height: math.unit(5.583, "inches")
  33895. },
  33896. {
  33897. name: "Normal",
  33898. height: math.unit(5 + 7/12, "feet"),
  33899. default: true
  33900. },
  33901. {
  33902. name: "Macro",
  33903. height: math.unit(67, "feet")
  33904. },
  33905. {
  33906. name: "Megamacro",
  33907. height: math.unit(134, "feet")
  33908. },
  33909. ]
  33910. ))
  33911. characterMakers.push(() => makeCharacter(
  33912. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33913. {
  33914. front: {
  33915. height: math.unit(9, "feet"),
  33916. weight: math.unit(120, "lb"),
  33917. name: "Front",
  33918. image: {
  33919. source: "./media/characters/sally/front.svg",
  33920. extra: 1506/1349,
  33921. bottom: 66/1572
  33922. }
  33923. },
  33924. },
  33925. [
  33926. {
  33927. name: "Normal",
  33928. height: math.unit(9, "feet"),
  33929. default: true
  33930. },
  33931. ]
  33932. ))
  33933. characterMakers.push(() => makeCharacter(
  33934. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33935. {
  33936. front: {
  33937. height: math.unit(8, "feet"),
  33938. weight: math.unit(900, "lb"),
  33939. name: "Front",
  33940. image: {
  33941. source: "./media/characters/owen/front.svg",
  33942. extra: 1761/1657,
  33943. bottom: 74/1835
  33944. }
  33945. },
  33946. side: {
  33947. height: math.unit(8, "feet"),
  33948. weight: math.unit(900, "lb"),
  33949. name: "Side",
  33950. image: {
  33951. source: "./media/characters/owen/side.svg",
  33952. extra: 1797/1734,
  33953. bottom: 30/1827
  33954. }
  33955. },
  33956. back: {
  33957. height: math.unit(8, "feet"),
  33958. weight: math.unit(900, "lb"),
  33959. name: "Back",
  33960. image: {
  33961. source: "./media/characters/owen/back.svg",
  33962. extra: 1796/1706,
  33963. bottom: 59/1855
  33964. }
  33965. },
  33966. maw: {
  33967. height: math.unit(1.76, "feet"),
  33968. name: "Maw",
  33969. image: {
  33970. source: "./media/characters/owen/maw.svg"
  33971. }
  33972. },
  33973. },
  33974. [
  33975. {
  33976. name: "Normal",
  33977. height: math.unit(8, "feet"),
  33978. default: true
  33979. },
  33980. ]
  33981. ))
  33982. characterMakers.push(() => makeCharacter(
  33983. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33984. {
  33985. front: {
  33986. height: math.unit(4, "feet"),
  33987. weight: math.unit(400, "lb"),
  33988. name: "Front",
  33989. image: {
  33990. source: "./media/characters/ryth/front.svg",
  33991. extra: 1920/1748,
  33992. bottom: 42/1962
  33993. }
  33994. },
  33995. back: {
  33996. height: math.unit(4, "feet"),
  33997. weight: math.unit(400, "lb"),
  33998. name: "Back",
  33999. image: {
  34000. source: "./media/characters/ryth/back.svg",
  34001. extra: 1897/1690,
  34002. bottom: 89/1986
  34003. }
  34004. },
  34005. mouth: {
  34006. height: math.unit(1.39, "feet"),
  34007. name: "Mouth",
  34008. image: {
  34009. source: "./media/characters/ryth/mouth.svg"
  34010. }
  34011. },
  34012. tailmaw: {
  34013. height: math.unit(1.23, "feet"),
  34014. name: "Tailmaw",
  34015. image: {
  34016. source: "./media/characters/ryth/tailmaw.svg"
  34017. }
  34018. },
  34019. goia: {
  34020. height: math.unit(4, "meters"),
  34021. weight: math.unit(10800, "lb"),
  34022. name: "Goia",
  34023. image: {
  34024. source: "./media/characters/ryth/goia.svg",
  34025. extra: 745/640,
  34026. bottom: 107/852
  34027. }
  34028. },
  34029. goiaFront: {
  34030. height: math.unit(4, "meters"),
  34031. weight: math.unit(10800, "lb"),
  34032. name: "Goia (Front)",
  34033. image: {
  34034. source: "./media/characters/ryth/goia-front.svg",
  34035. extra: 750/586,
  34036. bottom: 114/864
  34037. }
  34038. },
  34039. goiaMaw: {
  34040. height: math.unit(5.55, "feet"),
  34041. name: "Goia Maw",
  34042. image: {
  34043. source: "./media/characters/ryth/goia-maw.svg"
  34044. }
  34045. },
  34046. goiaForepaw: {
  34047. height: math.unit(3.5, "feet"),
  34048. name: "Goia Forepaw",
  34049. image: {
  34050. source: "./media/characters/ryth/goia-forepaw.svg"
  34051. }
  34052. },
  34053. goiaHindpaw: {
  34054. height: math.unit(5.55, "feet"),
  34055. name: "Goia Hindpaw",
  34056. image: {
  34057. source: "./media/characters/ryth/goia-hindpaw.svg"
  34058. }
  34059. },
  34060. },
  34061. [
  34062. {
  34063. name: "Normal",
  34064. height: math.unit(4, "feet"),
  34065. default: true
  34066. },
  34067. ]
  34068. ))
  34069. characterMakers.push(() => makeCharacter(
  34070. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34071. {
  34072. front: {
  34073. height: math.unit(7, "feet"),
  34074. weight: math.unit(180, "lb"),
  34075. name: "Front",
  34076. image: {
  34077. source: "./media/characters/necrolance/front.svg",
  34078. extra: 1062/947,
  34079. bottom: 41/1103
  34080. }
  34081. },
  34082. back: {
  34083. height: math.unit(7, "feet"),
  34084. weight: math.unit(180, "lb"),
  34085. name: "Back",
  34086. image: {
  34087. source: "./media/characters/necrolance/back.svg",
  34088. extra: 1045/984,
  34089. bottom: 14/1059
  34090. }
  34091. },
  34092. wing: {
  34093. height: math.unit(2.67, "feet"),
  34094. name: "Wing",
  34095. image: {
  34096. source: "./media/characters/necrolance/wing.svg"
  34097. }
  34098. },
  34099. },
  34100. [
  34101. {
  34102. name: "Normal",
  34103. height: math.unit(7, "feet"),
  34104. default: true
  34105. },
  34106. ]
  34107. ))
  34108. characterMakers.push(() => makeCharacter(
  34109. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34110. {
  34111. front: {
  34112. height: math.unit(76, "meters"),
  34113. weight: math.unit(30000, "tons"),
  34114. name: "Front",
  34115. image: {
  34116. source: "./media/characters/tyler/front.svg",
  34117. extra: 1640/1640,
  34118. bottom: 114/1754
  34119. }
  34120. },
  34121. },
  34122. [
  34123. {
  34124. name: "Macro",
  34125. height: math.unit(76, "meters"),
  34126. default: true
  34127. },
  34128. ]
  34129. ))
  34130. characterMakers.push(() => makeCharacter(
  34131. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34132. {
  34133. front: {
  34134. height: math.unit(4 + 11/12, "feet"),
  34135. weight: math.unit(132, "lb"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/icey/front.svg",
  34139. extra: 2750/2550,
  34140. bottom: 33/2783
  34141. }
  34142. },
  34143. back: {
  34144. height: math.unit(4 + 11/12, "feet"),
  34145. weight: math.unit(132, "lb"),
  34146. name: "Back",
  34147. image: {
  34148. source: "./media/characters/icey/back.svg",
  34149. extra: 2624/2481,
  34150. bottom: 35/2659
  34151. }
  34152. },
  34153. },
  34154. [
  34155. {
  34156. name: "Normal",
  34157. height: math.unit(4 + 11/12, "feet"),
  34158. default: true
  34159. },
  34160. ]
  34161. ))
  34162. characterMakers.push(() => makeCharacter(
  34163. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34164. {
  34165. front: {
  34166. height: math.unit(100, "feet"),
  34167. weight: math.unit(0, "lb"),
  34168. name: "Front",
  34169. image: {
  34170. source: "./media/characters/smile/front.svg",
  34171. extra: 2983/2912,
  34172. bottom: 162/3145
  34173. }
  34174. },
  34175. back: {
  34176. height: math.unit(100, "feet"),
  34177. weight: math.unit(0, "lb"),
  34178. name: "Back",
  34179. image: {
  34180. source: "./media/characters/smile/back.svg",
  34181. extra: 3143/3031,
  34182. bottom: 91/3234
  34183. }
  34184. },
  34185. head: {
  34186. height: math.unit(26.3, "feet"),
  34187. weight: math.unit(0, "lb"),
  34188. name: "Head",
  34189. image: {
  34190. source: "./media/characters/smile/head.svg"
  34191. }
  34192. },
  34193. collar: {
  34194. height: math.unit(5.3, "feet"),
  34195. weight: math.unit(0, "lb"),
  34196. name: "Collar",
  34197. image: {
  34198. source: "./media/characters/smile/collar.svg"
  34199. }
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Macro",
  34205. height: math.unit(100, "feet"),
  34206. default: true
  34207. },
  34208. ]
  34209. ))
  34210. characterMakers.push(() => makeCharacter(
  34211. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34212. {
  34213. dragon: {
  34214. height: math.unit(26, "feet"),
  34215. weight: math.unit(36, "tons"),
  34216. name: "Dragon",
  34217. image: {
  34218. source: "./media/characters/arimphae/dragon.svg",
  34219. extra: 1574/983,
  34220. bottom: 357/1931
  34221. }
  34222. },
  34223. drake: {
  34224. height: math.unit(9, "feet"),
  34225. weight: math.unit(1.5, "tons"),
  34226. name: "Drake",
  34227. image: {
  34228. source: "./media/characters/arimphae/drake.svg",
  34229. extra: 1120/925,
  34230. bottom: 435/1555
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Small",
  34237. height: math.unit(26*5/9, "feet")
  34238. },
  34239. {
  34240. name: "Normal",
  34241. height: math.unit(26, "feet"),
  34242. default: true
  34243. },
  34244. ]
  34245. ))
  34246. characterMakers.push(() => makeCharacter(
  34247. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34248. {
  34249. front: {
  34250. height: math.unit(8 + 9/12, "feet"),
  34251. name: "Front",
  34252. image: {
  34253. source: "./media/characters/xander/front.svg",
  34254. extra: 1237/974,
  34255. bottom: 94/1331
  34256. }
  34257. },
  34258. },
  34259. [
  34260. {
  34261. name: "Normal",
  34262. height: math.unit(8 + 9/12, "feet"),
  34263. default: true
  34264. },
  34265. {
  34266. name: "Gaze Grabber",
  34267. height: math.unit(13 + 8/12, "feet")
  34268. },
  34269. {
  34270. name: "Jaw Dropper",
  34271. height: math.unit(27, "feet")
  34272. },
  34273. {
  34274. name: "Show Stopper",
  34275. height: math.unit(136, "feet")
  34276. },
  34277. {
  34278. name: "Superstar",
  34279. height: math.unit(1.9e6, "miles")
  34280. },
  34281. ]
  34282. ))
  34283. characterMakers.push(() => makeCharacter(
  34284. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34285. {
  34286. side: {
  34287. height: math.unit(2100, "feet"),
  34288. name: "Side",
  34289. image: {
  34290. source: "./media/characters/osiris/side.svg",
  34291. extra: 1105/939,
  34292. bottom: 167/1272
  34293. }
  34294. },
  34295. },
  34296. [
  34297. {
  34298. name: "Macro",
  34299. height: math.unit(2100, "feet"),
  34300. default: true
  34301. },
  34302. ]
  34303. ))
  34304. characterMakers.push(() => makeCharacter(
  34305. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34306. {
  34307. front: {
  34308. height: math.unit(6 + 8/12, "feet"),
  34309. weight: math.unit(225, "lb"),
  34310. name: "Front",
  34311. image: {
  34312. source: "./media/characters/rhys-londe/front.svg",
  34313. extra: 2258/2141,
  34314. bottom: 188/2446
  34315. }
  34316. },
  34317. back: {
  34318. height: math.unit(6 + 8/12, "feet"),
  34319. weight: math.unit(225, "lb"),
  34320. name: "Back",
  34321. image: {
  34322. source: "./media/characters/rhys-londe/back.svg",
  34323. extra: 2237/2137,
  34324. bottom: 63/2300
  34325. }
  34326. },
  34327. frontNsfw: {
  34328. height: math.unit(6 + 8/12, "feet"),
  34329. weight: math.unit(225, "lb"),
  34330. name: "Front (NSFW)",
  34331. image: {
  34332. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34333. extra: 2258/2141,
  34334. bottom: 188/2446
  34335. }
  34336. },
  34337. backNsfw: {
  34338. height: math.unit(6 + 8/12, "feet"),
  34339. weight: math.unit(225, "lb"),
  34340. name: "Back (NSFW)",
  34341. image: {
  34342. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34343. extra: 2237/2137,
  34344. bottom: 63/2300
  34345. }
  34346. },
  34347. dick: {
  34348. height: math.unit(30, "inches"),
  34349. name: "Dick",
  34350. image: {
  34351. source: "./media/characters/rhys-londe/dick.svg"
  34352. }
  34353. },
  34354. maw: {
  34355. height: math.unit(1.6, "feet"),
  34356. name: "Maw",
  34357. image: {
  34358. source: "./media/characters/rhys-londe/maw.svg"
  34359. }
  34360. },
  34361. },
  34362. [
  34363. {
  34364. name: "Normal",
  34365. height: math.unit(6 + 8/12, "feet"),
  34366. default: true
  34367. },
  34368. ]
  34369. ))
  34370. characterMakers.push(() => makeCharacter(
  34371. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34372. {
  34373. front: {
  34374. height: math.unit(3 + 10/12, "feet"),
  34375. weight: math.unit(90, "lb"),
  34376. name: "Front",
  34377. image: {
  34378. source: "./media/characters/taivas-ensim/front.svg",
  34379. extra: 1327/1216,
  34380. bottom: 96/1423
  34381. }
  34382. },
  34383. back: {
  34384. height: math.unit(3 + 10/12, "feet"),
  34385. weight: math.unit(90, "lb"),
  34386. name: "Back",
  34387. image: {
  34388. source: "./media/characters/taivas-ensim/back.svg",
  34389. extra: 1355/1247,
  34390. bottom: 11/1366
  34391. }
  34392. },
  34393. frontNsfw: {
  34394. height: math.unit(3 + 10/12, "feet"),
  34395. weight: math.unit(90, "lb"),
  34396. name: "Front (NSFW)",
  34397. image: {
  34398. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34399. extra: 1327/1216,
  34400. bottom: 96/1423
  34401. }
  34402. },
  34403. backNsfw: {
  34404. height: math.unit(3 + 10/12, "feet"),
  34405. weight: math.unit(90, "lb"),
  34406. name: "Back (NSFW)",
  34407. image: {
  34408. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34409. extra: 1355/1247,
  34410. bottom: 11/1366
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(3 + 10/12, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(9 + 6/12, "feet"),
  34427. weight: math.unit(940, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/byliss/front.svg",
  34431. extra: 1327/1290,
  34432. bottom: 82/1409
  34433. }
  34434. },
  34435. back: {
  34436. height: math.unit(9 + 6/12, "feet"),
  34437. weight: math.unit(940, "lb"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/byliss/back.svg",
  34441. extra: 1376/1349,
  34442. bottom: 9/1385
  34443. }
  34444. },
  34445. frontNsfw: {
  34446. height: math.unit(9 + 6/12, "feet"),
  34447. weight: math.unit(940, "lb"),
  34448. name: "Front (NSFW)",
  34449. image: {
  34450. source: "./media/characters/byliss/front-nsfw.svg",
  34451. extra: 1327/1290,
  34452. bottom: 82/1409
  34453. }
  34454. },
  34455. backNsfw: {
  34456. height: math.unit(9 + 6/12, "feet"),
  34457. weight: math.unit(940, "lb"),
  34458. name: "Back (NSFW)",
  34459. image: {
  34460. source: "./media/characters/byliss/back-nsfw.svg",
  34461. extra: 1376/1349,
  34462. bottom: 9/1385
  34463. }
  34464. },
  34465. },
  34466. [
  34467. {
  34468. name: "Normal",
  34469. height: math.unit(9 + 6/12, "feet"),
  34470. default: true
  34471. },
  34472. ]
  34473. ))
  34474. characterMakers.push(() => makeCharacter(
  34475. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34476. {
  34477. front: {
  34478. height: math.unit(5 + 2/12, "feet"),
  34479. weight: math.unit(200, "lb"),
  34480. name: "Front",
  34481. image: {
  34482. source: "./media/characters/noraly/front.svg",
  34483. extra: 4985/4773,
  34484. bottom: 150/5135
  34485. }
  34486. },
  34487. full: {
  34488. height: math.unit(5 + 2/12, "feet"),
  34489. weight: math.unit(164, "lb"),
  34490. name: "Full",
  34491. image: {
  34492. source: "./media/characters/noraly/full.svg",
  34493. extra: 1114/1059,
  34494. bottom: 35/1149
  34495. }
  34496. },
  34497. fuller: {
  34498. height: math.unit(5 + 2/12, "feet"),
  34499. weight: math.unit(230, "lb"),
  34500. name: "Fuller",
  34501. image: {
  34502. source: "./media/characters/noraly/fuller.svg",
  34503. extra: 1114/1059,
  34504. bottom: 35/1149
  34505. }
  34506. },
  34507. fullest: {
  34508. height: math.unit(5 + 2/12, "feet"),
  34509. weight: math.unit(300, "lb"),
  34510. name: "Fullest",
  34511. image: {
  34512. source: "./media/characters/noraly/fullest.svg",
  34513. extra: 1114/1059,
  34514. bottom: 35/1149
  34515. }
  34516. },
  34517. },
  34518. [
  34519. {
  34520. name: "Normal",
  34521. height: math.unit(5 + 2/12, "feet"),
  34522. default: true
  34523. },
  34524. ]
  34525. ))
  34526. characterMakers.push(() => makeCharacter(
  34527. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34528. {
  34529. front: {
  34530. height: math.unit(5 + 2/12, "feet"),
  34531. weight: math.unit(210, "lb"),
  34532. name: "Front",
  34533. image: {
  34534. source: "./media/characters/pera/front.svg",
  34535. extra: 1560/1531,
  34536. bottom: 165/1725
  34537. }
  34538. },
  34539. back: {
  34540. height: math.unit(5 + 2/12, "feet"),
  34541. weight: math.unit(210, "lb"),
  34542. name: "Back",
  34543. image: {
  34544. source: "./media/characters/pera/back.svg",
  34545. extra: 1523/1493,
  34546. bottom: 152/1675
  34547. }
  34548. },
  34549. dick: {
  34550. height: math.unit(2.4, "feet"),
  34551. name: "Dick",
  34552. image: {
  34553. source: "./media/characters/pera/dick.svg"
  34554. }
  34555. },
  34556. },
  34557. [
  34558. {
  34559. name: "Normal",
  34560. height: math.unit(5 + 2/12, "feet"),
  34561. default: true
  34562. },
  34563. ]
  34564. ))
  34565. characterMakers.push(() => makeCharacter(
  34566. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34567. {
  34568. front: {
  34569. height: math.unit(12, "feet"),
  34570. weight: math.unit(3200, "lb"),
  34571. name: "Front",
  34572. image: {
  34573. source: "./media/characters/julian/front.svg",
  34574. extra: 2962/2701,
  34575. bottom: 184/3146
  34576. }
  34577. },
  34578. maw: {
  34579. height: math.unit(5.35, "feet"),
  34580. name: "Maw",
  34581. image: {
  34582. source: "./media/characters/julian/maw.svg"
  34583. }
  34584. },
  34585. paw: {
  34586. height: math.unit(3.07, "feet"),
  34587. name: "Paw",
  34588. image: {
  34589. source: "./media/characters/julian/paw.svg"
  34590. }
  34591. },
  34592. },
  34593. [
  34594. {
  34595. name: "Default",
  34596. height: math.unit(12, "feet"),
  34597. default: true
  34598. },
  34599. {
  34600. name: "Big",
  34601. height: math.unit(50, "feet")
  34602. },
  34603. {
  34604. name: "Really Big",
  34605. height: math.unit(1, "mile")
  34606. },
  34607. {
  34608. name: "Extremely Big",
  34609. height: math.unit(100, "miles")
  34610. },
  34611. {
  34612. name: "Planet Hugger",
  34613. height: math.unit(200, "megameters")
  34614. },
  34615. {
  34616. name: "Unreasonably Big",
  34617. height: math.unit(1e300, "meters")
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34623. {
  34624. solgooleo: {
  34625. height: math.unit(4, "meters"),
  34626. weight: math.unit(6000*1.5, "kg"),
  34627. volume: math.unit(6000, "liters"),
  34628. name: "Solgooleo",
  34629. image: {
  34630. source: "./media/characters/pi/solgooleo.svg",
  34631. extra: 388/331,
  34632. bottom: 29/417
  34633. }
  34634. },
  34635. },
  34636. [
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(4, "meters"),
  34640. default: true
  34641. },
  34642. ]
  34643. ))
  34644. characterMakers.push(() => makeCharacter(
  34645. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34646. {
  34647. front: {
  34648. height: math.unit(8, "feet"),
  34649. weight: math.unit(4, "tons"),
  34650. name: "Front",
  34651. image: {
  34652. source: "./media/characters/shaun/front.svg",
  34653. extra: 503/495,
  34654. bottom: 20/523
  34655. }
  34656. },
  34657. back: {
  34658. height: math.unit(8, "feet"),
  34659. weight: math.unit(4, "tons"),
  34660. name: "Back",
  34661. image: {
  34662. source: "./media/characters/shaun/back.svg",
  34663. extra: 487/480,
  34664. bottom: 20/507
  34665. }
  34666. },
  34667. },
  34668. [
  34669. {
  34670. name: "Lorg",
  34671. height: math.unit(8, "feet"),
  34672. default: true
  34673. },
  34674. ]
  34675. ))
  34676. characterMakers.push(() => makeCharacter(
  34677. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34678. {
  34679. frontAnthro: {
  34680. height: math.unit(7, "feet"),
  34681. name: "Front",
  34682. image: {
  34683. source: "./media/characters/sini/front-anthro.svg",
  34684. extra: 726/678,
  34685. bottom: 35/761
  34686. },
  34687. form: "anthro",
  34688. default: true
  34689. },
  34690. backAnthro: {
  34691. height: math.unit(7, "feet"),
  34692. name: "Back",
  34693. image: {
  34694. source: "./media/characters/sini/back-anthro.svg",
  34695. extra: 743/701,
  34696. bottom: 12/755
  34697. },
  34698. form: "anthro",
  34699. },
  34700. frontAnthroNsfw: {
  34701. height: math.unit(7, "feet"),
  34702. name: "Front (NSFW)",
  34703. image: {
  34704. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34705. extra: 726/678,
  34706. bottom: 35/761
  34707. },
  34708. form: "anthro"
  34709. },
  34710. backAnthroNsfw: {
  34711. height: math.unit(7, "feet"),
  34712. name: "Back (NSFW)",
  34713. image: {
  34714. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34715. extra: 743/701,
  34716. bottom: 12/755
  34717. },
  34718. form: "anthro",
  34719. },
  34720. mawAnthro: {
  34721. height: math.unit(2.14, "feet"),
  34722. name: "Maw",
  34723. image: {
  34724. source: "./media/characters/sini/maw-anthro.svg"
  34725. },
  34726. form: "anthro"
  34727. },
  34728. dick: {
  34729. height: math.unit(1.45, "feet"),
  34730. name: "Dick",
  34731. image: {
  34732. source: "./media/characters/sini/dick-anthro.svg"
  34733. },
  34734. form: "anthro"
  34735. },
  34736. feral: {
  34737. height: math.unit(16, "feet"),
  34738. name: "Feral",
  34739. image: {
  34740. source: "./media/characters/sini/feral.svg",
  34741. extra: 814/605,
  34742. bottom: 11/825
  34743. },
  34744. form: "feral",
  34745. default: true
  34746. },
  34747. feralNsfw: {
  34748. height: math.unit(16, "feet"),
  34749. name: "Feral (NSFW)",
  34750. image: {
  34751. source: "./media/characters/sini/feral-nsfw.svg",
  34752. extra: 814/605,
  34753. bottom: 11/825
  34754. },
  34755. form: "feral"
  34756. },
  34757. mawFeral: {
  34758. height: math.unit(5.66, "feet"),
  34759. name: "Maw",
  34760. image: {
  34761. source: "./media/characters/sini/maw-feral.svg"
  34762. },
  34763. form: "feral",
  34764. },
  34765. pawFeral: {
  34766. height: math.unit(5.17, "feet"),
  34767. name: "Paw",
  34768. image: {
  34769. source: "./media/characters/sini/paw-feral.svg"
  34770. },
  34771. form: "feral",
  34772. },
  34773. rumpFeral: {
  34774. height: math.unit(13.11, "feet"),
  34775. name: "Rump",
  34776. image: {
  34777. source: "./media/characters/sini/rump-feral.svg"
  34778. },
  34779. form: "feral",
  34780. },
  34781. dickFeral: {
  34782. height: math.unit(1, "feet"),
  34783. name: "Dick",
  34784. image: {
  34785. source: "./media/characters/sini/dick-feral.svg"
  34786. },
  34787. form: "feral",
  34788. },
  34789. eyeFeral: {
  34790. height: math.unit(1.23, "feet"),
  34791. name: "Eye",
  34792. image: {
  34793. source: "./media/characters/sini/eye-feral.svg"
  34794. },
  34795. form: "feral",
  34796. },
  34797. },
  34798. [
  34799. {
  34800. name: "Normal",
  34801. height: math.unit(7, "feet"),
  34802. default: true,
  34803. form: "anthro"
  34804. },
  34805. {
  34806. name: "Normal",
  34807. height: math.unit(16, "feet"),
  34808. default: true,
  34809. form: "feral"
  34810. },
  34811. ],
  34812. {
  34813. "anthro": {
  34814. name: "Anthro",
  34815. default: true
  34816. },
  34817. "feral": {
  34818. name: "Feral",
  34819. }
  34820. }
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34824. {
  34825. side: {
  34826. height: math.unit(47.2, "meters"),
  34827. weight: math.unit(10000, "tons"),
  34828. name: "Side",
  34829. image: {
  34830. source: "./media/characters/raylldo/side.svg",
  34831. extra: 2363/642,
  34832. bottom: 221/2584
  34833. }
  34834. },
  34835. top: {
  34836. height: math.unit(240, "meters"),
  34837. weight: math.unit(10000, "tons"),
  34838. name: "Top",
  34839. image: {
  34840. source: "./media/characters/raylldo/top.svg"
  34841. }
  34842. },
  34843. bottom: {
  34844. height: math.unit(240, "meters"),
  34845. weight: math.unit(10000, "tons"),
  34846. name: "Bottom",
  34847. image: {
  34848. source: "./media/characters/raylldo/bottom.svg"
  34849. }
  34850. },
  34851. head: {
  34852. height: math.unit(38.6, "meters"),
  34853. name: "Head",
  34854. image: {
  34855. source: "./media/characters/raylldo/head.svg",
  34856. extra: 1335/1112,
  34857. bottom: 0/1335
  34858. }
  34859. },
  34860. maw: {
  34861. height: math.unit(16.37, "meters"),
  34862. name: "Maw",
  34863. image: {
  34864. source: "./media/characters/raylldo/maw.svg",
  34865. extra: 883/660,
  34866. bottom: 0/883
  34867. },
  34868. extraAttributes: {
  34869. preyCapacity: {
  34870. name: "Capacity",
  34871. power: 3,
  34872. type: "volume",
  34873. base: math.unit(1000, "people")
  34874. },
  34875. tongueSize: {
  34876. name: "Tongue Size",
  34877. power: 2,
  34878. type: "area",
  34879. base: math.unit(21, "m^2")
  34880. }
  34881. }
  34882. },
  34883. forepaw: {
  34884. height: math.unit(18, "meters"),
  34885. name: "Forepaw",
  34886. image: {
  34887. source: "./media/characters/raylldo/forepaw.svg"
  34888. }
  34889. },
  34890. hindpaw: {
  34891. height: math.unit(23, "meters"),
  34892. name: "Hindpaw",
  34893. image: {
  34894. source: "./media/characters/raylldo/hindpaw.svg"
  34895. }
  34896. },
  34897. genitals: {
  34898. height: math.unit(42, "meters"),
  34899. name: "Genitals",
  34900. image: {
  34901. source: "./media/characters/raylldo/genitals.svg"
  34902. }
  34903. },
  34904. },
  34905. [
  34906. {
  34907. name: "Normal",
  34908. height: math.unit(47.2, "meters"),
  34909. default: true
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34915. {
  34916. anthroFront: {
  34917. height: math.unit(9, "feet"),
  34918. weight: math.unit(600, "lb"),
  34919. name: "Anthro (Front)",
  34920. image: {
  34921. source: "./media/characters/glint/anthro-front.svg",
  34922. extra: 1097/1018,
  34923. bottom: 28/1125
  34924. }
  34925. },
  34926. anthroBack: {
  34927. height: math.unit(9, "feet"),
  34928. weight: math.unit(600, "lb"),
  34929. name: "Anthro (Back)",
  34930. image: {
  34931. source: "./media/characters/glint/anthro-back.svg",
  34932. extra: 1154/997,
  34933. bottom: 36/1190
  34934. }
  34935. },
  34936. feral: {
  34937. height: math.unit(11, "feet"),
  34938. weight: math.unit(50000, "lb"),
  34939. name: "Feral",
  34940. image: {
  34941. source: "./media/characters/glint/feral.svg",
  34942. extra: 3035/1585,
  34943. bottom: 1169/4204
  34944. }
  34945. },
  34946. dickAnthro: {
  34947. height: math.unit(0.7, "meters"),
  34948. name: "Dick (Anthro)",
  34949. image: {
  34950. source: "./media/characters/glint/dick-anthro.svg"
  34951. }
  34952. },
  34953. dickFeral: {
  34954. height: math.unit(2.65, "meters"),
  34955. name: "Dick (Feral)",
  34956. image: {
  34957. source: "./media/characters/glint/dick-feral.svg"
  34958. }
  34959. },
  34960. slitHidden: {
  34961. height: math.unit(5.85, "meters"),
  34962. name: "Slit (Hidden)",
  34963. image: {
  34964. source: "./media/characters/glint/slit-hidden.svg"
  34965. }
  34966. },
  34967. slitErect: {
  34968. height: math.unit(5.85, "meters"),
  34969. name: "Slit (Erect)",
  34970. image: {
  34971. source: "./media/characters/glint/slit-erect.svg"
  34972. }
  34973. },
  34974. mawAnthro: {
  34975. height: math.unit(0.63, "meters"),
  34976. name: "Maw (Anthro)",
  34977. image: {
  34978. source: "./media/characters/glint/maw.svg"
  34979. }
  34980. },
  34981. mawFeral: {
  34982. height: math.unit(2.89, "meters"),
  34983. name: "Maw (Feral)",
  34984. image: {
  34985. source: "./media/characters/glint/maw.svg"
  34986. }
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Normal",
  34992. height: math.unit(9, "feet"),
  34993. default: true
  34994. },
  34995. ]
  34996. ))
  34997. characterMakers.push(() => makeCharacter(
  34998. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34999. {
  35000. side: {
  35001. height: math.unit(15, "feet"),
  35002. weight: math.unit(5000, "kg"),
  35003. name: "Side",
  35004. image: {
  35005. source: "./media/characters/kairne/side.svg",
  35006. extra: 979/811,
  35007. bottom: 13/992
  35008. }
  35009. },
  35010. front: {
  35011. height: math.unit(15, "feet"),
  35012. weight: math.unit(5000, "kg"),
  35013. name: "Front",
  35014. image: {
  35015. source: "./media/characters/kairne/front.svg",
  35016. extra: 908/814,
  35017. bottom: 26/934
  35018. }
  35019. },
  35020. sideNsfw: {
  35021. height: math.unit(15, "feet"),
  35022. weight: math.unit(5000, "kg"),
  35023. name: "Side (NSFW)",
  35024. image: {
  35025. source: "./media/characters/kairne/side-nsfw.svg",
  35026. extra: 979/811,
  35027. bottom: 13/992
  35028. }
  35029. },
  35030. frontNsfw: {
  35031. height: math.unit(15, "feet"),
  35032. weight: math.unit(5000, "kg"),
  35033. name: "Front (NSFW)",
  35034. image: {
  35035. source: "./media/characters/kairne/front-nsfw.svg",
  35036. extra: 908/814,
  35037. bottom: 26/934
  35038. }
  35039. },
  35040. dickCaged: {
  35041. height: math.unit(0.65, "meters"),
  35042. name: "Dick-caged",
  35043. image: {
  35044. source: "./media/characters/kairne/dick-caged.svg"
  35045. }
  35046. },
  35047. dick: {
  35048. height: math.unit(0.79, "meters"),
  35049. name: "Dick",
  35050. image: {
  35051. source: "./media/characters/kairne/dick.svg"
  35052. }
  35053. },
  35054. genitals: {
  35055. height: math.unit(1.29, "meters"),
  35056. name: "Genitals",
  35057. image: {
  35058. source: "./media/characters/kairne/genitals.svg"
  35059. }
  35060. },
  35061. maw: {
  35062. height: math.unit(1.73, "meters"),
  35063. name: "Maw",
  35064. image: {
  35065. source: "./media/characters/kairne/maw.svg"
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(15, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(5 + 8/12, "feet"),
  35082. weight: math.unit(139, "lb"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/biscuit-jackal/front.svg",
  35086. extra: 2106/1961,
  35087. bottom: 58/2164
  35088. }
  35089. },
  35090. back: {
  35091. height: math.unit(5 + 8/12, "feet"),
  35092. weight: math.unit(139, "lb"),
  35093. name: "Back",
  35094. image: {
  35095. source: "./media/characters/biscuit-jackal/back.svg",
  35096. extra: 2132/1976,
  35097. bottom: 57/2189
  35098. }
  35099. },
  35100. werejackal: {
  35101. height: math.unit(6 + 3/12, "feet"),
  35102. weight: math.unit(188, "lb"),
  35103. name: "Werejackal",
  35104. image: {
  35105. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35106. extra: 2373/2178,
  35107. bottom: 53/2426
  35108. }
  35109. },
  35110. },
  35111. [
  35112. {
  35113. name: "Normal",
  35114. height: math.unit(5 + 8/12, "feet"),
  35115. default: true
  35116. },
  35117. ]
  35118. ))
  35119. characterMakers.push(() => makeCharacter(
  35120. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35121. {
  35122. front: {
  35123. height: math.unit(140, "cm"),
  35124. weight: math.unit(45, "kg"),
  35125. name: "Front",
  35126. image: {
  35127. source: "./media/characters/tayra-white/front.svg",
  35128. extra: 2229/2192,
  35129. bottom: 75/2304
  35130. }
  35131. },
  35132. },
  35133. [
  35134. {
  35135. name: "Normal",
  35136. height: math.unit(140, "cm"),
  35137. default: true
  35138. },
  35139. ]
  35140. ))
  35141. characterMakers.push(() => makeCharacter(
  35142. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35143. {
  35144. front: {
  35145. height: math.unit(4 + 5/12, "feet"),
  35146. name: "Front",
  35147. image: {
  35148. source: "./media/characters/scoop/front.svg",
  35149. extra: 1257/1136,
  35150. bottom: 69/1326
  35151. }
  35152. },
  35153. back: {
  35154. height: math.unit(4 + 5/12, "feet"),
  35155. name: "Back",
  35156. image: {
  35157. source: "./media/characters/scoop/back.svg",
  35158. extra: 1321/1152,
  35159. bottom: 32/1353
  35160. }
  35161. },
  35162. maw: {
  35163. height: math.unit(0.68, "feet"),
  35164. name: "Maw",
  35165. image: {
  35166. source: "./media/characters/scoop/maw.svg"
  35167. }
  35168. },
  35169. },
  35170. [
  35171. {
  35172. name: "Really Small",
  35173. height: math.unit(1, "mm")
  35174. },
  35175. {
  35176. name: "Micro",
  35177. height: math.unit(1, "inch")
  35178. },
  35179. {
  35180. name: "Normal",
  35181. height: math.unit(4 + 5/12, "feet"),
  35182. default: true
  35183. },
  35184. {
  35185. name: "Macro",
  35186. height: math.unit(200, "feet")
  35187. },
  35188. {
  35189. name: "Megamacro",
  35190. height: math.unit(3240, "feet")
  35191. },
  35192. {
  35193. name: "Teramacro",
  35194. height: math.unit(2500, "miles")
  35195. },
  35196. ]
  35197. ))
  35198. characterMakers.push(() => makeCharacter(
  35199. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35200. {
  35201. front: {
  35202. height: math.unit(15 + 7/12, "feet"),
  35203. weight: math.unit(1150, "tons"),
  35204. name: "Front",
  35205. image: {
  35206. source: "./media/characters/saphinara/front.svg",
  35207. extra: 1837/1643,
  35208. bottom: 84/1921
  35209. },
  35210. form: "normal",
  35211. default: true
  35212. },
  35213. side: {
  35214. height: math.unit(15 + 7/12, "feet"),
  35215. weight: math.unit(1150, "tons"),
  35216. name: "Side",
  35217. image: {
  35218. source: "./media/characters/saphinara/side.svg",
  35219. extra: 605/547,
  35220. bottom: 6/611
  35221. },
  35222. form: "normal"
  35223. },
  35224. back: {
  35225. height: math.unit(15 + 7/12, "feet"),
  35226. weight: math.unit(1150, "tons"),
  35227. name: "Back",
  35228. image: {
  35229. source: "./media/characters/saphinara/back.svg",
  35230. extra: 591/531,
  35231. bottom: 13/604
  35232. },
  35233. form: "normal"
  35234. },
  35235. frontTail: {
  35236. height: math.unit(15 + 7/12, "feet"),
  35237. weight: math.unit(1150, "tons"),
  35238. name: "Front (Full Tail)",
  35239. image: {
  35240. source: "./media/characters/saphinara/front-tail.svg",
  35241. extra: 2256/1630,
  35242. bottom: 261/2517
  35243. },
  35244. form: "normal"
  35245. },
  35246. insides: {
  35247. height: math.unit(11.92, "feet"),
  35248. name: "Insides",
  35249. image: {
  35250. source: "./media/characters/saphinara/insides.svg"
  35251. },
  35252. form: "normal"
  35253. },
  35254. head: {
  35255. height: math.unit(4.17, "feet"),
  35256. name: "Head",
  35257. image: {
  35258. source: "./media/characters/saphinara/head.svg"
  35259. },
  35260. form: "normal"
  35261. },
  35262. tongue: {
  35263. height: math.unit(4.60, "feet"),
  35264. name: "Tongue",
  35265. image: {
  35266. source: "./media/characters/saphinara/tongue.svg"
  35267. },
  35268. form: "normal"
  35269. },
  35270. headEnraged: {
  35271. height: math.unit(5.55, "feet"),
  35272. name: "Head (Enraged)",
  35273. image: {
  35274. source: "./media/characters/saphinara/head-enraged.svg"
  35275. },
  35276. form: "normal"
  35277. },
  35278. wings: {
  35279. height: math.unit(11.95, "feet"),
  35280. name: "Wings",
  35281. image: {
  35282. source: "./media/characters/saphinara/wings.svg"
  35283. },
  35284. form: "normal"
  35285. },
  35286. feathers: {
  35287. height: math.unit(8.92, "feet"),
  35288. name: "Feathers",
  35289. image: {
  35290. source: "./media/characters/saphinara/feathers.svg"
  35291. },
  35292. form: "normal"
  35293. },
  35294. shackles: {
  35295. height: math.unit(2, "feet"),
  35296. name: "Shackles",
  35297. image: {
  35298. source: "./media/characters/saphinara/shackles.svg"
  35299. },
  35300. form: "normal"
  35301. },
  35302. eyes: {
  35303. height: math.unit(1.331, "feet"),
  35304. name: "Eyes",
  35305. image: {
  35306. source: "./media/characters/saphinara/eyes.svg"
  35307. },
  35308. form: "normal"
  35309. },
  35310. eyesEnraged: {
  35311. height: math.unit(1.331, "feet"),
  35312. name: "Eyes (Enraged)",
  35313. image: {
  35314. source: "./media/characters/saphinara/eyes-enraged.svg"
  35315. },
  35316. form: "normal"
  35317. },
  35318. trueFormSide: {
  35319. height: math.unit(200, "feet"),
  35320. weight: math.unit(1e7, "tons"),
  35321. name: "Side",
  35322. image: {
  35323. source: "./media/characters/saphinara/true-form-side.svg",
  35324. extra: 1399/770,
  35325. bottom: 97/1496
  35326. },
  35327. form: "true-form",
  35328. default: true
  35329. },
  35330. trueFormMaw: {
  35331. height: math.unit(71.5, "feet"),
  35332. name: "Maw",
  35333. image: {
  35334. source: "./media/characters/saphinara/true-form-maw.svg",
  35335. extra: 2302/1453,
  35336. bottom: 0/2302
  35337. },
  35338. form: "true-form"
  35339. },
  35340. meowberusSide: {
  35341. height: math.unit(75, "feet"),
  35342. weight: math.unit(180000, "kg"),
  35343. preyCapacity: math.unit(50000, "people"),
  35344. name: "Side",
  35345. image: {
  35346. source: "./media/characters/saphinara/meowberus-side.svg",
  35347. extra: 1400/711,
  35348. bottom: 126/1526
  35349. },
  35350. form: "meowberus",
  35351. extraAttributes: {
  35352. "pawArea": {
  35353. name: "Paw Size",
  35354. power: 2,
  35355. type: "area",
  35356. base: math.unit(35, "m^2")
  35357. }
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(15 + 7/12, "feet"),
  35365. default: true,
  35366. form: "normal"
  35367. },
  35368. {
  35369. name: "Angry",
  35370. height: math.unit(30 + 6/12, "feet"),
  35371. form: "normal"
  35372. },
  35373. {
  35374. name: "Enraged",
  35375. height: math.unit(102 + 1/12, "feet"),
  35376. form: "normal"
  35377. },
  35378. {
  35379. name: "True",
  35380. height: math.unit(200, "feet"),
  35381. default: true,
  35382. form: "true-form"
  35383. },
  35384. {
  35385. name: "Normal",
  35386. height: math.unit(75, "feet"),
  35387. default: true,
  35388. form: "meowberus"
  35389. },
  35390. ],
  35391. {
  35392. "normal": {
  35393. name: "Normal",
  35394. default: true
  35395. },
  35396. "true-form": {
  35397. name: "True Form"
  35398. },
  35399. "meowberus": {
  35400. name: "Meowberus",
  35401. },
  35402. }
  35403. ))
  35404. characterMakers.push(() => makeCharacter(
  35405. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35406. {
  35407. front: {
  35408. height: math.unit(6 + 8/12, "feet"),
  35409. weight: math.unit(300, "lb"),
  35410. name: "Front",
  35411. image: {
  35412. source: "./media/characters/jrain/front.svg",
  35413. extra: 3039/2865,
  35414. bottom: 399/3438
  35415. }
  35416. },
  35417. back: {
  35418. height: math.unit(6 + 8/12, "feet"),
  35419. weight: math.unit(300, "lb"),
  35420. name: "Back",
  35421. image: {
  35422. source: "./media/characters/jrain/back.svg",
  35423. extra: 3089/2938,
  35424. bottom: 172/3261
  35425. }
  35426. },
  35427. head: {
  35428. height: math.unit(2.14, "feet"),
  35429. name: "Head",
  35430. image: {
  35431. source: "./media/characters/jrain/head.svg"
  35432. }
  35433. },
  35434. maw: {
  35435. height: math.unit(1.77, "feet"),
  35436. name: "Maw",
  35437. image: {
  35438. source: "./media/characters/jrain/maw.svg"
  35439. }
  35440. },
  35441. leftHand: {
  35442. height: math.unit(1.1, "feet"),
  35443. name: "Left Hand",
  35444. image: {
  35445. source: "./media/characters/jrain/left-hand.svg"
  35446. }
  35447. },
  35448. rightHand: {
  35449. height: math.unit(1.1, "feet"),
  35450. name: "Right Hand",
  35451. image: {
  35452. source: "./media/characters/jrain/right-hand.svg"
  35453. }
  35454. },
  35455. eye: {
  35456. height: math.unit(0.35, "feet"),
  35457. name: "Eye",
  35458. image: {
  35459. source: "./media/characters/jrain/eye.svg"
  35460. }
  35461. },
  35462. },
  35463. [
  35464. {
  35465. name: "Normal",
  35466. height: math.unit(6 + 8/12, "feet"),
  35467. default: true
  35468. },
  35469. {
  35470. name: "Casually Large",
  35471. height: math.unit(25, "feet")
  35472. },
  35473. {
  35474. name: "Giant",
  35475. height: math.unit(100, "feet")
  35476. },
  35477. {
  35478. name: "Kaiju",
  35479. height: math.unit(300, "feet")
  35480. },
  35481. ]
  35482. ))
  35483. characterMakers.push(() => makeCharacter(
  35484. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35485. {
  35486. dragon: {
  35487. height: math.unit(5, "meters"),
  35488. name: "Dragon",
  35489. image: {
  35490. source: "./media/characters/sabrina/dragon.svg",
  35491. extra: 3670 / 2365,
  35492. bottom: 333 / 4003
  35493. }
  35494. },
  35495. gryphon: {
  35496. height: math.unit(3, "meters"),
  35497. name: "Gryphon",
  35498. image: {
  35499. source: "./media/characters/sabrina/gryphon.svg",
  35500. extra: 1576 / 945,
  35501. bottom: 71 / 1647
  35502. }
  35503. },
  35504. snake: {
  35505. height: math.unit(12, "meters"),
  35506. name: "Snake",
  35507. image: {
  35508. source: "./media/characters/sabrina/snake.svg",
  35509. extra: 1758 / 1320,
  35510. bottom: 186 / 1944
  35511. }
  35512. },
  35513. collar: {
  35514. height: math.unit(1.86, "meters"),
  35515. name: "Collar",
  35516. image: {
  35517. source: "./media/characters/sabrina/collar.svg"
  35518. }
  35519. },
  35520. eye: {
  35521. height: math.unit(0.53, "meters"),
  35522. name: "Eye",
  35523. image: {
  35524. source: "./media/characters/sabrina/eye.svg"
  35525. }
  35526. },
  35527. foot: {
  35528. height: math.unit(1.86, "meters"),
  35529. name: "Foot",
  35530. image: {
  35531. source: "./media/characters/sabrina/foot.svg"
  35532. }
  35533. },
  35534. hand: {
  35535. height: math.unit(1.32, "meters"),
  35536. name: "Hand",
  35537. image: {
  35538. source: "./media/characters/sabrina/hand.svg"
  35539. }
  35540. },
  35541. head: {
  35542. height: math.unit(2.44, "meters"),
  35543. name: "Head",
  35544. image: {
  35545. source: "./media/characters/sabrina/head.svg"
  35546. }
  35547. },
  35548. headAngry: {
  35549. height: math.unit(2.44, "meters"),
  35550. name: "Head (Angry))",
  35551. image: {
  35552. source: "./media/characters/sabrina/head-angry.svg"
  35553. }
  35554. },
  35555. maw: {
  35556. height: math.unit(1.65, "meters"),
  35557. name: "Maw",
  35558. image: {
  35559. source: "./media/characters/sabrina/maw.svg"
  35560. }
  35561. },
  35562. spikes: {
  35563. height: math.unit(1.69, "meters"),
  35564. name: "Spikes",
  35565. image: {
  35566. source: "./media/characters/sabrina/spikes.svg"
  35567. }
  35568. },
  35569. stomach: {
  35570. height: math.unit(1.15, "meters"),
  35571. name: "Stomach",
  35572. image: {
  35573. source: "./media/characters/sabrina/stomach.svg"
  35574. }
  35575. },
  35576. tongue: {
  35577. height: math.unit(1.27, "meters"),
  35578. name: "Tongue",
  35579. image: {
  35580. source: "./media/characters/sabrina/tongue.svg"
  35581. }
  35582. },
  35583. wingDorsal: {
  35584. height: math.unit(4.85, "meters"),
  35585. name: "Wing (Dorsal)",
  35586. image: {
  35587. source: "./media/characters/sabrina/wing-dorsal.svg"
  35588. }
  35589. },
  35590. wingVentral: {
  35591. height: math.unit(4.85, "meters"),
  35592. name: "Wing (Ventral)",
  35593. image: {
  35594. source: "./media/characters/sabrina/wing-ventral.svg"
  35595. }
  35596. },
  35597. },
  35598. [
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(5, "meters"),
  35602. default: true
  35603. },
  35604. ]
  35605. ))
  35606. characterMakers.push(() => makeCharacter(
  35607. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35608. {
  35609. frontMaid: {
  35610. height: math.unit(5 + 5/12, "feet"),
  35611. weight: math.unit(130, "lb"),
  35612. name: "Front (Maid)",
  35613. image: {
  35614. source: "./media/characters/midnight-tales/front-maid.svg",
  35615. extra: 489/454,
  35616. bottom: 61/550
  35617. }
  35618. },
  35619. frontFormal: {
  35620. height: math.unit(5 + 5/12, "feet"),
  35621. weight: math.unit(130, "lb"),
  35622. name: "Front (Formal)",
  35623. image: {
  35624. source: "./media/characters/midnight-tales/front-formal.svg",
  35625. extra: 489/454,
  35626. bottom: 61/550
  35627. }
  35628. },
  35629. back: {
  35630. height: math.unit(5 + 5/12, "feet"),
  35631. weight: math.unit(130, "lb"),
  35632. name: "Back",
  35633. image: {
  35634. source: "./media/characters/midnight-tales/back.svg",
  35635. extra: 498/456,
  35636. bottom: 33/531
  35637. }
  35638. },
  35639. frontBeast: {
  35640. height: math.unit(40, "feet"),
  35641. weight: math.unit(64000, "lb"),
  35642. name: "Front (Beast)",
  35643. image: {
  35644. source: "./media/characters/midnight-tales/front-beast.svg",
  35645. extra: 927/860,
  35646. bottom: 53/980
  35647. }
  35648. },
  35649. backBeast: {
  35650. height: math.unit(40, "feet"),
  35651. weight: math.unit(64000, "lb"),
  35652. name: "Back (Beast)",
  35653. image: {
  35654. source: "./media/characters/midnight-tales/back-beast.svg",
  35655. extra: 929/855,
  35656. bottom: 16/945
  35657. }
  35658. },
  35659. footBeast: {
  35660. height: math.unit(6.7, "feet"),
  35661. name: "Foot (Beast)",
  35662. image: {
  35663. source: "./media/characters/midnight-tales/foot-beast.svg"
  35664. }
  35665. },
  35666. headBeast: {
  35667. height: math.unit(8, "feet"),
  35668. name: "Head (Beast)",
  35669. image: {
  35670. source: "./media/characters/midnight-tales/head-beast.svg"
  35671. }
  35672. },
  35673. },
  35674. [
  35675. {
  35676. name: "Normal",
  35677. height: math.unit(5 + 5 / 12, "feet"),
  35678. default: true
  35679. },
  35680. {
  35681. name: "Macro",
  35682. height: math.unit(25, "feet")
  35683. },
  35684. ]
  35685. ))
  35686. characterMakers.push(() => makeCharacter(
  35687. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35688. {
  35689. front: {
  35690. height: math.unit(5 + 10/12, "feet"),
  35691. name: "Front",
  35692. image: {
  35693. source: "./media/characters/argon/front.svg",
  35694. extra: 2009/1935,
  35695. bottom: 118/2127
  35696. }
  35697. },
  35698. back: {
  35699. height: math.unit(5 + 10/12, "feet"),
  35700. name: "Back",
  35701. image: {
  35702. source: "./media/characters/argon/back.svg",
  35703. extra: 2047/1992,
  35704. bottom: 20/2067
  35705. }
  35706. },
  35707. frontDressed: {
  35708. height: math.unit(5 + 10/12, "feet"),
  35709. name: "Front (Dressed)",
  35710. image: {
  35711. source: "./media/characters/argon/front-dressed.svg",
  35712. extra: 2009/1935,
  35713. bottom: 118/2127
  35714. }
  35715. },
  35716. },
  35717. [
  35718. {
  35719. name: "Normal",
  35720. height: math.unit(5 + 10/12, "feet"),
  35721. default: true
  35722. },
  35723. ]
  35724. ))
  35725. characterMakers.push(() => makeCharacter(
  35726. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35727. {
  35728. front: {
  35729. height: math.unit(8 + 6/12, "feet"),
  35730. weight: math.unit(1150, "lb"),
  35731. name: "Front",
  35732. image: {
  35733. source: "./media/characters/kichi/front.svg",
  35734. extra: 1267/1164,
  35735. bottom: 61/1328
  35736. }
  35737. },
  35738. back: {
  35739. height: math.unit(8 + 6/12, "feet"),
  35740. weight: math.unit(1150, "lb"),
  35741. name: "Back",
  35742. image: {
  35743. source: "./media/characters/kichi/back.svg",
  35744. extra: 1273/1166,
  35745. bottom: 33/1306
  35746. }
  35747. },
  35748. },
  35749. [
  35750. {
  35751. name: "Normal",
  35752. height: math.unit(8 + 6/12, "feet"),
  35753. default: true
  35754. },
  35755. ]
  35756. ))
  35757. characterMakers.push(() => makeCharacter(
  35758. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35759. {
  35760. front: {
  35761. height: math.unit(6, "feet"),
  35762. weight: math.unit(210, "lb"),
  35763. name: "Front",
  35764. image: {
  35765. source: "./media/characters/manetel-greyscale/front.svg",
  35766. extra: 350/312,
  35767. bottom: 8/358
  35768. }
  35769. },
  35770. },
  35771. [
  35772. {
  35773. name: "Micro",
  35774. height: math.unit(2, "inches")
  35775. },
  35776. {
  35777. name: "Normal",
  35778. height: math.unit(6, "feet"),
  35779. default: true
  35780. },
  35781. {
  35782. name: "Minimacro",
  35783. height: math.unit(17, "feet")
  35784. },
  35785. {
  35786. name: "Macro",
  35787. height: math.unit(117, "feet")
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35793. {
  35794. side: {
  35795. height: math.unit(5 + 1/12, "feet"),
  35796. weight: math.unit(418, "lb"),
  35797. name: "Side",
  35798. image: {
  35799. source: "./media/characters/softpurr/side.svg",
  35800. extra: 1993/1945,
  35801. bottom: 134/2127
  35802. }
  35803. },
  35804. front: {
  35805. height: math.unit(5 + 1/12, "feet"),
  35806. weight: math.unit(418, "lb"),
  35807. name: "Front",
  35808. image: {
  35809. source: "./media/characters/softpurr/front.svg",
  35810. extra: 1950/1856,
  35811. bottom: 174/2124
  35812. }
  35813. },
  35814. paw: {
  35815. height: math.unit(1, "feet"),
  35816. name: "Paw",
  35817. image: {
  35818. source: "./media/characters/softpurr/paw.svg"
  35819. }
  35820. },
  35821. },
  35822. [
  35823. {
  35824. name: "Normal",
  35825. height: math.unit(5 + 1/12, "feet"),
  35826. default: true
  35827. },
  35828. ]
  35829. ))
  35830. characterMakers.push(() => makeCharacter(
  35831. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35832. {
  35833. front: {
  35834. height: math.unit(260, "meters"),
  35835. name: "Front",
  35836. image: {
  35837. source: "./media/characters/anahita/front.svg",
  35838. extra: 665/635,
  35839. bottom: 89/754
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Macro",
  35846. height: math.unit(260, "meters"),
  35847. default: true
  35848. },
  35849. ]
  35850. ))
  35851. characterMakers.push(() => makeCharacter(
  35852. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35853. {
  35854. front: {
  35855. height: math.unit(4 + 10/12, "feet"),
  35856. weight: math.unit(160, "lb"),
  35857. name: "Front",
  35858. image: {
  35859. source: "./media/characters/chip-mouse/front.svg",
  35860. extra: 3528/3408,
  35861. bottom: 0/3528
  35862. }
  35863. },
  35864. frontNsfw: {
  35865. height: math.unit(4 + 10/12, "feet"),
  35866. weight: math.unit(160, "lb"),
  35867. name: "Front (NSFW)",
  35868. image: {
  35869. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35870. extra: 3528/3408,
  35871. bottom: 0/3528
  35872. }
  35873. },
  35874. },
  35875. [
  35876. {
  35877. name: "Normal",
  35878. height: math.unit(4 + 10/12, "feet"),
  35879. default: true
  35880. },
  35881. ]
  35882. ))
  35883. characterMakers.push(() => makeCharacter(
  35884. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35885. {
  35886. side: {
  35887. height: math.unit(10, "feet"),
  35888. weight: math.unit(14000, "lb"),
  35889. name: "Side",
  35890. image: {
  35891. source: "./media/characters/kremm/side.svg",
  35892. extra: 1390/1053,
  35893. bottom: 90/1480
  35894. }
  35895. },
  35896. gut: {
  35897. height: math.unit(5.8, "feet"),
  35898. name: "Gut",
  35899. image: {
  35900. source: "./media/characters/kremm/gut.svg"
  35901. }
  35902. },
  35903. ass: {
  35904. height: math.unit(6.1, "feet"),
  35905. name: "Ass",
  35906. image: {
  35907. source: "./media/characters/kremm/ass.svg"
  35908. }
  35909. },
  35910. jaws: {
  35911. height: math.unit(2.2, "feet"),
  35912. name: "Jaws",
  35913. image: {
  35914. source: "./media/characters/kremm/jaws.svg"
  35915. }
  35916. },
  35917. dick: {
  35918. height: math.unit(4.26, "feet"),
  35919. name: "Dick",
  35920. image: {
  35921. source: "./media/characters/kremm/dick.svg"
  35922. }
  35923. },
  35924. },
  35925. [
  35926. {
  35927. name: "Normal",
  35928. height: math.unit(10, "feet"),
  35929. default: true
  35930. },
  35931. ]
  35932. ))
  35933. characterMakers.push(() => makeCharacter(
  35934. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35935. {
  35936. front: {
  35937. height: math.unit(30, "stories"),
  35938. name: "Front",
  35939. image: {
  35940. source: "./media/characters/kai/front.svg",
  35941. extra: 1892/1718,
  35942. bottom: 162/2054
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Macro",
  35949. height: math.unit(30, "stories"),
  35950. default: true
  35951. },
  35952. ]
  35953. ))
  35954. characterMakers.push(() => makeCharacter(
  35955. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35956. {
  35957. front: {
  35958. height: math.unit(6 + 4/12, "feet"),
  35959. weight: math.unit(145, "lb"),
  35960. name: "Front",
  35961. image: {
  35962. source: "./media/characters/sykes/front.svg",
  35963. extra: 1321 / 1187,
  35964. bottom: 66 / 1387
  35965. }
  35966. },
  35967. back: {
  35968. height: math.unit(6 + 4/12, "feet"),
  35969. weight: math.unit(145, "lb"),
  35970. name: "Back",
  35971. image: {
  35972. source: "./media/characters/sykes/back.svg",
  35973. extra: 1326/1181,
  35974. bottom: 31/1357
  35975. }
  35976. },
  35977. traditionalOutfit: {
  35978. height: math.unit(6 + 4/12, "feet"),
  35979. weight: math.unit(145, "lb"),
  35980. name: "Traditional Outfit",
  35981. image: {
  35982. source: "./media/characters/sykes/traditional-outfit.svg",
  35983. extra: 1321 / 1187,
  35984. bottom: 66 / 1387
  35985. }
  35986. },
  35987. adventureOutfit: {
  35988. height: math.unit(6 + 4/12, "feet"),
  35989. weight: math.unit(145, "lb"),
  35990. name: "Adventure Outfit",
  35991. image: {
  35992. source: "./media/characters/sykes/adventure-outfit.svg",
  35993. extra: 1321 / 1187,
  35994. bottom: 66 / 1387
  35995. }
  35996. },
  35997. handLeft: {
  35998. height: math.unit(0.9, "feet"),
  35999. name: "Hand (Left)",
  36000. image: {
  36001. source: "./media/characters/sykes/hand-left.svg"
  36002. }
  36003. },
  36004. handRight: {
  36005. height: math.unit(0.839, "feet"),
  36006. name: "Hand (Right)",
  36007. image: {
  36008. source: "./media/characters/sykes/hand-right.svg"
  36009. }
  36010. },
  36011. leftFoot: {
  36012. height: math.unit(1.2, "feet"),
  36013. name: "Foot (Left)",
  36014. image: {
  36015. source: "./media/characters/sykes/foot-left.svg"
  36016. }
  36017. },
  36018. rightFoot: {
  36019. height: math.unit(1.2, "feet"),
  36020. name: "Foot (Right)",
  36021. image: {
  36022. source: "./media/characters/sykes/foot-right.svg"
  36023. }
  36024. },
  36025. maw: {
  36026. height: math.unit(1.93, "feet"),
  36027. name: "Maw",
  36028. image: {
  36029. source: "./media/characters/sykes/maw.svg"
  36030. }
  36031. },
  36032. teeth: {
  36033. height: math.unit(0.51, "feet"),
  36034. name: "Teeth",
  36035. image: {
  36036. source: "./media/characters/sykes/teeth.svg"
  36037. }
  36038. },
  36039. tongue: {
  36040. height: math.unit(2.13, "feet"),
  36041. name: "Tongue",
  36042. image: {
  36043. source: "./media/characters/sykes/tongue.svg"
  36044. }
  36045. },
  36046. uvula: {
  36047. height: math.unit(0.16, "feet"),
  36048. name: "Uvula",
  36049. image: {
  36050. source: "./media/characters/sykes/uvula.svg"
  36051. }
  36052. },
  36053. collar: {
  36054. height: math.unit(0.287, "feet"),
  36055. name: "Collar",
  36056. image: {
  36057. source: "./media/characters/sykes/collar.svg"
  36058. }
  36059. },
  36060. tail: {
  36061. height: math.unit(3.8, "feet"),
  36062. name: "Tail",
  36063. image: {
  36064. source: "./media/characters/sykes/tail.svg"
  36065. }
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Shrunken",
  36071. height: math.unit(5, "inches")
  36072. },
  36073. {
  36074. name: "Normal",
  36075. height: math.unit(6 + 4 / 12, "feet"),
  36076. default: true
  36077. },
  36078. {
  36079. name: "Big",
  36080. height: math.unit(15, "feet")
  36081. },
  36082. ]
  36083. ))
  36084. characterMakers.push(() => makeCharacter(
  36085. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36086. {
  36087. front: {
  36088. height: math.unit(5 + 8/12, "feet"),
  36089. weight: math.unit(190, "lb"),
  36090. name: "Front",
  36091. image: {
  36092. source: "./media/characters/oven-otter/front.svg",
  36093. extra: 1809/1740,
  36094. bottom: 181/1990
  36095. }
  36096. },
  36097. back: {
  36098. height: math.unit(5 + 8/12, "feet"),
  36099. weight: math.unit(190, "lb"),
  36100. name: "Back",
  36101. image: {
  36102. source: "./media/characters/oven-otter/back.svg",
  36103. extra: 1709/1635,
  36104. bottom: 118/1827
  36105. }
  36106. },
  36107. hand: {
  36108. height: math.unit(1.07, "feet"),
  36109. name: "Hand",
  36110. image: {
  36111. source: "./media/characters/oven-otter/hand.svg"
  36112. }
  36113. },
  36114. beans: {
  36115. height: math.unit(1.74, "feet"),
  36116. name: "Beans",
  36117. image: {
  36118. source: "./media/characters/oven-otter/beans.svg"
  36119. }
  36120. },
  36121. },
  36122. [
  36123. {
  36124. name: "Micro",
  36125. height: math.unit(0.5, "inches")
  36126. },
  36127. {
  36128. name: "Normal",
  36129. height: math.unit(5 + 8/12, "feet"),
  36130. default: true
  36131. },
  36132. {
  36133. name: "Macro",
  36134. height: math.unit(250, "feet")
  36135. },
  36136. {
  36137. name: "Really High",
  36138. height: math.unit(420, "feet")
  36139. },
  36140. ]
  36141. ))
  36142. characterMakers.push(() => makeCharacter(
  36143. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36144. {
  36145. front: {
  36146. height: math.unit(5, "meters"),
  36147. weight: math.unit(292000000000000, "kg"),
  36148. name: "Front",
  36149. image: {
  36150. source: "./media/characters/devourer/front.svg",
  36151. extra: 1800/1733,
  36152. bottom: 211/2011
  36153. }
  36154. },
  36155. maw: {
  36156. height: math.unit(1.1, "meter"),
  36157. name: "Maw",
  36158. image: {
  36159. source: "./media/characters/devourer/maw.svg"
  36160. }
  36161. },
  36162. },
  36163. [
  36164. {
  36165. name: "Small",
  36166. height: math.unit(3, "meters")
  36167. },
  36168. {
  36169. name: "Large",
  36170. height: math.unit(5, "meters"),
  36171. default: true
  36172. },
  36173. ]
  36174. ))
  36175. characterMakers.push(() => makeCharacter(
  36176. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36177. {
  36178. front: {
  36179. height: math.unit(6, "feet"),
  36180. weight: math.unit(400, "lb"),
  36181. name: "Front",
  36182. image: {
  36183. source: "./media/characters/ellarby/front.svg",
  36184. extra: 1909/1763,
  36185. bottom: 80/1989
  36186. }
  36187. },
  36188. back: {
  36189. height: math.unit(6, "feet"),
  36190. weight: math.unit(400, "lb"),
  36191. name: "Back",
  36192. image: {
  36193. source: "./media/characters/ellarby/back.svg",
  36194. extra: 1914/1784,
  36195. bottom: 172/2086
  36196. }
  36197. },
  36198. },
  36199. [
  36200. {
  36201. name: "Mischief",
  36202. height: math.unit(18, "inches")
  36203. },
  36204. {
  36205. name: "Trouble",
  36206. height: math.unit(12, "feet")
  36207. },
  36208. {
  36209. name: "Havoc",
  36210. height: math.unit(200, "feet"),
  36211. default: true
  36212. },
  36213. {
  36214. name: "Pandemonium",
  36215. height: math.unit(1, "mile")
  36216. },
  36217. {
  36218. name: "Catastrophe",
  36219. height: math.unit(100, "miles")
  36220. },
  36221. ]
  36222. ))
  36223. characterMakers.push(() => makeCharacter(
  36224. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36225. {
  36226. front: {
  36227. height: math.unit(4.7, "meters"),
  36228. weight: math.unit(6500, "kg"),
  36229. name: "Front",
  36230. image: {
  36231. source: "./media/characters/vex/front.svg",
  36232. extra: 1288/1140,
  36233. bottom: 100/1388
  36234. }
  36235. },
  36236. },
  36237. [
  36238. {
  36239. name: "Normal",
  36240. height: math.unit(4.7, "meters"),
  36241. default: true
  36242. },
  36243. ]
  36244. ))
  36245. characterMakers.push(() => makeCharacter(
  36246. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36247. {
  36248. normal: {
  36249. height: math.unit(6, "feet"),
  36250. weight: math.unit(350, "lb"),
  36251. name: "Normal",
  36252. image: {
  36253. source: "./media/characters/teshy/normal.svg",
  36254. extra: 1795/1735,
  36255. bottom: 16/1811
  36256. }
  36257. },
  36258. monsterFront: {
  36259. height: math.unit(12, "feet"),
  36260. weight: math.unit(4700, "lb"),
  36261. name: "Monster (Front)",
  36262. image: {
  36263. source: "./media/characters/teshy/monster-front.svg",
  36264. extra: 2042/2034,
  36265. bottom: 128/2170
  36266. }
  36267. },
  36268. monsterSide: {
  36269. height: math.unit(12, "feet"),
  36270. weight: math.unit(4700, "lb"),
  36271. name: "Monster (Side)",
  36272. image: {
  36273. source: "./media/characters/teshy/monster-side.svg",
  36274. extra: 2067/2056,
  36275. bottom: 70/2137
  36276. }
  36277. },
  36278. monsterBack: {
  36279. height: math.unit(12, "feet"),
  36280. weight: math.unit(4700, "lb"),
  36281. name: "Monster (Back)",
  36282. image: {
  36283. source: "./media/characters/teshy/monster-back.svg",
  36284. extra: 1921/1914,
  36285. bottom: 171/2092
  36286. }
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Normal",
  36292. height: math.unit(6, "feet"),
  36293. default: true
  36294. },
  36295. ]
  36296. ))
  36297. characterMakers.push(() => makeCharacter(
  36298. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36299. {
  36300. front: {
  36301. height: math.unit(6, "feet"),
  36302. name: "Front",
  36303. image: {
  36304. source: "./media/characters/ramey/front.svg",
  36305. extra: 790/787,
  36306. bottom: 27/817
  36307. }
  36308. },
  36309. },
  36310. [
  36311. {
  36312. name: "Normal",
  36313. height: math.unit(6, "feet"),
  36314. default: true
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36320. {
  36321. front: {
  36322. height: math.unit(5 + 5/12, "feet"),
  36323. weight: math.unit(120, "lb"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/phirae/front.svg",
  36327. extra: 2491/2436,
  36328. bottom: 38/2529
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Normal",
  36335. height: math.unit(5 + 5/12, "feet"),
  36336. default: true
  36337. },
  36338. ]
  36339. ))
  36340. characterMakers.push(() => makeCharacter(
  36341. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36342. {
  36343. front: {
  36344. height: math.unit(5 + 3/12, "feet"),
  36345. name: "Front",
  36346. image: {
  36347. source: "./media/characters/stagglas/front.svg",
  36348. extra: 962/882,
  36349. bottom: 53/1015
  36350. }
  36351. },
  36352. feral: {
  36353. height: math.unit(335, "cm"),
  36354. name: "Feral",
  36355. image: {
  36356. source: "./media/characters/stagglas/feral.svg",
  36357. extra: 1732/1090,
  36358. bottom: 48/1780
  36359. }
  36360. },
  36361. },
  36362. [
  36363. {
  36364. name: "Normal",
  36365. height: math.unit(5 + 3/12, "feet"),
  36366. default: true
  36367. },
  36368. ]
  36369. ))
  36370. characterMakers.push(() => makeCharacter(
  36371. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36372. {
  36373. front: {
  36374. height: math.unit(5 + 4/12, "feet"),
  36375. weight: math.unit(145, "lb"),
  36376. name: "Front",
  36377. image: {
  36378. source: "./media/characters/starra/front.svg",
  36379. extra: 1790/1691,
  36380. bottom: 91/1881
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(5 + 4/12, "feet"),
  36388. default: true
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36394. {
  36395. front: {
  36396. height: math.unit(2.2, "meters"),
  36397. name: "Front",
  36398. image: {
  36399. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36400. extra: 1248/972,
  36401. bottom: 38/1286
  36402. }
  36403. },
  36404. },
  36405. [
  36406. {
  36407. name: "Normal",
  36408. height: math.unit(2.2, "meters"),
  36409. default: true
  36410. },
  36411. ]
  36412. ))
  36413. characterMakers.push(() => makeCharacter(
  36414. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36415. {
  36416. side: {
  36417. height: math.unit(8 + 2/12, "feet"),
  36418. weight: math.unit(1240, "lb"),
  36419. name: "Side",
  36420. image: {
  36421. source: "./media/characters/mika-valentine/side.svg",
  36422. extra: 2670/2501,
  36423. bottom: 250/2920
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Normal",
  36430. height: math.unit(8 + 2/12, "feet"),
  36431. default: true
  36432. },
  36433. ]
  36434. ))
  36435. characterMakers.push(() => makeCharacter(
  36436. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36437. {
  36438. front: {
  36439. height: math.unit(7 + 2/12, "feet"),
  36440. name: "Front",
  36441. image: {
  36442. source: "./media/characters/xoltol/front.svg",
  36443. extra: 2212/2124,
  36444. bottom: 84/2296
  36445. }
  36446. },
  36447. side: {
  36448. height: math.unit(7 + 2/12, "feet"),
  36449. name: "Side",
  36450. image: {
  36451. source: "./media/characters/xoltol/side.svg",
  36452. extra: 2273/2197,
  36453. bottom: 26/2299
  36454. }
  36455. },
  36456. hand: {
  36457. height: math.unit(2.5, "feet"),
  36458. name: "Hand",
  36459. image: {
  36460. source: "./media/characters/xoltol/hand.svg"
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Small-ish",
  36467. height: math.unit(5 + 11/12, "feet")
  36468. },
  36469. {
  36470. name: "Normal",
  36471. height: math.unit(7 + 2/12, "feet")
  36472. },
  36473. {
  36474. name: "\"Macro\"",
  36475. height: math.unit(14 + 9/12, "feet"),
  36476. default: true
  36477. },
  36478. {
  36479. name: "Alternate Height",
  36480. height: math.unit(20, "feet")
  36481. },
  36482. {
  36483. name: "Actually Macro",
  36484. height: math.unit(100, "feet")
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36490. {
  36491. front: {
  36492. height: math.unit(5 + 2/12, "feet"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/kotetsu-redwood/front.svg",
  36496. extra: 1053/942,
  36497. bottom: 60/1113
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Normal",
  36504. height: math.unit(5 + 2/12, "feet"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36511. {
  36512. front: {
  36513. height: math.unit(2.4, "meters"),
  36514. weight: math.unit(125, "kg"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/lilith/front.svg",
  36518. extra: 1590/1513,
  36519. bottom: 203/1793
  36520. }
  36521. },
  36522. },
  36523. [
  36524. {
  36525. name: "Humanoid",
  36526. height: math.unit(2.4, "meters")
  36527. },
  36528. {
  36529. name: "Normal",
  36530. height: math.unit(6, "meters"),
  36531. default: true
  36532. },
  36533. {
  36534. name: "Largest",
  36535. height: math.unit(55, "meters")
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36541. {
  36542. front: {
  36543. height: math.unit(8 + 4/12, "feet"),
  36544. weight: math.unit(535, "lb"),
  36545. name: "Front",
  36546. image: {
  36547. source: "./media/characters/beh'kah-bolger/front.svg",
  36548. extra: 1660/1603,
  36549. bottom: 37/1697
  36550. }
  36551. },
  36552. },
  36553. [
  36554. {
  36555. name: "Normal",
  36556. height: math.unit(8 + 4/12, "feet"),
  36557. default: true
  36558. },
  36559. {
  36560. name: "Kaiju",
  36561. height: math.unit(250, "feet")
  36562. },
  36563. {
  36564. name: "Still Growing",
  36565. height: math.unit(10, "miles")
  36566. },
  36567. {
  36568. name: "Continental",
  36569. height: math.unit(5000, "miles")
  36570. },
  36571. {
  36572. name: "Final Form",
  36573. height: math.unit(2500000, "miles")
  36574. },
  36575. ]
  36576. ))
  36577. characterMakers.push(() => makeCharacter(
  36578. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36579. {
  36580. front: {
  36581. height: math.unit(7 + 2/12, "feet"),
  36582. weight: math.unit(230, "kg"),
  36583. name: "Front",
  36584. image: {
  36585. source: "./media/characters/tatyana-milewska/front.svg",
  36586. extra: 1199/1150,
  36587. bottom: 86/1285
  36588. }
  36589. },
  36590. },
  36591. [
  36592. {
  36593. name: "Normal",
  36594. height: math.unit(7 + 2/12, "feet"),
  36595. default: true
  36596. },
  36597. {
  36598. name: "Big",
  36599. height: math.unit(12, "feet")
  36600. },
  36601. {
  36602. name: "Minimacro",
  36603. height: math.unit(20, "feet")
  36604. },
  36605. {
  36606. name: "Macro",
  36607. height: math.unit(120, "feet")
  36608. },
  36609. ]
  36610. ))
  36611. characterMakers.push(() => makeCharacter(
  36612. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36613. {
  36614. front: {
  36615. height: math.unit(7 + 8/12, "feet"),
  36616. weight: math.unit(152, "kg"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/helen-arri/front.svg",
  36620. extra: 440/423,
  36621. bottom: 14/454
  36622. }
  36623. },
  36624. back: {
  36625. height: math.unit(7 + 8/12, "feet"),
  36626. weight: math.unit(152, "kg"),
  36627. name: "Back",
  36628. image: {
  36629. source: "./media/characters/helen-arri/back.svg",
  36630. extra: 443/426,
  36631. bottom: 8/451
  36632. }
  36633. },
  36634. },
  36635. [
  36636. {
  36637. name: "Normal",
  36638. height: math.unit(7 + 8/12, "feet"),
  36639. default: true
  36640. },
  36641. {
  36642. name: "Big",
  36643. height: math.unit(14, "feet")
  36644. },
  36645. {
  36646. name: "Minimacro",
  36647. height: math.unit(24, "feet")
  36648. },
  36649. {
  36650. name: "Macro",
  36651. height: math.unit(140, "feet")
  36652. },
  36653. ]
  36654. ))
  36655. characterMakers.push(() => makeCharacter(
  36656. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36657. {
  36658. front: {
  36659. height: math.unit(6, "meters"),
  36660. name: "Front",
  36661. image: {
  36662. source: "./media/characters/ehanu-rehu/front.svg",
  36663. extra: 1800/1800,
  36664. bottom: 59/1859
  36665. }
  36666. },
  36667. },
  36668. [
  36669. {
  36670. name: "Normal",
  36671. height: math.unit(6, "meters"),
  36672. default: true
  36673. },
  36674. ]
  36675. ))
  36676. characterMakers.push(() => makeCharacter(
  36677. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36678. {
  36679. front: {
  36680. height: math.unit(7 + 3/12, "feet"),
  36681. name: "Front",
  36682. image: {
  36683. source: "./media/characters/renholder/front.svg",
  36684. extra: 3096/2960,
  36685. bottom: 250/3346
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal Bat",
  36692. height: math.unit(7 + 3/12, "feet"),
  36693. default: true
  36694. },
  36695. {
  36696. name: "Slightly Tall Bat",
  36697. height: math.unit(100, "feet")
  36698. },
  36699. {
  36700. name: "Big Bat",
  36701. height: math.unit(1000, "feet")
  36702. },
  36703. {
  36704. name: "City-Sized Bat",
  36705. height: math.unit(200000, "feet")
  36706. },
  36707. {
  36708. name: "Bigger Bat",
  36709. height: math.unit(10000, "miles")
  36710. },
  36711. {
  36712. name: "Solar Sized Bat",
  36713. height: math.unit(100, "AU")
  36714. },
  36715. {
  36716. name: "Galactic Bat",
  36717. height: math.unit(200000, "lightyears")
  36718. },
  36719. {
  36720. name: "Universally Known Bat",
  36721. height: math.unit(1, "universe")
  36722. },
  36723. ]
  36724. ))
  36725. characterMakers.push(() => makeCharacter(
  36726. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36727. {
  36728. front: {
  36729. height: math.unit(6 + 11/12, "feet"),
  36730. weight: math.unit(250, "lb"),
  36731. name: "Front",
  36732. image: {
  36733. source: "./media/characters/cookiecat/front.svg",
  36734. extra: 893/827,
  36735. bottom: 14/907
  36736. }
  36737. },
  36738. },
  36739. [
  36740. {
  36741. name: "Micro",
  36742. height: math.unit(3, "inches")
  36743. },
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(6 + 11/12, "feet"),
  36747. default: true
  36748. },
  36749. {
  36750. name: "Macro",
  36751. height: math.unit(100, "feet")
  36752. },
  36753. {
  36754. name: "Macro+",
  36755. height: math.unit(404, "feet")
  36756. },
  36757. {
  36758. name: "Megamacro",
  36759. height: math.unit(165, "miles")
  36760. },
  36761. {
  36762. name: "Planetary",
  36763. height: math.unit(4600, "miles")
  36764. },
  36765. ]
  36766. ))
  36767. characterMakers.push(() => makeCharacter(
  36768. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36769. {
  36770. front: {
  36771. height: math.unit(10 + 3/12, "feet"),
  36772. weight: math.unit(1500, "lb"),
  36773. name: "Front",
  36774. image: {
  36775. source: "./media/characters/tux-kusanagi/front.svg",
  36776. extra: 944/840,
  36777. bottom: 39/983
  36778. }
  36779. },
  36780. back: {
  36781. height: math.unit(10 + 3/12, "feet"),
  36782. weight: math.unit(1500, "lb"),
  36783. name: "Back",
  36784. image: {
  36785. source: "./media/characters/tux-kusanagi/back.svg",
  36786. extra: 941/842,
  36787. bottom: 28/969
  36788. }
  36789. },
  36790. rump: {
  36791. height: math.unit(5.25, "feet"),
  36792. name: "Rump",
  36793. image: {
  36794. source: "./media/characters/tux-kusanagi/rump.svg"
  36795. }
  36796. },
  36797. beak: {
  36798. height: math.unit(1.54, "feet"),
  36799. name: "Beak",
  36800. image: {
  36801. source: "./media/characters/tux-kusanagi/beak.svg"
  36802. }
  36803. },
  36804. },
  36805. [
  36806. {
  36807. name: "Normal",
  36808. height: math.unit(10 + 3/12, "feet"),
  36809. default: true
  36810. },
  36811. ]
  36812. ))
  36813. characterMakers.push(() => makeCharacter(
  36814. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36815. {
  36816. front: {
  36817. height: math.unit(58, "feet"),
  36818. weight: math.unit(200, "tons"),
  36819. name: "Front",
  36820. image: {
  36821. source: "./media/characters/uzarmazari/front.svg",
  36822. extra: 1575/1455,
  36823. bottom: 152/1727
  36824. }
  36825. },
  36826. back: {
  36827. height: math.unit(58, "feet"),
  36828. weight: math.unit(200, "tons"),
  36829. name: "Back",
  36830. image: {
  36831. source: "./media/characters/uzarmazari/back.svg",
  36832. extra: 1585/1510,
  36833. bottom: 157/1742
  36834. }
  36835. },
  36836. head: {
  36837. height: math.unit(26, "feet"),
  36838. name: "Head",
  36839. image: {
  36840. source: "./media/characters/uzarmazari/head.svg"
  36841. }
  36842. },
  36843. },
  36844. [
  36845. {
  36846. name: "Normal",
  36847. height: math.unit(58, "feet"),
  36848. default: true
  36849. },
  36850. ]
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36854. {
  36855. side: {
  36856. height: math.unit(15, "feet"),
  36857. name: "Side",
  36858. image: {
  36859. source: "./media/characters/akitu/side.svg",
  36860. extra: 1421/1321,
  36861. bottom: 157/1578
  36862. }
  36863. },
  36864. front: {
  36865. height: math.unit(15, "feet"),
  36866. name: "Front",
  36867. image: {
  36868. source: "./media/characters/akitu/front.svg",
  36869. extra: 1435/1326,
  36870. bottom: 232/1667
  36871. }
  36872. },
  36873. },
  36874. [
  36875. {
  36876. name: "Normal",
  36877. height: math.unit(15, "feet"),
  36878. default: true
  36879. },
  36880. ]
  36881. ))
  36882. characterMakers.push(() => makeCharacter(
  36883. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36884. {
  36885. front: {
  36886. height: math.unit(10 + 8/12, "feet"),
  36887. name: "Front",
  36888. image: {
  36889. source: "./media/characters/azalie-croixland/front.svg",
  36890. extra: 1972/1856,
  36891. bottom: 31/2003
  36892. }
  36893. },
  36894. },
  36895. [
  36896. {
  36897. name: "Original Height",
  36898. height: math.unit(5 + 4/12, "feet")
  36899. },
  36900. {
  36901. name: "Normal Height",
  36902. height: math.unit(10 + 8/12, "feet"),
  36903. default: true
  36904. },
  36905. ]
  36906. ))
  36907. characterMakers.push(() => makeCharacter(
  36908. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36909. {
  36910. side: {
  36911. height: math.unit(7 + 1/12, "feet"),
  36912. weight: math.unit(245, "lb"),
  36913. name: "Side",
  36914. image: {
  36915. source: "./media/characters/kavus-kazian/side.svg",
  36916. extra: 349/342,
  36917. bottom: 15/364
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Normal",
  36924. height: math.unit(7 + 1/12, "feet"),
  36925. default: true
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36931. {
  36932. normalFront: {
  36933. height: math.unit(5 + 11/12, "feet"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/moonlight-rose/normal-front.svg",
  36937. extra: 1980/1825,
  36938. bottom: 18/1998
  36939. },
  36940. form: "normal",
  36941. default: true
  36942. },
  36943. normalBack: {
  36944. height: math.unit(5 + 11/12, "feet"),
  36945. name: "Back",
  36946. image: {
  36947. source: "./media/characters/moonlight-rose/normal-back.svg",
  36948. extra: 2010/1839,
  36949. bottom: 10/2020
  36950. },
  36951. form: "normal"
  36952. },
  36953. demonFront: {
  36954. height: math.unit(1.5, "earths"),
  36955. name: "Front",
  36956. image: {
  36957. source: "./media/characters/moonlight-rose/demon.svg",
  36958. extra: 1400/1294,
  36959. bottom: 45/1445
  36960. },
  36961. form: "demon",
  36962. default: true
  36963. },
  36964. terraFront: {
  36965. height: math.unit(1.5, "earths"),
  36966. name: "Front",
  36967. image: {
  36968. source: "./media/characters/moonlight-rose/terra.svg"
  36969. },
  36970. form: "terra",
  36971. default: true
  36972. },
  36973. jupiterFront: {
  36974. height: math.unit(69911*2, "km"),
  36975. name: "Front",
  36976. image: {
  36977. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36978. extra: 1367/1286,
  36979. bottom: 55/1422
  36980. },
  36981. form: "jupiter",
  36982. default: true
  36983. },
  36984. neptuneFront: {
  36985. height: math.unit(24622*2, "feet"),
  36986. name: "Front",
  36987. image: {
  36988. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36989. extra: 1851/1712,
  36990. bottom: 0/1851
  36991. },
  36992. form: "neptune",
  36993. default: true
  36994. },
  36995. },
  36996. [
  36997. {
  36998. name: "\"Natural\" Height",
  36999. height: math.unit(5 + 11/12, "feet"),
  37000. form: "normal"
  37001. },
  37002. {
  37003. name: "Smallest comfortable size",
  37004. height: math.unit(40, "meters"),
  37005. form: "normal"
  37006. },
  37007. {
  37008. name: "Common size",
  37009. height: math.unit(50, "km"),
  37010. form: "normal",
  37011. default: true
  37012. },
  37013. {
  37014. name: "Normal",
  37015. height: math.unit(1.5, "earths"),
  37016. form: "demon",
  37017. default: true
  37018. },
  37019. {
  37020. name: "Universal",
  37021. height: math.unit(15, "universes"),
  37022. form: "demon"
  37023. },
  37024. {
  37025. name: "Earth",
  37026. height: math.unit(1.5, "earths"),
  37027. form: "terra",
  37028. default: true
  37029. },
  37030. {
  37031. name: "Super Earth",
  37032. height: math.unit(67.5, "earths"),
  37033. form: "terra"
  37034. },
  37035. {
  37036. name: "Doesn't fit in a solar system...",
  37037. height: math.unit(1, "galaxy"),
  37038. form: "terra"
  37039. },
  37040. {
  37041. name: "Saturn",
  37042. height: math.unit(58232*2, "km"),
  37043. form: "jupiter"
  37044. },
  37045. {
  37046. name: "Jupiter",
  37047. height: math.unit(69911*2, "km"),
  37048. form: "jupiter",
  37049. default: true
  37050. },
  37051. {
  37052. name: "HD 100546 b",
  37053. height: math.unit(482938, "km"),
  37054. form: "jupiter"
  37055. },
  37056. {
  37057. name: "Enceladus",
  37058. height: math.unit(513*2, "km"),
  37059. form: "neptune"
  37060. },
  37061. {
  37062. name: "Europe",
  37063. height: math.unit(1560*2, "km"),
  37064. form: "neptune"
  37065. },
  37066. {
  37067. name: "Neptune",
  37068. height: math.unit(24622*2, "km"),
  37069. form: "neptune",
  37070. default: true
  37071. },
  37072. {
  37073. name: "CoRoT-9b",
  37074. height: math.unit(75067*2, "km"),
  37075. form: "neptune"
  37076. },
  37077. ],
  37078. {
  37079. "normal": {
  37080. name: "Normal",
  37081. default: true
  37082. },
  37083. "demon": {
  37084. name: "Demon"
  37085. },
  37086. "terra": {
  37087. name: "Terra"
  37088. },
  37089. "jupiter": {
  37090. name: "Jupiter"
  37091. },
  37092. "neptune": {
  37093. name: "Neptune"
  37094. }
  37095. }
  37096. ))
  37097. characterMakers.push(() => makeCharacter(
  37098. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37099. {
  37100. front: {
  37101. height: math.unit(16, "feet"),
  37102. weight: math.unit(610, "kg"),
  37103. name: "Front",
  37104. image: {
  37105. source: "./media/characters/huckle/front.svg",
  37106. extra: 1731/1625,
  37107. bottom: 33/1764
  37108. }
  37109. },
  37110. back: {
  37111. height: math.unit(16, "feet"),
  37112. weight: math.unit(610, "kg"),
  37113. name: "Back",
  37114. image: {
  37115. source: "./media/characters/huckle/back.svg",
  37116. extra: 1738/1651,
  37117. bottom: 37/1775
  37118. }
  37119. },
  37120. laughing: {
  37121. height: math.unit(3.75, "feet"),
  37122. name: "Laughing",
  37123. image: {
  37124. source: "./media/characters/huckle/laughing.svg"
  37125. }
  37126. },
  37127. angry: {
  37128. height: math.unit(4.15, "feet"),
  37129. name: "Angry",
  37130. image: {
  37131. source: "./media/characters/huckle/angry.svg"
  37132. }
  37133. },
  37134. },
  37135. [
  37136. {
  37137. name: "Normal",
  37138. height: math.unit(16, "feet"),
  37139. default: true
  37140. },
  37141. {
  37142. name: "Mini Macro",
  37143. height: math.unit(463, "feet")
  37144. },
  37145. {
  37146. name: "Macro",
  37147. height: math.unit(1680, "meters")
  37148. },
  37149. {
  37150. name: "Mega Macro",
  37151. height: math.unit(175, "km")
  37152. },
  37153. {
  37154. name: "Terra Macro",
  37155. height: math.unit(32, "gigameters")
  37156. },
  37157. {
  37158. name: "Multiverse+",
  37159. height: math.unit(2.56e23, "yottameters")
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37165. {
  37166. front: {
  37167. height: math.unit(6 + 9/12, "feet"),
  37168. weight: math.unit(280, "lb"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/candy/front.svg",
  37172. extra: 234/217,
  37173. bottom: 11/245
  37174. }
  37175. },
  37176. },
  37177. [
  37178. {
  37179. name: "Really Small",
  37180. height: math.unit(0.1, "nm")
  37181. },
  37182. {
  37183. name: "Micro",
  37184. height: math.unit(2, "inches")
  37185. },
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(6 + 9/12, "feet"),
  37189. default: true
  37190. },
  37191. {
  37192. name: "Small Macro",
  37193. height: math.unit(69, "feet")
  37194. },
  37195. {
  37196. name: "Macro",
  37197. height: math.unit(160, "feet")
  37198. },
  37199. {
  37200. name: "Megamacro",
  37201. height: math.unit(22000, "miles")
  37202. },
  37203. {
  37204. name: "Gigamacro",
  37205. height: math.unit(50000, "miles")
  37206. },
  37207. ]
  37208. ))
  37209. characterMakers.push(() => makeCharacter(
  37210. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37211. {
  37212. front: {
  37213. height: math.unit(4, "feet"),
  37214. weight: math.unit(90, "lb"),
  37215. name: "Front",
  37216. image: {
  37217. source: "./media/characters/joey-mcdonald/front.svg",
  37218. extra: 1059/852,
  37219. bottom: 33/1092
  37220. }
  37221. },
  37222. back: {
  37223. height: math.unit(4, "feet"),
  37224. weight: math.unit(90, "lb"),
  37225. name: "Back",
  37226. image: {
  37227. source: "./media/characters/joey-mcdonald/back.svg",
  37228. extra: 1077/879,
  37229. bottom: 5/1082
  37230. }
  37231. },
  37232. frontKobold: {
  37233. height: math.unit(4, "feet"),
  37234. weight: math.unit(100, "lb"),
  37235. name: "Front-kobold",
  37236. image: {
  37237. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37238. extra: 1480/1367,
  37239. bottom: 0/1480
  37240. }
  37241. },
  37242. backKobold: {
  37243. height: math.unit(4, "feet"),
  37244. weight: math.unit(100, "lb"),
  37245. name: "Back-kobold",
  37246. image: {
  37247. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37248. extra: 1449/1361,
  37249. bottom: 0/1449
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Normal",
  37256. height: math.unit(4, "feet"),
  37257. default: true
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37263. {
  37264. front: {
  37265. height: math.unit(12 + 6/12, "feet"),
  37266. name: "Front",
  37267. image: {
  37268. source: "./media/characters/kass-lockheed/front.svg",
  37269. extra: 354/343,
  37270. bottom: 9/363
  37271. }
  37272. },
  37273. back: {
  37274. height: math.unit(12 + 6/12, "feet"),
  37275. name: "Back",
  37276. image: {
  37277. source: "./media/characters/kass-lockheed/back.svg",
  37278. extra: 364/352,
  37279. bottom: 3/367
  37280. }
  37281. },
  37282. dick: {
  37283. height: math.unit(3.12, "feet"),
  37284. name: "Dick",
  37285. image: {
  37286. source: "./media/characters/kass-lockheed/dick.svg"
  37287. }
  37288. },
  37289. head: {
  37290. height: math.unit(2.6, "feet"),
  37291. name: "Head",
  37292. image: {
  37293. source: "./media/characters/kass-lockheed/head.svg"
  37294. }
  37295. },
  37296. bleh: {
  37297. height: math.unit(2.85, "feet"),
  37298. name: "Bleh",
  37299. image: {
  37300. source: "./media/characters/kass-lockheed/bleh.svg"
  37301. }
  37302. },
  37303. smug: {
  37304. height: math.unit(2.85, "feet"),
  37305. name: "Smug",
  37306. image: {
  37307. source: "./media/characters/kass-lockheed/smug.svg"
  37308. }
  37309. },
  37310. },
  37311. [
  37312. {
  37313. name: "Normal",
  37314. height: math.unit(12 + 6/12, "feet"),
  37315. default: true
  37316. },
  37317. ]
  37318. ))
  37319. characterMakers.push(() => makeCharacter(
  37320. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37321. {
  37322. front: {
  37323. height: math.unit(6 + 2/12, "feet"),
  37324. name: "Front",
  37325. image: {
  37326. source: "./media/characters/taylor/front.svg",
  37327. extra: 639/495,
  37328. bottom: 12/651
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Normal",
  37335. height: math.unit(6 + 2/12, "feet"),
  37336. default: true
  37337. },
  37338. {
  37339. name: "Big",
  37340. height: math.unit(15, "feet")
  37341. },
  37342. {
  37343. name: "Lorg",
  37344. height: math.unit(80, "feet")
  37345. },
  37346. {
  37347. name: "Too Lorg",
  37348. height: math.unit(120, "feet")
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37354. {
  37355. front: {
  37356. height: math.unit(15, "feet"),
  37357. name: "Front",
  37358. image: {
  37359. source: "./media/characters/kaizer/front.svg",
  37360. extra: 1612/1436,
  37361. bottom: 43/1655
  37362. }
  37363. },
  37364. },
  37365. [
  37366. {
  37367. name: "Normal",
  37368. height: math.unit(15, "feet"),
  37369. default: true
  37370. },
  37371. ]
  37372. ))
  37373. characterMakers.push(() => makeCharacter(
  37374. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37375. {
  37376. front: {
  37377. height: math.unit(2, "feet"),
  37378. weight: math.unit(30, "lb"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/sandy/front.svg",
  37382. extra: 1439/1307,
  37383. bottom: 194/1633
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Normal",
  37390. height: math.unit(2, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(3, "feet"),
  37400. name: "Front",
  37401. image: {
  37402. source: "./media/characters/mellvi/front.svg",
  37403. extra: 1831/1630,
  37404. bottom: 58/1889
  37405. }
  37406. },
  37407. },
  37408. [
  37409. {
  37410. name: "Normal",
  37411. height: math.unit(3, "feet"),
  37412. default: true
  37413. },
  37414. ]
  37415. ))
  37416. characterMakers.push(() => makeCharacter(
  37417. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37418. {
  37419. front: {
  37420. height: math.unit(5 + 11/12, "feet"),
  37421. weight: math.unit(200, "lb"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/shirou/front.svg",
  37425. extra: 2491/2383,
  37426. bottom: 189/2680
  37427. }
  37428. },
  37429. back: {
  37430. height: math.unit(5 + 11/12, "feet"),
  37431. weight: math.unit(200, "lb"),
  37432. name: "Back",
  37433. image: {
  37434. source: "./media/characters/shirou/back.svg",
  37435. extra: 2554/2450,
  37436. bottom: 76/2630
  37437. }
  37438. },
  37439. },
  37440. [
  37441. {
  37442. name: "Normal",
  37443. height: math.unit(5 + 11/12, "feet"),
  37444. default: true
  37445. },
  37446. ]
  37447. ))
  37448. characterMakers.push(() => makeCharacter(
  37449. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37450. {
  37451. front: {
  37452. height: math.unit(6 + 3/12, "feet"),
  37453. weight: math.unit(177, "lb"),
  37454. name: "Front",
  37455. image: {
  37456. source: "./media/characters/noryu/front.svg",
  37457. extra: 973/885,
  37458. bottom: 10/983
  37459. }
  37460. },
  37461. },
  37462. [
  37463. {
  37464. name: "Normal",
  37465. height: math.unit(6 + 3/12, "feet"),
  37466. default: true
  37467. },
  37468. ]
  37469. ))
  37470. characterMakers.push(() => makeCharacter(
  37471. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37472. {
  37473. front: {
  37474. height: math.unit(5 + 6/12, "feet"),
  37475. weight: math.unit(170, "lb"),
  37476. name: "Front",
  37477. image: {
  37478. source: "./media/characters/mevolas-rubenido/front.svg",
  37479. extra: 2109/1901,
  37480. bottom: 96/2205
  37481. }
  37482. },
  37483. },
  37484. [
  37485. {
  37486. name: "Normal",
  37487. height: math.unit(5 + 6/12, "feet"),
  37488. default: true
  37489. },
  37490. ]
  37491. ))
  37492. characterMakers.push(() => makeCharacter(
  37493. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37494. {
  37495. front: {
  37496. height: math.unit(100, "feet"),
  37497. name: "Front",
  37498. image: {
  37499. source: "./media/characters/dee/front.svg",
  37500. extra: 2153/2036,
  37501. bottom: 59/2212
  37502. }
  37503. },
  37504. back: {
  37505. height: math.unit(100, "feet"),
  37506. name: "Back",
  37507. image: {
  37508. source: "./media/characters/dee/back.svg",
  37509. extra: 2183/2058,
  37510. bottom: 75/2258
  37511. }
  37512. },
  37513. foot: {
  37514. height: math.unit(19.43, "feet"),
  37515. name: "Foot",
  37516. image: {
  37517. source: "./media/characters/dee/foot.svg"
  37518. }
  37519. },
  37520. hoof: {
  37521. height: math.unit(20.6, "feet"),
  37522. name: "Hoof",
  37523. image: {
  37524. source: "./media/characters/dee/hoof.svg"
  37525. }
  37526. },
  37527. },
  37528. [
  37529. {
  37530. name: "Macro",
  37531. height: math.unit(100, "feet"),
  37532. default: true
  37533. },
  37534. ]
  37535. ))
  37536. characterMakers.push(() => makeCharacter(
  37537. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37538. {
  37539. front: {
  37540. height: math.unit(5 + 6/12, "feet"),
  37541. name: "Front",
  37542. image: {
  37543. source: "./media/characters/teh/front.svg",
  37544. extra: 1002/847,
  37545. bottom: 62/1064
  37546. }
  37547. },
  37548. },
  37549. [
  37550. {
  37551. name: "Normal",
  37552. height: math.unit(5 + 6/12, "feet"),
  37553. default: true
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37559. {
  37560. side: {
  37561. height: math.unit(6 + 1/12, "feet"),
  37562. weight: math.unit(204, "lb"),
  37563. name: "Side",
  37564. image: {
  37565. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37566. extra: 974/775,
  37567. bottom: 169/1143
  37568. }
  37569. },
  37570. sitting: {
  37571. height: math.unit(6 + 2/12, "feet"),
  37572. weight: math.unit(204, "lb"),
  37573. name: "Sitting",
  37574. image: {
  37575. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37576. extra: 1175/964,
  37577. bottom: 378/1553
  37578. }
  37579. },
  37580. },
  37581. [
  37582. {
  37583. name: "Normal",
  37584. height: math.unit(6 + 1/12, "feet"),
  37585. default: true
  37586. },
  37587. ]
  37588. ))
  37589. characterMakers.push(() => makeCharacter(
  37590. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37591. {
  37592. front: {
  37593. height: math.unit(6, "inches"),
  37594. name: "Front",
  37595. image: {
  37596. source: "./media/characters/tululi/front.svg",
  37597. extra: 1997/1876,
  37598. bottom: 20/2017
  37599. }
  37600. },
  37601. },
  37602. [
  37603. {
  37604. name: "Normal",
  37605. height: math.unit(6, "inches"),
  37606. default: true
  37607. },
  37608. ]
  37609. ))
  37610. characterMakers.push(() => makeCharacter(
  37611. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37612. {
  37613. front: {
  37614. height: math.unit(4 + 1/12, "feet"),
  37615. name: "Front",
  37616. image: {
  37617. source: "./media/characters/star/front.svg",
  37618. extra: 1493/1189,
  37619. bottom: 48/1541
  37620. }
  37621. },
  37622. },
  37623. [
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(4 + 1/12, "feet"),
  37627. default: true
  37628. },
  37629. ]
  37630. ))
  37631. characterMakers.push(() => makeCharacter(
  37632. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37633. {
  37634. front: {
  37635. height: math.unit(6 + 3/12, "feet"),
  37636. name: "Front",
  37637. image: {
  37638. source: "./media/characters/comet/front.svg",
  37639. extra: 1681/1462,
  37640. bottom: 26/1707
  37641. }
  37642. },
  37643. },
  37644. [
  37645. {
  37646. name: "Normal",
  37647. height: math.unit(6 + 3/12, "feet"),
  37648. default: true
  37649. },
  37650. ]
  37651. ))
  37652. characterMakers.push(() => makeCharacter(
  37653. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37654. {
  37655. front: {
  37656. height: math.unit(950, "feet"),
  37657. name: "Front",
  37658. image: {
  37659. source: "./media/characters/vortex/front.svg",
  37660. extra: 1497/1434,
  37661. bottom: 56/1553
  37662. }
  37663. },
  37664. maw: {
  37665. height: math.unit(285, "feet"),
  37666. name: "Maw",
  37667. image: {
  37668. source: "./media/characters/vortex/maw.svg"
  37669. }
  37670. },
  37671. },
  37672. [
  37673. {
  37674. name: "Macro",
  37675. height: math.unit(950, "feet"),
  37676. default: true
  37677. },
  37678. ]
  37679. ))
  37680. characterMakers.push(() => makeCharacter(
  37681. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37682. {
  37683. front: {
  37684. height: math.unit(600, "feet"),
  37685. weight: math.unit(0.02, "grams"),
  37686. name: "Front",
  37687. image: {
  37688. source: "./media/characters/doodle/front.svg",
  37689. extra: 1578/1413,
  37690. bottom: 37/1615
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Macro",
  37697. height: math.unit(600, "feet"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(6 + 6/12, "feet"),
  37707. name: "Front",
  37708. image: {
  37709. source: "./media/characters/jai/front.svg",
  37710. extra: 1645/1534,
  37711. bottom: 115/1760
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(6 + 6/12, "feet"),
  37719. default: true
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37725. {
  37726. front: {
  37727. height: math.unit(6 + 8/12, "feet"),
  37728. name: "Front",
  37729. image: {
  37730. source: "./media/characters/pixel/front.svg",
  37731. extra: 1900/1735,
  37732. bottom: 63/1963
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Normal",
  37739. height: math.unit(6 + 8/12, "feet"),
  37740. default: true
  37741. },
  37742. ]
  37743. ))
  37744. characterMakers.push(() => makeCharacter(
  37745. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37746. {
  37747. back: {
  37748. height: math.unit(4 + 1/12, "feet"),
  37749. weight: math.unit(75, "lb"),
  37750. name: "Back",
  37751. image: {
  37752. source: "./media/characters/rhett/back.svg",
  37753. extra: 930/878,
  37754. bottom: 25/955
  37755. }
  37756. },
  37757. front: {
  37758. height: math.unit(4 + 1/12, "feet"),
  37759. weight: math.unit(75, "lb"),
  37760. name: "Front",
  37761. image: {
  37762. source: "./media/characters/rhett/front.svg",
  37763. extra: 1682/1586,
  37764. bottom: 92/1774
  37765. }
  37766. },
  37767. },
  37768. [
  37769. {
  37770. name: "Micro",
  37771. height: math.unit(8, "inches")
  37772. },
  37773. {
  37774. name: "Tiny",
  37775. height: math.unit(2, "feet")
  37776. },
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(4 + 1/12, "feet"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37786. {
  37787. front: {
  37788. height: math.unit(3 + 3/12, "feet"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/penny/front.svg",
  37792. extra: 1406/1311,
  37793. bottom: 26/1432
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(3 + 3/12, "feet"),
  37801. default: true
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37807. {
  37808. front: {
  37809. height: math.unit(4 + 11/12, "feet"),
  37810. name: "Front",
  37811. image: {
  37812. source: "./media/characters/monty/front.svg",
  37813. extra: 1479/1209,
  37814. bottom: 0/1479
  37815. }
  37816. },
  37817. },
  37818. [
  37819. {
  37820. name: "Normal",
  37821. height: math.unit(4 + 11/12, "feet"),
  37822. default: true
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(8 + 4/12, "feet"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/sterling/front.svg",
  37834. extra: 1420/1236,
  37835. bottom: 27/1447
  37836. }
  37837. },
  37838. },
  37839. [
  37840. {
  37841. name: "Normal",
  37842. height: math.unit(8 + 4/12, "feet"),
  37843. default: true
  37844. },
  37845. ]
  37846. ))
  37847. characterMakers.push(() => makeCharacter(
  37848. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37849. {
  37850. front: {
  37851. height: math.unit(15, "feet"),
  37852. name: "Front",
  37853. image: {
  37854. source: "./media/characters/marble/front.svg",
  37855. extra: 973/937,
  37856. bottom: 32/1005
  37857. }
  37858. },
  37859. },
  37860. [
  37861. {
  37862. name: "Normal",
  37863. height: math.unit(15, "feet"),
  37864. default: true
  37865. },
  37866. ]
  37867. ))
  37868. characterMakers.push(() => makeCharacter(
  37869. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37870. {
  37871. front: {
  37872. height: math.unit(3, "inches"),
  37873. name: "Front",
  37874. image: {
  37875. source: "./media/characters/powder/front.svg",
  37876. extra: 1504/1334,
  37877. bottom: 518/2022
  37878. }
  37879. },
  37880. },
  37881. [
  37882. {
  37883. name: "Normal",
  37884. height: math.unit(3, "inches"),
  37885. default: true
  37886. },
  37887. ]
  37888. ))
  37889. characterMakers.push(() => makeCharacter(
  37890. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37891. {
  37892. front: {
  37893. height: math.unit(4 + 5/12, "feet"),
  37894. name: "Front",
  37895. image: {
  37896. source: "./media/characters/joey-raccoon/front.svg",
  37897. extra: 1273/1197,
  37898. bottom: 0/1273
  37899. }
  37900. },
  37901. },
  37902. [
  37903. {
  37904. name: "Normal",
  37905. height: math.unit(4 + 5/12, "feet"),
  37906. default: true
  37907. },
  37908. ]
  37909. ))
  37910. characterMakers.push(() => makeCharacter(
  37911. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37912. {
  37913. front: {
  37914. height: math.unit(8 + 4/12, "feet"),
  37915. name: "Front",
  37916. image: {
  37917. source: "./media/characters/vick/front.svg",
  37918. extra: 2187/2118,
  37919. bottom: 47/2234
  37920. }
  37921. },
  37922. },
  37923. [
  37924. {
  37925. name: "Normal",
  37926. height: math.unit(8 + 4/12, "feet"),
  37927. default: true
  37928. },
  37929. ]
  37930. ))
  37931. characterMakers.push(() => makeCharacter(
  37932. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37933. {
  37934. front: {
  37935. height: math.unit(5 + 5/12, "feet"),
  37936. name: "Front",
  37937. image: {
  37938. source: "./media/characters/mitsy/front.svg",
  37939. extra: 1842/1695,
  37940. bottom: 0/1842
  37941. }
  37942. },
  37943. },
  37944. [
  37945. {
  37946. name: "Normal",
  37947. height: math.unit(5 + 5/12, "feet"),
  37948. default: true
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(6 + 3/12, "feet"),
  37957. name: "Front",
  37958. image: {
  37959. source: "./media/characters/silvy/front.svg",
  37960. extra: 1995/1836,
  37961. bottom: 225/2220
  37962. }
  37963. },
  37964. },
  37965. [
  37966. {
  37967. name: "Normal",
  37968. height: math.unit(6 + 3/12, "feet"),
  37969. default: true
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37975. {
  37976. front: {
  37977. height: math.unit(3 + 8/12, "feet"),
  37978. name: "Front",
  37979. image: {
  37980. source: "./media/characters/rodney/front.svg",
  37981. extra: 1956/1747,
  37982. bottom: 31/1987
  37983. }
  37984. },
  37985. frontDressed: {
  37986. height: math.unit(2.9, "feet"),
  37987. name: "Front (Dressed)",
  37988. image: {
  37989. source: "./media/characters/rodney/front-dressed.svg",
  37990. extra: 1382/1241,
  37991. bottom: 385/1767
  37992. }
  37993. },
  37994. },
  37995. [
  37996. {
  37997. name: "Normal",
  37998. height: math.unit(3 + 8/12, "feet"),
  37999. default: true
  38000. },
  38001. ]
  38002. ))
  38003. characterMakers.push(() => makeCharacter(
  38004. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38005. {
  38006. front: {
  38007. height: math.unit(5 + 9/12, "feet"),
  38008. weight: math.unit(194, "lbs"),
  38009. name: "Front",
  38010. image: {
  38011. source: "./media/characters/zakail-sudekai/front.svg",
  38012. extra: 2696/2533,
  38013. bottom: 248/2944
  38014. }
  38015. },
  38016. maw: {
  38017. height: math.unit(1.35, "feet"),
  38018. name: "Maw",
  38019. image: {
  38020. source: "./media/characters/zakail-sudekai/maw.svg"
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(5 + 9/12, "feet"),
  38028. default: true
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38034. {
  38035. front: {
  38036. height: math.unit(8 + 4/12, "feet"),
  38037. weight: math.unit(1200, "lb"),
  38038. name: "Front",
  38039. image: {
  38040. source: "./media/characters/eleanor/front.svg",
  38041. extra: 1226/1192,
  38042. bottom: 52/1278
  38043. }
  38044. },
  38045. back: {
  38046. height: math.unit(8 + 4/12, "feet"),
  38047. weight: math.unit(1200, "lb"),
  38048. name: "Back",
  38049. image: {
  38050. source: "./media/characters/eleanor/back.svg",
  38051. extra: 1242/1184,
  38052. bottom: 60/1302
  38053. }
  38054. },
  38055. head: {
  38056. height: math.unit(2.62, "feet"),
  38057. name: "Head",
  38058. image: {
  38059. source: "./media/characters/eleanor/head.svg"
  38060. }
  38061. },
  38062. },
  38063. [
  38064. {
  38065. name: "Normal",
  38066. height: math.unit(8 + 4/12, "feet"),
  38067. default: true
  38068. },
  38069. ]
  38070. ))
  38071. characterMakers.push(() => makeCharacter(
  38072. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38073. {
  38074. front: {
  38075. height: math.unit(8 + 4/12, "feet"),
  38076. weight: math.unit(750, "lb"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/tanya/front.svg",
  38080. extra: 1749/1615,
  38081. bottom: 33/1782
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(8 + 4/12, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(5, "feet"),
  38098. weight: math.unit(225, "lb"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/cindy/front.svg",
  38102. extra: 1320/1250,
  38103. bottom: 42/1362
  38104. }
  38105. },
  38106. frontDressed: {
  38107. height: math.unit(5, "feet"),
  38108. weight: math.unit(225, "lb"),
  38109. name: "Front (Dressed)",
  38110. image: {
  38111. source: "./media/characters/cindy/front-dressed.svg",
  38112. extra: 1320/1250,
  38113. bottom: 42/1362
  38114. }
  38115. },
  38116. back: {
  38117. height: math.unit(5, "feet"),
  38118. weight: math.unit(225, "lb"),
  38119. name: "Back",
  38120. image: {
  38121. source: "./media/characters/cindy/back.svg",
  38122. extra: 1384/1346,
  38123. bottom: 14/1398
  38124. }
  38125. },
  38126. },
  38127. [
  38128. {
  38129. name: "Normal",
  38130. height: math.unit(5, "feet"),
  38131. default: true
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38137. {
  38138. front: {
  38139. height: math.unit(6 + 9/12, "feet"),
  38140. weight: math.unit(440, "lb"),
  38141. name: "Front",
  38142. image: {
  38143. source: "./media/characters/wilbur-owen/front.svg",
  38144. extra: 1575/1448,
  38145. bottom: 72/1647
  38146. }
  38147. },
  38148. back: {
  38149. height: math.unit(6 + 9/12, "feet"),
  38150. weight: math.unit(440, "lb"),
  38151. name: "Back",
  38152. image: {
  38153. source: "./media/characters/wilbur-owen/back.svg",
  38154. extra: 1578/1445,
  38155. bottom: 36/1614
  38156. }
  38157. },
  38158. },
  38159. [
  38160. {
  38161. name: "Normal",
  38162. height: math.unit(6 + 9/12, "feet"),
  38163. default: true
  38164. },
  38165. ]
  38166. ))
  38167. characterMakers.push(() => makeCharacter(
  38168. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38169. {
  38170. front: {
  38171. height: math.unit(6 + 5/12, "feet"),
  38172. weight: math.unit(650, "lb"),
  38173. name: "Front",
  38174. image: {
  38175. source: "./media/characters/keegan/front.svg",
  38176. extra: 2387/2198,
  38177. bottom: 33/2420
  38178. }
  38179. },
  38180. side: {
  38181. height: math.unit(6 + 5/12, "feet"),
  38182. weight: math.unit(650, "lb"),
  38183. name: "Side",
  38184. image: {
  38185. source: "./media/characters/keegan/side.svg",
  38186. extra: 2390/2202,
  38187. bottom: 47/2437
  38188. }
  38189. },
  38190. back: {
  38191. height: math.unit(6 + 5/12, "feet"),
  38192. weight: math.unit(650, "lb"),
  38193. name: "Back",
  38194. image: {
  38195. source: "./media/characters/keegan/back.svg",
  38196. extra: 2418/2268,
  38197. bottom: 15/2433
  38198. }
  38199. },
  38200. frontSfw: {
  38201. height: math.unit(6 + 5/12, "feet"),
  38202. weight: math.unit(650, "lb"),
  38203. name: "Front (SFW)",
  38204. image: {
  38205. source: "./media/characters/keegan/front-sfw.svg",
  38206. extra: 2387/2198,
  38207. bottom: 33/2420
  38208. }
  38209. },
  38210. beans: {
  38211. height: math.unit(1.85, "feet"),
  38212. name: "Beans",
  38213. image: {
  38214. source: "./media/characters/keegan/beans.svg"
  38215. }
  38216. },
  38217. },
  38218. [
  38219. {
  38220. name: "Normal",
  38221. height: math.unit(6 + 5/12, "feet"),
  38222. default: true
  38223. },
  38224. ]
  38225. ))
  38226. characterMakers.push(() => makeCharacter(
  38227. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38228. {
  38229. front: {
  38230. height: math.unit(9, "feet"),
  38231. name: "Front",
  38232. image: {
  38233. source: "./media/characters/colton/front.svg",
  38234. extra: 1589/1326,
  38235. bottom: 139/1728
  38236. }
  38237. },
  38238. },
  38239. [
  38240. {
  38241. name: "Normal",
  38242. height: math.unit(9, "feet"),
  38243. default: true
  38244. },
  38245. ]
  38246. ))
  38247. characterMakers.push(() => makeCharacter(
  38248. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38249. {
  38250. front: {
  38251. height: math.unit(2 + 9/12, "feet"),
  38252. name: "Front",
  38253. image: {
  38254. source: "./media/characters/bora/front.svg",
  38255. extra: 1265/1250,
  38256. bottom: 24/1289
  38257. }
  38258. },
  38259. },
  38260. [
  38261. {
  38262. name: "Normal",
  38263. height: math.unit(2 + 9/12, "feet"),
  38264. default: true
  38265. },
  38266. ]
  38267. ))
  38268. characterMakers.push(() => makeCharacter(
  38269. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38270. {
  38271. front: {
  38272. height: math.unit(8, "feet"),
  38273. name: "Front",
  38274. image: {
  38275. source: "./media/characters/myu-myu/front.svg",
  38276. extra: 1949/1857,
  38277. bottom: 90/2039
  38278. }
  38279. },
  38280. },
  38281. [
  38282. {
  38283. name: "Normal",
  38284. height: math.unit(8, "feet"),
  38285. default: true
  38286. },
  38287. {
  38288. name: "Big",
  38289. height: math.unit(15, "feet")
  38290. },
  38291. {
  38292. name: "BIG",
  38293. height: math.unit(25, "feet")
  38294. },
  38295. ]
  38296. ))
  38297. characterMakers.push(() => makeCharacter(
  38298. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38299. {
  38300. side: {
  38301. height: math.unit(7 + 5/12, "feet"),
  38302. weight: math.unit(2800, "lb"),
  38303. name: "Side",
  38304. image: {
  38305. source: "./media/characters/haloren/side.svg",
  38306. extra: 1793/409,
  38307. bottom: 59/1852
  38308. }
  38309. },
  38310. frontPaw: {
  38311. height: math.unit(2.36, "feet"),
  38312. name: "Front paw",
  38313. image: {
  38314. source: "./media/characters/haloren/front-paw.svg"
  38315. }
  38316. },
  38317. hindPaw: {
  38318. height: math.unit(3.18, "feet"),
  38319. name: "Hind paw",
  38320. image: {
  38321. source: "./media/characters/haloren/hind-paw.svg"
  38322. }
  38323. },
  38324. maw: {
  38325. height: math.unit(5.05, "feet"),
  38326. name: "Maw",
  38327. image: {
  38328. source: "./media/characters/haloren/maw.svg"
  38329. }
  38330. },
  38331. dick: {
  38332. height: math.unit(2.90, "feet"),
  38333. name: "Dick",
  38334. image: {
  38335. source: "./media/characters/haloren/dick.svg"
  38336. }
  38337. },
  38338. },
  38339. [
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(7 + 5/12, "feet"),
  38343. default: true
  38344. },
  38345. {
  38346. name: "Enhanced",
  38347. height: math.unit(14 + 3/12, "feet")
  38348. },
  38349. ]
  38350. ))
  38351. characterMakers.push(() => makeCharacter(
  38352. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38353. {
  38354. front: {
  38355. height: math.unit(171, "cm"),
  38356. name: "Front",
  38357. image: {
  38358. source: "./media/characters/kimmy/front.svg",
  38359. extra: 1491/1435,
  38360. bottom: 53/1544
  38361. }
  38362. },
  38363. },
  38364. [
  38365. {
  38366. name: "Small",
  38367. height: math.unit(9, "cm")
  38368. },
  38369. {
  38370. name: "Normal",
  38371. height: math.unit(171, "cm"),
  38372. default: true
  38373. },
  38374. ]
  38375. ))
  38376. characterMakers.push(() => makeCharacter(
  38377. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38378. {
  38379. front: {
  38380. height: math.unit(8, "feet"),
  38381. weight: math.unit(300, "lb"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/galeboomer/front.svg",
  38385. extra: 4651/4415,
  38386. bottom: 162/4813
  38387. }
  38388. },
  38389. back: {
  38390. height: math.unit(8, "feet"),
  38391. weight: math.unit(300, "lb"),
  38392. name: "Back",
  38393. image: {
  38394. source: "./media/characters/galeboomer/back.svg",
  38395. extra: 4544/4314,
  38396. bottom: 16/4560
  38397. }
  38398. },
  38399. frontAlt: {
  38400. height: math.unit(8, "feet"),
  38401. weight: math.unit(300, "lb"),
  38402. name: "Front (Alt)",
  38403. image: {
  38404. source: "./media/characters/galeboomer/front-alt.svg",
  38405. extra: 4458/4228,
  38406. bottom: 68/4526
  38407. }
  38408. },
  38409. maw: {
  38410. height: math.unit(1.2, "feet"),
  38411. name: "Maw",
  38412. image: {
  38413. source: "./media/characters/galeboomer/maw.svg"
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(8, "feet"),
  38421. default: true
  38422. },
  38423. ]
  38424. ))
  38425. characterMakers.push(() => makeCharacter(
  38426. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38427. {
  38428. front: {
  38429. height: math.unit(5 + 9/12, "feet"),
  38430. weight: math.unit(120, "lb"),
  38431. name: "Front",
  38432. image: {
  38433. source: "./media/characters/chyr/front.svg",
  38434. extra: 1323/1254,
  38435. bottom: 63/1386
  38436. }
  38437. },
  38438. back: {
  38439. height: math.unit(5 + 9/12, "feet"),
  38440. weight: math.unit(120, "lb"),
  38441. name: "Back",
  38442. image: {
  38443. source: "./media/characters/chyr/back.svg",
  38444. extra: 1323/1252,
  38445. bottom: 48/1371
  38446. }
  38447. },
  38448. },
  38449. [
  38450. {
  38451. name: "Normal",
  38452. height: math.unit(5 + 9/12, "feet"),
  38453. default: true
  38454. },
  38455. ]
  38456. ))
  38457. characterMakers.push(() => makeCharacter(
  38458. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38459. {
  38460. front: {
  38461. height: math.unit(7, "feet"),
  38462. weight: math.unit(310, "lb"),
  38463. name: "Front",
  38464. image: {
  38465. source: "./media/characters/solarus/front.svg",
  38466. extra: 2415/2021,
  38467. bottom: 103/2518
  38468. }
  38469. },
  38470. back: {
  38471. height: math.unit(7, "feet"),
  38472. weight: math.unit(310, "lb"),
  38473. name: "Back",
  38474. image: {
  38475. source: "./media/characters/solarus/back.svg",
  38476. extra: 2463/2089,
  38477. bottom: 79/2542
  38478. }
  38479. },
  38480. },
  38481. [
  38482. {
  38483. name: "Normal",
  38484. height: math.unit(7, "feet"),
  38485. default: true
  38486. },
  38487. ]
  38488. ))
  38489. characterMakers.push(() => makeCharacter(
  38490. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38491. {
  38492. front: {
  38493. height: math.unit(16, "feet"),
  38494. name: "Front",
  38495. image: {
  38496. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38497. extra: 1844/1780,
  38498. bottom: 58/1902
  38499. }
  38500. },
  38501. winterCoat: {
  38502. height: math.unit(16, "feet"),
  38503. name: "Winter Coat",
  38504. image: {
  38505. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38506. extra: 1807/1775,
  38507. bottom: 69/1876
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Normal",
  38514. height: math.unit(16, "feet"),
  38515. default: true
  38516. },
  38517. {
  38518. name: "Chicago Size",
  38519. height: math.unit(560, "feet")
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38525. {
  38526. front: {
  38527. height: math.unit(11 + 6/12, "feet"),
  38528. weight: math.unit(1366, "lb"),
  38529. name: "Front",
  38530. image: {
  38531. source: "./media/characters/lexor/front.svg",
  38532. extra: 1560/1481,
  38533. bottom: 211/1771
  38534. }
  38535. },
  38536. back: {
  38537. height: math.unit(11 + 6/12, "feet"),
  38538. weight: math.unit(1366, "lb"),
  38539. name: "Back",
  38540. image: {
  38541. source: "./media/characters/lexor/back.svg",
  38542. extra: 1614/1533,
  38543. bottom: 76/1690
  38544. }
  38545. },
  38546. maw: {
  38547. height: math.unit(3, "feet"),
  38548. name: "Maw",
  38549. image: {
  38550. source: "./media/characters/lexor/maw.svg"
  38551. }
  38552. },
  38553. dick: {
  38554. height: math.unit(2.59, "feet"),
  38555. name: "Dick",
  38556. image: {
  38557. source: "./media/characters/lexor/dick.svg"
  38558. }
  38559. },
  38560. },
  38561. [
  38562. {
  38563. name: "Normal",
  38564. height: math.unit(11 + 6/12, "feet"),
  38565. default: true
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38571. {
  38572. front: {
  38573. height: math.unit(5 + 8/12, "feet"),
  38574. name: "Front",
  38575. image: {
  38576. source: "./media/characters/magnum/front.svg",
  38577. extra: 942/855,
  38578. bottom: 26/968
  38579. }
  38580. },
  38581. },
  38582. [
  38583. {
  38584. name: "Normal",
  38585. height: math.unit(5 + 8/12, "feet"),
  38586. default: true
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38592. {
  38593. front: {
  38594. height: math.unit(18 + 4/12, "feet"),
  38595. weight: math.unit(1500, "kg"),
  38596. name: "Front",
  38597. image: {
  38598. source: "./media/characters/solas-sharpsman/front.svg",
  38599. extra: 1698/1589,
  38600. bottom: 0/1698
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(18 + 4/12, "feet"),
  38608. default: true
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38614. {
  38615. front: {
  38616. height: math.unit(5 + 5/12, "feet"),
  38617. weight: math.unit(180, "lb"),
  38618. name: "Front",
  38619. image: {
  38620. source: "./media/characters/october/front.svg",
  38621. extra: 1800/1650,
  38622. bottom: 0/1800
  38623. }
  38624. },
  38625. frontNsfw: {
  38626. height: math.unit(5 + 5/12, "feet"),
  38627. weight: math.unit(180, "lb"),
  38628. name: "Front (NSFW)",
  38629. image: {
  38630. source: "./media/characters/october/front-nsfw.svg",
  38631. extra: 1392/1307,
  38632. bottom: 42/1434
  38633. }
  38634. },
  38635. },
  38636. [
  38637. {
  38638. name: "Normal",
  38639. height: math.unit(5 + 5/12, "feet"),
  38640. default: true
  38641. },
  38642. ]
  38643. ))
  38644. characterMakers.push(() => makeCharacter(
  38645. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38646. {
  38647. front: {
  38648. height: math.unit(8 + 6/12, "feet"),
  38649. name: "Front",
  38650. image: {
  38651. source: "./media/characters/essynkardi/front.svg",
  38652. extra: 1914/1846,
  38653. bottom: 22/1936
  38654. }
  38655. },
  38656. },
  38657. [
  38658. {
  38659. name: "Normal",
  38660. height: math.unit(8 + 6/12, "feet"),
  38661. default: true
  38662. },
  38663. ]
  38664. ))
  38665. characterMakers.push(() => makeCharacter(
  38666. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38667. {
  38668. front: {
  38669. height: math.unit(6 + 6/12, "feet"),
  38670. weight: math.unit(7, "lb"),
  38671. name: "Front",
  38672. image: {
  38673. source: "./media/characters/icky/front.svg",
  38674. extra: 813/782,
  38675. bottom: 66/879
  38676. }
  38677. },
  38678. back: {
  38679. height: math.unit(6 + 6/12, "feet"),
  38680. weight: math.unit(7, "lb"),
  38681. name: "Back",
  38682. image: {
  38683. source: "./media/characters/icky/back.svg",
  38684. extra: 754/735,
  38685. bottom: 56/810
  38686. }
  38687. },
  38688. },
  38689. [
  38690. {
  38691. name: "Normal",
  38692. height: math.unit(6 + 6/12, "feet"),
  38693. default: true
  38694. },
  38695. ]
  38696. ))
  38697. characterMakers.push(() => makeCharacter(
  38698. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38699. {
  38700. front: {
  38701. height: math.unit(15, "feet"),
  38702. name: "Front",
  38703. image: {
  38704. source: "./media/characters/rojas/front.svg",
  38705. extra: 1462/1408,
  38706. bottom: 95/1557
  38707. }
  38708. },
  38709. back: {
  38710. height: math.unit(15, "feet"),
  38711. name: "Back",
  38712. image: {
  38713. source: "./media/characters/rojas/back.svg",
  38714. extra: 1023/954,
  38715. bottom: 28/1051
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Normal",
  38722. height: math.unit(15, "feet"),
  38723. default: true
  38724. },
  38725. ]
  38726. ))
  38727. characterMakers.push(() => makeCharacter(
  38728. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38729. {
  38730. frontHuman: {
  38731. height: math.unit(5 + 7/12, "feet"),
  38732. name: "Front (Human)",
  38733. image: {
  38734. source: "./media/characters/alek-dryagan/front-human.svg",
  38735. extra: 1687/1667,
  38736. bottom: 69/1756
  38737. }
  38738. },
  38739. backHuman: {
  38740. height: math.unit(5 + 7/12, "feet"),
  38741. name: "Back (Human)",
  38742. image: {
  38743. source: "./media/characters/alek-dryagan/back-human.svg",
  38744. extra: 1670/1649,
  38745. bottom: 65/1735
  38746. }
  38747. },
  38748. frontDemi: {
  38749. height: math.unit(65, "feet"),
  38750. name: "Front (Demi)",
  38751. image: {
  38752. source: "./media/characters/alek-dryagan/front-demi.svg",
  38753. extra: 1669/1642,
  38754. bottom: 49/1718
  38755. }
  38756. },
  38757. backDemi: {
  38758. height: math.unit(65, "feet"),
  38759. name: "Back (Demi)",
  38760. image: {
  38761. source: "./media/characters/alek-dryagan/back-demi.svg",
  38762. extra: 1658/1637,
  38763. bottom: 40/1698
  38764. }
  38765. },
  38766. mawHuman: {
  38767. height: math.unit(0.3, "feet"),
  38768. name: "Maw (Human)",
  38769. image: {
  38770. source: "./media/characters/alek-dryagan/maw-human.svg"
  38771. }
  38772. },
  38773. mawDemi: {
  38774. height: math.unit(3.8, "feet"),
  38775. name: "Maw (Demi)",
  38776. image: {
  38777. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(5 + 7/12, "feet"),
  38785. default: true
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38791. {
  38792. frontHuman: {
  38793. height: math.unit(5 + 2/12, "feet"),
  38794. name: "Front (Human)",
  38795. image: {
  38796. source: "./media/characters/gen/front-human.svg",
  38797. extra: 1627/1538,
  38798. bottom: 71/1698
  38799. }
  38800. },
  38801. backHuman: {
  38802. height: math.unit(5 + 2/12, "feet"),
  38803. name: "Back (Human)",
  38804. image: {
  38805. source: "./media/characters/gen/back-human.svg",
  38806. extra: 1638/1548,
  38807. bottom: 69/1707
  38808. }
  38809. },
  38810. frontDemi: {
  38811. height: math.unit(5 + 2/12, "feet"),
  38812. name: "Front (Demi)",
  38813. image: {
  38814. source: "./media/characters/gen/front-demi.svg",
  38815. extra: 1627/1538,
  38816. bottom: 71/1698
  38817. }
  38818. },
  38819. backDemi: {
  38820. height: math.unit(5 + 2/12, "feet"),
  38821. name: "Back (Demi)",
  38822. image: {
  38823. source: "./media/characters/gen/back-demi.svg",
  38824. extra: 1638/1548,
  38825. bottom: 69/1707
  38826. }
  38827. },
  38828. },
  38829. [
  38830. {
  38831. name: "Normal",
  38832. height: math.unit(5 + 2/12, "feet"),
  38833. default: true
  38834. },
  38835. ]
  38836. ))
  38837. characterMakers.push(() => makeCharacter(
  38838. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38839. {
  38840. frontImp: {
  38841. height: math.unit(1 + 11/12, "feet"),
  38842. name: "Front (Imp)",
  38843. image: {
  38844. source: "./media/characters/max-kobold/front-imp.svg",
  38845. extra: 1238/1134,
  38846. bottom: 81/1319
  38847. }
  38848. },
  38849. backImp: {
  38850. height: math.unit(1 + 11/12, "feet"),
  38851. name: "Back (Imp)",
  38852. image: {
  38853. source: "./media/characters/max-kobold/back-imp.svg",
  38854. extra: 1334/1175,
  38855. bottom: 34/1368
  38856. }
  38857. },
  38858. frontDemi: {
  38859. height: math.unit(5 + 9/12, "feet"),
  38860. name: "Front (Demi)",
  38861. image: {
  38862. source: "./media/characters/max-kobold/front-demi.svg",
  38863. extra: 1715/1685,
  38864. bottom: 54/1769
  38865. }
  38866. },
  38867. backDemi: {
  38868. height: math.unit(5 + 9/12, "feet"),
  38869. name: "Back (Demi)",
  38870. image: {
  38871. source: "./media/characters/max-kobold/back-demi.svg",
  38872. extra: 1752/1729,
  38873. bottom: 41/1793
  38874. }
  38875. },
  38876. handImp: {
  38877. height: math.unit(0.45, "feet"),
  38878. name: "Hand (Imp)",
  38879. image: {
  38880. source: "./media/characters/max-kobold/hand.svg"
  38881. }
  38882. },
  38883. pawImp: {
  38884. height: math.unit(0.46, "feet"),
  38885. name: "Paw (Imp)",
  38886. image: {
  38887. source: "./media/characters/max-kobold/paw.svg"
  38888. }
  38889. },
  38890. handDemi: {
  38891. height: math.unit(0.80, "feet"),
  38892. name: "Hand (Demi)",
  38893. image: {
  38894. source: "./media/characters/max-kobold/hand.svg"
  38895. }
  38896. },
  38897. pawDemi: {
  38898. height: math.unit(1.1, "feet"),
  38899. name: "Paw (Demi)",
  38900. image: {
  38901. source: "./media/characters/max-kobold/paw.svg"
  38902. }
  38903. },
  38904. headImp: {
  38905. height: math.unit(1.33, "feet"),
  38906. name: "Head (Imp)",
  38907. image: {
  38908. source: "./media/characters/max-kobold/head-imp.svg"
  38909. }
  38910. },
  38911. mawImp: {
  38912. height: math.unit(0.75, "feet"),
  38913. name: "Maw (Imp)",
  38914. image: {
  38915. source: "./media/characters/max-kobold/maw-imp.svg"
  38916. }
  38917. },
  38918. mawDemi: {
  38919. height: math.unit(0.42, "feet"),
  38920. name: "Maw (Demi)",
  38921. image: {
  38922. source: "./media/characters/max-kobold/maw-demi.svg"
  38923. }
  38924. },
  38925. },
  38926. [
  38927. {
  38928. name: "Normal",
  38929. height: math.unit(1 + 11/12, "feet"),
  38930. default: true
  38931. },
  38932. ]
  38933. ))
  38934. characterMakers.push(() => makeCharacter(
  38935. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38936. {
  38937. front: {
  38938. height: math.unit(7 + 5/12, "feet"),
  38939. name: "Front",
  38940. image: {
  38941. source: "./media/characters/carbon/front.svg",
  38942. extra: 1754/1689,
  38943. bottom: 65/1819
  38944. }
  38945. },
  38946. back: {
  38947. height: math.unit(7 + 5/12, "feet"),
  38948. name: "Back",
  38949. image: {
  38950. source: "./media/characters/carbon/back.svg",
  38951. extra: 1762/1695,
  38952. bottom: 24/1786
  38953. }
  38954. },
  38955. frontGigantamax: {
  38956. height: math.unit(150, "feet"),
  38957. name: "Front (Gigantamax)",
  38958. image: {
  38959. source: "./media/characters/carbon/front-gigantamax.svg",
  38960. extra: 1826/1669,
  38961. bottom: 59/1885
  38962. }
  38963. },
  38964. backGigantamax: {
  38965. height: math.unit(150, "feet"),
  38966. name: "Back (Gigantamax)",
  38967. image: {
  38968. source: "./media/characters/carbon/back-gigantamax.svg",
  38969. extra: 1796/1653,
  38970. bottom: 53/1849
  38971. }
  38972. },
  38973. maw: {
  38974. height: math.unit(0.48, "feet"),
  38975. name: "Maw",
  38976. image: {
  38977. source: "./media/characters/carbon/maw.svg"
  38978. }
  38979. },
  38980. mawGigantamax: {
  38981. height: math.unit(7.5, "feet"),
  38982. name: "Maw (Gigantamax)",
  38983. image: {
  38984. source: "./media/characters/carbon/maw-gigantamax.svg"
  38985. }
  38986. },
  38987. },
  38988. [
  38989. {
  38990. name: "Normal",
  38991. height: math.unit(7 + 5/12, "feet"),
  38992. default: true
  38993. },
  38994. ]
  38995. ))
  38996. characterMakers.push(() => makeCharacter(
  38997. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38998. {
  38999. front: {
  39000. height: math.unit(6, "feet"),
  39001. name: "Front",
  39002. image: {
  39003. source: "./media/characters/maverick/front.svg",
  39004. extra: 1672/1661,
  39005. bottom: 85/1757
  39006. }
  39007. },
  39008. back: {
  39009. height: math.unit(6, "feet"),
  39010. name: "Back",
  39011. image: {
  39012. source: "./media/characters/maverick/back.svg",
  39013. extra: 1642/1631,
  39014. bottom: 38/1680
  39015. }
  39016. },
  39017. },
  39018. [
  39019. {
  39020. name: "Normal",
  39021. height: math.unit(6, "feet"),
  39022. default: true
  39023. },
  39024. ]
  39025. ))
  39026. characterMakers.push(() => makeCharacter(
  39027. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39028. {
  39029. front: {
  39030. height: math.unit(15, "feet"),
  39031. weight: math.unit(615, "lb"),
  39032. name: "Front",
  39033. image: {
  39034. source: "./media/characters/grockle/front.svg",
  39035. extra: 1535/1427,
  39036. bottom: 56/1591
  39037. }
  39038. },
  39039. },
  39040. [
  39041. {
  39042. name: "Normal",
  39043. height: math.unit(15, "feet"),
  39044. default: true
  39045. },
  39046. {
  39047. name: "Large",
  39048. height: math.unit(150, "feet")
  39049. },
  39050. {
  39051. name: "Macro",
  39052. height: math.unit(1876, "feet")
  39053. },
  39054. {
  39055. name: "Mega Macro",
  39056. height: math.unit(121940, "feet")
  39057. },
  39058. {
  39059. name: "Giga Macro",
  39060. height: math.unit(750, "km")
  39061. },
  39062. {
  39063. name: "Tera Macro",
  39064. height: math.unit(750000, "km")
  39065. },
  39066. {
  39067. name: "Galactic",
  39068. height: math.unit(1.4e5, "km")
  39069. },
  39070. {
  39071. name: "Godlike",
  39072. height: math.unit(9.8e280, "galaxies")
  39073. },
  39074. ]
  39075. ))
  39076. characterMakers.push(() => makeCharacter(
  39077. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39078. {
  39079. front: {
  39080. height: math.unit(11, "meters"),
  39081. weight: math.unit(20, "tonnes"),
  39082. name: "Front",
  39083. image: {
  39084. source: "./media/characters/alistair/front.svg",
  39085. extra: 1265/1009,
  39086. bottom: 93/1358
  39087. }
  39088. },
  39089. },
  39090. [
  39091. {
  39092. name: "Normal",
  39093. height: math.unit(11, "meters"),
  39094. default: true
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(5 + 8/12, "feet"),
  39103. name: "Front",
  39104. image: {
  39105. source: "./media/characters/haruka/front.svg",
  39106. extra: 2012/1952,
  39107. bottom: 0/2012
  39108. }
  39109. },
  39110. },
  39111. [
  39112. {
  39113. name: "Normal",
  39114. height: math.unit(5 + 8/12, "feet"),
  39115. default: true
  39116. },
  39117. ]
  39118. ))
  39119. characterMakers.push(() => makeCharacter(
  39120. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39121. {
  39122. back: {
  39123. height: math.unit(9, "feet"),
  39124. name: "Back",
  39125. image: {
  39126. source: "./media/characters/vivian-sylveon/back.svg",
  39127. extra: 1853/1714,
  39128. bottom: 0/1853
  39129. }
  39130. },
  39131. },
  39132. [
  39133. {
  39134. name: "Normal",
  39135. height: math.unit(9, "feet"),
  39136. default: true
  39137. },
  39138. {
  39139. name: "Macro",
  39140. height: math.unit(500, "feet")
  39141. },
  39142. {
  39143. name: "Megamacro",
  39144. height: math.unit(600, "miles")
  39145. },
  39146. {
  39147. name: "Gigamacro",
  39148. height: math.unit(30000, "miles")
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39154. {
  39155. anthro: {
  39156. height: math.unit(5 + 10/12, "feet"),
  39157. weight: math.unit(100, "lb"),
  39158. name: "Anthro",
  39159. image: {
  39160. source: "./media/characters/daiki/anthro.svg",
  39161. extra: 1115/1027,
  39162. bottom: 69/1184
  39163. }
  39164. },
  39165. feral: {
  39166. height: math.unit(200, "feet"),
  39167. name: "Feral",
  39168. image: {
  39169. source: "./media/characters/daiki/feral.svg",
  39170. extra: 1256/313,
  39171. bottom: 39/1295
  39172. }
  39173. },
  39174. feralHead: {
  39175. height: math.unit(171, "feet"),
  39176. name: "Feral Head",
  39177. image: {
  39178. source: "./media/characters/daiki/feral-head.svg"
  39179. }
  39180. },
  39181. manaDragon: {
  39182. height: math.unit(170, "meters"),
  39183. name: "Mana-dragon",
  39184. image: {
  39185. source: "./media/characters/daiki/mana-dragon.svg",
  39186. extra: 763/420,
  39187. bottom: 97/860
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(5 + 10/12, "feet"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39201. {
  39202. fullyEquippedFront: {
  39203. height: math.unit(3 + 1/12, "feet"),
  39204. weight: math.unit(24, "lb"),
  39205. name: "Fully Equipped (Front)",
  39206. image: {
  39207. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39208. extra: 687/605,
  39209. bottom: 18/705
  39210. }
  39211. },
  39212. fullyEquippedBack: {
  39213. height: math.unit(3 + 1/12, "feet"),
  39214. weight: math.unit(24, "lb"),
  39215. name: "Fully Equipped (Back)",
  39216. image: {
  39217. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39218. extra: 689/590,
  39219. bottom: 18/707
  39220. }
  39221. },
  39222. dailyWear: {
  39223. height: math.unit(3 + 1/12, "feet"),
  39224. weight: math.unit(24, "lb"),
  39225. name: "Daily Wear",
  39226. image: {
  39227. source: "./media/characters/tea-spot/daily-wear.svg",
  39228. extra: 701/620,
  39229. bottom: 21/722
  39230. }
  39231. },
  39232. maidWork: {
  39233. height: math.unit(3 + 1/12, "feet"),
  39234. weight: math.unit(24, "lb"),
  39235. name: "Maid Work",
  39236. image: {
  39237. source: "./media/characters/tea-spot/maid-work.svg",
  39238. extra: 693/609,
  39239. bottom: 15/708
  39240. }
  39241. },
  39242. },
  39243. [
  39244. {
  39245. name: "Normal",
  39246. height: math.unit(3 + 1/12, "feet"),
  39247. default: true
  39248. },
  39249. ]
  39250. ))
  39251. characterMakers.push(() => makeCharacter(
  39252. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39253. {
  39254. front: {
  39255. height: math.unit(175, "cm"),
  39256. weight: math.unit(75, "kg"),
  39257. name: "Front",
  39258. image: {
  39259. source: "./media/characters/chee/front.svg",
  39260. extra: 1796/1740,
  39261. bottom: 40/1836
  39262. }
  39263. },
  39264. },
  39265. [
  39266. {
  39267. name: "Micro-Micro",
  39268. height: math.unit(1, "nm")
  39269. },
  39270. {
  39271. name: "Micro-erst",
  39272. height: math.unit(1, "micrometer")
  39273. },
  39274. {
  39275. name: "Micro-er",
  39276. height: math.unit(1, "cm")
  39277. },
  39278. {
  39279. name: "Normal",
  39280. height: math.unit(175, "cm"),
  39281. default: true
  39282. },
  39283. {
  39284. name: "Macro",
  39285. height: math.unit(100, "m")
  39286. },
  39287. {
  39288. name: "Macro-er",
  39289. height: math.unit(1, "km")
  39290. },
  39291. {
  39292. name: "Macro-erst",
  39293. height: math.unit(10, "km")
  39294. },
  39295. {
  39296. name: "Macro-Macro",
  39297. height: math.unit(100, "km")
  39298. },
  39299. ]
  39300. ))
  39301. characterMakers.push(() => makeCharacter(
  39302. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39303. {
  39304. front: {
  39305. height: math.unit(11 + 9/12, "feet"),
  39306. weight: math.unit(935, "lb"),
  39307. name: "Front",
  39308. image: {
  39309. source: "./media/characters/kingsley/front.svg",
  39310. extra: 1803/1674,
  39311. bottom: 127/1930
  39312. }
  39313. },
  39314. frontNude: {
  39315. height: math.unit(11 + 9/12, "feet"),
  39316. weight: math.unit(935, "lb"),
  39317. name: "Front (Nude)",
  39318. image: {
  39319. source: "./media/characters/kingsley/front-nude.svg",
  39320. extra: 1803/1674,
  39321. bottom: 127/1930
  39322. }
  39323. },
  39324. },
  39325. [
  39326. {
  39327. name: "Normal",
  39328. height: math.unit(11 + 9/12, "feet"),
  39329. default: true
  39330. },
  39331. ]
  39332. ))
  39333. characterMakers.push(() => makeCharacter(
  39334. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39335. {
  39336. side: {
  39337. height: math.unit(9, "feet"),
  39338. name: "Side",
  39339. image: {
  39340. source: "./media/characters/rymel/side.svg",
  39341. extra: 792/469,
  39342. bottom: 121/913
  39343. }
  39344. },
  39345. maw: {
  39346. height: math.unit(2.4, "meters"),
  39347. name: "Maw",
  39348. image: {
  39349. source: "./media/characters/rymel/maw.svg"
  39350. }
  39351. },
  39352. },
  39353. [
  39354. {
  39355. name: "House Drake",
  39356. height: math.unit(2, "feet")
  39357. },
  39358. {
  39359. name: "Reduced",
  39360. height: math.unit(4.5, "feet")
  39361. },
  39362. {
  39363. name: "Normal",
  39364. height: math.unit(9, "feet"),
  39365. default: true
  39366. },
  39367. ]
  39368. ))
  39369. characterMakers.push(() => makeCharacter(
  39370. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39371. {
  39372. front: {
  39373. height: math.unit(1.74, "meters"),
  39374. weight: math.unit(55, "kg"),
  39375. name: "Front",
  39376. image: {
  39377. source: "./media/characters/rubus/front.svg",
  39378. extra: 1894/1742,
  39379. bottom: 44/1938
  39380. }
  39381. },
  39382. },
  39383. [
  39384. {
  39385. name: "Normal",
  39386. height: math.unit(1.74, "meters"),
  39387. default: true
  39388. },
  39389. ]
  39390. ))
  39391. characterMakers.push(() => makeCharacter(
  39392. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39393. {
  39394. front: {
  39395. height: math.unit(5 + 2/12, "feet"),
  39396. weight: math.unit(112, "lb"),
  39397. name: "Front",
  39398. image: {
  39399. source: "./media/characters/cassie-kingston/front.svg",
  39400. extra: 1438/1390,
  39401. bottom: 47/1485
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Normal",
  39408. height: math.unit(5 + 2/12, "feet"),
  39409. default: true
  39410. },
  39411. {
  39412. name: "Macro",
  39413. height: math.unit(128, "feet")
  39414. },
  39415. {
  39416. name: "Megamacro",
  39417. height: math.unit(2.56, "miles")
  39418. },
  39419. ]
  39420. ))
  39421. characterMakers.push(() => makeCharacter(
  39422. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39423. {
  39424. front: {
  39425. height: math.unit(7, "feet"),
  39426. name: "Front",
  39427. image: {
  39428. source: "./media/characters/fox/front.svg",
  39429. extra: 1798/1703,
  39430. bottom: 55/1853
  39431. }
  39432. },
  39433. back: {
  39434. height: math.unit(7, "feet"),
  39435. name: "Back",
  39436. image: {
  39437. source: "./media/characters/fox/back.svg",
  39438. extra: 1748/1649,
  39439. bottom: 32/1780
  39440. }
  39441. },
  39442. head: {
  39443. height: math.unit(1.95, "feet"),
  39444. name: "Head",
  39445. image: {
  39446. source: "./media/characters/fox/head.svg"
  39447. }
  39448. },
  39449. dick: {
  39450. height: math.unit(1.33, "feet"),
  39451. name: "Dick",
  39452. image: {
  39453. source: "./media/characters/fox/dick.svg"
  39454. }
  39455. },
  39456. foot: {
  39457. height: math.unit(1, "feet"),
  39458. name: "Foot",
  39459. image: {
  39460. source: "./media/characters/fox/foot.svg"
  39461. }
  39462. },
  39463. paw: {
  39464. height: math.unit(0.92, "feet"),
  39465. name: "Paw",
  39466. image: {
  39467. source: "./media/characters/fox/paw.svg"
  39468. }
  39469. },
  39470. },
  39471. [
  39472. {
  39473. name: "Small",
  39474. height: math.unit(3, "inches")
  39475. },
  39476. {
  39477. name: "\"Realistic\"",
  39478. height: math.unit(7, "feet")
  39479. },
  39480. {
  39481. name: "Normal",
  39482. height: math.unit(150, "feet"),
  39483. default: true
  39484. },
  39485. {
  39486. name: "BIG",
  39487. height: math.unit(1200, "feet")
  39488. },
  39489. {
  39490. name: "👀",
  39491. height: math.unit(5, "miles")
  39492. },
  39493. {
  39494. name: "👀👀👀",
  39495. height: math.unit(64, "miles")
  39496. },
  39497. ]
  39498. ))
  39499. characterMakers.push(() => makeCharacter(
  39500. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39501. {
  39502. front: {
  39503. height: math.unit(625, "feet"),
  39504. name: "Front",
  39505. image: {
  39506. source: "./media/characters/asonja-rossa/front.svg",
  39507. extra: 1833/1686,
  39508. bottom: 24/1857
  39509. }
  39510. },
  39511. back: {
  39512. height: math.unit(625, "feet"),
  39513. name: "Back",
  39514. image: {
  39515. source: "./media/characters/asonja-rossa/back.svg",
  39516. extra: 1852/1753,
  39517. bottom: 26/1878
  39518. }
  39519. },
  39520. },
  39521. [
  39522. {
  39523. name: "Macro",
  39524. height: math.unit(625, "feet"),
  39525. default: true
  39526. },
  39527. ]
  39528. ))
  39529. characterMakers.push(() => makeCharacter(
  39530. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39531. {
  39532. side: {
  39533. height: math.unit(8, "feet"),
  39534. name: "Side",
  39535. image: {
  39536. source: "./media/characters/rezukii/side.svg",
  39537. extra: 979/542,
  39538. bottom: 87/1066
  39539. }
  39540. },
  39541. sitting: {
  39542. height: math.unit(14.6, "feet"),
  39543. name: "Sitting",
  39544. image: {
  39545. source: "./media/characters/rezukii/sitting.svg",
  39546. extra: 1023/813,
  39547. bottom: 45/1068
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Tiny",
  39554. height: math.unit(2, "feet")
  39555. },
  39556. {
  39557. name: "Smol",
  39558. height: math.unit(4, "feet")
  39559. },
  39560. {
  39561. name: "Normal",
  39562. height: math.unit(8, "feet"),
  39563. default: true
  39564. },
  39565. {
  39566. name: "Big",
  39567. height: math.unit(12, "feet")
  39568. },
  39569. {
  39570. name: "Macro",
  39571. height: math.unit(30, "feet")
  39572. },
  39573. ]
  39574. ))
  39575. characterMakers.push(() => makeCharacter(
  39576. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39577. {
  39578. front: {
  39579. height: math.unit(14, "feet"),
  39580. weight: math.unit(9.5, "tonnes"),
  39581. name: "Front",
  39582. image: {
  39583. source: "./media/characters/dawnheart/front.svg",
  39584. extra: 2792/2675,
  39585. bottom: 64/2856
  39586. }
  39587. },
  39588. },
  39589. [
  39590. {
  39591. name: "Normal",
  39592. height: math.unit(14, "feet"),
  39593. default: true
  39594. },
  39595. ]
  39596. ))
  39597. characterMakers.push(() => makeCharacter(
  39598. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39599. {
  39600. front: {
  39601. height: math.unit(1.7, "m"),
  39602. name: "Front",
  39603. image: {
  39604. source: "./media/characters/gladi/front.svg",
  39605. extra: 1460/1362,
  39606. bottom: 19/1479
  39607. }
  39608. },
  39609. back: {
  39610. height: math.unit(1.7, "m"),
  39611. name: "Back",
  39612. image: {
  39613. source: "./media/characters/gladi/back.svg",
  39614. extra: 1459/1357,
  39615. bottom: 12/1471
  39616. }
  39617. },
  39618. feral: {
  39619. height: math.unit(2.05, "m"),
  39620. name: "Feral",
  39621. image: {
  39622. source: "./media/characters/gladi/feral.svg",
  39623. extra: 821/557,
  39624. bottom: 91/912
  39625. }
  39626. },
  39627. },
  39628. [
  39629. {
  39630. name: "Shortest",
  39631. height: math.unit(70, "cm")
  39632. },
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(1.7, "m")
  39636. },
  39637. {
  39638. name: "Macro",
  39639. height: math.unit(10, "m"),
  39640. default: true
  39641. },
  39642. {
  39643. name: "Tallest",
  39644. height: math.unit(200, "m")
  39645. },
  39646. ]
  39647. ))
  39648. characterMakers.push(() => makeCharacter(
  39649. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39650. {
  39651. front: {
  39652. height: math.unit(5 + 7/12, "feet"),
  39653. weight: math.unit(2, "tons"),
  39654. name: "Front",
  39655. image: {
  39656. source: "./media/characters/erdno/front.svg",
  39657. extra: 1234/1129,
  39658. bottom: 35/1269
  39659. }
  39660. },
  39661. angled: {
  39662. height: math.unit(5 + 7/12, "feet"),
  39663. weight: math.unit(2, "tons"),
  39664. name: "Angled",
  39665. image: {
  39666. source: "./media/characters/erdno/angled.svg",
  39667. extra: 1185/1139,
  39668. bottom: 36/1221
  39669. }
  39670. },
  39671. side: {
  39672. height: math.unit(5 + 7/12, "feet"),
  39673. weight: math.unit(2, "tons"),
  39674. name: "Side",
  39675. image: {
  39676. source: "./media/characters/erdno/side.svg",
  39677. extra: 1191/1144,
  39678. bottom: 40/1231
  39679. }
  39680. },
  39681. back: {
  39682. height: math.unit(5 + 7/12, "feet"),
  39683. weight: math.unit(2, "tons"),
  39684. name: "Back",
  39685. image: {
  39686. source: "./media/characters/erdno/back.svg",
  39687. extra: 1202/1146,
  39688. bottom: 17/1219
  39689. }
  39690. },
  39691. frontNsfw: {
  39692. height: math.unit(5 + 7/12, "feet"),
  39693. weight: math.unit(2, "tons"),
  39694. name: "Front (NSFW)",
  39695. image: {
  39696. source: "./media/characters/erdno/front-nsfw.svg",
  39697. extra: 1234/1129,
  39698. bottom: 35/1269
  39699. }
  39700. },
  39701. angledNsfw: {
  39702. height: math.unit(5 + 7/12, "feet"),
  39703. weight: math.unit(2, "tons"),
  39704. name: "Angled (NSFW)",
  39705. image: {
  39706. source: "./media/characters/erdno/angled-nsfw.svg",
  39707. extra: 1185/1139,
  39708. bottom: 36/1221
  39709. }
  39710. },
  39711. sideNsfw: {
  39712. height: math.unit(5 + 7/12, "feet"),
  39713. weight: math.unit(2, "tons"),
  39714. name: "Side (NSFW)",
  39715. image: {
  39716. source: "./media/characters/erdno/side-nsfw.svg",
  39717. extra: 1191/1144,
  39718. bottom: 40/1231
  39719. }
  39720. },
  39721. backNsfw: {
  39722. height: math.unit(5 + 7/12, "feet"),
  39723. weight: math.unit(2, "tons"),
  39724. name: "Back (NSFW)",
  39725. image: {
  39726. source: "./media/characters/erdno/back-nsfw.svg",
  39727. extra: 1202/1146,
  39728. bottom: 17/1219
  39729. }
  39730. },
  39731. frontHyper: {
  39732. height: math.unit(5 + 7/12, "feet"),
  39733. weight: math.unit(2, "tons"),
  39734. name: "Front (Hyper)",
  39735. image: {
  39736. source: "./media/characters/erdno/front-hyper.svg",
  39737. extra: 1298/1136,
  39738. bottom: 35/1333
  39739. }
  39740. },
  39741. },
  39742. [
  39743. {
  39744. name: "Normal",
  39745. height: math.unit(5 + 7/12, "feet"),
  39746. default: true
  39747. },
  39748. {
  39749. name: "Big",
  39750. height: math.unit(5.7, "meters")
  39751. },
  39752. {
  39753. name: "Macro",
  39754. height: math.unit(5.7, "kilometers")
  39755. },
  39756. {
  39757. name: "Megamacro",
  39758. height: math.unit(5.7, "earths")
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39764. {
  39765. front: {
  39766. height: math.unit(5 + 10/12, "feet"),
  39767. weight: math.unit(150, "lb"),
  39768. name: "Front",
  39769. image: {
  39770. source: "./media/characters/jamie/front.svg",
  39771. extra: 1908/1768,
  39772. bottom: 19/1927
  39773. }
  39774. },
  39775. },
  39776. [
  39777. {
  39778. name: "Minimum",
  39779. height: math.unit(2, "cm")
  39780. },
  39781. {
  39782. name: "Micro",
  39783. height: math.unit(3, "inches")
  39784. },
  39785. {
  39786. name: "Normal",
  39787. height: math.unit(5 + 10/12, "feet"),
  39788. default: true
  39789. },
  39790. {
  39791. name: "Macro",
  39792. height: math.unit(150, "feet")
  39793. },
  39794. {
  39795. name: "Megamacro",
  39796. height: math.unit(10000, "m")
  39797. },
  39798. ]
  39799. ))
  39800. characterMakers.push(() => makeCharacter(
  39801. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39802. {
  39803. front: {
  39804. height: math.unit(2, "meters"),
  39805. weight: math.unit(100, "kg"),
  39806. name: "Front",
  39807. image: {
  39808. source: "./media/characters/shiron/front.svg",
  39809. extra: 2103/1985,
  39810. bottom: 98/2201
  39811. }
  39812. },
  39813. back: {
  39814. height: math.unit(2, "meters"),
  39815. weight: math.unit(100, "kg"),
  39816. name: "Back",
  39817. image: {
  39818. source: "./media/characters/shiron/back.svg",
  39819. extra: 2110/2015,
  39820. bottom: 89/2199
  39821. }
  39822. },
  39823. hand: {
  39824. height: math.unit(0.96, "feet"),
  39825. name: "Hand",
  39826. image: {
  39827. source: "./media/characters/shiron/hand.svg"
  39828. }
  39829. },
  39830. foot: {
  39831. height: math.unit(1.464, "feet"),
  39832. name: "Foot",
  39833. image: {
  39834. source: "./media/characters/shiron/foot.svg"
  39835. }
  39836. },
  39837. },
  39838. [
  39839. {
  39840. name: "Normal",
  39841. height: math.unit(2, "meters")
  39842. },
  39843. {
  39844. name: "Macro",
  39845. height: math.unit(500, "meters"),
  39846. default: true
  39847. },
  39848. {
  39849. name: "Megamacro",
  39850. height: math.unit(20, "km")
  39851. },
  39852. ]
  39853. ))
  39854. characterMakers.push(() => makeCharacter(
  39855. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39856. {
  39857. front: {
  39858. height: math.unit(6, "feet"),
  39859. name: "Front",
  39860. image: {
  39861. source: "./media/characters/sam/front.svg",
  39862. extra: 849/826,
  39863. bottom: 19/868
  39864. }
  39865. },
  39866. },
  39867. [
  39868. {
  39869. name: "Normal",
  39870. height: math.unit(6, "feet"),
  39871. default: true
  39872. },
  39873. ]
  39874. ))
  39875. characterMakers.push(() => makeCharacter(
  39876. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39877. {
  39878. front: {
  39879. height: math.unit(8 + 4/12, "feet"),
  39880. weight: math.unit(122, "kg"),
  39881. name: "Front",
  39882. image: {
  39883. source: "./media/characters/namori-kurogawa/front.svg",
  39884. extra: 1894/1576,
  39885. bottom: 34/1928
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Normal",
  39892. height: math.unit(8 + 4/12, "feet"),
  39893. default: true
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39899. {
  39900. front: {
  39901. height: math.unit(9, "feet"),
  39902. weight: math.unit(621, "lb"),
  39903. name: "Front",
  39904. image: {
  39905. source: "./media/characters/unmru/front.svg",
  39906. extra: 1853/1747,
  39907. bottom: 73/1926
  39908. }
  39909. },
  39910. side: {
  39911. height: math.unit(9, "feet"),
  39912. weight: math.unit(621, "lb"),
  39913. name: "Side",
  39914. image: {
  39915. source: "./media/characters/unmru/side.svg",
  39916. extra: 1781/1671,
  39917. bottom: 127/1908
  39918. }
  39919. },
  39920. back: {
  39921. height: math.unit(9, "feet"),
  39922. weight: math.unit(621, "lb"),
  39923. name: "Back",
  39924. image: {
  39925. source: "./media/characters/unmru/back.svg",
  39926. extra: 1894/1765,
  39927. bottom: 75/1969
  39928. }
  39929. },
  39930. dick: {
  39931. height: math.unit(3, "feet"),
  39932. weight: math.unit(35, "lb"),
  39933. name: "Dick",
  39934. image: {
  39935. source: "./media/characters/unmru/dick.svg"
  39936. }
  39937. },
  39938. },
  39939. [
  39940. {
  39941. name: "Normal",
  39942. height: math.unit(9, "feet")
  39943. },
  39944. {
  39945. name: "Natural",
  39946. height: math.unit(27, "feet"),
  39947. default: true
  39948. },
  39949. {
  39950. name: "Giant",
  39951. height: math.unit(90, "feet")
  39952. },
  39953. {
  39954. name: "Kaiju",
  39955. height: math.unit(270, "feet")
  39956. },
  39957. {
  39958. name: "Macro",
  39959. height: math.unit(900, "feet")
  39960. },
  39961. {
  39962. name: "Macro+",
  39963. height: math.unit(2700, "feet")
  39964. },
  39965. {
  39966. name: "Megamacro",
  39967. height: math.unit(9000, "feet")
  39968. },
  39969. {
  39970. name: "City-Crushing",
  39971. height: math.unit(27000, "feet")
  39972. },
  39973. {
  39974. name: "Mountain-Mashing",
  39975. height: math.unit(90000, "feet")
  39976. },
  39977. {
  39978. name: "Earth-Eclipsing",
  39979. height: math.unit(2.7e8, "feet")
  39980. },
  39981. {
  39982. name: "Sol-Swallowing",
  39983. height: math.unit(9e10, "feet")
  39984. },
  39985. {
  39986. name: "Majoris-Munching",
  39987. height: math.unit(2.7e13, "feet")
  39988. },
  39989. ]
  39990. ))
  39991. characterMakers.push(() => makeCharacter(
  39992. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39993. {
  39994. front: {
  39995. height: math.unit(1, "inch"),
  39996. name: "Front",
  39997. image: {
  39998. source: "./media/characters/squeaks-mouse/front.svg",
  39999. extra: 352/308,
  40000. bottom: 25/377
  40001. }
  40002. },
  40003. },
  40004. [
  40005. {
  40006. name: "Micro",
  40007. height: math.unit(1, "inch"),
  40008. default: true
  40009. },
  40010. ]
  40011. ))
  40012. characterMakers.push(() => makeCharacter(
  40013. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40014. {
  40015. side: {
  40016. height: math.unit(35, "feet"),
  40017. name: "Side",
  40018. image: {
  40019. source: "./media/characters/sayko/side.svg",
  40020. extra: 1697/1021,
  40021. bottom: 82/1779
  40022. }
  40023. },
  40024. head: {
  40025. height: math.unit(16, "feet"),
  40026. name: "Head",
  40027. image: {
  40028. source: "./media/characters/sayko/head.svg"
  40029. }
  40030. },
  40031. forepaw: {
  40032. height: math.unit(7.85, "feet"),
  40033. name: "Forepaw",
  40034. image: {
  40035. source: "./media/characters/sayko/forepaw.svg"
  40036. }
  40037. },
  40038. hindpaw: {
  40039. height: math.unit(8.8, "feet"),
  40040. name: "Hindpaw",
  40041. image: {
  40042. source: "./media/characters/sayko/hindpaw.svg"
  40043. }
  40044. },
  40045. },
  40046. [
  40047. {
  40048. name: "Normal",
  40049. height: math.unit(35, "feet"),
  40050. default: true
  40051. },
  40052. {
  40053. name: "Colossus",
  40054. height: math.unit(100, "meters")
  40055. },
  40056. {
  40057. name: "\"Small\" Deity",
  40058. height: math.unit(1, "km")
  40059. },
  40060. {
  40061. name: "\"Large\" Deity",
  40062. height: math.unit(15, "km")
  40063. },
  40064. ]
  40065. ))
  40066. characterMakers.push(() => makeCharacter(
  40067. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40068. {
  40069. front: {
  40070. height: math.unit(6, "feet"),
  40071. weight: math.unit(250, "lb"),
  40072. name: "Front",
  40073. image: {
  40074. source: "./media/characters/mukiro/front.svg",
  40075. extra: 1368/1310,
  40076. bottom: 34/1402
  40077. }
  40078. },
  40079. },
  40080. [
  40081. {
  40082. name: "Normal",
  40083. height: math.unit(6, "feet"),
  40084. default: true
  40085. },
  40086. ]
  40087. ))
  40088. characterMakers.push(() => makeCharacter(
  40089. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40090. {
  40091. front: {
  40092. height: math.unit(12 + 4/12, "feet"),
  40093. name: "Front",
  40094. image: {
  40095. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40096. extra: 1346/1311,
  40097. bottom: 65/1411
  40098. }
  40099. },
  40100. },
  40101. [
  40102. {
  40103. name: "Base",
  40104. height: math.unit(12 + 4/12, "feet"),
  40105. default: true
  40106. },
  40107. {
  40108. name: "Macro",
  40109. height: math.unit(150, "feet")
  40110. },
  40111. {
  40112. name: "Mega",
  40113. height: math.unit(2, "miles")
  40114. },
  40115. {
  40116. name: "Demi God",
  40117. height: math.unit(4, "AU")
  40118. },
  40119. {
  40120. name: "God Size",
  40121. height: math.unit(1, "universe")
  40122. },
  40123. ]
  40124. ))
  40125. characterMakers.push(() => makeCharacter(
  40126. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40127. {
  40128. front: {
  40129. height: math.unit(3 + 3/12, "feet"),
  40130. weight: math.unit(88, "lb"),
  40131. name: "Front",
  40132. image: {
  40133. source: "./media/characters/trey/front.svg",
  40134. extra: 1815/1509,
  40135. bottom: 60/1875
  40136. }
  40137. },
  40138. },
  40139. [
  40140. {
  40141. name: "Normal",
  40142. height: math.unit(3 + 3/12, "feet"),
  40143. default: true
  40144. },
  40145. ]
  40146. ))
  40147. characterMakers.push(() => makeCharacter(
  40148. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40149. {
  40150. front: {
  40151. height: math.unit(4, "meters"),
  40152. name: "Front",
  40153. image: {
  40154. source: "./media/characters/adelonda/front.svg",
  40155. extra: 1077/982,
  40156. bottom: 39/1116
  40157. }
  40158. },
  40159. back: {
  40160. height: math.unit(4, "meters"),
  40161. name: "Back",
  40162. image: {
  40163. source: "./media/characters/adelonda/back.svg",
  40164. extra: 1105/1003,
  40165. bottom: 25/1130
  40166. }
  40167. },
  40168. feral: {
  40169. height: math.unit(40/1.5, "meters"),
  40170. name: "Feral",
  40171. image: {
  40172. source: "./media/characters/adelonda/feral.svg",
  40173. extra: 597/271,
  40174. bottom: 387/984
  40175. }
  40176. },
  40177. },
  40178. [
  40179. {
  40180. name: "Normal",
  40181. height: math.unit(4, "meters"),
  40182. default: true
  40183. },
  40184. ]
  40185. ))
  40186. characterMakers.push(() => makeCharacter(
  40187. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40188. {
  40189. front: {
  40190. height: math.unit(8 + 4/12, "feet"),
  40191. weight: math.unit(670, "lb"),
  40192. name: "Front",
  40193. image: {
  40194. source: "./media/characters/acadiel/front.svg",
  40195. extra: 1901/1595,
  40196. bottom: 142/2043
  40197. }
  40198. },
  40199. },
  40200. [
  40201. {
  40202. name: "Normal",
  40203. height: math.unit(8 + 4/12, "feet"),
  40204. default: true
  40205. },
  40206. {
  40207. name: "Macro",
  40208. height: math.unit(200, "feet")
  40209. },
  40210. ]
  40211. ))
  40212. characterMakers.push(() => makeCharacter(
  40213. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40214. {
  40215. front: {
  40216. height: math.unit(6 + 2/12, "feet"),
  40217. weight: math.unit(185, "lb"),
  40218. name: "Front",
  40219. image: {
  40220. source: "./media/characters/kayne-ein/front.svg",
  40221. extra: 1780/1560,
  40222. bottom: 81/1861
  40223. }
  40224. },
  40225. },
  40226. [
  40227. {
  40228. name: "Normal",
  40229. height: math.unit(6 + 2/12, "feet"),
  40230. default: true
  40231. },
  40232. {
  40233. name: "Transformation Stage",
  40234. height: math.unit(15, "feet")
  40235. },
  40236. {
  40237. name: "Macro",
  40238. height: math.unit(150, "feet")
  40239. },
  40240. {
  40241. name: "Earth's Shadow",
  40242. height: math.unit(6200, "miles")
  40243. },
  40244. {
  40245. name: "Universal Demon",
  40246. height: math.unit(28e9, "parsecs")
  40247. },
  40248. {
  40249. name: "Multiverse God",
  40250. height: math.unit(3, "multiverses")
  40251. },
  40252. ]
  40253. ))
  40254. characterMakers.push(() => makeCharacter(
  40255. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40256. {
  40257. front: {
  40258. height: math.unit(5 + 5/12, "feet"),
  40259. name: "Front",
  40260. image: {
  40261. source: "./media/characters/fawn/front.svg",
  40262. extra: 1873/1731,
  40263. bottom: 95/1968
  40264. }
  40265. },
  40266. back: {
  40267. height: math.unit(5 + 5/12, "feet"),
  40268. name: "Back",
  40269. image: {
  40270. source: "./media/characters/fawn/back.svg",
  40271. extra: 1813/1700,
  40272. bottom: 14/1827
  40273. }
  40274. },
  40275. hoof: {
  40276. height: math.unit(1.45, "feet"),
  40277. name: "Hoof",
  40278. image: {
  40279. source: "./media/characters/fawn/hoof.svg"
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Normal",
  40286. height: math.unit(5 + 5/12, "feet"),
  40287. default: true
  40288. },
  40289. ]
  40290. ))
  40291. characterMakers.push(() => makeCharacter(
  40292. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40293. {
  40294. front: {
  40295. height: math.unit(2 + 5/12, "feet"),
  40296. name: "Front",
  40297. image: {
  40298. source: "./media/characters/orion/front.svg",
  40299. extra: 1366/1304,
  40300. bottom: 43/1409
  40301. }
  40302. },
  40303. paw: {
  40304. height: math.unit(0.52, "feet"),
  40305. name: "Paw",
  40306. image: {
  40307. source: "./media/characters/orion/paw.svg"
  40308. }
  40309. },
  40310. },
  40311. [
  40312. {
  40313. name: "Normal",
  40314. height: math.unit(2 + 5/12, "feet"),
  40315. default: true
  40316. },
  40317. ]
  40318. ))
  40319. characterMakers.push(() => makeCharacter(
  40320. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40321. {
  40322. front: {
  40323. height: math.unit(5 + 10/12, "feet"),
  40324. name: "Front",
  40325. image: {
  40326. source: "./media/characters/vera/front.svg",
  40327. extra: 1680/1575,
  40328. bottom: 49/1729
  40329. }
  40330. },
  40331. back: {
  40332. height: math.unit(5 + 10/12, "feet"),
  40333. name: "Back",
  40334. image: {
  40335. source: "./media/characters/vera/back.svg",
  40336. extra: 1700/1588,
  40337. bottom: 18/1718
  40338. }
  40339. },
  40340. arcanine: {
  40341. height: math.unit(6 + 8/12, "feet"),
  40342. name: "Arcanine",
  40343. image: {
  40344. source: "./media/characters/vera/arcanine.svg",
  40345. extra: 1590/1511,
  40346. bottom: 71/1661
  40347. }
  40348. },
  40349. maw: {
  40350. height: math.unit(0.82, "feet"),
  40351. name: "Maw",
  40352. image: {
  40353. source: "./media/characters/vera/maw.svg"
  40354. }
  40355. },
  40356. mawArcanine: {
  40357. height: math.unit(0.97, "feet"),
  40358. name: "Maw (Arcanine)",
  40359. image: {
  40360. source: "./media/characters/vera/maw-arcanine.svg"
  40361. }
  40362. },
  40363. paw: {
  40364. height: math.unit(0.75, "feet"),
  40365. name: "Paw",
  40366. image: {
  40367. source: "./media/characters/vera/paw.svg"
  40368. }
  40369. },
  40370. pawprint: {
  40371. height: math.unit(0.52, "feet"),
  40372. name: "Pawprint",
  40373. image: {
  40374. source: "./media/characters/vera/pawprint.svg"
  40375. }
  40376. },
  40377. },
  40378. [
  40379. {
  40380. name: "Normal",
  40381. height: math.unit(5 + 10/12, "feet"),
  40382. default: true
  40383. },
  40384. {
  40385. name: "Macro",
  40386. height: math.unit(75, "feet")
  40387. },
  40388. ]
  40389. ))
  40390. characterMakers.push(() => makeCharacter(
  40391. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40392. {
  40393. front: {
  40394. height: math.unit(4, "feet"),
  40395. weight: math.unit(40, "lb"),
  40396. name: "Front",
  40397. image: {
  40398. source: "./media/characters/orvan-rabbit/front.svg",
  40399. extra: 1896/1642,
  40400. bottom: 29/1925
  40401. }
  40402. },
  40403. },
  40404. [
  40405. {
  40406. name: "Normal",
  40407. height: math.unit(4, "feet"),
  40408. default: true
  40409. },
  40410. ]
  40411. ))
  40412. characterMakers.push(() => makeCharacter(
  40413. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40414. {
  40415. front: {
  40416. height: math.unit(6, "feet"),
  40417. weight: math.unit(168, "lb"),
  40418. name: "Front",
  40419. image: {
  40420. source: "./media/characters/lisa/front.svg",
  40421. extra: 2065/1867,
  40422. bottom: 46/2111
  40423. }
  40424. },
  40425. back: {
  40426. height: math.unit(6, "feet"),
  40427. weight: math.unit(168, "lb"),
  40428. name: "Back",
  40429. image: {
  40430. source: "./media/characters/lisa/back.svg",
  40431. extra: 1982/1838,
  40432. bottom: 29/2011
  40433. }
  40434. },
  40435. maw: {
  40436. height: math.unit(0.81, "feet"),
  40437. name: "Maw",
  40438. image: {
  40439. source: "./media/characters/lisa/maw.svg"
  40440. }
  40441. },
  40442. paw: {
  40443. height: math.unit(0.9, "feet"),
  40444. name: "Paw",
  40445. image: {
  40446. source: "./media/characters/lisa/paw.svg"
  40447. }
  40448. },
  40449. caribousune: {
  40450. height: math.unit(7 + 2/12, "feet"),
  40451. weight: math.unit(268, "lb"),
  40452. name: "Caribousune",
  40453. image: {
  40454. source: "./media/characters/lisa/caribousune.svg",
  40455. extra: 1843/1633,
  40456. bottom: 29/1872
  40457. }
  40458. },
  40459. frontCaribousune: {
  40460. height: math.unit(7 + 2/12, "feet"),
  40461. weight: math.unit(268, "lb"),
  40462. name: "Front (Caribousune)",
  40463. image: {
  40464. source: "./media/characters/lisa/front-caribousune.svg",
  40465. extra: 1818/1638,
  40466. bottom: 52/1870
  40467. }
  40468. },
  40469. sideCaribousune: {
  40470. height: math.unit(7 + 2/12, "feet"),
  40471. weight: math.unit(268, "lb"),
  40472. name: "Side (Caribousune)",
  40473. image: {
  40474. source: "./media/characters/lisa/side-caribousune.svg",
  40475. extra: 1851/1635,
  40476. bottom: 16/1867
  40477. }
  40478. },
  40479. backCaribousune: {
  40480. height: math.unit(7 + 2/12, "feet"),
  40481. weight: math.unit(268, "lb"),
  40482. name: "Back (Caribousune)",
  40483. image: {
  40484. source: "./media/characters/lisa/back-caribousune.svg",
  40485. extra: 1801/1604,
  40486. bottom: 44/1845
  40487. }
  40488. },
  40489. caribou: {
  40490. height: math.unit(7 + 2/12, "feet"),
  40491. weight: math.unit(268, "lb"),
  40492. name: "Caribou",
  40493. image: {
  40494. source: "./media/characters/lisa/caribou.svg",
  40495. extra: 1843/1633,
  40496. bottom: 29/1872
  40497. }
  40498. },
  40499. frontCaribou: {
  40500. height: math.unit(7 + 2/12, "feet"),
  40501. weight: math.unit(268, "lb"),
  40502. name: "Front (Caribou)",
  40503. image: {
  40504. source: "./media/characters/lisa/front-caribou.svg",
  40505. extra: 1818/1638,
  40506. bottom: 52/1870
  40507. }
  40508. },
  40509. sideCaribou: {
  40510. height: math.unit(7 + 2/12, "feet"),
  40511. weight: math.unit(268, "lb"),
  40512. name: "Side (Caribou)",
  40513. image: {
  40514. source: "./media/characters/lisa/side-caribou.svg",
  40515. extra: 1851/1635,
  40516. bottom: 16/1867
  40517. }
  40518. },
  40519. backCaribou: {
  40520. height: math.unit(7 + 2/12, "feet"),
  40521. weight: math.unit(268, "lb"),
  40522. name: "Back (Caribou)",
  40523. image: {
  40524. source: "./media/characters/lisa/back-caribou.svg",
  40525. extra: 1801/1604,
  40526. bottom: 44/1845
  40527. }
  40528. },
  40529. mawCaribou: {
  40530. height: math.unit(1.45, "feet"),
  40531. name: "Maw (Caribou)",
  40532. image: {
  40533. source: "./media/characters/lisa/maw-caribou.svg"
  40534. }
  40535. },
  40536. mawCaribousune: {
  40537. height: math.unit(1.45, "feet"),
  40538. name: "Maw (Caribousune)",
  40539. image: {
  40540. source: "./media/characters/lisa/maw-caribousune.svg"
  40541. }
  40542. },
  40543. pawCaribousune: {
  40544. height: math.unit(1.61, "feet"),
  40545. name: "Paw (Caribou)",
  40546. image: {
  40547. source: "./media/characters/lisa/paw-caribousune.svg"
  40548. }
  40549. },
  40550. },
  40551. [
  40552. {
  40553. name: "Normal",
  40554. height: math.unit(6, "feet")
  40555. },
  40556. {
  40557. name: "God Size",
  40558. height: math.unit(72, "feet"),
  40559. default: true
  40560. },
  40561. {
  40562. name: "Towering",
  40563. height: math.unit(288, "feet")
  40564. },
  40565. {
  40566. name: "City Size",
  40567. height: math.unit(48384, "feet")
  40568. },
  40569. {
  40570. name: "Continental",
  40571. height: math.unit(4200, "miles")
  40572. },
  40573. {
  40574. name: "Planet Eater",
  40575. height: math.unit(42, "earths")
  40576. },
  40577. {
  40578. name: "Star Swallower",
  40579. height: math.unit(42, "solarradii")
  40580. },
  40581. {
  40582. name: "System Swallower",
  40583. height: math.unit(84000, "AU")
  40584. },
  40585. {
  40586. name: "Galaxy Gobbler",
  40587. height: math.unit(42, "galaxies")
  40588. },
  40589. {
  40590. name: "Universe Devourer",
  40591. height: math.unit(42, "universes")
  40592. },
  40593. {
  40594. name: "Multiverse Muncher",
  40595. height: math.unit(42, "multiverses")
  40596. },
  40597. ]
  40598. ))
  40599. characterMakers.push(() => makeCharacter(
  40600. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40601. {
  40602. front: {
  40603. height: math.unit(36, "feet"),
  40604. name: "Front",
  40605. image: {
  40606. source: "./media/characters/shadow-rat/front.svg",
  40607. extra: 1845/1758,
  40608. bottom: 83/1928
  40609. }
  40610. },
  40611. },
  40612. [
  40613. {
  40614. name: "Macro",
  40615. height: math.unit(36, "feet"),
  40616. default: true
  40617. },
  40618. ]
  40619. ))
  40620. characterMakers.push(() => makeCharacter(
  40621. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40622. {
  40623. side: {
  40624. height: math.unit(8, "feet"),
  40625. weight: math.unit(2630, "lb"),
  40626. name: "Side",
  40627. image: {
  40628. source: "./media/characters/torallia/side.svg",
  40629. extra: 2164/2021,
  40630. bottom: 371/2535
  40631. }
  40632. },
  40633. },
  40634. [
  40635. {
  40636. name: "Mortal Interaction",
  40637. height: math.unit(8, "feet")
  40638. },
  40639. {
  40640. name: "Natural",
  40641. height: math.unit(24, "feet"),
  40642. default: true
  40643. },
  40644. {
  40645. name: "Giant",
  40646. height: math.unit(80, "feet")
  40647. },
  40648. {
  40649. name: "Kaiju",
  40650. height: math.unit(240, "feet")
  40651. },
  40652. {
  40653. name: "Macro",
  40654. height: math.unit(800, "feet")
  40655. },
  40656. {
  40657. name: "Macro+",
  40658. height: math.unit(2400, "feet")
  40659. },
  40660. {
  40661. name: "Macro++",
  40662. height: math.unit(8000, "feet")
  40663. },
  40664. {
  40665. name: "City-Crushing",
  40666. height: math.unit(24000, "feet")
  40667. },
  40668. {
  40669. name: "Mountain-Mashing",
  40670. height: math.unit(80000, "feet")
  40671. },
  40672. {
  40673. name: "District Demolisher",
  40674. height: math.unit(240000, "feet")
  40675. },
  40676. {
  40677. name: "Tri-County Terror",
  40678. height: math.unit(800000, "feet")
  40679. },
  40680. {
  40681. name: "State Smasher",
  40682. height: math.unit(2.4e6, "feet")
  40683. },
  40684. {
  40685. name: "Nation Nemesis",
  40686. height: math.unit(8e6, "feet")
  40687. },
  40688. {
  40689. name: "Continent Cracker",
  40690. height: math.unit(2.4e7, "feet")
  40691. },
  40692. {
  40693. name: "Planet-Pillaging",
  40694. height: math.unit(8e7, "feet")
  40695. },
  40696. {
  40697. name: "Earth-Eclipsing",
  40698. height: math.unit(2.4e8, "feet")
  40699. },
  40700. {
  40701. name: "Jovian-Jostling",
  40702. height: math.unit(8e8, "feet")
  40703. },
  40704. {
  40705. name: "Gas Giant Gulper",
  40706. height: math.unit(2.4e9, "feet")
  40707. },
  40708. {
  40709. name: "Astral Annihilator",
  40710. height: math.unit(8e9, "feet")
  40711. },
  40712. {
  40713. name: "Celestial Conqueror",
  40714. height: math.unit(2.4e10, "feet")
  40715. },
  40716. {
  40717. name: "Sol-Swallowing",
  40718. height: math.unit(8e10, "feet")
  40719. },
  40720. {
  40721. name: "Hunter of the Heavens",
  40722. height: math.unit(2.4e13, "feet")
  40723. },
  40724. ]
  40725. ))
  40726. characterMakers.push(() => makeCharacter(
  40727. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40728. {
  40729. front: {
  40730. height: math.unit(6 + 8/12, "feet"),
  40731. weight: math.unit(250, "kilograms"),
  40732. volume: math.unit(28, "liters"),
  40733. name: "Front",
  40734. image: {
  40735. source: "./media/characters/rebecca-pawlson/front.svg",
  40736. extra: 1737/1596,
  40737. bottom: 107/1844
  40738. }
  40739. },
  40740. back: {
  40741. height: math.unit(6 + 8/12, "feet"),
  40742. weight: math.unit(250, "kilograms"),
  40743. volume: math.unit(28, "liters"),
  40744. name: "Back",
  40745. image: {
  40746. source: "./media/characters/rebecca-pawlson/back.svg",
  40747. extra: 1702/1523,
  40748. bottom: 86/1788
  40749. }
  40750. },
  40751. },
  40752. [
  40753. {
  40754. name: "Normal",
  40755. height: math.unit(6 + 8/12, "feet")
  40756. },
  40757. {
  40758. name: "Mini Macro",
  40759. height: math.unit(10, "feet"),
  40760. default: true
  40761. },
  40762. {
  40763. name: "Macro",
  40764. height: math.unit(100, "feet")
  40765. },
  40766. {
  40767. name: "Mega Macro",
  40768. height: math.unit(2500, "feet")
  40769. },
  40770. {
  40771. name: "Giga Macro",
  40772. height: math.unit(50, "miles")
  40773. },
  40774. ]
  40775. ))
  40776. characterMakers.push(() => makeCharacter(
  40777. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40778. {
  40779. front: {
  40780. height: math.unit(7 + 6/12, "feet"),
  40781. weight: math.unit(600, "lb"),
  40782. name: "Front",
  40783. image: {
  40784. source: "./media/characters/moxie-nova/front.svg",
  40785. extra: 1734/1652,
  40786. bottom: 41/1775
  40787. }
  40788. },
  40789. },
  40790. [
  40791. {
  40792. name: "Normal",
  40793. height: math.unit(7 + 6/12, "feet"),
  40794. default: true
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40800. {
  40801. goat: {
  40802. height: math.unit(4, "feet"),
  40803. weight: math.unit(180, "lb"),
  40804. name: "Goat",
  40805. image: {
  40806. source: "./media/characters/tiffany/goat.svg",
  40807. extra: 1845/1595,
  40808. bottom: 106/1951
  40809. }
  40810. },
  40811. front: {
  40812. height: math.unit(5, "feet"),
  40813. weight: math.unit(150, "lb"),
  40814. name: "Foxcoon",
  40815. image: {
  40816. source: "./media/characters/tiffany/foxcoon.svg",
  40817. extra: 1941/1845,
  40818. bottom: 58/1999
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Normal",
  40825. height: math.unit(5, "feet"),
  40826. default: true
  40827. },
  40828. ]
  40829. ))
  40830. characterMakers.push(() => makeCharacter(
  40831. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40832. {
  40833. front: {
  40834. height: math.unit(8, "feet"),
  40835. weight: math.unit(300, "lb"),
  40836. name: "Front",
  40837. image: {
  40838. source: "./media/characters/raxinath/front.svg",
  40839. extra: 1407/1309,
  40840. bottom: 39/1446
  40841. }
  40842. },
  40843. back: {
  40844. height: math.unit(8, "feet"),
  40845. weight: math.unit(300, "lb"),
  40846. name: "Back",
  40847. image: {
  40848. source: "./media/characters/raxinath/back.svg",
  40849. extra: 1405/1315,
  40850. bottom: 9/1414
  40851. }
  40852. },
  40853. },
  40854. [
  40855. {
  40856. name: "Speck",
  40857. height: math.unit(0.5, "nm")
  40858. },
  40859. {
  40860. name: "Micro",
  40861. height: math.unit(3, "inches")
  40862. },
  40863. {
  40864. name: "Kobold",
  40865. height: math.unit(3, "feet")
  40866. },
  40867. {
  40868. name: "Normal",
  40869. height: math.unit(8, "feet"),
  40870. default: true
  40871. },
  40872. {
  40873. name: "Giant",
  40874. height: math.unit(50, "feet")
  40875. },
  40876. {
  40877. name: "Macro",
  40878. height: math.unit(1000, "feet")
  40879. },
  40880. {
  40881. name: "Megamacro",
  40882. height: math.unit(1, "mile")
  40883. },
  40884. ]
  40885. ))
  40886. characterMakers.push(() => makeCharacter(
  40887. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40888. {
  40889. front: {
  40890. height: math.unit(10, "feet"),
  40891. weight: math.unit(1442, "lb"),
  40892. name: "Front",
  40893. image: {
  40894. source: "./media/characters/mal-dragon/front.svg",
  40895. extra: 1515/1444,
  40896. bottom: 113/1628
  40897. }
  40898. },
  40899. back: {
  40900. height: math.unit(10, "feet"),
  40901. weight: math.unit(1442, "lb"),
  40902. name: "Back",
  40903. image: {
  40904. source: "./media/characters/mal-dragon/back.svg",
  40905. extra: 1527/1434,
  40906. bottom: 25/1552
  40907. }
  40908. },
  40909. },
  40910. [
  40911. {
  40912. name: "Mortal Interaction",
  40913. height: math.unit(10, "feet"),
  40914. default: true
  40915. },
  40916. {
  40917. name: "Large",
  40918. height: math.unit(30, "feet")
  40919. },
  40920. {
  40921. name: "Kaiju",
  40922. height: math.unit(300, "feet")
  40923. },
  40924. {
  40925. name: "Megamacro",
  40926. height: math.unit(10000, "feet")
  40927. },
  40928. {
  40929. name: "Continent Cracker",
  40930. height: math.unit(30000000, "feet")
  40931. },
  40932. {
  40933. name: "Sol-Swallowing",
  40934. height: math.unit(1e11, "feet")
  40935. },
  40936. {
  40937. name: "Light Universal",
  40938. height: math.unit(5, "universes")
  40939. },
  40940. {
  40941. name: "Universe Atoms",
  40942. height: math.unit(1.829e9, "universes")
  40943. },
  40944. {
  40945. name: "Light Multiversal",
  40946. height: math.unit(5, "multiverses")
  40947. },
  40948. {
  40949. name: "Multiverse Atoms",
  40950. height: math.unit(1.829e9, "multiverses")
  40951. },
  40952. {
  40953. name: "Fabric of Time",
  40954. height: math.unit(1e262, "multiverses")
  40955. },
  40956. ]
  40957. ))
  40958. characterMakers.push(() => makeCharacter(
  40959. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40960. {
  40961. front: {
  40962. height: math.unit(9, "feet"),
  40963. weight: math.unit(1050, "lb"),
  40964. name: "Front",
  40965. image: {
  40966. source: "./media/characters/tabitha/front.svg",
  40967. extra: 2083/1994,
  40968. bottom: 68/2151
  40969. }
  40970. },
  40971. },
  40972. [
  40973. {
  40974. name: "Baseline",
  40975. height: math.unit(9, "feet"),
  40976. default: true
  40977. },
  40978. {
  40979. name: "Giant",
  40980. height: math.unit(90, "feet")
  40981. },
  40982. {
  40983. name: "Macro",
  40984. height: math.unit(900, "feet")
  40985. },
  40986. {
  40987. name: "Megamacro",
  40988. height: math.unit(9000, "feet")
  40989. },
  40990. {
  40991. name: "City-Crushing",
  40992. height: math.unit(27000, "feet")
  40993. },
  40994. {
  40995. name: "Mountain-Mashing",
  40996. height: math.unit(90000, "feet")
  40997. },
  40998. {
  40999. name: "Nation Nemesis",
  41000. height: math.unit(9e6, "feet")
  41001. },
  41002. {
  41003. name: "Continent Cracker",
  41004. height: math.unit(27e6, "feet")
  41005. },
  41006. {
  41007. name: "Earth-Eclipsing",
  41008. height: math.unit(2.7e8, "feet")
  41009. },
  41010. {
  41011. name: "Gas Giant Gulper",
  41012. height: math.unit(2.7e9, "feet")
  41013. },
  41014. {
  41015. name: "Sol-Swallowing",
  41016. height: math.unit(9e10, "feet")
  41017. },
  41018. {
  41019. name: "Galaxy Gulper",
  41020. height: math.unit(9, "galaxies")
  41021. },
  41022. {
  41023. name: "Cosmos Churner",
  41024. height: math.unit(9, "universes")
  41025. },
  41026. ]
  41027. ))
  41028. characterMakers.push(() => makeCharacter(
  41029. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41030. {
  41031. front: {
  41032. height: math.unit(160, "cm"),
  41033. weight: math.unit(55, "kg"),
  41034. name: "Front",
  41035. image: {
  41036. source: "./media/characters/tow/front.svg",
  41037. extra: 1751/1722,
  41038. bottom: 74/1825
  41039. }
  41040. },
  41041. },
  41042. [
  41043. {
  41044. name: "Norm",
  41045. height: math.unit(160, "cm")
  41046. },
  41047. {
  41048. name: "Casual",
  41049. height: math.unit(3200, "m"),
  41050. default: true
  41051. },
  41052. {
  41053. name: "Show-Off",
  41054. height: math.unit(160, "km")
  41055. },
  41056. ]
  41057. ))
  41058. characterMakers.push(() => makeCharacter(
  41059. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41060. {
  41061. front: {
  41062. height: math.unit(7 + 11/12, "feet"),
  41063. weight: math.unit(342.8, "lb"),
  41064. name: "Front",
  41065. image: {
  41066. source: "./media/characters/vivian-orca-dragon/front.svg",
  41067. extra: 1890/1865,
  41068. bottom: 28/1918
  41069. }
  41070. },
  41071. },
  41072. [
  41073. {
  41074. name: "Micro",
  41075. height: math.unit(5, "inches")
  41076. },
  41077. {
  41078. name: "Normal",
  41079. height: math.unit(7 + 11/12, "feet"),
  41080. default: true
  41081. },
  41082. {
  41083. name: "Macro",
  41084. height: math.unit(395 + 7/12, "feet")
  41085. },
  41086. ]
  41087. ))
  41088. characterMakers.push(() => makeCharacter(
  41089. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41090. {
  41091. side: {
  41092. height: math.unit(10, "feet"),
  41093. weight: math.unit(1442, "lb"),
  41094. name: "Side",
  41095. image: {
  41096. source: "./media/characters/lotherakon/side.svg",
  41097. extra: 1604/1497,
  41098. bottom: 89/1693
  41099. }
  41100. },
  41101. },
  41102. [
  41103. {
  41104. name: "Mortal Interaction",
  41105. height: math.unit(10, "feet")
  41106. },
  41107. {
  41108. name: "Large",
  41109. height: math.unit(30, "feet"),
  41110. default: true
  41111. },
  41112. {
  41113. name: "Giant",
  41114. height: math.unit(100, "feet")
  41115. },
  41116. {
  41117. name: "Kaiju",
  41118. height: math.unit(300, "feet")
  41119. },
  41120. {
  41121. name: "Macro",
  41122. height: math.unit(1000, "feet")
  41123. },
  41124. {
  41125. name: "Macro+",
  41126. height: math.unit(3000, "feet")
  41127. },
  41128. {
  41129. name: "Megamacro",
  41130. height: math.unit(10000, "feet")
  41131. },
  41132. {
  41133. name: "City-Crushing",
  41134. height: math.unit(30000, "feet")
  41135. },
  41136. {
  41137. name: "Continent Cracker",
  41138. height: math.unit(30e6, "feet")
  41139. },
  41140. {
  41141. name: "Earth Eclipsing",
  41142. height: math.unit(3e8, "feet")
  41143. },
  41144. {
  41145. name: "Gas Giant Gulper",
  41146. height: math.unit(3e9, "feet")
  41147. },
  41148. {
  41149. name: "Sol-Swallowing",
  41150. height: math.unit(1e11, "feet")
  41151. },
  41152. {
  41153. name: "System Swallower",
  41154. height: math.unit(3e14, "feet")
  41155. },
  41156. {
  41157. name: "Galaxy Gulper",
  41158. height: math.unit(10, "galaxies")
  41159. },
  41160. {
  41161. name: "Light Universal",
  41162. height: math.unit(5, "universes")
  41163. },
  41164. {
  41165. name: "Universe Palm",
  41166. height: math.unit(20, "universes")
  41167. },
  41168. {
  41169. name: "Light Multiversal",
  41170. height: math.unit(5, "multiverses")
  41171. },
  41172. {
  41173. name: "Multiverse Palm",
  41174. height: math.unit(20, "multiverses")
  41175. },
  41176. {
  41177. name: "Inferno Incarnate",
  41178. height: math.unit(1e7, "multiverses")
  41179. },
  41180. ]
  41181. ))
  41182. characterMakers.push(() => makeCharacter(
  41183. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41184. {
  41185. front: {
  41186. height: math.unit(8, "feet"),
  41187. weight: math.unit(1200, "lb"),
  41188. name: "Front",
  41189. image: {
  41190. source: "./media/characters/malithee/front.svg",
  41191. extra: 1675/1640,
  41192. bottom: 162/1837
  41193. }
  41194. },
  41195. },
  41196. [
  41197. {
  41198. name: "Mortal Interaction",
  41199. height: math.unit(8, "feet"),
  41200. default: true
  41201. },
  41202. {
  41203. name: "Large",
  41204. height: math.unit(24, "feet")
  41205. },
  41206. {
  41207. name: "Kaiju",
  41208. height: math.unit(240, "feet")
  41209. },
  41210. {
  41211. name: "Megamacro",
  41212. height: math.unit(8000, "feet")
  41213. },
  41214. {
  41215. name: "Continent Cracker",
  41216. height: math.unit(24e6, "feet")
  41217. },
  41218. {
  41219. name: "Earth-Eclipsing",
  41220. height: math.unit(2.4e8, "feet")
  41221. },
  41222. {
  41223. name: "Sol-Swallowing",
  41224. height: math.unit(8e10, "feet")
  41225. },
  41226. {
  41227. name: "Galaxy Gulper",
  41228. height: math.unit(8, "galaxies")
  41229. },
  41230. {
  41231. name: "Light Universal",
  41232. height: math.unit(4, "universes")
  41233. },
  41234. {
  41235. name: "Universe Atoms",
  41236. height: math.unit(1.829e9, "universes")
  41237. },
  41238. {
  41239. name: "Light Multiversal",
  41240. height: math.unit(4, "multiverses")
  41241. },
  41242. {
  41243. name: "Multiverse Atoms",
  41244. height: math.unit(1.829e9, "multiverses")
  41245. },
  41246. {
  41247. name: "Nigh-Omnipresence",
  41248. height: math.unit(8e261, "multiverses")
  41249. },
  41250. ]
  41251. ))
  41252. characterMakers.push(() => makeCharacter(
  41253. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41254. {
  41255. front: {
  41256. height: math.unit(10, "feet"),
  41257. weight: math.unit(1500, "lb"),
  41258. name: "Front",
  41259. image: {
  41260. source: "./media/characters/miles-thestia/front.svg",
  41261. extra: 1812/1727,
  41262. bottom: 86/1898
  41263. }
  41264. },
  41265. back: {
  41266. height: math.unit(10, "feet"),
  41267. weight: math.unit(1500, "lb"),
  41268. name: "Back",
  41269. image: {
  41270. source: "./media/characters/miles-thestia/back.svg",
  41271. extra: 1799/1690,
  41272. bottom: 47/1846
  41273. }
  41274. },
  41275. frontNsfw: {
  41276. height: math.unit(10, "feet"),
  41277. weight: math.unit(1500, "lb"),
  41278. name: "Front (NSFW)",
  41279. image: {
  41280. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41281. extra: 1812/1727,
  41282. bottom: 86/1898
  41283. }
  41284. },
  41285. },
  41286. [
  41287. {
  41288. name: "Mini-Macro",
  41289. height: math.unit(10, "feet"),
  41290. default: true
  41291. },
  41292. ]
  41293. ))
  41294. characterMakers.push(() => makeCharacter(
  41295. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41296. {
  41297. front: {
  41298. height: math.unit(25, "feet"),
  41299. name: "Front",
  41300. image: {
  41301. source: "./media/characters/titan-s-wulf/front.svg",
  41302. extra: 1560/1484,
  41303. bottom: 76/1636
  41304. }
  41305. },
  41306. },
  41307. [
  41308. {
  41309. name: "Smallest",
  41310. height: math.unit(25, "feet"),
  41311. default: true
  41312. },
  41313. {
  41314. name: "Normal",
  41315. height: math.unit(200, "feet")
  41316. },
  41317. {
  41318. name: "Macro",
  41319. height: math.unit(200000, "feet")
  41320. },
  41321. {
  41322. name: "Multiversal Original",
  41323. height: math.unit(10000, "multiverses")
  41324. },
  41325. ]
  41326. ))
  41327. characterMakers.push(() => makeCharacter(
  41328. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41329. {
  41330. front: {
  41331. height: math.unit(8, "feet"),
  41332. weight: math.unit(553, "lb"),
  41333. name: "Front",
  41334. image: {
  41335. source: "./media/characters/tawendeh/front.svg",
  41336. extra: 2365/2268,
  41337. bottom: 83/2448
  41338. }
  41339. },
  41340. frontClothed: {
  41341. height: math.unit(8, "feet"),
  41342. weight: math.unit(553, "lb"),
  41343. name: "Front (Clothed)",
  41344. image: {
  41345. source: "./media/characters/tawendeh/front-clothed.svg",
  41346. extra: 2365/2268,
  41347. bottom: 83/2448
  41348. }
  41349. },
  41350. back: {
  41351. height: math.unit(8, "feet"),
  41352. weight: math.unit(553, "lb"),
  41353. name: "Back",
  41354. image: {
  41355. source: "./media/characters/tawendeh/back.svg",
  41356. extra: 2397/2294,
  41357. bottom: 42/2439
  41358. }
  41359. },
  41360. },
  41361. [
  41362. {
  41363. name: "Mortal Interaction",
  41364. height: math.unit(8, "feet"),
  41365. default: true
  41366. },
  41367. {
  41368. name: "Giant",
  41369. height: math.unit(80, "feet")
  41370. },
  41371. {
  41372. name: "Macro",
  41373. height: math.unit(800, "feet")
  41374. },
  41375. {
  41376. name: "Megamacro",
  41377. height: math.unit(8000, "feet")
  41378. },
  41379. {
  41380. name: "City-Crushing",
  41381. height: math.unit(24000, "feet")
  41382. },
  41383. {
  41384. name: "Mountain-Mashing",
  41385. height: math.unit(80000, "feet")
  41386. },
  41387. {
  41388. name: "Nation Nemesis",
  41389. height: math.unit(8e6, "feet")
  41390. },
  41391. {
  41392. name: "Continent Cracker",
  41393. height: math.unit(24e6, "feet")
  41394. },
  41395. {
  41396. name: "Earth-Eclipsing",
  41397. height: math.unit(2.4e8, "feet")
  41398. },
  41399. {
  41400. name: "Gas Giant Gulper",
  41401. height: math.unit(2.4e9, "feet")
  41402. },
  41403. {
  41404. name: "Sol-Swallowing",
  41405. height: math.unit(8e10, "feet")
  41406. },
  41407. {
  41408. name: "Galaxy Gulper",
  41409. height: math.unit(8, "galaxies")
  41410. },
  41411. {
  41412. name: "Cosmos Churner",
  41413. height: math.unit(8, "universes")
  41414. },
  41415. {
  41416. name: "Omnipotent Otter",
  41417. height: math.unit(80, "universes")
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(2.6, "meters"),
  41426. weight: math.unit(900, "kg"),
  41427. name: "Front",
  41428. image: {
  41429. source: "./media/characters/neesha/front.svg",
  41430. extra: 1803/1653,
  41431. bottom: 128/1931
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Normal",
  41438. height: math.unit(2.6, "meters"),
  41439. default: true
  41440. },
  41441. {
  41442. name: "Macro",
  41443. height: math.unit(50, "meters")
  41444. },
  41445. ]
  41446. ))
  41447. characterMakers.push(() => makeCharacter(
  41448. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41449. {
  41450. front: {
  41451. height: math.unit(5, "feet"),
  41452. weight: math.unit(185, "lb"),
  41453. name: "Front",
  41454. image: {
  41455. source: "./media/characters/kyera/front.svg",
  41456. extra: 1875/1790,
  41457. bottom: 96/1971
  41458. }
  41459. },
  41460. },
  41461. [
  41462. {
  41463. name: "Normal",
  41464. height: math.unit(5, "feet"),
  41465. default: true
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(7 + 6/12, "feet"),
  41474. weight: math.unit(540, "lb"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/yuko/front.svg",
  41478. extra: 1282/1222,
  41479. bottom: 101/1383
  41480. }
  41481. },
  41482. frontClothed: {
  41483. height: math.unit(7 + 6/12, "feet"),
  41484. weight: math.unit(540, "lb"),
  41485. name: "Front (Clothed)",
  41486. image: {
  41487. source: "./media/characters/yuko/front-clothed.svg",
  41488. extra: 1282/1222,
  41489. bottom: 101/1383
  41490. }
  41491. },
  41492. },
  41493. [
  41494. {
  41495. name: "Normal",
  41496. height: math.unit(7 + 6/12, "feet"),
  41497. default: true
  41498. },
  41499. {
  41500. name: "Macro",
  41501. height: math.unit(26 + 9/12, "feet")
  41502. },
  41503. {
  41504. name: "Megamacro",
  41505. height: math.unit(300, "feet")
  41506. },
  41507. {
  41508. name: "Gigamacro",
  41509. height: math.unit(5000, "feet")
  41510. },
  41511. {
  41512. name: "Planetary",
  41513. height: math.unit(10000, "miles")
  41514. },
  41515. ]
  41516. ))
  41517. characterMakers.push(() => makeCharacter(
  41518. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41519. {
  41520. front: {
  41521. height: math.unit(8 + 2/12, "feet"),
  41522. weight: math.unit(600, "lb"),
  41523. name: "Front",
  41524. image: {
  41525. source: "./media/characters/deam-nitrel/front.svg",
  41526. extra: 1308/1234,
  41527. bottom: 125/1433
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Normal",
  41534. height: math.unit(8 + 2/12, "feet"),
  41535. default: true
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(6.1, "feet"),
  41544. weight: math.unit(180, "lb"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/skyress/front.svg",
  41548. extra: 1045/915,
  41549. bottom: 28/1073
  41550. }
  41551. },
  41552. maw: {
  41553. height: math.unit(1, "feet"),
  41554. name: "Maw",
  41555. image: {
  41556. source: "./media/characters/skyress/maw.svg"
  41557. }
  41558. },
  41559. },
  41560. [
  41561. {
  41562. name: "Normal",
  41563. height: math.unit(6.1, "feet"),
  41564. default: true
  41565. },
  41566. {
  41567. name: "Macro",
  41568. height: math.unit(200, "feet")
  41569. },
  41570. ]
  41571. ))
  41572. characterMakers.push(() => makeCharacter(
  41573. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41574. {
  41575. front: {
  41576. height: math.unit(4 + 2/12, "feet"),
  41577. weight: math.unit(40, "kg"),
  41578. name: "Front",
  41579. image: {
  41580. source: "./media/characters/amethyst-jones/front.svg",
  41581. extra: 1220/1150,
  41582. bottom: 101/1321
  41583. }
  41584. },
  41585. },
  41586. [
  41587. {
  41588. name: "Normal",
  41589. height: math.unit(4 + 2/12, "feet"),
  41590. default: true
  41591. },
  41592. ]
  41593. ))
  41594. characterMakers.push(() => makeCharacter(
  41595. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41596. {
  41597. front: {
  41598. height: math.unit(1.7, "m"),
  41599. weight: math.unit(135, "lb"),
  41600. name: "Front",
  41601. image: {
  41602. source: "./media/characters/jade/front.svg",
  41603. extra: 1818/1767,
  41604. bottom: 32/1850
  41605. }
  41606. },
  41607. back: {
  41608. height: math.unit(1.7, "m"),
  41609. weight: math.unit(135, "lb"),
  41610. name: "Back",
  41611. image: {
  41612. source: "./media/characters/jade/back.svg",
  41613. extra: 1869/1809,
  41614. bottom: 35/1904
  41615. }
  41616. },
  41617. hand: {
  41618. height: math.unit(0.24, "m"),
  41619. name: "Hand",
  41620. image: {
  41621. source: "./media/characters/jade/hand.svg"
  41622. }
  41623. },
  41624. foot: {
  41625. height: math.unit(0.263, "m"),
  41626. name: "Foot",
  41627. image: {
  41628. source: "./media/characters/jade/foot.svg"
  41629. }
  41630. },
  41631. dick: {
  41632. height: math.unit(0.47, "m"),
  41633. name: "Dick",
  41634. image: {
  41635. source: "./media/characters/jade/dick.svg"
  41636. }
  41637. },
  41638. },
  41639. [
  41640. {
  41641. name: "Micro",
  41642. height: math.unit(22, "cm")
  41643. },
  41644. {
  41645. name: "Normal",
  41646. height: math.unit(1.7, "m"),
  41647. default: true
  41648. },
  41649. {
  41650. name: "Macro",
  41651. height: math.unit(152, "m")
  41652. },
  41653. ]
  41654. ))
  41655. characterMakers.push(() => makeCharacter(
  41656. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41657. {
  41658. front: {
  41659. height: math.unit(100, "miles"),
  41660. weight: math.unit(20000, "tons"),
  41661. name: "Front",
  41662. image: {
  41663. source: "./media/characters/cookie/front.svg",
  41664. extra: 1125/1070,
  41665. bottom: 30/1155
  41666. }
  41667. },
  41668. },
  41669. [
  41670. {
  41671. name: "Big",
  41672. height: math.unit(50, "feet")
  41673. },
  41674. {
  41675. name: "Macro",
  41676. height: math.unit(100, "miles"),
  41677. default: true
  41678. },
  41679. {
  41680. name: "Megamacro",
  41681. height: math.unit(90000, "miles")
  41682. },
  41683. ]
  41684. ))
  41685. characterMakers.push(() => makeCharacter(
  41686. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41687. {
  41688. front: {
  41689. height: math.unit(6, "feet"),
  41690. weight: math.unit(145, "lb"),
  41691. name: "Front",
  41692. image: {
  41693. source: "./media/characters/farzian/front.svg",
  41694. extra: 1902/1693,
  41695. bottom: 108/2010
  41696. }
  41697. },
  41698. },
  41699. [
  41700. {
  41701. name: "Macro",
  41702. height: math.unit(500, "feet"),
  41703. default: true
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41709. {
  41710. front: {
  41711. height: math.unit(3 + 6/12, "feet"),
  41712. weight: math.unit(50, "lb"),
  41713. name: "Front",
  41714. image: {
  41715. source: "./media/characters/kimberly-tilson/front.svg",
  41716. extra: 1400/1322,
  41717. bottom: 36/1436
  41718. }
  41719. },
  41720. back: {
  41721. height: math.unit(3 + 6/12, "feet"),
  41722. weight: math.unit(50, "lb"),
  41723. name: "Back",
  41724. image: {
  41725. source: "./media/characters/kimberly-tilson/back.svg",
  41726. extra: 1370/1307,
  41727. bottom: 20/1390
  41728. }
  41729. },
  41730. },
  41731. [
  41732. {
  41733. name: "Normal",
  41734. height: math.unit(3 + 6/12, "feet"),
  41735. default: true
  41736. },
  41737. ]
  41738. ))
  41739. characterMakers.push(() => makeCharacter(
  41740. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41741. {
  41742. front: {
  41743. height: math.unit(1148, "feet"),
  41744. weight: math.unit(34057, "lb"),
  41745. name: "Front",
  41746. image: {
  41747. source: "./media/characters/harthos/front.svg",
  41748. extra: 1391/1339,
  41749. bottom: 13/1404
  41750. }
  41751. },
  41752. },
  41753. [
  41754. {
  41755. name: "Macro",
  41756. height: math.unit(1148, "feet"),
  41757. default: true
  41758. },
  41759. ]
  41760. ))
  41761. characterMakers.push(() => makeCharacter(
  41762. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41763. {
  41764. front: {
  41765. height: math.unit(15, "feet"),
  41766. name: "Front",
  41767. image: {
  41768. source: "./media/characters/hypatia/front.svg",
  41769. extra: 1653/1591,
  41770. bottom: 79/1732
  41771. }
  41772. },
  41773. },
  41774. [
  41775. {
  41776. name: "Normal",
  41777. height: math.unit(15, "feet")
  41778. },
  41779. {
  41780. name: "Small",
  41781. height: math.unit(300, "feet")
  41782. },
  41783. {
  41784. name: "Macro",
  41785. height: math.unit(2500, "feet"),
  41786. default: true
  41787. },
  41788. {
  41789. name: "Mega Macro",
  41790. height: math.unit(1500, "miles")
  41791. },
  41792. {
  41793. name: "Giga Macro",
  41794. height: math.unit(1.5e6, "miles")
  41795. },
  41796. ]
  41797. ))
  41798. characterMakers.push(() => makeCharacter(
  41799. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41800. {
  41801. front: {
  41802. height: math.unit(6, "feet"),
  41803. weight: math.unit(200, "lb"),
  41804. name: "Front",
  41805. image: {
  41806. source: "./media/characters/wulver/front.svg",
  41807. extra: 1724/1632,
  41808. bottom: 130/1854
  41809. }
  41810. },
  41811. frontNsfw: {
  41812. height: math.unit(6, "feet"),
  41813. weight: math.unit(200, "lb"),
  41814. name: "Front (NSFW)",
  41815. image: {
  41816. source: "./media/characters/wulver/front-nsfw.svg",
  41817. extra: 1724/1632,
  41818. bottom: 130/1854
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Human-Sized",
  41825. height: math.unit(6, "feet")
  41826. },
  41827. {
  41828. name: "Normal",
  41829. height: math.unit(4, "meters"),
  41830. default: true
  41831. },
  41832. {
  41833. name: "Large",
  41834. height: math.unit(6, "m")
  41835. },
  41836. ]
  41837. ))
  41838. characterMakers.push(() => makeCharacter(
  41839. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41840. {
  41841. front: {
  41842. height: math.unit(7, "feet"),
  41843. name: "Front",
  41844. image: {
  41845. source: "./media/characters/maru/front.svg",
  41846. extra: 1595/1570,
  41847. bottom: 0/1595
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(7, "feet"),
  41855. default: true
  41856. },
  41857. {
  41858. name: "Macro",
  41859. height: math.unit(700, "feet")
  41860. },
  41861. {
  41862. name: "Mega Macro",
  41863. height: math.unit(25, "miles")
  41864. },
  41865. ]
  41866. ))
  41867. characterMakers.push(() => makeCharacter(
  41868. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41869. {
  41870. front: {
  41871. height: math.unit(6, "feet"),
  41872. weight: math.unit(170, "lb"),
  41873. name: "Front",
  41874. image: {
  41875. source: "./media/characters/xenon/front.svg",
  41876. extra: 1376/1305,
  41877. bottom: 56/1432
  41878. }
  41879. },
  41880. back: {
  41881. height: math.unit(6, "feet"),
  41882. weight: math.unit(170, "lb"),
  41883. name: "Back",
  41884. image: {
  41885. source: "./media/characters/xenon/back.svg",
  41886. extra: 1328/1259,
  41887. bottom: 95/1423
  41888. }
  41889. },
  41890. maw: {
  41891. height: math.unit(0.52, "feet"),
  41892. name: "Maw",
  41893. image: {
  41894. source: "./media/characters/xenon/maw.svg"
  41895. }
  41896. },
  41897. handLeft: {
  41898. height: math.unit(0.82 * 169 / 153, "feet"),
  41899. name: "Hand (Left)",
  41900. image: {
  41901. source: "./media/characters/xenon/hand-left.svg"
  41902. }
  41903. },
  41904. handRight: {
  41905. height: math.unit(0.82, "feet"),
  41906. name: "Hand (Right)",
  41907. image: {
  41908. source: "./media/characters/xenon/hand-right.svg"
  41909. }
  41910. },
  41911. footLeft: {
  41912. height: math.unit(1.13, "feet"),
  41913. name: "Foot (Left)",
  41914. image: {
  41915. source: "./media/characters/xenon/foot-left.svg"
  41916. }
  41917. },
  41918. footRight: {
  41919. height: math.unit(1.13 * 194 / 196, "feet"),
  41920. name: "Foot (Right)",
  41921. image: {
  41922. source: "./media/characters/xenon/foot-right.svg"
  41923. }
  41924. },
  41925. },
  41926. [
  41927. {
  41928. name: "Micro",
  41929. height: math.unit(0.8, "inches")
  41930. },
  41931. {
  41932. name: "Normal",
  41933. height: math.unit(6, "feet")
  41934. },
  41935. {
  41936. name: "Macro",
  41937. height: math.unit(50, "feet"),
  41938. default: true
  41939. },
  41940. {
  41941. name: "Macro+",
  41942. height: math.unit(250, "feet")
  41943. },
  41944. {
  41945. name: "Megamacro",
  41946. height: math.unit(1500, "feet")
  41947. },
  41948. ]
  41949. ))
  41950. characterMakers.push(() => makeCharacter(
  41951. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41952. {
  41953. front: {
  41954. height: math.unit(7 + 5/12, "feet"),
  41955. name: "Front",
  41956. image: {
  41957. source: "./media/characters/zane/front.svg",
  41958. extra: 1260/1203,
  41959. bottom: 94/1354
  41960. }
  41961. },
  41962. back: {
  41963. height: math.unit(5.05, "feet"),
  41964. name: "Back",
  41965. image: {
  41966. source: "./media/characters/zane/back.svg",
  41967. extra: 893/829,
  41968. bottom: 30/923
  41969. }
  41970. },
  41971. werewolf: {
  41972. height: math.unit(11, "feet"),
  41973. name: "Werewolf",
  41974. image: {
  41975. source: "./media/characters/zane/werewolf.svg",
  41976. extra: 1383/1323,
  41977. bottom: 89/1472
  41978. }
  41979. },
  41980. foot: {
  41981. height: math.unit(1.46, "feet"),
  41982. name: "Foot",
  41983. image: {
  41984. source: "./media/characters/zane/foot.svg"
  41985. }
  41986. },
  41987. footFront: {
  41988. height: math.unit(0.784, "feet"),
  41989. name: "Foot (Front)",
  41990. image: {
  41991. source: "./media/characters/zane/foot-front.svg"
  41992. }
  41993. },
  41994. dick: {
  41995. height: math.unit(1.95, "feet"),
  41996. name: "Dick",
  41997. image: {
  41998. source: "./media/characters/zane/dick.svg"
  41999. }
  42000. },
  42001. dickWerewolf: {
  42002. height: math.unit(3.77, "feet"),
  42003. name: "Dick (Werewolf)",
  42004. image: {
  42005. source: "./media/characters/zane/dick.svg"
  42006. }
  42007. },
  42008. },
  42009. [
  42010. {
  42011. name: "Normal",
  42012. height: math.unit(7 + 5/12, "feet"),
  42013. default: true
  42014. },
  42015. ]
  42016. ))
  42017. characterMakers.push(() => makeCharacter(
  42018. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42019. {
  42020. front: {
  42021. height: math.unit(6 + 2/12, "feet"),
  42022. weight: math.unit(284, "lb"),
  42023. name: "Front",
  42024. image: {
  42025. source: "./media/characters/benni-desparque/front.svg",
  42026. extra: 1353/1126,
  42027. bottom: 69/1422
  42028. }
  42029. },
  42030. },
  42031. [
  42032. {
  42033. name: "Civilian",
  42034. height: math.unit(6 + 2/12, "feet")
  42035. },
  42036. {
  42037. name: "Normal",
  42038. height: math.unit(98, "feet"),
  42039. default: true
  42040. },
  42041. {
  42042. name: "Kaiju Fighter",
  42043. height: math.unit(268, "feet")
  42044. },
  42045. ]
  42046. ))
  42047. characterMakers.push(() => makeCharacter(
  42048. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42049. {
  42050. front: {
  42051. height: math.unit(5, "feet"),
  42052. weight: math.unit(105, "lb"),
  42053. name: "Front",
  42054. image: {
  42055. source: "./media/characters/maxine/front.svg",
  42056. extra: 1386/1250,
  42057. bottom: 71/1457
  42058. }
  42059. },
  42060. },
  42061. [
  42062. {
  42063. name: "Normal",
  42064. height: math.unit(5, "feet"),
  42065. default: true
  42066. },
  42067. ]
  42068. ))
  42069. characterMakers.push(() => makeCharacter(
  42070. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42071. {
  42072. front: {
  42073. height: math.unit(11 + 7/12, "feet"),
  42074. weight: math.unit(9576, "lb"),
  42075. name: "Front",
  42076. image: {
  42077. source: "./media/characters/scaly/front.svg",
  42078. extra: 888/867,
  42079. bottom: 36/924
  42080. }
  42081. },
  42082. },
  42083. [
  42084. {
  42085. name: "Normal",
  42086. height: math.unit(11 + 7/12, "feet"),
  42087. default: true
  42088. },
  42089. ]
  42090. ))
  42091. characterMakers.push(() => makeCharacter(
  42092. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42093. {
  42094. front: {
  42095. height: math.unit(6 + 3/12, "feet"),
  42096. name: "Front",
  42097. image: {
  42098. source: "./media/characters/saelria/front.svg",
  42099. extra: 1243/1138,
  42100. bottom: 46/1289
  42101. }
  42102. },
  42103. },
  42104. [
  42105. {
  42106. name: "Micro",
  42107. height: math.unit(6, "inches"),
  42108. },
  42109. {
  42110. name: "Normal",
  42111. height: math.unit(6 + 3/12, "feet"),
  42112. default: true
  42113. },
  42114. {
  42115. name: "Macro",
  42116. height: math.unit(25, "feet")
  42117. },
  42118. ]
  42119. ))
  42120. characterMakers.push(() => makeCharacter(
  42121. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42122. {
  42123. front: {
  42124. height: math.unit(80, "meters"),
  42125. weight: math.unit(7000, "tonnes"),
  42126. name: "Front",
  42127. image: {
  42128. source: "./media/characters/tef/front.svg",
  42129. extra: 2036/1991,
  42130. bottom: 54/2090
  42131. }
  42132. },
  42133. back: {
  42134. height: math.unit(80, "meters"),
  42135. weight: math.unit(7000, "tonnes"),
  42136. name: "Back",
  42137. image: {
  42138. source: "./media/characters/tef/back.svg",
  42139. extra: 2036/1991,
  42140. bottom: 54/2090
  42141. }
  42142. },
  42143. },
  42144. [
  42145. {
  42146. name: "Macro",
  42147. height: math.unit(80, "meters"),
  42148. default: true
  42149. },
  42150. ]
  42151. ))
  42152. characterMakers.push(() => makeCharacter(
  42153. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42154. {
  42155. front: {
  42156. height: math.unit(13, "feet"),
  42157. weight: math.unit(6, "tons"),
  42158. name: "Front",
  42159. image: {
  42160. source: "./media/characters/rover/front.svg",
  42161. extra: 1233/1156,
  42162. bottom: 50/1283
  42163. }
  42164. },
  42165. back: {
  42166. height: math.unit(13, "feet"),
  42167. weight: math.unit(6, "tons"),
  42168. name: "Back",
  42169. image: {
  42170. source: "./media/characters/rover/back.svg",
  42171. extra: 1327/1258,
  42172. bottom: 39/1366
  42173. }
  42174. },
  42175. },
  42176. [
  42177. {
  42178. name: "Normal",
  42179. height: math.unit(13, "feet"),
  42180. default: true
  42181. },
  42182. {
  42183. name: "Macro",
  42184. height: math.unit(1300, "feet")
  42185. },
  42186. {
  42187. name: "Megamacro",
  42188. height: math.unit(1300, "miles")
  42189. },
  42190. {
  42191. name: "Gigamacro",
  42192. height: math.unit(1300000, "miles")
  42193. },
  42194. ]
  42195. ))
  42196. characterMakers.push(() => makeCharacter(
  42197. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42198. {
  42199. front: {
  42200. height: math.unit(6, "feet"),
  42201. weight: math.unit(150, "lb"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/ariz/front.svg",
  42205. extra: 1401/1346,
  42206. bottom: 5/1406
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Normal",
  42213. height: math.unit(10, "feet"),
  42214. default: true
  42215. },
  42216. ]
  42217. ))
  42218. characterMakers.push(() => makeCharacter(
  42219. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42220. {
  42221. front: {
  42222. height: math.unit(6, "feet"),
  42223. weight: math.unit(140, "lb"),
  42224. name: "Front",
  42225. image: {
  42226. source: "./media/characters/sigrun/front.svg",
  42227. extra: 1418/1359,
  42228. bottom: 27/1445
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Macro",
  42235. height: math.unit(35, "feet"),
  42236. default: true
  42237. },
  42238. ]
  42239. ))
  42240. characterMakers.push(() => makeCharacter(
  42241. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42242. {
  42243. front: {
  42244. height: math.unit(6, "feet"),
  42245. weight: math.unit(150, "lb"),
  42246. name: "Front",
  42247. image: {
  42248. source: "./media/characters/numin/front.svg",
  42249. extra: 1433/1388,
  42250. bottom: 12/1445
  42251. }
  42252. },
  42253. },
  42254. [
  42255. {
  42256. name: "Macro",
  42257. height: math.unit(21.5, "km"),
  42258. default: true
  42259. },
  42260. ]
  42261. ))
  42262. characterMakers.push(() => makeCharacter(
  42263. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42264. {
  42265. front: {
  42266. height: math.unit(6, "feet"),
  42267. weight: math.unit(463, "lb"),
  42268. name: "Front",
  42269. image: {
  42270. source: "./media/characters/melwa/front.svg",
  42271. extra: 1307/1248,
  42272. bottom: 93/1400
  42273. }
  42274. },
  42275. },
  42276. [
  42277. {
  42278. name: "Macro",
  42279. height: math.unit(50, "meters"),
  42280. default: true
  42281. },
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42286. {
  42287. front: {
  42288. height: math.unit(325, "feet"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/zorkaiju/front.svg",
  42292. extra: 1955/1814,
  42293. bottom: 40/1995
  42294. }
  42295. },
  42296. frontExtended: {
  42297. height: math.unit(325, "feet"),
  42298. name: "Front (Extended)",
  42299. image: {
  42300. source: "./media/characters/zorkaiju/front-extended.svg",
  42301. extra: 1955/1814,
  42302. bottom: 40/1995
  42303. }
  42304. },
  42305. side: {
  42306. height: math.unit(325, "feet"),
  42307. name: "Side",
  42308. image: {
  42309. source: "./media/characters/zorkaiju/side.svg",
  42310. extra: 1495/1396,
  42311. bottom: 17/1512
  42312. }
  42313. },
  42314. sideExtended: {
  42315. height: math.unit(325, "feet"),
  42316. name: "Side (Extended)",
  42317. image: {
  42318. source: "./media/characters/zorkaiju/side-extended.svg",
  42319. extra: 1495/1396,
  42320. bottom: 17/1512
  42321. }
  42322. },
  42323. back: {
  42324. height: math.unit(325, "feet"),
  42325. name: "Back",
  42326. image: {
  42327. source: "./media/characters/zorkaiju/back.svg",
  42328. extra: 1959/1821,
  42329. bottom: 31/1990
  42330. }
  42331. },
  42332. backExtended: {
  42333. height: math.unit(325, "feet"),
  42334. name: "Back (Extended)",
  42335. image: {
  42336. source: "./media/characters/zorkaiju/back-extended.svg",
  42337. extra: 1959/1821,
  42338. bottom: 31/1990
  42339. }
  42340. },
  42341. hand: {
  42342. height: math.unit(58.4, "feet"),
  42343. name: "Hand",
  42344. image: {
  42345. source: "./media/characters/zorkaiju/hand.svg"
  42346. }
  42347. },
  42348. handExtended: {
  42349. height: math.unit(61.4, "feet"),
  42350. name: "Hand (Extended)",
  42351. image: {
  42352. source: "./media/characters/zorkaiju/hand-extended.svg"
  42353. }
  42354. },
  42355. foot: {
  42356. height: math.unit(95, "feet"),
  42357. name: "Foot",
  42358. image: {
  42359. source: "./media/characters/zorkaiju/foot.svg"
  42360. }
  42361. },
  42362. leftArm: {
  42363. height: math.unit(59, "feet"),
  42364. name: "Left Arm",
  42365. image: {
  42366. source: "./media/characters/zorkaiju/left-arm.svg"
  42367. }
  42368. },
  42369. rightArm: {
  42370. height: math.unit(59, "feet"),
  42371. name: "Right Arm",
  42372. image: {
  42373. source: "./media/characters/zorkaiju/right-arm.svg"
  42374. }
  42375. },
  42376. leftArmExtended: {
  42377. height: math.unit(59 * 1.033546, "feet"),
  42378. name: "Left Arm (Extended)",
  42379. image: {
  42380. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42381. }
  42382. },
  42383. rightArmExtended: {
  42384. height: math.unit(59 * 1.0496, "feet"),
  42385. name: "Right Arm (Extended)",
  42386. image: {
  42387. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42388. }
  42389. },
  42390. tail: {
  42391. height: math.unit(104, "feet"),
  42392. name: "Tail",
  42393. image: {
  42394. source: "./media/characters/zorkaiju/tail.svg"
  42395. }
  42396. },
  42397. tailExtended: {
  42398. height: math.unit(104, "feet"),
  42399. name: "Tail (Extended)",
  42400. image: {
  42401. source: "./media/characters/zorkaiju/tail-extended.svg"
  42402. }
  42403. },
  42404. tailBottom: {
  42405. height: math.unit(104, "feet"),
  42406. name: "Tail Bottom",
  42407. image: {
  42408. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42409. }
  42410. },
  42411. crystal: {
  42412. height: math.unit(27.54, "feet"),
  42413. name: "Crystal",
  42414. image: {
  42415. source: "./media/characters/zorkaiju/crystal.svg"
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Kaiju",
  42422. height: math.unit(325, "feet"),
  42423. default: true
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42429. {
  42430. front: {
  42431. height: math.unit(6 + 1/12, "feet"),
  42432. weight: math.unit(115, "lb"),
  42433. name: "Front",
  42434. image: {
  42435. source: "./media/characters/bailey-belfry/front.svg",
  42436. extra: 1240/1121,
  42437. bottom: 101/1341
  42438. }
  42439. },
  42440. },
  42441. [
  42442. {
  42443. name: "Normal",
  42444. height: math.unit(6 + 1/12, "feet"),
  42445. default: true
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42451. {
  42452. side: {
  42453. height: math.unit(4, "meters"),
  42454. weight: math.unit(250, "kg"),
  42455. name: "Side",
  42456. image: {
  42457. source: "./media/characters/blacky/side.svg",
  42458. extra: 1027/919,
  42459. bottom: 43/1070
  42460. }
  42461. },
  42462. maw: {
  42463. height: math.unit(1, "meters"),
  42464. name: "Maw",
  42465. image: {
  42466. source: "./media/characters/blacky/maw.svg"
  42467. }
  42468. },
  42469. paw: {
  42470. height: math.unit(1, "meters"),
  42471. name: "Paw",
  42472. image: {
  42473. source: "./media/characters/blacky/paw.svg"
  42474. }
  42475. },
  42476. },
  42477. [
  42478. {
  42479. name: "Normal",
  42480. height: math.unit(4, "meters"),
  42481. default: true
  42482. },
  42483. ]
  42484. ))
  42485. characterMakers.push(() => makeCharacter(
  42486. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42487. {
  42488. front: {
  42489. height: math.unit(170, "cm"),
  42490. weight: math.unit(66, "kg"),
  42491. name: "Front",
  42492. image: {
  42493. source: "./media/characters/thux-ei/front.svg",
  42494. extra: 1109/1011,
  42495. bottom: 8/1117
  42496. }
  42497. },
  42498. },
  42499. [
  42500. {
  42501. name: "Normal",
  42502. height: math.unit(170, "cm"),
  42503. default: true
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(5, "feet"),
  42512. weight: math.unit(120, "lb"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/roxanne-voltaire/front.svg",
  42516. extra: 1901/1779,
  42517. bottom: 53/1954
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Normal",
  42524. height: math.unit(5, "feet"),
  42525. default: true
  42526. },
  42527. {
  42528. name: "Giant",
  42529. height: math.unit(50, "feet")
  42530. },
  42531. {
  42532. name: "Titan",
  42533. height: math.unit(500, "feet")
  42534. },
  42535. {
  42536. name: "Macro",
  42537. height: math.unit(5000, "feet")
  42538. },
  42539. {
  42540. name: "Megamacro",
  42541. height: math.unit(50000, "feet")
  42542. },
  42543. {
  42544. name: "Gigamacro",
  42545. height: math.unit(500000, "feet")
  42546. },
  42547. {
  42548. name: "Teramacro",
  42549. height: math.unit(5e6, "feet")
  42550. },
  42551. ]
  42552. ))
  42553. characterMakers.push(() => makeCharacter(
  42554. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42555. {
  42556. front: {
  42557. height: math.unit(6 + 2/12, "feet"),
  42558. name: "Front",
  42559. image: {
  42560. source: "./media/characters/squeaks/front.svg",
  42561. extra: 1823/1768,
  42562. bottom: 138/1961
  42563. }
  42564. },
  42565. },
  42566. [
  42567. {
  42568. name: "Micro",
  42569. height: math.unit(0.5, "inches")
  42570. },
  42571. {
  42572. name: "Normal",
  42573. height: math.unit(6 + 2/12, "feet"),
  42574. default: true
  42575. },
  42576. {
  42577. name: "Macro",
  42578. height: math.unit(600, "feet")
  42579. },
  42580. ]
  42581. ))
  42582. characterMakers.push(() => makeCharacter(
  42583. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42584. {
  42585. front: {
  42586. height: math.unit(1.72, "meters"),
  42587. name: "Front",
  42588. image: {
  42589. source: "./media/characters/archinger/front.svg",
  42590. extra: 1861/1675,
  42591. bottom: 125/1986
  42592. }
  42593. },
  42594. back: {
  42595. height: math.unit(1.72, "meters"),
  42596. name: "Back",
  42597. image: {
  42598. source: "./media/characters/archinger/back.svg",
  42599. extra: 1844/1701,
  42600. bottom: 104/1948
  42601. }
  42602. },
  42603. cock: {
  42604. height: math.unit(0.59, "feet"),
  42605. name: "Cock",
  42606. image: {
  42607. source: "./media/characters/archinger/cock.svg"
  42608. }
  42609. },
  42610. },
  42611. [
  42612. {
  42613. name: "Normal",
  42614. height: math.unit(1.72, "meters"),
  42615. default: true
  42616. },
  42617. {
  42618. name: "Macro",
  42619. height: math.unit(84, "meters")
  42620. },
  42621. {
  42622. name: "Macro+",
  42623. height: math.unit(112, "meters")
  42624. },
  42625. {
  42626. name: "Macro++",
  42627. height: math.unit(960, "meters")
  42628. },
  42629. {
  42630. name: "Macro+++",
  42631. height: math.unit(4, "km")
  42632. },
  42633. {
  42634. name: "Macro++++",
  42635. height: math.unit(48, "km")
  42636. },
  42637. {
  42638. name: "Macro+++++",
  42639. height: math.unit(4500, "km")
  42640. },
  42641. ]
  42642. ))
  42643. characterMakers.push(() => makeCharacter(
  42644. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42645. {
  42646. front: {
  42647. height: math.unit(5 + 5/12, "feet"),
  42648. name: "Front",
  42649. image: {
  42650. source: "./media/characters/alsnapz/front.svg",
  42651. extra: 1157/1065,
  42652. bottom: 42/1199
  42653. }
  42654. },
  42655. },
  42656. [
  42657. {
  42658. name: "Normal",
  42659. height: math.unit(5 + 5/12, "feet"),
  42660. default: true
  42661. },
  42662. ]
  42663. ))
  42664. characterMakers.push(() => makeCharacter(
  42665. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42666. {
  42667. side: {
  42668. height: math.unit(3.2, "earths"),
  42669. name: "Side",
  42670. image: {
  42671. source: "./media/characters/mag/side.svg",
  42672. extra: 1331/1008,
  42673. bottom: 52/1383
  42674. }
  42675. },
  42676. wing: {
  42677. height: math.unit(1.94, "earths"),
  42678. name: "Wing",
  42679. image: {
  42680. source: "./media/characters/mag/wing.svg"
  42681. }
  42682. },
  42683. dick: {
  42684. height: math.unit(1.8, "earths"),
  42685. name: "Dick",
  42686. image: {
  42687. source: "./media/characters/mag/dick.svg"
  42688. }
  42689. },
  42690. ass: {
  42691. height: math.unit(1.33, "earths"),
  42692. name: "Ass",
  42693. image: {
  42694. source: "./media/characters/mag/ass.svg"
  42695. }
  42696. },
  42697. head: {
  42698. height: math.unit(1.1, "earths"),
  42699. name: "Head",
  42700. image: {
  42701. source: "./media/characters/mag/head.svg"
  42702. }
  42703. },
  42704. maw: {
  42705. height: math.unit(1.62, "earths"),
  42706. name: "Maw",
  42707. image: {
  42708. source: "./media/characters/mag/maw.svg"
  42709. }
  42710. },
  42711. },
  42712. [
  42713. {
  42714. name: "Small",
  42715. height: math.unit(162, "feet")
  42716. },
  42717. {
  42718. name: "Normal",
  42719. height: math.unit(3.2, "earths"),
  42720. default: true
  42721. },
  42722. ]
  42723. ))
  42724. characterMakers.push(() => makeCharacter(
  42725. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42726. {
  42727. front: {
  42728. height: math.unit(512, "feet"),
  42729. weight: math.unit(63509, "tonnes"),
  42730. name: "Front",
  42731. image: {
  42732. source: "./media/characters/vorrel-harroc/front.svg",
  42733. extra: 1075/1063,
  42734. bottom: 62/1137
  42735. }
  42736. },
  42737. },
  42738. [
  42739. {
  42740. name: "Normal",
  42741. height: math.unit(10, "feet")
  42742. },
  42743. {
  42744. name: "Macro",
  42745. height: math.unit(512, "feet"),
  42746. default: true
  42747. },
  42748. {
  42749. name: "Megamacro",
  42750. height: math.unit(256, "miles")
  42751. },
  42752. {
  42753. name: "Gigamacro",
  42754. height: math.unit(4096, "miles")
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42760. {
  42761. side: {
  42762. height: math.unit(50, "feet"),
  42763. name: "Side",
  42764. image: {
  42765. source: "./media/characters/froimar/side.svg",
  42766. extra: 855/638,
  42767. bottom: 99/954
  42768. }
  42769. },
  42770. },
  42771. [
  42772. {
  42773. name: "Macro",
  42774. height: math.unit(50, "feet"),
  42775. default: true
  42776. },
  42777. ]
  42778. ))
  42779. characterMakers.push(() => makeCharacter(
  42780. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42781. {
  42782. front: {
  42783. height: math.unit(210, "miles"),
  42784. name: "Front",
  42785. image: {
  42786. source: "./media/characters/timothy/front.svg",
  42787. extra: 1007/943,
  42788. bottom: 62/1069
  42789. }
  42790. },
  42791. frontSkirt: {
  42792. height: math.unit(210, "miles"),
  42793. name: "Front (Skirt)",
  42794. image: {
  42795. source: "./media/characters/timothy/front-skirt.svg",
  42796. extra: 1007/943,
  42797. bottom: 62/1069
  42798. }
  42799. },
  42800. frontCoat: {
  42801. height: math.unit(210, "miles"),
  42802. name: "Front (Coat)",
  42803. image: {
  42804. source: "./media/characters/timothy/front-coat.svg",
  42805. extra: 1007/943,
  42806. bottom: 62/1069
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Macro",
  42813. height: math.unit(210, "miles"),
  42814. default: true
  42815. },
  42816. {
  42817. name: "Megamacro",
  42818. height: math.unit(210000, "miles")
  42819. },
  42820. ]
  42821. ))
  42822. characterMakers.push(() => makeCharacter(
  42823. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42824. {
  42825. front: {
  42826. height: math.unit(188, "feet"),
  42827. name: "Front",
  42828. image: {
  42829. source: "./media/characters/pyotr/front.svg",
  42830. extra: 1912/1826,
  42831. bottom: 18/1930
  42832. }
  42833. },
  42834. },
  42835. [
  42836. {
  42837. name: "Macro",
  42838. height: math.unit(188, "feet"),
  42839. default: true
  42840. },
  42841. {
  42842. name: "Megamacro",
  42843. height: math.unit(8, "miles")
  42844. },
  42845. ]
  42846. ))
  42847. characterMakers.push(() => makeCharacter(
  42848. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42849. {
  42850. side: {
  42851. height: math.unit(10, "feet"),
  42852. weight: math.unit(4500, "lb"),
  42853. name: "Side",
  42854. image: {
  42855. source: "./media/characters/ackart/side.svg",
  42856. extra: 1776/1668,
  42857. bottom: 116/1892
  42858. }
  42859. },
  42860. },
  42861. [
  42862. {
  42863. name: "Normal",
  42864. height: math.unit(10, "feet"),
  42865. default: true
  42866. },
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42871. {
  42872. side: {
  42873. height: math.unit(21, "feet"),
  42874. name: "Side",
  42875. image: {
  42876. source: "./media/characters/nolow/side.svg",
  42877. extra: 1484/1434,
  42878. bottom: 85/1569
  42879. }
  42880. },
  42881. sideErect: {
  42882. height: math.unit(21, "feet"),
  42883. name: "Side-erect",
  42884. image: {
  42885. source: "./media/characters/nolow/side-erect.svg",
  42886. extra: 1484/1434,
  42887. bottom: 85/1569
  42888. }
  42889. },
  42890. },
  42891. [
  42892. {
  42893. name: "Regular",
  42894. height: math.unit(12, "feet")
  42895. },
  42896. {
  42897. name: "Big Chee",
  42898. height: math.unit(21, "feet"),
  42899. default: true
  42900. },
  42901. ]
  42902. ))
  42903. characterMakers.push(() => makeCharacter(
  42904. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42905. {
  42906. front: {
  42907. height: math.unit(7, "feet"),
  42908. weight: math.unit(250, "lb"),
  42909. name: "Front",
  42910. image: {
  42911. source: "./media/characters/nines/front.svg",
  42912. extra: 1741/1607,
  42913. bottom: 41/1782
  42914. }
  42915. },
  42916. side: {
  42917. height: math.unit(7, "feet"),
  42918. weight: math.unit(250, "lb"),
  42919. name: "Side",
  42920. image: {
  42921. source: "./media/characters/nines/side.svg",
  42922. extra: 1854/1735,
  42923. bottom: 93/1947
  42924. }
  42925. },
  42926. back: {
  42927. height: math.unit(7, "feet"),
  42928. weight: math.unit(250, "lb"),
  42929. name: "Back",
  42930. image: {
  42931. source: "./media/characters/nines/back.svg",
  42932. extra: 1748/1615,
  42933. bottom: 20/1768
  42934. }
  42935. },
  42936. },
  42937. [
  42938. {
  42939. name: "Megamacro",
  42940. height: math.unit(99, "km"),
  42941. default: true
  42942. },
  42943. ]
  42944. ))
  42945. characterMakers.push(() => makeCharacter(
  42946. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42947. {
  42948. front: {
  42949. height: math.unit(5 + 10/12, "feet"),
  42950. weight: math.unit(210, "lb"),
  42951. name: "Front",
  42952. image: {
  42953. source: "./media/characters/zenith/front.svg",
  42954. extra: 1531/1452,
  42955. bottom: 198/1729
  42956. }
  42957. },
  42958. back: {
  42959. height: math.unit(5 + 10/12, "feet"),
  42960. weight: math.unit(210, "lb"),
  42961. name: "Back",
  42962. image: {
  42963. source: "./media/characters/zenith/back.svg",
  42964. extra: 1571/1487,
  42965. bottom: 75/1646
  42966. }
  42967. },
  42968. },
  42969. [
  42970. {
  42971. name: "Normal",
  42972. height: math.unit(5 + 10/12, "feet"),
  42973. default: true
  42974. }
  42975. ]
  42976. ))
  42977. characterMakers.push(() => makeCharacter(
  42978. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42979. {
  42980. front: {
  42981. height: math.unit(4, "feet"),
  42982. weight: math.unit(60, "lb"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/jasper/front.svg",
  42986. extra: 1450/1379,
  42987. bottom: 19/1469
  42988. }
  42989. },
  42990. },
  42991. [
  42992. {
  42993. name: "Normal",
  42994. height: math.unit(4, "feet"),
  42995. default: true
  42996. },
  42997. ]
  42998. ))
  42999. characterMakers.push(() => makeCharacter(
  43000. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43001. {
  43002. front: {
  43003. height: math.unit(6 + 5/12, "feet"),
  43004. weight: math.unit(290, "lb"),
  43005. name: "Front",
  43006. image: {
  43007. source: "./media/characters/tiberius-thyben/front.svg",
  43008. extra: 757/739,
  43009. bottom: 39/796
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Micro",
  43016. height: math.unit(1.5, "inches")
  43017. },
  43018. {
  43019. name: "Normal",
  43020. height: math.unit(6 + 5/12, "feet"),
  43021. default: true
  43022. },
  43023. {
  43024. name: "Macro",
  43025. height: math.unit(300, "feet")
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43031. {
  43032. front: {
  43033. height: math.unit(5 + 6/12, "feet"),
  43034. weight: math.unit(60, "kg"),
  43035. name: "Front",
  43036. image: {
  43037. source: "./media/characters/sabre/front.svg",
  43038. extra: 738/671,
  43039. bottom: 27/765
  43040. }
  43041. },
  43042. },
  43043. [
  43044. {
  43045. name: "Teeny",
  43046. height: math.unit(2, "inches")
  43047. },
  43048. {
  43049. name: "Smol",
  43050. height: math.unit(8, "inches")
  43051. },
  43052. {
  43053. name: "Normal",
  43054. height: math.unit(5 + 6/12, "feet"),
  43055. default: true
  43056. },
  43057. {
  43058. name: "Mini-Macro",
  43059. height: math.unit(15, "feet")
  43060. },
  43061. {
  43062. name: "Macro",
  43063. height: math.unit(50, "feet")
  43064. },
  43065. ]
  43066. ))
  43067. characterMakers.push(() => makeCharacter(
  43068. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43069. {
  43070. front: {
  43071. height: math.unit(6 + 4/12, "feet"),
  43072. weight: math.unit(170, "lb"),
  43073. name: "Front",
  43074. image: {
  43075. source: "./media/characters/charlie/front.svg",
  43076. extra: 1348/1228,
  43077. bottom: 15/1363
  43078. }
  43079. },
  43080. },
  43081. [
  43082. {
  43083. name: "Macro",
  43084. height: math.unit(1700, "meters"),
  43085. default: true
  43086. },
  43087. {
  43088. name: "MegaMacro",
  43089. height: math.unit(20400, "meters")
  43090. },
  43091. ]
  43092. ))
  43093. characterMakers.push(() => makeCharacter(
  43094. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43095. {
  43096. front: {
  43097. height: math.unit(6 + 3/12, "feet"),
  43098. weight: math.unit(185, "lb"),
  43099. name: "Front",
  43100. image: {
  43101. source: "./media/characters/susan-grant/front.svg",
  43102. extra: 1351/1327,
  43103. bottom: 26/1377
  43104. }
  43105. },
  43106. },
  43107. [
  43108. {
  43109. name: "Normal",
  43110. height: math.unit(6 + 3/12, "feet"),
  43111. default: true
  43112. },
  43113. {
  43114. name: "Macro",
  43115. height: math.unit(225, "feet")
  43116. },
  43117. {
  43118. name: "Macro+",
  43119. height: math.unit(900, "feet")
  43120. },
  43121. {
  43122. name: "MegaMacro",
  43123. height: math.unit(14400, "feet")
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43129. {
  43130. front: {
  43131. height: math.unit(5 + 4/12, "feet"),
  43132. weight: math.unit(110, "lb"),
  43133. name: "Front",
  43134. image: {
  43135. source: "./media/characters/axel-isanov/front.svg",
  43136. extra: 1096/1065,
  43137. bottom: 13/1109
  43138. }
  43139. },
  43140. },
  43141. [
  43142. {
  43143. name: "Normal",
  43144. height: math.unit(5 + 4/12, "feet"),
  43145. default: true
  43146. },
  43147. ]
  43148. ))
  43149. characterMakers.push(() => makeCharacter(
  43150. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43151. {
  43152. front: {
  43153. height: math.unit(9, "feet"),
  43154. weight: math.unit(467, "lb"),
  43155. name: "Front",
  43156. image: {
  43157. source: "./media/characters/necahual/front.svg",
  43158. extra: 920/873,
  43159. bottom: 26/946
  43160. }
  43161. },
  43162. back: {
  43163. height: math.unit(9, "feet"),
  43164. weight: math.unit(467, "lb"),
  43165. name: "Back",
  43166. image: {
  43167. source: "./media/characters/necahual/back.svg",
  43168. extra: 930/884,
  43169. bottom: 16/946
  43170. }
  43171. },
  43172. frontUnderwear: {
  43173. height: math.unit(9, "feet"),
  43174. weight: math.unit(467, "lb"),
  43175. name: "Front (Underwear)",
  43176. image: {
  43177. source: "./media/characters/necahual/front-underwear.svg",
  43178. extra: 920/873,
  43179. bottom: 26/946
  43180. }
  43181. },
  43182. frontDressed: {
  43183. height: math.unit(9, "feet"),
  43184. weight: math.unit(467, "lb"),
  43185. name: "Front (Dressed)",
  43186. image: {
  43187. source: "./media/characters/necahual/front-dressed.svg",
  43188. extra: 920/873,
  43189. bottom: 26/946
  43190. }
  43191. },
  43192. },
  43193. [
  43194. {
  43195. name: "Comprsesed",
  43196. height: math.unit(9, "feet")
  43197. },
  43198. {
  43199. name: "Natural",
  43200. height: math.unit(15, "feet"),
  43201. default: true
  43202. },
  43203. {
  43204. name: "Boosted",
  43205. height: math.unit(50, "feet")
  43206. },
  43207. {
  43208. name: "Boosted+",
  43209. height: math.unit(150, "feet")
  43210. },
  43211. {
  43212. name: "Max",
  43213. height: math.unit(500, "feet")
  43214. },
  43215. ]
  43216. ))
  43217. characterMakers.push(() => makeCharacter(
  43218. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43219. {
  43220. front: {
  43221. height: math.unit(22 + 1/12, "feet"),
  43222. weight: math.unit(3200, "lb"),
  43223. name: "Front",
  43224. image: {
  43225. source: "./media/characters/theo-acacia/front.svg",
  43226. extra: 1796/1741,
  43227. bottom: 83/1879
  43228. }
  43229. },
  43230. frontUnderwear: {
  43231. height: math.unit(22 + 1/12, "feet"),
  43232. weight: math.unit(3200, "lb"),
  43233. name: "Front (Underwear)",
  43234. image: {
  43235. source: "./media/characters/theo-acacia/front-underwear.svg",
  43236. extra: 1796/1741,
  43237. bottom: 83/1879
  43238. }
  43239. },
  43240. frontNude: {
  43241. height: math.unit(22 + 1/12, "feet"),
  43242. weight: math.unit(3200, "lb"),
  43243. name: "Front (Nude)",
  43244. image: {
  43245. source: "./media/characters/theo-acacia/front-nude.svg",
  43246. extra: 1796/1741,
  43247. bottom: 83/1879
  43248. }
  43249. },
  43250. },
  43251. [
  43252. {
  43253. name: "Normal",
  43254. height: math.unit(22 + 1/12, "feet"),
  43255. default: true
  43256. },
  43257. ]
  43258. ))
  43259. characterMakers.push(() => makeCharacter(
  43260. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43261. {
  43262. front: {
  43263. height: math.unit(20, "feet"),
  43264. name: "Front",
  43265. image: {
  43266. source: "./media/characters/astra/front.svg",
  43267. extra: 1850/1714,
  43268. bottom: 106/1956
  43269. }
  43270. },
  43271. frontUndressed: {
  43272. height: math.unit(20, "feet"),
  43273. name: "Front (Undressed)",
  43274. image: {
  43275. source: "./media/characters/astra/front-undressed.svg",
  43276. extra: 1926/1749,
  43277. bottom: 0/1926
  43278. }
  43279. },
  43280. hand: {
  43281. height: math.unit(1.53, "feet"),
  43282. name: "Hand",
  43283. image: {
  43284. source: "./media/characters/astra/hand.svg"
  43285. }
  43286. },
  43287. paw: {
  43288. height: math.unit(1.53, "feet"),
  43289. name: "Paw",
  43290. image: {
  43291. source: "./media/characters/astra/paw.svg"
  43292. }
  43293. },
  43294. },
  43295. [
  43296. {
  43297. name: "Smallest",
  43298. height: math.unit(20, "feet")
  43299. },
  43300. {
  43301. name: "Normal",
  43302. height: math.unit(1e9, "miles"),
  43303. default: true
  43304. },
  43305. {
  43306. name: "Larger",
  43307. height: math.unit(5, "multiverses")
  43308. },
  43309. {
  43310. name: "Largest",
  43311. height: math.unit(1e9, "multiverses")
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43317. {
  43318. front: {
  43319. height: math.unit(8, "feet"),
  43320. name: "Front",
  43321. image: {
  43322. source: "./media/characters/breanna/front.svg",
  43323. extra: 1912/1632,
  43324. bottom: 33/1945
  43325. }
  43326. },
  43327. },
  43328. [
  43329. {
  43330. name: "Smallest",
  43331. height: math.unit(8, "feet")
  43332. },
  43333. {
  43334. name: "Normal",
  43335. height: math.unit(1, "mile"),
  43336. default: true
  43337. },
  43338. {
  43339. name: "Maximum",
  43340. height: math.unit(1500000000000, "lightyears")
  43341. },
  43342. ]
  43343. ))
  43344. characterMakers.push(() => makeCharacter(
  43345. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43346. {
  43347. front: {
  43348. height: math.unit(5 + 11/12, "feet"),
  43349. weight: math.unit(155, "lb"),
  43350. name: "Front",
  43351. image: {
  43352. source: "./media/characters/cai/front.svg",
  43353. extra: 1823/1702,
  43354. bottom: 32/1855
  43355. }
  43356. },
  43357. back: {
  43358. height: math.unit(5 + 11/12, "feet"),
  43359. weight: math.unit(155, "lb"),
  43360. name: "Back",
  43361. image: {
  43362. source: "./media/characters/cai/back.svg",
  43363. extra: 1809/1708,
  43364. bottom: 31/1840
  43365. }
  43366. },
  43367. },
  43368. [
  43369. {
  43370. name: "Normal",
  43371. height: math.unit(5 + 11/12, "feet"),
  43372. default: true
  43373. },
  43374. {
  43375. name: "Big",
  43376. height: math.unit(15, "feet")
  43377. },
  43378. {
  43379. name: "Macro",
  43380. height: math.unit(200, "feet")
  43381. },
  43382. ]
  43383. ))
  43384. characterMakers.push(() => makeCharacter(
  43385. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43386. {
  43387. front: {
  43388. height: math.unit(5 + 6/12, "feet"),
  43389. weight: math.unit(160, "lb"),
  43390. name: "Front",
  43391. image: {
  43392. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43393. extra: 1227/1174,
  43394. bottom: 37/1264
  43395. }
  43396. },
  43397. },
  43398. [
  43399. {
  43400. name: "Macro",
  43401. height: math.unit(444, "meters"),
  43402. default: true
  43403. },
  43404. ]
  43405. ))
  43406. characterMakers.push(() => makeCharacter(
  43407. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43408. {
  43409. front: {
  43410. height: math.unit(18 + 7/12, "feet"),
  43411. name: "Front",
  43412. image: {
  43413. source: "./media/characters/rex/front.svg",
  43414. extra: 1941/1807,
  43415. bottom: 66/2007
  43416. }
  43417. },
  43418. back: {
  43419. height: math.unit(18 + 7/12, "feet"),
  43420. name: "Back",
  43421. image: {
  43422. source: "./media/characters/rex/back.svg",
  43423. extra: 1937/1822,
  43424. bottom: 42/1979
  43425. }
  43426. },
  43427. boot: {
  43428. height: math.unit(3.45, "feet"),
  43429. name: "Boot",
  43430. image: {
  43431. source: "./media/characters/rex/boot.svg"
  43432. }
  43433. },
  43434. paw: {
  43435. height: math.unit(4.17, "feet"),
  43436. name: "Paw",
  43437. image: {
  43438. source: "./media/characters/rex/paw.svg"
  43439. }
  43440. },
  43441. head: {
  43442. height: math.unit(6.728, "feet"),
  43443. name: "Head",
  43444. image: {
  43445. source: "./media/characters/rex/head.svg"
  43446. }
  43447. },
  43448. },
  43449. [
  43450. {
  43451. name: "Nano",
  43452. height: math.unit(18 + 7/12, "feet")
  43453. },
  43454. {
  43455. name: "Micro",
  43456. height: math.unit(1.5, "megameters")
  43457. },
  43458. {
  43459. name: "Normal",
  43460. height: math.unit(440, "megameters"),
  43461. default: true
  43462. },
  43463. {
  43464. name: "Macro",
  43465. height: math.unit(2.5, "gigameters")
  43466. },
  43467. {
  43468. name: "Gigamacro",
  43469. height: math.unit(2, "galaxies")
  43470. },
  43471. ]
  43472. ))
  43473. characterMakers.push(() => makeCharacter(
  43474. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43475. {
  43476. side: {
  43477. height: math.unit(32, "feet"),
  43478. weight: math.unit(250000, "lb"),
  43479. name: "Side",
  43480. image: {
  43481. source: "./media/characters/silverwing/side.svg",
  43482. extra: 1100/1019,
  43483. bottom: 204/1304
  43484. }
  43485. },
  43486. },
  43487. [
  43488. {
  43489. name: "Normal",
  43490. height: math.unit(32, "feet"),
  43491. default: true
  43492. },
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43497. {
  43498. front: {
  43499. height: math.unit(6 + 6/12, "feet"),
  43500. weight: math.unit(350, "lb"),
  43501. name: "Front",
  43502. image: {
  43503. source: "./media/characters/tristan-hawthorne/front.svg",
  43504. extra: 1159/1124,
  43505. bottom: 37/1196
  43506. },
  43507. form: "labrador",
  43508. default: true
  43509. },
  43510. skunkFront: {
  43511. height: math.unit(4 + 6/12, "feet"),
  43512. weight: math.unit(120, "lb"),
  43513. name: "Front",
  43514. image: {
  43515. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43516. extra: 1609/1551,
  43517. bottom: 169/1778
  43518. },
  43519. form: "skunk",
  43520. default: true
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Normal",
  43526. height: math.unit(6 + 6/12, "feet"),
  43527. form: "labrador",
  43528. default: true
  43529. },
  43530. {
  43531. name: "Normal",
  43532. height: math.unit(4 + 6/12, "feet"),
  43533. form: "skunk",
  43534. default: true
  43535. },
  43536. ],
  43537. {
  43538. "labrador": {
  43539. name: "Labrador",
  43540. default: true
  43541. },
  43542. "skunk": {
  43543. name: "Skunk"
  43544. }
  43545. }
  43546. ))
  43547. characterMakers.push(() => makeCharacter(
  43548. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43549. {
  43550. front: {
  43551. height: math.unit(5 + 11/12, "feet"),
  43552. weight: math.unit(190, "lb"),
  43553. name: "Front",
  43554. image: {
  43555. source: "./media/characters/mizu/front.svg",
  43556. extra: 1988/1788,
  43557. bottom: 14/2002
  43558. }
  43559. },
  43560. },
  43561. [
  43562. {
  43563. name: "Normal",
  43564. height: math.unit(5 + 11/12, "feet"),
  43565. default: true
  43566. },
  43567. ]
  43568. ))
  43569. characterMakers.push(() => makeCharacter(
  43570. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43571. {
  43572. front: {
  43573. height: math.unit(1.7, "feet"),
  43574. weight: math.unit(50, "lb"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/dechroma/front.svg",
  43578. extra: 1095/859,
  43579. bottom: 64/1159
  43580. }
  43581. },
  43582. },
  43583. [
  43584. {
  43585. name: "Normal",
  43586. height: math.unit(1.7, "feet"),
  43587. default: true
  43588. },
  43589. ]
  43590. ))
  43591. characterMakers.push(() => makeCharacter(
  43592. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43593. {
  43594. side: {
  43595. height: math.unit(30, "feet"),
  43596. name: "Side",
  43597. image: {
  43598. source: "./media/characters/veluren-thanazel/side.svg",
  43599. extra: 1611/633,
  43600. bottom: 118/1729
  43601. }
  43602. },
  43603. front: {
  43604. height: math.unit(30, "feet"),
  43605. name: "Front",
  43606. image: {
  43607. source: "./media/characters/veluren-thanazel/front.svg",
  43608. extra: 1486/636,
  43609. bottom: 238/1724
  43610. }
  43611. },
  43612. head: {
  43613. height: math.unit(21.4, "feet"),
  43614. name: "Head",
  43615. image: {
  43616. source: "./media/characters/veluren-thanazel/head.svg"
  43617. }
  43618. },
  43619. genitals: {
  43620. height: math.unit(19.4, "feet"),
  43621. name: "Genitals",
  43622. image: {
  43623. source: "./media/characters/veluren-thanazel/genitals.svg"
  43624. }
  43625. },
  43626. },
  43627. [
  43628. {
  43629. name: "Social",
  43630. height: math.unit(6, "feet")
  43631. },
  43632. {
  43633. name: "Play",
  43634. height: math.unit(12, "feet")
  43635. },
  43636. {
  43637. name: "True",
  43638. height: math.unit(30, "feet"),
  43639. default: true
  43640. },
  43641. ]
  43642. ))
  43643. characterMakers.push(() => makeCharacter(
  43644. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43645. {
  43646. front: {
  43647. height: math.unit(7 + 6/12, "feet"),
  43648. weight: math.unit(500, "kg"),
  43649. name: "Front",
  43650. image: {
  43651. source: "./media/characters/arcturas/front.svg",
  43652. extra: 1700/1500,
  43653. bottom: 145/1845
  43654. }
  43655. },
  43656. },
  43657. [
  43658. {
  43659. name: "Normal",
  43660. height: math.unit(7 + 6/12, "feet"),
  43661. default: true
  43662. },
  43663. ]
  43664. ))
  43665. characterMakers.push(() => makeCharacter(
  43666. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43667. {
  43668. side: {
  43669. height: math.unit(6, "feet"),
  43670. weight: math.unit(2, "tons"),
  43671. name: "Side",
  43672. image: {
  43673. source: "./media/characters/vitaen/side.svg",
  43674. extra: 1157/617,
  43675. bottom: 122/1279
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Normal",
  43682. height: math.unit(6, "feet"),
  43683. default: true
  43684. },
  43685. ]
  43686. ))
  43687. characterMakers.push(() => makeCharacter(
  43688. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43689. {
  43690. front: {
  43691. height: math.unit(19, "feet"),
  43692. name: "Front",
  43693. image: {
  43694. source: "./media/characters/fia-dreamweaver/front.svg",
  43695. extra: 1630/1504,
  43696. bottom: 25/1655
  43697. }
  43698. },
  43699. },
  43700. [
  43701. {
  43702. name: "Normal",
  43703. height: math.unit(19, "feet"),
  43704. default: true
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43710. {
  43711. front: {
  43712. height: math.unit(5 + 4/12, "feet"),
  43713. name: "Front",
  43714. image: {
  43715. source: "./media/characters/artan/front.svg",
  43716. extra: 1618/1535,
  43717. bottom: 46/1664
  43718. }
  43719. },
  43720. back: {
  43721. height: math.unit(5 + 4/12, "feet"),
  43722. name: "Back",
  43723. image: {
  43724. source: "./media/characters/artan/back.svg",
  43725. extra: 1618/1543,
  43726. bottom: 31/1649
  43727. }
  43728. },
  43729. },
  43730. [
  43731. {
  43732. name: "Normal",
  43733. height: math.unit(5 + 4/12, "feet"),
  43734. default: true
  43735. },
  43736. ]
  43737. ))
  43738. characterMakers.push(() => makeCharacter(
  43739. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43740. {
  43741. side: {
  43742. height: math.unit(182, "cm"),
  43743. weight: math.unit(1000, "lb"),
  43744. name: "Side",
  43745. image: {
  43746. source: "./media/characters/silver-dragon/side.svg",
  43747. extra: 710/287,
  43748. bottom: 88/798
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Normal",
  43755. height: math.unit(182, "cm"),
  43756. default: true
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43762. {
  43763. side: {
  43764. height: math.unit(6 + 6/12, "feet"),
  43765. weight: math.unit(1.5, "tons"),
  43766. name: "Side",
  43767. image: {
  43768. source: "./media/characters/zephyr/side.svg",
  43769. extra: 1433/586,
  43770. bottom: 109/1542
  43771. }
  43772. },
  43773. },
  43774. [
  43775. {
  43776. name: "Normal",
  43777. height: math.unit(6 + 6/12, "feet"),
  43778. default: true
  43779. },
  43780. ]
  43781. ))
  43782. characterMakers.push(() => makeCharacter(
  43783. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43784. {
  43785. side: {
  43786. height: math.unit(1, "feet"),
  43787. name: "Side",
  43788. image: {
  43789. source: "./media/characters/vixye/side.svg",
  43790. extra: 632/541,
  43791. bottom: 0/632
  43792. }
  43793. },
  43794. },
  43795. [
  43796. {
  43797. name: "Normal",
  43798. height: math.unit(1, "feet"),
  43799. default: true
  43800. },
  43801. {
  43802. name: "True",
  43803. height: math.unit(1e15, "multiverses")
  43804. },
  43805. ]
  43806. ))
  43807. characterMakers.push(() => makeCharacter(
  43808. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43809. {
  43810. front: {
  43811. height: math.unit(8 + 2/12, "feet"),
  43812. weight: math.unit(650, "lb"),
  43813. name: "Front",
  43814. image: {
  43815. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43816. extra: 1174/1137,
  43817. bottom: 82/1256
  43818. }
  43819. },
  43820. back: {
  43821. height: math.unit(8 + 2/12, "feet"),
  43822. weight: math.unit(650, "lb"),
  43823. name: "Back",
  43824. image: {
  43825. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43826. extra: 1204/1157,
  43827. bottom: 46/1250
  43828. }
  43829. },
  43830. },
  43831. [
  43832. {
  43833. name: "Wildform",
  43834. height: math.unit(8 + 2/12, "feet"),
  43835. default: true
  43836. },
  43837. ]
  43838. ))
  43839. characterMakers.push(() => makeCharacter(
  43840. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43841. {
  43842. front: {
  43843. height: math.unit(18, "feet"),
  43844. name: "Front",
  43845. image: {
  43846. source: "./media/characters/cyphin/front.svg",
  43847. extra: 970/886,
  43848. bottom: 42/1012
  43849. }
  43850. },
  43851. back: {
  43852. height: math.unit(18, "feet"),
  43853. name: "Back",
  43854. image: {
  43855. source: "./media/characters/cyphin/back.svg",
  43856. extra: 1009/894,
  43857. bottom: 24/1033
  43858. }
  43859. },
  43860. head: {
  43861. height: math.unit(5.05, "feet"),
  43862. name: "Head",
  43863. image: {
  43864. source: "./media/characters/cyphin/head.svg"
  43865. }
  43866. },
  43867. tailbud: {
  43868. height: math.unit(5, "feet"),
  43869. name: "Tailbud",
  43870. image: {
  43871. source: "./media/characters/cyphin/tailbud.svg"
  43872. }
  43873. },
  43874. },
  43875. [
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43880. {
  43881. side: {
  43882. height: math.unit(10, "feet"),
  43883. weight: math.unit(6, "tons"),
  43884. name: "Side",
  43885. image: {
  43886. source: "./media/characters/raijin/side.svg",
  43887. extra: 1529/613,
  43888. bottom: 337/1866
  43889. }
  43890. },
  43891. },
  43892. [
  43893. {
  43894. name: "Normal",
  43895. height: math.unit(10, "feet"),
  43896. default: true
  43897. },
  43898. ]
  43899. ))
  43900. characterMakers.push(() => makeCharacter(
  43901. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43902. {
  43903. side: {
  43904. height: math.unit(9, "feet"),
  43905. name: "Side",
  43906. image: {
  43907. source: "./media/characters/nilghais/side.svg",
  43908. extra: 1047/744,
  43909. bottom: 91/1138
  43910. }
  43911. },
  43912. head: {
  43913. height: math.unit(3.14, "feet"),
  43914. name: "Head",
  43915. image: {
  43916. source: "./media/characters/nilghais/head.svg"
  43917. }
  43918. },
  43919. mouth: {
  43920. height: math.unit(4.6, "feet"),
  43921. name: "Mouth",
  43922. image: {
  43923. source: "./media/characters/nilghais/mouth.svg"
  43924. }
  43925. },
  43926. wings: {
  43927. height: math.unit(24, "feet"),
  43928. name: "Wings",
  43929. image: {
  43930. source: "./media/characters/nilghais/wings.svg"
  43931. }
  43932. },
  43933. ass: {
  43934. height: math.unit(6.12, "feet"),
  43935. name: "Ass",
  43936. image: {
  43937. source: "./media/characters/nilghais/ass.svg"
  43938. }
  43939. },
  43940. },
  43941. [
  43942. {
  43943. name: "Normal",
  43944. height: math.unit(9, "feet"),
  43945. default: true
  43946. },
  43947. ]
  43948. ))
  43949. characterMakers.push(() => makeCharacter(
  43950. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43951. {
  43952. regular: {
  43953. height: math.unit(16 + 2/12, "feet"),
  43954. weight: math.unit(2300, "lb"),
  43955. name: "Regular",
  43956. image: {
  43957. source: "./media/characters/zolgar/regular.svg",
  43958. extra: 1246/1004,
  43959. bottom: 124/1370
  43960. }
  43961. },
  43962. boxers: {
  43963. height: math.unit(16 + 2/12, "feet"),
  43964. weight: math.unit(2300, "lb"),
  43965. name: "Boxers",
  43966. image: {
  43967. source: "./media/characters/zolgar/boxers.svg",
  43968. extra: 1246/1004,
  43969. bottom: 124/1370
  43970. }
  43971. },
  43972. armored: {
  43973. height: math.unit(16 + 2/12, "feet"),
  43974. weight: math.unit(2300, "lb"),
  43975. name: "Armored",
  43976. image: {
  43977. source: "./media/characters/zolgar/armored.svg",
  43978. extra: 1246/1004,
  43979. bottom: 124/1370
  43980. }
  43981. },
  43982. goth: {
  43983. height: math.unit(16 + 2/12, "feet"),
  43984. weight: math.unit(2300, "lb"),
  43985. name: "Goth",
  43986. image: {
  43987. source: "./media/characters/zolgar/goth.svg",
  43988. extra: 1246/1004,
  43989. bottom: 124/1370
  43990. }
  43991. },
  43992. },
  43993. [
  43994. {
  43995. name: "Shrunken Down",
  43996. height: math.unit(9 + 2/12, "feet")
  43997. },
  43998. {
  43999. name: "Normal",
  44000. height: math.unit(16 + 2/12, "feet"),
  44001. default: true
  44002. },
  44003. ]
  44004. ))
  44005. characterMakers.push(() => makeCharacter(
  44006. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44007. {
  44008. front: {
  44009. height: math.unit(6, "feet"),
  44010. weight: math.unit(168, "lb"),
  44011. name: "Front",
  44012. image: {
  44013. source: "./media/characters/luca/front.svg",
  44014. extra: 841/667,
  44015. bottom: 102/943
  44016. }
  44017. },
  44018. },
  44019. [
  44020. {
  44021. name: "Normal",
  44022. height: math.unit(6, "feet"),
  44023. default: true
  44024. },
  44025. ]
  44026. ))
  44027. characterMakers.push(() => makeCharacter(
  44028. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44029. {
  44030. side: {
  44031. height: math.unit(7 + 3/12, "feet"),
  44032. weight: math.unit(312, "lb"),
  44033. name: "Side",
  44034. image: {
  44035. source: "./media/characters/zezo/side.svg",
  44036. extra: 1192/1067,
  44037. bottom: 63/1255
  44038. }
  44039. },
  44040. },
  44041. [
  44042. {
  44043. name: "Normal",
  44044. height: math.unit(7 + 3/12, "feet"),
  44045. default: true
  44046. },
  44047. ]
  44048. ))
  44049. characterMakers.push(() => makeCharacter(
  44050. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44051. {
  44052. front: {
  44053. height: math.unit(5 + 5/12, "feet"),
  44054. weight: math.unit(170, "lb"),
  44055. name: "Front",
  44056. image: {
  44057. source: "./media/characters/mayso/front.svg",
  44058. extra: 1215/1108,
  44059. bottom: 16/1231
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Normal",
  44066. height: math.unit(5 + 5/12, "feet"),
  44067. default: true
  44068. },
  44069. ]
  44070. ))
  44071. characterMakers.push(() => makeCharacter(
  44072. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44073. {
  44074. front: {
  44075. height: math.unit(4 + 3/12, "feet"),
  44076. weight: math.unit(80, "lb"),
  44077. name: "Front",
  44078. image: {
  44079. source: "./media/characters/hess/front.svg",
  44080. extra: 1200/1123,
  44081. bottom: 16/1216
  44082. }
  44083. },
  44084. },
  44085. [
  44086. {
  44087. name: "Normal",
  44088. height: math.unit(4 + 3/12, "feet"),
  44089. default: true
  44090. },
  44091. ]
  44092. ))
  44093. characterMakers.push(() => makeCharacter(
  44094. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44095. {
  44096. front: {
  44097. height: math.unit(1.9, "meters"),
  44098. name: "Front",
  44099. image: {
  44100. source: "./media/characters/ashgar/front.svg",
  44101. extra: 1177/1146,
  44102. bottom: 99/1276
  44103. }
  44104. },
  44105. back: {
  44106. height: math.unit(1.9, "meters"),
  44107. name: "Back",
  44108. image: {
  44109. source: "./media/characters/ashgar/back.svg",
  44110. extra: 1201/1183,
  44111. bottom: 53/1254
  44112. }
  44113. },
  44114. feral: {
  44115. height: math.unit(1.4, "meters"),
  44116. name: "Feral",
  44117. image: {
  44118. source: "./media/characters/ashgar/feral.svg",
  44119. extra: 370/345,
  44120. bottom: 45/415
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Normal",
  44127. height: math.unit(1.9, "meters"),
  44128. default: true
  44129. },
  44130. ]
  44131. ))
  44132. characterMakers.push(() => makeCharacter(
  44133. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44134. {
  44135. regular: {
  44136. height: math.unit(6, "feet"),
  44137. weight: math.unit(220, "lb"),
  44138. name: "Regular",
  44139. image: {
  44140. source: "./media/characters/phillip/regular.svg",
  44141. extra: 1373/1277,
  44142. bottom: 75/1448
  44143. }
  44144. },
  44145. dressed: {
  44146. height: math.unit(6, "feet"),
  44147. weight: math.unit(220, "lb"),
  44148. name: "Dressed",
  44149. image: {
  44150. source: "./media/characters/phillip/dressed.svg",
  44151. extra: 1373/1277,
  44152. bottom: 75/1448
  44153. }
  44154. },
  44155. paw: {
  44156. height: math.unit(1.44, "feet"),
  44157. name: "Paw",
  44158. image: {
  44159. source: "./media/characters/phillip/paw.svg"
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Normal",
  44166. height: math.unit(6, "feet"),
  44167. default: true
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44173. {
  44174. side: {
  44175. height: math.unit(42, "feet"),
  44176. name: "Side",
  44177. image: {
  44178. source: "./media/characters/uvula/side.svg",
  44179. extra: 683/586,
  44180. bottom: 60/743
  44181. }
  44182. },
  44183. front: {
  44184. height: math.unit(42, "feet"),
  44185. name: "Front",
  44186. image: {
  44187. source: "./media/characters/uvula/front.svg",
  44188. extra: 705/613,
  44189. bottom: 54/759
  44190. }
  44191. },
  44192. maw: {
  44193. height: math.unit(23.5, "feet"),
  44194. name: "Maw",
  44195. image: {
  44196. source: "./media/characters/uvula/maw.svg"
  44197. }
  44198. },
  44199. },
  44200. [
  44201. {
  44202. name: "Original Size",
  44203. height: math.unit(14, "inches")
  44204. },
  44205. {
  44206. name: "Human Size",
  44207. height: math.unit(6, "feet")
  44208. },
  44209. {
  44210. name: "Big",
  44211. height: math.unit(42, "feet"),
  44212. default: true
  44213. },
  44214. {
  44215. name: "Bigger",
  44216. height: math.unit(100, "feet")
  44217. },
  44218. ]
  44219. ))
  44220. characterMakers.push(() => makeCharacter(
  44221. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44222. {
  44223. front: {
  44224. height: math.unit(5 + 11/12, "feet"),
  44225. name: "Front",
  44226. image: {
  44227. source: "./media/characters/lannah/front.svg",
  44228. extra: 1208/1113,
  44229. bottom: 97/1305
  44230. }
  44231. },
  44232. },
  44233. [
  44234. {
  44235. name: "Normal",
  44236. height: math.unit(5 + 11/12, "feet"),
  44237. default: true
  44238. },
  44239. ]
  44240. ))
  44241. characterMakers.push(() => makeCharacter(
  44242. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44243. {
  44244. front: {
  44245. height: math.unit(6 + 3/12, "feet"),
  44246. weight: math.unit(3.5, "tons"),
  44247. name: "Front",
  44248. image: {
  44249. source: "./media/characters/emberflame/front.svg",
  44250. extra: 1198/672,
  44251. bottom: 82/1280
  44252. }
  44253. },
  44254. side: {
  44255. height: math.unit(6 + 3/12, "feet"),
  44256. weight: math.unit(3.5, "tons"),
  44257. name: "Side",
  44258. image: {
  44259. source: "./media/characters/emberflame/side.svg",
  44260. extra: 938/527,
  44261. bottom: 56/994
  44262. }
  44263. },
  44264. },
  44265. [
  44266. {
  44267. name: "Normal",
  44268. height: math.unit(6 + 3/12, "feet"),
  44269. default: true
  44270. },
  44271. ]
  44272. ))
  44273. characterMakers.push(() => makeCharacter(
  44274. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44275. {
  44276. side: {
  44277. height: math.unit(17.5, "feet"),
  44278. weight: math.unit(35, "tons"),
  44279. name: "Side",
  44280. image: {
  44281. source: "./media/characters/sophie-ambrose/side.svg",
  44282. extra: 1573/1242,
  44283. bottom: 71/1644
  44284. }
  44285. },
  44286. maw: {
  44287. height: math.unit(7.4, "feet"),
  44288. name: "Maw",
  44289. image: {
  44290. source: "./media/characters/sophie-ambrose/maw.svg"
  44291. }
  44292. },
  44293. },
  44294. [
  44295. {
  44296. name: "Normal",
  44297. height: math.unit(17.5, "feet"),
  44298. default: true
  44299. },
  44300. ]
  44301. ))
  44302. characterMakers.push(() => makeCharacter(
  44303. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44304. {
  44305. front: {
  44306. height: math.unit(280, "feet"),
  44307. weight: math.unit(550, "tons"),
  44308. name: "Front",
  44309. image: {
  44310. source: "./media/characters/king-mugi/front.svg",
  44311. extra: 1102/947,
  44312. bottom: 104/1206
  44313. }
  44314. },
  44315. },
  44316. [
  44317. {
  44318. name: "King Mugi",
  44319. height: math.unit(280, "feet"),
  44320. default: true
  44321. },
  44322. ]
  44323. ))
  44324. characterMakers.push(() => makeCharacter(
  44325. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44326. {
  44327. front: {
  44328. height: math.unit(64, "meters"),
  44329. name: "Front",
  44330. image: {
  44331. source: "./media/characters/nova-fox/front.svg",
  44332. extra: 1310/1246,
  44333. bottom: 65/1375
  44334. }
  44335. },
  44336. },
  44337. [
  44338. {
  44339. name: "Macro",
  44340. height: math.unit(64, "meters"),
  44341. default: true
  44342. },
  44343. ]
  44344. ))
  44345. characterMakers.push(() => makeCharacter(
  44346. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44347. {
  44348. front: {
  44349. height: math.unit(6 + 3/12, "feet"),
  44350. weight: math.unit(170, "lb"),
  44351. name: "Front",
  44352. image: {
  44353. source: "./media/characters/sam-bat/front.svg",
  44354. extra: 1601/1411,
  44355. bottom: 125/1726
  44356. }
  44357. },
  44358. back: {
  44359. height: math.unit(6 + 3/12, "feet"),
  44360. weight: math.unit(170, "lb"),
  44361. name: "Back",
  44362. image: {
  44363. source: "./media/characters/sam-bat/back.svg",
  44364. extra: 1577/1405,
  44365. bottom: 58/1635
  44366. }
  44367. },
  44368. },
  44369. [
  44370. {
  44371. name: "Normal",
  44372. height: math.unit(6 + 3/12, "feet"),
  44373. default: true
  44374. },
  44375. ]
  44376. ))
  44377. characterMakers.push(() => makeCharacter(
  44378. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44379. {
  44380. front: {
  44381. height: math.unit(59, "feet"),
  44382. weight: math.unit(40000, "lb"),
  44383. name: "Front",
  44384. image: {
  44385. source: "./media/characters/inari/front.svg",
  44386. extra: 1884/1350,
  44387. bottom: 95/1979
  44388. }
  44389. },
  44390. },
  44391. [
  44392. {
  44393. name: "Gigantamax",
  44394. height: math.unit(59, "feet"),
  44395. default: true
  44396. },
  44397. ]
  44398. ))
  44399. characterMakers.push(() => makeCharacter(
  44400. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44401. {
  44402. front: {
  44403. height: math.unit(5 + 8/12, "feet"),
  44404. name: "Front",
  44405. image: {
  44406. source: "./media/characters/elizabeth/front.svg",
  44407. extra: 1395/1298,
  44408. bottom: 54/1449
  44409. }
  44410. },
  44411. mouth: {
  44412. height: math.unit(1.97, "feet"),
  44413. name: "Mouth",
  44414. image: {
  44415. source: "./media/characters/elizabeth/mouth.svg"
  44416. }
  44417. },
  44418. foot: {
  44419. height: math.unit(1.17, "feet"),
  44420. name: "Foot",
  44421. image: {
  44422. source: "./media/characters/elizabeth/foot.svg"
  44423. }
  44424. },
  44425. },
  44426. [
  44427. {
  44428. name: "Normal",
  44429. height: math.unit(5 + 8/12, "feet"),
  44430. default: true
  44431. },
  44432. {
  44433. name: "Minimacro",
  44434. height: math.unit(18, "feet")
  44435. },
  44436. {
  44437. name: "Macro",
  44438. height: math.unit(180, "feet")
  44439. },
  44440. ]
  44441. ))
  44442. characterMakers.push(() => makeCharacter(
  44443. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44444. {
  44445. front: {
  44446. height: math.unit(5 + 2/12, "feet"),
  44447. name: "Front",
  44448. image: {
  44449. source: "./media/characters/october-gossamer/front.svg",
  44450. extra: 505/454,
  44451. bottom: 7/512
  44452. }
  44453. },
  44454. back: {
  44455. height: math.unit(5 + 2/12, "feet"),
  44456. name: "Back",
  44457. image: {
  44458. source: "./media/characters/october-gossamer/back.svg",
  44459. extra: 501/454,
  44460. bottom: 11/512
  44461. }
  44462. },
  44463. },
  44464. [
  44465. {
  44466. name: "Normal",
  44467. height: math.unit(5 + 2/12, "feet"),
  44468. default: true
  44469. },
  44470. ]
  44471. ))
  44472. characterMakers.push(() => makeCharacter(
  44473. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44474. {
  44475. front: {
  44476. height: math.unit(5, "feet"),
  44477. name: "Front",
  44478. image: {
  44479. source: "./media/characters/epiglottis/front.svg",
  44480. extra: 923/849,
  44481. bottom: 17/940
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Original Size",
  44488. height: math.unit(10, "inches")
  44489. },
  44490. {
  44491. name: "Human Size",
  44492. height: math.unit(5, "feet"),
  44493. default: true
  44494. },
  44495. {
  44496. name: "Big",
  44497. height: math.unit(25, "feet")
  44498. },
  44499. {
  44500. name: "Bigger",
  44501. height: math.unit(50, "feet")
  44502. },
  44503. {
  44504. name: "oh lawd",
  44505. height: math.unit(75, "feet")
  44506. },
  44507. ]
  44508. ))
  44509. characterMakers.push(() => makeCharacter(
  44510. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44511. {
  44512. front: {
  44513. height: math.unit(2 + 4/12, "feet"),
  44514. weight: math.unit(60, "lb"),
  44515. name: "Front",
  44516. image: {
  44517. source: "./media/characters/lerm/front.svg",
  44518. extra: 796/790,
  44519. bottom: 79/875
  44520. }
  44521. },
  44522. },
  44523. [
  44524. {
  44525. name: "Normal",
  44526. height: math.unit(2 + 4/12, "feet"),
  44527. default: true
  44528. },
  44529. ]
  44530. ))
  44531. characterMakers.push(() => makeCharacter(
  44532. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44533. {
  44534. front: {
  44535. height: math.unit(5.5, "feet"),
  44536. weight: math.unit(130, "lb"),
  44537. name: "Front",
  44538. image: {
  44539. source: "./media/characters/xena-nebadon/front.svg",
  44540. extra: 1828/1730,
  44541. bottom: 79/1907
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Tiny Puppy",
  44548. height: math.unit(3, "inches")
  44549. },
  44550. {
  44551. name: "Normal",
  44552. height: math.unit(5.5, "feet"),
  44553. default: true
  44554. },
  44555. {
  44556. name: "Lotta Lady",
  44557. height: math.unit(12, "feet")
  44558. },
  44559. {
  44560. name: "Pretty Big",
  44561. height: math.unit(100, "feet")
  44562. },
  44563. {
  44564. name: "Big",
  44565. height: math.unit(500, "feet")
  44566. },
  44567. {
  44568. name: "Skyscraper Toys",
  44569. height: math.unit(2500, "feet")
  44570. },
  44571. {
  44572. name: "Plane Catcher",
  44573. height: math.unit(8, "miles")
  44574. },
  44575. {
  44576. name: "Planet Toys",
  44577. height: math.unit(15, "earths")
  44578. },
  44579. {
  44580. name: "Stardust",
  44581. height: math.unit(0.25, "galaxies")
  44582. },
  44583. {
  44584. name: "Snacks",
  44585. height: math.unit(70, "universes")
  44586. },
  44587. ]
  44588. ))
  44589. characterMakers.push(() => makeCharacter(
  44590. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44591. {
  44592. front: {
  44593. height: math.unit(1.6, "meters"),
  44594. weight: math.unit(60, "kg"),
  44595. name: "Front",
  44596. image: {
  44597. source: "./media/characters/bounty/front.svg",
  44598. extra: 1426/1308,
  44599. bottom: 15/1441
  44600. }
  44601. },
  44602. back: {
  44603. height: math.unit(1.6, "meters"),
  44604. weight: math.unit(60, "kg"),
  44605. name: "Back",
  44606. image: {
  44607. source: "./media/characters/bounty/back.svg",
  44608. extra: 1417/1307,
  44609. bottom: 8/1425
  44610. }
  44611. },
  44612. },
  44613. [
  44614. {
  44615. name: "Normal",
  44616. height: math.unit(1.6, "meters"),
  44617. default: true
  44618. },
  44619. {
  44620. name: "Macro",
  44621. height: math.unit(300, "meters")
  44622. },
  44623. ]
  44624. ))
  44625. characterMakers.push(() => makeCharacter(
  44626. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44627. {
  44628. front: {
  44629. height: math.unit(2 + 8/12, "feet"),
  44630. weight: math.unit(15, "lb"),
  44631. name: "Front",
  44632. image: {
  44633. source: "./media/characters/mochi/front.svg",
  44634. extra: 1022/852,
  44635. bottom: 435/1457
  44636. }
  44637. },
  44638. back: {
  44639. height: math.unit(2 + 8/12, "feet"),
  44640. weight: math.unit(15, "lb"),
  44641. name: "Back",
  44642. image: {
  44643. source: "./media/characters/mochi/back.svg",
  44644. extra: 1335/1119,
  44645. bottom: 39/1374
  44646. }
  44647. },
  44648. bird: {
  44649. height: math.unit(2 + 8/12, "feet"),
  44650. weight: math.unit(15, "lb"),
  44651. name: "Bird",
  44652. image: {
  44653. source: "./media/characters/mochi/bird.svg",
  44654. extra: 1251/1113,
  44655. bottom: 178/1429
  44656. }
  44657. },
  44658. kaiju: {
  44659. height: math.unit(154, "feet"),
  44660. weight: math.unit(1e7, "lb"),
  44661. name: "Kaiju",
  44662. image: {
  44663. source: "./media/characters/mochi/kaiju.svg",
  44664. extra: 460/324,
  44665. bottom: 40/500
  44666. }
  44667. },
  44668. head: {
  44669. height: math.unit(1.21, "feet"),
  44670. name: "Head",
  44671. image: {
  44672. source: "./media/characters/mochi/head.svg"
  44673. }
  44674. },
  44675. alternateTail: {
  44676. height: math.unit(2 + 8/12, "feet"),
  44677. weight: math.unit(45, "lb"),
  44678. name: "Alternate Tail",
  44679. image: {
  44680. source: "./media/characters/mochi/alternate-tail.svg",
  44681. extra: 139/76,
  44682. bottom: 45/184
  44683. }
  44684. },
  44685. },
  44686. [
  44687. {
  44688. name: "Micro",
  44689. height: math.unit(2, "inches")
  44690. },
  44691. {
  44692. name: "Normal",
  44693. height: math.unit(2 + 8/12, "feet"),
  44694. default: true
  44695. },
  44696. {
  44697. name: "Macro",
  44698. height: math.unit(106, "feet")
  44699. },
  44700. ]
  44701. ))
  44702. characterMakers.push(() => makeCharacter(
  44703. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44704. {
  44705. front: {
  44706. height: math.unit(5.67, "feet"),
  44707. weight: math.unit(135, "lb"),
  44708. name: "Front",
  44709. image: {
  44710. source: "./media/characters/sarel/front.svg",
  44711. extra: 865/788,
  44712. bottom: 97/962
  44713. }
  44714. },
  44715. back: {
  44716. height: math.unit(5.67, "feet"),
  44717. weight: math.unit(135, "lb"),
  44718. name: "Back",
  44719. image: {
  44720. source: "./media/characters/sarel/back.svg",
  44721. extra: 857/777,
  44722. bottom: 32/889
  44723. }
  44724. },
  44725. chozoan: {
  44726. height: math.unit(5.67, "feet"),
  44727. weight: math.unit(135, "lb"),
  44728. name: "Chozoan",
  44729. image: {
  44730. source: "./media/characters/sarel/chozoan.svg",
  44731. extra: 865/788,
  44732. bottom: 97/962
  44733. }
  44734. },
  44735. current: {
  44736. height: math.unit(5.67, "feet"),
  44737. weight: math.unit(135, "lb"),
  44738. name: "Current",
  44739. image: {
  44740. source: "./media/characters/sarel/current.svg",
  44741. extra: 865/788,
  44742. bottom: 97/962
  44743. }
  44744. },
  44745. head: {
  44746. height: math.unit(1.77, "feet"),
  44747. name: "Head",
  44748. image: {
  44749. source: "./media/characters/sarel/head.svg"
  44750. }
  44751. },
  44752. claws: {
  44753. height: math.unit(1.8, "feet"),
  44754. name: "Claws",
  44755. image: {
  44756. source: "./media/characters/sarel/claws.svg"
  44757. }
  44758. },
  44759. clawsAlt: {
  44760. height: math.unit(1.8, "feet"),
  44761. name: "Claws-alt",
  44762. image: {
  44763. source: "./media/characters/sarel/claws-alt.svg"
  44764. }
  44765. },
  44766. },
  44767. [
  44768. {
  44769. name: "Normal",
  44770. height: math.unit(5.67, "feet"),
  44771. default: true
  44772. },
  44773. ]
  44774. ))
  44775. characterMakers.push(() => makeCharacter(
  44776. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44777. {
  44778. front: {
  44779. height: math.unit(5500, "feet"),
  44780. name: "Front",
  44781. image: {
  44782. source: "./media/characters/alyonia/front.svg",
  44783. extra: 1200/1135,
  44784. bottom: 29/1229
  44785. }
  44786. },
  44787. back: {
  44788. height: math.unit(5500, "feet"),
  44789. name: "Back",
  44790. image: {
  44791. source: "./media/characters/alyonia/back.svg",
  44792. extra: 1205/1138,
  44793. bottom: 10/1215
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Small",
  44800. height: math.unit(10, "feet")
  44801. },
  44802. {
  44803. name: "Macro",
  44804. height: math.unit(500, "feet")
  44805. },
  44806. {
  44807. name: "Mega Macro",
  44808. height: math.unit(5500, "feet"),
  44809. default: true
  44810. },
  44811. {
  44812. name: "Mega Macro+",
  44813. height: math.unit(500000, "feet")
  44814. },
  44815. {
  44816. name: "Giga Macro",
  44817. height: math.unit(3000, "miles")
  44818. },
  44819. {
  44820. name: "Tera Macro",
  44821. height: math.unit(2.8e6, "miles")
  44822. },
  44823. {
  44824. name: "Galactic",
  44825. height: math.unit(120000, "lightyears")
  44826. },
  44827. ]
  44828. ))
  44829. characterMakers.push(() => makeCharacter(
  44830. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44831. {
  44832. werewolf: {
  44833. height: math.unit(8, "feet"),
  44834. weight: math.unit(425, "lb"),
  44835. name: "Werewolf",
  44836. image: {
  44837. source: "./media/characters/autumn/werewolf.svg",
  44838. extra: 2154/2031,
  44839. bottom: 160/2314
  44840. }
  44841. },
  44842. human: {
  44843. height: math.unit(5 + 8/12, "feet"),
  44844. weight: math.unit(150, "lb"),
  44845. name: "Human",
  44846. image: {
  44847. source: "./media/characters/autumn/human.svg",
  44848. extra: 1200/1149,
  44849. bottom: 30/1230
  44850. }
  44851. },
  44852. },
  44853. [
  44854. {
  44855. name: "Normal",
  44856. height: math.unit(8, "feet"),
  44857. default: true
  44858. },
  44859. ]
  44860. ))
  44861. characterMakers.push(() => makeCharacter(
  44862. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44863. {
  44864. front: {
  44865. height: math.unit(8 + 5/12, "feet"),
  44866. weight: math.unit(825, "lb"),
  44867. name: "Front",
  44868. image: {
  44869. source: "./media/characters/cobalt-charizard/front.svg",
  44870. extra: 1268/1155,
  44871. bottom: 122/1390
  44872. }
  44873. },
  44874. side: {
  44875. height: math.unit(8 + 5/12, "feet"),
  44876. weight: math.unit(825, "lb"),
  44877. name: "Side",
  44878. image: {
  44879. source: "./media/characters/cobalt-charizard/side.svg",
  44880. extra: 1348/1257,
  44881. bottom: 58/1406
  44882. }
  44883. },
  44884. gMax: {
  44885. height: math.unit(134 + 11/12, "feet"),
  44886. name: "G-Max",
  44887. image: {
  44888. source: "./media/characters/cobalt-charizard/g-max.svg",
  44889. extra: 1835/1541,
  44890. bottom: 151/1986
  44891. }
  44892. },
  44893. },
  44894. [
  44895. {
  44896. name: "Normal",
  44897. height: math.unit(8 + 5/12, "feet"),
  44898. default: true
  44899. },
  44900. ]
  44901. ))
  44902. characterMakers.push(() => makeCharacter(
  44903. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44904. {
  44905. front: {
  44906. height: math.unit(6 + 3/12, "feet"),
  44907. weight: math.unit(210, "lb"),
  44908. name: "Front",
  44909. image: {
  44910. source: "./media/characters/stella/front.svg",
  44911. extra: 3549/3335,
  44912. bottom: 51/3600
  44913. }
  44914. },
  44915. },
  44916. [
  44917. {
  44918. name: "Normal",
  44919. height: math.unit(6 + 3/12, "feet"),
  44920. default: true
  44921. },
  44922. ]
  44923. ))
  44924. characterMakers.push(() => makeCharacter(
  44925. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44926. {
  44927. front: {
  44928. height: math.unit(5, "feet"),
  44929. weight: math.unit(90, "lb"),
  44930. name: "Front",
  44931. image: {
  44932. source: "./media/characters/riley-bishop/front.svg",
  44933. extra: 1450/1428,
  44934. bottom: 152/1602
  44935. }
  44936. },
  44937. },
  44938. [
  44939. {
  44940. name: "Normal",
  44941. height: math.unit(5, "feet"),
  44942. default: true
  44943. },
  44944. ]
  44945. ))
  44946. characterMakers.push(() => makeCharacter(
  44947. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44948. {
  44949. side: {
  44950. height: math.unit(8 + 2/12, "feet"),
  44951. weight: math.unit(500, "kg"),
  44952. name: "Side",
  44953. image: {
  44954. source: "./media/characters/theo-arcanine/side.svg",
  44955. extra: 1342/1074,
  44956. bottom: 111/1453
  44957. }
  44958. },
  44959. },
  44960. [
  44961. {
  44962. name: "Normal",
  44963. height: math.unit(8 + 2/12, "feet"),
  44964. default: true
  44965. },
  44966. ]
  44967. ))
  44968. characterMakers.push(() => makeCharacter(
  44969. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44970. {
  44971. front: {
  44972. height: math.unit(4, "feet"),
  44973. name: "Front",
  44974. image: {
  44975. source: "./media/characters/kali/front.svg",
  44976. extra: 1921/1357,
  44977. bottom: 70/1991
  44978. }
  44979. },
  44980. },
  44981. [
  44982. {
  44983. name: "Normal",
  44984. height: math.unit(4, "feet"),
  44985. default: true
  44986. },
  44987. {
  44988. name: "Macro",
  44989. height: math.unit(32, "meters")
  44990. },
  44991. {
  44992. name: "Macro+",
  44993. height: math.unit(150, "meters")
  44994. },
  44995. {
  44996. name: "Megamacro",
  44997. height: math.unit(7500, "meters")
  44998. },
  44999. {
  45000. name: "Megamacro+",
  45001. height: math.unit(80, "kilometers")
  45002. },
  45003. ]
  45004. ))
  45005. characterMakers.push(() => makeCharacter(
  45006. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45007. {
  45008. side: {
  45009. height: math.unit(5 + 11/12, "feet"),
  45010. weight: math.unit(236, "lb"),
  45011. name: "Side",
  45012. image: {
  45013. source: "./media/characters/gapp/side.svg",
  45014. extra: 775/340,
  45015. bottom: 58/833
  45016. }
  45017. },
  45018. mouth: {
  45019. height: math.unit(2.98, "feet"),
  45020. name: "Mouth",
  45021. image: {
  45022. source: "./media/characters/gapp/mouth.svg"
  45023. }
  45024. },
  45025. },
  45026. [
  45027. {
  45028. name: "Normal",
  45029. height: math.unit(5 + 1/12, "feet"),
  45030. default: true
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45036. {
  45037. front: {
  45038. height: math.unit(6, "feet"),
  45039. name: "Front",
  45040. image: {
  45041. source: "./media/characters/persephone/front.svg",
  45042. extra: 1895/1717,
  45043. bottom: 96/1991
  45044. }
  45045. },
  45046. back: {
  45047. height: math.unit(6, "feet"),
  45048. name: "Back",
  45049. image: {
  45050. source: "./media/characters/persephone/back.svg",
  45051. extra: 1868/1679,
  45052. bottom: 26/1894
  45053. }
  45054. },
  45055. casual: {
  45056. height: math.unit(6, "feet"),
  45057. name: "Casual",
  45058. image: {
  45059. source: "./media/characters/persephone/casual.svg",
  45060. extra: 1713/1541,
  45061. bottom: 76/1789
  45062. }
  45063. },
  45064. },
  45065. [
  45066. {
  45067. name: "Human Size",
  45068. height: math.unit(6, "feet")
  45069. },
  45070. {
  45071. name: "Big Steppy",
  45072. height: math.unit(600, "meters"),
  45073. default: true
  45074. },
  45075. {
  45076. name: "Galaxy Brain",
  45077. height: math.unit(1, "zettameter")
  45078. },
  45079. ]
  45080. ))
  45081. characterMakers.push(() => makeCharacter(
  45082. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45083. {
  45084. front: {
  45085. height: math.unit(1.85, "meters"),
  45086. name: "Front",
  45087. image: {
  45088. source: "./media/characters/riley-foxthing/front.svg",
  45089. extra: 1495/1354,
  45090. bottom: 122/1617
  45091. }
  45092. },
  45093. frontAlt: {
  45094. height: math.unit(1.85, "meters"),
  45095. name: "Front (Alt)",
  45096. image: {
  45097. source: "./media/characters/riley-foxthing/front-alt.svg",
  45098. extra: 1572/1389,
  45099. bottom: 116/1688
  45100. }
  45101. },
  45102. },
  45103. [
  45104. {
  45105. name: "Normal Sized",
  45106. height: math.unit(1.85, "meters"),
  45107. default: true
  45108. },
  45109. {
  45110. name: "Quite Sizable",
  45111. height: math.unit(5, "meters")
  45112. },
  45113. {
  45114. name: "Rather Large",
  45115. height: math.unit(20, "meters")
  45116. },
  45117. {
  45118. name: "Macro",
  45119. height: math.unit(450, "meters")
  45120. },
  45121. {
  45122. name: "Giga",
  45123. height: math.unit(5, "km")
  45124. },
  45125. ]
  45126. ))
  45127. characterMakers.push(() => makeCharacter(
  45128. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45129. {
  45130. front: {
  45131. height: math.unit(6, "feet"),
  45132. weight: math.unit(200, "lb"),
  45133. name: "Front",
  45134. image: {
  45135. source: "./media/characters/blizzard/front.svg",
  45136. extra: 1136/990,
  45137. bottom: 136/1272
  45138. }
  45139. },
  45140. back: {
  45141. height: math.unit(6, "feet"),
  45142. weight: math.unit(200, "lb"),
  45143. name: "Back",
  45144. image: {
  45145. source: "./media/characters/blizzard/back.svg",
  45146. extra: 1175/1034,
  45147. bottom: 97/1272
  45148. }
  45149. },
  45150. sitting: {
  45151. height: math.unit(3.725, "feet"),
  45152. weight: math.unit(200, "lb"),
  45153. name: "Sitting",
  45154. image: {
  45155. source: "./media/characters/blizzard/sitting.svg",
  45156. extra: 581/485,
  45157. bottom: 90/671
  45158. }
  45159. },
  45160. frontWizard: {
  45161. height: math.unit(7.9, "feet"),
  45162. weight: math.unit(200, "lb"),
  45163. name: "Front (Wizard)",
  45164. image: {
  45165. source: "./media/characters/blizzard/front-wizard.svg"
  45166. }
  45167. },
  45168. backWizard: {
  45169. height: math.unit(7.9, "feet"),
  45170. weight: math.unit(200, "lb"),
  45171. name: "Back (Wizard)",
  45172. image: {
  45173. source: "./media/characters/blizzard/back-wizard.svg"
  45174. }
  45175. },
  45176. frontNsfw: {
  45177. height: math.unit(6, "feet"),
  45178. weight: math.unit(200, "lb"),
  45179. name: "Front (NSFW)",
  45180. image: {
  45181. source: "./media/characters/blizzard/front-nsfw.svg",
  45182. extra: 1136/990,
  45183. bottom: 136/1272
  45184. }
  45185. },
  45186. backNsfw: {
  45187. height: math.unit(6, "feet"),
  45188. weight: math.unit(200, "lb"),
  45189. name: "Back (NSFW)",
  45190. image: {
  45191. source: "./media/characters/blizzard/back-nsfw.svg",
  45192. extra: 1175/1034,
  45193. bottom: 97/1272
  45194. }
  45195. },
  45196. sittingNsfw: {
  45197. height: math.unit(3.725, "feet"),
  45198. weight: math.unit(200, "lb"),
  45199. name: "Sitting (NSFW)",
  45200. image: {
  45201. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45202. extra: 581/485,
  45203. bottom: 90/671
  45204. }
  45205. },
  45206. wizardFrontNsfw: {
  45207. height: math.unit(7.9, "feet"),
  45208. weight: math.unit(200, "lb"),
  45209. name: "Wizard (Front, NSFW)",
  45210. image: {
  45211. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45212. }
  45213. },
  45214. },
  45215. [
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(6, "feet"),
  45219. default: true
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45225. {
  45226. front: {
  45227. height: math.unit(5 + 2/12, "feet"),
  45228. name: "Front",
  45229. image: {
  45230. source: "./media/characters/lumi/front.svg",
  45231. extra: 1328/1268,
  45232. bottom: 103/1431
  45233. }
  45234. },
  45235. back: {
  45236. height: math.unit(5 + 2/12, "feet"),
  45237. name: "Back",
  45238. image: {
  45239. source: "./media/characters/lumi/back.svg",
  45240. extra: 1381/1327,
  45241. bottom: 43/1424
  45242. }
  45243. },
  45244. },
  45245. [
  45246. {
  45247. name: "Normal",
  45248. height: math.unit(5 + 2/12, "feet"),
  45249. default: true
  45250. },
  45251. ]
  45252. ))
  45253. characterMakers.push(() => makeCharacter(
  45254. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45255. {
  45256. front: {
  45257. height: math.unit(5 + 9/12, "feet"),
  45258. name: "Front",
  45259. image: {
  45260. source: "./media/characters/aliya-cotton/front.svg",
  45261. extra: 577/564,
  45262. bottom: 29/606
  45263. }
  45264. },
  45265. },
  45266. [
  45267. {
  45268. name: "Normal",
  45269. height: math.unit(5 + 9/12, "feet"),
  45270. default: true
  45271. },
  45272. ]
  45273. ))
  45274. characterMakers.push(() => makeCharacter(
  45275. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45276. {
  45277. front: {
  45278. height: math.unit(2.7, "meters"),
  45279. weight: math.unit(25000, "lb"),
  45280. name: "Front",
  45281. image: {
  45282. source: "./media/characters/noah-luxray/front.svg",
  45283. extra: 1644/825,
  45284. bottom: 339/1983
  45285. }
  45286. },
  45287. side: {
  45288. height: math.unit(2.97, "meters"),
  45289. weight: math.unit(25000, "lb"),
  45290. name: "Side",
  45291. image: {
  45292. source: "./media/characters/noah-luxray/side.svg",
  45293. extra: 1319/650,
  45294. bottom: 163/1482
  45295. }
  45296. },
  45297. dick: {
  45298. height: math.unit(7.4, "feet"),
  45299. weight: math.unit(2500, "lb"),
  45300. name: "Dick",
  45301. image: {
  45302. source: "./media/characters/noah-luxray/dick.svg"
  45303. }
  45304. },
  45305. dickAlt: {
  45306. height: math.unit(10.83, "feet"),
  45307. weight: math.unit(2500, "lb"),
  45308. name: "Dick-alt",
  45309. image: {
  45310. source: "./media/characters/noah-luxray/dick-alt.svg"
  45311. }
  45312. },
  45313. },
  45314. [
  45315. {
  45316. name: "BIG",
  45317. height: math.unit(2.7, "meters"),
  45318. default: true
  45319. },
  45320. ]
  45321. ))
  45322. characterMakers.push(() => makeCharacter(
  45323. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45324. {
  45325. standing: {
  45326. height: math.unit(183, "cm"),
  45327. weight: math.unit(68, "kg"),
  45328. name: "Standing",
  45329. image: {
  45330. source: "./media/characters/arion/standing.svg",
  45331. extra: 1869/1807,
  45332. bottom: 93/1962
  45333. }
  45334. },
  45335. reclining: {
  45336. height: math.unit(70.5, "cm"),
  45337. weight: math.unit(68, "lb"),
  45338. name: "Reclining",
  45339. image: {
  45340. source: "./media/characters/arion/reclining.svg",
  45341. extra: 937/870,
  45342. bottom: 63/1000
  45343. }
  45344. },
  45345. },
  45346. [
  45347. {
  45348. name: "Colossus Size, Low",
  45349. height: math.unit(33, "meters"),
  45350. default: true
  45351. },
  45352. {
  45353. name: "Colossus Size, Mid",
  45354. height: math.unit(52, "meters")
  45355. },
  45356. {
  45357. name: "Colossus Size, High",
  45358. height: math.unit(60, "meters")
  45359. },
  45360. {
  45361. name: "Titan Size, Low",
  45362. height: math.unit(91, "meters"),
  45363. },
  45364. {
  45365. name: "Titan Size, Mid",
  45366. height: math.unit(122, "meters")
  45367. },
  45368. {
  45369. name: "Titan Size, High",
  45370. height: math.unit(162, "meters")
  45371. },
  45372. ]
  45373. ))
  45374. characterMakers.push(() => makeCharacter(
  45375. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45376. {
  45377. front: {
  45378. height: math.unit(53, "meters"),
  45379. name: "Front",
  45380. image: {
  45381. source: "./media/characters/stellar-marbey/front.svg",
  45382. extra: 1913/1805,
  45383. bottom: 92/2005
  45384. }
  45385. },
  45386. back: {
  45387. height: math.unit(53, "meters"),
  45388. name: "Back",
  45389. image: {
  45390. source: "./media/characters/stellar-marbey/back.svg",
  45391. extra: 1960/1851,
  45392. bottom: 28/1988
  45393. }
  45394. },
  45395. mouth: {
  45396. height: math.unit(3.5, "meters"),
  45397. name: "Mouth",
  45398. image: {
  45399. source: "./media/characters/stellar-marbey/mouth.svg"
  45400. }
  45401. },
  45402. },
  45403. [
  45404. {
  45405. name: "Macro",
  45406. height: math.unit(53, "meters"),
  45407. default: true
  45408. },
  45409. ]
  45410. ))
  45411. characterMakers.push(() => makeCharacter(
  45412. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45413. {
  45414. front: {
  45415. height: math.unit(8 + 1/12, "feet"),
  45416. weight: math.unit(233, "lb"),
  45417. name: "Front",
  45418. image: {
  45419. source: "./media/characters/matsu/front.svg",
  45420. extra: 832/772,
  45421. bottom: 40/872
  45422. }
  45423. },
  45424. back: {
  45425. height: math.unit(8 + 1/12, "feet"),
  45426. weight: math.unit(233, "lb"),
  45427. name: "Back",
  45428. image: {
  45429. source: "./media/characters/matsu/back.svg",
  45430. extra: 839/780,
  45431. bottom: 47/886
  45432. }
  45433. },
  45434. },
  45435. [
  45436. {
  45437. name: "Normal",
  45438. height: math.unit(8 + 1/12, "feet"),
  45439. default: true
  45440. },
  45441. ]
  45442. ))
  45443. characterMakers.push(() => makeCharacter(
  45444. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45445. {
  45446. front: {
  45447. height: math.unit(4, "feet"),
  45448. weight: math.unit(148, "lb"),
  45449. name: "Front",
  45450. image: {
  45451. source: "./media/characters/thiz/front.svg",
  45452. extra: 1913/1748,
  45453. bottom: 62/1975
  45454. }
  45455. },
  45456. },
  45457. [
  45458. {
  45459. name: "Normal",
  45460. height: math.unit(4, "feet"),
  45461. default: true
  45462. },
  45463. ]
  45464. ))
  45465. characterMakers.push(() => makeCharacter(
  45466. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45467. {
  45468. front: {
  45469. height: math.unit(7 + 6/12, "feet"),
  45470. weight: math.unit(267, "lb"),
  45471. name: "Front",
  45472. image: {
  45473. source: "./media/characters/marcel/front.svg",
  45474. extra: 1221/1096,
  45475. bottom: 76/1297
  45476. }
  45477. },
  45478. },
  45479. [
  45480. {
  45481. name: "Normal",
  45482. height: math.unit(7 + 6/12, "feet"),
  45483. default: true
  45484. },
  45485. ]
  45486. ))
  45487. characterMakers.push(() => makeCharacter(
  45488. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45489. {
  45490. side: {
  45491. height: math.unit(42, "meters"),
  45492. name: "Side",
  45493. image: {
  45494. source: "./media/characters/flake/side.svg",
  45495. extra: 1525/1306,
  45496. bottom: 209/1734
  45497. }
  45498. },
  45499. },
  45500. [
  45501. {
  45502. name: "Normal",
  45503. height: math.unit(42, "meters"),
  45504. default: true
  45505. },
  45506. ]
  45507. ))
  45508. characterMakers.push(() => makeCharacter(
  45509. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45510. {
  45511. dressed: {
  45512. height: math.unit(6 + 4/12, "feet"),
  45513. weight: math.unit(520, "lb"),
  45514. name: "Dressed",
  45515. image: {
  45516. source: "./media/characters/someonne/dressed.svg",
  45517. extra: 1020/1010,
  45518. bottom: 178/1198
  45519. }
  45520. },
  45521. undressed: {
  45522. height: math.unit(6 + 4/12, "feet"),
  45523. weight: math.unit(520, "lb"),
  45524. name: "Undressed",
  45525. image: {
  45526. source: "./media/characters/someonne/undressed.svg",
  45527. extra: 1019/1014,
  45528. bottom: 169/1188
  45529. }
  45530. },
  45531. },
  45532. [
  45533. {
  45534. name: "Normal",
  45535. height: math.unit(6 + 4/12, "feet"),
  45536. default: true
  45537. },
  45538. ]
  45539. ))
  45540. characterMakers.push(() => makeCharacter(
  45541. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45542. {
  45543. front: {
  45544. height: math.unit(3, "feet"),
  45545. weight: math.unit(30, "lb"),
  45546. name: "Front",
  45547. image: {
  45548. source: "./media/characters/till/front.svg",
  45549. extra: 892/823,
  45550. bottom: 55/947
  45551. }
  45552. },
  45553. },
  45554. [
  45555. {
  45556. name: "Normal",
  45557. height: math.unit(3, "feet"),
  45558. default: true
  45559. },
  45560. ]
  45561. ))
  45562. characterMakers.push(() => makeCharacter(
  45563. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45564. {
  45565. front: {
  45566. height: math.unit(9 + 8/12, "feet"),
  45567. weight: math.unit(800, "lb"),
  45568. name: "Front",
  45569. image: {
  45570. source: "./media/characters/sydney-heki/front.svg",
  45571. extra: 1360/1300,
  45572. bottom: 22/1382
  45573. }
  45574. },
  45575. back: {
  45576. height: math.unit(9 + 8/12, "feet"),
  45577. weight: math.unit(800, "lb"),
  45578. name: "Back",
  45579. image: {
  45580. source: "./media/characters/sydney-heki/back.svg",
  45581. extra: 1356/1293,
  45582. bottom: 12/1368
  45583. }
  45584. },
  45585. frontDressed: {
  45586. height: math.unit(9 + 8/12, "feet"),
  45587. weight: math.unit(800, "lb"),
  45588. name: "Front-dressed",
  45589. image: {
  45590. source: "./media/characters/sydney-heki/front-dressed.svg",
  45591. extra: 1360/1300,
  45592. bottom: 22/1382
  45593. }
  45594. },
  45595. },
  45596. [
  45597. {
  45598. name: "Normal",
  45599. height: math.unit(9 + 8/12, "feet"),
  45600. default: true
  45601. },
  45602. {
  45603. name: "Macro",
  45604. height: math.unit(500, "feet")
  45605. },
  45606. {
  45607. name: "Megamacro",
  45608. height: math.unit(3.6, "miles")
  45609. },
  45610. ]
  45611. ))
  45612. characterMakers.push(() => makeCharacter(
  45613. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45614. {
  45615. front: {
  45616. height: math.unit(200, "cm"),
  45617. weight: math.unit(250, "lb"),
  45618. name: "Front",
  45619. image: {
  45620. source: "./media/characters/fowler-karlsson/front.svg",
  45621. extra: 897/845,
  45622. bottom: 123/1020
  45623. }
  45624. },
  45625. back: {
  45626. height: math.unit(200, "cm"),
  45627. weight: math.unit(250, "lb"),
  45628. name: "Back",
  45629. image: {
  45630. source: "./media/characters/fowler-karlsson/back.svg",
  45631. extra: 999/944,
  45632. bottom: 26/1025
  45633. }
  45634. },
  45635. dick: {
  45636. height: math.unit(1.92, "feet"),
  45637. weight: math.unit(150, "lb"),
  45638. name: "Dick",
  45639. image: {
  45640. source: "./media/characters/fowler-karlsson/dick.svg"
  45641. }
  45642. },
  45643. },
  45644. [
  45645. {
  45646. name: "Normal",
  45647. height: math.unit(200, "cm"),
  45648. default: true
  45649. },
  45650. {
  45651. name: "Smaller Macro",
  45652. height: math.unit(90, "m")
  45653. },
  45654. {
  45655. name: "Macro",
  45656. height: math.unit(150, "m")
  45657. },
  45658. {
  45659. name: "Bigger Macro",
  45660. height: math.unit(300, "m")
  45661. },
  45662. ]
  45663. ))
  45664. characterMakers.push(() => makeCharacter(
  45665. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45666. {
  45667. side: {
  45668. height: math.unit(8 + 2/12, "feet"),
  45669. weight: math.unit(1, "tonne"),
  45670. name: "Side",
  45671. image: {
  45672. source: "./media/characters/rylide/side.svg",
  45673. extra: 1318/1034,
  45674. bottom: 106/1424
  45675. }
  45676. },
  45677. sitting: {
  45678. height: math.unit(303, "cm"),
  45679. weight: math.unit(1, "tonne"),
  45680. name: "Sitting",
  45681. image: {
  45682. source: "./media/characters/rylide/sitting.svg",
  45683. extra: 1303/1103,
  45684. bottom: 36/1339
  45685. }
  45686. },
  45687. },
  45688. [
  45689. {
  45690. name: "Normal",
  45691. height: math.unit(8 + 2/12, "feet"),
  45692. default: true
  45693. },
  45694. ]
  45695. ))
  45696. characterMakers.push(() => makeCharacter(
  45697. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45698. {
  45699. front: {
  45700. height: math.unit(5 + 10/12, "feet"),
  45701. weight: math.unit(160, "lb"),
  45702. name: "Front",
  45703. image: {
  45704. source: "./media/characters/pudask/front.svg",
  45705. extra: 1616/1590,
  45706. bottom: 161/1777
  45707. }
  45708. },
  45709. },
  45710. [
  45711. {
  45712. name: "Ferret Height",
  45713. height: math.unit(2 + 5/12, "feet")
  45714. },
  45715. {
  45716. name: "Canon Height",
  45717. height: math.unit(5 + 10/12, "feet"),
  45718. default: true
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45724. {
  45725. front: {
  45726. height: math.unit(3 + 6/12, "feet"),
  45727. weight: math.unit(60, "lb"),
  45728. name: "Front",
  45729. image: {
  45730. source: "./media/characters/ramita/front.svg",
  45731. extra: 1402/1232,
  45732. bottom: 62/1464
  45733. }
  45734. },
  45735. dressed: {
  45736. height: math.unit(3 + 6/12, "feet"),
  45737. weight: math.unit(60, "lb"),
  45738. name: "Dressed",
  45739. image: {
  45740. source: "./media/characters/ramita/dressed.svg",
  45741. extra: 1534/1249,
  45742. bottom: 50/1584
  45743. }
  45744. },
  45745. },
  45746. [
  45747. {
  45748. name: "Normal",
  45749. height: math.unit(3 + 6/12, "feet"),
  45750. default: true
  45751. },
  45752. ]
  45753. ))
  45754. characterMakers.push(() => makeCharacter(
  45755. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45756. {
  45757. front: {
  45758. height: math.unit(8, "feet"),
  45759. name: "Front",
  45760. image: {
  45761. source: "./media/characters/ark/front.svg",
  45762. extra: 772/693,
  45763. bottom: 45/817
  45764. }
  45765. },
  45766. },
  45767. [
  45768. {
  45769. name: "Normal",
  45770. height: math.unit(8, "feet"),
  45771. default: true
  45772. },
  45773. ]
  45774. ))
  45775. characterMakers.push(() => makeCharacter(
  45776. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45777. {
  45778. front: {
  45779. height: math.unit(6, "feet"),
  45780. weight: math.unit(250, "lb"),
  45781. volume: math.unit(5/8, "gallons"),
  45782. name: "Front",
  45783. image: {
  45784. source: "./media/characters/ludwig-horn/front.svg",
  45785. extra: 1782/1635,
  45786. bottom: 96/1878
  45787. }
  45788. },
  45789. back: {
  45790. height: math.unit(6, "feet"),
  45791. weight: math.unit(250, "lb"),
  45792. volume: math.unit(5/8, "gallons"),
  45793. name: "Back",
  45794. image: {
  45795. source: "./media/characters/ludwig-horn/back.svg",
  45796. extra: 1874/1729,
  45797. bottom: 27/1901
  45798. }
  45799. },
  45800. dick: {
  45801. height: math.unit(1.05, "feet"),
  45802. weight: math.unit(15, "lb"),
  45803. volume: math.unit(5/8, "gallons"),
  45804. name: "Dick",
  45805. image: {
  45806. source: "./media/characters/ludwig-horn/dick.svg"
  45807. }
  45808. },
  45809. },
  45810. [
  45811. {
  45812. name: "Small",
  45813. height: math.unit(6, "feet")
  45814. },
  45815. {
  45816. name: "Typical",
  45817. height: math.unit(12, "feet"),
  45818. default: true
  45819. },
  45820. {
  45821. name: "Building",
  45822. height: math.unit(80, "feet")
  45823. },
  45824. {
  45825. name: "Town",
  45826. height: math.unit(800, "feet")
  45827. },
  45828. {
  45829. name: "Kingdom",
  45830. height: math.unit(80000, "feet")
  45831. },
  45832. {
  45833. name: "Planet",
  45834. height: math.unit(8000000, "feet")
  45835. },
  45836. {
  45837. name: "Universe",
  45838. height: math.unit(8000000000, "feet")
  45839. },
  45840. {
  45841. name: "Transcended",
  45842. height: math.unit(8e27, "feet")
  45843. },
  45844. ]
  45845. ))
  45846. characterMakers.push(() => makeCharacter(
  45847. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45848. {
  45849. front: {
  45850. height: math.unit(5, "feet"),
  45851. weight: math.unit(50, "kg"),
  45852. name: "Front",
  45853. image: {
  45854. source: "./media/characters/biot-avery/front.svg",
  45855. extra: 1295/1232,
  45856. bottom: 86/1381
  45857. }
  45858. },
  45859. },
  45860. [
  45861. {
  45862. name: "Normal",
  45863. height: math.unit(5, "feet"),
  45864. default: true
  45865. },
  45866. ]
  45867. ))
  45868. characterMakers.push(() => makeCharacter(
  45869. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45870. {
  45871. front: {
  45872. height: math.unit(6, "feet"),
  45873. name: "Front",
  45874. image: {
  45875. source: "./media/characters/kitsune-kiro/front.svg",
  45876. extra: 1270/1158,
  45877. bottom: 42/1312
  45878. }
  45879. },
  45880. frontAlt: {
  45881. height: math.unit(6, "feet"),
  45882. name: "Front-alt",
  45883. image: {
  45884. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45885. extra: 1130/1081,
  45886. bottom: 36/1166
  45887. }
  45888. },
  45889. },
  45890. [
  45891. {
  45892. name: "Smol",
  45893. height: math.unit(3, "feet")
  45894. },
  45895. {
  45896. name: "Normal",
  45897. height: math.unit(6, "feet"),
  45898. default: true
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45904. {
  45905. front: {
  45906. height: math.unit(6, "feet"),
  45907. weight: math.unit(125, "lb"),
  45908. name: "Front",
  45909. image: {
  45910. source: "./media/characters/jack-thatcher/front.svg",
  45911. extra: 1474/1370,
  45912. bottom: 26/1500
  45913. }
  45914. },
  45915. back: {
  45916. height: math.unit(6, "feet"),
  45917. weight: math.unit(125, "lb"),
  45918. name: "Back",
  45919. image: {
  45920. source: "./media/characters/jack-thatcher/back.svg",
  45921. extra: 1489/1384,
  45922. bottom: 18/1507
  45923. }
  45924. },
  45925. },
  45926. [
  45927. {
  45928. name: "Normal",
  45929. height: math.unit(6, "feet"),
  45930. default: true
  45931. },
  45932. {
  45933. name: "Macro",
  45934. height: math.unit(75, "feet")
  45935. },
  45936. {
  45937. name: "Macro-er",
  45938. height: math.unit(250, "feet")
  45939. },
  45940. ]
  45941. ))
  45942. characterMakers.push(() => makeCharacter(
  45943. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45944. {
  45945. front: {
  45946. height: math.unit(7, "feet"),
  45947. weight: math.unit(110, "kg"),
  45948. name: "Front",
  45949. image: {
  45950. source: "./media/characters/max-hyper/front.svg",
  45951. extra: 1969/1881,
  45952. bottom: 49/2018
  45953. }
  45954. },
  45955. },
  45956. [
  45957. {
  45958. name: "Normal",
  45959. height: math.unit(7, "feet"),
  45960. default: true
  45961. },
  45962. ]
  45963. ))
  45964. characterMakers.push(() => makeCharacter(
  45965. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45966. {
  45967. front: {
  45968. height: math.unit(5 + 5/12, "feet"),
  45969. weight: math.unit(160, "lb"),
  45970. name: "Front",
  45971. image: {
  45972. source: "./media/characters/spook/front.svg",
  45973. extra: 794/791,
  45974. bottom: 54/848
  45975. }
  45976. },
  45977. back: {
  45978. height: math.unit(5 + 5/12, "feet"),
  45979. weight: math.unit(160, "lb"),
  45980. name: "Back",
  45981. image: {
  45982. source: "./media/characters/spook/back.svg",
  45983. extra: 812/798,
  45984. bottom: 32/844
  45985. }
  45986. },
  45987. },
  45988. [
  45989. {
  45990. name: "Normal",
  45991. height: math.unit(5 + 5/12, "feet"),
  45992. default: true
  45993. },
  45994. ]
  45995. ))
  45996. characterMakers.push(() => makeCharacter(
  45997. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45998. {
  45999. front: {
  46000. height: math.unit(18, "feet"),
  46001. name: "Front",
  46002. image: {
  46003. source: "./media/characters/xeaduulix/front.svg",
  46004. extra: 1380/1166,
  46005. bottom: 110/1490
  46006. }
  46007. },
  46008. back: {
  46009. height: math.unit(18, "feet"),
  46010. name: "Back",
  46011. image: {
  46012. source: "./media/characters/xeaduulix/back.svg",
  46013. extra: 1592/1170,
  46014. bottom: 128/1720
  46015. }
  46016. },
  46017. frontNsfw: {
  46018. height: math.unit(18, "feet"),
  46019. name: "Front (NSFW)",
  46020. image: {
  46021. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46022. extra: 1380/1166,
  46023. bottom: 110/1490
  46024. }
  46025. },
  46026. backNsfw: {
  46027. height: math.unit(18, "feet"),
  46028. name: "Back (NSFW)",
  46029. image: {
  46030. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46031. extra: 1592/1170,
  46032. bottom: 128/1720
  46033. }
  46034. },
  46035. },
  46036. [
  46037. {
  46038. name: "Normal",
  46039. height: math.unit(18, "feet"),
  46040. default: true
  46041. },
  46042. ]
  46043. ))
  46044. characterMakers.push(() => makeCharacter(
  46045. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46046. {
  46047. spreadWings: {
  46048. height: math.unit(20, "feet"),
  46049. name: "Spread Wings",
  46050. image: {
  46051. source: "./media/characters/fledge/spread-wings.svg",
  46052. extra: 693/635,
  46053. bottom: 26/719
  46054. }
  46055. },
  46056. front: {
  46057. height: math.unit(20, "feet"),
  46058. name: "Front",
  46059. image: {
  46060. source: "./media/characters/fledge/front.svg",
  46061. extra: 684/637,
  46062. bottom: 18/702
  46063. }
  46064. },
  46065. frontAlt: {
  46066. height: math.unit(20, "feet"),
  46067. name: "Front (Alt)",
  46068. image: {
  46069. source: "./media/characters/fledge/front-alt.svg",
  46070. extra: 708/664,
  46071. bottom: 13/721
  46072. }
  46073. },
  46074. back: {
  46075. height: math.unit(20, "feet"),
  46076. name: "Back",
  46077. image: {
  46078. source: "./media/characters/fledge/back.svg",
  46079. extra: 718/634,
  46080. bottom: 22/740
  46081. }
  46082. },
  46083. head: {
  46084. height: math.unit(5.55, "feet"),
  46085. name: "Head",
  46086. image: {
  46087. source: "./media/characters/fledge/head.svg"
  46088. }
  46089. },
  46090. headAlt: {
  46091. height: math.unit(5.1, "feet"),
  46092. name: "Head (Alt)",
  46093. image: {
  46094. source: "./media/characters/fledge/head-alt.svg"
  46095. }
  46096. },
  46097. },
  46098. [
  46099. {
  46100. name: "Small",
  46101. height: math.unit(6 + 2/12, "feet")
  46102. },
  46103. {
  46104. name: "Big",
  46105. height: math.unit(20, "feet"),
  46106. default: true
  46107. },
  46108. {
  46109. name: "Giant",
  46110. height: math.unit(100, "feet")
  46111. },
  46112. {
  46113. name: "Macro",
  46114. height: math.unit(200, "feet")
  46115. },
  46116. ]
  46117. ))
  46118. characterMakers.push(() => makeCharacter(
  46119. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46120. {
  46121. front: {
  46122. height: math.unit(1, "meter"),
  46123. name: "Front",
  46124. image: {
  46125. source: "./media/characters/atlas-morenai/front.svg",
  46126. extra: 1275/1043,
  46127. bottom: 19/1294
  46128. }
  46129. },
  46130. back: {
  46131. height: math.unit(1, "meter"),
  46132. name: "Back",
  46133. image: {
  46134. source: "./media/characters/atlas-morenai/back.svg",
  46135. extra: 1141/1001,
  46136. bottom: 25/1166
  46137. }
  46138. },
  46139. },
  46140. [
  46141. {
  46142. name: "Normal",
  46143. height: math.unit(1, "meter"),
  46144. default: true
  46145. },
  46146. {
  46147. name: "Magic-Infused",
  46148. height: math.unit(5, "meters")
  46149. },
  46150. ]
  46151. ))
  46152. characterMakers.push(() => makeCharacter(
  46153. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46154. {
  46155. front: {
  46156. height: math.unit(5, "meters"),
  46157. name: "Front",
  46158. image: {
  46159. source: "./media/characters/cintia/front.svg",
  46160. extra: 1312/1228,
  46161. bottom: 38/1350
  46162. }
  46163. },
  46164. back: {
  46165. height: math.unit(5, "meters"),
  46166. name: "Back",
  46167. image: {
  46168. source: "./media/characters/cintia/back.svg",
  46169. extra: 1260/1166,
  46170. bottom: 98/1358
  46171. }
  46172. },
  46173. frontDick: {
  46174. height: math.unit(5, "meters"),
  46175. name: "Front (Dick)",
  46176. image: {
  46177. source: "./media/characters/cintia/front-dick.svg",
  46178. extra: 1312/1228,
  46179. bottom: 38/1350
  46180. }
  46181. },
  46182. backDick: {
  46183. height: math.unit(5, "meters"),
  46184. name: "Back (Dick)",
  46185. image: {
  46186. source: "./media/characters/cintia/back-dick.svg",
  46187. extra: 1260/1166,
  46188. bottom: 98/1358
  46189. }
  46190. },
  46191. bust: {
  46192. height: math.unit(1.97, "meters"),
  46193. name: "Bust",
  46194. image: {
  46195. source: "./media/characters/cintia/bust.svg",
  46196. extra: 617/565,
  46197. bottom: 0/617
  46198. }
  46199. },
  46200. },
  46201. [
  46202. {
  46203. name: "Normal",
  46204. height: math.unit(5, "meters"),
  46205. default: true
  46206. },
  46207. ]
  46208. ))
  46209. characterMakers.push(() => makeCharacter(
  46210. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46211. {
  46212. side: {
  46213. height: math.unit(100, "feet"),
  46214. name: "Side",
  46215. image: {
  46216. source: "./media/characters/denora/side.svg",
  46217. extra: 875/803,
  46218. bottom: 9/884
  46219. }
  46220. },
  46221. },
  46222. [
  46223. {
  46224. name: "Standard",
  46225. height: math.unit(100, "feet"),
  46226. default: true
  46227. },
  46228. {
  46229. name: "Grand",
  46230. height: math.unit(1000, "feet")
  46231. },
  46232. {
  46233. name: "Conquering",
  46234. height: math.unit(10000, "feet")
  46235. },
  46236. ]
  46237. ))
  46238. characterMakers.push(() => makeCharacter(
  46239. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46240. {
  46241. dressed: {
  46242. height: math.unit(8 + 5/12, "feet"),
  46243. weight: math.unit(700, "lb"),
  46244. name: "Dressed",
  46245. image: {
  46246. source: "./media/characters/kiva/dressed.svg",
  46247. extra: 1102/1055,
  46248. bottom: 60/1162
  46249. }
  46250. },
  46251. nude: {
  46252. height: math.unit(8 + 5/12, "feet"),
  46253. weight: math.unit(700, "lb"),
  46254. name: "Nude",
  46255. image: {
  46256. source: "./media/characters/kiva/nude.svg",
  46257. extra: 1102/1055,
  46258. bottom: 60/1162
  46259. }
  46260. },
  46261. },
  46262. [
  46263. {
  46264. name: "Base Height",
  46265. height: math.unit(8 + 5/12, "feet"),
  46266. default: true
  46267. },
  46268. {
  46269. name: "Macro",
  46270. height: math.unit(100, "feet")
  46271. },
  46272. {
  46273. name: "Max",
  46274. height: math.unit(3280, "feet")
  46275. },
  46276. ]
  46277. ))
  46278. characterMakers.push(() => makeCharacter(
  46279. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46280. {
  46281. front: {
  46282. height: math.unit(6 + 8/12, "feet"),
  46283. weight: math.unit(250, "lb"),
  46284. name: "Front",
  46285. image: {
  46286. source: "./media/characters/ztragon/front.svg",
  46287. extra: 1825/1684,
  46288. bottom: 98/1923
  46289. }
  46290. },
  46291. },
  46292. [
  46293. {
  46294. name: "Normal",
  46295. height: math.unit(6 + 8/12, "feet"),
  46296. default: true
  46297. },
  46298. {
  46299. name: "Macro",
  46300. height: math.unit(80, "feet")
  46301. },
  46302. ]
  46303. ))
  46304. characterMakers.push(() => makeCharacter(
  46305. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46306. {
  46307. front: {
  46308. height: math.unit(10.4, "feet"),
  46309. weight: math.unit(2, "tons"),
  46310. name: "Front",
  46311. image: {
  46312. source: "./media/characters/yesenia/front.svg",
  46313. extra: 1479/1474,
  46314. bottom: 233/1712
  46315. }
  46316. },
  46317. },
  46318. [
  46319. {
  46320. name: "Normal",
  46321. height: math.unit(10.4, "feet"),
  46322. default: true
  46323. },
  46324. ]
  46325. ))
  46326. characterMakers.push(() => makeCharacter(
  46327. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46328. {
  46329. normal: {
  46330. height: math.unit(6 + 1/12, "feet"),
  46331. weight: math.unit(180, "lb"),
  46332. name: "Normal",
  46333. image: {
  46334. source: "./media/characters/leanne-lycheborne/normal.svg",
  46335. extra: 1748/1660,
  46336. bottom: 98/1846
  46337. }
  46338. },
  46339. were: {
  46340. height: math.unit(12, "feet"),
  46341. weight: math.unit(1600, "lb"),
  46342. name: "Were",
  46343. image: {
  46344. source: "./media/characters/leanne-lycheborne/were.svg",
  46345. extra: 1485/1432,
  46346. bottom: 66/1551
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "Normal",
  46353. height: math.unit(6 + 1/12, "feet"),
  46354. default: true
  46355. },
  46356. ]
  46357. ))
  46358. characterMakers.push(() => makeCharacter(
  46359. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46360. {
  46361. side: {
  46362. height: math.unit(13, "feet"),
  46363. name: "Side",
  46364. image: {
  46365. source: "./media/characters/kira-tyler/side.svg",
  46366. extra: 693/393,
  46367. bottom: 58/751
  46368. }
  46369. },
  46370. },
  46371. [
  46372. {
  46373. name: "Normal",
  46374. height: math.unit(13, "feet"),
  46375. default: true
  46376. },
  46377. ]
  46378. ))
  46379. characterMakers.push(() => makeCharacter(
  46380. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46381. {
  46382. front: {
  46383. height: math.unit(10.3, "feet"),
  46384. weight: math.unit(150, "lb"),
  46385. name: "Front",
  46386. image: {
  46387. source: "./media/characters/blaze/front.svg",
  46388. extra: 1378/1286,
  46389. bottom: 172/1550
  46390. }
  46391. },
  46392. },
  46393. [
  46394. {
  46395. name: "Normal",
  46396. height: math.unit(10.3, "feet"),
  46397. default: true
  46398. },
  46399. ]
  46400. ))
  46401. characterMakers.push(() => makeCharacter(
  46402. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46403. {
  46404. side: {
  46405. height: math.unit(2, "meters"),
  46406. weight: math.unit(400, "kg"),
  46407. name: "Side",
  46408. image: {
  46409. source: "./media/characters/anu/side.svg",
  46410. extra: 506/394,
  46411. bottom: 18/524
  46412. }
  46413. },
  46414. },
  46415. [
  46416. {
  46417. name: "Humanoid",
  46418. height: math.unit(2, "meters")
  46419. },
  46420. {
  46421. name: "Normal",
  46422. height: math.unit(5, "meters"),
  46423. default: true
  46424. },
  46425. ]
  46426. ))
  46427. characterMakers.push(() => makeCharacter(
  46428. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46429. {
  46430. front: {
  46431. height: math.unit(5 + 5/12, "feet"),
  46432. weight: math.unit(170, "lb"),
  46433. name: "Front",
  46434. image: {
  46435. source: "./media/characters/synx-the-lynx/front.svg",
  46436. extra: 1893/1745,
  46437. bottom: 17/1910
  46438. }
  46439. },
  46440. side: {
  46441. height: math.unit(5 + 5/12, "feet"),
  46442. weight: math.unit(170, "lb"),
  46443. name: "Side",
  46444. image: {
  46445. source: "./media/characters/synx-the-lynx/side.svg",
  46446. extra: 1884/1740,
  46447. bottom: 39/1923
  46448. }
  46449. },
  46450. back: {
  46451. height: math.unit(5 + 5/12, "feet"),
  46452. weight: math.unit(170, "lb"),
  46453. name: "Back",
  46454. image: {
  46455. source: "./media/characters/synx-the-lynx/back.svg",
  46456. extra: 1903/1755,
  46457. bottom: 14/1917
  46458. }
  46459. },
  46460. },
  46461. [
  46462. {
  46463. name: "Normal",
  46464. height: math.unit(5 + 5/12, "feet"),
  46465. default: true
  46466. },
  46467. ]
  46468. ))
  46469. characterMakers.push(() => makeCharacter(
  46470. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46471. {
  46472. back: {
  46473. height: math.unit(15, "feet"),
  46474. name: "Back",
  46475. image: {
  46476. source: "./media/characters/nadezda-fex/back.svg",
  46477. extra: 1695/1481,
  46478. bottom: 25/1720
  46479. }
  46480. },
  46481. },
  46482. [
  46483. {
  46484. name: "Normal",
  46485. height: math.unit(15, "feet"),
  46486. default: true
  46487. },
  46488. {
  46489. name: "Macro",
  46490. height: math.unit(2.5, "miles")
  46491. },
  46492. {
  46493. name: "Goddess",
  46494. height: math.unit(2, "multiverses")
  46495. },
  46496. ]
  46497. ))
  46498. characterMakers.push(() => makeCharacter(
  46499. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46500. {
  46501. front: {
  46502. height: math.unit(216, "cm"),
  46503. name: "Front",
  46504. image: {
  46505. source: "./media/characters/lev/front.svg",
  46506. extra: 1728/1670,
  46507. bottom: 82/1810
  46508. }
  46509. },
  46510. back: {
  46511. height: math.unit(216, "cm"),
  46512. name: "Back",
  46513. image: {
  46514. source: "./media/characters/lev/back.svg",
  46515. extra: 1738/1675,
  46516. bottom: 24/1762
  46517. }
  46518. },
  46519. dressed: {
  46520. height: math.unit(216, "cm"),
  46521. name: "Dressed",
  46522. image: {
  46523. source: "./media/characters/lev/dressed.svg",
  46524. extra: 1397/1351,
  46525. bottom: 73/1470
  46526. }
  46527. },
  46528. head: {
  46529. height: math.unit(0.51, "meter"),
  46530. name: "Head",
  46531. image: {
  46532. source: "./media/characters/lev/head.svg"
  46533. }
  46534. },
  46535. },
  46536. [
  46537. {
  46538. name: "Normal",
  46539. height: math.unit(216, "cm"),
  46540. default: true
  46541. },
  46542. {
  46543. name: "Relatively Macro",
  46544. height: math.unit(80, "meters")
  46545. },
  46546. {
  46547. name: "Megamacro",
  46548. height: math.unit(21600, "meters")
  46549. },
  46550. {
  46551. name: "Megamacro+",
  46552. height: math.unit(64800, "meters")
  46553. },
  46554. ]
  46555. ))
  46556. characterMakers.push(() => makeCharacter(
  46557. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46558. {
  46559. front: {
  46560. height: math.unit(2, "meters"),
  46561. weight: math.unit(80, "kg"),
  46562. name: "Front",
  46563. image: {
  46564. source: "./media/characters/moka/front.svg",
  46565. extra: 1337/1255,
  46566. bottom: 58/1395
  46567. }
  46568. },
  46569. },
  46570. [
  46571. {
  46572. name: "Micro",
  46573. height: math.unit(15, "cm")
  46574. },
  46575. {
  46576. name: "Normal",
  46577. height: math.unit(2, "meters"),
  46578. default: true
  46579. },
  46580. {
  46581. name: "Macro",
  46582. height: math.unit(20, "meters"),
  46583. },
  46584. ]
  46585. ))
  46586. characterMakers.push(() => makeCharacter(
  46587. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46588. {
  46589. front: {
  46590. height: math.unit(9, "feet"),
  46591. weight: math.unit(240, "lb"),
  46592. name: "Front",
  46593. image: {
  46594. source: "./media/characters/kuzco/front.svg",
  46595. extra: 1593/1487,
  46596. bottom: 32/1625
  46597. }
  46598. },
  46599. side: {
  46600. height: math.unit(9, "feet"),
  46601. weight: math.unit(240, "lb"),
  46602. name: "Side",
  46603. image: {
  46604. source: "./media/characters/kuzco/side.svg",
  46605. extra: 1575/1485,
  46606. bottom: 30/1605
  46607. }
  46608. },
  46609. back: {
  46610. height: math.unit(9, "feet"),
  46611. weight: math.unit(240, "lb"),
  46612. name: "Back",
  46613. image: {
  46614. source: "./media/characters/kuzco/back.svg",
  46615. extra: 1603/1514,
  46616. bottom: 14/1617
  46617. }
  46618. },
  46619. },
  46620. [
  46621. {
  46622. name: "Normal",
  46623. height: math.unit(9, "feet"),
  46624. default: true
  46625. },
  46626. ]
  46627. ))
  46628. characterMakers.push(() => makeCharacter(
  46629. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46630. {
  46631. side: {
  46632. height: math.unit(2, "meters"),
  46633. weight: math.unit(300, "kg"),
  46634. name: "Side",
  46635. image: {
  46636. source: "./media/characters/ceruleus/side.svg",
  46637. extra: 1068/974,
  46638. bottom: 126/1194
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Normal",
  46645. height: math.unit(16, "meters"),
  46646. default: true
  46647. },
  46648. ]
  46649. ))
  46650. characterMakers.push(() => makeCharacter(
  46651. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46652. {
  46653. front: {
  46654. height: math.unit(9, "feet"),
  46655. weight: math.unit(500, "kg"),
  46656. name: "Front",
  46657. image: {
  46658. source: "./media/characters/acouya/front.svg",
  46659. extra: 1660/1473,
  46660. bottom: 28/1688
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(9, "feet"),
  46668. default: true
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(5 + 6/12, "feet"),
  46677. weight: math.unit(195, "lb"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/vant/front.svg",
  46681. extra: 1396/1320,
  46682. bottom: 20/1416
  46683. }
  46684. },
  46685. back: {
  46686. height: math.unit(5 + 6/12, "feet"),
  46687. weight: math.unit(195, "lb"),
  46688. name: "Back",
  46689. image: {
  46690. source: "./media/characters/vant/back.svg",
  46691. extra: 1396/1320,
  46692. bottom: 20/1416
  46693. }
  46694. },
  46695. maw: {
  46696. height: math.unit(0.75, "feet"),
  46697. name: "Maw",
  46698. image: {
  46699. source: "./media/characters/vant/maw.svg"
  46700. }
  46701. },
  46702. paw: {
  46703. height: math.unit(1.07, "feet"),
  46704. name: "Paw",
  46705. image: {
  46706. source: "./media/characters/vant/paw.svg"
  46707. }
  46708. },
  46709. },
  46710. [
  46711. {
  46712. name: "Micro",
  46713. height: math.unit(0.25, "inches")
  46714. },
  46715. {
  46716. name: "Normal",
  46717. height: math.unit(5 + 6/12, "feet"),
  46718. default: true
  46719. },
  46720. {
  46721. name: "Macro",
  46722. height: math.unit(75, "feet")
  46723. },
  46724. ]
  46725. ))
  46726. characterMakers.push(() => makeCharacter(
  46727. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46728. {
  46729. front: {
  46730. height: math.unit(30, "meters"),
  46731. weight: math.unit(363, "tons"),
  46732. name: "Front",
  46733. image: {
  46734. source: "./media/characters/ahra/front.svg",
  46735. extra: 1914/1814,
  46736. bottom: 46/1960
  46737. }
  46738. },
  46739. },
  46740. [
  46741. {
  46742. name: "Macro",
  46743. height: math.unit(30, "meters"),
  46744. default: true
  46745. },
  46746. ]
  46747. ))
  46748. characterMakers.push(() => makeCharacter(
  46749. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46750. {
  46751. undressed: {
  46752. height: math.unit(2, "m"),
  46753. weight: math.unit(250, "kg"),
  46754. name: "Undressed",
  46755. image: {
  46756. source: "./media/characters/coriander/undressed.svg",
  46757. extra: 1757/1606,
  46758. bottom: 107/1864
  46759. }
  46760. },
  46761. dressed: {
  46762. height: math.unit(2, "m"),
  46763. weight: math.unit(250, "kg"),
  46764. name: "Dressed",
  46765. image: {
  46766. source: "./media/characters/coriander/dressed.svg",
  46767. extra: 1757/1606,
  46768. bottom: 107/1864
  46769. }
  46770. },
  46771. },
  46772. [
  46773. {
  46774. name: "Normal",
  46775. height: math.unit(4, "meters"),
  46776. default: true
  46777. },
  46778. {
  46779. name: "XL",
  46780. height: math.unit(6, "meters")
  46781. },
  46782. {
  46783. name: "XXL",
  46784. height: math.unit(8, "meters")
  46785. },
  46786. ]
  46787. ))
  46788. characterMakers.push(() => makeCharacter(
  46789. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46790. {
  46791. front: {
  46792. height: math.unit(6, "feet"),
  46793. name: "Front",
  46794. image: {
  46795. source: "./media/characters/syrinx/front.svg",
  46796. extra: 1557/1259,
  46797. bottom: 171/1728
  46798. }
  46799. },
  46800. },
  46801. [
  46802. {
  46803. name: "Normal",
  46804. height: math.unit(6 + 3/12, "feet"),
  46805. default: true
  46806. },
  46807. ]
  46808. ))
  46809. characterMakers.push(() => makeCharacter(
  46810. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46811. {
  46812. front: {
  46813. height: math.unit(11 + 6/12, "feet"),
  46814. weight: math.unit(1.5, "tons"),
  46815. name: "Front",
  46816. image: {
  46817. source: "./media/characters/bor/front.svg",
  46818. extra: 1189/1109,
  46819. bottom: 170/1359
  46820. }
  46821. },
  46822. },
  46823. [
  46824. {
  46825. name: "Normal",
  46826. height: math.unit(11 + 6/12, "feet"),
  46827. default: true
  46828. },
  46829. {
  46830. name: "Macro",
  46831. height: math.unit(32 + 9/12, "feet")
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46837. {
  46838. anthro: {
  46839. height: math.unit(9, "feet"),
  46840. weight: math.unit(2076, "lb"),
  46841. name: "Anthro",
  46842. image: {
  46843. source: "./media/characters/abacus/anthro.svg",
  46844. extra: 1540/1494,
  46845. bottom: 233/1773
  46846. }
  46847. },
  46848. pigeon: {
  46849. height: math.unit(1, "feet"),
  46850. name: "Pigeon",
  46851. image: {
  46852. source: "./media/characters/abacus/pigeon.svg",
  46853. extra: 528/525,
  46854. bottom: 46/574
  46855. }
  46856. },
  46857. },
  46858. [
  46859. {
  46860. name: "Normal",
  46861. height: math.unit(9, "feet"),
  46862. default: true
  46863. },
  46864. ]
  46865. ))
  46866. characterMakers.push(() => makeCharacter(
  46867. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46868. {
  46869. side: {
  46870. height: math.unit(6, "feet"),
  46871. name: "Side",
  46872. image: {
  46873. source: "./media/characters/delkhan/side.svg",
  46874. extra: 1884/1786,
  46875. bottom: 308/2192
  46876. }
  46877. },
  46878. head: {
  46879. height: math.unit(3.38, "feet"),
  46880. name: "Head",
  46881. image: {
  46882. source: "./media/characters/delkhan/head.svg"
  46883. }
  46884. },
  46885. },
  46886. [
  46887. {
  46888. name: "Normal",
  46889. height: math.unit(72, "feet"),
  46890. default: true
  46891. },
  46892. {
  46893. name: "Giant",
  46894. height: math.unit(172, "feet")
  46895. },
  46896. ]
  46897. ))
  46898. characterMakers.push(() => makeCharacter(
  46899. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46900. {
  46901. standing: {
  46902. height: math.unit(6, "feet"),
  46903. name: "Standing",
  46904. image: {
  46905. source: "./media/characters/euchidat/standing.svg",
  46906. extra: 1612/1553,
  46907. bottom: 116/1728
  46908. }
  46909. },
  46910. leaning: {
  46911. height: math.unit(6, "feet"),
  46912. name: "Leaning",
  46913. image: {
  46914. source: "./media/characters/euchidat/leaning.svg",
  46915. extra: 1719/1674,
  46916. bottom: 27/1746
  46917. }
  46918. },
  46919. },
  46920. [
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(175, "feet"),
  46924. default: true
  46925. },
  46926. {
  46927. name: "Megamacro",
  46928. height: math.unit(190, "miles")
  46929. },
  46930. {
  46931. name: "Gigamacro",
  46932. height: math.unit(190000, "miles")
  46933. },
  46934. ]
  46935. ))
  46936. characterMakers.push(() => makeCharacter(
  46937. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46938. {
  46939. front: {
  46940. height: math.unit(6, "feet"),
  46941. weight: math.unit(150, "lb"),
  46942. name: "Front",
  46943. image: {
  46944. source: "./media/characters/rebecca-stack/front.svg",
  46945. extra: 1256/1201,
  46946. bottom: 18/1274
  46947. }
  46948. },
  46949. },
  46950. [
  46951. {
  46952. name: "Normal",
  46953. height: math.unit(5 + 8/12, "feet"),
  46954. default: true
  46955. },
  46956. {
  46957. name: "Demolitionist",
  46958. height: math.unit(200, "feet")
  46959. },
  46960. {
  46961. name: "Out of Control",
  46962. height: math.unit(2, "miles")
  46963. },
  46964. {
  46965. name: "Giga",
  46966. height: math.unit(7200, "miles")
  46967. },
  46968. ]
  46969. ))
  46970. characterMakers.push(() => makeCharacter(
  46971. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46972. {
  46973. front: {
  46974. height: math.unit(6, "feet"),
  46975. weight: math.unit(150, "lb"),
  46976. name: "Front",
  46977. image: {
  46978. source: "./media/characters/jenny-cartwright/front.svg",
  46979. extra: 1384/1376,
  46980. bottom: 58/1442
  46981. }
  46982. },
  46983. },
  46984. [
  46985. {
  46986. name: "Normal",
  46987. height: math.unit(6 + 7/12, "feet"),
  46988. default: true
  46989. },
  46990. {
  46991. name: "Librarian",
  46992. height: math.unit(55, "feet")
  46993. },
  46994. {
  46995. name: "Sightseer",
  46996. height: math.unit(50, "miles")
  46997. },
  46998. {
  46999. name: "Giga",
  47000. height: math.unit(30000, "miles")
  47001. },
  47002. ]
  47003. ))
  47004. characterMakers.push(() => makeCharacter(
  47005. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47006. {
  47007. nude: {
  47008. height: math.unit(8, "feet"),
  47009. weight: math.unit(225, "lb"),
  47010. name: "Nude",
  47011. image: {
  47012. source: "./media/characters/marvy/nude.svg",
  47013. extra: 1900/1683,
  47014. bottom: 89/1989
  47015. }
  47016. },
  47017. dressed: {
  47018. height: math.unit(8, "feet"),
  47019. weight: math.unit(225, "lb"),
  47020. name: "Dressed",
  47021. image: {
  47022. source: "./media/characters/marvy/dressed.svg",
  47023. extra: 1900/1683,
  47024. bottom: 89/1989
  47025. }
  47026. },
  47027. head: {
  47028. height: math.unit(2.85, "feet"),
  47029. name: "Head",
  47030. image: {
  47031. source: "./media/characters/marvy/head.svg"
  47032. }
  47033. },
  47034. },
  47035. [
  47036. {
  47037. name: "Normal",
  47038. height: math.unit(8, "feet"),
  47039. default: true
  47040. },
  47041. ]
  47042. ))
  47043. characterMakers.push(() => makeCharacter(
  47044. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47045. {
  47046. front: {
  47047. height: math.unit(8, "feet"),
  47048. weight: math.unit(250, "lb"),
  47049. name: "Front",
  47050. image: {
  47051. source: "./media/characters/leah/front.svg",
  47052. extra: 1257/1149,
  47053. bottom: 109/1366
  47054. }
  47055. },
  47056. },
  47057. [
  47058. {
  47059. name: "Normal",
  47060. height: math.unit(8, "feet"),
  47061. default: true
  47062. },
  47063. {
  47064. name: "Minimacro",
  47065. height: math.unit(40, "feet")
  47066. },
  47067. {
  47068. name: "Macro",
  47069. height: math.unit(124, "feet")
  47070. },
  47071. {
  47072. name: "Megamacro",
  47073. height: math.unit(850, "feet")
  47074. },
  47075. ]
  47076. ))
  47077. characterMakers.push(() => makeCharacter(
  47078. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47079. {
  47080. side: {
  47081. height: math.unit(13 + 6/12, "feet"),
  47082. weight: math.unit(3200, "lb"),
  47083. name: "Side",
  47084. image: {
  47085. source: "./media/characters/alvir/side.svg",
  47086. extra: 896/589,
  47087. bottom: 26/922
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Normal",
  47094. height: math.unit(13 + 6/12, "feet"),
  47095. default: true
  47096. },
  47097. ]
  47098. ))
  47099. characterMakers.push(() => makeCharacter(
  47100. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47101. {
  47102. front: {
  47103. height: math.unit(5 + 4/12, "feet"),
  47104. weight: math.unit(236, "lb"),
  47105. name: "Front",
  47106. image: {
  47107. source: "./media/characters/zaina-khalil/front.svg",
  47108. extra: 1533/1485,
  47109. bottom: 94/1627
  47110. }
  47111. },
  47112. side: {
  47113. height: math.unit(5 + 4/12, "feet"),
  47114. weight: math.unit(236, "lb"),
  47115. name: "Side",
  47116. image: {
  47117. source: "./media/characters/zaina-khalil/side.svg",
  47118. extra: 1537/1498,
  47119. bottom: 66/1603
  47120. }
  47121. },
  47122. back: {
  47123. height: math.unit(5 + 4/12, "feet"),
  47124. weight: math.unit(236, "lb"),
  47125. name: "Back",
  47126. image: {
  47127. source: "./media/characters/zaina-khalil/back.svg",
  47128. extra: 1546/1494,
  47129. bottom: 89/1635
  47130. }
  47131. },
  47132. },
  47133. [
  47134. {
  47135. name: "Normal",
  47136. height: math.unit(5 + 4/12, "feet"),
  47137. default: true
  47138. },
  47139. ]
  47140. ))
  47141. characterMakers.push(() => makeCharacter(
  47142. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47143. {
  47144. side: {
  47145. height: math.unit(12, "feet"),
  47146. weight: math.unit(4000, "lb"),
  47147. name: "Side",
  47148. image: {
  47149. source: "./media/characters/terry/side.svg",
  47150. extra: 1518/1439,
  47151. bottom: 149/1667
  47152. }
  47153. },
  47154. },
  47155. [
  47156. {
  47157. name: "Normal",
  47158. height: math.unit(12, "feet"),
  47159. default: true
  47160. },
  47161. ]
  47162. ))
  47163. characterMakers.push(() => makeCharacter(
  47164. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47165. {
  47166. front: {
  47167. height: math.unit(12, "feet"),
  47168. weight: math.unit(1500, "lb"),
  47169. name: "Front",
  47170. image: {
  47171. source: "./media/characters/kahea/front.svg",
  47172. extra: 1722/1617,
  47173. bottom: 179/1901
  47174. }
  47175. },
  47176. },
  47177. [
  47178. {
  47179. name: "Normal",
  47180. height: math.unit(12, "feet"),
  47181. default: true
  47182. },
  47183. ]
  47184. ))
  47185. characterMakers.push(() => makeCharacter(
  47186. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47187. {
  47188. demonFront: {
  47189. height: math.unit(36, "feet"),
  47190. name: "Front",
  47191. image: {
  47192. source: "./media/characters/alex-xuria/demon-front.svg",
  47193. extra: 1705/1673,
  47194. bottom: 198/1903
  47195. },
  47196. form: "demon",
  47197. default: true
  47198. },
  47199. demonBack: {
  47200. height: math.unit(36, "feet"),
  47201. name: "Back",
  47202. image: {
  47203. source: "./media/characters/alex-xuria/demon-back.svg",
  47204. extra: 1725/1693,
  47205. bottom: 70/1795
  47206. },
  47207. form: "demon"
  47208. },
  47209. demonHead: {
  47210. height: math.unit(2.14, "meters"),
  47211. name: "Head",
  47212. image: {
  47213. source: "./media/characters/alex-xuria/demon-head.svg"
  47214. },
  47215. form: "demon"
  47216. },
  47217. demonHand: {
  47218. height: math.unit(1.61, "meters"),
  47219. name: "Hand",
  47220. image: {
  47221. source: "./media/characters/alex-xuria/demon-hand.svg"
  47222. },
  47223. form: "demon"
  47224. },
  47225. demonPaw: {
  47226. height: math.unit(1.35, "meters"),
  47227. name: "Paw",
  47228. image: {
  47229. source: "./media/characters/alex-xuria/demon-paw.svg"
  47230. },
  47231. form: "demon"
  47232. },
  47233. demonFoot: {
  47234. height: math.unit(2.2, "meters"),
  47235. name: "Foot",
  47236. image: {
  47237. source: "./media/characters/alex-xuria/demon-foot.svg"
  47238. },
  47239. form: "demon"
  47240. },
  47241. demonCock: {
  47242. height: math.unit(1.74, "meters"),
  47243. name: "Cock",
  47244. image: {
  47245. source: "./media/characters/alex-xuria/demon-cock.svg"
  47246. },
  47247. form: "demon"
  47248. },
  47249. demonTailClosed: {
  47250. height: math.unit(1.47, "meters"),
  47251. name: "Tail (Closed)",
  47252. image: {
  47253. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47254. },
  47255. form: "demon"
  47256. },
  47257. demonTailOpen: {
  47258. height: math.unit(2.85, "meters"),
  47259. name: "Tail (Open)",
  47260. image: {
  47261. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47262. },
  47263. form: "demon"
  47264. },
  47265. incubusFront: {
  47266. height: math.unit(12, "feet"),
  47267. name: "Front",
  47268. image: {
  47269. source: "./media/characters/alex-xuria/incubus-front.svg",
  47270. extra: 1754/1677,
  47271. bottom: 125/1879
  47272. },
  47273. form: "incubus",
  47274. default: true
  47275. },
  47276. incubusBack: {
  47277. height: math.unit(12, "feet"),
  47278. name: "Back",
  47279. image: {
  47280. source: "./media/characters/alex-xuria/incubus-back.svg",
  47281. extra: 1702/1647,
  47282. bottom: 30/1732
  47283. },
  47284. form: "incubus"
  47285. },
  47286. incubusHead: {
  47287. height: math.unit(3.45, "feet"),
  47288. name: "Head",
  47289. image: {
  47290. source: "./media/characters/alex-xuria/incubus-head.svg"
  47291. },
  47292. form: "incubus"
  47293. },
  47294. rabbitFront: {
  47295. height: math.unit(6, "feet"),
  47296. name: "Front",
  47297. image: {
  47298. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47299. extra: 1369/1349,
  47300. bottom: 45/1414
  47301. },
  47302. form: "rabbit",
  47303. default: true
  47304. },
  47305. rabbitSide: {
  47306. height: math.unit(6, "feet"),
  47307. name: "Side",
  47308. image: {
  47309. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47310. extra: 1370/1356,
  47311. bottom: 37/1407
  47312. },
  47313. form: "rabbit"
  47314. },
  47315. rabbitBack: {
  47316. height: math.unit(6, "feet"),
  47317. name: "Back",
  47318. image: {
  47319. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47320. extra: 1375/1358,
  47321. bottom: 43/1418
  47322. },
  47323. form: "rabbit"
  47324. },
  47325. },
  47326. [
  47327. {
  47328. name: "Normal",
  47329. height: math.unit(6, "feet"),
  47330. default: true,
  47331. form: "rabbit"
  47332. },
  47333. {
  47334. name: "Incubus",
  47335. height: math.unit(12, "feet"),
  47336. default: true,
  47337. form: "incubus"
  47338. },
  47339. {
  47340. name: "Demon",
  47341. height: math.unit(36, "feet"),
  47342. default: true,
  47343. form: "demon"
  47344. }
  47345. ],
  47346. {
  47347. "demon": {
  47348. name: "Demon",
  47349. default: true
  47350. },
  47351. "incubus": {
  47352. name: "Incubus",
  47353. },
  47354. "rabbit": {
  47355. name: "Rabbit"
  47356. }
  47357. }
  47358. ))
  47359. characterMakers.push(() => makeCharacter(
  47360. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47361. {
  47362. front: {
  47363. height: math.unit(7 + 5/12, "feet"),
  47364. weight: math.unit(510, "lb"),
  47365. name: "Front",
  47366. image: {
  47367. source: "./media/characters/syrup/front.svg",
  47368. extra: 932/916,
  47369. bottom: 26/958
  47370. }
  47371. },
  47372. },
  47373. [
  47374. {
  47375. name: "Normal",
  47376. height: math.unit(7 + 5/12, "feet"),
  47377. default: true
  47378. },
  47379. {
  47380. name: "Big",
  47381. height: math.unit(50, "feet")
  47382. },
  47383. {
  47384. name: "Macro",
  47385. height: math.unit(300, "feet")
  47386. },
  47387. {
  47388. name: "Megamacro",
  47389. height: math.unit(1, "mile")
  47390. },
  47391. ]
  47392. ))
  47393. characterMakers.push(() => makeCharacter(
  47394. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47395. {
  47396. front: {
  47397. height: math.unit(6 + 9/12, "feet"),
  47398. name: "Front",
  47399. image: {
  47400. source: "./media/characters/zeimne/front.svg",
  47401. extra: 1969/1806,
  47402. bottom: 53/2022
  47403. }
  47404. },
  47405. },
  47406. [
  47407. {
  47408. name: "Normal",
  47409. height: math.unit(6 + 9/12, "feet"),
  47410. default: true
  47411. },
  47412. {
  47413. name: "Giant",
  47414. height: math.unit(550, "feet")
  47415. },
  47416. {
  47417. name: "Mega",
  47418. height: math.unit(3, "miles")
  47419. },
  47420. {
  47421. name: "Giga",
  47422. height: math.unit(250, "miles")
  47423. },
  47424. {
  47425. name: "Tera",
  47426. height: math.unit(1, "AU")
  47427. },
  47428. ]
  47429. ))
  47430. characterMakers.push(() => makeCharacter(
  47431. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47432. {
  47433. front: {
  47434. height: math.unit(5 + 2/12, "feet"),
  47435. name: "Front",
  47436. image: {
  47437. source: "./media/characters/grar/front.svg",
  47438. extra: 1331/1119,
  47439. bottom: 60/1391
  47440. }
  47441. },
  47442. back: {
  47443. height: math.unit(5 + 2/12, "feet"),
  47444. name: "Back",
  47445. image: {
  47446. source: "./media/characters/grar/back.svg",
  47447. extra: 1385/1169,
  47448. bottom: 23/1408
  47449. }
  47450. },
  47451. },
  47452. [
  47453. {
  47454. name: "Normal",
  47455. height: math.unit(5 + 2/12, "feet"),
  47456. default: true
  47457. },
  47458. ]
  47459. ))
  47460. characterMakers.push(() => makeCharacter(
  47461. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47462. {
  47463. front: {
  47464. height: math.unit(13 + 7/12, "feet"),
  47465. weight: math.unit(2200, "lb"),
  47466. name: "Front",
  47467. image: {
  47468. source: "./media/characters/endraya/front.svg",
  47469. extra: 1289/1215,
  47470. bottom: 50/1339
  47471. }
  47472. },
  47473. nude: {
  47474. height: math.unit(13 + 7/12, "feet"),
  47475. weight: math.unit(2200, "lb"),
  47476. name: "Nude",
  47477. image: {
  47478. source: "./media/characters/endraya/nude.svg",
  47479. extra: 1247/1171,
  47480. bottom: 40/1287
  47481. }
  47482. },
  47483. head: {
  47484. height: math.unit(2.6, "feet"),
  47485. name: "Head",
  47486. image: {
  47487. source: "./media/characters/endraya/head.svg"
  47488. }
  47489. },
  47490. slit: {
  47491. height: math.unit(3.4, "feet"),
  47492. name: "Slit",
  47493. image: {
  47494. source: "./media/characters/endraya/slit.svg"
  47495. }
  47496. },
  47497. },
  47498. [
  47499. {
  47500. name: "Normal",
  47501. height: math.unit(13 + 7/12, "feet"),
  47502. default: true
  47503. },
  47504. {
  47505. name: "Macro",
  47506. height: math.unit(200, "feet")
  47507. },
  47508. ]
  47509. ))
  47510. characterMakers.push(() => makeCharacter(
  47511. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47512. {
  47513. front: {
  47514. height: math.unit(1.81, "meters"),
  47515. weight: math.unit(69, "kg"),
  47516. name: "Front",
  47517. image: {
  47518. source: "./media/characters/rodryana/front.svg",
  47519. extra: 2002/1921,
  47520. bottom: 53/2055
  47521. }
  47522. },
  47523. back: {
  47524. height: math.unit(1.81, "meters"),
  47525. weight: math.unit(69, "kg"),
  47526. name: "Back",
  47527. image: {
  47528. source: "./media/characters/rodryana/back.svg",
  47529. extra: 1993/1926,
  47530. bottom: 48/2041
  47531. }
  47532. },
  47533. maw: {
  47534. height: math.unit(0.19769417475, "meters"),
  47535. name: "Maw",
  47536. image: {
  47537. source: "./media/characters/rodryana/maw.svg"
  47538. }
  47539. },
  47540. slit: {
  47541. height: math.unit(0.31631067961, "meters"),
  47542. name: "Slit",
  47543. image: {
  47544. source: "./media/characters/rodryana/slit.svg"
  47545. }
  47546. },
  47547. },
  47548. [
  47549. {
  47550. name: "Normal",
  47551. height: math.unit(1.81, "meters")
  47552. },
  47553. {
  47554. name: "Mini Macro",
  47555. height: math.unit(181, "meters")
  47556. },
  47557. {
  47558. name: "Macro",
  47559. height: math.unit(452, "meters"),
  47560. default: true
  47561. },
  47562. {
  47563. name: "Mega Macro",
  47564. height: math.unit(1.375, "km")
  47565. },
  47566. {
  47567. name: "Giga Macro",
  47568. height: math.unit(13.575, "km")
  47569. },
  47570. ]
  47571. ))
  47572. characterMakers.push(() => makeCharacter(
  47573. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47574. {
  47575. front: {
  47576. height: math.unit(6, "feet"),
  47577. weight: math.unit(1000, "lb"),
  47578. name: "Front",
  47579. image: {
  47580. source: "./media/characters/asaya/front.svg",
  47581. extra: 1460/1200,
  47582. bottom: 71/1531
  47583. }
  47584. },
  47585. },
  47586. [
  47587. {
  47588. name: "Normal",
  47589. height: math.unit(8, "km"),
  47590. default: true
  47591. },
  47592. ]
  47593. ))
  47594. characterMakers.push(() => makeCharacter(
  47595. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47596. {
  47597. front: {
  47598. height: math.unit(3.5, "meters"),
  47599. name: "Front",
  47600. image: {
  47601. source: "./media/characters/sarzu-and-israz/front.svg",
  47602. extra: 1570/1558,
  47603. bottom: 150/1720
  47604. },
  47605. },
  47606. back: {
  47607. height: math.unit(3.5, "meters"),
  47608. name: "Back",
  47609. image: {
  47610. source: "./media/characters/sarzu-and-israz/back.svg",
  47611. extra: 1523/1509,
  47612. bottom: 132/1655
  47613. },
  47614. },
  47615. frontFemale: {
  47616. height: math.unit(3.5, "meters"),
  47617. name: "Front (Female)",
  47618. image: {
  47619. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47620. extra: 1570/1558,
  47621. bottom: 150/1720
  47622. },
  47623. },
  47624. frontHerm: {
  47625. height: math.unit(3.5, "meters"),
  47626. name: "Front (Herm)",
  47627. image: {
  47628. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47629. extra: 1570/1558,
  47630. bottom: 150/1720
  47631. },
  47632. },
  47633. },
  47634. [
  47635. {
  47636. name: "Normal",
  47637. height: math.unit(3.5, "meters"),
  47638. default: true,
  47639. },
  47640. {
  47641. name: "Macro",
  47642. height: math.unit(65.5, "meters"),
  47643. },
  47644. ],
  47645. ))
  47646. characterMakers.push(() => makeCharacter(
  47647. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47648. {
  47649. front: {
  47650. height: math.unit(6, "feet"),
  47651. weight: math.unit(250, "lb"),
  47652. name: "Front",
  47653. image: {
  47654. source: "./media/characters/zenimma/front.svg",
  47655. extra: 1346/1320,
  47656. bottom: 58/1404
  47657. }
  47658. },
  47659. back: {
  47660. height: math.unit(6, "feet"),
  47661. weight: math.unit(250, "lb"),
  47662. name: "Back",
  47663. image: {
  47664. source: "./media/characters/zenimma/back.svg",
  47665. extra: 1324/1308,
  47666. bottom: 44/1368
  47667. }
  47668. },
  47669. dick: {
  47670. height: math.unit(1.44, "feet"),
  47671. name: "Dick",
  47672. image: {
  47673. source: "./media/characters/zenimma/dick.svg"
  47674. }
  47675. },
  47676. },
  47677. [
  47678. {
  47679. name: "Canon Height",
  47680. height: math.unit(66, "miles"),
  47681. default: true
  47682. },
  47683. ]
  47684. ))
  47685. characterMakers.push(() => makeCharacter(
  47686. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47687. {
  47688. nude: {
  47689. height: math.unit(6, "feet"),
  47690. weight: math.unit(150, "lb"),
  47691. name: "Nude",
  47692. image: {
  47693. source: "./media/characters/shavon/nude.svg",
  47694. extra: 1242/1096,
  47695. bottom: 98/1340
  47696. }
  47697. },
  47698. dressed: {
  47699. height: math.unit(6, "feet"),
  47700. weight: math.unit(150, "lb"),
  47701. name: "Dressed",
  47702. image: {
  47703. source: "./media/characters/shavon/dressed.svg",
  47704. extra: 1242/1096,
  47705. bottom: 98/1340
  47706. }
  47707. },
  47708. },
  47709. [
  47710. {
  47711. name: "Macro",
  47712. height: math.unit(255, "feet"),
  47713. default: true
  47714. },
  47715. ]
  47716. ))
  47717. characterMakers.push(() => makeCharacter(
  47718. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47719. {
  47720. front: {
  47721. height: math.unit(6, "feet"),
  47722. name: "Front",
  47723. image: {
  47724. source: "./media/characters/steph/front.svg",
  47725. extra: 1430/1330,
  47726. bottom: 54/1484
  47727. }
  47728. },
  47729. },
  47730. [
  47731. {
  47732. name: "Normal",
  47733. height: math.unit(6, "feet"),
  47734. default: true
  47735. },
  47736. ]
  47737. ))
  47738. characterMakers.push(() => makeCharacter(
  47739. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47740. {
  47741. front: {
  47742. height: math.unit(9, "feet"),
  47743. weight: math.unit(400, "lb"),
  47744. name: "Front",
  47745. image: {
  47746. source: "./media/characters/kil'aman/front.svg",
  47747. extra: 1210/1159,
  47748. bottom: 109/1319
  47749. }
  47750. },
  47751. head: {
  47752. height: math.unit(2.14, "feet"),
  47753. name: "Head",
  47754. image: {
  47755. source: "./media/characters/kil'aman/head.svg"
  47756. }
  47757. },
  47758. maw: {
  47759. height: math.unit(1.21, "feet"),
  47760. name: "Maw",
  47761. image: {
  47762. source: "./media/characters/kil'aman/maw.svg"
  47763. }
  47764. },
  47765. foot: {
  47766. height: math.unit(1.7, "feet"),
  47767. name: "Foot",
  47768. image: {
  47769. source: "./media/characters/kil'aman/foot.svg"
  47770. }
  47771. },
  47772. dick: {
  47773. height: math.unit(2.1, "feet"),
  47774. name: "Dick",
  47775. image: {
  47776. source: "./media/characters/kil'aman/dick.svg"
  47777. }
  47778. },
  47779. },
  47780. [
  47781. {
  47782. name: "Normal",
  47783. height: math.unit(9, "feet")
  47784. },
  47785. {
  47786. name: "Canon Height",
  47787. height: math.unit(10, "miles"),
  47788. default: true
  47789. },
  47790. {
  47791. name: "Maximum",
  47792. height: math.unit(6e9, "miles")
  47793. },
  47794. ]
  47795. ))
  47796. characterMakers.push(() => makeCharacter(
  47797. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47798. {
  47799. front: {
  47800. height: math.unit(90, "feet"),
  47801. weight: math.unit(675000, "lb"),
  47802. name: "Front",
  47803. image: {
  47804. source: "./media/characters/qadan/front.svg",
  47805. extra: 1012/1004,
  47806. bottom: 78/1090
  47807. }
  47808. },
  47809. back: {
  47810. height: math.unit(90, "feet"),
  47811. weight: math.unit(675000, "lb"),
  47812. name: "Back",
  47813. image: {
  47814. source: "./media/characters/qadan/back.svg",
  47815. extra: 1042/1031,
  47816. bottom: 55/1097
  47817. }
  47818. },
  47819. armored: {
  47820. height: math.unit(90, "feet"),
  47821. weight: math.unit(675000, "lb"),
  47822. name: "Armored",
  47823. image: {
  47824. source: "./media/characters/qadan/armored.svg",
  47825. extra: 1047/1037,
  47826. bottom: 48/1095
  47827. }
  47828. },
  47829. },
  47830. [
  47831. {
  47832. name: "Normal",
  47833. height: math.unit(90, "feet"),
  47834. default: true
  47835. },
  47836. ]
  47837. ))
  47838. characterMakers.push(() => makeCharacter(
  47839. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47840. {
  47841. front: {
  47842. height: math.unit(6, "feet"),
  47843. weight: math.unit(225, "lb"),
  47844. name: "Front",
  47845. image: {
  47846. source: "./media/characters/brooke/front.svg",
  47847. extra: 1050/1010,
  47848. bottom: 66/1116
  47849. }
  47850. },
  47851. back: {
  47852. height: math.unit(6, "feet"),
  47853. weight: math.unit(225, "lb"),
  47854. name: "Back",
  47855. image: {
  47856. source: "./media/characters/brooke/back.svg",
  47857. extra: 1053/1013,
  47858. bottom: 41/1094
  47859. }
  47860. },
  47861. dressed: {
  47862. height: math.unit(6, "feet"),
  47863. weight: math.unit(225, "lb"),
  47864. name: "Dressed",
  47865. image: {
  47866. source: "./media/characters/brooke/dressed.svg",
  47867. extra: 1050/1010,
  47868. bottom: 66/1116
  47869. }
  47870. },
  47871. },
  47872. [
  47873. {
  47874. name: "Canon Height",
  47875. height: math.unit(500, "miles"),
  47876. default: true
  47877. },
  47878. ]
  47879. ))
  47880. characterMakers.push(() => makeCharacter(
  47881. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47882. {
  47883. front: {
  47884. height: math.unit(6 + 2/12, "feet"),
  47885. weight: math.unit(210, "lb"),
  47886. name: "Front",
  47887. image: {
  47888. source: "./media/characters/wubs/front.svg",
  47889. extra: 1345/1325,
  47890. bottom: 70/1415
  47891. }
  47892. },
  47893. back: {
  47894. height: math.unit(6 + 2/12, "feet"),
  47895. weight: math.unit(210, "lb"),
  47896. name: "Back",
  47897. image: {
  47898. source: "./media/characters/wubs/back.svg",
  47899. extra: 1296/1275,
  47900. bottom: 58/1354
  47901. }
  47902. },
  47903. },
  47904. [
  47905. {
  47906. name: "Normal",
  47907. height: math.unit(6 + 2/12, "feet"),
  47908. default: true
  47909. },
  47910. {
  47911. name: "Macro",
  47912. height: math.unit(1000, "feet")
  47913. },
  47914. {
  47915. name: "Megamacro",
  47916. height: math.unit(1, "mile")
  47917. },
  47918. ]
  47919. ))
  47920. characterMakers.push(() => makeCharacter(
  47921. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47922. {
  47923. front: {
  47924. height: math.unit(4, "feet"),
  47925. weight: math.unit(120, "lb"),
  47926. name: "Front",
  47927. image: {
  47928. source: "./media/characters/blue/front.svg",
  47929. extra: 1636/1525,
  47930. bottom: 43/1679
  47931. }
  47932. },
  47933. back: {
  47934. height: math.unit(4, "feet"),
  47935. weight: math.unit(120, "lb"),
  47936. name: "Back",
  47937. image: {
  47938. source: "./media/characters/blue/back.svg",
  47939. extra: 1660/1560,
  47940. bottom: 57/1717
  47941. }
  47942. },
  47943. paws: {
  47944. height: math.unit(0.826, "feet"),
  47945. name: "Paws",
  47946. image: {
  47947. source: "./media/characters/blue/paws.svg"
  47948. }
  47949. },
  47950. },
  47951. [
  47952. {
  47953. name: "Micro",
  47954. height: math.unit(3, "inches")
  47955. },
  47956. {
  47957. name: "Normal",
  47958. height: math.unit(4, "feet"),
  47959. default: true
  47960. },
  47961. {
  47962. name: "Femenine Form",
  47963. height: math.unit(14, "feet")
  47964. },
  47965. {
  47966. name: "Werebat Form",
  47967. height: math.unit(18, "feet")
  47968. },
  47969. ]
  47970. ))
  47971. characterMakers.push(() => makeCharacter(
  47972. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47973. {
  47974. female: {
  47975. height: math.unit(7 + 4/12, "feet"),
  47976. weight: math.unit(243, "lb"),
  47977. name: "Female",
  47978. image: {
  47979. source: "./media/characters/kaya/female.svg",
  47980. extra: 975/898,
  47981. bottom: 34/1009
  47982. }
  47983. },
  47984. herm: {
  47985. height: math.unit(7 + 4/12, "feet"),
  47986. weight: math.unit(243, "lb"),
  47987. name: "Herm",
  47988. image: {
  47989. source: "./media/characters/kaya/herm.svg",
  47990. extra: 975/898,
  47991. bottom: 34/1009
  47992. }
  47993. },
  47994. },
  47995. [
  47996. {
  47997. name: "Normal",
  47998. height: math.unit(7 + 4/12, "feet"),
  47999. default: true
  48000. },
  48001. ]
  48002. ))
  48003. characterMakers.push(() => makeCharacter(
  48004. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48005. {
  48006. female: {
  48007. height: math.unit(9 + 4/12, "feet"),
  48008. weight: math.unit(398, "lb"),
  48009. name: "Female",
  48010. image: {
  48011. source: "./media/characters/kassandra/female.svg",
  48012. extra: 908/839,
  48013. bottom: 61/969
  48014. }
  48015. },
  48016. intersex: {
  48017. height: math.unit(9 + 4/12, "feet"),
  48018. weight: math.unit(398, "lb"),
  48019. name: "Intersex",
  48020. image: {
  48021. source: "./media/characters/kassandra/intersex.svg",
  48022. extra: 908/839,
  48023. bottom: 61/969
  48024. }
  48025. },
  48026. },
  48027. [
  48028. {
  48029. name: "Normal",
  48030. height: math.unit(9 + 4/12, "feet"),
  48031. default: true
  48032. },
  48033. ]
  48034. ))
  48035. characterMakers.push(() => makeCharacter(
  48036. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48037. {
  48038. front: {
  48039. height: math.unit(3, "meters"),
  48040. name: "Front",
  48041. image: {
  48042. source: "./media/characters/amy/front.svg",
  48043. extra: 1380/1343,
  48044. bottom: 70/1450
  48045. }
  48046. },
  48047. back: {
  48048. height: math.unit(3, "meters"),
  48049. name: "Back",
  48050. image: {
  48051. source: "./media/characters/amy/back.svg",
  48052. extra: 1380/1347,
  48053. bottom: 66/1446
  48054. }
  48055. },
  48056. },
  48057. [
  48058. {
  48059. name: "Normal",
  48060. height: math.unit(3, "meters"),
  48061. default: true
  48062. },
  48063. ]
  48064. ))
  48065. characterMakers.push(() => makeCharacter(
  48066. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48067. {
  48068. side: {
  48069. height: math.unit(47, "cm"),
  48070. weight: math.unit(10.8, "kg"),
  48071. name: "Side",
  48072. image: {
  48073. source: "./media/characters/alphaschakal/side.svg",
  48074. extra: 1058/568,
  48075. bottom: 62/1120
  48076. }
  48077. },
  48078. back: {
  48079. height: math.unit(78, "cm"),
  48080. weight: math.unit(10.8, "kg"),
  48081. name: "Back",
  48082. image: {
  48083. source: "./media/characters/alphaschakal/back.svg",
  48084. extra: 1102/942,
  48085. bottom: 185/1287
  48086. }
  48087. },
  48088. head: {
  48089. height: math.unit(28, "cm"),
  48090. name: "Head",
  48091. image: {
  48092. source: "./media/characters/alphaschakal/head.svg",
  48093. extra: 696/508,
  48094. bottom: 0/696
  48095. }
  48096. },
  48097. paw: {
  48098. height: math.unit(16, "cm"),
  48099. name: "Paw",
  48100. image: {
  48101. source: "./media/characters/alphaschakal/paw.svg"
  48102. }
  48103. },
  48104. },
  48105. [
  48106. {
  48107. name: "Normal",
  48108. height: math.unit(47, "cm"),
  48109. default: true
  48110. },
  48111. {
  48112. name: "Macro",
  48113. height: math.unit(340, "cm")
  48114. },
  48115. ]
  48116. ))
  48117. characterMakers.push(() => makeCharacter(
  48118. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48119. {
  48120. front: {
  48121. height: math.unit(36, "earths"),
  48122. name: "Front",
  48123. image: {
  48124. source: "./media/characters/ecobyss/front.svg",
  48125. extra: 1282/1215,
  48126. bottom: 11/1293
  48127. }
  48128. },
  48129. back: {
  48130. height: math.unit(36, "earths"),
  48131. name: "Back",
  48132. image: {
  48133. source: "./media/characters/ecobyss/back.svg",
  48134. extra: 1291/1222,
  48135. bottom: 8/1299
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Normal",
  48142. height: math.unit(36, "earths"),
  48143. default: true
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48149. {
  48150. front: {
  48151. height: math.unit(12, "feet"),
  48152. name: "Front",
  48153. image: {
  48154. source: "./media/characters/vasuk/front.svg",
  48155. extra: 1326/1207,
  48156. bottom: 64/1390
  48157. }
  48158. },
  48159. },
  48160. [
  48161. {
  48162. name: "Normal",
  48163. height: math.unit(12, "feet"),
  48164. default: true
  48165. },
  48166. ]
  48167. ))
  48168. characterMakers.push(() => makeCharacter(
  48169. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48170. {
  48171. side: {
  48172. height: math.unit(100, "feet"),
  48173. name: "Side",
  48174. image: {
  48175. source: "./media/characters/linneaus/side.svg",
  48176. extra: 987/807,
  48177. bottom: 47/1034
  48178. }
  48179. },
  48180. },
  48181. [
  48182. {
  48183. name: "Macro",
  48184. height: math.unit(100, "feet"),
  48185. default: true
  48186. },
  48187. ]
  48188. ))
  48189. characterMakers.push(() => makeCharacter(
  48190. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48191. {
  48192. front: {
  48193. height: math.unit(8, "feet"),
  48194. weight: math.unit(1200, "lb"),
  48195. name: "Front",
  48196. image: {
  48197. source: "./media/characters/nyterious-daligdig/front.svg",
  48198. extra: 1284/1094,
  48199. bottom: 84/1368
  48200. }
  48201. },
  48202. back: {
  48203. height: math.unit(8, "feet"),
  48204. weight: math.unit(1200, "lb"),
  48205. name: "Back",
  48206. image: {
  48207. source: "./media/characters/nyterious-daligdig/back.svg",
  48208. extra: 1301/1121,
  48209. bottom: 129/1430
  48210. }
  48211. },
  48212. mouth: {
  48213. height: math.unit(1.464, "feet"),
  48214. name: "Mouth",
  48215. image: {
  48216. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48217. }
  48218. },
  48219. },
  48220. [
  48221. {
  48222. name: "Small",
  48223. height: math.unit(8, "feet"),
  48224. default: true
  48225. },
  48226. {
  48227. name: "Normal",
  48228. height: math.unit(15, "feet")
  48229. },
  48230. {
  48231. name: "Macro",
  48232. height: math.unit(90, "feet")
  48233. },
  48234. ]
  48235. ))
  48236. characterMakers.push(() => makeCharacter(
  48237. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48238. {
  48239. front: {
  48240. height: math.unit(7 + 4/12, "feet"),
  48241. weight: math.unit(252, "lb"),
  48242. name: "Front",
  48243. image: {
  48244. source: "./media/characters/bandel/front.svg",
  48245. extra: 1946/1775,
  48246. bottom: 26/1972
  48247. }
  48248. },
  48249. back: {
  48250. height: math.unit(7 + 4/12, "feet"),
  48251. weight: math.unit(252, "lb"),
  48252. name: "Back",
  48253. image: {
  48254. source: "./media/characters/bandel/back.svg",
  48255. extra: 1940/1770,
  48256. bottom: 25/1965
  48257. }
  48258. },
  48259. maw: {
  48260. height: math.unit(2.15, "feet"),
  48261. name: "Maw",
  48262. image: {
  48263. source: "./media/characters/bandel/maw.svg"
  48264. }
  48265. },
  48266. stomach: {
  48267. height: math.unit(1.95, "feet"),
  48268. name: "Stomach",
  48269. image: {
  48270. source: "./media/characters/bandel/stomach.svg"
  48271. }
  48272. },
  48273. },
  48274. [
  48275. {
  48276. name: "Normal",
  48277. height: math.unit(7 + 4/12, "feet"),
  48278. default: true
  48279. },
  48280. ]
  48281. ))
  48282. characterMakers.push(() => makeCharacter(
  48283. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48284. {
  48285. front: {
  48286. height: math.unit(10 + 5/12, "feet"),
  48287. weight: math.unit(773.5, "kg"),
  48288. name: "Front",
  48289. image: {
  48290. source: "./media/characters/zed/front.svg",
  48291. extra: 987/941,
  48292. bottom: 52/1039
  48293. }
  48294. },
  48295. },
  48296. [
  48297. {
  48298. name: "Short",
  48299. height: math.unit(5 + 4/12, "feet")
  48300. },
  48301. {
  48302. name: "Average",
  48303. height: math.unit(10 + 5/12, "feet"),
  48304. default: true
  48305. },
  48306. {
  48307. name: "Mini-Macro",
  48308. height: math.unit(24 + 9/12, "feet")
  48309. },
  48310. {
  48311. name: "Macro",
  48312. height: math.unit(249, "feet")
  48313. },
  48314. {
  48315. name: "Mega-Macro",
  48316. height: math.unit(12490, "feet")
  48317. },
  48318. {
  48319. name: "Giga-Macro",
  48320. height: math.unit(24.9, "miles")
  48321. },
  48322. {
  48323. name: "Tera-Macro",
  48324. height: math.unit(24900, "miles")
  48325. },
  48326. {
  48327. name: "Cosmic Scale",
  48328. height: math.unit(38.9, "lightyears")
  48329. },
  48330. {
  48331. name: "Universal Scale",
  48332. height: math.unit(138e12, "lightyears")
  48333. },
  48334. ]
  48335. ))
  48336. characterMakers.push(() => makeCharacter(
  48337. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48338. {
  48339. front: {
  48340. height: math.unit(1561, "inches"),
  48341. name: "Front",
  48342. image: {
  48343. source: "./media/characters/ivan/front.svg",
  48344. extra: 1126/1071,
  48345. bottom: 26/1152
  48346. }
  48347. },
  48348. back: {
  48349. height: math.unit(1561, "inches"),
  48350. name: "Back",
  48351. image: {
  48352. source: "./media/characters/ivan/back.svg",
  48353. extra: 1134/1079,
  48354. bottom: 30/1164
  48355. }
  48356. },
  48357. },
  48358. [
  48359. {
  48360. name: "Normal",
  48361. height: math.unit(1561, "inches"),
  48362. default: true
  48363. },
  48364. ]
  48365. ))
  48366. characterMakers.push(() => makeCharacter(
  48367. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48368. {
  48369. front: {
  48370. height: math.unit(5 + 7/12, "feet"),
  48371. weight: math.unit(150, "lb"),
  48372. name: "Front",
  48373. image: {
  48374. source: "./media/characters/robin-arctic-hare/front.svg",
  48375. extra: 1148/974,
  48376. bottom: 20/1168
  48377. }
  48378. },
  48379. },
  48380. [
  48381. {
  48382. name: "Normal",
  48383. height: math.unit(5 + 7/12, "feet"),
  48384. default: true
  48385. },
  48386. ]
  48387. ))
  48388. characterMakers.push(() => makeCharacter(
  48389. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48390. {
  48391. side: {
  48392. height: math.unit(5, "feet"),
  48393. name: "Side",
  48394. image: {
  48395. source: "./media/characters/birch/side.svg",
  48396. extra: 985/796,
  48397. bottom: 111/1096
  48398. }
  48399. },
  48400. },
  48401. [
  48402. {
  48403. name: "Normal",
  48404. height: math.unit(5, "feet"),
  48405. default: true
  48406. },
  48407. ]
  48408. ))
  48409. characterMakers.push(() => makeCharacter(
  48410. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48411. {
  48412. front: {
  48413. height: math.unit(4, "feet"),
  48414. name: "Front",
  48415. image: {
  48416. source: "./media/characters/rasp/front.svg",
  48417. extra: 561/478,
  48418. bottom: 74/635
  48419. }
  48420. },
  48421. },
  48422. [
  48423. {
  48424. name: "Normal",
  48425. height: math.unit(4, "feet"),
  48426. default: true
  48427. },
  48428. ]
  48429. ))
  48430. characterMakers.push(() => makeCharacter(
  48431. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48432. {
  48433. front: {
  48434. height: math.unit(4 + 6/12, "feet"),
  48435. name: "Front",
  48436. image: {
  48437. source: "./media/characters/agatha/front.svg",
  48438. extra: 947/933,
  48439. bottom: 42/989
  48440. }
  48441. },
  48442. back: {
  48443. height: math.unit(4 + 6/12, "feet"),
  48444. name: "Back",
  48445. image: {
  48446. source: "./media/characters/agatha/back.svg",
  48447. extra: 935/922,
  48448. bottom: 48/983
  48449. }
  48450. },
  48451. },
  48452. [
  48453. {
  48454. name: "Normal",
  48455. height: math.unit(4 + 6 /12, "feet"),
  48456. default: true
  48457. },
  48458. {
  48459. name: "Max Size",
  48460. height: math.unit(500, "feet")
  48461. },
  48462. ]
  48463. ))
  48464. characterMakers.push(() => makeCharacter(
  48465. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48466. {
  48467. side: {
  48468. height: math.unit(30, "feet"),
  48469. name: "Side",
  48470. image: {
  48471. source: "./media/characters/roggy/side.svg",
  48472. extra: 909/643,
  48473. bottom: 63/972
  48474. }
  48475. },
  48476. lounging: {
  48477. height: math.unit(20, "feet"),
  48478. name: "Lounging",
  48479. image: {
  48480. source: "./media/characters/roggy/lounging.svg",
  48481. extra: 643/479,
  48482. bottom: 145/788
  48483. }
  48484. },
  48485. handpaw: {
  48486. height: math.unit(13.1, "feet"),
  48487. name: "Handpaw",
  48488. image: {
  48489. source: "./media/characters/roggy/handpaw.svg"
  48490. }
  48491. },
  48492. footpaw: {
  48493. height: math.unit(15.8, "feet"),
  48494. name: "Footpaw",
  48495. image: {
  48496. source: "./media/characters/roggy/footpaw.svg"
  48497. }
  48498. },
  48499. },
  48500. [
  48501. {
  48502. name: "Menacing",
  48503. height: math.unit(30, "feet"),
  48504. default: true
  48505. },
  48506. ]
  48507. ))
  48508. characterMakers.push(() => makeCharacter(
  48509. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48510. {
  48511. front: {
  48512. height: math.unit(5 + 7/12, "feet"),
  48513. weight: math.unit(135, "lb"),
  48514. name: "Front",
  48515. image: {
  48516. source: "./media/characters/naomi/front.svg",
  48517. extra: 1209/1154,
  48518. bottom: 129/1338
  48519. }
  48520. },
  48521. back: {
  48522. height: math.unit(5 + 7/12, "feet"),
  48523. weight: math.unit(135, "lb"),
  48524. name: "Back",
  48525. image: {
  48526. source: "./media/characters/naomi/back.svg",
  48527. extra: 1252/1190,
  48528. bottom: 23/1275
  48529. }
  48530. },
  48531. },
  48532. [
  48533. {
  48534. name: "Normal",
  48535. height: math.unit(5 + 7 /12, "feet"),
  48536. default: true
  48537. },
  48538. ]
  48539. ))
  48540. characterMakers.push(() => makeCharacter(
  48541. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48542. {
  48543. side: {
  48544. height: math.unit(35, "meters"),
  48545. name: "Side",
  48546. image: {
  48547. source: "./media/characters/kimpi/side.svg",
  48548. extra: 419/382,
  48549. bottom: 63/482
  48550. }
  48551. },
  48552. hand: {
  48553. height: math.unit(8.96, "meters"),
  48554. name: "Hand",
  48555. image: {
  48556. source: "./media/characters/kimpi/hand.svg"
  48557. }
  48558. },
  48559. },
  48560. [
  48561. {
  48562. name: "Normal",
  48563. height: math.unit(35, "meters"),
  48564. default: true
  48565. },
  48566. ]
  48567. ))
  48568. characterMakers.push(() => makeCharacter(
  48569. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48570. {
  48571. front: {
  48572. height: math.unit(4 + 4/12, "feet"),
  48573. name: "Front",
  48574. image: {
  48575. source: "./media/characters/pepper-purrloin/front.svg",
  48576. extra: 1141/1024,
  48577. bottom: 21/1162
  48578. }
  48579. },
  48580. },
  48581. [
  48582. {
  48583. name: "Normal",
  48584. height: math.unit(4 + 4/12, "feet"),
  48585. default: true
  48586. },
  48587. ]
  48588. ))
  48589. characterMakers.push(() => makeCharacter(
  48590. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48591. {
  48592. front: {
  48593. height: math.unit(6 + 2/12, "feet"),
  48594. name: "Front",
  48595. image: {
  48596. source: "./media/characters/raphael/front.svg",
  48597. extra: 1101/962,
  48598. bottom: 59/1160
  48599. }
  48600. },
  48601. },
  48602. [
  48603. {
  48604. name: "Normal",
  48605. height: math.unit(6 + 2/12, "feet"),
  48606. default: true
  48607. },
  48608. ]
  48609. ))
  48610. characterMakers.push(() => makeCharacter(
  48611. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48612. {
  48613. front: {
  48614. height: math.unit(6, "feet"),
  48615. weight: math.unit(150, "lb"),
  48616. name: "Front",
  48617. image: {
  48618. source: "./media/characters/victor-williams/front.svg",
  48619. extra: 1894/1825,
  48620. bottom: 67/1961
  48621. }
  48622. },
  48623. },
  48624. [
  48625. {
  48626. name: "Normal",
  48627. height: math.unit(6, "feet"),
  48628. default: true
  48629. },
  48630. ]
  48631. ))
  48632. characterMakers.push(() => makeCharacter(
  48633. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48634. {
  48635. front: {
  48636. height: math.unit(5 + 8/12, "feet"),
  48637. weight: math.unit(150, "lb"),
  48638. name: "Front",
  48639. image: {
  48640. source: "./media/characters/rachel/front.svg",
  48641. extra: 1902/1787,
  48642. bottom: 46/1948
  48643. }
  48644. },
  48645. },
  48646. [
  48647. {
  48648. name: "Base Height",
  48649. height: math.unit(5 + 8/12, "feet"),
  48650. default: true
  48651. },
  48652. {
  48653. name: "Macro",
  48654. height: math.unit(200, "feet")
  48655. },
  48656. {
  48657. name: "Mega Macro",
  48658. height: math.unit(1, "mile")
  48659. },
  48660. {
  48661. name: "Giga Macro",
  48662. height: math.unit(1500, "miles")
  48663. },
  48664. {
  48665. name: "Tera Macro",
  48666. height: math.unit(8000, "miles")
  48667. },
  48668. {
  48669. name: "Tera Macro+",
  48670. height: math.unit(2e5, "miles")
  48671. },
  48672. ]
  48673. ))
  48674. characterMakers.push(() => makeCharacter(
  48675. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48676. {
  48677. front: {
  48678. height: math.unit(6.5, "feet"),
  48679. name: "Front",
  48680. image: {
  48681. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48682. extra: 860/819,
  48683. bottom: 307/1167
  48684. }
  48685. },
  48686. back: {
  48687. height: math.unit(6.5, "feet"),
  48688. name: "Back",
  48689. image: {
  48690. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48691. extra: 880/837,
  48692. bottom: 395/1275
  48693. }
  48694. },
  48695. sleeping: {
  48696. height: math.unit(2.79, "feet"),
  48697. name: "Sleeping",
  48698. image: {
  48699. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48700. extra: 465/383,
  48701. bottom: 263/728
  48702. }
  48703. },
  48704. maw: {
  48705. height: math.unit(2.52, "feet"),
  48706. name: "Maw",
  48707. image: {
  48708. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48709. }
  48710. },
  48711. },
  48712. [
  48713. {
  48714. name: "Normal",
  48715. height: math.unit(6.5, "feet"),
  48716. default: true
  48717. },
  48718. ]
  48719. ))
  48720. characterMakers.push(() => makeCharacter(
  48721. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48722. {
  48723. front: {
  48724. height: math.unit(5, "feet"),
  48725. name: "Front",
  48726. image: {
  48727. source: "./media/characters/nova-nerium/front.svg",
  48728. extra: 1548/1392,
  48729. bottom: 374/1922
  48730. }
  48731. },
  48732. back: {
  48733. height: math.unit(5, "feet"),
  48734. name: "Back",
  48735. image: {
  48736. source: "./media/characters/nova-nerium/back.svg",
  48737. extra: 1658/1468,
  48738. bottom: 257/1915
  48739. }
  48740. },
  48741. },
  48742. [
  48743. {
  48744. name: "Normal",
  48745. height: math.unit(5, "feet"),
  48746. default: true
  48747. },
  48748. ]
  48749. ))
  48750. characterMakers.push(() => makeCharacter(
  48751. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48752. {
  48753. front: {
  48754. height: math.unit(5 + 4/12, "feet"),
  48755. name: "Front",
  48756. image: {
  48757. source: "./media/characters/ashe-pyriph/front.svg",
  48758. extra: 1935/1747,
  48759. bottom: 60/1995
  48760. }
  48761. },
  48762. },
  48763. [
  48764. {
  48765. name: "Normal",
  48766. height: math.unit(5 + 4/12, "feet"),
  48767. default: true
  48768. },
  48769. ]
  48770. ))
  48771. characterMakers.push(() => makeCharacter(
  48772. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48773. {
  48774. front: {
  48775. height: math.unit(8.7, "feet"),
  48776. name: "Front",
  48777. image: {
  48778. source: "./media/characters/flicker-wisp/front.svg",
  48779. extra: 1835/1613,
  48780. bottom: 449/2284
  48781. }
  48782. },
  48783. side: {
  48784. height: math.unit(8.7, "feet"),
  48785. name: "Side",
  48786. image: {
  48787. source: "./media/characters/flicker-wisp/side.svg",
  48788. extra: 1841/1642,
  48789. bottom: 336/2177
  48790. },
  48791. default: true
  48792. },
  48793. maw: {
  48794. height: math.unit(3.35, "feet"),
  48795. name: "Maw",
  48796. image: {
  48797. source: "./media/characters/flicker-wisp/maw.svg",
  48798. extra: 2338/1506,
  48799. bottom: 0/2338
  48800. }
  48801. },
  48802. ovipositor: {
  48803. height: math.unit(4.95, "feet"),
  48804. name: "Ovipositor",
  48805. image: {
  48806. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48807. }
  48808. },
  48809. egg: {
  48810. height: math.unit(0.385, "feet"),
  48811. weight: math.unit(2, "lb"),
  48812. name: "Egg",
  48813. image: {
  48814. source: "./media/characters/flicker-wisp/egg.svg"
  48815. }
  48816. },
  48817. },
  48818. [
  48819. {
  48820. name: "Normal",
  48821. height: math.unit(8.7, "feet"),
  48822. default: true
  48823. },
  48824. ]
  48825. ))
  48826. characterMakers.push(() => makeCharacter(
  48827. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48828. {
  48829. side: {
  48830. height: math.unit(11, "feet"),
  48831. name: "Side",
  48832. image: {
  48833. source: "./media/characters/faefnul/side.svg",
  48834. extra: 1100/1007,
  48835. bottom: 0/1100
  48836. }
  48837. },
  48838. },
  48839. [
  48840. {
  48841. name: "Normal",
  48842. height: math.unit(11, "feet"),
  48843. default: true
  48844. },
  48845. ]
  48846. ))
  48847. characterMakers.push(() => makeCharacter(
  48848. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48849. {
  48850. front: {
  48851. height: math.unit(6 + 2/12, "feet"),
  48852. name: "Front",
  48853. image: {
  48854. source: "./media/characters/shady/front.svg",
  48855. extra: 502/461,
  48856. bottom: 9/511
  48857. }
  48858. },
  48859. kneeling: {
  48860. height: math.unit(4.6, "feet"),
  48861. name: "Kneeling",
  48862. image: {
  48863. source: "./media/characters/shady/kneeling.svg",
  48864. extra: 1328/1219,
  48865. bottom: 117/1445
  48866. }
  48867. },
  48868. maw: {
  48869. height: math.unit(2, "feet"),
  48870. name: "Maw",
  48871. image: {
  48872. source: "./media/characters/shady/maw.svg"
  48873. }
  48874. },
  48875. },
  48876. [
  48877. {
  48878. name: "Nano",
  48879. height: math.unit(1, "mm")
  48880. },
  48881. {
  48882. name: "Micro",
  48883. height: math.unit(12, "mm")
  48884. },
  48885. {
  48886. name: "Tiny",
  48887. height: math.unit(3, "inches")
  48888. },
  48889. {
  48890. name: "Normal",
  48891. height: math.unit(6 + 2/12, "feet"),
  48892. default: true
  48893. },
  48894. {
  48895. name: "Big",
  48896. height: math.unit(15, "feet")
  48897. },
  48898. {
  48899. name: "Macro",
  48900. height: math.unit(150, "feet")
  48901. },
  48902. {
  48903. name: "Titanic",
  48904. height: math.unit(500, "feet")
  48905. },
  48906. ]
  48907. ))
  48908. characterMakers.push(() => makeCharacter(
  48909. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48910. {
  48911. front: {
  48912. height: math.unit(12, "feet"),
  48913. name: "Front",
  48914. image: {
  48915. source: "./media/characters/fenrir/front.svg",
  48916. extra: 968/875,
  48917. bottom: 22/990
  48918. }
  48919. },
  48920. },
  48921. [
  48922. {
  48923. name: "Big",
  48924. height: math.unit(12, "feet"),
  48925. default: true
  48926. },
  48927. ]
  48928. ))
  48929. characterMakers.push(() => makeCharacter(
  48930. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48931. {
  48932. front: {
  48933. height: math.unit(5 + 4/12, "feet"),
  48934. name: "Front",
  48935. image: {
  48936. source: "./media/characters/makar/front.svg",
  48937. extra: 1181/1112,
  48938. bottom: 78/1259
  48939. }
  48940. },
  48941. },
  48942. [
  48943. {
  48944. name: "Normal",
  48945. height: math.unit(5 + 4/12, "feet"),
  48946. default: true
  48947. },
  48948. ]
  48949. ))
  48950. characterMakers.push(() => makeCharacter(
  48951. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48952. {
  48953. front: {
  48954. height: math.unit(5 + 7/12, "feet"),
  48955. name: "Front",
  48956. image: {
  48957. source: "./media/characters/callow/front.svg",
  48958. extra: 1482/1304,
  48959. bottom: 23/1505
  48960. }
  48961. },
  48962. back: {
  48963. height: math.unit(5 + 7/12, "feet"),
  48964. name: "Back",
  48965. image: {
  48966. source: "./media/characters/callow/back.svg",
  48967. extra: 1484/1296,
  48968. bottom: 25/1509
  48969. }
  48970. },
  48971. },
  48972. [
  48973. {
  48974. name: "Micro",
  48975. height: math.unit(3, "inches"),
  48976. default: true
  48977. },
  48978. {
  48979. name: "Normal",
  48980. height: math.unit(5 + 7/12, "feet")
  48981. },
  48982. ]
  48983. ))
  48984. characterMakers.push(() => makeCharacter(
  48985. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48986. {
  48987. front: {
  48988. height: math.unit(6 + 2/12, "feet"),
  48989. name: "Front",
  48990. image: {
  48991. source: "./media/characters/natel/front.svg",
  48992. extra: 1833/1692,
  48993. bottom: 166/1999
  48994. }
  48995. },
  48996. },
  48997. [
  48998. {
  48999. name: "Normal",
  49000. height: math.unit(6 + 2/12, "feet"),
  49001. default: true
  49002. },
  49003. ]
  49004. ))
  49005. characterMakers.push(() => makeCharacter(
  49006. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49007. {
  49008. front: {
  49009. height: math.unit(1.75, "meters"),
  49010. name: "Front",
  49011. image: {
  49012. source: "./media/characters/misu/front.svg",
  49013. extra: 1690/1558,
  49014. bottom: 234/1924
  49015. }
  49016. },
  49017. back: {
  49018. height: math.unit(1.75, "meters"),
  49019. name: "Back",
  49020. image: {
  49021. source: "./media/characters/misu/back.svg",
  49022. extra: 1762/1618,
  49023. bottom: 146/1908
  49024. }
  49025. },
  49026. frontNude: {
  49027. height: math.unit(1.75, "meters"),
  49028. name: "Front (Nude)",
  49029. image: {
  49030. source: "./media/characters/misu/front-nude.svg",
  49031. extra: 1690/1558,
  49032. bottom: 234/1924
  49033. }
  49034. },
  49035. backNude: {
  49036. height: math.unit(1.75, "meters"),
  49037. name: "Back (Nude)",
  49038. image: {
  49039. source: "./media/characters/misu/back-nude.svg",
  49040. extra: 1762/1618,
  49041. bottom: 146/1908
  49042. }
  49043. },
  49044. frontErect: {
  49045. height: math.unit(1.75, "meters"),
  49046. name: "Front (Erect)",
  49047. image: {
  49048. source: "./media/characters/misu/front-erect.svg",
  49049. extra: 1690/1558,
  49050. bottom: 234/1924
  49051. }
  49052. },
  49053. maw: {
  49054. height: math.unit(0.47, "meters"),
  49055. name: "Maw",
  49056. image: {
  49057. source: "./media/characters/misu/maw.svg"
  49058. }
  49059. },
  49060. head: {
  49061. height: math.unit(0.35, "meters"),
  49062. name: "Head",
  49063. image: {
  49064. source: "./media/characters/misu/head.svg"
  49065. }
  49066. },
  49067. rear: {
  49068. height: math.unit(0.47, "meters"),
  49069. name: "Rear",
  49070. image: {
  49071. source: "./media/characters/misu/rear.svg"
  49072. }
  49073. },
  49074. },
  49075. [
  49076. {
  49077. name: "Normal",
  49078. height: math.unit(1.75, "meters")
  49079. },
  49080. {
  49081. name: "Not good for the people",
  49082. height: math.unit(42, "meters")
  49083. },
  49084. {
  49085. name: "Not good for the neighborhood",
  49086. height: math.unit(135, "meters")
  49087. },
  49088. {
  49089. name: "Bit bigger problem",
  49090. height: math.unit(380, "meters"),
  49091. default: true
  49092. },
  49093. {
  49094. name: "Not good for the city",
  49095. height: math.unit(1.5, "km")
  49096. },
  49097. {
  49098. name: "Not good for the county",
  49099. height: math.unit(5.5, "km")
  49100. },
  49101. {
  49102. name: "Not good for the state",
  49103. height: math.unit(25, "km")
  49104. },
  49105. {
  49106. name: "Not good for the country",
  49107. height: math.unit(125, "km")
  49108. },
  49109. {
  49110. name: "Not good for the continent",
  49111. height: math.unit(2100, "km")
  49112. },
  49113. {
  49114. name: "Not good for the planet",
  49115. height: math.unit(35000, "km")
  49116. },
  49117. {
  49118. name: "Just no",
  49119. height: math.unit(8.5e18, "km")
  49120. },
  49121. ]
  49122. ))
  49123. characterMakers.push(() => makeCharacter(
  49124. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49125. {
  49126. front: {
  49127. height: math.unit(6.5, "feet"),
  49128. name: "Front",
  49129. image: {
  49130. source: "./media/characters/poppy/front.svg",
  49131. extra: 1878/1812,
  49132. bottom: 43/1921
  49133. }
  49134. },
  49135. feet: {
  49136. height: math.unit(1.06, "feet"),
  49137. name: "Feet",
  49138. image: {
  49139. source: "./media/characters/poppy/feet.svg",
  49140. extra: 1083/1083,
  49141. bottom: 87/1170
  49142. }
  49143. },
  49144. },
  49145. [
  49146. {
  49147. name: "Human",
  49148. height: math.unit(6.5, "feet")
  49149. },
  49150. {
  49151. name: "Default",
  49152. height: math.unit(300, "feet"),
  49153. default: true
  49154. },
  49155. {
  49156. name: "Huge",
  49157. height: math.unit(850, "feet")
  49158. },
  49159. {
  49160. name: "Mega",
  49161. height: math.unit(8000, "feet")
  49162. },
  49163. {
  49164. name: "Giga",
  49165. height: math.unit(300, "miles")
  49166. },
  49167. ]
  49168. ))
  49169. characterMakers.push(() => makeCharacter(
  49170. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49171. {
  49172. bipedal: {
  49173. height: math.unit(7, "feet"),
  49174. name: "Bipedal",
  49175. image: {
  49176. source: "./media/characters/zener/bipedal.svg",
  49177. extra: 874/805,
  49178. bottom: 109/983
  49179. }
  49180. },
  49181. quadrupedal: {
  49182. height: math.unit(4.64, "feet"),
  49183. name: "Quadrupedal",
  49184. image: {
  49185. source: "./media/characters/zener/quadrupedal.svg",
  49186. extra: 638/507,
  49187. bottom: 190/828
  49188. }
  49189. },
  49190. cock: {
  49191. height: math.unit(18, "inches"),
  49192. name: "Cock",
  49193. image: {
  49194. source: "./media/characters/zener/cock.svg"
  49195. }
  49196. },
  49197. },
  49198. [
  49199. {
  49200. name: "Normal",
  49201. height: math.unit(7, "feet"),
  49202. default: true
  49203. },
  49204. ]
  49205. ))
  49206. characterMakers.push(() => makeCharacter(
  49207. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49208. {
  49209. nude: {
  49210. height: math.unit(5 + 6/12, "feet"),
  49211. name: "Nude",
  49212. image: {
  49213. source: "./media/characters/charlie-dog/nude.svg",
  49214. extra: 768/734,
  49215. bottom: 26/794
  49216. }
  49217. },
  49218. dressed: {
  49219. height: math.unit(5 + 6/12, "feet"),
  49220. name: "Dressed",
  49221. image: {
  49222. source: "./media/characters/charlie-dog/dressed.svg",
  49223. extra: 768/734,
  49224. bottom: 26/794
  49225. }
  49226. },
  49227. },
  49228. [
  49229. {
  49230. name: "Normal",
  49231. height: math.unit(5 + 6/12, "feet"),
  49232. default: true
  49233. },
  49234. ]
  49235. ))
  49236. characterMakers.push(() => makeCharacter(
  49237. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49238. {
  49239. front: {
  49240. height: math.unit(6 + 4/12, "feet"),
  49241. name: "Front",
  49242. image: {
  49243. source: "./media/characters/ir'istrasz/front.svg",
  49244. extra: 1014/977,
  49245. bottom: 65/1079
  49246. }
  49247. },
  49248. back: {
  49249. height: math.unit(6 + 4/12, "feet"),
  49250. name: "Back",
  49251. image: {
  49252. source: "./media/characters/ir'istrasz/back.svg",
  49253. extra: 1024/992,
  49254. bottom: 34/1058
  49255. }
  49256. },
  49257. },
  49258. [
  49259. {
  49260. name: "Normal",
  49261. height: math.unit(6 + 4/12, "feet"),
  49262. default: true
  49263. },
  49264. ]
  49265. ))
  49266. characterMakers.push(() => makeCharacter(
  49267. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49268. {
  49269. front: {
  49270. height: math.unit(5 + 8/12, "feet"),
  49271. name: "Front",
  49272. image: {
  49273. source: "./media/characters/dee-ditto/front.svg",
  49274. extra: 1874/1785,
  49275. bottom: 68/1942
  49276. }
  49277. },
  49278. back: {
  49279. height: math.unit(5 + 8/12, "feet"),
  49280. name: "Back",
  49281. image: {
  49282. source: "./media/characters/dee-ditto/back.svg",
  49283. extra: 1870/1783,
  49284. bottom: 77/1947
  49285. }
  49286. },
  49287. },
  49288. [
  49289. {
  49290. name: "Normal",
  49291. height: math.unit(5 + 8/12, "feet"),
  49292. default: true
  49293. },
  49294. ]
  49295. ))
  49296. characterMakers.push(() => makeCharacter(
  49297. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49298. {
  49299. front: {
  49300. height: math.unit(7 + 6/12, "feet"),
  49301. name: "Front",
  49302. image: {
  49303. source: "./media/characters/fey/front.svg",
  49304. extra: 995/979,
  49305. bottom: 30/1025
  49306. }
  49307. },
  49308. back: {
  49309. height: math.unit(7 + 6/12, "feet"),
  49310. name: "Back",
  49311. image: {
  49312. source: "./media/characters/fey/back.svg",
  49313. extra: 1079/1008,
  49314. bottom: 5/1084
  49315. }
  49316. },
  49317. dressed: {
  49318. height: math.unit(7 + 6/12, "feet"),
  49319. name: "Dressed",
  49320. image: {
  49321. source: "./media/characters/fey/dressed.svg",
  49322. extra: 995/979,
  49323. bottom: 30/1025
  49324. }
  49325. },
  49326. },
  49327. [
  49328. {
  49329. name: "Normal",
  49330. height: math.unit(7 + 6/12, "feet"),
  49331. default: true
  49332. },
  49333. ]
  49334. ))
  49335. characterMakers.push(() => makeCharacter(
  49336. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49337. {
  49338. standing: {
  49339. height: math.unit(17, "feet"),
  49340. name: "Standing",
  49341. image: {
  49342. source: "./media/characters/aster/standing.svg",
  49343. extra: 1798/1598,
  49344. bottom: 117/1915
  49345. }
  49346. },
  49347. },
  49348. [
  49349. {
  49350. name: "Normal",
  49351. height: math.unit(17, "feet"),
  49352. default: true
  49353. },
  49354. {
  49355. name: "Homewrecker",
  49356. height: math.unit(95, "feet")
  49357. },
  49358. {
  49359. name: "Planet Devourer",
  49360. height: math.unit(1008000, "miles")
  49361. },
  49362. ]
  49363. ))
  49364. characterMakers.push(() => makeCharacter(
  49365. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49366. {
  49367. front: {
  49368. height: math.unit(6 + 5/12, "feet"),
  49369. weight: math.unit(265, "lb"),
  49370. name: "Front",
  49371. image: {
  49372. source: "./media/characters/devon-childs/front.svg",
  49373. extra: 1795/1721,
  49374. bottom: 41/1836
  49375. }
  49376. },
  49377. side: {
  49378. height: math.unit(6 + 5/12, "feet"),
  49379. weight: math.unit(265, "lb"),
  49380. name: "Side",
  49381. image: {
  49382. source: "./media/characters/devon-childs/side.svg",
  49383. extra: 1812/1738,
  49384. bottom: 30/1842
  49385. }
  49386. },
  49387. back: {
  49388. height: math.unit(6 + 5/12, "feet"),
  49389. weight: math.unit(265, "lb"),
  49390. name: "Back",
  49391. image: {
  49392. source: "./media/characters/devon-childs/back.svg",
  49393. extra: 1808/1735,
  49394. bottom: 23/1831
  49395. }
  49396. },
  49397. hand: {
  49398. height: math.unit(1.464, "feet"),
  49399. name: "Hand",
  49400. image: {
  49401. source: "./media/characters/devon-childs/hand.svg"
  49402. }
  49403. },
  49404. foot: {
  49405. height: math.unit(1.6, "feet"),
  49406. name: "Foot",
  49407. image: {
  49408. source: "./media/characters/devon-childs/foot.svg"
  49409. }
  49410. },
  49411. },
  49412. [
  49413. {
  49414. name: "Micro",
  49415. height: math.unit(7, "cm")
  49416. },
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(6 + 5/12, "feet"),
  49420. default: true
  49421. },
  49422. {
  49423. name: "Macro",
  49424. height: math.unit(154, "feet")
  49425. },
  49426. ]
  49427. ))
  49428. characterMakers.push(() => makeCharacter(
  49429. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49430. {
  49431. front: {
  49432. height: math.unit(6, "feet"),
  49433. weight: math.unit(180, "lb"),
  49434. name: "Front",
  49435. image: {
  49436. source: "./media/characters/lydemox-vir/front.svg",
  49437. extra: 1632/1435,
  49438. bottom: 58/1690
  49439. }
  49440. },
  49441. frontSFW: {
  49442. height: math.unit(6, "feet"),
  49443. weight: math.unit(180, "lb"),
  49444. name: "Front (SFW)",
  49445. image: {
  49446. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49447. extra: 1632/1435,
  49448. bottom: 58/1690
  49449. }
  49450. },
  49451. back: {
  49452. height: math.unit(6, "feet"),
  49453. weight: math.unit(180, "lb"),
  49454. name: "Back",
  49455. image: {
  49456. source: "./media/characters/lydemox-vir/back.svg",
  49457. extra: 1593/1408,
  49458. bottom: 31/1624
  49459. }
  49460. },
  49461. paw: {
  49462. height: math.unit(1.85, "feet"),
  49463. name: "Paw",
  49464. image: {
  49465. source: "./media/characters/lydemox-vir/paw.svg"
  49466. }
  49467. },
  49468. dick: {
  49469. height: math.unit(1.8, "feet"),
  49470. name: "Dick",
  49471. image: {
  49472. source: "./media/characters/lydemox-vir/dick.svg"
  49473. }
  49474. },
  49475. },
  49476. [
  49477. {
  49478. name: "Macro",
  49479. height: math.unit(100, "feet"),
  49480. default: true
  49481. },
  49482. {
  49483. name: "Teramacro",
  49484. height: math.unit(1, "earth")
  49485. },
  49486. {
  49487. name: "Planetary",
  49488. height: math.unit(20, "earths")
  49489. },
  49490. ]
  49491. ))
  49492. characterMakers.push(() => makeCharacter(
  49493. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49494. {
  49495. front: {
  49496. height: math.unit(15 + 8/12, "feet"),
  49497. weight: math.unit(1237, "kg"),
  49498. name: "Front",
  49499. image: {
  49500. source: "./media/characters/mia/front.svg",
  49501. extra: 1573/1446,
  49502. bottom: 58/1631
  49503. }
  49504. },
  49505. },
  49506. [
  49507. {
  49508. name: "Small",
  49509. height: math.unit(9 + 5/12, "feet")
  49510. },
  49511. {
  49512. name: "Normal",
  49513. height: math.unit(15 + 8/12, "feet"),
  49514. default: true
  49515. },
  49516. ]
  49517. ))
  49518. characterMakers.push(() => makeCharacter(
  49519. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49520. {
  49521. front: {
  49522. height: math.unit(10 + 6/12, "feet"),
  49523. weight: math.unit(1.3, "tons"),
  49524. name: "Front",
  49525. image: {
  49526. source: "./media/characters/mr-graves/front.svg",
  49527. extra: 1779/1695,
  49528. bottom: 198/1977
  49529. }
  49530. },
  49531. },
  49532. [
  49533. {
  49534. name: "Normal",
  49535. height: math.unit(10 + 6 /12, "feet"),
  49536. default: true
  49537. },
  49538. ]
  49539. ))
  49540. characterMakers.push(() => makeCharacter(
  49541. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49542. {
  49543. dressedFront: {
  49544. height: math.unit(5 + 8/12, "feet"),
  49545. weight: math.unit(125, "lb"),
  49546. name: "Dressed (Front)",
  49547. image: {
  49548. source: "./media/characters/jess/dressed-front.svg",
  49549. extra: 1176/1152,
  49550. bottom: 42/1218
  49551. }
  49552. },
  49553. dressedSide: {
  49554. height: math.unit(5 + 8/12, "feet"),
  49555. weight: math.unit(125, "lb"),
  49556. name: "Dressed (Side)",
  49557. image: {
  49558. source: "./media/characters/jess/dressed-side.svg",
  49559. extra: 1204/1190,
  49560. bottom: 6/1210
  49561. }
  49562. },
  49563. nudeFront: {
  49564. height: math.unit(5 + 8/12, "feet"),
  49565. weight: math.unit(125, "lb"),
  49566. name: "Nude (Front)",
  49567. image: {
  49568. source: "./media/characters/jess/nude-front.svg",
  49569. extra: 1176/1152,
  49570. bottom: 42/1218
  49571. }
  49572. },
  49573. nudeSide: {
  49574. height: math.unit(5 + 8/12, "feet"),
  49575. weight: math.unit(125, "lb"),
  49576. name: "Nude (Side)",
  49577. image: {
  49578. source: "./media/characters/jess/nude-side.svg",
  49579. extra: 1204/1190,
  49580. bottom: 6/1210
  49581. }
  49582. },
  49583. organsFront: {
  49584. height: math.unit(2.83799342105, "feet"),
  49585. name: "Organs (Front)",
  49586. image: {
  49587. source: "./media/characters/jess/organs-front.svg"
  49588. }
  49589. },
  49590. organsSide: {
  49591. height: math.unit(2.64225290474, "feet"),
  49592. name: "Organs (Side)",
  49593. image: {
  49594. source: "./media/characters/jess/organs-side.svg"
  49595. }
  49596. },
  49597. digestiveTractFront: {
  49598. height: math.unit(2.8106580871, "feet"),
  49599. name: "Digestive Tract (Front)",
  49600. image: {
  49601. source: "./media/characters/jess/digestive-tract-front.svg"
  49602. }
  49603. },
  49604. digestiveTractSide: {
  49605. height: math.unit(2.54365045014, "feet"),
  49606. name: "Digestive Tract (Side)",
  49607. image: {
  49608. source: "./media/characters/jess/digestive-tract-side.svg"
  49609. }
  49610. },
  49611. respiratorySystemFront: {
  49612. height: math.unit(1.11196233456, "feet"),
  49613. name: "Respiratory System (Front)",
  49614. image: {
  49615. source: "./media/characters/jess/respiratory-system-front.svg"
  49616. }
  49617. },
  49618. respiratorySystemSide: {
  49619. height: math.unit(0.89327966297, "feet"),
  49620. name: "Respiratory System (Side)",
  49621. image: {
  49622. source: "./media/characters/jess/respiratory-system-side.svg"
  49623. }
  49624. },
  49625. urinaryTractFront: {
  49626. height: math.unit(1.16126356186, "feet"),
  49627. name: "Urinary Tract (Front)",
  49628. image: {
  49629. source: "./media/characters/jess/urinary-tract-front.svg"
  49630. }
  49631. },
  49632. urinaryTractSide: {
  49633. height: math.unit(1.20910039627, "feet"),
  49634. name: "Urinary Tract (Side)",
  49635. image: {
  49636. source: "./media/characters/jess/urinary-tract-side.svg"
  49637. }
  49638. },
  49639. reproductiveOrgansFront: {
  49640. height: math.unit(0.48422591566, "feet"),
  49641. name: "Reproductive Organs (Front)",
  49642. image: {
  49643. source: "./media/characters/jess/reproductive-organs-front.svg"
  49644. }
  49645. },
  49646. reproductiveOrgansSide: {
  49647. height: math.unit(0.61553314481, "feet"),
  49648. name: "Reproductive Organs (Side)",
  49649. image: {
  49650. source: "./media/characters/jess/reproductive-organs-side.svg"
  49651. }
  49652. },
  49653. breastsFront: {
  49654. height: math.unit(0.47690395121, "feet"),
  49655. name: "Breasts (Front)",
  49656. image: {
  49657. source: "./media/characters/jess/breasts-front.svg"
  49658. }
  49659. },
  49660. breastsSide: {
  49661. height: math.unit(0.30556998307, "feet"),
  49662. name: "Breasts (Side)",
  49663. image: {
  49664. source: "./media/characters/jess/breasts-side.svg"
  49665. }
  49666. },
  49667. heartFront: {
  49668. height: math.unit(0.53011022622, "feet"),
  49669. name: "Heart (Front)",
  49670. image: {
  49671. source: "./media/characters/jess/heart-front.svg"
  49672. }
  49673. },
  49674. heartSide: {
  49675. height: math.unit(0.51790695213, "feet"),
  49676. name: "Heart (Side)",
  49677. image: {
  49678. source: "./media/characters/jess/heart-side.svg"
  49679. }
  49680. },
  49681. earsAndNoseFront: {
  49682. height: math.unit(0.29385483995, "feet"),
  49683. name: "Ears and Nose (Front)",
  49684. image: {
  49685. source: "./media/characters/jess/ears-and-nose-front.svg"
  49686. }
  49687. },
  49688. earsAndNoseSide: {
  49689. height: math.unit(0.18109658741, "feet"),
  49690. name: "Ears and Nose (Side)",
  49691. image: {
  49692. source: "./media/characters/jess/ears-and-nose-side.svg"
  49693. }
  49694. },
  49695. },
  49696. [
  49697. {
  49698. name: "Normal",
  49699. height: math.unit(5 + 8/12, "feet"),
  49700. default: true
  49701. },
  49702. ]
  49703. ))
  49704. characterMakers.push(() => makeCharacter(
  49705. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49706. {
  49707. front: {
  49708. height: math.unit(6, "feet"),
  49709. weight: math.unit(6.64467e-7, "grams"),
  49710. name: "Front",
  49711. image: {
  49712. source: "./media/characters/wimpering/front.svg",
  49713. extra: 597/587,
  49714. bottom: 34/631
  49715. }
  49716. },
  49717. },
  49718. [
  49719. {
  49720. name: "Micro",
  49721. height: math.unit(0.4, "mm"),
  49722. default: true
  49723. },
  49724. ]
  49725. ))
  49726. characterMakers.push(() => makeCharacter(
  49727. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49728. {
  49729. front: {
  49730. height: math.unit(5 + 2/12, "feet"),
  49731. weight: math.unit(110, "lb"),
  49732. name: "Front",
  49733. image: {
  49734. source: "./media/characters/keltre/front.svg",
  49735. extra: 1099/1057,
  49736. bottom: 22/1121
  49737. }
  49738. },
  49739. back: {
  49740. height: math.unit(5 + 2/12, "feet"),
  49741. weight: math.unit(110, "lb"),
  49742. name: "Back",
  49743. image: {
  49744. source: "./media/characters/keltre/back.svg",
  49745. extra: 1095/1053,
  49746. bottom: 17/1112
  49747. }
  49748. },
  49749. dressed: {
  49750. height: math.unit(5 + 2/12, "feet"),
  49751. weight: math.unit(110, "lb"),
  49752. name: "Dressed",
  49753. image: {
  49754. source: "./media/characters/keltre/dressed.svg",
  49755. extra: 1099/1057,
  49756. bottom: 22/1121
  49757. }
  49758. },
  49759. winter: {
  49760. height: math.unit(5 + 2/12, "feet"),
  49761. weight: math.unit(110, "lb"),
  49762. name: "Winter",
  49763. image: {
  49764. source: "./media/characters/keltre/winter.svg",
  49765. extra: 1099/1057,
  49766. bottom: 22/1121
  49767. }
  49768. },
  49769. head: {
  49770. height: math.unit(1.61 * 0.86, "feet"),
  49771. name: "Head",
  49772. image: {
  49773. source: "./media/characters/keltre/head.svg",
  49774. extra: 534/421,
  49775. bottom: 0/534
  49776. }
  49777. },
  49778. hand: {
  49779. height: math.unit(1.3 * 0.86, "feet"),
  49780. name: "Hand",
  49781. image: {
  49782. source: "./media/characters/keltre/hand.svg"
  49783. }
  49784. },
  49785. foot: {
  49786. height: math.unit(1.8 * 0.86, "feet"),
  49787. name: "Foot",
  49788. image: {
  49789. source: "./media/characters/keltre/foot.svg"
  49790. }
  49791. },
  49792. },
  49793. [
  49794. {
  49795. name: "Fine",
  49796. height: math.unit(1, "inch")
  49797. },
  49798. {
  49799. name: "Dimnutive",
  49800. height: math.unit(4, "inches")
  49801. },
  49802. {
  49803. name: "Tiny",
  49804. height: math.unit(1, "foot")
  49805. },
  49806. {
  49807. name: "Small",
  49808. height: math.unit(3, "feet")
  49809. },
  49810. {
  49811. name: "Normal",
  49812. height: math.unit(5 + 2/12, "feet"),
  49813. default: true
  49814. },
  49815. ]
  49816. ))
  49817. characterMakers.push(() => makeCharacter(
  49818. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49819. {
  49820. front: {
  49821. height: math.unit(6 + 2/12, "feet"),
  49822. name: "Front",
  49823. image: {
  49824. source: "./media/characters/nox/front.svg",
  49825. extra: 1917/1830,
  49826. bottom: 74/1991
  49827. }
  49828. },
  49829. back: {
  49830. height: math.unit(6 + 2/12, "feet"),
  49831. name: "Back",
  49832. image: {
  49833. source: "./media/characters/nox/back.svg",
  49834. extra: 1896/1815,
  49835. bottom: 21/1917
  49836. }
  49837. },
  49838. head: {
  49839. height: math.unit(1.1, "feet"),
  49840. name: "Head",
  49841. image: {
  49842. source: "./media/characters/nox/head.svg",
  49843. extra: 874/704,
  49844. bottom: 0/874
  49845. }
  49846. },
  49847. tattoo: {
  49848. height: math.unit(0.729, "feet"),
  49849. name: "Tattoo",
  49850. image: {
  49851. source: "./media/characters/nox/tattoo.svg"
  49852. }
  49853. },
  49854. },
  49855. [
  49856. {
  49857. name: "Normal",
  49858. height: math.unit(6 + 2/12, "feet")
  49859. },
  49860. {
  49861. name: "Gigamacro",
  49862. height: math.unit(2, "earths"),
  49863. default: true
  49864. },
  49865. {
  49866. name: "Cosmic",
  49867. height: math.unit(867, "yottameters")
  49868. },
  49869. ]
  49870. ))
  49871. characterMakers.push(() => makeCharacter(
  49872. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49873. {
  49874. front: {
  49875. height: math.unit(6, "feet"),
  49876. weight: math.unit(150, "lb"),
  49877. name: "Front",
  49878. image: {
  49879. source: "./media/characters/caspian/front.svg",
  49880. extra: 1443/1359,
  49881. bottom: 0/1443
  49882. }
  49883. },
  49884. back: {
  49885. height: math.unit(6, "feet"),
  49886. weight: math.unit(150, "lb"),
  49887. name: "Back",
  49888. image: {
  49889. source: "./media/characters/caspian/back.svg",
  49890. extra: 1379/1309,
  49891. bottom: 0/1379
  49892. }
  49893. },
  49894. head: {
  49895. height: math.unit(0.9, "feet"),
  49896. name: "Head",
  49897. image: {
  49898. source: "./media/characters/caspian/head.svg",
  49899. extra: 692/492,
  49900. bottom: 0/692
  49901. }
  49902. },
  49903. headAlt: {
  49904. height: math.unit(0.95, "feet"),
  49905. name: "Head (Alt)",
  49906. image: {
  49907. source: "./media/characters/caspian/head-alt.svg",
  49908. extra: 668/508,
  49909. bottom: 0/668
  49910. }
  49911. },
  49912. hand: {
  49913. height: math.unit(0.8, "feet"),
  49914. name: "Hand",
  49915. image: {
  49916. source: "./media/characters/caspian/hand.svg"
  49917. }
  49918. },
  49919. paw: {
  49920. height: math.unit(0.95, "feet"),
  49921. name: "Paw",
  49922. image: {
  49923. source: "./media/characters/caspian/paw.svg"
  49924. }
  49925. },
  49926. },
  49927. [
  49928. {
  49929. name: "Normal",
  49930. height: math.unit(162, "feet"),
  49931. default: true
  49932. },
  49933. ]
  49934. ))
  49935. characterMakers.push(() => makeCharacter(
  49936. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49937. {
  49938. front: {
  49939. height: math.unit(6, "feet"),
  49940. name: "Front",
  49941. image: {
  49942. source: "./media/characters/myra-aisling/front.svg",
  49943. extra: 1268/1166,
  49944. bottom: 73/1341
  49945. }
  49946. },
  49947. back: {
  49948. height: math.unit(6, "feet"),
  49949. name: "Back",
  49950. image: {
  49951. source: "./media/characters/myra-aisling/back.svg",
  49952. extra: 1249/1149,
  49953. bottom: 79/1328
  49954. }
  49955. },
  49956. dressed: {
  49957. height: math.unit(6, "feet"),
  49958. name: "Dressed",
  49959. image: {
  49960. source: "./media/characters/myra-aisling/dressed.svg",
  49961. extra: 1290/1189,
  49962. bottom: 47/1337
  49963. }
  49964. },
  49965. hand: {
  49966. height: math.unit(1.1, "feet"),
  49967. name: "Hand",
  49968. image: {
  49969. source: "./media/characters/myra-aisling/hand.svg"
  49970. }
  49971. },
  49972. paw: {
  49973. height: math.unit(1.23, "feet"),
  49974. name: "Paw",
  49975. image: {
  49976. source: "./media/characters/myra-aisling/paw.svg"
  49977. }
  49978. },
  49979. },
  49980. [
  49981. {
  49982. name: "Normal",
  49983. height: math.unit(160, "feet"),
  49984. default: true
  49985. },
  49986. ]
  49987. ))
  49988. characterMakers.push(() => makeCharacter(
  49989. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49990. {
  49991. front: {
  49992. height: math.unit(6, "feet"),
  49993. name: "Front",
  49994. image: {
  49995. source: "./media/characters/tenley-sidero/front.svg",
  49996. extra: 1365/1276,
  49997. bottom: 47/1412
  49998. }
  49999. },
  50000. back: {
  50001. height: math.unit(6, "feet"),
  50002. name: "Back",
  50003. image: {
  50004. source: "./media/characters/tenley-sidero/back.svg",
  50005. extra: 1383/1283,
  50006. bottom: 35/1418
  50007. }
  50008. },
  50009. dressed: {
  50010. height: math.unit(6, "feet"),
  50011. name: "Dressed",
  50012. image: {
  50013. source: "./media/characters/tenley-sidero/dressed.svg",
  50014. extra: 1364/1275,
  50015. bottom: 42/1406
  50016. }
  50017. },
  50018. head: {
  50019. height: math.unit(1.47, "feet"),
  50020. name: "Head",
  50021. image: {
  50022. source: "./media/characters/tenley-sidero/head.svg",
  50023. extra: 610/490,
  50024. bottom: 0/610
  50025. }
  50026. },
  50027. },
  50028. [
  50029. {
  50030. name: "Normal",
  50031. height: math.unit(154, "feet"),
  50032. default: true
  50033. },
  50034. ]
  50035. ))
  50036. characterMakers.push(() => makeCharacter(
  50037. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50038. {
  50039. front: {
  50040. height: math.unit(5, "inches"),
  50041. name: "Front",
  50042. image: {
  50043. source: "./media/characters/mallory/front.svg",
  50044. extra: 1919/1678,
  50045. bottom: 29/1948
  50046. }
  50047. },
  50048. hand: {
  50049. height: math.unit(0.73, "inches"),
  50050. name: "Hand",
  50051. image: {
  50052. source: "./media/characters/mallory/hand.svg"
  50053. }
  50054. },
  50055. paw: {
  50056. height: math.unit(0.68, "inches"),
  50057. name: "Paw",
  50058. image: {
  50059. source: "./media/characters/mallory/paw.svg"
  50060. }
  50061. },
  50062. },
  50063. [
  50064. {
  50065. name: "Small",
  50066. height: math.unit(5, "inches"),
  50067. default: true
  50068. },
  50069. ]
  50070. ))
  50071. characterMakers.push(() => makeCharacter(
  50072. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50073. {
  50074. naked: {
  50075. height: math.unit(6, "feet"),
  50076. name: "Naked",
  50077. image: {
  50078. source: "./media/characters/mab/naked.svg",
  50079. extra: 1855/1757,
  50080. bottom: 208/2063
  50081. }
  50082. },
  50083. outside: {
  50084. height: math.unit(6, "feet"),
  50085. name: "Outside",
  50086. image: {
  50087. source: "./media/characters/mab/outside.svg",
  50088. extra: 1855/1757,
  50089. bottom: 208/2063
  50090. }
  50091. },
  50092. party: {
  50093. height: math.unit(6, "feet"),
  50094. name: "Party",
  50095. image: {
  50096. source: "./media/characters/mab/party.svg",
  50097. extra: 1855/1757,
  50098. bottom: 208/2063
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Normal",
  50105. height: math.unit(165, "feet"),
  50106. default: true
  50107. },
  50108. ]
  50109. ))
  50110. characterMakers.push(() => makeCharacter(
  50111. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50112. {
  50113. feral: {
  50114. height: math.unit(12, "feet"),
  50115. weight: math.unit(20000, "lb"),
  50116. name: "Side",
  50117. image: {
  50118. source: "./media/characters/winter/feral.svg",
  50119. extra: 1286/943,
  50120. bottom: 112/1398
  50121. },
  50122. form: "feral",
  50123. default: true
  50124. },
  50125. feralNsfw: {
  50126. height: math.unit(12, "feet"),
  50127. weight: math.unit(20000, "lb"),
  50128. name: "Side (NSFW)",
  50129. image: {
  50130. source: "./media/characters/winter/feral-nsfw.svg",
  50131. extra: 1286/943,
  50132. bottom: 112/1398
  50133. },
  50134. form: "feral"
  50135. },
  50136. dick: {
  50137. height: math.unit(3.79, "feet"),
  50138. name: "Dick",
  50139. image: {
  50140. source: "./media/characters/winter/dick.svg"
  50141. },
  50142. form: "feral"
  50143. },
  50144. anthro: {
  50145. height: math.unit(12, "feet"),
  50146. weight: math.unit(10, "tons"),
  50147. name: "Anthro",
  50148. image: {
  50149. source: "./media/characters/winter/anthro.svg",
  50150. extra: 1701/1553,
  50151. bottom: 64/1765
  50152. },
  50153. form: "anthro",
  50154. default: true
  50155. },
  50156. },
  50157. [
  50158. {
  50159. name: "Big",
  50160. height: math.unit(12, "feet"),
  50161. default: true,
  50162. form: "feral"
  50163. },
  50164. {
  50165. name: "Big",
  50166. height: math.unit(12, "feet"),
  50167. default: true,
  50168. form: "anthro"
  50169. },
  50170. ],
  50171. {
  50172. "feral": {
  50173. name: "Feral",
  50174. default: true
  50175. },
  50176. "anthro": {
  50177. name: "Anthro"
  50178. }
  50179. }
  50180. ))
  50181. characterMakers.push(() => makeCharacter(
  50182. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50183. {
  50184. front: {
  50185. height: math.unit(4.1, "inches"),
  50186. name: "Front",
  50187. image: {
  50188. source: "./media/characters/alto/front.svg",
  50189. extra: 736/627,
  50190. bottom: 90/826
  50191. }
  50192. },
  50193. },
  50194. [
  50195. {
  50196. name: "Normal",
  50197. height: math.unit(4.1, "inches"),
  50198. default: true
  50199. },
  50200. ]
  50201. ))
  50202. characterMakers.push(() => makeCharacter(
  50203. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50204. {
  50205. sitting: {
  50206. height: math.unit(3, "feet"),
  50207. name: "Sitting",
  50208. image: {
  50209. source: "./media/characters/ratstrid-v/sitting.svg",
  50210. extra: 355/310,
  50211. bottom: 136/491
  50212. }
  50213. },
  50214. },
  50215. [
  50216. {
  50217. name: "Normal",
  50218. height: math.unit(3, "feet"),
  50219. default: true
  50220. },
  50221. ]
  50222. ))
  50223. characterMakers.push(() => makeCharacter(
  50224. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50225. {
  50226. back: {
  50227. height: math.unit(6, "feet"),
  50228. weight: math.unit(350, "lb"),
  50229. name: "Back",
  50230. image: {
  50231. source: "./media/characters/siz/back.svg",
  50232. extra: 1449/1274,
  50233. bottom: 13/1462
  50234. }
  50235. },
  50236. },
  50237. [
  50238. {
  50239. name: "Over-Overcompressed",
  50240. height: math.unit(8, "feet")
  50241. },
  50242. {
  50243. name: "Overcompressed",
  50244. height: math.unit(32, "feet")
  50245. },
  50246. {
  50247. name: "Compressed",
  50248. height: math.unit(128, "feet"),
  50249. default: true
  50250. },
  50251. {
  50252. name: "Half-Compressed",
  50253. height: math.unit(512, "feet")
  50254. },
  50255. {
  50256. name: "Quarter-Compressed",
  50257. height: math.unit(2048, "feet")
  50258. },
  50259. {
  50260. name: "Uncompressed?",
  50261. height: math.unit(8192, "feet")
  50262. },
  50263. ]
  50264. ))
  50265. characterMakers.push(() => makeCharacter(
  50266. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50267. {
  50268. front: {
  50269. height: math.unit(5 + 9/12, "feet"),
  50270. weight: math.unit(150, "lb"),
  50271. name: "Front",
  50272. image: {
  50273. source: "./media/characters/ven/front.svg",
  50274. extra: 1372/1320,
  50275. bottom: 73/1445
  50276. }
  50277. },
  50278. side: {
  50279. height: math.unit(5 + 9/12, "feet"),
  50280. weight: math.unit(1150, "lb"),
  50281. name: "Side",
  50282. image: {
  50283. source: "./media/characters/ven/side.svg",
  50284. extra: 1119/1070,
  50285. bottom: 42/1161
  50286. },
  50287. default: true
  50288. },
  50289. },
  50290. [
  50291. {
  50292. name: "Normal",
  50293. height: math.unit(5 + 9/12, "feet"),
  50294. default: true
  50295. },
  50296. ]
  50297. ))
  50298. characterMakers.push(() => makeCharacter(
  50299. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50300. {
  50301. front: {
  50302. height: math.unit(12, "feet"),
  50303. weight: math.unit(1000, "kg"),
  50304. name: "Front",
  50305. image: {
  50306. source: "./media/characters/maple/front.svg",
  50307. extra: 1193/1081,
  50308. bottom: 22/1215
  50309. }
  50310. },
  50311. },
  50312. [
  50313. {
  50314. name: "Compressed",
  50315. height: math.unit(7, "feet")
  50316. },
  50317. {
  50318. name: "Normal",
  50319. height: math.unit(12, "feet"),
  50320. default: true
  50321. },
  50322. ]
  50323. ))
  50324. characterMakers.push(() => makeCharacter(
  50325. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50326. {
  50327. front: {
  50328. height: math.unit(9, "feet"),
  50329. weight: math.unit(1500, "lb"),
  50330. name: "Front",
  50331. image: {
  50332. source: "./media/characters/nora/front.svg",
  50333. extra: 1348/1286,
  50334. bottom: 218/1566
  50335. }
  50336. },
  50337. erect: {
  50338. height: math.unit(9, "feet"),
  50339. weight: math.unit(11500, "lb"),
  50340. name: "Erect",
  50341. image: {
  50342. source: "./media/characters/nora/erect.svg",
  50343. extra: 1488/1433,
  50344. bottom: 133/1621
  50345. }
  50346. },
  50347. },
  50348. [
  50349. {
  50350. name: "Normal",
  50351. height: math.unit(9, "feet"),
  50352. default: true
  50353. },
  50354. ]
  50355. ))
  50356. characterMakers.push(() => makeCharacter(
  50357. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50358. {
  50359. front: {
  50360. height: math.unit(25, "feet"),
  50361. weight: math.unit(27500, "lb"),
  50362. name: "Front",
  50363. image: {
  50364. source: "./media/characters/north-caudin/front.svg",
  50365. extra: 1184/1082,
  50366. bottom: 23/1207
  50367. }
  50368. },
  50369. },
  50370. [
  50371. {
  50372. name: "Compressed",
  50373. height: math.unit(10, "feet")
  50374. },
  50375. {
  50376. name: "Normal",
  50377. height: math.unit(25, "feet"),
  50378. default: true
  50379. },
  50380. ]
  50381. ))
  50382. characterMakers.push(() => makeCharacter(
  50383. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50384. {
  50385. front: {
  50386. height: math.unit(9, "feet"),
  50387. weight: math.unit(1250, "lb"),
  50388. name: "Front",
  50389. image: {
  50390. source: "./media/characters/merrian/front.svg",
  50391. extra: 2393/2304,
  50392. bottom: 40/2433
  50393. }
  50394. },
  50395. },
  50396. [
  50397. {
  50398. name: "Normal",
  50399. height: math.unit(9, "feet"),
  50400. default: true
  50401. },
  50402. ]
  50403. ))
  50404. characterMakers.push(() => makeCharacter(
  50405. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50406. {
  50407. front: {
  50408. height: math.unit(9, "feet"),
  50409. weight: math.unit(1000, "lb"),
  50410. name: "Front",
  50411. image: {
  50412. source: "./media/characters/hazel/front.svg",
  50413. extra: 2351/2298,
  50414. bottom: 38/2389
  50415. }
  50416. },
  50417. },
  50418. [
  50419. {
  50420. name: "Normal",
  50421. height: math.unit(9, "feet"),
  50422. default: true
  50423. },
  50424. ]
  50425. ))
  50426. characterMakers.push(() => makeCharacter(
  50427. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50428. {
  50429. front: {
  50430. height: math.unit(13, "feet"),
  50431. weight: math.unit(3200, "lb"),
  50432. name: "Front",
  50433. image: {
  50434. source: "./media/characters/emma/front.svg",
  50435. extra: 2263/2029,
  50436. bottom: 68/2331
  50437. }
  50438. },
  50439. },
  50440. [
  50441. {
  50442. name: "Normal",
  50443. height: math.unit(13, "feet"),
  50444. default: true
  50445. },
  50446. ]
  50447. ))
  50448. characterMakers.push(() => makeCharacter(
  50449. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50450. {
  50451. front: {
  50452. height: math.unit(11 + 9/12, "feet"),
  50453. weight: math.unit(2500, "lb"),
  50454. name: "Front",
  50455. image: {
  50456. source: "./media/characters/ilumina/front.svg",
  50457. extra: 2248/2209,
  50458. bottom: 164/2412
  50459. }
  50460. },
  50461. },
  50462. [
  50463. {
  50464. name: "Normal",
  50465. height: math.unit(11 + 9/12, "feet"),
  50466. default: true
  50467. },
  50468. ]
  50469. ))
  50470. characterMakers.push(() => makeCharacter(
  50471. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50472. {
  50473. front: {
  50474. height: math.unit(8 + 10/12, "feet"),
  50475. weight: math.unit(1350, "lb"),
  50476. name: "Front",
  50477. image: {
  50478. source: "./media/characters/moonshine/front.svg",
  50479. extra: 2395/2288,
  50480. bottom: 40/2435
  50481. }
  50482. },
  50483. },
  50484. [
  50485. {
  50486. name: "Normal",
  50487. height: math.unit(8 + 10/12, "feet"),
  50488. default: true
  50489. },
  50490. ]
  50491. ))
  50492. characterMakers.push(() => makeCharacter(
  50493. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50494. {
  50495. front: {
  50496. height: math.unit(14, "feet"),
  50497. weight: math.unit(3400, "lb"),
  50498. name: "Front",
  50499. image: {
  50500. source: "./media/characters/aletia/front.svg",
  50501. extra: 1185/1052,
  50502. bottom: 21/1206
  50503. }
  50504. },
  50505. },
  50506. [
  50507. {
  50508. name: "Compressed",
  50509. height: math.unit(8, "feet")
  50510. },
  50511. {
  50512. name: "Normal",
  50513. height: math.unit(14, "feet"),
  50514. default: true
  50515. },
  50516. ]
  50517. ))
  50518. characterMakers.push(() => makeCharacter(
  50519. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50520. {
  50521. front: {
  50522. height: math.unit(17, "feet"),
  50523. weight: math.unit(6500, "lb"),
  50524. name: "Front",
  50525. image: {
  50526. source: "./media/characters/deidra/front.svg",
  50527. extra: 1201/1081,
  50528. bottom: 16/1217
  50529. }
  50530. },
  50531. },
  50532. [
  50533. {
  50534. name: "Compressed",
  50535. height: math.unit(9 + 6/12, "feet")
  50536. },
  50537. {
  50538. name: "Normal",
  50539. height: math.unit(17, "feet"),
  50540. default: true
  50541. },
  50542. ]
  50543. ))
  50544. characterMakers.push(() => makeCharacter(
  50545. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50546. {
  50547. front: {
  50548. height: math.unit(7 + 4/12, "feet"),
  50549. weight: math.unit(280, "lb"),
  50550. name: "Front",
  50551. image: {
  50552. source: "./media/characters/freki-yrmori/front.svg",
  50553. extra: 1286/1182,
  50554. bottom: 29/1315
  50555. }
  50556. },
  50557. maw: {
  50558. height: math.unit(0.9, "feet"),
  50559. name: "Maw",
  50560. image: {
  50561. source: "./media/characters/freki-yrmori/maw.svg"
  50562. }
  50563. },
  50564. },
  50565. [
  50566. {
  50567. name: "Normal",
  50568. height: math.unit(7 + 4/12, "feet"),
  50569. default: true
  50570. },
  50571. {
  50572. name: "Macro",
  50573. height: math.unit(38.5, "meters")
  50574. },
  50575. ]
  50576. ))
  50577. characterMakers.push(() => makeCharacter(
  50578. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50579. {
  50580. side: {
  50581. height: math.unit(47.2, "meters"),
  50582. weight: math.unit(10000, "tons"),
  50583. name: "Side",
  50584. image: {
  50585. source: "./media/characters/aetherios/side.svg",
  50586. extra: 2363/642,
  50587. bottom: 221/2584
  50588. }
  50589. },
  50590. top: {
  50591. height: math.unit(240, "meters"),
  50592. weight: math.unit(10000, "tons"),
  50593. name: "Top",
  50594. image: {
  50595. source: "./media/characters/aetherios/top.svg"
  50596. }
  50597. },
  50598. bottom: {
  50599. height: math.unit(240, "meters"),
  50600. weight: math.unit(10000, "tons"),
  50601. name: "Bottom",
  50602. image: {
  50603. source: "./media/characters/aetherios/bottom.svg"
  50604. }
  50605. },
  50606. head: {
  50607. height: math.unit(38.6, "meters"),
  50608. name: "Head",
  50609. image: {
  50610. source: "./media/characters/aetherios/head.svg",
  50611. extra: 1335/1112,
  50612. bottom: 0/1335
  50613. }
  50614. },
  50615. front: {
  50616. height: math.unit(29, "meters"),
  50617. name: "Front",
  50618. image: {
  50619. source: "./media/characters/aetherios/front.svg",
  50620. extra: 1266/953,
  50621. bottom: 158/1424
  50622. }
  50623. },
  50624. maw: {
  50625. height: math.unit(16.37, "meters"),
  50626. name: "Maw",
  50627. image: {
  50628. source: "./media/characters/aetherios/maw.svg",
  50629. extra: 748/637,
  50630. bottom: 0/748
  50631. },
  50632. extraAttributes: {
  50633. preyCapacity: {
  50634. name: "Capacity",
  50635. power: 3,
  50636. type: "volume",
  50637. base: math.unit(1000, "people")
  50638. },
  50639. tongueSize: {
  50640. name: "Tongue Size",
  50641. power: 2,
  50642. type: "area",
  50643. base: math.unit(21, "m^2")
  50644. }
  50645. }
  50646. },
  50647. forepaw: {
  50648. height: math.unit(18, "meters"),
  50649. name: "Forepaw",
  50650. image: {
  50651. source: "./media/characters/aetherios/forepaw.svg"
  50652. }
  50653. },
  50654. hindpaw: {
  50655. height: math.unit(23, "meters"),
  50656. name: "Hindpaw",
  50657. image: {
  50658. source: "./media/characters/aetherios/hindpaw.svg"
  50659. }
  50660. },
  50661. genitals: {
  50662. height: math.unit(42, "meters"),
  50663. name: "Genitals",
  50664. image: {
  50665. source: "./media/characters/aetherios/genitals.svg"
  50666. }
  50667. },
  50668. },
  50669. [
  50670. {
  50671. name: "Normal",
  50672. height: math.unit(47.2, "meters"),
  50673. default: true
  50674. },
  50675. {
  50676. name: "Macro",
  50677. height: math.unit(160, "meters")
  50678. },
  50679. {
  50680. name: "Mega",
  50681. height: math.unit(1.87, "km")
  50682. },
  50683. {
  50684. name: "Giga",
  50685. height: math.unit(40000, "km")
  50686. },
  50687. {
  50688. name: "Stellar",
  50689. height: math.unit(158000000, "km")
  50690. },
  50691. {
  50692. name: "Cosmic",
  50693. height: math.unit(9.46e12, "km")
  50694. },
  50695. ]
  50696. ))
  50697. characterMakers.push(() => makeCharacter(
  50698. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50699. {
  50700. front: {
  50701. height: math.unit(5 + 4/12, "feet"),
  50702. weight: math.unit(80, "lb"),
  50703. name: "Front",
  50704. image: {
  50705. source: "./media/characters/mizu-gieeg/front.svg",
  50706. extra: 850/709,
  50707. bottom: 52/902
  50708. }
  50709. },
  50710. back: {
  50711. height: math.unit(5 + 4/12, "feet"),
  50712. weight: math.unit(80, "lb"),
  50713. name: "Back",
  50714. image: {
  50715. source: "./media/characters/mizu-gieeg/back.svg",
  50716. extra: 882/745,
  50717. bottom: 25/907
  50718. }
  50719. },
  50720. },
  50721. [
  50722. {
  50723. name: "Normal",
  50724. height: math.unit(5 + 4/12, "feet"),
  50725. default: true
  50726. },
  50727. ]
  50728. ))
  50729. characterMakers.push(() => makeCharacter(
  50730. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50731. {
  50732. front: {
  50733. height: math.unit(6, "feet"),
  50734. name: "Front",
  50735. image: {
  50736. source: "./media/characters/roselle-st-papier/front.svg",
  50737. extra: 1430/1280,
  50738. bottom: 37/1467
  50739. }
  50740. },
  50741. back: {
  50742. height: math.unit(6, "feet"),
  50743. name: "Back",
  50744. image: {
  50745. source: "./media/characters/roselle-st-papier/back.svg",
  50746. extra: 1491/1296,
  50747. bottom: 23/1514
  50748. }
  50749. },
  50750. ear: {
  50751. height: math.unit(1.26, "feet"),
  50752. name: "Ear",
  50753. image: {
  50754. source: "./media/characters/roselle-st-papier/ear.svg"
  50755. }
  50756. },
  50757. },
  50758. [
  50759. {
  50760. name: "Normal",
  50761. height: math.unit(150, "feet"),
  50762. default: true
  50763. },
  50764. ]
  50765. ))
  50766. characterMakers.push(() => makeCharacter(
  50767. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50768. {
  50769. front: {
  50770. height: math.unit(1, "inches"),
  50771. name: "Front",
  50772. image: {
  50773. source: "./media/characters/valargent/front.svg",
  50774. extra: 1825/1694,
  50775. bottom: 62/1887
  50776. }
  50777. },
  50778. back: {
  50779. height: math.unit(1, "inches"),
  50780. name: "Back",
  50781. image: {
  50782. source: "./media/characters/valargent/back.svg",
  50783. extra: 1775/1682,
  50784. bottom: 88/1863
  50785. }
  50786. },
  50787. },
  50788. [
  50789. {
  50790. name: "Micro",
  50791. height: math.unit(1, "inch"),
  50792. default: true
  50793. },
  50794. ]
  50795. ))
  50796. characterMakers.push(() => makeCharacter(
  50797. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50798. {
  50799. front: {
  50800. height: math.unit(3.4, "meters"),
  50801. name: "Front",
  50802. image: {
  50803. source: "./media/characters/zarina/front.svg",
  50804. extra: 1733/1425,
  50805. bottom: 93/1826
  50806. }
  50807. },
  50808. squatting: {
  50809. height: math.unit(2.14, "meters"),
  50810. name: "Squatting",
  50811. image: {
  50812. source: "./media/characters/zarina/squatting.svg",
  50813. extra: 1073/788,
  50814. bottom: 63/1136
  50815. }
  50816. },
  50817. back: {
  50818. height: math.unit(2.14, "meters"),
  50819. name: "Back",
  50820. image: {
  50821. source: "./media/characters/zarina/back.svg",
  50822. extra: 1128/885,
  50823. bottom: 0/1128
  50824. }
  50825. },
  50826. },
  50827. [
  50828. {
  50829. name: "Normal",
  50830. height: math.unit(3.4, "meters"),
  50831. default: true
  50832. },
  50833. {
  50834. name: "Big",
  50835. height: math.unit(5, "meters")
  50836. },
  50837. {
  50838. name: "Macro",
  50839. height: math.unit(110, "meters")
  50840. },
  50841. ]
  50842. ))
  50843. characterMakers.push(() => makeCharacter(
  50844. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50845. {
  50846. front: {
  50847. height: math.unit(7, "feet"),
  50848. name: "Front",
  50849. image: {
  50850. source: "./media/characters/ventus-astro-fox/front.svg",
  50851. extra: 1792/1623,
  50852. bottom: 28/1820
  50853. }
  50854. },
  50855. back: {
  50856. height: math.unit(7, "feet"),
  50857. name: "Back",
  50858. image: {
  50859. source: "./media/characters/ventus-astro-fox/back.svg",
  50860. extra: 1789/1620,
  50861. bottom: 31/1820
  50862. }
  50863. },
  50864. outfit: {
  50865. height: math.unit(7, "feet"),
  50866. name: "Outfit",
  50867. image: {
  50868. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50869. extra: 1054/925,
  50870. bottom: 15/1069
  50871. }
  50872. },
  50873. head: {
  50874. height: math.unit(1.12, "feet"),
  50875. name: "Head",
  50876. image: {
  50877. source: "./media/characters/ventus-astro-fox/head.svg",
  50878. extra: 866/504,
  50879. bottom: 0/866
  50880. }
  50881. },
  50882. hand: {
  50883. height: math.unit(1, "feet"),
  50884. name: "Hand",
  50885. image: {
  50886. source: "./media/characters/ventus-astro-fox/hand.svg"
  50887. }
  50888. },
  50889. paw: {
  50890. height: math.unit(1.5, "feet"),
  50891. name: "Paw",
  50892. image: {
  50893. source: "./media/characters/ventus-astro-fox/paw.svg"
  50894. }
  50895. },
  50896. },
  50897. [
  50898. {
  50899. name: "Normal",
  50900. height: math.unit(7, "feet"),
  50901. default: true
  50902. },
  50903. {
  50904. name: "Macro",
  50905. height: math.unit(200, "feet")
  50906. },
  50907. {
  50908. name: "Cosmic",
  50909. height: math.unit(3, "universes")
  50910. },
  50911. ]
  50912. ))
  50913. characterMakers.push(() => makeCharacter(
  50914. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50915. {
  50916. front: {
  50917. height: math.unit(3, "meters"),
  50918. weight: math.unit(7000, "lb"),
  50919. name: "Front",
  50920. image: {
  50921. source: "./media/characters/core-t/front.svg",
  50922. extra: 5729/4941,
  50923. bottom: 1129/6858
  50924. }
  50925. },
  50926. },
  50927. [
  50928. {
  50929. name: "Big",
  50930. height: math.unit(3, "meters"),
  50931. default: true
  50932. },
  50933. ]
  50934. ))
  50935. characterMakers.push(() => makeCharacter(
  50936. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50937. {
  50938. normal: {
  50939. height: math.unit(6 + 6/12, "feet"),
  50940. weight: math.unit(275, "lb"),
  50941. name: "Front",
  50942. image: {
  50943. source: "./media/characters/cadbunny/normal.svg",
  50944. extra: 1129/947,
  50945. bottom: 93/1222
  50946. },
  50947. default: true,
  50948. form: "normal"
  50949. },
  50950. gigantamax: {
  50951. height: math.unit(26, "feet"),
  50952. weight: math.unit(16000, "lb"),
  50953. name: "Front",
  50954. image: {
  50955. source: "./media/characters/cadbunny/gigantamax.svg",
  50956. extra: 1133/944,
  50957. bottom: 90/1223
  50958. },
  50959. default: true,
  50960. form: "gigantamax"
  50961. },
  50962. },
  50963. [
  50964. {
  50965. name: "Normal",
  50966. height: math.unit(6 + 6/12, "feet"),
  50967. default: true,
  50968. form: "normal"
  50969. },
  50970. {
  50971. name: "Small",
  50972. height: math.unit(26, "feet"),
  50973. default: true,
  50974. form: "gigantamax"
  50975. },
  50976. {
  50977. name: "Large",
  50978. height: math.unit(78, "feet"),
  50979. form: "gigantamax"
  50980. },
  50981. ],
  50982. {
  50983. "normal": {
  50984. name: "Normal",
  50985. default: true
  50986. },
  50987. "gigantamax": {
  50988. name: "Gigantamax"
  50989. }
  50990. }
  50991. ))
  50992. characterMakers.push(() => makeCharacter(
  50993. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50994. {
  50995. anthroFront: {
  50996. height: math.unit(8, "feet"),
  50997. weight: math.unit(300, "lb"),
  50998. name: "Front",
  50999. image: {
  51000. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51001. extra: 1272/1176,
  51002. bottom: 53/1325
  51003. },
  51004. form: "anthro",
  51005. default: true
  51006. },
  51007. feralSide: {
  51008. height: math.unit(4, "feet"),
  51009. weight: math.unit(250, "lb"),
  51010. name: "Side",
  51011. image: {
  51012. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51013. extra: 731/621,
  51014. bottom: 0/731
  51015. },
  51016. form: "feral",
  51017. default: true
  51018. },
  51019. },
  51020. [
  51021. {
  51022. name: "Regular",
  51023. height: math.unit(8, "feet"),
  51024. form: "anthro"
  51025. },
  51026. {
  51027. name: "Macro",
  51028. height: math.unit(250, "feet"),
  51029. form: "anthro",
  51030. default: true
  51031. },
  51032. {
  51033. name: "Regular",
  51034. height: math.unit(4, "feet"),
  51035. form: "feral"
  51036. },
  51037. {
  51038. name: "Macro",
  51039. height: math.unit(125, "feet"),
  51040. form: "feral",
  51041. default: true
  51042. },
  51043. ],
  51044. {
  51045. "anthro": {
  51046. name: "Anthro",
  51047. default: true
  51048. },
  51049. "feral": {
  51050. name: "Feral",
  51051. },
  51052. }
  51053. ))
  51054. characterMakers.push(() => makeCharacter(
  51055. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51056. {
  51057. front: {
  51058. height: math.unit(11 + 10/12, "feet"),
  51059. weight: math.unit(1587, "kg"),
  51060. name: "Front",
  51061. image: {
  51062. source: "./media/characters/maple-javira-dragon/front.svg",
  51063. extra: 1136/744,
  51064. bottom: 73/1209
  51065. }
  51066. },
  51067. side: {
  51068. height: math.unit(11 + 10/12, "feet"),
  51069. weight: math.unit(1587, "kg"),
  51070. name: "Side",
  51071. image: {
  51072. source: "./media/characters/maple-javira-dragon/side.svg",
  51073. extra: 712/505,
  51074. bottom: 17/729
  51075. }
  51076. },
  51077. head: {
  51078. height: math.unit(8.05, "feet"),
  51079. name: "Head",
  51080. image: {
  51081. source: "./media/characters/maple-javira-dragon/head.svg",
  51082. extra: 1420/1344,
  51083. bottom: 0/1420
  51084. }
  51085. },
  51086. },
  51087. [
  51088. {
  51089. name: "Normal",
  51090. height: math.unit(11 + 10/12, "feet"),
  51091. default: true
  51092. },
  51093. ]
  51094. ))
  51095. characterMakers.push(() => makeCharacter(
  51096. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51097. {
  51098. front: {
  51099. height: math.unit(117, "cm"),
  51100. weight: math.unit(50, "kg"),
  51101. name: "Front",
  51102. image: {
  51103. source: "./media/characters/sonia-wyverntail/front.svg",
  51104. extra: 708/592,
  51105. bottom: 25/733
  51106. }
  51107. },
  51108. },
  51109. [
  51110. {
  51111. name: "Normal",
  51112. height: math.unit(117, "cm"),
  51113. default: true
  51114. },
  51115. ]
  51116. ))
  51117. characterMakers.push(() => makeCharacter(
  51118. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51119. {
  51120. front: {
  51121. height: math.unit(6 + 5/12, "feet"),
  51122. name: "Front",
  51123. image: {
  51124. source: "./media/characters/micah/front.svg",
  51125. extra: 1758/1546,
  51126. bottom: 214/1972
  51127. }
  51128. },
  51129. },
  51130. [
  51131. {
  51132. name: "Normal",
  51133. height: math.unit(6 + 5/12, "feet"),
  51134. default: true
  51135. },
  51136. ]
  51137. ))
  51138. characterMakers.push(() => makeCharacter(
  51139. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51140. {
  51141. front: {
  51142. height: math.unit(5 + 10/12, "feet"),
  51143. weight: math.unit(220, "lb"),
  51144. name: "Front",
  51145. image: {
  51146. source: "./media/characters/zarya/front.svg",
  51147. extra: 593/572,
  51148. bottom: 50/643
  51149. }
  51150. },
  51151. back: {
  51152. height: math.unit(5 + 10/12, "feet"),
  51153. weight: math.unit(220, "lb"),
  51154. name: "Back",
  51155. image: {
  51156. source: "./media/characters/zarya/back.svg",
  51157. extra: 603/582,
  51158. bottom: 38/641
  51159. }
  51160. },
  51161. },
  51162. [
  51163. {
  51164. name: "Normal",
  51165. height: math.unit(5 + 10/12, "feet"),
  51166. default: true
  51167. },
  51168. ]
  51169. ))
  51170. characterMakers.push(() => makeCharacter(
  51171. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51172. {
  51173. front: {
  51174. height: math.unit(7.5, "feet"),
  51175. name: "Front",
  51176. image: {
  51177. source: "./media/characters/sven-hatisson/front.svg",
  51178. extra: 917/857,
  51179. bottom: 42/959
  51180. }
  51181. },
  51182. back: {
  51183. height: math.unit(7.5, "feet"),
  51184. name: "Back",
  51185. image: {
  51186. source: "./media/characters/sven-hatisson/back.svg",
  51187. extra: 903/856,
  51188. bottom: 15/918
  51189. }
  51190. },
  51191. },
  51192. [
  51193. {
  51194. name: "Base Height",
  51195. height: math.unit(7.5, "feet")
  51196. },
  51197. {
  51198. name: "Usual Height",
  51199. height: math.unit(13.5, "feet"),
  51200. default: true
  51201. },
  51202. {
  51203. name: "Smaller Macro",
  51204. height: math.unit(85, "feet")
  51205. },
  51206. {
  51207. name: "Moderate Macro",
  51208. height: math.unit(320, "feet")
  51209. },
  51210. {
  51211. name: "Large Macro",
  51212. height: math.unit(1000, "feet")
  51213. },
  51214. {
  51215. name: "Largest Size",
  51216. height: math.unit(2, "miles")
  51217. },
  51218. ]
  51219. ))
  51220. characterMakers.push(() => makeCharacter(
  51221. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51222. {
  51223. side: {
  51224. height: math.unit(1.8, "meters"),
  51225. weight: math.unit(275, "kg"),
  51226. name: "Side",
  51227. image: {
  51228. source: "./media/characters/terra/side.svg",
  51229. extra: 1273/1147,
  51230. bottom: 0/1273
  51231. }
  51232. },
  51233. },
  51234. [
  51235. {
  51236. name: "Normal",
  51237. height: math.unit(16.2, "meters"),
  51238. default: true
  51239. },
  51240. ]
  51241. ))
  51242. characterMakers.push(() => makeCharacter(
  51243. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51244. {
  51245. borzoiFront: {
  51246. height: math.unit(6 + 9/12, "feet"),
  51247. name: "Front",
  51248. image: {
  51249. source: "./media/characters/rae/borzoi-front.svg",
  51250. extra: 1161/1098,
  51251. bottom: 31/1192
  51252. },
  51253. form: "borzoi",
  51254. default: true
  51255. },
  51256. werewolfFront: {
  51257. height: math.unit(8 + 7/12, "feet"),
  51258. name: "Front",
  51259. image: {
  51260. source: "./media/characters/rae/werewolf-front.svg",
  51261. extra: 1411/1334,
  51262. bottom: 127/1538
  51263. },
  51264. form: "werewolf",
  51265. default: true
  51266. },
  51267. },
  51268. [
  51269. {
  51270. name: "Normal",
  51271. height: math.unit(6 + 9/12, "feet"),
  51272. default: true,
  51273. form: "borzoi"
  51274. },
  51275. {
  51276. name: "Normal",
  51277. height: math.unit(8 + 7/12, "feet"),
  51278. default: true,
  51279. form: "werewolf"
  51280. },
  51281. ],
  51282. {
  51283. "borzoi": {
  51284. name: "Borzoi",
  51285. default: true
  51286. },
  51287. "werewolf": {
  51288. name: "Werewolf",
  51289. },
  51290. }
  51291. ))
  51292. characterMakers.push(() => makeCharacter(
  51293. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51294. {
  51295. front: {
  51296. height: math.unit(8 + 7/12, "feet"),
  51297. weight: math.unit(482, "lb"),
  51298. name: "Front",
  51299. image: {
  51300. source: "./media/characters/kit/front.svg",
  51301. extra: 1247/1103,
  51302. bottom: 41/1288
  51303. }
  51304. },
  51305. back: {
  51306. height: math.unit(8 + 7/12, "feet"),
  51307. weight: math.unit(482, "lb"),
  51308. name: "Back",
  51309. image: {
  51310. source: "./media/characters/kit/back.svg",
  51311. extra: 1252/1123,
  51312. bottom: 21/1273
  51313. }
  51314. },
  51315. paw: {
  51316. height: math.unit(1.46, "feet"),
  51317. name: "Paw",
  51318. image: {
  51319. source: "./media/characters/kit/paw.svg"
  51320. }
  51321. },
  51322. },
  51323. [
  51324. {
  51325. name: "Normal",
  51326. height: math.unit(2.61, "meters"),
  51327. default: true
  51328. },
  51329. {
  51330. name: "\"Tall\"",
  51331. height: math.unit(8.21, "meters")
  51332. },
  51333. {
  51334. name: "Tall",
  51335. height: math.unit(19.6, "meters")
  51336. },
  51337. {
  51338. name: "Very Tall",
  51339. height: math.unit(57.91, "meters")
  51340. },
  51341. {
  51342. name: "Semi-Macro",
  51343. height: math.unit(138.64, "meters")
  51344. },
  51345. {
  51346. name: "Macro",
  51347. height: math.unit(831.99, "meters")
  51348. },
  51349. {
  51350. name: "EX-Macro",
  51351. height: math.unit(96451121, "meters")
  51352. },
  51353. {
  51354. name: "S1-Omnipotent",
  51355. height: math.unit(4.42074e+9, "meters")
  51356. },
  51357. {
  51358. name: "S2-Omnipotent",
  51359. height: math.unit(9.42074e+17, "meters")
  51360. },
  51361. {
  51362. name: "Omnipotent",
  51363. height: math.unit(4.23112e+24, "meters")
  51364. },
  51365. {
  51366. name: "Hypergod",
  51367. height: math.unit(5.05176e+27, "meters")
  51368. },
  51369. {
  51370. name: "Hypergod-EX",
  51371. height: math.unit(9.45532e+49, "meters")
  51372. },
  51373. {
  51374. name: "Hypergod-SP",
  51375. height: math.unit(9.45532e+195, "meters")
  51376. },
  51377. ]
  51378. ))
  51379. characterMakers.push(() => makeCharacter(
  51380. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51381. {
  51382. side: {
  51383. height: math.unit(0.6, "meters"),
  51384. weight: math.unit(24, "kg"),
  51385. name: "Side",
  51386. image: {
  51387. source: "./media/characters/celeste/side.svg",
  51388. extra: 810/517,
  51389. bottom: 53/863
  51390. }
  51391. },
  51392. },
  51393. [
  51394. {
  51395. name: "Velociraptor",
  51396. height: math.unit(0.6, "meters"),
  51397. default: true
  51398. },
  51399. {
  51400. name: "Utahraptor",
  51401. height: math.unit(1.8, "meters")
  51402. },
  51403. {
  51404. name: "Gallimimus",
  51405. height: math.unit(4.0, "meters")
  51406. },
  51407. {
  51408. name: "Large",
  51409. height: math.unit(20, "meters")
  51410. },
  51411. {
  51412. name: "Planetary",
  51413. height: math.unit(50, "megameters")
  51414. },
  51415. {
  51416. name: "Stellar",
  51417. height: math.unit(1.5, "gigameters")
  51418. },
  51419. {
  51420. name: "Galactic",
  51421. height: math.unit(100, "exameters")
  51422. },
  51423. ]
  51424. ))
  51425. characterMakers.push(() => makeCharacter(
  51426. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51427. {
  51428. front: {
  51429. height: math.unit(6, "feet"),
  51430. weight: math.unit(210, "lb"),
  51431. name: "Front",
  51432. image: {
  51433. source: "./media/characters/glacia/front.svg",
  51434. extra: 958/901,
  51435. bottom: 45/1003
  51436. }
  51437. },
  51438. },
  51439. [
  51440. {
  51441. name: "Macro",
  51442. height: math.unit(1000, "meters"),
  51443. default: true
  51444. },
  51445. ]
  51446. ))
  51447. characterMakers.push(() => makeCharacter(
  51448. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51449. {
  51450. front: {
  51451. height: math.unit(4, "meters"),
  51452. name: "Front",
  51453. image: {
  51454. source: "./media/characters/giri/front.svg",
  51455. extra: 966/894,
  51456. bottom: 21/987
  51457. }
  51458. },
  51459. },
  51460. [
  51461. {
  51462. name: "Normal",
  51463. height: math.unit(4, "meters"),
  51464. default: true
  51465. },
  51466. ]
  51467. ))
  51468. characterMakers.push(() => makeCharacter(
  51469. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51470. {
  51471. back: {
  51472. height: math.unit(4, "feet"),
  51473. weight: math.unit(37, "lb"),
  51474. name: "Back",
  51475. image: {
  51476. source: "./media/characters/tin/back.svg",
  51477. extra: 845/780,
  51478. bottom: 28/873
  51479. }
  51480. },
  51481. },
  51482. [
  51483. {
  51484. name: "Normal",
  51485. height: math.unit(4, "feet"),
  51486. default: true
  51487. },
  51488. ]
  51489. ))
  51490. characterMakers.push(() => makeCharacter(
  51491. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51492. {
  51493. front: {
  51494. height: math.unit(25, "feet"),
  51495. name: "Front",
  51496. image: {
  51497. source: "./media/characters/cadenza-vivace/front.svg",
  51498. extra: 1842/1578,
  51499. bottom: 30/1872
  51500. }
  51501. },
  51502. },
  51503. [
  51504. {
  51505. name: "Macro",
  51506. height: math.unit(25, "feet"),
  51507. default: true
  51508. },
  51509. ]
  51510. ))
  51511. characterMakers.push(() => makeCharacter(
  51512. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51513. {
  51514. front: {
  51515. height: math.unit(10, "feet"),
  51516. weight: math.unit(625, "kg"),
  51517. name: "Front",
  51518. image: {
  51519. source: "./media/characters/zain/front.svg",
  51520. extra: 1682/1498,
  51521. bottom: 223/1905
  51522. }
  51523. },
  51524. back: {
  51525. height: math.unit(10, "feet"),
  51526. weight: math.unit(625, "kg"),
  51527. name: "Back",
  51528. image: {
  51529. source: "./media/characters/zain/back.svg",
  51530. extra: 1814/1657,
  51531. bottom: 152/1966
  51532. }
  51533. },
  51534. head: {
  51535. height: math.unit(10, "feet"),
  51536. weight: math.unit(625, "kg"),
  51537. name: "Head",
  51538. image: {
  51539. source: "./media/characters/zain/head.svg",
  51540. extra: 1059/762,
  51541. bottom: 0/1059
  51542. }
  51543. },
  51544. },
  51545. [
  51546. {
  51547. name: "Normal",
  51548. height: math.unit(10, "feet"),
  51549. default: true
  51550. },
  51551. ]
  51552. ))
  51553. characterMakers.push(() => makeCharacter(
  51554. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51555. {
  51556. front: {
  51557. height: math.unit(6 + 5/12, "feet"),
  51558. weight: math.unit(750, "lb"),
  51559. name: "Front",
  51560. image: {
  51561. source: "./media/characters/ruchex/front.svg",
  51562. extra: 877/820,
  51563. bottom: 17/894
  51564. },
  51565. extraAttributes: {
  51566. "width": {
  51567. name: "Width",
  51568. power: 1,
  51569. type: "length",
  51570. base: math.unit(4.757, "feet")
  51571. },
  51572. }
  51573. },
  51574. },
  51575. [
  51576. {
  51577. name: "Normal",
  51578. height: math.unit(6 + 5/12, "feet"),
  51579. default: true
  51580. },
  51581. ]
  51582. ))
  51583. characterMakers.push(() => makeCharacter(
  51584. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51585. {
  51586. dressedFront: {
  51587. height: math.unit(191, "cm"),
  51588. weight: math.unit(80, "kg"),
  51589. name: "Front",
  51590. image: {
  51591. source: "./media/characters/buster/dressed-front.svg",
  51592. extra: 1022/973,
  51593. bottom: 69/1091
  51594. }
  51595. },
  51596. dressedBack: {
  51597. height: math.unit(191, "cm"),
  51598. weight: math.unit(80, "kg"),
  51599. name: "Back",
  51600. image: {
  51601. source: "./media/characters/buster/dressed-back.svg",
  51602. extra: 1018/970,
  51603. bottom: 55/1073
  51604. }
  51605. },
  51606. nudeFront: {
  51607. height: math.unit(191, "cm"),
  51608. weight: math.unit(80, "kg"),
  51609. name: "Front (Nude)",
  51610. image: {
  51611. source: "./media/characters/buster/nude-front.svg",
  51612. extra: 1022/973,
  51613. bottom: 69/1091
  51614. }
  51615. },
  51616. nudeBack: {
  51617. height: math.unit(191, "cm"),
  51618. weight: math.unit(80, "kg"),
  51619. name: "Back (Nude)",
  51620. image: {
  51621. source: "./media/characters/buster/nude-back.svg",
  51622. extra: 1018/970,
  51623. bottom: 55/1073
  51624. }
  51625. },
  51626. dick: {
  51627. height: math.unit(2.59, "feet"),
  51628. name: "Dick",
  51629. image: {
  51630. source: "./media/characters/buster/dick.svg"
  51631. }
  51632. },
  51633. ass: {
  51634. height: math.unit(1.2, "feet"),
  51635. name: "Ass",
  51636. image: {
  51637. source: "./media/characters/buster/ass.svg"
  51638. }
  51639. },
  51640. },
  51641. [
  51642. {
  51643. name: "Normal",
  51644. height: math.unit(191, "cm"),
  51645. default: true
  51646. },
  51647. ]
  51648. ))
  51649. characterMakers.push(() => makeCharacter(
  51650. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51651. {
  51652. side: {
  51653. height: math.unit(8.1, "feet"),
  51654. weight: math.unit(3500, "lb"),
  51655. name: "Side",
  51656. image: {
  51657. source: "./media/characters/sonya/side.svg",
  51658. extra: 1730/1317,
  51659. bottom: 86/1816
  51660. }
  51661. },
  51662. },
  51663. [
  51664. {
  51665. name: "Normal",
  51666. height: math.unit(8.1, "feet"),
  51667. default: true
  51668. },
  51669. ]
  51670. ))
  51671. characterMakers.push(() => makeCharacter(
  51672. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51673. {
  51674. front: {
  51675. height: math.unit(6, "feet"),
  51676. weight: math.unit(150, "lb"),
  51677. name: "Front",
  51678. image: {
  51679. source: "./media/characters/cadence-andrysiak/front.svg",
  51680. extra: 1164/1121,
  51681. bottom: 60/1224
  51682. }
  51683. },
  51684. back: {
  51685. height: math.unit(6, "feet"),
  51686. weight: math.unit(150, "lb"),
  51687. name: "Back",
  51688. image: {
  51689. source: "./media/characters/cadence-andrysiak/back.svg",
  51690. extra: 1200/1165,
  51691. bottom: 9/1209
  51692. }
  51693. },
  51694. dressed: {
  51695. height: math.unit(6, "feet"),
  51696. weight: math.unit(150, "lb"),
  51697. name: "Dressed",
  51698. image: {
  51699. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51700. extra: 1164/1121,
  51701. bottom: 60/1224
  51702. }
  51703. },
  51704. },
  51705. [
  51706. {
  51707. name: "Micro",
  51708. height: math.unit(1, "mm")
  51709. },
  51710. {
  51711. name: "Normal",
  51712. height: math.unit(6, "feet"),
  51713. default: true
  51714. },
  51715. ]
  51716. ))
  51717. characterMakers.push(() => makeCharacter(
  51718. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51719. {
  51720. front: {
  51721. height: math.unit(60, "inches"),
  51722. weight: math.unit(16, "lb"),
  51723. preyCapacity: math.unit(80, "liters"),
  51724. name: "Front",
  51725. image: {
  51726. source: "./media/characters/penny-lynx/front.svg",
  51727. extra: 1959/1769,
  51728. bottom: 49/2008
  51729. }
  51730. },
  51731. },
  51732. [
  51733. {
  51734. name: "Nokia",
  51735. height: math.unit(2, "inches")
  51736. },
  51737. {
  51738. name: "Desktop",
  51739. height: math.unit(24, "inches")
  51740. },
  51741. {
  51742. name: "TV",
  51743. height: math.unit(60, "inches")
  51744. },
  51745. {
  51746. name: "Jumbotron",
  51747. height: math.unit(12, "feet")
  51748. },
  51749. {
  51750. name: "Billboard",
  51751. height: math.unit(48, "feet"),
  51752. default: true
  51753. },
  51754. {
  51755. name: "IMAX",
  51756. height: math.unit(96, "feet")
  51757. },
  51758. {
  51759. name: "SINGULARITY",
  51760. height: math.unit(864938, "miles")
  51761. },
  51762. ]
  51763. ))
  51764. characterMakers.push(() => makeCharacter(
  51765. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51766. {
  51767. front: {
  51768. height: math.unit(5 + 4/12, "feet"),
  51769. weight: math.unit(230, "lb"),
  51770. name: "Front",
  51771. image: {
  51772. source: "./media/characters/sukebe/front.svg",
  51773. extra: 2130/2038,
  51774. bottom: 90/2220
  51775. }
  51776. },
  51777. back: {
  51778. height: math.unit(3.48, "feet"),
  51779. weight: math.unit(230, "lb"),
  51780. name: "Back",
  51781. image: {
  51782. source: "./media/characters/sukebe/back.svg",
  51783. extra: 1670/1604,
  51784. bottom: 0/1670
  51785. }
  51786. },
  51787. },
  51788. [
  51789. {
  51790. name: "Normal",
  51791. height: math.unit(5 + 4/12, "feet"),
  51792. default: true
  51793. },
  51794. ]
  51795. ))
  51796. characterMakers.push(() => makeCharacter(
  51797. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51798. {
  51799. front: {
  51800. height: math.unit(6, "feet"),
  51801. name: "Front",
  51802. image: {
  51803. source: "./media/characters/nylla/front.svg",
  51804. extra: 1868/1699,
  51805. bottom: 97/1965
  51806. }
  51807. },
  51808. back: {
  51809. height: math.unit(6, "feet"),
  51810. name: "Back",
  51811. image: {
  51812. source: "./media/characters/nylla/back.svg",
  51813. extra: 1889/1712,
  51814. bottom: 93/1982
  51815. }
  51816. },
  51817. frontNsfw: {
  51818. height: math.unit(6, "feet"),
  51819. name: "Front (NSFW)",
  51820. image: {
  51821. source: "./media/characters/nylla/front-nsfw.svg",
  51822. extra: 1868/1699,
  51823. bottom: 97/1965
  51824. },
  51825. extraAttributes: {
  51826. "dickLength": {
  51827. name: "Dick Length",
  51828. power: 1,
  51829. type: "length",
  51830. base: math.unit(1.4, "feet")
  51831. },
  51832. "cumVolume": {
  51833. name: "Cum Volume",
  51834. power: 3,
  51835. type: "volume",
  51836. base: math.unit(100, "mL")
  51837. },
  51838. }
  51839. },
  51840. backNsfw: {
  51841. height: math.unit(6, "feet"),
  51842. name: "Back (NSFW)",
  51843. image: {
  51844. source: "./media/characters/nylla/back-nsfw.svg",
  51845. extra: 1889/1712,
  51846. bottom: 93/1982
  51847. }
  51848. },
  51849. maw: {
  51850. height: math.unit(2.10, "feet"),
  51851. name: "Maw",
  51852. image: {
  51853. source: "./media/characters/nylla/maw.svg"
  51854. }
  51855. },
  51856. paws: {
  51857. height: math.unit(2.06, "feet"),
  51858. name: "Paws",
  51859. image: {
  51860. source: "./media/characters/nylla/paws.svg"
  51861. }
  51862. },
  51863. muzzle: {
  51864. height: math.unit(0.61, "feet"),
  51865. name: "Muzzle",
  51866. image: {
  51867. source: "./media/characters/nylla/muzzle.svg"
  51868. }
  51869. },
  51870. sheath: {
  51871. height: math.unit(1.305, "feet"),
  51872. name: "Sheath",
  51873. image: {
  51874. source: "./media/characters/nylla/sheath.svg"
  51875. }
  51876. },
  51877. },
  51878. [
  51879. {
  51880. name: "Micro",
  51881. height: math.unit(7.5, "inches")
  51882. },
  51883. {
  51884. name: "Normal",
  51885. height: math.unit(7, "feet"),
  51886. default: true
  51887. },
  51888. {
  51889. name: "Macro",
  51890. height: math.unit(60, "feet")
  51891. },
  51892. {
  51893. name: "Mega",
  51894. height: math.unit(200, "feet")
  51895. },
  51896. ]
  51897. ))
  51898. characterMakers.push(() => makeCharacter(
  51899. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51900. {
  51901. front: {
  51902. height: math.unit(10, "feet"),
  51903. weight: math.unit(2300, "lb"),
  51904. name: "Front",
  51905. image: {
  51906. source: "./media/characters/hunt3r/front.svg",
  51907. extra: 1909/1742,
  51908. bottom: 46/1955
  51909. }
  51910. },
  51911. },
  51912. [
  51913. {
  51914. name: "Normal",
  51915. height: math.unit(10, "feet"),
  51916. default: true
  51917. },
  51918. ]
  51919. ))
  51920. characterMakers.push(() => makeCharacter(
  51921. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51922. {
  51923. dressed: {
  51924. height: math.unit(11, "feet"),
  51925. weight: math.unit(18500, "lb"),
  51926. preyCapacity: math.unit(9, "people"),
  51927. name: "Dressed",
  51928. image: {
  51929. source: "./media/characters/cylphis/dressed.svg",
  51930. extra: 1028/1003,
  51931. bottom: 75/1103
  51932. },
  51933. },
  51934. undressed: {
  51935. height: math.unit(11, "feet"),
  51936. weight: math.unit(18500, "lb"),
  51937. preyCapacity: math.unit(9, "people"),
  51938. name: "Undressed",
  51939. image: {
  51940. source: "./media/characters/cylphis/undressed.svg",
  51941. extra: 1028/1003,
  51942. bottom: 75/1103
  51943. }
  51944. },
  51945. full: {
  51946. height: math.unit(11, "feet"),
  51947. weight: math.unit(18500 + 150*9, "lb"),
  51948. preyCapacity: math.unit(9, "people"),
  51949. name: "Full",
  51950. image: {
  51951. source: "./media/characters/cylphis/full.svg",
  51952. extra: 1028/1003,
  51953. bottom: 75/1103
  51954. }
  51955. },
  51956. },
  51957. [
  51958. {
  51959. name: "Small",
  51960. height: math.unit(8, "feet")
  51961. },
  51962. {
  51963. name: "Normal",
  51964. height: math.unit(11, "feet"),
  51965. default: true
  51966. },
  51967. ]
  51968. ))
  51969. characterMakers.push(() => makeCharacter(
  51970. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51971. {
  51972. front: {
  51973. height: math.unit(2 + 7/12, "feet"),
  51974. name: "Front",
  51975. image: {
  51976. source: "./media/characters/orishan/front.svg",
  51977. extra: 1058/1023,
  51978. bottom: 23/1081
  51979. }
  51980. },
  51981. back: {
  51982. height: math.unit(2 + 7/12, "feet"),
  51983. name: "Back",
  51984. image: {
  51985. source: "./media/characters/orishan/back.svg",
  51986. extra: 1058/1023,
  51987. bottom: 23/1081
  51988. }
  51989. },
  51990. },
  51991. [
  51992. {
  51993. name: "Micro",
  51994. height: math.unit(2, "cm")
  51995. },
  51996. {
  51997. name: "Normal",
  51998. height: math.unit(2 + 7/12, "feet"),
  51999. default: true
  52000. },
  52001. ]
  52002. ))
  52003. characterMakers.push(() => makeCharacter(
  52004. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52005. {
  52006. front: {
  52007. height: math.unit(3, "meters"),
  52008. weight: math.unit(508, "kg"),
  52009. name: "Front",
  52010. image: {
  52011. source: "./media/characters/seranis/front.svg",
  52012. extra: 1478/1454,
  52013. bottom: 41/1519
  52014. }
  52015. },
  52016. },
  52017. [
  52018. {
  52019. name: "Normal",
  52020. height: math.unit(3, "meters"),
  52021. default: true
  52022. },
  52023. {
  52024. name: "Macro",
  52025. height: math.unit(108, "meters")
  52026. },
  52027. {
  52028. name: "Megamacro",
  52029. height: math.unit(1250, "meters")
  52030. },
  52031. ]
  52032. ))
  52033. characterMakers.push(() => makeCharacter(
  52034. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52035. {
  52036. undressed: {
  52037. height: math.unit(5 + 3/12, "feet"),
  52038. name: "Undressed",
  52039. image: {
  52040. source: "./media/characters/ankou/undressed.svg",
  52041. extra: 1301/1213,
  52042. bottom: 87/1388
  52043. }
  52044. },
  52045. dressed: {
  52046. height: math.unit(5 + 3/12, "feet"),
  52047. name: "Dressed",
  52048. image: {
  52049. source: "./media/characters/ankou/dressed.svg",
  52050. extra: 1301/1213,
  52051. bottom: 87/1388
  52052. }
  52053. },
  52054. head: {
  52055. height: math.unit(1.61, "feet"),
  52056. name: "Head",
  52057. image: {
  52058. source: "./media/characters/ankou/head.svg"
  52059. }
  52060. },
  52061. },
  52062. [
  52063. {
  52064. name: "Normal",
  52065. height: math.unit(5 + 3/12, "feet"),
  52066. default: true
  52067. },
  52068. ]
  52069. ))
  52070. characterMakers.push(() => makeCharacter(
  52071. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52072. {
  52073. side: {
  52074. height: math.unit(6 + 3/12, "feet"),
  52075. weight: math.unit(200, "kg"),
  52076. name: "Side",
  52077. image: {
  52078. source: "./media/characters/juniper-skunktaur/side.svg",
  52079. extra: 1574/1229,
  52080. bottom: 38/1612
  52081. }
  52082. },
  52083. front: {
  52084. height: math.unit(6 + 3/12, "feet"),
  52085. weight: math.unit(200, "kg"),
  52086. name: "Front",
  52087. image: {
  52088. source: "./media/characters/juniper-skunktaur/front.svg",
  52089. extra: 1337/1278,
  52090. bottom: 22/1359
  52091. }
  52092. },
  52093. back: {
  52094. height: math.unit(6 + 3/12, "feet"),
  52095. weight: math.unit(200, "kg"),
  52096. name: "Back",
  52097. image: {
  52098. source: "./media/characters/juniper-skunktaur/back.svg",
  52099. extra: 1618/1273,
  52100. bottom: 13/1631
  52101. }
  52102. },
  52103. top: {
  52104. height: math.unit(2.62, "feet"),
  52105. weight: math.unit(200, "kg"),
  52106. name: "Top",
  52107. image: {
  52108. source: "./media/characters/juniper-skunktaur/top.svg"
  52109. }
  52110. },
  52111. },
  52112. [
  52113. {
  52114. name: "Normal",
  52115. height: math.unit(6 + 3/12, "feet"),
  52116. default: true
  52117. },
  52118. ]
  52119. ))
  52120. characterMakers.push(() => makeCharacter(
  52121. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52122. {
  52123. front: {
  52124. height: math.unit(20.5, "feet"),
  52125. name: "Front",
  52126. image: {
  52127. source: "./media/characters/rei/front.svg",
  52128. extra: 1349/1195,
  52129. bottom: 31/1380
  52130. }
  52131. },
  52132. back: {
  52133. height: math.unit(20.5, "feet"),
  52134. name: "Back",
  52135. image: {
  52136. source: "./media/characters/rei/back.svg",
  52137. extra: 1358/1204,
  52138. bottom: 22/1380
  52139. }
  52140. },
  52141. pawsDigi: {
  52142. height: math.unit(3.45, "feet"),
  52143. name: "Paws (Digi)",
  52144. image: {
  52145. source: "./media/characters/rei/paws-digi.svg"
  52146. }
  52147. },
  52148. pawsPlanti: {
  52149. height: math.unit(3.45, "feet"),
  52150. name: "Paws (Planti)",
  52151. image: {
  52152. source: "./media/characters/rei/paws-planti.svg"
  52153. }
  52154. },
  52155. },
  52156. [
  52157. {
  52158. name: "Normal",
  52159. height: math.unit(20.5, "feet"),
  52160. default: true
  52161. },
  52162. ]
  52163. ))
  52164. characterMakers.push(() => makeCharacter(
  52165. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52166. {
  52167. front: {
  52168. height: math.unit(5 + 11/12, "feet"),
  52169. name: "Front",
  52170. image: {
  52171. source: "./media/characters/carina/front.svg",
  52172. extra: 1720/1449,
  52173. bottom: 14/1734
  52174. }
  52175. },
  52176. back: {
  52177. height: math.unit(5 + 11/12, "feet"),
  52178. name: "Back",
  52179. image: {
  52180. source: "./media/characters/carina/back.svg",
  52181. extra: 1493/1445,
  52182. bottom: 17/1510
  52183. }
  52184. },
  52185. paw: {
  52186. height: math.unit(0.92, "feet"),
  52187. name: "Paw",
  52188. image: {
  52189. source: "./media/characters/carina/paw.svg"
  52190. }
  52191. },
  52192. },
  52193. [
  52194. {
  52195. name: "Normal",
  52196. height: math.unit(5 + 11/12, "feet"),
  52197. default: true
  52198. },
  52199. ]
  52200. ))
  52201. characterMakers.push(() => makeCharacter(
  52202. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52203. {
  52204. front: {
  52205. height: math.unit(4.88, "meters"),
  52206. name: "Front",
  52207. image: {
  52208. source: "./media/characters/maya/front.svg",
  52209. extra: 1222/1145,
  52210. bottom: 57/1279
  52211. }
  52212. },
  52213. },
  52214. [
  52215. {
  52216. name: "Normal",
  52217. height: math.unit(4.88, "meters"),
  52218. default: true
  52219. },
  52220. {
  52221. name: "Macro",
  52222. height: math.unit(38.1, "meters")
  52223. },
  52224. {
  52225. name: "Macro+",
  52226. height: math.unit(152.4, "meters")
  52227. },
  52228. {
  52229. name: "Macro++",
  52230. height: math.unit(16.09, "km")
  52231. },
  52232. {
  52233. name: "Mega-macro",
  52234. height: math.unit(700, "megameters")
  52235. },
  52236. ]
  52237. ))
  52238. characterMakers.push(() => makeCharacter(
  52239. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52240. {
  52241. front: {
  52242. height: math.unit(6 + 2/12, "feet"),
  52243. weight: math.unit(500, "lb"),
  52244. preyCapacity: math.unit(4, "people"),
  52245. name: "Front",
  52246. image: {
  52247. source: "./media/characters/yepir/front.svg"
  52248. }
  52249. },
  52250. side: {
  52251. height: math.unit(6 + 2/12, "feet"),
  52252. weight: math.unit(500, "lb"),
  52253. preyCapacity: math.unit(4, "people"),
  52254. name: "Side",
  52255. image: {
  52256. source: "./media/characters/yepir/side.svg"
  52257. }
  52258. },
  52259. paw: {
  52260. height: math.unit(1.05, "feet"),
  52261. name: "Paw",
  52262. image: {
  52263. source: "./media/characters/yepir/paw.svg"
  52264. }
  52265. },
  52266. },
  52267. [
  52268. {
  52269. name: "Normal",
  52270. height: math.unit(6 + 2/12, "feet"),
  52271. default: true
  52272. },
  52273. ]
  52274. ))
  52275. characterMakers.push(() => makeCharacter(
  52276. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52277. {
  52278. front: {
  52279. height: math.unit(5 + 4/12, "feet"),
  52280. name: "Front",
  52281. image: {
  52282. source: "./media/characters/russec/front.svg",
  52283. extra: 1926/1626,
  52284. bottom: 72/1998
  52285. }
  52286. },
  52287. back: {
  52288. height: math.unit(5 + 4/12, "feet"),
  52289. name: "Back",
  52290. image: {
  52291. source: "./media/characters/russec/back.svg",
  52292. extra: 1910/1591,
  52293. bottom: 48/1958
  52294. }
  52295. },
  52296. },
  52297. [
  52298. {
  52299. name: "Small",
  52300. height: math.unit(5 + 4/12, "feet")
  52301. },
  52302. {
  52303. name: "Normal",
  52304. height: math.unit(72, "feet"),
  52305. default: true
  52306. },
  52307. ]
  52308. ))
  52309. characterMakers.push(() => makeCharacter(
  52310. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52311. {
  52312. side: {
  52313. height: math.unit(12, "feet"),
  52314. name: "Side",
  52315. image: {
  52316. source: "./media/characters/cianus/side.svg",
  52317. extra: 808/526,
  52318. bottom: 61/869
  52319. }
  52320. },
  52321. },
  52322. [
  52323. {
  52324. name: "Normal",
  52325. height: math.unit(12, "feet"),
  52326. default: true
  52327. },
  52328. ]
  52329. ))
  52330. characterMakers.push(() => makeCharacter(
  52331. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52332. {
  52333. front: {
  52334. height: math.unit(9 + 6/12, "feet"),
  52335. weight: math.unit(300, "lb"),
  52336. name: "Front",
  52337. image: {
  52338. source: "./media/characters/ahab/front.svg",
  52339. extra: 1897/1868,
  52340. bottom: 121/2018
  52341. }
  52342. },
  52343. frontNsfw: {
  52344. height: math.unit(9 + 6/12, "feet"),
  52345. weight: math.unit(300, "lb"),
  52346. name: "Front-nsfw",
  52347. image: {
  52348. source: "./media/characters/ahab/front-nsfw.svg",
  52349. extra: 1897/1868,
  52350. bottom: 121/2018
  52351. }
  52352. },
  52353. },
  52354. [
  52355. {
  52356. name: "Normal",
  52357. height: math.unit(9 + 6/12, "feet")
  52358. },
  52359. {
  52360. name: "Macro",
  52361. height: math.unit(657, "feet"),
  52362. default: true
  52363. },
  52364. ]
  52365. ))
  52366. characterMakers.push(() => makeCharacter(
  52367. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52368. {
  52369. front: {
  52370. height: math.unit(2.69, "meters"),
  52371. weight: math.unit(132, "kg"),
  52372. name: "Front",
  52373. image: {
  52374. source: "./media/characters/aarkus/front.svg",
  52375. extra: 1400/1231,
  52376. bottom: 34/1434
  52377. }
  52378. },
  52379. back: {
  52380. height: math.unit(2.69, "meters"),
  52381. weight: math.unit(132, "kg"),
  52382. name: "Back",
  52383. image: {
  52384. source: "./media/characters/aarkus/back.svg",
  52385. extra: 1381/1218,
  52386. bottom: 30/1411
  52387. }
  52388. },
  52389. frontNsfw: {
  52390. height: math.unit(2.69, "meters"),
  52391. weight: math.unit(132, "kg"),
  52392. name: "Front (NSFW)",
  52393. image: {
  52394. source: "./media/characters/aarkus/front-nsfw.svg",
  52395. extra: 1400/1231,
  52396. bottom: 34/1434
  52397. }
  52398. },
  52399. foot: {
  52400. height: math.unit(1.45, "feet"),
  52401. name: "Foot",
  52402. image: {
  52403. source: "./media/characters/aarkus/foot.svg"
  52404. }
  52405. },
  52406. head: {
  52407. height: math.unit(2.85, "feet"),
  52408. name: "Head",
  52409. image: {
  52410. source: "./media/characters/aarkus/head.svg"
  52411. }
  52412. },
  52413. headAlt: {
  52414. height: math.unit(3.07, "feet"),
  52415. name: "Head (Alt)",
  52416. image: {
  52417. source: "./media/characters/aarkus/head-alt.svg"
  52418. }
  52419. },
  52420. mouth: {
  52421. height: math.unit(1.25, "feet"),
  52422. name: "Mouth",
  52423. image: {
  52424. source: "./media/characters/aarkus/mouth.svg"
  52425. }
  52426. },
  52427. dick: {
  52428. height: math.unit(1.77, "feet"),
  52429. name: "Dick",
  52430. image: {
  52431. source: "./media/characters/aarkus/dick.svg"
  52432. }
  52433. },
  52434. },
  52435. [
  52436. {
  52437. name: "Normal",
  52438. height: math.unit(2.69, "meters"),
  52439. default: true
  52440. },
  52441. {
  52442. name: "Macro",
  52443. height: math.unit(269, "meters")
  52444. },
  52445. {
  52446. name: "Macro+",
  52447. height: math.unit(672.5, "meters")
  52448. },
  52449. {
  52450. name: "Megamacro",
  52451. height: math.unit(2.017, "km")
  52452. },
  52453. ]
  52454. ))
  52455. characterMakers.push(() => makeCharacter(
  52456. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52457. {
  52458. front: {
  52459. height: math.unit(23.47, "cm"),
  52460. weight: math.unit(600, "grams"),
  52461. name: "Front",
  52462. image: {
  52463. source: "./media/characters/diode/front.svg",
  52464. extra: 1778/1396,
  52465. bottom: 95/1873
  52466. }
  52467. },
  52468. side: {
  52469. height: math.unit(23.47, "cm"),
  52470. weight: math.unit(600, "grams"),
  52471. name: "Side",
  52472. image: {
  52473. source: "./media/characters/diode/side.svg",
  52474. extra: 1831/1404,
  52475. bottom: 86/1917
  52476. }
  52477. },
  52478. wings: {
  52479. height: math.unit(0.683, "feet"),
  52480. name: "Wings",
  52481. image: {
  52482. source: "./media/characters/diode/wings.svg"
  52483. }
  52484. },
  52485. },
  52486. [
  52487. {
  52488. name: "Normal",
  52489. height: math.unit(23.47, "cm"),
  52490. default: true
  52491. },
  52492. ]
  52493. ))
  52494. characterMakers.push(() => makeCharacter(
  52495. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52496. {
  52497. front: {
  52498. height: math.unit(6 + 3/12, "feet"),
  52499. weight: math.unit(250, "lb"),
  52500. name: "Front",
  52501. image: {
  52502. source: "./media/characters/reika/front.svg",
  52503. extra: 1120/1078,
  52504. bottom: 86/1206
  52505. }
  52506. },
  52507. },
  52508. [
  52509. {
  52510. name: "Normal",
  52511. height: math.unit(6 + 3/12, "feet"),
  52512. default: true
  52513. },
  52514. ]
  52515. ))
  52516. characterMakers.push(() => makeCharacter(
  52517. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52518. {
  52519. front: {
  52520. height: math.unit(16 + 8/12, "feet"),
  52521. weight: math.unit(9000, "lb"),
  52522. name: "Front",
  52523. image: {
  52524. source: "./media/characters/lokuto-takama/front.svg",
  52525. extra: 1774/1632,
  52526. bottom: 147/1921
  52527. },
  52528. extraAttributes: {
  52529. "bustWidth": {
  52530. name: "Bust Width",
  52531. power: 1,
  52532. type: "length",
  52533. base: math.unit(2.4, "meters")
  52534. },
  52535. "breastWeight": {
  52536. name: "Breast Weight",
  52537. power: 3,
  52538. type: "mass",
  52539. base: math.unit(1000, "kg")
  52540. },
  52541. }
  52542. },
  52543. },
  52544. [
  52545. {
  52546. name: "Normal",
  52547. height: math.unit(16 + 8/12, "feet"),
  52548. default: true
  52549. },
  52550. ]
  52551. ))
  52552. characterMakers.push(() => makeCharacter(
  52553. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52554. {
  52555. front: {
  52556. height: math.unit(10, "cm"),
  52557. weight: math.unit(850, "grams"),
  52558. name: "Front",
  52559. image: {
  52560. source: "./media/characters/owak-bone/front.svg",
  52561. extra: 1965/1801,
  52562. bottom: 31/1996
  52563. }
  52564. },
  52565. },
  52566. [
  52567. {
  52568. name: "Normal",
  52569. height: math.unit(10, "cm"),
  52570. default: true
  52571. },
  52572. ]
  52573. ))
  52574. characterMakers.push(() => makeCharacter(
  52575. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52576. {
  52577. front: {
  52578. height: math.unit(2 + 6/12, "feet"),
  52579. weight: math.unit(9, "lb"),
  52580. name: "Front",
  52581. image: {
  52582. source: "./media/characters/muffin/front.svg",
  52583. extra: 1220/1195,
  52584. bottom: 84/1304
  52585. }
  52586. },
  52587. },
  52588. [
  52589. {
  52590. name: "Normal",
  52591. height: math.unit(2 + 6/12, "feet"),
  52592. default: true
  52593. },
  52594. ]
  52595. ))
  52596. characterMakers.push(() => makeCharacter(
  52597. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52598. {
  52599. front: {
  52600. height: math.unit(7, "feet"),
  52601. name: "Front",
  52602. image: {
  52603. source: "./media/characters/chimera/front.svg",
  52604. extra: 1752/1614,
  52605. bottom: 68/1820
  52606. }
  52607. },
  52608. },
  52609. [
  52610. {
  52611. name: "Normal",
  52612. height: math.unit(7, "feet")
  52613. },
  52614. {
  52615. name: "Gigamacro",
  52616. height: math.unit(2.9, "gigameters"),
  52617. default: true
  52618. },
  52619. {
  52620. name: "Universal",
  52621. height: math.unit(1.56e26, "yottameters")
  52622. },
  52623. ]
  52624. ))
  52625. characterMakers.push(() => makeCharacter(
  52626. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52627. {
  52628. front: {
  52629. height: math.unit(3, "feet"),
  52630. weight: math.unit(20, "lb"),
  52631. name: "Front",
  52632. image: {
  52633. source: "./media/characters/kit-fennec-fox/front.svg",
  52634. extra: 1027/932,
  52635. bottom: 16/1043
  52636. }
  52637. },
  52638. back: {
  52639. height: math.unit(3, "feet"),
  52640. weight: math.unit(20, "lb"),
  52641. name: "Back",
  52642. image: {
  52643. source: "./media/characters/kit-fennec-fox/back.svg",
  52644. extra: 1027/932,
  52645. bottom: 16/1043
  52646. }
  52647. },
  52648. },
  52649. [
  52650. {
  52651. name: "Normal",
  52652. height: math.unit(3, "feet"),
  52653. default: true
  52654. },
  52655. ]
  52656. ))
  52657. characterMakers.push(() => makeCharacter(
  52658. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52659. {
  52660. front: {
  52661. height: math.unit(167, "cm"),
  52662. name: "Front",
  52663. image: {
  52664. source: "./media/characters/blue-otter/front.svg",
  52665. extra: 1951/1920,
  52666. bottom: 31/1982
  52667. }
  52668. },
  52669. },
  52670. [
  52671. {
  52672. name: "Otter-Sized",
  52673. height: math.unit(100, "cm")
  52674. },
  52675. {
  52676. name: "Normal",
  52677. height: math.unit(167, "cm"),
  52678. default: true
  52679. },
  52680. ]
  52681. ))
  52682. characterMakers.push(() => makeCharacter(
  52683. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52684. {
  52685. front: {
  52686. height: math.unit(4 + 4/12, "feet"),
  52687. name: "Front",
  52688. image: {
  52689. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52690. extra: 1072/1067,
  52691. bottom: 117/1189
  52692. }
  52693. },
  52694. back: {
  52695. height: math.unit(4 + 4/12, "feet"),
  52696. name: "Back",
  52697. image: {
  52698. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52699. extra: 1135/1129,
  52700. bottom: 57/1192
  52701. }
  52702. },
  52703. head: {
  52704. height: math.unit(1.77, "feet"),
  52705. name: "Head",
  52706. image: {
  52707. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52708. }
  52709. },
  52710. },
  52711. [
  52712. {
  52713. name: "Normal",
  52714. height: math.unit(4 + 4/12, "feet"),
  52715. default: true
  52716. },
  52717. ]
  52718. ))
  52719. characterMakers.push(() => makeCharacter(
  52720. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52721. {
  52722. front: {
  52723. height: math.unit(2, "inches"),
  52724. name: "Front",
  52725. image: {
  52726. source: "./media/characters/carley-hartford/front.svg",
  52727. extra: 1035/988,
  52728. bottom: 23/1058
  52729. }
  52730. },
  52731. back: {
  52732. height: math.unit(2, "inches"),
  52733. name: "Back",
  52734. image: {
  52735. source: "./media/characters/carley-hartford/back.svg",
  52736. extra: 1035/988,
  52737. bottom: 23/1058
  52738. }
  52739. },
  52740. dressed: {
  52741. height: math.unit(2, "inches"),
  52742. name: "Dressed",
  52743. image: {
  52744. source: "./media/characters/carley-hartford/dressed.svg",
  52745. extra: 651/620,
  52746. bottom: 0/651
  52747. }
  52748. },
  52749. },
  52750. [
  52751. {
  52752. name: "Micro",
  52753. height: math.unit(2, "inches"),
  52754. default: true
  52755. },
  52756. {
  52757. name: "Macro",
  52758. height: math.unit(6 + 3/12, "feet")
  52759. },
  52760. ]
  52761. ))
  52762. characterMakers.push(() => makeCharacter(
  52763. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52764. {
  52765. front: {
  52766. height: math.unit(2 + 3/12, "feet"),
  52767. weight: math.unit(15 + 7/16, "lb"),
  52768. name: "Front",
  52769. image: {
  52770. source: "./media/characters/duke/front.svg",
  52771. extra: 910/815,
  52772. bottom: 30/940
  52773. }
  52774. },
  52775. },
  52776. [
  52777. {
  52778. name: "Normal",
  52779. height: math.unit(2 + 3/12, "feet"),
  52780. default: true
  52781. },
  52782. ]
  52783. ))
  52784. characterMakers.push(() => makeCharacter(
  52785. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52786. {
  52787. front: {
  52788. height: math.unit(5 + 4/12, "feet"),
  52789. weight: math.unit(156, "lb"),
  52790. name: "Front",
  52791. image: {
  52792. source: "./media/characters/dein/front.svg",
  52793. extra: 855/815,
  52794. bottom: 48/903
  52795. }
  52796. },
  52797. side: {
  52798. height: math.unit(5 + 4/12, "feet"),
  52799. weight: math.unit(156, "lb"),
  52800. name: "side",
  52801. image: {
  52802. source: "./media/characters/dein/side.svg",
  52803. extra: 846/803,
  52804. bottom: 25/871
  52805. }
  52806. },
  52807. maw: {
  52808. height: math.unit(1.45, "feet"),
  52809. name: "Maw",
  52810. image: {
  52811. source: "./media/characters/dein/maw.svg"
  52812. }
  52813. },
  52814. },
  52815. [
  52816. {
  52817. name: "Ferret Sized",
  52818. height: math.unit(2 + 5/12, "feet")
  52819. },
  52820. {
  52821. name: "Normal",
  52822. height: math.unit(5 + 4/12, "feet"),
  52823. default: true
  52824. },
  52825. ]
  52826. ))
  52827. characterMakers.push(() => makeCharacter(
  52828. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52829. {
  52830. front: {
  52831. height: math.unit(84 + 8/12, "feet"),
  52832. weight: math.unit(942180, "lb"),
  52833. name: "Front",
  52834. image: {
  52835. source: "./media/characters/daurine-arima/front.svg",
  52836. extra: 1989/1782,
  52837. bottom: 37/2026
  52838. }
  52839. },
  52840. side: {
  52841. height: math.unit(84 + 8/12, "feet"),
  52842. weight: math.unit(942180, "lb"),
  52843. name: "Side",
  52844. image: {
  52845. source: "./media/characters/daurine-arima/side.svg",
  52846. extra: 1997/1790,
  52847. bottom: 21/2018
  52848. }
  52849. },
  52850. back: {
  52851. height: math.unit(84 + 8/12, "feet"),
  52852. weight: math.unit(942180, "lb"),
  52853. name: "Back",
  52854. image: {
  52855. source: "./media/characters/daurine-arima/back.svg",
  52856. extra: 1992/1800,
  52857. bottom: 12/2004
  52858. }
  52859. },
  52860. head: {
  52861. height: math.unit(15.5, "feet"),
  52862. name: "Head",
  52863. image: {
  52864. source: "./media/characters/daurine-arima/head.svg"
  52865. }
  52866. },
  52867. headAlt: {
  52868. height: math.unit(19.19, "feet"),
  52869. name: "Head (Alt)",
  52870. image: {
  52871. source: "./media/characters/daurine-arima/head-alt.svg"
  52872. }
  52873. },
  52874. },
  52875. [
  52876. {
  52877. name: "Minimum height",
  52878. height: math.unit(8 + 10/12, "feet")
  52879. },
  52880. {
  52881. name: "Comfort height",
  52882. height: math.unit(19 + 6 /12, "feet")
  52883. },
  52884. {
  52885. name: "\"Normal\" height",
  52886. height: math.unit(28 + 10/12, "feet")
  52887. },
  52888. {
  52889. name: "Base height",
  52890. height: math.unit(84 + 8/12, "feet"),
  52891. default: true
  52892. },
  52893. {
  52894. name: "Mini-macro",
  52895. height: math.unit(2360, "feet")
  52896. },
  52897. {
  52898. name: "Macro",
  52899. height: math.unit(10, "miles")
  52900. },
  52901. {
  52902. name: "Goddess",
  52903. height: math.unit(9.99e40, "yottameters")
  52904. },
  52905. ]
  52906. ))
  52907. characterMakers.push(() => makeCharacter(
  52908. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52909. {
  52910. front: {
  52911. height: math.unit(2.3, "meters"),
  52912. name: "Front",
  52913. image: {
  52914. source: "./media/characters/cilenomon/front.svg",
  52915. extra: 1963/1778,
  52916. bottom: 54/2017
  52917. }
  52918. },
  52919. },
  52920. [
  52921. {
  52922. name: "Normal",
  52923. height: math.unit(2.3, "meters"),
  52924. default: true
  52925. },
  52926. {
  52927. name: "Big",
  52928. height: math.unit(5, "meters")
  52929. },
  52930. {
  52931. name: "Macro",
  52932. height: math.unit(30, "meters")
  52933. },
  52934. {
  52935. name: "True",
  52936. height: math.unit(1, "universe")
  52937. },
  52938. ]
  52939. ))
  52940. characterMakers.push(() => makeCharacter(
  52941. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52942. {
  52943. front: {
  52944. height: math.unit(5, "feet"),
  52945. name: "Front",
  52946. image: {
  52947. source: "./media/characters/sen-mink/front.svg",
  52948. extra: 1727/1675,
  52949. bottom: 35/1762
  52950. }
  52951. },
  52952. },
  52953. [
  52954. {
  52955. name: "Normal",
  52956. height: math.unit(5, "feet"),
  52957. default: true
  52958. },
  52959. ]
  52960. ))
  52961. characterMakers.push(() => makeCharacter(
  52962. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52963. {
  52964. front: {
  52965. height: math.unit(5.42999, "feet"),
  52966. weight: math.unit(100, "lb"),
  52967. name: "Front",
  52968. image: {
  52969. source: "./media/characters/ophois/front.svg",
  52970. extra: 1429/1286,
  52971. bottom: 60/1489
  52972. }
  52973. },
  52974. },
  52975. [
  52976. {
  52977. name: "Normal",
  52978. height: math.unit(5.42999, "feet"),
  52979. default: true
  52980. },
  52981. ]
  52982. ))
  52983. characterMakers.push(() => makeCharacter(
  52984. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52985. {
  52986. front: {
  52987. height: math.unit(2, "meters"),
  52988. name: "Front",
  52989. image: {
  52990. source: "./media/characters/riley/front.svg",
  52991. extra: 1779/1754,
  52992. bottom: 139/1918
  52993. }
  52994. },
  52995. },
  52996. [
  52997. {
  52998. name: "Normal",
  52999. height: math.unit(2, "meters"),
  53000. default: true
  53001. },
  53002. ]
  53003. ))
  53004. characterMakers.push(() => makeCharacter(
  53005. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53006. {
  53007. front: {
  53008. height: math.unit(6 + 2/12, "feet"),
  53009. weight: math.unit(195, "lb"),
  53010. preyCapacity: math.unit(6, "people"),
  53011. name: "Front",
  53012. image: {
  53013. source: "./media/characters/shuken-flash/front.svg",
  53014. extra: 1905/1739,
  53015. bottom: 65/1970
  53016. }
  53017. },
  53018. back: {
  53019. height: math.unit(6 + 2/12, "feet"),
  53020. weight: math.unit(195, "lb"),
  53021. preyCapacity: math.unit(6, "people"),
  53022. name: "Back",
  53023. image: {
  53024. source: "./media/characters/shuken-flash/back.svg",
  53025. extra: 1912/1751,
  53026. bottom: 13/1925
  53027. }
  53028. },
  53029. },
  53030. [
  53031. {
  53032. name: "Normal",
  53033. height: math.unit(6 + 2/12, "feet"),
  53034. default: true
  53035. },
  53036. ]
  53037. ))
  53038. characterMakers.push(() => makeCharacter(
  53039. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53040. {
  53041. front: {
  53042. height: math.unit(5 + 9/12, "feet"),
  53043. weight: math.unit(150, "lb"),
  53044. name: "Front",
  53045. image: {
  53046. source: "./media/characters/plat/front.svg",
  53047. extra: 1816/1703,
  53048. bottom: 43/1859
  53049. }
  53050. },
  53051. side: {
  53052. height: math.unit(5 + 9/12, "feet"),
  53053. weight: math.unit(300, "lb"),
  53054. name: "Side",
  53055. image: {
  53056. source: "./media/characters/plat/side.svg",
  53057. extra: 1824/1699,
  53058. bottom: 18/1842
  53059. }
  53060. },
  53061. },
  53062. [
  53063. {
  53064. name: "Normal",
  53065. height: math.unit(5 + 9/12, "feet"),
  53066. default: true
  53067. },
  53068. ]
  53069. ))
  53070. characterMakers.push(() => makeCharacter(
  53071. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53072. {
  53073. front: {
  53074. height: math.unit(9, "feet"),
  53075. weight: math.unit(1800, "lb"),
  53076. name: "Front",
  53077. image: {
  53078. source: "./media/characters/elaine/front.svg",
  53079. extra: 1833/1354,
  53080. bottom: 25/1858
  53081. }
  53082. },
  53083. back: {
  53084. height: math.unit(8.8, "feet"),
  53085. weight: math.unit(1800, "lb"),
  53086. name: "Back",
  53087. image: {
  53088. source: "./media/characters/elaine/back.svg",
  53089. extra: 1641/1233,
  53090. bottom: 53/1694
  53091. }
  53092. },
  53093. },
  53094. [
  53095. {
  53096. name: "Normal",
  53097. height: math.unit(9, "feet"),
  53098. default: true
  53099. },
  53100. ]
  53101. ))
  53102. characterMakers.push(() => makeCharacter(
  53103. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53104. {
  53105. front: {
  53106. height: math.unit(17 + 9/12, "feet"),
  53107. weight: math.unit(8000, "lb"),
  53108. name: "Front",
  53109. image: {
  53110. source: "./media/characters/vera-raven/front.svg",
  53111. extra: 1457/1412,
  53112. bottom: 121/1578
  53113. }
  53114. },
  53115. side: {
  53116. height: math.unit(17 + 9/12, "feet"),
  53117. weight: math.unit(8000, "lb"),
  53118. name: "Side",
  53119. image: {
  53120. source: "./media/characters/vera-raven/side.svg",
  53121. extra: 1510/1464,
  53122. bottom: 54/1564
  53123. }
  53124. },
  53125. },
  53126. [
  53127. {
  53128. name: "Normal",
  53129. height: math.unit(17 + 9/12, "feet"),
  53130. default: true
  53131. },
  53132. ]
  53133. ))
  53134. characterMakers.push(() => makeCharacter(
  53135. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53136. {
  53137. dressed: {
  53138. height: math.unit(6 + 9/12, "feet"),
  53139. name: "Dressed",
  53140. image: {
  53141. source: "./media/characters/nakisha/dressed.svg",
  53142. extra: 1909/1757,
  53143. bottom: 48/1957
  53144. }
  53145. },
  53146. nude: {
  53147. height: math.unit(6 + 9/12, "feet"),
  53148. name: "Nude",
  53149. image: {
  53150. source: "./media/characters/nakisha/nude.svg",
  53151. extra: 1917/1765,
  53152. bottom: 34/1951
  53153. }
  53154. },
  53155. },
  53156. [
  53157. {
  53158. name: "Normal",
  53159. height: math.unit(6 + 9/12, "feet"),
  53160. default: true
  53161. },
  53162. ]
  53163. ))
  53164. characterMakers.push(() => makeCharacter(
  53165. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53166. {
  53167. front: {
  53168. height: math.unit(87, "meters"),
  53169. name: "Front",
  53170. image: {
  53171. source: "./media/characters/serafin/front.svg",
  53172. extra: 1919/1776,
  53173. bottom: 65/1984
  53174. }
  53175. },
  53176. },
  53177. [
  53178. {
  53179. name: "Normal",
  53180. height: math.unit(87, "meters"),
  53181. default: true
  53182. },
  53183. ]
  53184. ))
  53185. characterMakers.push(() => makeCharacter(
  53186. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53187. {
  53188. front: {
  53189. height: math.unit(6, "feet"),
  53190. weight: math.unit(200, "lb"),
  53191. name: "Front",
  53192. image: {
  53193. source: "./media/characters/poptart/front.svg",
  53194. extra: 615/583,
  53195. bottom: 23/638
  53196. }
  53197. },
  53198. back: {
  53199. height: math.unit(6, "feet"),
  53200. weight: math.unit(200, "lb"),
  53201. name: "Back",
  53202. image: {
  53203. source: "./media/characters/poptart/back.svg",
  53204. extra: 617/584,
  53205. bottom: 22/639
  53206. }
  53207. },
  53208. frontNsfw: {
  53209. height: math.unit(6, "feet"),
  53210. weight: math.unit(200, "lb"),
  53211. name: "Front (NSFW)",
  53212. image: {
  53213. source: "./media/characters/poptart/front-nsfw.svg",
  53214. extra: 615/583,
  53215. bottom: 23/638
  53216. }
  53217. },
  53218. backNsfw: {
  53219. height: math.unit(6, "feet"),
  53220. weight: math.unit(200, "lb"),
  53221. name: "Back (NSFW)",
  53222. image: {
  53223. source: "./media/characters/poptart/back-nsfw.svg",
  53224. extra: 617/584,
  53225. bottom: 22/639
  53226. }
  53227. },
  53228. hand: {
  53229. height: math.unit(1.14, "feet"),
  53230. name: "Hand",
  53231. image: {
  53232. source: "./media/characters/poptart/hand.svg"
  53233. }
  53234. },
  53235. foot: {
  53236. height: math.unit(1.5, "feet"),
  53237. name: "Foot",
  53238. image: {
  53239. source: "./media/characters/poptart/foot.svg"
  53240. }
  53241. },
  53242. },
  53243. [
  53244. {
  53245. name: "Normal",
  53246. height: math.unit(6, "feet"),
  53247. default: true
  53248. },
  53249. {
  53250. name: "Grande",
  53251. height: math.unit(350, "feet")
  53252. },
  53253. {
  53254. name: "Massif",
  53255. height: math.unit(967, "feet")
  53256. },
  53257. ]
  53258. ))
  53259. characterMakers.push(() => makeCharacter(
  53260. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53261. {
  53262. hyenaSide: {
  53263. height: math.unit(120, "cm"),
  53264. weight: math.unit(120, "lb"),
  53265. name: "Side",
  53266. image: {
  53267. source: "./media/characters/trance/hyena-side.svg",
  53268. extra: 998/904,
  53269. bottom: 76/1074
  53270. }
  53271. },
  53272. },
  53273. [
  53274. {
  53275. name: "Normal",
  53276. height: math.unit(120, "cm"),
  53277. default: true
  53278. },
  53279. {
  53280. name: "Dire",
  53281. height: math.unit(230, "cm")
  53282. },
  53283. {
  53284. name: "Macro",
  53285. height: math.unit(37, "feet")
  53286. },
  53287. ]
  53288. ))
  53289. characterMakers.push(() => makeCharacter(
  53290. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53291. {
  53292. front: {
  53293. height: math.unit(6 + 3/12, "feet"),
  53294. name: "Front",
  53295. image: {
  53296. source: "./media/characters/michael-berretta/front.svg",
  53297. extra: 515/494,
  53298. bottom: 20/535
  53299. }
  53300. },
  53301. back: {
  53302. height: math.unit(6 + 3/12, "feet"),
  53303. name: "Back",
  53304. image: {
  53305. source: "./media/characters/michael-berretta/back.svg",
  53306. extra: 520/497,
  53307. bottom: 21/541
  53308. }
  53309. },
  53310. frontNsfw: {
  53311. height: math.unit(6 + 3/12, "feet"),
  53312. name: "Front (NSFW)",
  53313. image: {
  53314. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53315. extra: 515/494,
  53316. bottom: 20/535
  53317. }
  53318. },
  53319. dick: {
  53320. height: math.unit(1, "feet"),
  53321. name: "Dick",
  53322. image: {
  53323. source: "./media/characters/michael-berretta/dick.svg"
  53324. }
  53325. },
  53326. },
  53327. [
  53328. {
  53329. name: "Normal",
  53330. height: math.unit(6 + 3/12, "feet"),
  53331. default: true
  53332. },
  53333. {
  53334. name: "Big",
  53335. height: math.unit(12, "feet")
  53336. },
  53337. {
  53338. name: "Macro",
  53339. height: math.unit(187.5, "feet")
  53340. },
  53341. ]
  53342. ))
  53343. characterMakers.push(() => makeCharacter(
  53344. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53345. {
  53346. front: {
  53347. height: math.unit(9 + 9/12, "feet"),
  53348. weight: math.unit(1244, "lb"),
  53349. name: "Front",
  53350. image: {
  53351. source: "./media/characters/stella-edgecomb/front.svg",
  53352. extra: 1835/1706,
  53353. bottom: 49/1884
  53354. }
  53355. },
  53356. pen: {
  53357. height: math.unit(0.95, "feet"),
  53358. name: "Pen",
  53359. image: {
  53360. source: "./media/characters/stella-edgecomb/pen.svg"
  53361. }
  53362. },
  53363. },
  53364. [
  53365. {
  53366. name: "Cozy Bear",
  53367. height: math.unit(0.5, "inches")
  53368. },
  53369. {
  53370. name: "Normal",
  53371. height: math.unit(9 + 9/12, "feet"),
  53372. default: true
  53373. },
  53374. {
  53375. name: "Giga Bear",
  53376. height: math.unit(1, "mile")
  53377. },
  53378. {
  53379. name: "Great Bear",
  53380. height: math.unit(53, "miles")
  53381. },
  53382. {
  53383. name: "Goddess Bear",
  53384. height: math.unit(40000, "miles")
  53385. },
  53386. {
  53387. name: "Sun Bear",
  53388. height: math.unit(900000, "miles")
  53389. },
  53390. ]
  53391. ))
  53392. characterMakers.push(() => makeCharacter(
  53393. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53394. {
  53395. anthroFront: {
  53396. height: math.unit(556, "cm"),
  53397. weight: math.unit(2650, "kg"),
  53398. preyCapacity: math.unit(3, "people"),
  53399. name: "Front",
  53400. image: {
  53401. source: "./media/characters/ash´iika/front.svg",
  53402. extra: 710/673,
  53403. bottom: 15/725
  53404. },
  53405. form: "anthro",
  53406. default: true
  53407. },
  53408. anthroSide: {
  53409. height: math.unit(556, "cm"),
  53410. weight: math.unit(2650, "kg"),
  53411. preyCapacity: math.unit(3, "people"),
  53412. name: "Side",
  53413. image: {
  53414. source: "./media/characters/ash´iika/side.svg",
  53415. extra: 696/676,
  53416. bottom: 13/709
  53417. },
  53418. form: "anthro"
  53419. },
  53420. anthroDressed: {
  53421. height: math.unit(556, "cm"),
  53422. weight: math.unit(2650, "kg"),
  53423. preyCapacity: math.unit(3, "people"),
  53424. name: "Dressed",
  53425. image: {
  53426. source: "./media/characters/ash´iika/dressed.svg",
  53427. extra: 710/673,
  53428. bottom: 15/725
  53429. },
  53430. form: "anthro"
  53431. },
  53432. anthroHead: {
  53433. height: math.unit(3.5, "feet"),
  53434. name: "Head",
  53435. image: {
  53436. source: "./media/characters/ash´iika/head.svg",
  53437. extra: 348/291,
  53438. bottom: 45/393
  53439. },
  53440. form: "anthro"
  53441. },
  53442. feralSide: {
  53443. height: math.unit(870, "cm"),
  53444. weight: math.unit(17500, "kg"),
  53445. preyCapacity: math.unit(15, "people"),
  53446. name: "Side",
  53447. image: {
  53448. source: "./media/characters/ash´iika/feral.svg",
  53449. extra: 595/199,
  53450. bottom: 7/602
  53451. },
  53452. form: "feral",
  53453. default: true,
  53454. },
  53455. },
  53456. [
  53457. {
  53458. name: "Normal",
  53459. height: math.unit(556, "cm"),
  53460. default: true,
  53461. form: "anthro"
  53462. },
  53463. {
  53464. name: "Macro",
  53465. height: math.unit(88, "meters"),
  53466. form: "anthro"
  53467. },
  53468. {
  53469. name: "Normal",
  53470. height: math.unit(870, "cm"),
  53471. default: true,
  53472. form: "feral"
  53473. },
  53474. {
  53475. name: "Large",
  53476. height: math.unit(25, "meters"),
  53477. form: "feral"
  53478. },
  53479. ],
  53480. {
  53481. "anthro": {
  53482. name: "Anthro",
  53483. default: true
  53484. },
  53485. "feral": {
  53486. name: "Feral",
  53487. },
  53488. }
  53489. ))
  53490. characterMakers.push(() => makeCharacter(
  53491. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53492. {
  53493. front: {
  53494. height: math.unit(10, "feet"),
  53495. weight: math.unit(800, "lb"),
  53496. name: "Front",
  53497. image: {
  53498. source: "./media/characters/yen/front.svg",
  53499. extra: 443/411,
  53500. bottom: 6/449
  53501. }
  53502. },
  53503. sleeping: {
  53504. height: math.unit(10, "feet"),
  53505. weight: math.unit(800, "lb"),
  53506. name: "Sleeping",
  53507. image: {
  53508. source: "./media/characters/yen/sleeping.svg",
  53509. extra: 470/422,
  53510. bottom: 0/470
  53511. }
  53512. },
  53513. head: {
  53514. height: math.unit(2.2, "feet"),
  53515. name: "Head",
  53516. image: {
  53517. source: "./media/characters/yen/head.svg"
  53518. }
  53519. },
  53520. headAlt: {
  53521. height: math.unit(2.1, "feet"),
  53522. name: "Head (Alt)",
  53523. image: {
  53524. source: "./media/characters/yen/head-alt.svg"
  53525. }
  53526. },
  53527. },
  53528. [
  53529. {
  53530. name: "Normal",
  53531. height: math.unit(10, "feet"),
  53532. default: true
  53533. },
  53534. ]
  53535. ))
  53536. characterMakers.push(() => makeCharacter(
  53537. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53538. {
  53539. front: {
  53540. height: math.unit(12, "feet"),
  53541. name: "Front",
  53542. image: {
  53543. source: "./media/characters/citra/front.svg",
  53544. extra: 1950/1710,
  53545. bottom: 47/1997
  53546. }
  53547. },
  53548. },
  53549. [
  53550. {
  53551. name: "Normal",
  53552. height: math.unit(12, "feet"),
  53553. default: true
  53554. },
  53555. ]
  53556. ))
  53557. characterMakers.push(() => makeCharacter(
  53558. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53559. {
  53560. side: {
  53561. height: math.unit(7 + 10/12, "feet"),
  53562. name: "Side",
  53563. image: {
  53564. source: "./media/characters/sholstim/side.svg",
  53565. extra: 786/682,
  53566. bottom: 40/826
  53567. }
  53568. },
  53569. },
  53570. [
  53571. {
  53572. name: "Normal",
  53573. height: math.unit(7 + 10/12, "feet"),
  53574. default: true
  53575. },
  53576. ]
  53577. ))
  53578. characterMakers.push(() => makeCharacter(
  53579. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53580. {
  53581. front: {
  53582. height: math.unit(3.10, "meters"),
  53583. name: "Front",
  53584. image: {
  53585. source: "./media/characters/aggyn/front.svg",
  53586. extra: 1188/963,
  53587. bottom: 24/1212
  53588. }
  53589. },
  53590. },
  53591. [
  53592. {
  53593. name: "Normal",
  53594. height: math.unit(3.10, "meters"),
  53595. default: true
  53596. },
  53597. ]
  53598. ))
  53599. characterMakers.push(() => makeCharacter(
  53600. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53601. {
  53602. front: {
  53603. height: math.unit(7 + 5/12, "feet"),
  53604. weight: math.unit(687, "lb"),
  53605. name: "Front",
  53606. image: {
  53607. source: "./media/characters/alsandair-hergenroether/front.svg",
  53608. extra: 1251/1186,
  53609. bottom: 75/1326
  53610. }
  53611. },
  53612. back: {
  53613. height: math.unit(7 + 5/12, "feet"),
  53614. weight: math.unit(687, "lb"),
  53615. name: "Back",
  53616. image: {
  53617. source: "./media/characters/alsandair-hergenroether/back.svg",
  53618. extra: 1290/1229,
  53619. bottom: 17/1307
  53620. }
  53621. },
  53622. },
  53623. [
  53624. {
  53625. name: "Max Compression",
  53626. height: math.unit(7 + 5/12, "feet"),
  53627. default: true
  53628. },
  53629. {
  53630. name: "\"Normal\"",
  53631. height: math.unit(2, "universes")
  53632. },
  53633. ]
  53634. ))
  53635. characterMakers.push(() => makeCharacter(
  53636. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53637. {
  53638. front: {
  53639. height: math.unit(4 + 1/12, "feet"),
  53640. weight: math.unit(92, "lb"),
  53641. name: "Front",
  53642. image: {
  53643. source: "./media/characters/ie/front.svg",
  53644. extra: 1585/1352,
  53645. bottom: 91/1676
  53646. }
  53647. },
  53648. },
  53649. [
  53650. {
  53651. name: "Normal",
  53652. height: math.unit(4 + 1/12, "feet"),
  53653. default: true
  53654. },
  53655. ]
  53656. ))
  53657. characterMakers.push(() => makeCharacter(
  53658. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53659. {
  53660. anthro: {
  53661. height: math.unit(6, "feet"),
  53662. weight: math.unit(150, "lb"),
  53663. name: "Front",
  53664. image: {
  53665. source: "./media/characters/willow/anthro.svg",
  53666. extra: 1073/986,
  53667. bottom: 34/1107
  53668. },
  53669. form: "anthro",
  53670. default: true
  53671. },
  53672. taur: {
  53673. height: math.unit(6, "feet"),
  53674. weight: math.unit(150, "lb"),
  53675. name: "Side",
  53676. image: {
  53677. source: "./media/characters/willow/taur.svg",
  53678. extra: 647/512,
  53679. bottom: 136/783
  53680. },
  53681. form: "taur",
  53682. default: true
  53683. },
  53684. },
  53685. [
  53686. {
  53687. name: "Humanoid",
  53688. height: math.unit(2.7, "meters"),
  53689. form: "anthro"
  53690. },
  53691. {
  53692. name: "Normal",
  53693. height: math.unit(9, "meters"),
  53694. form: "anthro",
  53695. default: true
  53696. },
  53697. {
  53698. name: "Humanoid",
  53699. height: math.unit(2.1, "meters"),
  53700. form: "taur"
  53701. },
  53702. {
  53703. name: "Normal",
  53704. height: math.unit(7, "meters"),
  53705. form: "taur",
  53706. default: true
  53707. },
  53708. ],
  53709. {
  53710. "anthro": {
  53711. name: "Anthro",
  53712. default: true
  53713. },
  53714. "taur": {
  53715. name: "Taur",
  53716. },
  53717. }
  53718. ))
  53719. characterMakers.push(() => makeCharacter(
  53720. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53721. {
  53722. front: {
  53723. height: math.unit(2 + 5/12, "feet"),
  53724. name: "Front",
  53725. image: {
  53726. source: "./media/characters/kyan/front.svg",
  53727. extra: 460/334,
  53728. bottom: 23/483
  53729. },
  53730. extraAttributes: {
  53731. "toeLength": {
  53732. name: "Toe Length",
  53733. power: 1,
  53734. type: "length",
  53735. base: math.unit(7, "cm")
  53736. },
  53737. "toeclawLength": {
  53738. name: "Toeclaw Length",
  53739. power: 1,
  53740. type: "length",
  53741. base: math.unit(4.7, "cm")
  53742. },
  53743. "earHeight": {
  53744. name: "Ear Height",
  53745. power: 1,
  53746. type: "length",
  53747. base: math.unit(14.1, "cm")
  53748. },
  53749. }
  53750. },
  53751. paws: {
  53752. height: math.unit(0.45, "feet"),
  53753. name: "Paws",
  53754. image: {
  53755. source: "./media/characters/kyan/paws.svg",
  53756. extra: 581/581,
  53757. bottom: 114/695
  53758. }
  53759. },
  53760. },
  53761. [
  53762. {
  53763. name: "Normal",
  53764. height: math.unit(2 + 5/12, "feet"),
  53765. default: true
  53766. },
  53767. ]
  53768. ))
  53769. characterMakers.push(() => makeCharacter(
  53770. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53771. {
  53772. front: {
  53773. height: math.unit(2 + 2/3, "feet"),
  53774. name: "Front",
  53775. image: {
  53776. source: "./media/characters/xazzon/front.svg",
  53777. extra: 1109/984,
  53778. bottom: 42/1151
  53779. }
  53780. },
  53781. back: {
  53782. height: math.unit(2 + 2/3, "feet"),
  53783. name: "Back",
  53784. image: {
  53785. source: "./media/characters/xazzon/back.svg",
  53786. extra: 1095/971,
  53787. bottom: 23/1118
  53788. }
  53789. },
  53790. },
  53791. [
  53792. {
  53793. name: "Normal",
  53794. height: math.unit(2 + 2/3, "feet"),
  53795. default: true
  53796. },
  53797. ]
  53798. ))
  53799. characterMakers.push(() => makeCharacter(
  53800. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53801. {
  53802. dressed: {
  53803. height: math.unit(5 + 7/12, "feet"),
  53804. weight: math.unit(173, "lb"),
  53805. name: "Dressed",
  53806. image: {
  53807. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53808. extra: 3262/2862,
  53809. bottom: 188/3450
  53810. }
  53811. },
  53812. undressed: {
  53813. height: math.unit(5 + 7/12, "feet"),
  53814. weight: math.unit(173, "lb"),
  53815. name: "Undressed",
  53816. image: {
  53817. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53818. extra: 3262/2862,
  53819. bottom: 188/3450
  53820. }
  53821. },
  53822. },
  53823. [
  53824. {
  53825. name: "The void",
  53826. height: math.unit(7.29193e-34, "angstroms")
  53827. },
  53828. {
  53829. name: "Uh-Oh.",
  53830. height: math.unit(5.734e-7, "angstroms")
  53831. },
  53832. {
  53833. name: "Pico",
  53834. height: math.unit(0.876, "angstroms")
  53835. },
  53836. {
  53837. name: "Nano",
  53838. height: math.unit(0.000134200, "mm")
  53839. },
  53840. {
  53841. name: "Micro",
  53842. height: math.unit(0.0673020, "mm")
  53843. },
  53844. {
  53845. name: "Tiny",
  53846. height: math.unit(2.4, "mm")
  53847. },
  53848. {
  53849. name: "Actual Normal",
  53850. height: math.unit(3, "inches"),
  53851. default: true
  53852. },
  53853. {
  53854. name: "Normal",
  53855. height: math.unit(5 + 8/12, "feet")
  53856. },
  53857. {
  53858. name: "Giant",
  53859. height: math.unit(12, "feet")
  53860. },
  53861. {
  53862. name: "City Ruler",
  53863. height: math.unit(270, "meters")
  53864. },
  53865. {
  53866. name: "Giga",
  53867. height: math.unit(1117.6, "km")
  53868. },
  53869. {
  53870. name: "All-Powerful Queen",
  53871. height: math.unit(70.8, "gigameters")
  53872. },
  53873. {
  53874. name: "'Goddess'",
  53875. height: math.unit(600, "yottameters")
  53876. },
  53877. {
  53878. name: "Biggest!",
  53879. height: math.unit(4.23e5, "yottameters")
  53880. },
  53881. ]
  53882. ))
  53883. characterMakers.push(() => makeCharacter(
  53884. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53885. {
  53886. front: {
  53887. height: math.unit(8, "feet"),
  53888. weight: math.unit(300, "lb"),
  53889. name: "Front",
  53890. image: {
  53891. source: "./media/characters/khyla-shadowsong/front.svg",
  53892. extra: 861/798,
  53893. bottom: 32/893
  53894. }
  53895. },
  53896. side: {
  53897. height: math.unit(8, "feet"),
  53898. weight: math.unit(300, "lb"),
  53899. name: "Side",
  53900. image: {
  53901. source: "./media/characters/khyla-shadowsong/side.svg",
  53902. extra: 790/750,
  53903. bottom: 87/877
  53904. }
  53905. },
  53906. back: {
  53907. height: math.unit(8, "feet"),
  53908. weight: math.unit(300, "lb"),
  53909. name: "Back",
  53910. image: {
  53911. source: "./media/characters/khyla-shadowsong/back.svg",
  53912. extra: 855/808,
  53913. bottom: 14/869
  53914. }
  53915. },
  53916. head: {
  53917. height: math.unit(2.7, "feet"),
  53918. name: "Head",
  53919. image: {
  53920. source: "./media/characters/khyla-shadowsong/head.svg"
  53921. }
  53922. },
  53923. },
  53924. [
  53925. {
  53926. name: "Micro",
  53927. height: math.unit(6, "inches")
  53928. },
  53929. {
  53930. name: "Normal",
  53931. height: math.unit(8, "feet"),
  53932. default: true
  53933. },
  53934. ]
  53935. ))
  53936. characterMakers.push(() => makeCharacter(
  53937. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53938. {
  53939. hyperFront: {
  53940. height: math.unit(9 + 4/12, "feet"),
  53941. weight: math.unit(2000, "lb"),
  53942. name: "Front",
  53943. image: {
  53944. source: "./media/characters/tiden/hyper-front.svg",
  53945. extra: 400/382,
  53946. bottom: 6/406
  53947. },
  53948. form: "hyper",
  53949. },
  53950. regularFront: {
  53951. height: math.unit(7 + 10/12, "feet"),
  53952. weight: math.unit(470, "lb"),
  53953. name: "Front",
  53954. image: {
  53955. source: "./media/characters/tiden/regular-front.svg",
  53956. extra: 468/442,
  53957. bottom: 6/474
  53958. },
  53959. form: "regular",
  53960. },
  53961. },
  53962. [
  53963. {
  53964. name: "Normal",
  53965. height: math.unit(9 + 4/12, "feet"),
  53966. default: true,
  53967. form: "hyper"
  53968. },
  53969. {
  53970. name: "Normal",
  53971. height: math.unit(7 + 10/12, "feet"),
  53972. default: true,
  53973. form: "regular"
  53974. },
  53975. ],
  53976. {
  53977. "hyper": {
  53978. name: "Hyper",
  53979. default: true
  53980. },
  53981. "regular": {
  53982. name: "Regular",
  53983. },
  53984. }
  53985. ))
  53986. characterMakers.push(() => makeCharacter(
  53987. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53988. {
  53989. side: {
  53990. height: math.unit(6, "feet"),
  53991. weight: math.unit(150, "lb"),
  53992. name: "Side",
  53993. image: {
  53994. source: "./media/characters/jason-crowe/side.svg",
  53995. extra: 1771/766,
  53996. bottom: 219/1990
  53997. }
  53998. },
  53999. },
  54000. [
  54001. {
  54002. name: "Pocket Gryphon",
  54003. height: math.unit(6, "cm")
  54004. },
  54005. {
  54006. name: "Raven",
  54007. height: math.unit(60, "cm")
  54008. },
  54009. {
  54010. name: "Normal",
  54011. height: math.unit(1, "meter"),
  54012. default: true
  54013. },
  54014. ]
  54015. ))
  54016. characterMakers.push(() => makeCharacter(
  54017. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54018. {
  54019. front: {
  54020. height: math.unit(9 + 6/12, "feet"),
  54021. weight: math.unit(1100, "lb"),
  54022. name: "Front",
  54023. image: {
  54024. source: "./media/characters/django/front.svg",
  54025. extra: 1231/1136,
  54026. bottom: 34/1265
  54027. }
  54028. },
  54029. side: {
  54030. height: math.unit(9 + 6/12, "feet"),
  54031. weight: math.unit(1100, "lb"),
  54032. name: "Side",
  54033. image: {
  54034. source: "./media/characters/django/side.svg",
  54035. extra: 1267/1174,
  54036. bottom: 9/1276
  54037. }
  54038. },
  54039. },
  54040. [
  54041. {
  54042. name: "Normal",
  54043. height: math.unit(9 + 6/12, "feet"),
  54044. default: true
  54045. },
  54046. {
  54047. name: "Macro 1",
  54048. height: math.unit(50, "feet")
  54049. },
  54050. {
  54051. name: "Macro 2",
  54052. height: math.unit(500, "feet")
  54053. },
  54054. {
  54055. name: "Mega Macro",
  54056. height: math.unit(5300, "feet")
  54057. },
  54058. ]
  54059. ))
  54060. characterMakers.push(() => makeCharacter(
  54061. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54062. {
  54063. frontSfw: {
  54064. height: math.unit(120, "cm"),
  54065. weight: math.unit(15, "kg"),
  54066. name: "Front (SFW)",
  54067. image: {
  54068. source: "./media/characters/eri/front-sfw.svg",
  54069. extra: 1014/939,
  54070. bottom: 37/1051
  54071. },
  54072. form: "moth",
  54073. },
  54074. frontNsfw: {
  54075. height: math.unit(120, "cm"),
  54076. weight: math.unit(15, "kg"),
  54077. name: "Front (NSFW)",
  54078. image: {
  54079. source: "./media/characters/eri/front-nsfw.svg",
  54080. extra: 1014/939,
  54081. bottom: 37/1051
  54082. },
  54083. form: "moth",
  54084. default: true
  54085. },
  54086. egg: {
  54087. height: math.unit(10, "cm"),
  54088. name: "Egg",
  54089. image: {
  54090. source: "./media/characters/eri/egg.svg"
  54091. },
  54092. form: "egg",
  54093. default: true
  54094. },
  54095. },
  54096. [
  54097. {
  54098. name: "Normal",
  54099. height: math.unit(120, "cm"),
  54100. default: true,
  54101. form: "moth"
  54102. },
  54103. {
  54104. name: "Normal",
  54105. height: math.unit(10, "cm"),
  54106. default: true,
  54107. form: "egg"
  54108. },
  54109. ],
  54110. {
  54111. "moth": {
  54112. name: "Moth",
  54113. default: true
  54114. },
  54115. "egg": {
  54116. name: "Egg",
  54117. },
  54118. }
  54119. ))
  54120. characterMakers.push(() => makeCharacter(
  54121. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54122. {
  54123. front: {
  54124. height: math.unit(200, "feet"),
  54125. name: "Front",
  54126. image: {
  54127. source: "./media/characters/bishop-dowser/front.svg",
  54128. extra: 933/868,
  54129. bottom: 106/1039
  54130. }
  54131. },
  54132. },
  54133. [
  54134. {
  54135. name: "Giant",
  54136. height: math.unit(200, "feet"),
  54137. default: true
  54138. },
  54139. ]
  54140. ))
  54141. characterMakers.push(() => makeCharacter(
  54142. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54143. {
  54144. front: {
  54145. height: math.unit(2, "meters"),
  54146. preyCapacity: math.unit(3, "people"),
  54147. name: "Front",
  54148. image: {
  54149. source: "./media/characters/fryra/front.svg",
  54150. extra: 1025/948,
  54151. bottom: 30/1055
  54152. },
  54153. extraAttributes: {
  54154. "breastVolume": {
  54155. name: "Breast Volume",
  54156. power: 3,
  54157. type: "volume",
  54158. base: math.unit(8, "liters")
  54159. },
  54160. }
  54161. },
  54162. back: {
  54163. height: math.unit(2, "meters"),
  54164. preyCapacity: math.unit(3, "people"),
  54165. name: "Back",
  54166. image: {
  54167. source: "./media/characters/fryra/back.svg",
  54168. extra: 993/938,
  54169. bottom: 38/1031
  54170. },
  54171. extraAttributes: {
  54172. "breastVolume": {
  54173. name: "Breast Volume",
  54174. power: 3,
  54175. type: "volume",
  54176. base: math.unit(8, "liters")
  54177. },
  54178. }
  54179. },
  54180. head: {
  54181. height: math.unit(1.33, "feet"),
  54182. name: "Head",
  54183. image: {
  54184. source: "./media/characters/fryra/head.svg"
  54185. }
  54186. },
  54187. maw: {
  54188. height: math.unit(0.56, "feet"),
  54189. name: "Maw",
  54190. image: {
  54191. source: "./media/characters/fryra/maw.svg"
  54192. }
  54193. },
  54194. },
  54195. [
  54196. {
  54197. name: "Micro",
  54198. height: math.unit(5, "cm")
  54199. },
  54200. {
  54201. name: "Normal",
  54202. height: math.unit(2, "meters"),
  54203. default: true
  54204. },
  54205. {
  54206. name: "Small Macro",
  54207. height: math.unit(8, "meters")
  54208. },
  54209. {
  54210. name: "Macro",
  54211. height: math.unit(50, "meters")
  54212. },
  54213. {
  54214. name: "Megamacro",
  54215. height: math.unit(1, "km")
  54216. },
  54217. {
  54218. name: "Planetary",
  54219. height: math.unit(300000, "km")
  54220. },
  54221. {
  54222. name: "Universal",
  54223. height: math.unit(250, "lightyears")
  54224. },
  54225. {
  54226. name: "Fabric of Reality",
  54227. height: math.unit(1000, "multiverses")
  54228. },
  54229. ]
  54230. ))
  54231. characterMakers.push(() => makeCharacter(
  54232. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54233. {
  54234. frontDressed: {
  54235. height: math.unit(6 + 2/12, "feet"),
  54236. name: "Front (Dressed)",
  54237. image: {
  54238. source: "./media/characters/fiera/front-dressed.svg",
  54239. extra: 1883/1793,
  54240. bottom: 70/1953
  54241. }
  54242. },
  54243. backDressed: {
  54244. height: math.unit(6 + 2/12, "feet"),
  54245. name: "Back (Dressed)",
  54246. image: {
  54247. source: "./media/characters/fiera/back-dressed.svg",
  54248. extra: 1847/1780,
  54249. bottom: 70/1917
  54250. }
  54251. },
  54252. frontNude: {
  54253. height: math.unit(6 + 2/12, "feet"),
  54254. name: "Front (Nude)",
  54255. image: {
  54256. source: "./media/characters/fiera/front-nude.svg",
  54257. extra: 1875/1785,
  54258. bottom: 66/1941
  54259. }
  54260. },
  54261. backNude: {
  54262. height: math.unit(6 + 2/12, "feet"),
  54263. name: "Back (Nude)",
  54264. image: {
  54265. source: "./media/characters/fiera/back-nude.svg",
  54266. extra: 1855/1788,
  54267. bottom: 44/1899
  54268. }
  54269. },
  54270. maw: {
  54271. height: math.unit(1.3, "feet"),
  54272. name: "Maw",
  54273. image: {
  54274. source: "./media/characters/fiera/maw.svg"
  54275. }
  54276. },
  54277. paw: {
  54278. height: math.unit(1, "feet"),
  54279. name: "Paw",
  54280. image: {
  54281. source: "./media/characters/fiera/paw.svg"
  54282. }
  54283. },
  54284. shoe: {
  54285. height: math.unit(1.05, "feet"),
  54286. name: "Shoe",
  54287. image: {
  54288. source: "./media/characters/fiera/shoe.svg"
  54289. }
  54290. },
  54291. },
  54292. [
  54293. {
  54294. name: "Normal",
  54295. height: math.unit(6 + 2/12, "feet"),
  54296. default: true
  54297. },
  54298. {
  54299. name: "Size Difference",
  54300. height: math.unit(13, "feet")
  54301. },
  54302. {
  54303. name: "Macro",
  54304. height: math.unit(60, "feet")
  54305. },
  54306. {
  54307. name: "Mega Macro",
  54308. height: math.unit(200, "feet")
  54309. },
  54310. ]
  54311. ))
  54312. characterMakers.push(() => makeCharacter(
  54313. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54314. {
  54315. back: {
  54316. height: math.unit(6, "feet"),
  54317. name: "Back",
  54318. image: {
  54319. source: "./media/characters/flare/back.svg",
  54320. extra: 1883/1765,
  54321. bottom: 32/1915
  54322. }
  54323. },
  54324. },
  54325. [
  54326. {
  54327. name: "Normal",
  54328. height: math.unit(6 + 2/12, "feet"),
  54329. default: true
  54330. },
  54331. {
  54332. name: "Size Difference",
  54333. height: math.unit(13, "feet")
  54334. },
  54335. {
  54336. name: "Macro",
  54337. height: math.unit(60, "feet")
  54338. },
  54339. {
  54340. name: "Macro 2",
  54341. height: math.unit(100, "feet")
  54342. },
  54343. {
  54344. name: "Mega Macro",
  54345. height: math.unit(200, "feet")
  54346. },
  54347. ]
  54348. ))
  54349. characterMakers.push(() => makeCharacter(
  54350. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54351. {
  54352. front: {
  54353. height: math.unit(2.2, "m"),
  54354. weight: math.unit(300, "kg"),
  54355. name: "Front",
  54356. image: {
  54357. source: "./media/characters/hanna/front.svg",
  54358. extra: 1696/1502,
  54359. bottom: 206/1902
  54360. }
  54361. },
  54362. },
  54363. [
  54364. {
  54365. name: "Humanoid",
  54366. height: math.unit(2.2, "meters")
  54367. },
  54368. {
  54369. name: "Normal",
  54370. height: math.unit(4.8, "meters"),
  54371. default: true
  54372. },
  54373. ]
  54374. ))
  54375. characterMakers.push(() => makeCharacter(
  54376. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54377. {
  54378. front: {
  54379. height: math.unit(2.8, "meters"),
  54380. name: "Front",
  54381. image: {
  54382. source: "./media/characters/argo/front.svg",
  54383. extra: 731/518,
  54384. bottom: 84/815
  54385. }
  54386. },
  54387. },
  54388. [
  54389. {
  54390. name: "Normal",
  54391. height: math.unit(3, "meters"),
  54392. default: true
  54393. },
  54394. ]
  54395. ))
  54396. characterMakers.push(() => makeCharacter(
  54397. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54398. {
  54399. side: {
  54400. height: math.unit(3.8, "meters"),
  54401. name: "Side",
  54402. image: {
  54403. source: "./media/characters/sybil/side.svg",
  54404. extra: 382/361,
  54405. bottom: 25/407
  54406. }
  54407. },
  54408. },
  54409. [
  54410. {
  54411. name: "Normal",
  54412. height: math.unit(3.8, "meters"),
  54413. default: true
  54414. },
  54415. ]
  54416. ))
  54417. characterMakers.push(() => makeCharacter(
  54418. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54419. {
  54420. side: {
  54421. height: math.unit(6, "meters"),
  54422. name: "Side",
  54423. image: {
  54424. source: "./media/characters/plum/side.svg",
  54425. extra: 858/755,
  54426. bottom: 45/903
  54427. },
  54428. form: "taur",
  54429. default: true
  54430. },
  54431. back: {
  54432. height: math.unit(6.3, "meters"),
  54433. name: "Back",
  54434. image: {
  54435. source: "./media/characters/plum/back.svg",
  54436. extra: 887/813,
  54437. bottom: 32/919
  54438. },
  54439. form: "taur",
  54440. },
  54441. feral: {
  54442. height: math.unit(5.5, "meter"),
  54443. name: "Front",
  54444. image: {
  54445. source: "./media/characters/plum/feral.svg",
  54446. extra: 568/403,
  54447. bottom: 51/619
  54448. },
  54449. form: "feral",
  54450. default: true
  54451. },
  54452. head: {
  54453. height: math.unit(1.46, "meter"),
  54454. name: "Head",
  54455. image: {
  54456. source: "./media/characters/plum/head.svg"
  54457. },
  54458. form: "taur"
  54459. },
  54460. tailTop: {
  54461. height: math.unit(5.6, "meter"),
  54462. name: "Tail (Top)",
  54463. image: {
  54464. source: "./media/characters/plum/tail-top.svg"
  54465. },
  54466. form: "taur",
  54467. },
  54468. tailBottom: {
  54469. height: math.unit(5.6, "meter"),
  54470. name: "Tail (Bottom)",
  54471. image: {
  54472. source: "./media/characters/plum/tail-bottom.svg"
  54473. },
  54474. form: "taur",
  54475. },
  54476. feralHead: {
  54477. height: math.unit(2.56549521, "meter"),
  54478. name: "Head",
  54479. image: {
  54480. source: "./media/characters/plum/head.svg"
  54481. },
  54482. form: "feral"
  54483. },
  54484. feralTailTop: {
  54485. height: math.unit(5.44728435, "meter"),
  54486. name: "Tail (Top)",
  54487. image: {
  54488. source: "./media/characters/plum/tail-top.svg"
  54489. },
  54490. form: "feral",
  54491. },
  54492. feralTailBottom: {
  54493. height: math.unit(5.44728435, "meter"),
  54494. name: "Tail (Bottom)",
  54495. image: {
  54496. source: "./media/characters/plum/tail-bottom.svg"
  54497. },
  54498. form: "feral",
  54499. },
  54500. },
  54501. [
  54502. {
  54503. name: "Normal",
  54504. height: math.unit(6, "meters"),
  54505. default: true,
  54506. form: "taur"
  54507. },
  54508. {
  54509. name: "Normal",
  54510. height: math.unit(5.5, "meters"),
  54511. default: true,
  54512. form: "feral"
  54513. },
  54514. ],
  54515. {
  54516. "taur": {
  54517. name: "Taur",
  54518. default: true
  54519. },
  54520. "feral": {
  54521. name: "Feral",
  54522. },
  54523. }
  54524. ))
  54525. characterMakers.push(() => makeCharacter(
  54526. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54527. {
  54528. front: {
  54529. height: math.unit(6, "feet"),
  54530. weight: math.unit(115, "lb"),
  54531. name: "Front",
  54532. image: {
  54533. source: "./media/characters/celeste-kitsune/front.svg",
  54534. extra: 393/366,
  54535. bottom: 7/400
  54536. }
  54537. },
  54538. side: {
  54539. height: math.unit(6, "feet"),
  54540. weight: math.unit(115, "lb"),
  54541. name: "Side",
  54542. image: {
  54543. source: "./media/characters/celeste-kitsune/side.svg",
  54544. extra: 818/765,
  54545. bottom: 40/858
  54546. }
  54547. },
  54548. },
  54549. [
  54550. {
  54551. name: "Megamacro",
  54552. height: math.unit(1500, "miles"),
  54553. default: true
  54554. },
  54555. ]
  54556. ))
  54557. characterMakers.push(() => makeCharacter(
  54558. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54559. {
  54560. front: {
  54561. height: math.unit(8, "meters"),
  54562. name: "Front",
  54563. image: {
  54564. source: "./media/characters/io/front.svg",
  54565. extra: 865/722,
  54566. bottom: 58/923
  54567. }
  54568. },
  54569. back: {
  54570. height: math.unit(8, "meters"),
  54571. name: "Back",
  54572. image: {
  54573. source: "./media/characters/io/back.svg",
  54574. extra: 920/776,
  54575. bottom: 42/962
  54576. }
  54577. },
  54578. head: {
  54579. height: math.unit(5.09, "meters"),
  54580. name: "Head",
  54581. image: {
  54582. source: "./media/characters/io/head.svg"
  54583. }
  54584. },
  54585. hand: {
  54586. height: math.unit(1.6, "meters"),
  54587. name: "Hand",
  54588. image: {
  54589. source: "./media/characters/io/hand.svg"
  54590. }
  54591. },
  54592. foot: {
  54593. height: math.unit(2.4, "meters"),
  54594. name: "Foot",
  54595. image: {
  54596. source: "./media/characters/io/foot.svg"
  54597. }
  54598. },
  54599. },
  54600. [
  54601. {
  54602. name: "Normal",
  54603. height: math.unit(8, "meters"),
  54604. default: true
  54605. },
  54606. ]
  54607. ))
  54608. characterMakers.push(() => makeCharacter(
  54609. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54610. {
  54611. side: {
  54612. height: math.unit(6 + 3/12, "feet"),
  54613. weight: math.unit(225, "lb"),
  54614. name: "Side",
  54615. image: {
  54616. source: "./media/characters/silas/side.svg",
  54617. extra: 703/653,
  54618. bottom: 23/726
  54619. },
  54620. extraAttributes: {
  54621. "pawLength": {
  54622. name: "Paw Length",
  54623. power: 1,
  54624. type: "length",
  54625. base: math.unit(12, "inches")
  54626. },
  54627. "pawWidth": {
  54628. name: "Paw Width",
  54629. power: 1,
  54630. type: "length",
  54631. base: math.unit(4.5, "inches")
  54632. },
  54633. "pawArea": {
  54634. name: "Paw Area",
  54635. power: 2,
  54636. type: "area",
  54637. base: math.unit(12 * 4.5, "inches^2")
  54638. },
  54639. }
  54640. },
  54641. },
  54642. [
  54643. {
  54644. name: "Normal",
  54645. height: math.unit(6 + 3/12, "feet"),
  54646. default: true
  54647. },
  54648. ]
  54649. ))
  54650. characterMakers.push(() => makeCharacter(
  54651. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54652. {
  54653. back: {
  54654. height: math.unit(1.6, "meters"),
  54655. weight: math.unit(150, "lb"),
  54656. name: "Back",
  54657. image: {
  54658. source: "./media/characters/zari/back.svg",
  54659. extra: 424/411,
  54660. bottom: 32/456
  54661. },
  54662. extraAttributes: {
  54663. "bladderCapacity": {
  54664. name: "Bladder Size",
  54665. power: 3,
  54666. type: "volume",
  54667. base: math.unit(500, "mL")
  54668. },
  54669. "bladderFlow": {
  54670. name: "Flow Rate",
  54671. power: 3,
  54672. type: "volume",
  54673. base: math.unit(25, "mL")
  54674. },
  54675. }
  54676. },
  54677. },
  54678. [
  54679. {
  54680. name: "Normal",
  54681. height: math.unit(1.6, "meters"),
  54682. default: true
  54683. },
  54684. ]
  54685. ))
  54686. characterMakers.push(() => makeCharacter(
  54687. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54688. {
  54689. front: {
  54690. height: math.unit(25, "feet"),
  54691. weight: math.unit(5, "tons"),
  54692. name: "Front",
  54693. image: {
  54694. source: "./media/characters/charlie-human/front.svg",
  54695. extra: 1870/1740,
  54696. bottom: 102/1972
  54697. },
  54698. extraAttributes: {
  54699. "dickLength": {
  54700. name: "Dick Length",
  54701. power: 1,
  54702. type: "length",
  54703. base: math.unit(9, "feet")
  54704. },
  54705. }
  54706. },
  54707. back: {
  54708. height: math.unit(25, "feet"),
  54709. weight: math.unit(5, "tons"),
  54710. name: "Back",
  54711. image: {
  54712. source: "./media/characters/charlie-human/back.svg",
  54713. extra: 1858/1733,
  54714. bottom: 105/1963
  54715. },
  54716. extraAttributes: {
  54717. "dickLength": {
  54718. name: "Dick Length",
  54719. power: 1,
  54720. type: "length",
  54721. base: math.unit(9, "feet")
  54722. },
  54723. }
  54724. },
  54725. },
  54726. [
  54727. {
  54728. name: "\"Normal\"",
  54729. height: math.unit(6 + 4/12, "feet")
  54730. },
  54731. {
  54732. name: "Big",
  54733. height: math.unit(25, "feet"),
  54734. default: true
  54735. },
  54736. ]
  54737. ))
  54738. //characters
  54739. function makeCharacters() {
  54740. const results = [];
  54741. characterMakers.forEach(character => {
  54742. results.push(character());
  54743. });
  54744. return results;
  54745. }