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

52086 строки
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. }
  2007. //species
  2008. function getSpeciesInfo(speciesList) {
  2009. let result = new Set();
  2010. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2011. result.add(entry)
  2012. });
  2013. return Array.from(result);
  2014. };
  2015. function getSpeciesInfoHelper(species) {
  2016. if (!speciesData[species]) {
  2017. console.warn(species + " doesn't exist");
  2018. return [];
  2019. }
  2020. if (speciesData[species].parents) {
  2021. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2022. } else {
  2023. return [species];
  2024. }
  2025. }
  2026. characterMakers.push(() => makeCharacter(
  2027. {
  2028. name: "Fen",
  2029. species: ["crux"],
  2030. description: {
  2031. title: "Bio",
  2032. text: "Very furry. Sheds on everything."
  2033. },
  2034. tags: [
  2035. "anthro",
  2036. "goo"
  2037. ]
  2038. },
  2039. {
  2040. front: {
  2041. height: math.unit(12, "feet"),
  2042. weight: math.unit(2400, "lb"),
  2043. name: "Front",
  2044. image: {
  2045. source: "./media/characters/fen/front.svg",
  2046. extra: 1804/1562,
  2047. bottom: 205/2009
  2048. },
  2049. extraAttributes: {
  2050. pawSize: {
  2051. name: "Paw Size",
  2052. power: 2,
  2053. type: "area",
  2054. base: math.unit(0.35, "m^2")
  2055. }
  2056. }
  2057. },
  2058. diving: {
  2059. height: math.unit(4.9, "meters"),
  2060. weight: math.unit(2400, "lb"),
  2061. name: "Diving",
  2062. image: {
  2063. source: "./media/characters/fen/diving.svg"
  2064. }
  2065. },
  2066. goo: {
  2067. height: math.unit(12, "feet"),
  2068. weight: math.unit(3600, "lb"),
  2069. volume: math.unit(1000, "liters"),
  2070. preyCapacity: math.unit(6, "people"),
  2071. name: "Goo",
  2072. image: {
  2073. source: "./media/characters/fen/goo.svg",
  2074. extra: 1307/1071,
  2075. bottom: 134/1441
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(5.03, "feet"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/fen/maw.svg"
  2083. }
  2084. },
  2085. gooCeiling: {
  2086. height: math.unit(6.6, "feet"),
  2087. weight: math.unit(3000, "lb"),
  2088. volume: math.unit(1000, "liters"),
  2089. preyCapacity: math.unit(6, "people"),
  2090. name: "Goo (Ceiling)",
  2091. image: {
  2092. source: "./media/characters/fen/goo-ceiling.svg"
  2093. }
  2094. },
  2095. back: {
  2096. height: math.unit(12, "feet"),
  2097. weight: math.unit(2400, "lb"),
  2098. name: "Back",
  2099. image: {
  2100. source: "./media/characters/fen/back.svg",
  2101. },
  2102. info: {
  2103. description: {
  2104. mode: "append",
  2105. text: "\n\nHe is not currently looking at you."
  2106. }
  2107. }
  2108. },
  2109. full: {
  2110. height: math.unit(1.85, "meter"),
  2111. weight: math.unit(3200, "lb"),
  2112. name: "Full",
  2113. image: {
  2114. source: "./media/characters/fen/full.svg",
  2115. extra: 1133/859,
  2116. bottom: 145/1278
  2117. },
  2118. info: {
  2119. description: {
  2120. mode: "append",
  2121. text: "\n\nMunch."
  2122. }
  2123. }
  2124. },
  2125. gooLounging: {
  2126. height: math.unit(4.53, "feet"),
  2127. weight: math.unit(3000, "lb"),
  2128. preyCapacity: math.unit(6, "people"),
  2129. name: "Goo (Lounging)",
  2130. image: {
  2131. source: "./media/characters/fen/goo-lounging.svg",
  2132. bottom: 116 / 613
  2133. }
  2134. },
  2135. lounging: {
  2136. height: math.unit(10.52, "feet"),
  2137. weight: math.unit(2400, "lb"),
  2138. name: "Lounging",
  2139. image: {
  2140. source: "./media/characters/fen/lounging.svg"
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Small",
  2147. height: math.unit(2.2428, "meter")
  2148. },
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(12, "feet"),
  2152. default: true,
  2153. },
  2154. {
  2155. name: "Big",
  2156. height: math.unit(20, "feet")
  2157. },
  2158. {
  2159. name: "Minimacro",
  2160. height: math.unit(40, "feet"),
  2161. info: {
  2162. description: {
  2163. mode: "append",
  2164. text: "\n\nTOO DAMN BIG"
  2165. }
  2166. }
  2167. },
  2168. {
  2169. name: "Macro",
  2170. height: math.unit(100, "feet"),
  2171. info: {
  2172. description: {
  2173. mode: "append",
  2174. text: "\n\nTOO DAMN BIG"
  2175. }
  2176. }
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(2, "miles")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(10, "earths")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(183, "cm"),
  2193. weight: math.unit(80, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/sofia-fluttertail/front.svg",
  2197. bottom: 0.01,
  2198. extra: 2154 / 2081
  2199. }
  2200. },
  2201. frontAlt: {
  2202. height: math.unit(183, "cm"),
  2203. weight: math.unit(80, "kg"),
  2204. name: "Front (alt)",
  2205. image: {
  2206. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(183, "cm"),
  2211. weight: math.unit(80, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/sofia-fluttertail/back.svg"
  2215. }
  2216. },
  2217. kneeling: {
  2218. height: math.unit(125, "cm"),
  2219. weight: math.unit(80, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2223. extra: 1033 / 977,
  2224. bottom: 23.7 / 1057
  2225. }
  2226. },
  2227. maw: {
  2228. height: math.unit(183 / 5, "cm"),
  2229. name: "Maw",
  2230. image: {
  2231. source: "./media/characters/sofia-fluttertail/maw.svg"
  2232. }
  2233. },
  2234. mawcloseup: {
  2235. height: math.unit(183 / 5 * 0.41, "cm"),
  2236. name: "Maw (Closeup)",
  2237. image: {
  2238. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2239. }
  2240. },
  2241. paws: {
  2242. height: math.unit(1.17, "feet"),
  2243. name: "Paws",
  2244. image: {
  2245. source: "./media/characters/sofia-fluttertail/paws.svg",
  2246. extra: 851 / 851,
  2247. bottom: 17 / 868
  2248. }
  2249. },
  2250. },
  2251. [
  2252. {
  2253. name: "Normal",
  2254. height: math.unit(1.83, "meter")
  2255. },
  2256. {
  2257. name: "Size Thief",
  2258. height: math.unit(18, "feet")
  2259. },
  2260. {
  2261. name: "50 Foot Collie",
  2262. height: math.unit(50, "feet")
  2263. },
  2264. {
  2265. name: "Macro",
  2266. height: math.unit(96, "feet"),
  2267. default: true
  2268. },
  2269. {
  2270. name: "Megamerger",
  2271. height: math.unit(650, "feet")
  2272. },
  2273. ]
  2274. ))
  2275. characterMakers.push(() => makeCharacter(
  2276. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2277. {
  2278. front: {
  2279. height: math.unit(7, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Front",
  2282. image: {
  2283. source: "./media/characters/march/front.svg",
  2284. extra: 1992/1851,
  2285. bottom: 39/2031
  2286. }
  2287. },
  2288. foot: {
  2289. height: math.unit(0.9, "feet"),
  2290. name: "Foot",
  2291. image: {
  2292. source: "./media/characters/march/foot.svg"
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Normal",
  2299. height: math.unit(7.9, "feet")
  2300. },
  2301. {
  2302. name: "Macro",
  2303. height: math.unit(220, "meters")
  2304. },
  2305. {
  2306. name: "Megamacro",
  2307. height: math.unit(2.98, "km"),
  2308. default: true
  2309. },
  2310. {
  2311. name: "Gigamacro",
  2312. height: math.unit(15963, "km")
  2313. },
  2314. {
  2315. name: "Teramacro",
  2316. height: math.unit(2980000000, "km")
  2317. },
  2318. {
  2319. name: "Examacro",
  2320. height: math.unit(250, "parsecs")
  2321. },
  2322. ]
  2323. ))
  2324. characterMakers.push(() => makeCharacter(
  2325. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2326. {
  2327. front: {
  2328. height: math.unit(6, "feet"),
  2329. weight: math.unit(60, "kg"),
  2330. name: "Front",
  2331. image: {
  2332. source: "./media/characters/noir/front.svg",
  2333. extra: 1,
  2334. bottom: 0.032
  2335. }
  2336. },
  2337. },
  2338. [
  2339. {
  2340. name: "Normal",
  2341. height: math.unit(6.6, "feet")
  2342. },
  2343. {
  2344. name: "Macro",
  2345. height: math.unit(500, "feet")
  2346. },
  2347. {
  2348. name: "Megamacro",
  2349. height: math.unit(2.5, "km"),
  2350. default: true
  2351. },
  2352. {
  2353. name: "Gigamacro",
  2354. height: math.unit(22500, "km")
  2355. },
  2356. {
  2357. name: "Teramacro",
  2358. height: math.unit(2500000000, "km")
  2359. },
  2360. {
  2361. name: "Examacro",
  2362. height: math.unit(200, "parsecs")
  2363. },
  2364. ]
  2365. ))
  2366. characterMakers.push(() => makeCharacter(
  2367. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2368. {
  2369. front: {
  2370. height: math.unit(7, "feet"),
  2371. weight: math.unit(100, "kg"),
  2372. name: "Front",
  2373. image: {
  2374. source: "./media/characters/okuri/front.svg",
  2375. extra: 739/665,
  2376. bottom: 39/778
  2377. }
  2378. },
  2379. back: {
  2380. height: math.unit(7, "feet"),
  2381. weight: math.unit(100, "kg"),
  2382. name: "Back",
  2383. image: {
  2384. source: "./media/characters/okuri/back.svg",
  2385. extra: 734/653,
  2386. bottom: 13/747
  2387. }
  2388. },
  2389. sitting: {
  2390. height: math.unit(2.95, "feet"),
  2391. weight: math.unit(100, "kg"),
  2392. name: "Sitting",
  2393. image: {
  2394. source: "./media/characters/okuri/sitting.svg",
  2395. extra: 370/318,
  2396. bottom: 99/469
  2397. }
  2398. },
  2399. },
  2400. [
  2401. {
  2402. name: "Smallest",
  2403. height: math.unit(5 + 2/12, "feet")
  2404. },
  2405. {
  2406. name: "Smaller",
  2407. height: math.unit(300, "feet")
  2408. },
  2409. {
  2410. name: "Small",
  2411. height: math.unit(1000, "feet")
  2412. },
  2413. {
  2414. name: "Macro",
  2415. height: math.unit(1, "mile")
  2416. },
  2417. {
  2418. name: "Mega Macro (Small)",
  2419. height: math.unit(20, "km")
  2420. },
  2421. {
  2422. name: "Mega Macro (Large)",
  2423. height: math.unit(600, "km")
  2424. },
  2425. {
  2426. name: "Giga Macro",
  2427. height: math.unit(10000, "km")
  2428. },
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(577560, "km"),
  2432. default: true
  2433. },
  2434. {
  2435. name: "Large",
  2436. height: math.unit(4, "galaxies")
  2437. },
  2438. {
  2439. name: "Largest",
  2440. height: math.unit(15, "multiverses")
  2441. },
  2442. ]
  2443. ))
  2444. characterMakers.push(() => makeCharacter(
  2445. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2446. {
  2447. front: {
  2448. height: math.unit(7, "feet"),
  2449. weight: math.unit(100, "kg"),
  2450. name: "Front",
  2451. image: {
  2452. source: "./media/characters/manny/front.svg",
  2453. extra: 1,
  2454. bottom: 0.06
  2455. }
  2456. },
  2457. back: {
  2458. height: math.unit(7, "feet"),
  2459. weight: math.unit(100, "kg"),
  2460. name: "Back",
  2461. image: {
  2462. source: "./media/characters/manny/back.svg",
  2463. extra: 1,
  2464. bottom: 0.014
  2465. }
  2466. },
  2467. },
  2468. [
  2469. {
  2470. name: "Normal",
  2471. height: math.unit(7, "feet"),
  2472. },
  2473. {
  2474. name: "Macro",
  2475. height: math.unit(78, "feet"),
  2476. default: true
  2477. },
  2478. {
  2479. name: "Macro+",
  2480. height: math.unit(300, "meters")
  2481. },
  2482. {
  2483. name: "Macro++",
  2484. height: math.unit(2400, "meters")
  2485. },
  2486. {
  2487. name: "Megamacro",
  2488. height: math.unit(5167, "meters")
  2489. },
  2490. {
  2491. name: "Gigamacro",
  2492. height: math.unit(41769, "miles")
  2493. },
  2494. ]
  2495. ))
  2496. characterMakers.push(() => makeCharacter(
  2497. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2498. {
  2499. front: {
  2500. height: math.unit(7, "feet"),
  2501. weight: math.unit(100, "kg"),
  2502. name: "Front",
  2503. image: {
  2504. source: "./media/characters/adake/front-1.svg"
  2505. }
  2506. },
  2507. frontAlt: {
  2508. height: math.unit(7, "feet"),
  2509. weight: math.unit(100, "kg"),
  2510. name: "Front (Alt)",
  2511. image: {
  2512. source: "./media/characters/adake/front-2.svg",
  2513. extra: 1,
  2514. bottom: 0.01
  2515. }
  2516. },
  2517. back: {
  2518. height: math.unit(7, "feet"),
  2519. weight: math.unit(100, "kg"),
  2520. name: "Back",
  2521. image: {
  2522. source: "./media/characters/adake/back.svg",
  2523. }
  2524. },
  2525. kneel: {
  2526. height: math.unit(5.385, "feet"),
  2527. weight: math.unit(100, "kg"),
  2528. name: "Kneeling",
  2529. image: {
  2530. source: "./media/characters/adake/kneel.svg",
  2531. bottom: 0.052
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(7, "feet"),
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(78, "feet"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Macro+",
  2547. height: math.unit(300, "meters")
  2548. },
  2549. {
  2550. name: "Macro++",
  2551. height: math.unit(2400, "meters")
  2552. },
  2553. {
  2554. name: "Megamacro",
  2555. height: math.unit(5167, "meters")
  2556. },
  2557. {
  2558. name: "Gigamacro",
  2559. height: math.unit(41769, "miles")
  2560. },
  2561. ]
  2562. ))
  2563. characterMakers.push(() => makeCharacter(
  2564. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2565. {
  2566. front: {
  2567. height: math.unit(1.65, "meters"),
  2568. weight: math.unit(50, "kg"),
  2569. name: "Front",
  2570. image: {
  2571. source: "./media/characters/elijah/front.svg",
  2572. extra: 858 / 830,
  2573. bottom: 95.5 / 953.8559
  2574. }
  2575. },
  2576. back: {
  2577. height: math.unit(1.65, "meters"),
  2578. weight: math.unit(50, "kg"),
  2579. name: "Back",
  2580. image: {
  2581. source: "./media/characters/elijah/back.svg",
  2582. extra: 895 / 850,
  2583. bottom: 5.3 / 897.956
  2584. }
  2585. },
  2586. frontNsfw: {
  2587. height: math.unit(1.65, "meters"),
  2588. weight: math.unit(50, "kg"),
  2589. name: "Front (NSFW)",
  2590. image: {
  2591. source: "./media/characters/elijah/front-nsfw.svg",
  2592. extra: 858 / 830,
  2593. bottom: 95.5 / 953.8559
  2594. }
  2595. },
  2596. backNsfw: {
  2597. height: math.unit(1.65, "meters"),
  2598. weight: math.unit(50, "kg"),
  2599. name: "Back (NSFW)",
  2600. image: {
  2601. source: "./media/characters/elijah/back-nsfw.svg",
  2602. extra: 895 / 850,
  2603. bottom: 5.3 / 897.956
  2604. }
  2605. },
  2606. dick: {
  2607. height: math.unit(1, "feet"),
  2608. name: "Dick",
  2609. image: {
  2610. source: "./media/characters/elijah/dick.svg"
  2611. }
  2612. },
  2613. beakOpen: {
  2614. height: math.unit(1.25, "feet"),
  2615. name: "Beak (Open)",
  2616. image: {
  2617. source: "./media/characters/elijah/beak-open.svg"
  2618. }
  2619. },
  2620. beakShut: {
  2621. height: math.unit(1.25, "feet"),
  2622. name: "Beak (Shut)",
  2623. image: {
  2624. source: "./media/characters/elijah/beak-shut.svg"
  2625. }
  2626. },
  2627. footFlexing: {
  2628. height: math.unit(1.61, "feet"),
  2629. name: "Foot (Flexing)",
  2630. image: {
  2631. source: "./media/characters/elijah/foot-flexing.svg"
  2632. }
  2633. },
  2634. footStepping: {
  2635. height: math.unit(1.44, "feet"),
  2636. name: "Foot (Stepping)",
  2637. image: {
  2638. source: "./media/characters/elijah/foot-stepping.svg"
  2639. }
  2640. },
  2641. plantigradeLeg: {
  2642. height: math.unit(2.34, "feet"),
  2643. name: "Plantigrade Leg",
  2644. image: {
  2645. source: "./media/characters/elijah/plantigrade-leg.svg"
  2646. }
  2647. },
  2648. plantigradeFootLeft: {
  2649. height: math.unit(0.9, "feet"),
  2650. name: "Plantigrade Foot (Left)",
  2651. image: {
  2652. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2653. }
  2654. },
  2655. plantigradeFootRight: {
  2656. height: math.unit(0.9, "feet"),
  2657. name: "Plantigrade Foot (Right)",
  2658. image: {
  2659. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2660. }
  2661. },
  2662. },
  2663. [
  2664. {
  2665. name: "Normal",
  2666. height: math.unit(1.65, "meters")
  2667. },
  2668. {
  2669. name: "Macro",
  2670. height: math.unit(55, "meters"),
  2671. default: true
  2672. },
  2673. {
  2674. name: "Macro+",
  2675. height: math.unit(105, "meters")
  2676. },
  2677. ]
  2678. ))
  2679. characterMakers.push(() => makeCharacter(
  2680. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2681. {
  2682. front: {
  2683. height: math.unit(7 + 2/12, "feet"),
  2684. weight: math.unit(320, "kg"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/rai/front.svg",
  2688. extra: 1802/1696,
  2689. bottom: 68/1870
  2690. }
  2691. },
  2692. frontDressed: {
  2693. height: math.unit(7 + 2/12, "feet"),
  2694. weight: math.unit(320, "kg"),
  2695. name: "Front (Dressed)",
  2696. image: {
  2697. source: "./media/characters/rai/front-dressed.svg",
  2698. extra: 1802/1696,
  2699. bottom: 68/1870
  2700. }
  2701. },
  2702. side: {
  2703. height: math.unit(7 + 2/12, "feet"),
  2704. weight: math.unit(320, "kg"),
  2705. name: "Side",
  2706. image: {
  2707. source: "./media/characters/rai/side.svg",
  2708. extra: 1789/1710,
  2709. bottom: 115/1904
  2710. }
  2711. },
  2712. back: {
  2713. height: math.unit(7 + 2/12, "feet"),
  2714. weight: math.unit(320, "kg"),
  2715. name: "Back",
  2716. image: {
  2717. source: "./media/characters/rai/back.svg",
  2718. extra: 1770/1707,
  2719. bottom: 28/1798
  2720. }
  2721. },
  2722. feral: {
  2723. height: math.unit(9.5, "feet"),
  2724. weight: math.unit(640, "kg"),
  2725. name: "Feral",
  2726. image: {
  2727. source: "./media/characters/rai/feral.svg",
  2728. extra: 945/553,
  2729. bottom: 176/1121
  2730. }
  2731. },
  2732. dragon: {
  2733. height: math.unit(23, "feet"),
  2734. weight: math.unit(50000, "lb"),
  2735. name: "Dragon",
  2736. image: {
  2737. source: "./media/characters/rai/dragon.svg",
  2738. extra: 2498 / 2030,
  2739. bottom: 85.2 / 2584
  2740. }
  2741. },
  2742. maw: {
  2743. height: math.unit(1.69, "feet"),
  2744. name: "Maw",
  2745. image: {
  2746. source: "./media/characters/rai/maw.svg"
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(7 + 2/12, "feet")
  2754. },
  2755. {
  2756. name: "Big",
  2757. height: math.unit(11, "feet")
  2758. },
  2759. {
  2760. name: "Macro",
  2761. height: math.unit(302, "feet"),
  2762. default: true
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2768. {
  2769. frontDressed: {
  2770. height: math.unit(216, "feet"),
  2771. weight: math.unit(7000000, "lb"),
  2772. name: "Front (Dressed)",
  2773. image: {
  2774. source: "./media/characters/jazzy/front-dressed.svg",
  2775. extra: 2738 / 2651,
  2776. bottom: 41.8 / 2786
  2777. }
  2778. },
  2779. backDressed: {
  2780. height: math.unit(216, "feet"),
  2781. weight: math.unit(7000000, "lb"),
  2782. name: "Back (Dressed)",
  2783. image: {
  2784. source: "./media/characters/jazzy/back-dressed.svg",
  2785. extra: 2775 / 2673,
  2786. bottom: 36.8 / 2817
  2787. }
  2788. },
  2789. front: {
  2790. height: math.unit(216, "feet"),
  2791. weight: math.unit(7000000, "lb"),
  2792. name: "Front",
  2793. image: {
  2794. source: "./media/characters/jazzy/front.svg",
  2795. extra: 2738 / 2651,
  2796. bottom: 41.8 / 2786
  2797. }
  2798. },
  2799. back: {
  2800. height: math.unit(216, "feet"),
  2801. weight: math.unit(7000000, "lb"),
  2802. name: "Back",
  2803. image: {
  2804. source: "./media/characters/jazzy/back.svg",
  2805. extra: 2775 / 2673,
  2806. bottom: 36.8 / 2817
  2807. }
  2808. },
  2809. maw: {
  2810. height: math.unit(20, "feet"),
  2811. name: "Maw",
  2812. image: {
  2813. source: "./media/characters/jazzy/maw.svg"
  2814. }
  2815. },
  2816. paws: {
  2817. height: math.unit(27.5, "feet"),
  2818. name: "Paws",
  2819. image: {
  2820. source: "./media/characters/jazzy/paws.svg"
  2821. }
  2822. },
  2823. eye: {
  2824. height: math.unit(4.4, "feet"),
  2825. name: "Eye",
  2826. image: {
  2827. source: "./media/characters/jazzy/eye.svg"
  2828. }
  2829. },
  2830. droneOffense: {
  2831. height: math.unit(9.5, "inches"),
  2832. name: "Drone (Offense)",
  2833. image: {
  2834. source: "./media/characters/jazzy/drone-offense.svg"
  2835. }
  2836. },
  2837. droneRecon: {
  2838. height: math.unit(9.5, "inches"),
  2839. name: "Drone (Recon)",
  2840. image: {
  2841. source: "./media/characters/jazzy/drone-recon.svg"
  2842. }
  2843. },
  2844. droneDefense: {
  2845. height: math.unit(9.5, "inches"),
  2846. name: "Drone (Defense)",
  2847. image: {
  2848. source: "./media/characters/jazzy/drone-defense.svg"
  2849. }
  2850. },
  2851. },
  2852. [
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(216, "feet"),
  2856. default: true
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(9 + 6/12, "feet"),
  2865. weight: math.unit(700, "lb"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/flamm/front.svg",
  2869. extra: 1751/1632,
  2870. bottom: 46/1797
  2871. }
  2872. },
  2873. buff: {
  2874. height: math.unit(9 + 6/12, "feet"),
  2875. weight: math.unit(950, "lb"),
  2876. name: "Buff",
  2877. image: {
  2878. source: "./media/characters/flamm/buff.svg",
  2879. extra: 3018/2874,
  2880. bottom: 221/3239
  2881. }
  2882. },
  2883. },
  2884. [
  2885. {
  2886. name: "Normal",
  2887. height: math.unit(9.5, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(200, "feet"),
  2892. default: true
  2893. },
  2894. ]
  2895. ))
  2896. characterMakers.push(() => makeCharacter(
  2897. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2898. {
  2899. front: {
  2900. height: math.unit(5 + 3/12, "feet"),
  2901. weight: math.unit(60, "kg"),
  2902. name: "Front",
  2903. image: {
  2904. source: "./media/characters/zephiro/front.svg",
  2905. extra: 2309 / 2162,
  2906. bottom: 0.069
  2907. }
  2908. },
  2909. side: {
  2910. height: math.unit(5 + 3/12, "feet"),
  2911. weight: math.unit(60, "kg"),
  2912. name: "Side",
  2913. image: {
  2914. source: "./media/characters/zephiro/side.svg",
  2915. extra: 2403 / 2279,
  2916. bottom: 0.015
  2917. }
  2918. },
  2919. back: {
  2920. height: math.unit(5 + 3/12, "feet"),
  2921. weight: math.unit(60, "kg"),
  2922. name: "Back",
  2923. image: {
  2924. source: "./media/characters/zephiro/back.svg",
  2925. extra: 2373 / 2244,
  2926. bottom: 0.013
  2927. }
  2928. },
  2929. hand: {
  2930. height: math.unit(0.68, "feet"),
  2931. name: "Hand",
  2932. image: {
  2933. source: "./media/characters/zephiro/hand.svg"
  2934. }
  2935. },
  2936. paw: {
  2937. height: math.unit(1, "feet"),
  2938. name: "Paw",
  2939. image: {
  2940. source: "./media/characters/zephiro/paw.svg"
  2941. }
  2942. },
  2943. beans: {
  2944. height: math.unit(0.93, "feet"),
  2945. name: "Beans",
  2946. image: {
  2947. source: "./media/characters/zephiro/beans.svg"
  2948. }
  2949. },
  2950. },
  2951. [
  2952. {
  2953. name: "Micro",
  2954. height: math.unit(3, "inches")
  2955. },
  2956. {
  2957. name: "Normal",
  2958. height: math.unit(5 + 3 / 12, "feet"),
  2959. default: true
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(118, "feet")
  2964. },
  2965. ]
  2966. ))
  2967. characterMakers.push(() => makeCharacter(
  2968. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2969. {
  2970. front: {
  2971. height: math.unit(5, "feet"),
  2972. weight: math.unit(90, "kg"),
  2973. name: "Front",
  2974. image: {
  2975. source: "./media/characters/fory/front.svg",
  2976. extra: 2862 / 2674,
  2977. bottom: 180 / 3043.8
  2978. }
  2979. },
  2980. back: {
  2981. height: math.unit(5, "feet"),
  2982. weight: math.unit(90, "kg"),
  2983. name: "Back",
  2984. image: {
  2985. source: "./media/characters/fory/back.svg",
  2986. extra: 2962 / 2791,
  2987. bottom: 106 / 3071.8
  2988. }
  2989. },
  2990. foot: {
  2991. height: math.unit(2.14, "feet"),
  2992. name: "Foot",
  2993. image: {
  2994. source: "./media/characters/fory/foot.svg"
  2995. }
  2996. },
  2997. },
  2998. [
  2999. {
  3000. name: "Normal",
  3001. height: math.unit(5, "feet")
  3002. },
  3003. {
  3004. name: "Macro",
  3005. height: math.unit(50, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Megamacro",
  3010. height: math.unit(10, "miles")
  3011. },
  3012. {
  3013. name: "Gigamacro",
  3014. height: math.unit(5, "earths")
  3015. },
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3020. {
  3021. front: {
  3022. height: math.unit(7, "feet"),
  3023. weight: math.unit(90, "kg"),
  3024. name: "Front",
  3025. image: {
  3026. source: "./media/characters/kurrikage/front.svg",
  3027. extra: 1845/1733,
  3028. bottom: 119/1964
  3029. }
  3030. },
  3031. back: {
  3032. height: math.unit(7, "feet"),
  3033. weight: math.unit(90, "kg"),
  3034. name: "Back",
  3035. image: {
  3036. source: "./media/characters/kurrikage/back.svg",
  3037. extra: 1790/1677,
  3038. bottom: 61/1851
  3039. }
  3040. },
  3041. dressed: {
  3042. height: math.unit(7, "feet"),
  3043. weight: math.unit(90, "kg"),
  3044. name: "Dressed",
  3045. image: {
  3046. source: "./media/characters/kurrikage/dressed.svg",
  3047. extra: 1845/1733,
  3048. bottom: 119/1964
  3049. }
  3050. },
  3051. foot: {
  3052. height: math.unit(1.5, "feet"),
  3053. name: "Foot",
  3054. image: {
  3055. source: "./media/characters/kurrikage/foot.svg"
  3056. }
  3057. },
  3058. staff: {
  3059. height: math.unit(6.7, "feet"),
  3060. name: "Staff",
  3061. image: {
  3062. source: "./media/characters/kurrikage/staff.svg"
  3063. }
  3064. },
  3065. peek: {
  3066. height: math.unit(1.05, "feet"),
  3067. name: "Peeking",
  3068. image: {
  3069. source: "./media/characters/kurrikage/peek.svg",
  3070. bottom: 0.08
  3071. }
  3072. },
  3073. },
  3074. [
  3075. {
  3076. name: "Normal",
  3077. height: math.unit(12, "feet"),
  3078. default: true
  3079. },
  3080. {
  3081. name: "Big",
  3082. height: math.unit(20, "feet")
  3083. },
  3084. {
  3085. name: "Macro",
  3086. height: math.unit(500, "feet")
  3087. },
  3088. {
  3089. name: "Megamacro",
  3090. height: math.unit(20, "miles")
  3091. },
  3092. ]
  3093. ))
  3094. characterMakers.push(() => makeCharacter(
  3095. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3096. {
  3097. front: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/shingo/front.svg",
  3103. extra: 1900/1825,
  3104. bottom: 82/1982
  3105. }
  3106. },
  3107. side: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(75, "kg"),
  3110. name: "Side",
  3111. image: {
  3112. source: "./media/characters/shingo/side.svg",
  3113. extra: 1930/1865,
  3114. bottom: 16/1946
  3115. }
  3116. },
  3117. back: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Back",
  3121. image: {
  3122. source: "./media/characters/shingo/back.svg",
  3123. extra: 1922/1852,
  3124. bottom: 16/1938
  3125. }
  3126. },
  3127. frontDressed: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(150, "lb"),
  3130. name: "Front-dressed",
  3131. image: {
  3132. source: "./media/characters/shingo/front-dressed.svg",
  3133. extra: 1900/1825,
  3134. bottom: 82/1982
  3135. }
  3136. },
  3137. paw: {
  3138. height: math.unit(1.29, "feet"),
  3139. name: "Paw",
  3140. image: {
  3141. source: "./media/characters/shingo/paw.svg"
  3142. }
  3143. },
  3144. hand: {
  3145. height: math.unit(1.07, "feet"),
  3146. name: "Hand",
  3147. image: {
  3148. source: "./media/characters/shingo/hand.svg"
  3149. }
  3150. },
  3151. frontAlt: {
  3152. height: math.unit(6, "feet"),
  3153. weight: math.unit(75, "kg"),
  3154. name: "Front (Alt)",
  3155. image: {
  3156. source: "./media/characters/shingo/front-alt.svg",
  3157. extra: 3511 / 3338,
  3158. bottom: 0.005
  3159. }
  3160. },
  3161. frontAlt2: {
  3162. height: math.unit(6, "feet"),
  3163. weight: math.unit(75, "kg"),
  3164. name: "Front (Alt 2)",
  3165. image: {
  3166. source: "./media/characters/shingo/front-alt-2.svg",
  3167. extra: 706/681,
  3168. bottom: 11/717
  3169. }
  3170. },
  3171. pawAlt: {
  3172. height: math.unit(1, "feet"),
  3173. name: "Paw (Alt)",
  3174. image: {
  3175. source: "./media/characters/shingo/paw-alt.svg"
  3176. }
  3177. },
  3178. },
  3179. [
  3180. {
  3181. name: "Micro",
  3182. height: math.unit(4, "inches")
  3183. },
  3184. {
  3185. name: "Normal",
  3186. height: math.unit(6, "feet"),
  3187. default: true
  3188. },
  3189. {
  3190. name: "Macro",
  3191. height: math.unit(108, "feet")
  3192. },
  3193. {
  3194. name: "Macro+",
  3195. height: math.unit(1500, "feet")
  3196. },
  3197. ]
  3198. ))
  3199. characterMakers.push(() => makeCharacter(
  3200. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3201. {
  3202. side: {
  3203. height: math.unit(6, "feet"),
  3204. weight: math.unit(75, "kg"),
  3205. name: "Side",
  3206. image: {
  3207. source: "./media/characters/aigey/side.svg"
  3208. }
  3209. },
  3210. },
  3211. [
  3212. {
  3213. name: "Macro",
  3214. height: math.unit(200, "feet"),
  3215. default: true
  3216. },
  3217. {
  3218. name: "Megamacro",
  3219. height: math.unit(100, "miles")
  3220. },
  3221. ]
  3222. )
  3223. )
  3224. characterMakers.push(() => makeCharacter(
  3225. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3226. {
  3227. front: {
  3228. height: math.unit(5 + 5 / 12, "feet"),
  3229. weight: math.unit(75, "kg"),
  3230. name: "Front",
  3231. image: {
  3232. source: "./media/characters/natasha/front.svg",
  3233. extra: 859 / 824,
  3234. bottom: 23 / 879.6
  3235. }
  3236. },
  3237. frontNsfw: {
  3238. height: math.unit(5 + 5 / 12, "feet"),
  3239. weight: math.unit(75, "kg"),
  3240. name: "Front (NSFW)",
  3241. image: {
  3242. source: "./media/characters/natasha/front-nsfw.svg",
  3243. extra: 859 / 824,
  3244. bottom: 23 / 879.6
  3245. }
  3246. },
  3247. frontErect: {
  3248. height: math.unit(5 + 5 / 12, "feet"),
  3249. weight: math.unit(75, "kg"),
  3250. name: "Front (Erect)",
  3251. image: {
  3252. source: "./media/characters/natasha/front-erect.svg",
  3253. extra: 859 / 824,
  3254. bottom: 23 / 879.6
  3255. }
  3256. },
  3257. back: {
  3258. height: math.unit(5 + 5 / 12, "feet"),
  3259. weight: math.unit(75, "kg"),
  3260. name: "Back",
  3261. image: {
  3262. source: "./media/characters/natasha/back.svg",
  3263. extra: 887.9 / 852.6,
  3264. bottom: 9.7 / 896.4
  3265. }
  3266. },
  3267. backAlt: {
  3268. height: math.unit(5 + 5 / 12, "feet"),
  3269. weight: math.unit(75, "kg"),
  3270. name: "Back (Alt)",
  3271. image: {
  3272. source: "./media/characters/natasha/back-alt.svg",
  3273. extra: 1236.7 / 1192,
  3274. bottom: 22.3 / 1258.2
  3275. }
  3276. },
  3277. dick: {
  3278. height: math.unit(1.772, "feet"),
  3279. name: "Dick",
  3280. image: {
  3281. source: "./media/characters/natasha/dick.svg"
  3282. }
  3283. },
  3284. paw: {
  3285. height: math.unit(0.250, "meters"),
  3286. name: "Paw",
  3287. image: {
  3288. source: "./media/characters/natasha/paw.svg"
  3289. },
  3290. extraAttributes: {
  3291. "toeSize": {
  3292. name: "Toe Size",
  3293. power: 2,
  3294. type: "area",
  3295. base: math.unit(0.0024, "m^2")
  3296. },
  3297. "padSize": {
  3298. name: "Pad Size",
  3299. power: 2,
  3300. type: "area",
  3301. base: math.unit(0.00889, "m^2")
  3302. },
  3303. "pawSize": {
  3304. name: "Paw Size",
  3305. power: 2,
  3306. type: "area",
  3307. base: math.unit(0.023667, "m^2")
  3308. },
  3309. }
  3310. },
  3311. },
  3312. [
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(5 + 5 / 12, "feet")
  3316. },
  3317. {
  3318. name: "Large",
  3319. height: math.unit(12, "feet")
  3320. },
  3321. {
  3322. name: "Macro",
  3323. height: math.unit(100, "feet"),
  3324. default: true
  3325. },
  3326. {
  3327. name: "Macro+",
  3328. height: math.unit(260, "feet")
  3329. },
  3330. {
  3331. name: "Macro++",
  3332. height: math.unit(1, "mile")
  3333. },
  3334. ]
  3335. ))
  3336. characterMakers.push(() => makeCharacter(
  3337. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3338. {
  3339. front: {
  3340. height: math.unit(6, "feet"),
  3341. weight: math.unit(75, "kg"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/malik/front.svg"
  3345. }
  3346. },
  3347. side: {
  3348. height: math.unit(6, "feet"),
  3349. weight: math.unit(75, "kg"),
  3350. name: "Side",
  3351. image: {
  3352. source: "./media/characters/malik/side.svg",
  3353. extra: 1.1539
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(75, "kg"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/malik/back.svg"
  3362. }
  3363. },
  3364. },
  3365. [
  3366. {
  3367. name: "Macro",
  3368. height: math.unit(156, "feet"),
  3369. default: true
  3370. },
  3371. {
  3372. name: "Macro+",
  3373. height: math.unit(1188, "feet")
  3374. },
  3375. ]
  3376. ))
  3377. characterMakers.push(() => makeCharacter(
  3378. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3379. {
  3380. front: {
  3381. height: math.unit(6, "feet"),
  3382. weight: math.unit(75, "kg"),
  3383. name: "Front",
  3384. image: {
  3385. source: "./media/characters/sefer/front.svg",
  3386. extra: 848 / 659,
  3387. bottom: 28.3 / 876.442
  3388. }
  3389. },
  3390. back: {
  3391. height: math.unit(6, "feet"),
  3392. weight: math.unit(75, "kg"),
  3393. name: "Back",
  3394. image: {
  3395. source: "./media/characters/sefer/back.svg",
  3396. extra: 864 / 695,
  3397. bottom: 10 / 871
  3398. }
  3399. },
  3400. frontDressed: {
  3401. height: math.unit(6, "feet"),
  3402. weight: math.unit(75, "kg"),
  3403. name: "Front (Dressed)",
  3404. image: {
  3405. source: "./media/characters/sefer/front-dressed.svg",
  3406. extra: 839 / 653,
  3407. bottom: 37.6 / 878
  3408. }
  3409. },
  3410. },
  3411. [
  3412. {
  3413. name: "Normal",
  3414. height: math.unit(6, "feet"),
  3415. default: true
  3416. },
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3421. {
  3422. body: {
  3423. height: math.unit(2.2428, "meter"),
  3424. weight: math.unit(124.738, "kg"),
  3425. name: "Body",
  3426. image: {
  3427. extra: 1225 / 1050,
  3428. source: "./media/characters/north/front.svg"
  3429. }
  3430. }
  3431. },
  3432. [
  3433. {
  3434. name: "Micro",
  3435. height: math.unit(4, "inches")
  3436. },
  3437. {
  3438. name: "Macro",
  3439. height: math.unit(63, "meters")
  3440. },
  3441. {
  3442. name: "Megamacro",
  3443. height: math.unit(101, "miles"),
  3444. default: true
  3445. }
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3450. {
  3451. angled: {
  3452. height: math.unit(4, "meter"),
  3453. weight: math.unit(150, "kg"),
  3454. name: "Angled",
  3455. image: {
  3456. source: "./media/characters/talan/angled-sfw.svg",
  3457. bottom: 29 / 3734
  3458. }
  3459. },
  3460. angledNsfw: {
  3461. height: math.unit(4, "meter"),
  3462. weight: math.unit(150, "kg"),
  3463. name: "Angled (NSFW)",
  3464. image: {
  3465. source: "./media/characters/talan/angled-nsfw.svg",
  3466. bottom: 29 / 3734
  3467. }
  3468. },
  3469. frontNsfw: {
  3470. height: math.unit(4, "meter"),
  3471. weight: math.unit(150, "kg"),
  3472. name: "Front (NSFW)",
  3473. image: {
  3474. source: "./media/characters/talan/front-nsfw.svg",
  3475. bottom: 29 / 3734
  3476. }
  3477. },
  3478. sideNsfw: {
  3479. height: math.unit(4, "meter"),
  3480. weight: math.unit(150, "kg"),
  3481. name: "Side (NSFW)",
  3482. image: {
  3483. source: "./media/characters/talan/side-nsfw.svg",
  3484. bottom: 29 / 3734
  3485. }
  3486. },
  3487. back: {
  3488. height: math.unit(4, "meter"),
  3489. weight: math.unit(150, "kg"),
  3490. name: "Back",
  3491. image: {
  3492. source: "./media/characters/talan/back.svg"
  3493. }
  3494. },
  3495. dickBottom: {
  3496. height: math.unit(0.621, "meter"),
  3497. name: "Dick (Bottom)",
  3498. image: {
  3499. source: "./media/characters/talan/dick-bottom.svg"
  3500. }
  3501. },
  3502. dickTop: {
  3503. height: math.unit(0.621, "meter"),
  3504. name: "Dick (Top)",
  3505. image: {
  3506. source: "./media/characters/talan/dick-top.svg"
  3507. }
  3508. },
  3509. dickSide: {
  3510. height: math.unit(0.305, "meter"),
  3511. name: "Dick (Side)",
  3512. image: {
  3513. source: "./media/characters/talan/dick-side.svg"
  3514. }
  3515. },
  3516. dickFront: {
  3517. height: math.unit(0.305, "meter"),
  3518. name: "Dick (Front)",
  3519. image: {
  3520. source: "./media/characters/talan/dick-front.svg"
  3521. }
  3522. },
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(4, "meters")
  3528. },
  3529. {
  3530. name: "Macro",
  3531. height: math.unit(100, "meters")
  3532. },
  3533. {
  3534. name: "Megamacro",
  3535. height: math.unit(2, "miles"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Gigamacro",
  3540. height: math.unit(5000, "miles")
  3541. },
  3542. {
  3543. name: "Teramacro",
  3544. height: math.unit(100, "parsecs")
  3545. }
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3550. {
  3551. front: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(90, "kg"),
  3554. name: "Front",
  3555. image: {
  3556. source: "./media/characters/gael'rathus/front.svg"
  3557. }
  3558. },
  3559. frontAlt: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(90, "kg"),
  3562. name: "Front (alt)",
  3563. image: {
  3564. source: "./media/characters/gael'rathus/front-alt.svg"
  3565. }
  3566. },
  3567. frontAlt2: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(90, "kg"),
  3570. name: "Front (alt 2)",
  3571. image: {
  3572. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3573. }
  3574. }
  3575. },
  3576. [
  3577. {
  3578. name: "Normal",
  3579. height: math.unit(9, "feet"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Large",
  3584. height: math.unit(25, "feet")
  3585. },
  3586. {
  3587. name: "Macro",
  3588. height: math.unit(0.25, "miles")
  3589. },
  3590. {
  3591. name: "Megamacro",
  3592. height: math.unit(10, "miles")
  3593. }
  3594. ]
  3595. ))
  3596. characterMakers.push(() => makeCharacter(
  3597. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3598. {
  3599. side: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(140, "kg"),
  3602. name: "Side",
  3603. image: {
  3604. source: "./media/characters/sosha/side.svg",
  3605. extra: 1170/1006,
  3606. bottom: 94/1264
  3607. }
  3608. },
  3609. maw: {
  3610. height: math.unit(2.87, "feet"),
  3611. name: "Maw",
  3612. image: {
  3613. source: "./media/characters/sosha/maw.svg",
  3614. extra: 966/865,
  3615. bottom: 0/966
  3616. }
  3617. },
  3618. cooch: {
  3619. height: math.unit(5.6, "feet"),
  3620. name: "Cooch",
  3621. image: {
  3622. source: "./media/characters/sosha/cooch.svg"
  3623. }
  3624. },
  3625. },
  3626. [
  3627. {
  3628. name: "Normal",
  3629. height: math.unit(12, "feet"),
  3630. default: true
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3636. {
  3637. side: {
  3638. height: math.unit(5 + 5 / 12, "feet"),
  3639. weight: math.unit(170, "kg"),
  3640. name: "Side",
  3641. image: {
  3642. source: "./media/characters/runnola/side.svg",
  3643. extra: 741 / 448,
  3644. bottom: 0.05
  3645. }
  3646. },
  3647. },
  3648. [
  3649. {
  3650. name: "Small",
  3651. height: math.unit(3, "feet")
  3652. },
  3653. {
  3654. name: "Normal",
  3655. height: math.unit(5 + 5 / 12, "feet"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Big",
  3660. height: math.unit(10, "feet")
  3661. },
  3662. ]
  3663. ))
  3664. characterMakers.push(() => makeCharacter(
  3665. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3666. {
  3667. front: {
  3668. height: math.unit(2, "meter"),
  3669. weight: math.unit(50, "kg"),
  3670. name: "Front",
  3671. image: {
  3672. source: "./media/characters/kurribird/front.svg",
  3673. bottom: 0.015
  3674. }
  3675. },
  3676. frontAlt: {
  3677. height: math.unit(1.5, "meter"),
  3678. weight: math.unit(50, "kg"),
  3679. name: "Front (Alt)",
  3680. image: {
  3681. source: "./media/characters/kurribird/front-alt.svg",
  3682. extra: 1.45
  3683. }
  3684. },
  3685. },
  3686. [
  3687. {
  3688. name: "Normal",
  3689. height: math.unit(7, "feet")
  3690. },
  3691. {
  3692. name: "Big",
  3693. height: math.unit(12, "feet"),
  3694. default: true
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(1500, "feet")
  3699. },
  3700. {
  3701. name: "Megamacro",
  3702. height: math.unit(2, "miles")
  3703. }
  3704. ]
  3705. ))
  3706. characterMakers.push(() => makeCharacter(
  3707. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3708. {
  3709. front: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(80, "kg"),
  3712. name: "Front",
  3713. image: {
  3714. source: "./media/characters/elbial/front.svg",
  3715. extra: 1643 / 1556,
  3716. bottom: 60.2 / 1696
  3717. }
  3718. },
  3719. side: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(80, "kg"),
  3722. name: "Side",
  3723. image: {
  3724. source: "./media/characters/elbial/side.svg",
  3725. extra: 1601/1528,
  3726. bottom: 97/1698
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(80, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/elbial/back.svg",
  3735. extra: 1653/1569,
  3736. bottom: 20/1673
  3737. }
  3738. },
  3739. frontDressed: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(80, "kg"),
  3742. name: "Front (Dressed)",
  3743. image: {
  3744. source: "./media/characters/elbial/front-dressed.svg",
  3745. extra: 1638/1569,
  3746. bottom: 70/1708
  3747. }
  3748. },
  3749. genitals: {
  3750. height: math.unit(2 / 3.367, "meter"),
  3751. name: "Genitals",
  3752. image: {
  3753. source: "./media/characters/elbial/genitals.svg"
  3754. }
  3755. },
  3756. },
  3757. [
  3758. {
  3759. name: "Large",
  3760. height: math.unit(100, "feet")
  3761. },
  3762. {
  3763. name: "Macro",
  3764. height: math.unit(500, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Megamacro",
  3769. height: math.unit(10, "miles")
  3770. },
  3771. {
  3772. name: "Gigamacro",
  3773. height: math.unit(25000, "miles")
  3774. },
  3775. {
  3776. name: "Full-Size",
  3777. height: math.unit(8000000, "gigaparsecs")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(60, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/noah/front.svg"
  3790. }
  3791. },
  3792. talons: {
  3793. height: math.unit(0.315, "meter"),
  3794. name: "Talons",
  3795. image: {
  3796. source: "./media/characters/noah/talons.svg"
  3797. }
  3798. }
  3799. },
  3800. [
  3801. {
  3802. name: "Large",
  3803. height: math.unit(50, "feet")
  3804. },
  3805. {
  3806. name: "Macro",
  3807. height: math.unit(750, "feet"),
  3808. default: true
  3809. },
  3810. {
  3811. name: "Megamacro",
  3812. height: math.unit(50, "miles")
  3813. },
  3814. {
  3815. name: "Gigamacro",
  3816. height: math.unit(100000, "miles")
  3817. },
  3818. {
  3819. name: "Full-Size",
  3820. height: math.unit(3000000000, "miles")
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3826. {
  3827. front: {
  3828. height: math.unit(2, "meter"),
  3829. weight: math.unit(80, "kg"),
  3830. name: "Front",
  3831. image: {
  3832. source: "./media/characters/natalya/front.svg"
  3833. }
  3834. },
  3835. back: {
  3836. height: math.unit(2, "meter"),
  3837. weight: math.unit(80, "kg"),
  3838. name: "Back",
  3839. image: {
  3840. source: "./media/characters/natalya/back.svg"
  3841. }
  3842. }
  3843. },
  3844. [
  3845. {
  3846. name: "Normal",
  3847. height: math.unit(150, "feet"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Megamacro",
  3852. height: math.unit(5, "miles")
  3853. },
  3854. {
  3855. name: "Full-Size",
  3856. height: math.unit(600, "kiloparsecs")
  3857. }
  3858. ]
  3859. ))
  3860. characterMakers.push(() => makeCharacter(
  3861. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3862. {
  3863. front: {
  3864. height: math.unit(2, "meter"),
  3865. weight: math.unit(50, "kg"),
  3866. name: "Front",
  3867. image: {
  3868. source: "./media/characters/erestrebah/front.svg",
  3869. extra: 1262/1162,
  3870. bottom: 96/1358
  3871. }
  3872. },
  3873. back: {
  3874. height: math.unit(2, "meter"),
  3875. weight: math.unit(50, "kg"),
  3876. name: "Back",
  3877. image: {
  3878. source: "./media/characters/erestrebah/back.svg",
  3879. extra: 1257/1139,
  3880. bottom: 13/1270
  3881. }
  3882. },
  3883. wing: {
  3884. height: math.unit(2, "meter"),
  3885. weight: math.unit(50, "kg"),
  3886. name: "Wing",
  3887. image: {
  3888. source: "./media/characters/erestrebah/wing.svg",
  3889. extra: 1262/1162,
  3890. bottom: 96/1358
  3891. }
  3892. },
  3893. mouth: {
  3894. height: math.unit(0.39, "feet"),
  3895. name: "Mouth",
  3896. image: {
  3897. source: "./media/characters/erestrebah/mouth.svg"
  3898. }
  3899. }
  3900. },
  3901. [
  3902. {
  3903. name: "Normal",
  3904. height: math.unit(10, "feet")
  3905. },
  3906. {
  3907. name: "Large",
  3908. height: math.unit(50, "feet"),
  3909. default: true
  3910. },
  3911. {
  3912. name: "Macro",
  3913. height: math.unit(300, "feet")
  3914. },
  3915. {
  3916. name: "Macro+",
  3917. height: math.unit(750, "feet")
  3918. },
  3919. {
  3920. name: "Megamacro",
  3921. height: math.unit(3, "miles")
  3922. }
  3923. ]
  3924. ))
  3925. characterMakers.push(() => makeCharacter(
  3926. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3927. {
  3928. front: {
  3929. height: math.unit(2, "meter"),
  3930. weight: math.unit(80, "kg"),
  3931. name: "Front",
  3932. image: {
  3933. source: "./media/characters/jennifer/front.svg",
  3934. bottom: 0.11,
  3935. extra: 1.16
  3936. }
  3937. },
  3938. frontAlt: {
  3939. height: math.unit(2, "meter"),
  3940. weight: math.unit(80, "kg"),
  3941. name: "Front (Alt)",
  3942. image: {
  3943. source: "./media/characters/jennifer/front-alt.svg"
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Canon Height",
  3950. height: math.unit(120, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Macro+",
  3955. height: math.unit(300, "feet")
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(20000, "feet")
  3960. }
  3961. ]
  3962. ))
  3963. characterMakers.push(() => makeCharacter(
  3964. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3965. {
  3966. front: {
  3967. height: math.unit(2, "meter"),
  3968. weight: math.unit(50, "kg"),
  3969. name: "Front",
  3970. image: {
  3971. source: "./media/characters/kalista/front.svg",
  3972. extra: 1314/1145,
  3973. bottom: 101/1415
  3974. }
  3975. },
  3976. back: {
  3977. height: math.unit(2, "meter"),
  3978. weight: math.unit(50, "kg"),
  3979. name: "Back",
  3980. image: {
  3981. source: "./media/characters/kalista/back.svg",
  3982. extra: 1366 / 1156,
  3983. bottom: 33.9 / 1362.78
  3984. }
  3985. }
  3986. },
  3987. [
  3988. {
  3989. name: "Uncomfortably Small",
  3990. height: math.unit(10, "feet")
  3991. },
  3992. {
  3993. name: "Small",
  3994. height: math.unit(30, "feet")
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(100, "feet"),
  3999. default: true
  4000. },
  4001. {
  4002. name: "Macro+",
  4003. height: math.unit(2000, "feet")
  4004. },
  4005. {
  4006. name: "True Form",
  4007. height: math.unit(8924, "miles")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(120, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ggv/front.svg"
  4020. }
  4021. },
  4022. side: {
  4023. height: math.unit(2, "meter"),
  4024. weight: math.unit(120, "kg"),
  4025. name: "Side",
  4026. image: {
  4027. source: "./media/characters/ggv/side.svg"
  4028. }
  4029. }
  4030. },
  4031. [
  4032. {
  4033. name: "Extremely Puny",
  4034. height: math.unit(9 + 5 / 12, "feet")
  4035. },
  4036. {
  4037. name: "Horribly Small",
  4038. height: math.unit(47.7, "miles"),
  4039. default: true
  4040. },
  4041. {
  4042. name: "Reasonably Sized",
  4043. height: math.unit(25000, "parsecs")
  4044. },
  4045. {
  4046. name: "Slightly Uncompressed",
  4047. height: math.unit(7.77e31, "parsecs")
  4048. },
  4049. {
  4050. name: "Omniversal",
  4051. height: math.unit(1e300, "meters")
  4052. },
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(2, "meter"),
  4060. weight: math.unit(75, "lb"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/napalm/front.svg"
  4064. }
  4065. },
  4066. back: {
  4067. height: math.unit(2, "meter"),
  4068. weight: math.unit(75, "lb"),
  4069. name: "Back",
  4070. image: {
  4071. source: "./media/characters/napalm/back.svg"
  4072. }
  4073. }
  4074. },
  4075. [
  4076. {
  4077. name: "Standard",
  4078. height: math.unit(55, "feet"),
  4079. default: true
  4080. }
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4085. {
  4086. front: {
  4087. height: math.unit(7 + 5 / 6, "feet"),
  4088. weight: math.unit(325, "lb"),
  4089. name: "Front",
  4090. image: {
  4091. source: "./media/characters/asana/front.svg",
  4092. extra: 1133 / 1060,
  4093. bottom: 15.2 / 1148.6
  4094. }
  4095. },
  4096. back: {
  4097. height: math.unit(7 + 5 / 6, "feet"),
  4098. weight: math.unit(325, "lb"),
  4099. name: "Back",
  4100. image: {
  4101. source: "./media/characters/asana/back.svg",
  4102. extra: 1114 / 1043,
  4103. bottom: 5 / 1120
  4104. }
  4105. },
  4106. dressedDark: {
  4107. height: math.unit(7 + 5 / 6, "feet"),
  4108. weight: math.unit(325, "lb"),
  4109. name: "Dressed (Dark)",
  4110. image: {
  4111. source: "./media/characters/asana/dressed-dark.svg",
  4112. extra: 1133 / 1060,
  4113. bottom: 15.2 / 1148.6
  4114. }
  4115. },
  4116. dressedLight: {
  4117. height: math.unit(7 + 5 / 6, "feet"),
  4118. weight: math.unit(325, "lb"),
  4119. name: "Dressed (Light)",
  4120. image: {
  4121. source: "./media/characters/asana/dressed-light.svg",
  4122. extra: 1133 / 1060,
  4123. bottom: 15.2 / 1148.6
  4124. }
  4125. },
  4126. },
  4127. [
  4128. {
  4129. name: "Standard",
  4130. height: math.unit(7 + 5 / 6, "feet"),
  4131. default: true
  4132. },
  4133. {
  4134. name: "Large",
  4135. height: math.unit(10, "meters")
  4136. },
  4137. {
  4138. name: "Macro",
  4139. height: math.unit(2500, "meters")
  4140. },
  4141. {
  4142. name: "Megamacro",
  4143. height: math.unit(5e6, "meters")
  4144. },
  4145. {
  4146. name: "Examacro",
  4147. height: math.unit(5e12, "lightyears")
  4148. },
  4149. {
  4150. name: "Max Size",
  4151. height: math.unit(1e31, "lightyears")
  4152. }
  4153. ]
  4154. ))
  4155. characterMakers.push(() => makeCharacter(
  4156. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4157. {
  4158. front: {
  4159. height: math.unit(2, "meter"),
  4160. weight: math.unit(60, "kg"),
  4161. name: "Front",
  4162. image: {
  4163. source: "./media/characters/ebony/front.svg",
  4164. bottom: 0.03,
  4165. extra: 1045 / 810 + 0.03
  4166. }
  4167. },
  4168. side: {
  4169. height: math.unit(2, "meter"),
  4170. weight: math.unit(60, "kg"),
  4171. name: "Side",
  4172. image: {
  4173. source: "./media/characters/ebony/side.svg",
  4174. bottom: 0.03,
  4175. extra: 1045 / 810 + 0.03
  4176. }
  4177. },
  4178. back: {
  4179. height: math.unit(2, "meter"),
  4180. weight: math.unit(60, "kg"),
  4181. name: "Back",
  4182. image: {
  4183. source: "./media/characters/ebony/back.svg",
  4184. bottom: 0.01,
  4185. extra: 1045 / 810 + 0.01
  4186. }
  4187. },
  4188. },
  4189. [
  4190. // TODO check why I did this lol
  4191. {
  4192. name: "Standard",
  4193. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(200, "feet")
  4199. },
  4200. {
  4201. name: "Gigamacro",
  4202. height: math.unit(13000, "km")
  4203. }
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4208. {
  4209. front: {
  4210. height: math.unit(6, "feet"),
  4211. weight: math.unit(175, "lb"),
  4212. name: "Front",
  4213. image: {
  4214. source: "./media/characters/mountain/front.svg",
  4215. extra: 972 / 955,
  4216. bottom: 64 / 1036.6
  4217. }
  4218. },
  4219. back: {
  4220. height: math.unit(6, "feet"),
  4221. weight: math.unit(175, "lb"),
  4222. name: "Back",
  4223. image: {
  4224. source: "./media/characters/mountain/back.svg",
  4225. extra: 970 / 950,
  4226. bottom: 28.25 / 999
  4227. }
  4228. },
  4229. },
  4230. [
  4231. {
  4232. name: "Large",
  4233. height: math.unit(20, "meters")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(300, "meters")
  4238. },
  4239. {
  4240. name: "Gigamacro",
  4241. height: math.unit(10000, "km"),
  4242. default: true
  4243. },
  4244. {
  4245. name: "Examacro",
  4246. height: math.unit(10e9, "lightyears")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(8, "feet"),
  4255. weight: math.unit(500, "lb"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/rick/front.svg"
  4259. }
  4260. }
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(8, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(5, "km")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(8, "feet"),
  4279. weight: math.unit(120, "lb"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/ona/front.svg"
  4283. }
  4284. },
  4285. frontAlt: {
  4286. height: math.unit(8, "feet"),
  4287. weight: math.unit(120, "lb"),
  4288. name: "Front (Alt)",
  4289. image: {
  4290. source: "./media/characters/ona/front-alt.svg"
  4291. }
  4292. },
  4293. back: {
  4294. height: math.unit(8, "feet"),
  4295. weight: math.unit(120, "lb"),
  4296. name: "Back",
  4297. image: {
  4298. source: "./media/characters/ona/back.svg"
  4299. }
  4300. },
  4301. foot: {
  4302. height: math.unit(1.1, "feet"),
  4303. name: "Foot",
  4304. image: {
  4305. source: "./media/characters/ona/foot.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Megamacro",
  4312. height: math.unit(70, "km"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "Gigamacro",
  4317. height: math.unit(681818, "miles")
  4318. },
  4319. {
  4320. name: "Examacro",
  4321. height: math.unit(3800000, "lightyears")
  4322. },
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(12, "feet"),
  4330. weight: math.unit(3000, "lb"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/mech/front.svg",
  4334. extra: 2900 / 2770,
  4335. bottom: 110 / 3010
  4336. }
  4337. },
  4338. back: {
  4339. height: math.unit(12, "feet"),
  4340. weight: math.unit(3000, "lb"),
  4341. name: "Back",
  4342. image: {
  4343. source: "./media/characters/mech/back.svg",
  4344. extra: 3011 / 2890,
  4345. bottom: 94 / 3105
  4346. }
  4347. },
  4348. maw: {
  4349. height: math.unit(3.07, "feet"),
  4350. name: "Maw",
  4351. image: {
  4352. source: "./media/characters/mech/maw.svg"
  4353. }
  4354. },
  4355. head: {
  4356. height: math.unit(2.82, "feet"),
  4357. name: "Head",
  4358. image: {
  4359. source: "./media/characters/mech/head.svg"
  4360. }
  4361. },
  4362. dick: {
  4363. height: math.unit(1.43, "feet"),
  4364. name: "Dick",
  4365. image: {
  4366. source: "./media/characters/mech/dick.svg"
  4367. }
  4368. },
  4369. },
  4370. [
  4371. {
  4372. name: "Normal",
  4373. height: math.unit(12, "feet")
  4374. },
  4375. {
  4376. name: "Macro",
  4377. height: math.unit(300, "feet"),
  4378. default: true
  4379. },
  4380. {
  4381. name: "Macro+",
  4382. height: math.unit(1500, "feet")
  4383. },
  4384. ]
  4385. ))
  4386. characterMakers.push(() => makeCharacter(
  4387. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4388. {
  4389. front: {
  4390. height: math.unit(1.3, "meter"),
  4391. weight: math.unit(30, "kg"),
  4392. name: "Front",
  4393. image: {
  4394. source: "./media/characters/gregory/front.svg",
  4395. }
  4396. }
  4397. },
  4398. [
  4399. {
  4400. name: "Normal",
  4401. height: math.unit(1.3, "meter"),
  4402. default: true
  4403. },
  4404. {
  4405. name: "Macro",
  4406. height: math.unit(20, "meter")
  4407. }
  4408. ]
  4409. ))
  4410. characterMakers.push(() => makeCharacter(
  4411. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4412. {
  4413. front: {
  4414. height: math.unit(2.8, "meter"),
  4415. weight: math.unit(200, "kg"),
  4416. name: "Front",
  4417. image: {
  4418. source: "./media/characters/elory/front.svg",
  4419. }
  4420. }
  4421. },
  4422. [
  4423. {
  4424. name: "Normal",
  4425. height: math.unit(2.8, "meter"),
  4426. default: true
  4427. },
  4428. {
  4429. name: "Macro",
  4430. height: math.unit(38, "meter")
  4431. }
  4432. ]
  4433. ))
  4434. characterMakers.push(() => makeCharacter(
  4435. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4436. {
  4437. front: {
  4438. height: math.unit(470, "feet"),
  4439. weight: math.unit(924, "tons"),
  4440. name: "Front",
  4441. image: {
  4442. source: "./media/characters/angelpatamon/front.svg",
  4443. }
  4444. }
  4445. },
  4446. [
  4447. {
  4448. name: "Normal",
  4449. height: math.unit(470, "feet"),
  4450. default: true
  4451. },
  4452. {
  4453. name: "Deity Size I",
  4454. height: math.unit(28651.2, "km")
  4455. },
  4456. {
  4457. name: "Deity Size II",
  4458. height: math.unit(171907.2, "km")
  4459. }
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4464. {
  4465. side: {
  4466. height: math.unit(7.2, "meter"),
  4467. weight: math.unit(8.2, "tons"),
  4468. name: "Side",
  4469. image: {
  4470. source: "./media/characters/cryae/side.svg",
  4471. extra: 3500 / 1500
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Normal",
  4478. height: math.unit(7.2, "meter"),
  4479. default: true
  4480. }
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4485. {
  4486. front: {
  4487. height: math.unit(6, "feet"),
  4488. weight: math.unit(175, "lb"),
  4489. name: "Front",
  4490. image: {
  4491. source: "./media/characters/xera/front.svg",
  4492. extra: 2377 / 1972,
  4493. bottom: 75.5 / 2452
  4494. }
  4495. },
  4496. side: {
  4497. height: math.unit(6, "feet"),
  4498. weight: math.unit(175, "lb"),
  4499. name: "Side",
  4500. image: {
  4501. source: "./media/characters/xera/side.svg",
  4502. extra: 2345 / 2019,
  4503. bottom: 39.7 / 2384
  4504. }
  4505. },
  4506. back: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(175, "lb"),
  4509. name: "Back",
  4510. image: {
  4511. source: "./media/characters/xera/back.svg",
  4512. extra: 2095 / 1984,
  4513. bottom: 67 / 2166
  4514. }
  4515. },
  4516. },
  4517. [
  4518. {
  4519. name: "Small",
  4520. height: math.unit(10, "feet")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(500, "meters"),
  4525. default: true
  4526. },
  4527. {
  4528. name: "Macro+",
  4529. height: math.unit(10, "km")
  4530. },
  4531. {
  4532. name: "Gigamacro",
  4533. height: math.unit(25000, "km")
  4534. },
  4535. {
  4536. name: "Teramacro",
  4537. height: math.unit(3e6, "km")
  4538. }
  4539. ]
  4540. ))
  4541. characterMakers.push(() => makeCharacter(
  4542. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4543. {
  4544. front: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(175, "lb"),
  4547. name: "Front",
  4548. image: {
  4549. source: "./media/characters/nebula/front.svg",
  4550. extra: 2566 / 2362,
  4551. bottom: 81 / 2644
  4552. }
  4553. }
  4554. },
  4555. [
  4556. {
  4557. name: "Small",
  4558. height: math.unit(4.5, "meters")
  4559. },
  4560. {
  4561. name: "Macro",
  4562. height: math.unit(1500, "meters"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Megamacro",
  4567. height: math.unit(150, "km")
  4568. },
  4569. {
  4570. name: "Gigamacro",
  4571. height: math.unit(27000, "km")
  4572. }
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4577. {
  4578. front: {
  4579. height: math.unit(6, "feet"),
  4580. weight: math.unit(225, "lb"),
  4581. name: "Front",
  4582. image: {
  4583. source: "./media/characters/abysgar/front.svg",
  4584. extra: 1739/1614,
  4585. bottom: 71/1810
  4586. }
  4587. },
  4588. frontNsfw: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(225, "lb"),
  4591. name: "Front (NSFW)",
  4592. image: {
  4593. source: "./media/characters/abysgar/front-nsfw.svg",
  4594. extra: 1739/1614,
  4595. bottom: 71/1810
  4596. }
  4597. },
  4598. back: {
  4599. height: math.unit(4.6, "feet"),
  4600. weight: math.unit(225, "lb"),
  4601. name: "Back",
  4602. image: {
  4603. source: "./media/characters/abysgar/back.svg",
  4604. extra: 1384/1327,
  4605. bottom: 0/1384
  4606. }
  4607. },
  4608. head: {
  4609. height: math.unit(1.25, "feet"),
  4610. name: "Head",
  4611. image: {
  4612. source: "./media/characters/abysgar/head.svg",
  4613. extra: 669/569,
  4614. bottom: 0/669
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Small",
  4621. height: math.unit(4.5, "meters")
  4622. },
  4623. {
  4624. name: "Macro",
  4625. height: math.unit(1250, "meters"),
  4626. default: true
  4627. },
  4628. {
  4629. name: "Megamacro",
  4630. height: math.unit(125, "km")
  4631. },
  4632. {
  4633. name: "Gigamacro",
  4634. height: math.unit(26000, "km")
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4640. {
  4641. front: {
  4642. height: math.unit(6, "feet"),
  4643. weight: math.unit(180, "lb"),
  4644. name: "Front",
  4645. image: {
  4646. source: "./media/characters/yakuz/front.svg"
  4647. }
  4648. }
  4649. },
  4650. [
  4651. {
  4652. name: "Small",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "Macro",
  4657. height: math.unit(1500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "Megamacro",
  4662. height: math.unit(200, "km")
  4663. },
  4664. {
  4665. name: "Gigamacro",
  4666. height: math.unit(100000, "km")
  4667. }
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4672. {
  4673. front: {
  4674. height: math.unit(6, "feet"),
  4675. weight: math.unit(175, "lb"),
  4676. name: "Front",
  4677. image: {
  4678. source: "./media/characters/mirova/front.svg",
  4679. extra: 3334 / 3071,
  4680. bottom: 42 / 3375.6
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Small",
  4687. height: math.unit(5, "meters")
  4688. },
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(900, "meters"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Megamacro",
  4696. height: math.unit(135, "km")
  4697. },
  4698. {
  4699. name: "Gigamacro",
  4700. height: math.unit(20000, "km")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4706. {
  4707. side: {
  4708. height: math.unit(28.35, "feet"),
  4709. weight: math.unit(99.75, "tons"),
  4710. name: "Side",
  4711. image: {
  4712. source: "./media/characters/asana-mech/side.svg",
  4713. extra: 923 / 699,
  4714. bottom: 50 / 975
  4715. }
  4716. },
  4717. chaingun: {
  4718. height: math.unit(7, "feet"),
  4719. weight: math.unit(2400, "lb"),
  4720. name: "Chaingun",
  4721. image: {
  4722. source: "./media/characters/asana-mech/chaingun.svg"
  4723. }
  4724. },
  4725. laser: {
  4726. height: math.unit(7.12, "feet"),
  4727. weight: math.unit(2000, "lb"),
  4728. name: "Laser",
  4729. image: {
  4730. source: "./media/characters/asana-mech/laser.svg"
  4731. }
  4732. },
  4733. },
  4734. [
  4735. {
  4736. name: "Normal",
  4737. height: math.unit(28.35, "feet"),
  4738. default: true
  4739. },
  4740. {
  4741. name: "Macro",
  4742. height: math.unit(2500, "feet")
  4743. },
  4744. {
  4745. name: "Megamacro",
  4746. height: math.unit(25, "miles")
  4747. },
  4748. {
  4749. name: "Examacro",
  4750. height: math.unit(6e8, "lightyears")
  4751. },
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4756. {
  4757. front: {
  4758. height: math.unit(5, "meters"),
  4759. weight: math.unit(1000, "kg"),
  4760. name: "Front",
  4761. image: {
  4762. source: "./media/characters/asche/front.svg",
  4763. extra: 1258 / 1190,
  4764. bottom: 47 / 1305
  4765. }
  4766. },
  4767. frontUnderwear: {
  4768. height: math.unit(5, "meters"),
  4769. weight: math.unit(1000, "kg"),
  4770. name: "Front (Underwear)",
  4771. image: {
  4772. source: "./media/characters/asche/front-underwear.svg",
  4773. extra: 1258 / 1190,
  4774. bottom: 47 / 1305
  4775. }
  4776. },
  4777. frontDressed: {
  4778. height: math.unit(5, "meters"),
  4779. weight: math.unit(1000, "kg"),
  4780. name: "Front (Dressed)",
  4781. image: {
  4782. source: "./media/characters/asche/front-dressed.svg",
  4783. extra: 1258 / 1190,
  4784. bottom: 47 / 1305
  4785. }
  4786. },
  4787. frontArmor: {
  4788. height: math.unit(5, "meters"),
  4789. weight: math.unit(1000, "kg"),
  4790. name: "Front (Armored)",
  4791. image: {
  4792. source: "./media/characters/asche/front-armored.svg",
  4793. extra: 1374 / 1308,
  4794. bottom: 23 / 1397
  4795. }
  4796. },
  4797. mp724: {
  4798. height: math.unit(0.96, "meters"),
  4799. weight: math.unit(38, "kg"),
  4800. name: "H&K MP724",
  4801. image: {
  4802. source: "./media/characters/asche/h&k-mp724.svg"
  4803. }
  4804. },
  4805. side: {
  4806. height: math.unit(5, "meters"),
  4807. weight: math.unit(1000, "kg"),
  4808. name: "Side",
  4809. image: {
  4810. source: "./media/characters/asche/side.svg",
  4811. extra: 1717 / 1609,
  4812. bottom: 0.005
  4813. }
  4814. },
  4815. back: {
  4816. height: math.unit(5, "meters"),
  4817. weight: math.unit(1000, "kg"),
  4818. name: "Back",
  4819. image: {
  4820. source: "./media/characters/asche/back.svg",
  4821. extra: 1570 / 1501
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "DEFCON 5",
  4828. height: math.unit(5, "meters")
  4829. },
  4830. {
  4831. name: "DEFCON 4",
  4832. height: math.unit(500, "meters"),
  4833. default: true
  4834. },
  4835. {
  4836. name: "DEFCON 3",
  4837. height: math.unit(5, "km")
  4838. },
  4839. {
  4840. name: "DEFCON 2",
  4841. height: math.unit(500, "km")
  4842. },
  4843. {
  4844. name: "DEFCON 1",
  4845. height: math.unit(500000, "km")
  4846. },
  4847. {
  4848. name: "DEFCON 0",
  4849. height: math.unit(3, "gigaparsecs")
  4850. },
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4855. {
  4856. front: {
  4857. height: math.unit(2, "meters"),
  4858. weight: math.unit(76, "kg"),
  4859. name: "Front",
  4860. image: {
  4861. source: "./media/characters/gale/front.svg"
  4862. }
  4863. },
  4864. frontAlt1: {
  4865. height: math.unit(2, "meters"),
  4866. weight: math.unit(76, "kg"),
  4867. name: "Front (Alt 1)",
  4868. image: {
  4869. source: "./media/characters/gale/front-alt-1.svg"
  4870. }
  4871. },
  4872. frontAlt2: {
  4873. height: math.unit(2, "meters"),
  4874. weight: math.unit(76, "kg"),
  4875. name: "Front (Alt 2)",
  4876. image: {
  4877. source: "./media/characters/gale/front-alt-2.svg"
  4878. }
  4879. },
  4880. },
  4881. [
  4882. {
  4883. name: "Normal",
  4884. height: math.unit(7, "feet")
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(150, "feet"),
  4889. default: true
  4890. },
  4891. {
  4892. name: "Macro+",
  4893. height: math.unit(300, "feet")
  4894. },
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4899. {
  4900. front: {
  4901. height: math.unit(5 + 10/12, "feet"),
  4902. weight: math.unit(67, "kg"),
  4903. name: "Front",
  4904. image: {
  4905. source: "./media/characters/draylen/front.svg",
  4906. extra: 832/777,
  4907. bottom: 85/917
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(5 + 10/12, "feet")
  4915. },
  4916. {
  4917. name: "Macro",
  4918. height: math.unit(150, "feet"),
  4919. default: true
  4920. }
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4925. {
  4926. front: {
  4927. height: math.unit(7 + 9 / 12, "feet"),
  4928. weight: math.unit(379, "lbs"),
  4929. name: "Front",
  4930. image: {
  4931. source: "./media/characters/chez/front.svg"
  4932. }
  4933. },
  4934. side: {
  4935. height: math.unit(7 + 9 / 12, "feet"),
  4936. weight: math.unit(379, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/chez/side.svg"
  4940. }
  4941. }
  4942. },
  4943. [
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(7 + 9 / 12, "feet"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "God King",
  4951. height: math.unit(9750000, "meters")
  4952. }
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4957. {
  4958. front: {
  4959. height: math.unit(6, "feet"),
  4960. weight: math.unit(275, "lbs"),
  4961. name: "Front",
  4962. image: {
  4963. source: "./media/characters/kaylum/front.svg",
  4964. bottom: 0.01,
  4965. extra: 1166 / 1031
  4966. }
  4967. },
  4968. frontWingless: {
  4969. height: math.unit(6, "feet"),
  4970. weight: math.unit(275, "lbs"),
  4971. name: "Front (Wingless)",
  4972. image: {
  4973. source: "./media/characters/kaylum/front-wingless.svg",
  4974. bottom: 0.01,
  4975. extra: 1117 / 1031
  4976. }
  4977. }
  4978. },
  4979. [
  4980. {
  4981. name: "Normal",
  4982. height: math.unit(3.05, "meters")
  4983. },
  4984. {
  4985. name: "Master",
  4986. height: math.unit(5.5, "meters")
  4987. },
  4988. {
  4989. name: "Rampage",
  4990. height: math.unit(19, "meters")
  4991. },
  4992. {
  4993. name: "Macro Lite",
  4994. height: math.unit(37, "meters")
  4995. },
  4996. {
  4997. name: "Hyper Predator",
  4998. height: math.unit(61, "meters")
  4999. },
  5000. {
  5001. name: "Macro",
  5002. height: math.unit(138, "meters"),
  5003. default: true
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(5 + 5 / 12, "feet"),
  5012. weight: math.unit(120, "lbs"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/geta/front.svg",
  5016. extra: 1003/933,
  5017. bottom: 21/1024
  5018. }
  5019. },
  5020. paw: {
  5021. height: math.unit(0.35, "feet"),
  5022. name: "Paw",
  5023. image: {
  5024. source: "./media/characters/geta/paw.svg"
  5025. }
  5026. },
  5027. },
  5028. [
  5029. {
  5030. name: "Micro",
  5031. height: math.unit(3, "inches"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(5 + 5 / 12, "feet")
  5037. }
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(6, "feet"),
  5045. weight: math.unit(300, "lbs"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/tyrnn/front.svg"
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Main Height",
  5055. height: math.unit(355, "feet"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Fave. Height",
  5060. height: math.unit(2400, "feet")
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(300, "lbs"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/appledectomy/front.svg"
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(2500, "feet")
  5080. },
  5081. {
  5082. name: "Megamacro",
  5083. height: math.unit(50, "miles"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Gigamacro",
  5088. height: math.unit(5000, "miles")
  5089. },
  5090. {
  5091. name: "Teramacro",
  5092. height: math.unit(250000, "miles")
  5093. },
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5098. {
  5099. front: {
  5100. height: math.unit(6, "feet"),
  5101. weight: math.unit(200, "lbs"),
  5102. name: "Front",
  5103. image: {
  5104. source: "./media/characters/vulpes/front.svg",
  5105. extra: 573 / 543,
  5106. bottom: 0.033
  5107. }
  5108. },
  5109. side: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(200, "lbs"),
  5112. name: "Side",
  5113. image: {
  5114. source: "./media/characters/vulpes/side.svg",
  5115. extra: 577 / 549,
  5116. bottom: 11 / 588
  5117. }
  5118. },
  5119. back: {
  5120. height: math.unit(6, "feet"),
  5121. weight: math.unit(200, "lbs"),
  5122. name: "Back",
  5123. image: {
  5124. source: "./media/characters/vulpes/back.svg",
  5125. extra: 573 / 549,
  5126. bottom: 20 / 593
  5127. }
  5128. },
  5129. feet: {
  5130. height: math.unit(1.276, "feet"),
  5131. name: "Feet",
  5132. image: {
  5133. source: "./media/characters/vulpes/feet.svg"
  5134. }
  5135. },
  5136. maw: {
  5137. height: math.unit(1.18, "feet"),
  5138. name: "Maw",
  5139. image: {
  5140. source: "./media/characters/vulpes/maw.svg"
  5141. }
  5142. },
  5143. },
  5144. [
  5145. {
  5146. name: "Micro",
  5147. height: math.unit(2, "inches")
  5148. },
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(6.3, "feet")
  5152. },
  5153. {
  5154. name: "Macro",
  5155. height: math.unit(850, "feet")
  5156. },
  5157. {
  5158. name: "Megamacro",
  5159. height: math.unit(7500, "feet"),
  5160. default: true
  5161. },
  5162. {
  5163. name: "Gigamacro",
  5164. height: math.unit(570000, "miles")
  5165. }
  5166. ]
  5167. ))
  5168. characterMakers.push(() => makeCharacter(
  5169. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5170. {
  5171. front: {
  5172. height: math.unit(6, "feet"),
  5173. weight: math.unit(210, "lbs"),
  5174. name: "Front",
  5175. image: {
  5176. source: "./media/characters/rain-fallen/front.svg"
  5177. }
  5178. },
  5179. side: {
  5180. height: math.unit(6, "feet"),
  5181. weight: math.unit(210, "lbs"),
  5182. name: "Side",
  5183. image: {
  5184. source: "./media/characters/rain-fallen/side.svg"
  5185. }
  5186. },
  5187. back: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(210, "lbs"),
  5190. name: "Back",
  5191. image: {
  5192. source: "./media/characters/rain-fallen/back.svg"
  5193. }
  5194. },
  5195. feral: {
  5196. height: math.unit(9, "feet"),
  5197. weight: math.unit(700, "lbs"),
  5198. name: "Feral",
  5199. image: {
  5200. source: "./media/characters/rain-fallen/feral.svg"
  5201. }
  5202. },
  5203. },
  5204. [
  5205. {
  5206. name: "Meddling with Mortals",
  5207. height: math.unit(8 + 8/12, "feet")
  5208. },
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(5, "meter")
  5212. },
  5213. {
  5214. name: "Macro",
  5215. height: math.unit(150, "meter"),
  5216. default: true
  5217. },
  5218. {
  5219. name: "Megamacro",
  5220. height: math.unit(278e6, "meter")
  5221. },
  5222. {
  5223. name: "Gigamacro",
  5224. height: math.unit(2e9, "meter")
  5225. },
  5226. {
  5227. name: "Teramacro",
  5228. height: math.unit(8e12, "meter")
  5229. },
  5230. {
  5231. name: "Devourer",
  5232. height: math.unit(14, "zettameters")
  5233. },
  5234. {
  5235. name: "Scarlet King",
  5236. height: math.unit(18, "yottameters")
  5237. },
  5238. {
  5239. name: "Void",
  5240. height: math.unit(1e88, "yottameters")
  5241. }
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5246. {
  5247. standing: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(180, "lbs"),
  5250. name: "Standing",
  5251. image: {
  5252. source: "./media/characters/zaakira/standing.svg",
  5253. extra: 1599/1504,
  5254. bottom: 39/1638
  5255. }
  5256. },
  5257. laying: {
  5258. height: math.unit(3.3, "feet"),
  5259. weight: math.unit(180, "lbs"),
  5260. name: "Laying",
  5261. image: {
  5262. source: "./media/characters/zaakira/laying.svg"
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(12, "feet")
  5270. },
  5271. {
  5272. name: "Macro",
  5273. height: math.unit(279, "feet"),
  5274. default: true
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5280. {
  5281. femSfw: {
  5282. height: math.unit(8, "feet"),
  5283. weight: math.unit(350, "lb"),
  5284. name: "Fem",
  5285. image: {
  5286. source: "./media/characters/sigvald/fem-sfw.svg",
  5287. extra: 182 / 164,
  5288. bottom: 8.7 / 190.5
  5289. }
  5290. },
  5291. femNsfw: {
  5292. height: math.unit(8, "feet"),
  5293. weight: math.unit(350, "lb"),
  5294. name: "Fem (NSFW)",
  5295. image: {
  5296. source: "./media/characters/sigvald/fem-nsfw.svg",
  5297. extra: 182 / 164,
  5298. bottom: 8.7 / 190.5
  5299. }
  5300. },
  5301. maleNsfw: {
  5302. height: math.unit(8, "feet"),
  5303. weight: math.unit(350, "lb"),
  5304. name: "Male (NSFW)",
  5305. image: {
  5306. source: "./media/characters/sigvald/male-nsfw.svg",
  5307. extra: 182 / 164,
  5308. bottom: 8.7 / 190.5
  5309. }
  5310. },
  5311. hermNsfw: {
  5312. height: math.unit(8, "feet"),
  5313. weight: math.unit(350, "lb"),
  5314. name: "Herm (NSFW)",
  5315. image: {
  5316. source: "./media/characters/sigvald/herm-nsfw.svg",
  5317. extra: 182 / 164,
  5318. bottom: 8.7 / 190.5
  5319. }
  5320. },
  5321. dick: {
  5322. height: math.unit(2.36, "feet"),
  5323. name: "Dick",
  5324. image: {
  5325. source: "./media/characters/sigvald/dick.svg"
  5326. }
  5327. },
  5328. eye: {
  5329. height: math.unit(0.31, "feet"),
  5330. name: "Eye",
  5331. image: {
  5332. source: "./media/characters/sigvald/eye.svg"
  5333. }
  5334. },
  5335. mouth: {
  5336. height: math.unit(0.92, "feet"),
  5337. name: "Mouth",
  5338. image: {
  5339. source: "./media/characters/sigvald/mouth.svg"
  5340. }
  5341. },
  5342. paws: {
  5343. height: math.unit(2.2, "feet"),
  5344. name: "Paws",
  5345. image: {
  5346. source: "./media/characters/sigvald/paws.svg"
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(8, "feet")
  5354. },
  5355. {
  5356. name: "Large",
  5357. height: math.unit(12, "feet")
  5358. },
  5359. {
  5360. name: "Larger",
  5361. height: math.unit(20, "feet")
  5362. },
  5363. {
  5364. name: "Macro",
  5365. height: math.unit(150, "feet")
  5366. },
  5367. {
  5368. name: "Macro+",
  5369. height: math.unit(200, "feet"),
  5370. default: true
  5371. },
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5376. {
  5377. side: {
  5378. height: math.unit(12, "feet"),
  5379. weight: math.unit(2000, "kg"),
  5380. name: "Side",
  5381. image: {
  5382. source: "./media/characters/scott/side.svg",
  5383. extra: 754 / 724,
  5384. bottom: 0.069
  5385. }
  5386. },
  5387. upright: {
  5388. height: math.unit(12, "feet"),
  5389. weight: math.unit(2000, "kg"),
  5390. name: "Upright",
  5391. image: {
  5392. source: "./media/characters/scott/upright.svg",
  5393. extra: 3881 / 3722,
  5394. bottom: 0.05
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(12, "feet"),
  5402. default: true
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5408. {
  5409. side: {
  5410. height: math.unit(8, "meters"),
  5411. weight: math.unit(84755, "lbs"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/tobias/side.svg",
  5415. extra: 1474 / 1096,
  5416. bottom: 38.9 / 1513.1235
  5417. }
  5418. },
  5419. },
  5420. [
  5421. {
  5422. name: "Normal",
  5423. height: math.unit(8, "meters"),
  5424. default: true
  5425. },
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5430. {
  5431. front: {
  5432. height: math.unit(5.5, "feet"),
  5433. weight: math.unit(400, "lbs"),
  5434. name: "Front",
  5435. image: {
  5436. source: "./media/characters/kieran/front.svg",
  5437. extra: 2694 / 2364,
  5438. bottom: 217 / 2908
  5439. }
  5440. },
  5441. side: {
  5442. height: math.unit(5.5, "feet"),
  5443. weight: math.unit(400, "lbs"),
  5444. name: "Side",
  5445. image: {
  5446. source: "./media/characters/kieran/side.svg",
  5447. extra: 875 / 777,
  5448. bottom: 84.6 / 959
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(5.5, "feet"),
  5456. default: true
  5457. },
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5462. {
  5463. side: {
  5464. height: math.unit(2, "meters"),
  5465. weight: math.unit(70, "kg"),
  5466. name: "Side",
  5467. image: {
  5468. source: "./media/characters/sanya/side.svg",
  5469. bottom: 0.02,
  5470. extra: 1.02
  5471. }
  5472. },
  5473. },
  5474. [
  5475. {
  5476. name: "Small",
  5477. height: math.unit(2, "meters")
  5478. },
  5479. {
  5480. name: "Normal",
  5481. height: math.unit(3, "meters")
  5482. },
  5483. {
  5484. name: "Macro",
  5485. height: math.unit(16, "meters"),
  5486. default: true
  5487. },
  5488. ]
  5489. ))
  5490. characterMakers.push(() => makeCharacter(
  5491. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5492. {
  5493. front: {
  5494. height: math.unit(2, "meters"),
  5495. weight: math.unit(120, "kg"),
  5496. name: "Front",
  5497. image: {
  5498. source: "./media/characters/miranda/front.svg",
  5499. extra: 195 / 185,
  5500. bottom: 10.9 / 206.5
  5501. }
  5502. },
  5503. back: {
  5504. height: math.unit(2, "meters"),
  5505. weight: math.unit(120, "kg"),
  5506. name: "Back",
  5507. image: {
  5508. source: "./media/characters/miranda/back.svg",
  5509. extra: 201 / 193,
  5510. bottom: 2.3 / 203.7
  5511. }
  5512. },
  5513. },
  5514. [
  5515. {
  5516. name: "Normal",
  5517. height: math.unit(10, "feet"),
  5518. default: true
  5519. }
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "James", species: ["deer"], tags: ["anthro"] },
  5524. {
  5525. side: {
  5526. height: math.unit(2, "meters"),
  5527. weight: math.unit(100, "kg"),
  5528. name: "Front",
  5529. image: {
  5530. source: "./media/characters/james/front.svg",
  5531. extra: 10 / 8.5
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(8.5, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5545. {
  5546. side: {
  5547. height: math.unit(9.5, "feet"),
  5548. weight: math.unit(2500, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/heather/side.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(9.5, "feet"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5565. {
  5566. side: {
  5567. height: math.unit(6.5, "feet"),
  5568. weight: math.unit(400, "lbs"),
  5569. name: "Side",
  5570. image: {
  5571. source: "./media/characters/lukas/side.svg",
  5572. extra: 7.25 / 6.5
  5573. }
  5574. },
  5575. },
  5576. [
  5577. {
  5578. name: "Normal",
  5579. height: math.unit(6.5, "feet"),
  5580. default: true
  5581. }
  5582. ]
  5583. ))
  5584. characterMakers.push(() => makeCharacter(
  5585. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5586. {
  5587. side: {
  5588. height: math.unit(5, "feet"),
  5589. weight: math.unit(3000, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/louise/side.svg"
  5593. }
  5594. },
  5595. },
  5596. [
  5597. {
  5598. name: "Normal",
  5599. height: math.unit(5, "feet"),
  5600. default: true
  5601. }
  5602. ]
  5603. ))
  5604. characterMakers.push(() => makeCharacter(
  5605. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5606. {
  5607. side: {
  5608. height: math.unit(6, "feet"),
  5609. weight: math.unit(150, "lbs"),
  5610. name: "Side",
  5611. image: {
  5612. source: "./media/characters/ramona/side.svg",
  5613. extra: 871/854,
  5614. bottom: 41/912
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(5.3, "meters"),
  5622. default: true
  5623. },
  5624. {
  5625. name: "Macro",
  5626. height: math.unit(20, "stories")
  5627. },
  5628. {
  5629. name: "Macro+",
  5630. height: math.unit(50, "stories")
  5631. },
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5636. {
  5637. standing: {
  5638. height: math.unit(5.75, "feet"),
  5639. weight: math.unit(160, "lbs"),
  5640. name: "Standing",
  5641. image: {
  5642. source: "./media/characters/deerpuff/standing.svg",
  5643. extra: 682 / 624
  5644. }
  5645. },
  5646. sitting: {
  5647. height: math.unit(5.75 / 1.79, "feet"),
  5648. weight: math.unit(160, "lbs"),
  5649. name: "Sitting",
  5650. image: {
  5651. source: "./media/characters/deerpuff/sitting.svg",
  5652. bottom: 44 / 400,
  5653. extra: 1
  5654. }
  5655. },
  5656. taurLaying: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(400, "lbs"),
  5659. name: "Taur (Laying)",
  5660. image: {
  5661. source: "./media/characters/deerpuff/taur-laying.svg"
  5662. }
  5663. },
  5664. },
  5665. [
  5666. {
  5667. name: "Puffball",
  5668. height: math.unit(6, "inches")
  5669. },
  5670. {
  5671. name: "Normalpuff",
  5672. height: math.unit(5.75, "feet")
  5673. },
  5674. {
  5675. name: "Macropuff",
  5676. height: math.unit(1500, "feet"),
  5677. default: true
  5678. },
  5679. {
  5680. name: "Megapuff",
  5681. height: math.unit(500, "miles")
  5682. },
  5683. {
  5684. name: "Gigapuff",
  5685. height: math.unit(250000, "miles")
  5686. },
  5687. {
  5688. name: "Omegapuff",
  5689. height: math.unit(1000, "lightyears")
  5690. },
  5691. ]
  5692. ))
  5693. characterMakers.push(() => makeCharacter(
  5694. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5695. {
  5696. stomping: {
  5697. height: math.unit(6, "feet"),
  5698. weight: math.unit(170, "lbs"),
  5699. name: "Stomping",
  5700. image: {
  5701. source: "./media/characters/vivian/stomping.svg"
  5702. }
  5703. },
  5704. sitting: {
  5705. height: math.unit(6 / 1.75, "feet"),
  5706. weight: math.unit(170, "lbs"),
  5707. name: "Sitting",
  5708. image: {
  5709. source: "./media/characters/vivian/sitting.svg",
  5710. bottom: 1 / 6.4,
  5711. extra: 1,
  5712. }
  5713. },
  5714. },
  5715. [
  5716. {
  5717. name: "Normal",
  5718. height: math.unit(7, "feet"),
  5719. default: true
  5720. },
  5721. {
  5722. name: "Macro",
  5723. height: math.unit(10, "stories")
  5724. },
  5725. {
  5726. name: "Macro+",
  5727. height: math.unit(30, "stories")
  5728. },
  5729. {
  5730. name: "Megamacro",
  5731. height: math.unit(10, "miles")
  5732. },
  5733. {
  5734. name: "Megamacro+",
  5735. height: math.unit(2750000, "meters")
  5736. },
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(6, "feet"),
  5744. weight: math.unit(160, "lbs"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/prince/front.svg",
  5748. extra: 3400 / 3000
  5749. }
  5750. },
  5751. jumping: {
  5752. height: math.unit(6, "feet"),
  5753. weight: math.unit(160, "lbs"),
  5754. name: "Jumping",
  5755. image: {
  5756. source: "./media/characters/prince/jump.svg",
  5757. extra: 2555 / 2134
  5758. }
  5759. },
  5760. },
  5761. [
  5762. {
  5763. name: "Normal",
  5764. height: math.unit(7.75, "feet"),
  5765. default: true
  5766. },
  5767. {
  5768. name: "Not cute",
  5769. height: math.unit(17, "feet")
  5770. },
  5771. {
  5772. name: "I said NOT",
  5773. height: math.unit(91, "feet")
  5774. },
  5775. {
  5776. name: "Please stop",
  5777. height: math.unit(560, "feet")
  5778. },
  5779. {
  5780. name: "What have you done",
  5781. height: math.unit(2200, "feet")
  5782. },
  5783. {
  5784. name: "Deer God",
  5785. height: math.unit(3.6, "miles")
  5786. },
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5791. {
  5792. standing: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(300, "lbs"),
  5795. name: "Standing",
  5796. image: {
  5797. source: "./media/characters/psymon/standing.svg",
  5798. extra: 1888 / 1810,
  5799. bottom: 0.05
  5800. }
  5801. },
  5802. slithering: {
  5803. height: math.unit(6, "feet"),
  5804. weight: math.unit(300, "lbs"),
  5805. name: "Slithering",
  5806. image: {
  5807. source: "./media/characters/psymon/slithering.svg",
  5808. extra: 1330 / 1224
  5809. }
  5810. },
  5811. slitheringAlt: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(300, "lbs"),
  5814. name: "Slithering (Alt)",
  5815. image: {
  5816. source: "./media/characters/psymon/slithering-alt.svg",
  5817. extra: 1330 / 1224
  5818. }
  5819. },
  5820. },
  5821. [
  5822. {
  5823. name: "Normal",
  5824. height: math.unit(11.25, "feet"),
  5825. default: true
  5826. },
  5827. {
  5828. name: "Large",
  5829. height: math.unit(27, "feet")
  5830. },
  5831. {
  5832. name: "Giant",
  5833. height: math.unit(87, "feet")
  5834. },
  5835. {
  5836. name: "Macro",
  5837. height: math.unit(365, "feet")
  5838. },
  5839. {
  5840. name: "Megamacro",
  5841. height: math.unit(3, "miles")
  5842. },
  5843. {
  5844. name: "World Serpent",
  5845. height: math.unit(8000, "miles")
  5846. },
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(180, "lbs"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/daimos/front.svg",
  5858. extra: 4160 / 3897,
  5859. bottom: 0.021
  5860. }
  5861. }
  5862. },
  5863. [
  5864. {
  5865. name: "Normal",
  5866. height: math.unit(8, "feet"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Big Dog",
  5871. height: math.unit(22, "feet")
  5872. },
  5873. {
  5874. name: "Macro",
  5875. height: math.unit(127, "feet")
  5876. },
  5877. {
  5878. name: "Megamacro",
  5879. height: math.unit(3600, "feet")
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5885. {
  5886. side: {
  5887. height: math.unit(6, "feet"),
  5888. weight: math.unit(180, "lbs"),
  5889. name: "Side",
  5890. image: {
  5891. source: "./media/characters/blake/side.svg",
  5892. extra: 1212 / 1120,
  5893. bottom: 0.05
  5894. }
  5895. },
  5896. crouched: {
  5897. height: math.unit(6 * 0.57, "feet"),
  5898. weight: math.unit(180, "lbs"),
  5899. name: "Crouched",
  5900. image: {
  5901. source: "./media/characters/blake/crouched.svg",
  5902. extra: 840 / 587,
  5903. bottom: 0.04
  5904. }
  5905. },
  5906. bent: {
  5907. height: math.unit(6 * 0.75, "feet"),
  5908. weight: math.unit(180, "lbs"),
  5909. name: "Bent",
  5910. image: {
  5911. source: "./media/characters/blake/bent.svg",
  5912. extra: 592 / 544,
  5913. bottom: 0.035
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Normal",
  5920. height: math.unit(8 + 1 / 6, "feet"),
  5921. default: true
  5922. },
  5923. {
  5924. name: "Big Backside",
  5925. height: math.unit(37, "feet")
  5926. },
  5927. {
  5928. name: "Subway Shredder",
  5929. height: math.unit(72, "feet")
  5930. },
  5931. {
  5932. name: "City Carver",
  5933. height: math.unit(1675, "feet")
  5934. },
  5935. {
  5936. name: "Tectonic Tweaker",
  5937. height: math.unit(2300, "miles")
  5938. },
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5943. {
  5944. front: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(180, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/guisetto/front.svg",
  5950. extra: 856 / 817,
  5951. bottom: 0.06
  5952. }
  5953. },
  5954. airborne: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(180, "lbs"),
  5957. name: "Airborne",
  5958. image: {
  5959. source: "./media/characters/guisetto/airborne.svg",
  5960. extra: 584 / 525
  5961. }
  5962. },
  5963. },
  5964. [
  5965. {
  5966. name: "Normal",
  5967. height: math.unit(10 + 11 / 12, "feet"),
  5968. default: true
  5969. },
  5970. {
  5971. name: "Large",
  5972. height: math.unit(35, "feet")
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(475, "feet")
  5977. },
  5978. ]
  5979. ))
  5980. characterMakers.push(() => makeCharacter(
  5981. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5982. {
  5983. front: {
  5984. height: math.unit(6, "feet"),
  5985. weight: math.unit(180, "lbs"),
  5986. name: "Front",
  5987. image: {
  5988. source: "./media/characters/luxor/front.svg",
  5989. extra: 2940 / 2152
  5990. }
  5991. },
  5992. back: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(180, "lbs"),
  5995. name: "Back",
  5996. image: {
  5997. source: "./media/characters/luxor/back.svg",
  5998. extra: 1083 / 960
  5999. }
  6000. },
  6001. },
  6002. [
  6003. {
  6004. name: "Normal",
  6005. height: math.unit(5 + 5 / 6, "feet"),
  6006. default: true
  6007. },
  6008. {
  6009. name: "Lamp",
  6010. height: math.unit(50, "feet")
  6011. },
  6012. {
  6013. name: "Lämp",
  6014. height: math.unit(300, "feet")
  6015. },
  6016. {
  6017. name: "The sun is a lamp",
  6018. height: math.unit(250000, "miles")
  6019. },
  6020. ]
  6021. ))
  6022. characterMakers.push(() => makeCharacter(
  6023. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6024. {
  6025. front: {
  6026. height: math.unit(6, "feet"),
  6027. weight: math.unit(50, "lbs"),
  6028. name: "Front",
  6029. image: {
  6030. source: "./media/characters/huoyan/front.svg"
  6031. }
  6032. },
  6033. side: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(180, "lbs"),
  6036. name: "Side",
  6037. image: {
  6038. source: "./media/characters/huoyan/side.svg"
  6039. }
  6040. },
  6041. },
  6042. [
  6043. {
  6044. name: "Chef",
  6045. height: math.unit(9, "feet")
  6046. },
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(65, "feet"),
  6050. default: true
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(780, "feet")
  6055. },
  6056. {
  6057. name: "Flaming Mountain",
  6058. height: math.unit(4.8, "miles")
  6059. },
  6060. {
  6061. name: "Celestial",
  6062. height: math.unit(765000, "miles")
  6063. },
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(5 + 3 / 4, "feet"),
  6071. weight: math.unit(120, "lbs"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/tails/front.svg"
  6075. }
  6076. }
  6077. },
  6078. [
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(5 + 3 / 4, "feet"),
  6082. default: true
  6083. }
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(4, "feet"),
  6091. weight: math.unit(50, "lbs"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/rainy/front.svg"
  6095. }
  6096. }
  6097. },
  6098. [
  6099. {
  6100. name: "Macro",
  6101. height: math.unit(800, "feet"),
  6102. default: true
  6103. }
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(150, "lbs"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/rainier/front.svg"
  6115. }
  6116. }
  6117. },
  6118. [
  6119. {
  6120. name: "Micro",
  6121. height: math.unit(2, "mm"),
  6122. default: true
  6123. }
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6128. {
  6129. front: {
  6130. height: math.unit(8 + 4/12, "feet"),
  6131. weight: math.unit(450, "kilograms"),
  6132. volume: math.unit(5, "cups"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/andy-renard/front.svg",
  6136. extra: 1839/1726,
  6137. bottom: 134/1973
  6138. }
  6139. },
  6140. back: {
  6141. height: math.unit(8 + 4/12, "feet"),
  6142. weight: math.unit(450, "kilograms"),
  6143. volume: math.unit(5, "cups"),
  6144. name: "Back",
  6145. image: {
  6146. source: "./media/characters/andy-renard/back.svg",
  6147. extra: 1838/1710,
  6148. bottom: 105/1943
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Tall",
  6155. height: math.unit(8 + 4/12, "feet")
  6156. },
  6157. {
  6158. name: "Mini Macro",
  6159. height: math.unit(15, "feet"),
  6160. default: true
  6161. },
  6162. {
  6163. name: "Macro",
  6164. height: math.unit(100, "feet")
  6165. },
  6166. {
  6167. name: "Mega Macro",
  6168. height: math.unit(1000, "feet")
  6169. },
  6170. {
  6171. name: "Giga Macro",
  6172. height: math.unit(10, "miles")
  6173. },
  6174. {
  6175. name: "God Macro",
  6176. height: math.unit(1, "multiverse")
  6177. },
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(210, "lbs"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/cimmaron/front-sfw.svg",
  6189. extra: 701 / 676,
  6190. bottom: 0.046
  6191. }
  6192. },
  6193. back: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(210, "lbs"),
  6196. name: "Back",
  6197. image: {
  6198. source: "./media/characters/cimmaron/back-sfw.svg",
  6199. extra: 701 / 676,
  6200. bottom: 0.046
  6201. }
  6202. },
  6203. frontNsfw: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(210, "lbs"),
  6206. name: "Front (NSFW)",
  6207. image: {
  6208. source: "./media/characters/cimmaron/front-nsfw.svg",
  6209. extra: 701 / 676,
  6210. bottom: 0.046
  6211. }
  6212. },
  6213. backNsfw: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(210, "lbs"),
  6216. name: "Back (NSFW)",
  6217. image: {
  6218. source: "./media/characters/cimmaron/back-nsfw.svg",
  6219. extra: 701 / 676,
  6220. bottom: 0.046
  6221. }
  6222. },
  6223. dick: {
  6224. height: math.unit(1.714, "feet"),
  6225. name: "Dick",
  6226. image: {
  6227. source: "./media/characters/cimmaron/dick.svg"
  6228. }
  6229. },
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(6, "feet"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Macro Mayor",
  6239. height: math.unit(350, "meters")
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(6, "feet"),
  6248. weight: math.unit(200, "lbs"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/akari/front.svg",
  6252. extra: 962 / 901,
  6253. bottom: 0.04
  6254. }
  6255. }
  6256. },
  6257. [
  6258. {
  6259. name: "Micro",
  6260. height: math.unit(5, "inches"),
  6261. default: true
  6262. },
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(7, "feet")
  6266. },
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6271. {
  6272. front: {
  6273. height: math.unit(6, "feet"),
  6274. weight: math.unit(140, "lbs"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/cynosura/front.svg",
  6278. extra: 896 / 847
  6279. }
  6280. },
  6281. back: {
  6282. height: math.unit(6, "feet"),
  6283. weight: math.unit(140, "lbs"),
  6284. name: "Back",
  6285. image: {
  6286. source: "./media/characters/cynosura/back.svg",
  6287. extra: 1365 / 1250
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Micro",
  6294. height: math.unit(4, "inches")
  6295. },
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(5.75, "feet"),
  6299. default: true
  6300. },
  6301. {
  6302. name: "Tall",
  6303. height: math.unit(10, "feet")
  6304. },
  6305. {
  6306. name: "Big",
  6307. height: math.unit(20, "feet")
  6308. },
  6309. {
  6310. name: "Macro",
  6311. height: math.unit(50, "feet")
  6312. },
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6317. {
  6318. front: {
  6319. height: math.unit(13 + 2/12, "feet"),
  6320. weight: math.unit(800, "kg"),
  6321. name: "Front",
  6322. image: {
  6323. source: "./media/characters/gin/front.svg",
  6324. extra: 1312/1191,
  6325. bottom: 45/1357
  6326. }
  6327. },
  6328. mouth: {
  6329. height: math.unit(2.39 * 1.8, "feet"),
  6330. name: "Mouth",
  6331. image: {
  6332. source: "./media/characters/gin/mouth.svg"
  6333. }
  6334. },
  6335. hand: {
  6336. height: math.unit(1.57 * 2.19, "feet"),
  6337. name: "Hand",
  6338. image: {
  6339. source: "./media/characters/gin/hand.svg"
  6340. }
  6341. },
  6342. foot: {
  6343. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6344. name: "Foot",
  6345. image: {
  6346. source: "./media/characters/gin/foot.svg"
  6347. }
  6348. },
  6349. sole: {
  6350. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6351. name: "Sole",
  6352. image: {
  6353. source: "./media/characters/gin/sole.svg"
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Very Small",
  6360. height: math.unit(13 + 2 / 12, "feet")
  6361. },
  6362. {
  6363. name: "Micro",
  6364. height: math.unit(600, "miles")
  6365. },
  6366. {
  6367. name: "Regular",
  6368. height: math.unit(20, "earths"),
  6369. default: true
  6370. },
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(2.2, "solarradii")
  6374. },
  6375. {
  6376. name: "Teramacro",
  6377. height: math.unit(1.2, "galaxies")
  6378. },
  6379. {
  6380. name: "Omegamacro",
  6381. height: math.unit(200, "universes")
  6382. },
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6387. {
  6388. front: {
  6389. height: math.unit(6 + 1 / 6, "feet"),
  6390. weight: math.unit(178, "lbs"),
  6391. name: "Front",
  6392. image: {
  6393. source: "./media/characters/guy/front.svg"
  6394. }
  6395. }
  6396. },
  6397. [
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(6 + 1 / 6, "feet"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "Large",
  6405. height: math.unit(25 + 7 / 12, "feet")
  6406. },
  6407. {
  6408. name: "Macro",
  6409. height: math.unit(60 + 9 / 12, "feet")
  6410. },
  6411. {
  6412. name: "Macro+",
  6413. height: math.unit(246, "feet")
  6414. },
  6415. {
  6416. name: "Macro++",
  6417. height: math.unit(878, "feet")
  6418. }
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(9, "feet"),
  6426. weight: math.unit(800, "lbs"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/tiberius/front.svg",
  6430. extra: 2295 / 2071
  6431. }
  6432. },
  6433. back: {
  6434. height: math.unit(9, "feet"),
  6435. weight: math.unit(800, "lbs"),
  6436. name: "Back",
  6437. image: {
  6438. source: "./media/characters/tiberius/back.svg",
  6439. extra: 2373 / 2160
  6440. }
  6441. },
  6442. },
  6443. [
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(9, "feet"),
  6447. default: true
  6448. }
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6453. {
  6454. front: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(600, "lbs"),
  6457. name: "Front",
  6458. image: {
  6459. source: "./media/characters/surgo/front.svg",
  6460. extra: 3591 / 2227
  6461. }
  6462. },
  6463. back: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(600, "lbs"),
  6466. name: "Back",
  6467. image: {
  6468. source: "./media/characters/surgo/back.svg",
  6469. extra: 3557 / 2228
  6470. }
  6471. },
  6472. laying: {
  6473. height: math.unit(6 * 0.85, "feet"),
  6474. weight: math.unit(600, "lbs"),
  6475. name: "Laying",
  6476. image: {
  6477. source: "./media/characters/surgo/laying.svg"
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(6, "feet"),
  6485. default: true
  6486. }
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6491. {
  6492. side: {
  6493. height: math.unit(6, "feet"),
  6494. weight: math.unit(150, "lbs"),
  6495. name: "Side",
  6496. image: {
  6497. source: "./media/characters/cibus/side.svg",
  6498. extra: 800 / 400
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(6, "feet"),
  6506. default: true
  6507. }
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(240, "lbs"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/nibbles/front.svg"
  6519. }
  6520. },
  6521. side: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(240, "lbs"),
  6524. name: "Side",
  6525. image: {
  6526. source: "./media/characters/nibbles/side.svg"
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(9, "feet"),
  6534. default: true
  6535. }
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6540. {
  6541. side: {
  6542. height: math.unit(5 + 1 / 6, "feet"),
  6543. weight: math.unit(130, "lbs"),
  6544. name: "Side",
  6545. image: {
  6546. source: "./media/characters/rikky/side.svg",
  6547. extra: 851 / 801
  6548. }
  6549. },
  6550. },
  6551. [
  6552. {
  6553. name: "Normal",
  6554. height: math.unit(5 + 1 / 6, "feet")
  6555. },
  6556. {
  6557. name: "Macro",
  6558. height: math.unit(152, "feet"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Megamacro",
  6563. height: math.unit(7, "miles")
  6564. }
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6569. {
  6570. side: {
  6571. height: math.unit(370, "cm"),
  6572. weight: math.unit(350, "lbs"),
  6573. name: "Side",
  6574. image: {
  6575. source: "./media/characters/malfressa/side.svg"
  6576. }
  6577. },
  6578. walking: {
  6579. height: math.unit(370, "cm"),
  6580. weight: math.unit(350, "lbs"),
  6581. name: "Walking",
  6582. image: {
  6583. source: "./media/characters/malfressa/walking.svg"
  6584. }
  6585. },
  6586. feral: {
  6587. height: math.unit(2500, "cm"),
  6588. weight: math.unit(100000, "lbs"),
  6589. name: "Feral",
  6590. image: {
  6591. source: "./media/characters/malfressa/feral.svg",
  6592. extra: 2108 / 837,
  6593. bottom: 0.02
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(370, "cm")
  6601. },
  6602. {
  6603. name: "Macro",
  6604. height: math.unit(300, "meters"),
  6605. default: true
  6606. }
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(6, "feet"),
  6614. weight: math.unit(60, "kg"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/jaro/front.svg",
  6618. extra: 845/817,
  6619. bottom: 45/890
  6620. }
  6621. },
  6622. back: {
  6623. height: math.unit(6, "feet"),
  6624. weight: math.unit(60, "kg"),
  6625. name: "Back",
  6626. image: {
  6627. source: "./media/characters/jaro/back.svg",
  6628. extra: 847/817,
  6629. bottom: 34/881
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Micro",
  6636. height: math.unit(7, "inches")
  6637. },
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(5.5, "feet"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Minimacro",
  6645. height: math.unit(20, "feet")
  6646. },
  6647. {
  6648. name: "Macro",
  6649. height: math.unit(200, "meters")
  6650. }
  6651. ]
  6652. ))
  6653. characterMakers.push(() => makeCharacter(
  6654. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6655. {
  6656. front: {
  6657. height: math.unit(6, "feet"),
  6658. weight: math.unit(195, "lb"),
  6659. name: "Front",
  6660. image: {
  6661. source: "./media/characters/rogue/front.svg"
  6662. }
  6663. },
  6664. },
  6665. [
  6666. {
  6667. name: "Macro",
  6668. height: math.unit(90, "feet"),
  6669. default: true
  6670. },
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6675. {
  6676. standing: {
  6677. height: math.unit(5 + 8 / 12, "feet"),
  6678. weight: math.unit(140, "lb"),
  6679. name: "Standing",
  6680. image: {
  6681. source: "./media/characters/piper/standing.svg",
  6682. extra: 1440/1284,
  6683. bottom: 66/1506
  6684. }
  6685. },
  6686. running: {
  6687. height: math.unit(5 + 8 / 12, "feet"),
  6688. weight: math.unit(140, "lb"),
  6689. name: "Running",
  6690. image: {
  6691. source: "./media/characters/piper/running.svg",
  6692. extra: 3948/3655,
  6693. bottom: 0/3948
  6694. }
  6695. },
  6696. sole: {
  6697. height: math.unit(0.81, "feet"),
  6698. weight: math.unit(2, "kg"),
  6699. name: "Sole",
  6700. image: {
  6701. source: "./media/characters/piper/sole.svg"
  6702. }
  6703. },
  6704. nipple: {
  6705. height: math.unit(0.25, "feet"),
  6706. weight: math.unit(1.5, "lb"),
  6707. name: "Nipple",
  6708. image: {
  6709. source: "./media/characters/piper/nipple.svg"
  6710. }
  6711. },
  6712. head: {
  6713. height: math.unit(1.1, "feet"),
  6714. name: "Head",
  6715. image: {
  6716. source: "./media/characters/piper/head.svg"
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Micro",
  6723. height: math.unit(2, "inches")
  6724. },
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(5 + 8 / 12, "feet")
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(250, "feet"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Megamacro",
  6736. height: math.unit(7, "miles")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6742. {
  6743. front: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(220, "lb"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/gemini/front.svg"
  6749. }
  6750. },
  6751. back: {
  6752. height: math.unit(6, "feet"),
  6753. weight: math.unit(220, "lb"),
  6754. name: "Back",
  6755. image: {
  6756. source: "./media/characters/gemini/back.svg"
  6757. }
  6758. },
  6759. kneeling: {
  6760. height: math.unit(6 / 1.5, "feet"),
  6761. weight: math.unit(220, "lb"),
  6762. name: "Kneeling",
  6763. image: {
  6764. source: "./media/characters/gemini/kneeling.svg",
  6765. bottom: 0.02
  6766. }
  6767. },
  6768. },
  6769. [
  6770. {
  6771. name: "Macro",
  6772. height: math.unit(300, "meters"),
  6773. default: true
  6774. },
  6775. {
  6776. name: "Megamacro",
  6777. height: math.unit(6900, "meters")
  6778. },
  6779. ]
  6780. ))
  6781. characterMakers.push(() => makeCharacter(
  6782. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6783. {
  6784. anthro: {
  6785. height: math.unit(2.35, "meters"),
  6786. weight: math.unit(73, "kg"),
  6787. name: "Anthro",
  6788. image: {
  6789. source: "./media/characters/alicia/anthro.svg",
  6790. extra: 2571 / 2385,
  6791. bottom: 75 / 2648
  6792. }
  6793. },
  6794. paw: {
  6795. height: math.unit(1.32, "feet"),
  6796. name: "Paw",
  6797. image: {
  6798. source: "./media/characters/alicia/paw.svg"
  6799. }
  6800. },
  6801. feral: {
  6802. height: math.unit(1.69, "meters"),
  6803. weight: math.unit(73, "kg"),
  6804. name: "Feral",
  6805. image: {
  6806. source: "./media/characters/alicia/feral.svg",
  6807. extra: 2123 / 1715,
  6808. bottom: 222 / 2349
  6809. }
  6810. },
  6811. },
  6812. [
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(2.35, "meters")
  6816. },
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(60, "meters"),
  6820. default: true
  6821. },
  6822. {
  6823. name: "Megamacro",
  6824. height: math.unit(10000, "kilometers")
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(7, "feet"),
  6833. weight: math.unit(250, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/archy/front.svg"
  6837. }
  6838. }
  6839. },
  6840. [
  6841. {
  6842. name: "Micro",
  6843. height: math.unit(1, "inch")
  6844. },
  6845. {
  6846. name: "Shorty",
  6847. height: math.unit(5, "feet")
  6848. },
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(7, "feet")
  6852. },
  6853. {
  6854. name: "Macro",
  6855. height: math.unit(600, "meters"),
  6856. default: true
  6857. },
  6858. {
  6859. name: "Megamacro",
  6860. height: math.unit(1, "mile")
  6861. },
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(1.65, "meters"),
  6869. weight: math.unit(74, "kg"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/berri/front.svg",
  6873. extra: 857 / 837,
  6874. bottom: 18 / 877
  6875. }
  6876. },
  6877. bum: {
  6878. height: math.unit(1.46, "feet"),
  6879. name: "Bum",
  6880. image: {
  6881. source: "./media/characters/berri/bum.svg"
  6882. }
  6883. },
  6884. mouth: {
  6885. height: math.unit(0.44, "feet"),
  6886. name: "Mouth",
  6887. image: {
  6888. source: "./media/characters/berri/mouth.svg"
  6889. }
  6890. },
  6891. paw: {
  6892. height: math.unit(0.826, "feet"),
  6893. name: "Paw",
  6894. image: {
  6895. source: "./media/characters/berri/paw.svg"
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(1.65, "meters")
  6903. },
  6904. {
  6905. name: "Macro",
  6906. height: math.unit(60, "m"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Megamacro",
  6911. height: math.unit(9.213, "km")
  6912. },
  6913. {
  6914. name: "Planet Eater",
  6915. height: math.unit(489, "megameters")
  6916. },
  6917. {
  6918. name: "Teramacro",
  6919. height: math.unit(2471635000000, "meters")
  6920. },
  6921. {
  6922. name: "Examacro",
  6923. height: math.unit(8.0624e+26, "meters")
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(1.72, "meters"),
  6932. weight: math.unit(68, "kg"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/lexi/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Very Smol",
  6942. height: math.unit(10, "mm")
  6943. },
  6944. {
  6945. name: "Micro",
  6946. height: math.unit(6.8, "cm"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Normal",
  6951. height: math.unit(1.72, "m")
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(1.69, "meters"),
  6960. weight: math.unit(68, "kg"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/martin/front.svg",
  6964. extra: 596 / 581
  6965. }
  6966. }
  6967. },
  6968. [
  6969. {
  6970. name: "Micro",
  6971. height: math.unit(6.85, "cm"),
  6972. default: true
  6973. },
  6974. {
  6975. name: "Normal",
  6976. height: math.unit(1.69, "m")
  6977. }
  6978. ]
  6979. ))
  6980. characterMakers.push(() => makeCharacter(
  6981. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6982. {
  6983. front: {
  6984. height: math.unit(1.69, "meters"),
  6985. weight: math.unit(68, "kg"),
  6986. name: "Front",
  6987. image: {
  6988. source: "./media/characters/juno/front.svg"
  6989. }
  6990. }
  6991. },
  6992. [
  6993. {
  6994. name: "Micro",
  6995. height: math.unit(7, "cm")
  6996. },
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(1.89, "m")
  7000. },
  7001. {
  7002. name: "Macro",
  7003. height: math.unit(353, "meters"),
  7004. default: true
  7005. }
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7010. {
  7011. front: {
  7012. height: math.unit(1.93, "meters"),
  7013. weight: math.unit(83, "kg"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/samantha/front.svg"
  7017. }
  7018. },
  7019. frontClothed: {
  7020. height: math.unit(1.93, "meters"),
  7021. weight: math.unit(83, "kg"),
  7022. name: "Front (Clothed)",
  7023. image: {
  7024. source: "./media/characters/samantha/front-clothed.svg"
  7025. }
  7026. },
  7027. back: {
  7028. height: math.unit(1.93, "meters"),
  7029. weight: math.unit(83, "kg"),
  7030. name: "Back",
  7031. image: {
  7032. source: "./media/characters/samantha/back.svg"
  7033. }
  7034. },
  7035. },
  7036. [
  7037. {
  7038. name: "Normal",
  7039. height: math.unit(1.93, "m")
  7040. },
  7041. {
  7042. name: "Macro",
  7043. height: math.unit(74, "meters"),
  7044. default: true
  7045. },
  7046. {
  7047. name: "Macro+",
  7048. height: math.unit(223, "meters"),
  7049. },
  7050. {
  7051. name: "Megamacro",
  7052. height: math.unit(8381, "meters"),
  7053. },
  7054. {
  7055. name: "Megamacro+",
  7056. height: math.unit(12000, "kilometers")
  7057. },
  7058. ]
  7059. ))
  7060. characterMakers.push(() => makeCharacter(
  7061. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7062. {
  7063. front: {
  7064. height: math.unit(1.92, "meters"),
  7065. weight: math.unit(80, "kg"),
  7066. name: "Front",
  7067. image: {
  7068. source: "./media/characters/dr-clay/front.svg"
  7069. }
  7070. },
  7071. frontClothed: {
  7072. height: math.unit(1.92, "meters"),
  7073. weight: math.unit(80, "kg"),
  7074. name: "Front (Clothed)",
  7075. image: {
  7076. source: "./media/characters/dr-clay/front-clothed.svg"
  7077. }
  7078. }
  7079. },
  7080. [
  7081. {
  7082. name: "Normal",
  7083. height: math.unit(1.92, "m")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(214, "meters"),
  7088. default: true
  7089. },
  7090. {
  7091. name: "Macro+",
  7092. height: math.unit(12.237, "meters"),
  7093. },
  7094. {
  7095. name: "Megamacro",
  7096. height: math.unit(557, "megameters"),
  7097. },
  7098. {
  7099. name: "Unimaginable",
  7100. height: math.unit(120e9, "lightyears")
  7101. },
  7102. ]
  7103. ))
  7104. characterMakers.push(() => makeCharacter(
  7105. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7106. {
  7107. front: {
  7108. height: math.unit(2, "meters"),
  7109. weight: math.unit(80, "kg"),
  7110. name: "Front",
  7111. image: {
  7112. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7113. }
  7114. }
  7115. },
  7116. [
  7117. {
  7118. name: "Teramacro",
  7119. height: math.unit(500000, "lightyears"),
  7120. default: true
  7121. },
  7122. ]
  7123. ))
  7124. characterMakers.push(() => makeCharacter(
  7125. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7126. {
  7127. crux: {
  7128. height: math.unit(2, "meters"),
  7129. weight: math.unit(150, "kg"),
  7130. name: "Crux",
  7131. image: {
  7132. source: "./media/characters/vemus/crux.svg",
  7133. extra: 1074/936,
  7134. bottom: 23/1097
  7135. }
  7136. },
  7137. skunkTanuki: {
  7138. height: math.unit(2, "meters"),
  7139. weight: math.unit(150, "kg"),
  7140. name: "Skunk-Tanuki",
  7141. image: {
  7142. source: "./media/characters/vemus/skunk-tanuki.svg",
  7143. extra: 926/893,
  7144. bottom: 20/946
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(3.75, "meters"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Big",
  7156. height: math.unit(8, "meters")
  7157. },
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(100, "meters")
  7161. },
  7162. {
  7163. name: "Macro+",
  7164. height: math.unit(1500, "meters")
  7165. },
  7166. {
  7167. name: "Stellar",
  7168. height: math.unit(14e8, "meters")
  7169. },
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7174. {
  7175. front: {
  7176. height: math.unit(2, "meters"),
  7177. weight: math.unit(70, "kg"),
  7178. name: "Front",
  7179. image: {
  7180. source: "./media/characters/beherit/front.svg",
  7181. extra: 1234/1109,
  7182. bottom: 55/1289
  7183. }
  7184. }
  7185. },
  7186. [
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(6, "feet")
  7190. },
  7191. {
  7192. name: "Lorg",
  7193. height: math.unit(25, "feet"),
  7194. default: true
  7195. },
  7196. {
  7197. name: "Lorger",
  7198. height: math.unit(75, "feet")
  7199. },
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(200, "meters")
  7203. },
  7204. ]
  7205. ))
  7206. characterMakers.push(() => makeCharacter(
  7207. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7208. {
  7209. front: {
  7210. height: math.unit(2, "meters"),
  7211. weight: math.unit(150, "kg"),
  7212. name: "Front",
  7213. image: {
  7214. source: "./media/characters/everett/front.svg",
  7215. extra: 1017/866,
  7216. bottom: 86/1103
  7217. }
  7218. },
  7219. paw: {
  7220. height: math.unit(2 / 3.6, "meters"),
  7221. name: "Paw",
  7222. image: {
  7223. source: "./media/characters/everett/paw.svg"
  7224. }
  7225. },
  7226. },
  7227. [
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(15, "feet"),
  7231. default: true
  7232. },
  7233. {
  7234. name: "Lorg",
  7235. height: math.unit(70, "feet"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Lorger",
  7240. height: math.unit(250, "feet")
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(500, "meters")
  7245. },
  7246. ]
  7247. ))
  7248. characterMakers.push(() => makeCharacter(
  7249. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7250. {
  7251. front: {
  7252. height: math.unit(2, "meters"),
  7253. weight: math.unit(86, "kg"),
  7254. name: "Front",
  7255. image: {
  7256. source: "./media/characters/rose/front.svg",
  7257. extra: 1785/1636,
  7258. bottom: 30/1815
  7259. },
  7260. form: "liom",
  7261. default: true
  7262. },
  7263. frontSporty: {
  7264. height: math.unit(2, "meters"),
  7265. weight: math.unit(86, "kg"),
  7266. name: "Front (Sporty)",
  7267. image: {
  7268. source: "./media/characters/rose/front-sporty.svg",
  7269. extra: 350/335,
  7270. bottom: 10/360
  7271. },
  7272. form: "liom"
  7273. },
  7274. frontAlt: {
  7275. height: math.unit(1.6, "meters"),
  7276. weight: math.unit(86, "kg"),
  7277. name: "Front (Alt)",
  7278. image: {
  7279. source: "./media/characters/rose/front-alt.svg",
  7280. extra: 299/283,
  7281. bottom: 3/302
  7282. },
  7283. form: "liom"
  7284. },
  7285. plush: {
  7286. height: math.unit(2, "meters"),
  7287. weight: math.unit(86/3, "kg"),
  7288. name: "Plush",
  7289. image: {
  7290. source: "./media/characters/rose/plush.svg",
  7291. extra: 361/337,
  7292. bottom: 11/372
  7293. },
  7294. form: "plush",
  7295. default: true
  7296. },
  7297. faeStanding: {
  7298. height: math.unit(10, "cm"),
  7299. weight: math.unit(10, "grams"),
  7300. name: "Standing",
  7301. image: {
  7302. source: "./media/characters/rose/fae-standing.svg",
  7303. extra: 1189/1060,
  7304. bottom: 27/1216
  7305. },
  7306. form: "fae",
  7307. default: true
  7308. },
  7309. faeSitting: {
  7310. height: math.unit(5, "cm"),
  7311. weight: math.unit(10, "grams"),
  7312. name: "Sitting",
  7313. image: {
  7314. source: "./media/characters/rose/fae-sitting.svg",
  7315. extra: 737/577,
  7316. bottom: 356/1093
  7317. },
  7318. form: "fae"
  7319. },
  7320. faePaw: {
  7321. height: math.unit(1.35, "cm"),
  7322. name: "Paw",
  7323. image: {
  7324. source: "./media/characters/rose/fae-paw.svg"
  7325. },
  7326. form: "fae"
  7327. },
  7328. },
  7329. [
  7330. {
  7331. name: "True Micro",
  7332. height: math.unit(9, "cm"),
  7333. form: "liom"
  7334. },
  7335. {
  7336. name: "Micro",
  7337. height: math.unit(16, "cm"),
  7338. form: "liom"
  7339. },
  7340. {
  7341. name: "Normal",
  7342. height: math.unit(1.85, "meters"),
  7343. default: true,
  7344. form: "liom"
  7345. },
  7346. {
  7347. name: "Mini-Macro",
  7348. height: math.unit(5, "meters"),
  7349. form: "liom"
  7350. },
  7351. {
  7352. name: "Macro",
  7353. height: math.unit(15, "meters"),
  7354. form: "liom"
  7355. },
  7356. {
  7357. name: "True Macro",
  7358. height: math.unit(40, "meters"),
  7359. form: "liom"
  7360. },
  7361. {
  7362. name: "City Scale",
  7363. height: math.unit(1, "km"),
  7364. form: "liom"
  7365. },
  7366. {
  7367. name: "Plushie",
  7368. height: math.unit(9, "cm"),
  7369. form: "plush",
  7370. default: true
  7371. },
  7372. {
  7373. name: "Fae",
  7374. height: math.unit(10, "cm"),
  7375. form: "fae",
  7376. default: true
  7377. },
  7378. ],
  7379. {
  7380. "liom": {
  7381. name: "Liom"
  7382. },
  7383. "plush": {
  7384. name: "Plush"
  7385. },
  7386. "fae": {
  7387. name: "Fae Fox",
  7388. default: true
  7389. }
  7390. }
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7394. {
  7395. front: {
  7396. height: math.unit(2, "meters"),
  7397. weight: math.unit(350, "lbs"),
  7398. name: "Front",
  7399. image: {
  7400. source: "./media/characters/regal/front.svg"
  7401. }
  7402. },
  7403. back: {
  7404. height: math.unit(2, "meters"),
  7405. weight: math.unit(350, "lbs"),
  7406. name: "Back",
  7407. image: {
  7408. source: "./media/characters/regal/back.svg"
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(350, "feet"),
  7416. default: true
  7417. }
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7422. {
  7423. front: {
  7424. height: math.unit(4 + 11 / 12, "feet"),
  7425. weight: math.unit(100, "lbs"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/opal/front.svg"
  7429. }
  7430. },
  7431. frontAlt: {
  7432. height: math.unit(4 + 11 / 12, "feet"),
  7433. weight: math.unit(100, "lbs"),
  7434. name: "Front (Alt)",
  7435. image: {
  7436. source: "./media/characters/opal/front-alt.svg"
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Small",
  7443. height: math.unit(4 + 11 / 12, "feet")
  7444. },
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(20, "feet"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Macro",
  7452. height: math.unit(120, "feet")
  7453. },
  7454. {
  7455. name: "Megamacro",
  7456. height: math.unit(80, "miles")
  7457. },
  7458. {
  7459. name: "True Size",
  7460. height: math.unit(100000, "lightyears")
  7461. },
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7466. {
  7467. front: {
  7468. height: math.unit(6, "feet"),
  7469. weight: math.unit(200, "lbs"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/vector-wuff/front.svg"
  7473. }
  7474. }
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(2.8, "meters")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(450, "meters"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(15, "kilometers")
  7489. }
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(6, "feet"),
  7497. weight: math.unit(256, "lbs"),
  7498. name: "Front",
  7499. image: {
  7500. source: "./media/characters/dannik/front.svg"
  7501. }
  7502. }
  7503. },
  7504. [
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(69.57, "meters"),
  7508. default: true
  7509. },
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(6, "feet"),
  7517. weight: math.unit(120, "lbs"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/azura-saharah/front.svg"
  7521. }
  7522. },
  7523. back: {
  7524. height: math.unit(6, "feet"),
  7525. weight: math.unit(120, "lbs"),
  7526. name: "Back",
  7527. image: {
  7528. source: "./media/characters/azura-saharah/back.svg"
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Macro",
  7535. height: math.unit(100, "feet"),
  7536. default: true
  7537. },
  7538. ]
  7539. ))
  7540. characterMakers.push(() => makeCharacter(
  7541. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7542. {
  7543. side: {
  7544. height: math.unit(5 + 4 / 12, "feet"),
  7545. weight: math.unit(163, "lbs"),
  7546. name: "Side",
  7547. image: {
  7548. source: "./media/characters/kennedy/side.svg"
  7549. }
  7550. }
  7551. },
  7552. [
  7553. {
  7554. name: "Standard Doggo",
  7555. height: math.unit(5 + 4 / 12, "feet")
  7556. },
  7557. {
  7558. name: "Big Doggo",
  7559. height: math.unit(25 + 3 / 12, "feet"),
  7560. default: true
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(5 + 5/12, "feet"),
  7569. weight: math.unit(100, "lbs"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/odios-de-lunar/front.svg",
  7573. extra: 1468/1323,
  7574. bottom: 22/1490
  7575. }
  7576. }
  7577. },
  7578. [
  7579. {
  7580. name: "Micro",
  7581. height: math.unit(3, "inches")
  7582. },
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(5.5, "feet"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Macro",
  7590. height: math.unit(100, "feet")
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7596. {
  7597. back: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(220, "lbs"),
  7600. name: "Back",
  7601. image: {
  7602. source: "./media/characters/mandake/back.svg"
  7603. }
  7604. }
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(7, "feet"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(78, "feet")
  7615. },
  7616. {
  7617. name: "Macro+",
  7618. height: math.unit(300, "meters")
  7619. },
  7620. {
  7621. name: "Macro++",
  7622. height: math.unit(2400, "feet")
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(5167, "meters")
  7627. },
  7628. {
  7629. name: "Gigamacro",
  7630. height: math.unit(41769, "miles")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(120, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/yozey/front.svg"
  7643. }
  7644. },
  7645. frontAlt: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(120, "lbs"),
  7648. name: "Front (Alt)",
  7649. image: {
  7650. source: "./media/characters/yozey/front-alt.svg"
  7651. }
  7652. },
  7653. side: {
  7654. height: math.unit(6, "feet"),
  7655. weight: math.unit(120, "lbs"),
  7656. name: "Side",
  7657. image: {
  7658. source: "./media/characters/yozey/side.svg"
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Micro",
  7665. height: math.unit(3, "inches"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Normal",
  7670. height: math.unit(6, "feet")
  7671. }
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(103, "lbs"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/valeska-voss/front.svg"
  7683. }
  7684. }
  7685. },
  7686. [
  7687. {
  7688. name: "Mini-Sized Sub",
  7689. height: math.unit(3.1, "inches")
  7690. },
  7691. {
  7692. name: "Mid-Sized Sub",
  7693. height: math.unit(6.2, "inches")
  7694. },
  7695. {
  7696. name: "Full-Sized Sub",
  7697. height: math.unit(9.3, "inches")
  7698. },
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(5 + 2 / 12, "foot"),
  7702. default: true
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(6, "feet"),
  7711. weight: math.unit(160, "lbs"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/gene-zeta/front.svg",
  7715. extra: 3006 / 2826,
  7716. bottom: 182 / 3188
  7717. }
  7718. }
  7719. },
  7720. [
  7721. {
  7722. name: "Micro",
  7723. height: math.unit(6, "inches")
  7724. },
  7725. {
  7726. name: "Normal",
  7727. height: math.unit(5 + 11 / 12, "foot"),
  7728. default: true
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(140, "feet")
  7733. },
  7734. {
  7735. name: "Supercharged",
  7736. height: math.unit(2500, "feet")
  7737. },
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(350, "lbs"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/razinox/front.svg",
  7749. extra: 1686 / 1548,
  7750. bottom: 28.2 / 1868
  7751. }
  7752. },
  7753. back: {
  7754. height: math.unit(6, "feet"),
  7755. weight: math.unit(350, "lbs"),
  7756. name: "Back",
  7757. image: {
  7758. source: "./media/characters/razinox/back.svg",
  7759. extra: 1660 / 1590,
  7760. bottom: 15 / 1665
  7761. }
  7762. },
  7763. },
  7764. [
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(10 + 8 / 12, "foot")
  7768. },
  7769. {
  7770. name: "Minimacro",
  7771. height: math.unit(15, "foot")
  7772. },
  7773. {
  7774. name: "Macro",
  7775. height: math.unit(60, "foot"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Megamacro",
  7780. height: math.unit(5, "miles")
  7781. },
  7782. {
  7783. name: "Gigamacro",
  7784. height: math.unit(6000, "miles")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(150, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/cobalt/front.svg"
  7797. }
  7798. }
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(8 + 1 / 12, "foot")
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(111, "foot"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Supracosmic",
  7812. height: math.unit(1e42, "feet")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(5, "inches"),
  7821. name: "Front",
  7822. image: {
  7823. source: "./media/characters/amanda/front.svg",
  7824. extra: 926/791,
  7825. bottom: 38/964
  7826. }
  7827. },
  7828. back: {
  7829. height: math.unit(5, "inches"),
  7830. name: "Back",
  7831. image: {
  7832. source: "./media/characters/amanda/back.svg",
  7833. extra: 909/805,
  7834. bottom: 43/952
  7835. }
  7836. },
  7837. },
  7838. [
  7839. {
  7840. name: "Micro",
  7841. height: math.unit(5, "inches"),
  7842. default: true
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(2.75, "meters"),
  7851. weight: math.unit(1200, "lb"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/teal/front.svg",
  7855. extra: 2463 / 2320,
  7856. bottom: 166 / 2629
  7857. }
  7858. },
  7859. back: {
  7860. height: math.unit(2.75, "meters"),
  7861. weight: math.unit(1200, "lb"),
  7862. name: "Back",
  7863. image: {
  7864. source: "./media/characters/teal/back.svg",
  7865. extra: 2580 / 2489,
  7866. bottom: 151 / 2731
  7867. }
  7868. },
  7869. sitting: {
  7870. height: math.unit(1.9, "meters"),
  7871. weight: math.unit(1200, "lb"),
  7872. name: "Sitting",
  7873. image: {
  7874. source: "./media/characters/teal/sitting.svg",
  7875. extra: 623 / 590,
  7876. bottom: 121 / 744
  7877. }
  7878. },
  7879. standing: {
  7880. height: math.unit(2.75, "meters"),
  7881. weight: math.unit(1200, "lb"),
  7882. name: "Standing",
  7883. image: {
  7884. source: "./media/characters/teal/standing.svg",
  7885. extra: 923 / 893,
  7886. bottom: 60 / 983
  7887. }
  7888. },
  7889. stretching: {
  7890. height: math.unit(3.65, "meters"),
  7891. weight: math.unit(1200, "lb"),
  7892. name: "Stretching",
  7893. image: {
  7894. source: "./media/characters/teal/stretching.svg",
  7895. extra: 1276 / 1244,
  7896. bottom: 0 / 1276
  7897. }
  7898. },
  7899. legged: {
  7900. height: math.unit(1.3, "meters"),
  7901. weight: math.unit(100, "lb"),
  7902. name: "Legged",
  7903. image: {
  7904. source: "./media/characters/teal/legged.svg",
  7905. extra: 462 / 437,
  7906. bottom: 24 / 486
  7907. }
  7908. },
  7909. naga: {
  7910. height: math.unit(5.4, "meters"),
  7911. weight: math.unit(4000, "lb"),
  7912. name: "Naga",
  7913. image: {
  7914. source: "./media/characters/teal/naga.svg",
  7915. extra: 1902 / 1858,
  7916. bottom: 0 / 1902
  7917. }
  7918. },
  7919. hand: {
  7920. height: math.unit(0.52, "meters"),
  7921. name: "Hand",
  7922. image: {
  7923. source: "./media/characters/teal/hand.svg"
  7924. }
  7925. },
  7926. maw: {
  7927. height: math.unit(0.43, "meters"),
  7928. name: "Maw",
  7929. image: {
  7930. source: "./media/characters/teal/maw.svg"
  7931. }
  7932. },
  7933. slit: {
  7934. height: math.unit(0.25, "meters"),
  7935. name: "Slit",
  7936. image: {
  7937. source: "./media/characters/teal/slit.svg"
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(2.75, "meters"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(300, "feet")
  7950. },
  7951. {
  7952. name: "Macro+",
  7953. height: math.unit(2000, "feet")
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7959. {
  7960. frontCat: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(180, "lbs"),
  7963. name: "Front (Cat)",
  7964. image: {
  7965. source: "./media/characters/ravin-amulet/front-cat.svg"
  7966. }
  7967. },
  7968. frontCatAlt: {
  7969. height: math.unit(6, "feet"),
  7970. weight: math.unit(180, "lbs"),
  7971. name: "Front (Alt, Cat)",
  7972. image: {
  7973. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7974. }
  7975. },
  7976. frontWerewolf: {
  7977. height: math.unit(6 * 1.2, "feet"),
  7978. weight: math.unit(225, "lbs"),
  7979. name: "Front (Werewolf)",
  7980. image: {
  7981. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7982. }
  7983. },
  7984. backWerewolf: {
  7985. height: math.unit(6 * 1.2, "feet"),
  7986. weight: math.unit(225, "lbs"),
  7987. name: "Back (Werewolf)",
  7988. image: {
  7989. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Nano",
  7996. height: math.unit(1, "micrometer")
  7997. },
  7998. {
  7999. name: "Micro",
  8000. height: math.unit(1, "inch")
  8001. },
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(6, "feet"),
  8005. default: true
  8006. },
  8007. {
  8008. name: "Macro",
  8009. height: math.unit(60, "feet")
  8010. }
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(165, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/fluoresce/front.svg"
  8022. }
  8023. }
  8024. },
  8025. [
  8026. {
  8027. name: "Micro",
  8028. height: math.unit(6, "cm")
  8029. },
  8030. {
  8031. name: "Normal",
  8032. height: math.unit(5 + 7 / 12, "feet"),
  8033. default: true
  8034. },
  8035. {
  8036. name: "Macro",
  8037. height: math.unit(56, "feet")
  8038. },
  8039. {
  8040. name: "Megamacro",
  8041. height: math.unit(1.9, "miles")
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8047. {
  8048. front: {
  8049. height: math.unit(9 + 6 / 12, "feet"),
  8050. weight: math.unit(523, "lbs"),
  8051. name: "Side",
  8052. image: {
  8053. source: "./media/characters/aurora/side.svg"
  8054. }
  8055. }
  8056. },
  8057. [
  8058. {
  8059. name: "Normal",
  8060. height: math.unit(9 + 6 / 12, "feet")
  8061. },
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(96, "feet"),
  8065. default: true
  8066. },
  8067. {
  8068. name: "Macro+",
  8069. height: math.unit(243, "feet")
  8070. },
  8071. ]
  8072. ))
  8073. characterMakers.push(() => makeCharacter(
  8074. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8075. {
  8076. front: {
  8077. height: math.unit(194, "cm"),
  8078. weight: math.unit(90, "kg"),
  8079. name: "Front",
  8080. image: {
  8081. source: "./media/characters/ranek/front.svg",
  8082. extra: 1862/1791,
  8083. bottom: 80/1942
  8084. }
  8085. },
  8086. back: {
  8087. height: math.unit(194, "cm"),
  8088. weight: math.unit(90, "kg"),
  8089. name: "Back",
  8090. image: {
  8091. source: "./media/characters/ranek/back.svg",
  8092. extra: 1853/1787,
  8093. bottom: 74/1927
  8094. }
  8095. },
  8096. feral: {
  8097. height: math.unit(30, "cm"),
  8098. weight: math.unit(1.6, "lbs"),
  8099. name: "Feral",
  8100. image: {
  8101. source: "./media/characters/ranek/feral.svg",
  8102. extra: 990/631,
  8103. bottom: 29/1019
  8104. }
  8105. },
  8106. },
  8107. [
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(194, "cm"),
  8111. default: true
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(100, "meters")
  8116. },
  8117. ]
  8118. ))
  8119. characterMakers.push(() => makeCharacter(
  8120. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8121. {
  8122. front: {
  8123. height: math.unit(5 + 6 / 12, "feet"),
  8124. weight: math.unit(153, "lbs"),
  8125. name: "Front",
  8126. image: {
  8127. source: "./media/characters/andrew-cooper/front.svg"
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Nano",
  8134. height: math.unit(1, "mm")
  8135. },
  8136. {
  8137. name: "Micro",
  8138. height: math.unit(2, "inches")
  8139. },
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(5 + 6 / 12, "feet"),
  8143. default: true
  8144. }
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(180, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/akane-sato/front.svg",
  8156. extra: 1219 / 1140
  8157. }
  8158. },
  8159. back: {
  8160. height: math.unit(6, "feet"),
  8161. weight: math.unit(180, "lbs"),
  8162. name: "Back",
  8163. image: {
  8164. source: "./media/characters/akane-sato/back.svg",
  8165. extra: 1219 / 1170
  8166. }
  8167. },
  8168. },
  8169. [
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(2.5, "meters")
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(250, "meters"),
  8177. default: true
  8178. },
  8179. {
  8180. name: "Megamacro",
  8181. height: math.unit(25, "km")
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(6, "feet"),
  8190. weight: math.unit(65, "kg"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/rook/front.svg",
  8194. extra: 960 / 950
  8195. }
  8196. }
  8197. },
  8198. [
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(8.8, "feet")
  8202. },
  8203. {
  8204. name: "Macro",
  8205. height: math.unit(88, "feet"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Megamacro",
  8210. height: math.unit(8, "miles")
  8211. },
  8212. ]
  8213. ))
  8214. characterMakers.push(() => makeCharacter(
  8215. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8216. {
  8217. front: {
  8218. height: math.unit(12 + 2 / 12, "feet"),
  8219. weight: math.unit(808, "lbs"),
  8220. name: "Front",
  8221. image: {
  8222. source: "./media/characters/prodigy/front.svg"
  8223. }
  8224. }
  8225. },
  8226. [
  8227. {
  8228. name: "Normal",
  8229. height: math.unit(12 + 2 / 12, "feet"),
  8230. default: true
  8231. },
  8232. {
  8233. name: "Macro",
  8234. height: math.unit(143, "feet")
  8235. },
  8236. {
  8237. name: "Macro+",
  8238. height: math.unit(400, "feet")
  8239. },
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(6, "feet"),
  8247. weight: math.unit(225, "lbs"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/daniel/front.svg"
  8251. }
  8252. },
  8253. leaning: {
  8254. height: math.unit(6, "feet"),
  8255. weight: math.unit(225, "lbs"),
  8256. name: "Leaning",
  8257. image: {
  8258. source: "./media/characters/daniel/leaning.svg"
  8259. }
  8260. },
  8261. },
  8262. [
  8263. {
  8264. name: "Macro",
  8265. height: math.unit(1000, "feet"),
  8266. default: true
  8267. },
  8268. ]
  8269. ))
  8270. characterMakers.push(() => makeCharacter(
  8271. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8272. {
  8273. front: {
  8274. height: math.unit(6, "feet"),
  8275. weight: math.unit(88, "lbs"),
  8276. name: "Front",
  8277. image: {
  8278. source: "./media/characters/chiros/front.svg",
  8279. extra: 306 / 226
  8280. }
  8281. },
  8282. side: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(88, "lbs"),
  8285. name: "Side",
  8286. image: {
  8287. source: "./media/characters/chiros/side.svg",
  8288. extra: 306 / 226
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(6, "cm"),
  8296. default: true
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8302. {
  8303. front: {
  8304. height: math.unit(6, "feet"),
  8305. weight: math.unit(100, "lbs"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/selka/front.svg",
  8309. extra: 947 / 887
  8310. }
  8311. }
  8312. },
  8313. [
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(5, "cm"),
  8317. default: true
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(8 + 3 / 12, "feet"),
  8326. weight: math.unit(424, "lbs"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/verin/front.svg",
  8330. extra: 1845 / 1550
  8331. }
  8332. },
  8333. frontArmored: {
  8334. height: math.unit(8 + 3 / 12, "feet"),
  8335. weight: math.unit(424, "lbs"),
  8336. name: "Front (Armored)",
  8337. image: {
  8338. source: "./media/characters/verin/front-armor.svg",
  8339. extra: 1845 / 1550,
  8340. bottom: 0.01
  8341. }
  8342. },
  8343. back: {
  8344. height: math.unit(8 + 3 / 12, "feet"),
  8345. weight: math.unit(424, "lbs"),
  8346. name: "Back",
  8347. image: {
  8348. source: "./media/characters/verin/back.svg",
  8349. bottom: 0.1,
  8350. extra: 1
  8351. }
  8352. },
  8353. foot: {
  8354. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8355. name: "Foot",
  8356. image: {
  8357. source: "./media/characters/verin/foot.svg"
  8358. }
  8359. },
  8360. },
  8361. [
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(8 + 3 / 12, "feet")
  8365. },
  8366. {
  8367. name: "Minimacro",
  8368. height: math.unit(21, "feet"),
  8369. default: true
  8370. },
  8371. {
  8372. name: "Macro",
  8373. height: math.unit(626, "feet")
  8374. },
  8375. ]
  8376. ))
  8377. characterMakers.push(() => makeCharacter(
  8378. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8379. {
  8380. front: {
  8381. height: math.unit(2.718, "meters"),
  8382. weight: math.unit(150, "lbs"),
  8383. name: "Front",
  8384. image: {
  8385. source: "./media/characters/sovrim-terraquian/front.svg",
  8386. extra: 1752/1689,
  8387. bottom: 36/1788
  8388. }
  8389. },
  8390. back: {
  8391. height: math.unit(2.718, "meters"),
  8392. weight: math.unit(150, "lbs"),
  8393. name: "Back",
  8394. image: {
  8395. source: "./media/characters/sovrim-terraquian/back.svg",
  8396. extra: 1698/1657,
  8397. bottom: 58/1756
  8398. }
  8399. },
  8400. tongue: {
  8401. height: math.unit(2.865, "feet"),
  8402. name: "Tongue",
  8403. image: {
  8404. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8405. }
  8406. },
  8407. hand: {
  8408. height: math.unit(1.61, "feet"),
  8409. name: "Hand",
  8410. image: {
  8411. source: "./media/characters/sovrim-terraquian/hand.svg"
  8412. }
  8413. },
  8414. foot: {
  8415. height: math.unit(1.05, "feet"),
  8416. name: "Foot",
  8417. image: {
  8418. source: "./media/characters/sovrim-terraquian/foot.svg"
  8419. }
  8420. },
  8421. footAlt: {
  8422. height: math.unit(0.88, "feet"),
  8423. name: "Foot (Alt)",
  8424. image: {
  8425. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8426. }
  8427. },
  8428. },
  8429. [
  8430. {
  8431. name: "Micro",
  8432. height: math.unit(2, "inches")
  8433. },
  8434. {
  8435. name: "Small",
  8436. height: math.unit(1, "meter")
  8437. },
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(Math.E, "meters"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(20, "meters")
  8446. },
  8447. {
  8448. name: "Macro+",
  8449. height: math.unit(400, "meters")
  8450. },
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8455. {
  8456. front: {
  8457. height: math.unit(7, "feet"),
  8458. weight: math.unit(489, "lbs"),
  8459. name: "Front",
  8460. image: {
  8461. source: "./media/characters/reece-silvermane/front.svg",
  8462. bottom: 0.02,
  8463. extra: 1
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(1.5, "miles"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(78, "kg"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/kane/front.svg",
  8484. extra: 978 / 899
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(2.1, "m"),
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(1, "km"),
  8496. default: true
  8497. },
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(6, "feet"),
  8505. weight: math.unit(200, "kg"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/tegon/front.svg",
  8509. bottom: 0.01,
  8510. extra: 1
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Micro",
  8517. height: math.unit(1, "inch")
  8518. },
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(6 + 3 / 12, "feet"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Macro",
  8526. height: math.unit(300, "feet")
  8527. },
  8528. {
  8529. name: "Megamacro",
  8530. height: math.unit(69, "miles")
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8536. {
  8537. side: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(2304, "lbs"),
  8540. name: "Side",
  8541. image: {
  8542. source: "./media/characters/arcturax/side.svg",
  8543. extra: 790 / 376,
  8544. bottom: 0.01
  8545. }
  8546. },
  8547. },
  8548. [
  8549. {
  8550. name: "Micro",
  8551. height: math.unit(2, "inch")
  8552. },
  8553. {
  8554. name: "Normal",
  8555. height: math.unit(6, "feet")
  8556. },
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(39, "feet"),
  8560. default: true
  8561. },
  8562. {
  8563. name: "Megamacro",
  8564. height: math.unit(7, "miles")
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(6, "feet"),
  8573. weight: math.unit(50, "lbs"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/sentri/front.svg",
  8577. extra: 1750 / 1570,
  8578. bottom: 0.025
  8579. }
  8580. },
  8581. frontAlt: {
  8582. height: math.unit(6, "feet"),
  8583. weight: math.unit(50, "lbs"),
  8584. name: "Front (Alt)",
  8585. image: {
  8586. source: "./media/characters/sentri/front-alt.svg",
  8587. extra: 1750 / 1570,
  8588. bottom: 0.025
  8589. }
  8590. },
  8591. },
  8592. [
  8593. {
  8594. name: "Normal",
  8595. height: math.unit(15, "feet"),
  8596. default: true
  8597. },
  8598. {
  8599. name: "Macro",
  8600. height: math.unit(2500, "feet")
  8601. }
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(5 + 8 / 12, "feet"),
  8609. weight: math.unit(130, "lbs"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/corvin/front.svg",
  8613. extra: 1803 / 1629
  8614. }
  8615. },
  8616. frontShirt: {
  8617. height: math.unit(5 + 8 / 12, "feet"),
  8618. weight: math.unit(130, "lbs"),
  8619. name: "Front (Shirt)",
  8620. image: {
  8621. source: "./media/characters/corvin/front-shirt.svg",
  8622. extra: 1803 / 1629
  8623. }
  8624. },
  8625. frontPoncho: {
  8626. height: math.unit(5 + 8 / 12, "feet"),
  8627. weight: math.unit(130, "lbs"),
  8628. name: "Front (Poncho)",
  8629. image: {
  8630. source: "./media/characters/corvin/front-poncho.svg",
  8631. extra: 1803 / 1629
  8632. }
  8633. },
  8634. side: {
  8635. height: math.unit(5 + 8 / 12, "feet"),
  8636. weight: math.unit(130, "lbs"),
  8637. name: "Side",
  8638. image: {
  8639. source: "./media/characters/corvin/side.svg",
  8640. extra: 1012 / 945
  8641. }
  8642. },
  8643. back: {
  8644. height: math.unit(5 + 8 / 12, "feet"),
  8645. weight: math.unit(130, "lbs"),
  8646. name: "Back",
  8647. image: {
  8648. source: "./media/characters/corvin/back.svg",
  8649. extra: 1803 / 1629
  8650. }
  8651. },
  8652. },
  8653. [
  8654. {
  8655. name: "Micro",
  8656. height: math.unit(3, "inches")
  8657. },
  8658. {
  8659. name: "Normal",
  8660. height: math.unit(5 + 8 / 12, "feet")
  8661. },
  8662. {
  8663. name: "Macro",
  8664. height: math.unit(300, "feet"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "Megamacro",
  8669. height: math.unit(500, "miles")
  8670. }
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(6, "feet"),
  8678. weight: math.unit(135, "lbs"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/q/front.svg",
  8682. extra: 854 / 752,
  8683. bottom: 0.005
  8684. }
  8685. },
  8686. back: {
  8687. height: math.unit(6, "feet"),
  8688. weight: math.unit(130, "lbs"),
  8689. name: "Back",
  8690. image: {
  8691. source: "./media/characters/q/back.svg",
  8692. extra: 854 / 752
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(90, "feet"),
  8700. default: true
  8701. },
  8702. {
  8703. name: "Extra Macro",
  8704. height: math.unit(300, "feet"),
  8705. },
  8706. {
  8707. name: "BIG WALF",
  8708. height: math.unit(750, "feet"),
  8709. },
  8710. ]
  8711. ))
  8712. characterMakers.push(() => makeCharacter(
  8713. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8714. {
  8715. front: {
  8716. height: math.unit(6, "feet"),
  8717. weight: math.unit(150, "lbs"),
  8718. name: "Front",
  8719. image: {
  8720. source: "./media/characters/carley/front.svg",
  8721. extra: 3927 / 3540,
  8722. bottom: 29.2 / 735
  8723. }
  8724. }
  8725. },
  8726. [
  8727. {
  8728. name: "Normal",
  8729. height: math.unit(6 + 3 / 12, "feet")
  8730. },
  8731. {
  8732. name: "Macro",
  8733. height: math.unit(185, "feet"),
  8734. default: true
  8735. },
  8736. {
  8737. name: "Megamacro",
  8738. height: math.unit(8, "miles"),
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8744. {
  8745. front: {
  8746. height: math.unit(3, "feet"),
  8747. weight: math.unit(28, "lbs"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/citrine/front.svg"
  8751. }
  8752. }
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(3, "feet"),
  8758. default: true
  8759. }
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8764. {
  8765. front: {
  8766. height: math.unit(14, "feet"),
  8767. weight: math.unit(1450, "kg"),
  8768. preyCapacity: math.unit(15, "people"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/aura-starwind/front.svg",
  8772. extra: 1440/1327,
  8773. bottom: 11/1451
  8774. }
  8775. },
  8776. side: {
  8777. height: math.unit(14, "feet"),
  8778. weight: math.unit(1450, "kg"),
  8779. preyCapacity: math.unit(15, "people"),
  8780. name: "Side",
  8781. image: {
  8782. source: "./media/characters/aura-starwind/side.svg",
  8783. extra: 1654 / 1497
  8784. }
  8785. },
  8786. taur: {
  8787. height: math.unit(18, "feet"),
  8788. weight: math.unit(5500, "kg"),
  8789. preyCapacity: math.unit(50, "people"),
  8790. name: "Taur",
  8791. image: {
  8792. source: "./media/characters/aura-starwind/taur.svg",
  8793. extra: 1760 / 1650
  8794. }
  8795. },
  8796. feral: {
  8797. height: math.unit(46, "feet"),
  8798. weight: math.unit(25000, "kg"),
  8799. preyCapacity: math.unit(120, "people"),
  8800. name: "Feral",
  8801. image: {
  8802. source: "./media/characters/aura-starwind/feral.svg"
  8803. }
  8804. },
  8805. },
  8806. [
  8807. {
  8808. name: "Normal",
  8809. height: math.unit(14, "feet"),
  8810. default: true
  8811. },
  8812. {
  8813. name: "Macro",
  8814. height: math.unit(50, "meters")
  8815. },
  8816. {
  8817. name: "Megamacro",
  8818. height: math.unit(5000, "meters")
  8819. },
  8820. {
  8821. name: "Gigamacro",
  8822. height: math.unit(100000, "kilometers")
  8823. },
  8824. ]
  8825. ))
  8826. characterMakers.push(() => makeCharacter(
  8827. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8828. {
  8829. front: {
  8830. height: math.unit(2 + 7 / 12, "feet"),
  8831. weight: math.unit(32, "lbs"),
  8832. name: "Front",
  8833. image: {
  8834. source: "./media/characters/rivet/front.svg",
  8835. extra: 1716 / 1658,
  8836. bottom: 0.03
  8837. }
  8838. },
  8839. foot: {
  8840. height: math.unit(0.551, "feet"),
  8841. name: "Rivet's Foot",
  8842. image: {
  8843. source: "./media/characters/rivet/foot.svg"
  8844. },
  8845. rename: true
  8846. }
  8847. },
  8848. [
  8849. {
  8850. name: "Micro",
  8851. height: math.unit(1.5, "inches"),
  8852. },
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(2 + 7 / 12, "feet"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(85, "feet")
  8861. },
  8862. {
  8863. name: "Megamacro",
  8864. height: math.unit(2.2, "km")
  8865. }
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(5 + 9 / 12, "feet"),
  8873. weight: math.unit(150, "lbs"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/coffee/front.svg",
  8877. extra: 3666 / 3032,
  8878. bottom: 0.04
  8879. }
  8880. },
  8881. foot: {
  8882. height: math.unit(1.29, "feet"),
  8883. name: "Foot",
  8884. image: {
  8885. source: "./media/characters/coffee/foot.svg"
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Micro",
  8892. height: math.unit(2, "inches"),
  8893. },
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(5 + 9 / 12, "feet"),
  8897. default: true
  8898. },
  8899. {
  8900. name: "Macro",
  8901. height: math.unit(800, "feet")
  8902. },
  8903. {
  8904. name: "Megamacro",
  8905. height: math.unit(25, "miles")
  8906. }
  8907. ]
  8908. ))
  8909. characterMakers.push(() => makeCharacter(
  8910. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8911. {
  8912. front: {
  8913. height: math.unit(6, "feet"),
  8914. weight: math.unit(200, "lbs"),
  8915. name: "Front",
  8916. image: {
  8917. source: "./media/characters/chari-gal/front.svg",
  8918. extra: 1568 / 1385,
  8919. bottom: 0.047
  8920. }
  8921. },
  8922. gigantamax: {
  8923. height: math.unit(6 * 16, "feet"),
  8924. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8925. name: "Gigantamax",
  8926. image: {
  8927. source: "./media/characters/chari-gal/gigantamax.svg",
  8928. extra: 1124 / 888,
  8929. bottom: 0.03
  8930. }
  8931. },
  8932. },
  8933. [
  8934. {
  8935. name: "Normal",
  8936. height: math.unit(5 + 7 / 12, "feet")
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(200, "feet"),
  8941. default: true
  8942. }
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8947. {
  8948. front: {
  8949. height: math.unit(6, "feet"),
  8950. weight: math.unit(150, "lbs"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/nova/front.svg",
  8954. extra: 5000 / 4722,
  8955. bottom: 0.02
  8956. }
  8957. }
  8958. },
  8959. [
  8960. {
  8961. name: "Micro-",
  8962. height: math.unit(0.8, "inches")
  8963. },
  8964. {
  8965. name: "Micro",
  8966. height: math.unit(2, "inches"),
  8967. default: true
  8968. },
  8969. ]
  8970. ))
  8971. characterMakers.push(() => makeCharacter(
  8972. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8973. {
  8974. front: {
  8975. height: math.unit(3 + 1 / 12, "feet"),
  8976. weight: math.unit(21.7, "lbs"),
  8977. name: "Front",
  8978. image: {
  8979. source: "./media/characters/argent/front.svg",
  8980. extra: 1471 / 1331,
  8981. bottom: 100.8 / 1575.5
  8982. }
  8983. }
  8984. },
  8985. [
  8986. {
  8987. name: "Micro",
  8988. height: math.unit(2, "inches")
  8989. },
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(3 + 1 / 12, "feet"),
  8993. default: true
  8994. },
  8995. {
  8996. name: "Macro",
  8997. height: math.unit(120, "feet")
  8998. },
  8999. ]
  9000. ))
  9001. characterMakers.push(() => makeCharacter(
  9002. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9003. {
  9004. lamp: {
  9005. height: math.unit(7 * 1559 / 989, "feet"),
  9006. name: "Magic Lamp",
  9007. image: {
  9008. source: "./media/characters/mira-al-cul/lamp.svg",
  9009. extra: 1617 / 1559
  9010. }
  9011. },
  9012. front: {
  9013. height: math.unit(7, "feet"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/mira-al-cul/front.svg",
  9017. extra: 1044 / 990
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Heavily Restricted",
  9024. height: math.unit(7 * 1559 / 989, "feet")
  9025. },
  9026. {
  9027. name: "Freshly Freed",
  9028. height: math.unit(50 * 1559 / 989, "feet")
  9029. },
  9030. {
  9031. name: "World Encompassing",
  9032. height: math.unit(10000 * 1559 / 989, "miles")
  9033. },
  9034. {
  9035. name: "Galactic",
  9036. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9037. },
  9038. {
  9039. name: "Palmed Universe",
  9040. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9041. default: true
  9042. },
  9043. {
  9044. name: "Multiversal Matriarch",
  9045. height: math.unit(8.87e10, "yottameters")
  9046. },
  9047. {
  9048. name: "Void Mother",
  9049. height: math.unit(3.14e110, "yottaparsecs")
  9050. },
  9051. {
  9052. name: "Toying with Transcendence",
  9053. height: math.unit(1e307, "meters")
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9059. {
  9060. front: {
  9061. height: math.unit(17 + 1 / 12, "feet"),
  9062. weight: math.unit(476.2 * 5, "lbs"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/kuro-shi-uchū/front.svg",
  9066. extra: 2329 / 1835,
  9067. bottom: 0.02
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Micro",
  9074. height: math.unit(2, "inches")
  9075. },
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(12, "meters")
  9079. },
  9080. {
  9081. name: "Planetary",
  9082. height: math.unit(0.00929, "AU"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Universal",
  9087. height: math.unit(20, "gigaparsecs")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(5 + 2 / 12, "feet"),
  9096. weight: math.unit(120, "lbs"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/katherine/front.svg",
  9100. extra: 2075 / 1969
  9101. }
  9102. },
  9103. dress: {
  9104. height: math.unit(5 + 2 / 12, "feet"),
  9105. weight: math.unit(120, "lbs"),
  9106. name: "Dress",
  9107. image: {
  9108. source: "./media/characters/katherine/dress.svg",
  9109. extra: 2258 / 2064
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Micro",
  9116. height: math.unit(1, "inches"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Normal",
  9121. height: math.unit(5 + 2 / 12, "feet")
  9122. },
  9123. {
  9124. name: "Macro",
  9125. height: math.unit(100, "meters")
  9126. },
  9127. {
  9128. name: "Megamacro",
  9129. height: math.unit(80, "miles")
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(7 + 8 / 12, "feet"),
  9138. weight: math.unit(250, "lbs"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/yevis/front.svg",
  9142. extra: 1938 / 1755
  9143. }
  9144. }
  9145. },
  9146. [
  9147. {
  9148. name: "Mortal",
  9149. height: math.unit(7 + 8 / 12, "feet")
  9150. },
  9151. {
  9152. name: "Battle",
  9153. height: math.unit(25 + 11 / 12, "feet")
  9154. },
  9155. {
  9156. name: "Wrath",
  9157. height: math.unit(1654 + 11 / 12, "feet")
  9158. },
  9159. {
  9160. name: "Planet Destroyer",
  9161. height: math.unit(12000, "miles")
  9162. },
  9163. {
  9164. name: "Galaxy Conqueror",
  9165. height: math.unit(1.45, "zettameters"),
  9166. default: true
  9167. },
  9168. {
  9169. name: "Universal War",
  9170. height: math.unit(184, "gigaparsecs")
  9171. },
  9172. {
  9173. name: "Eternity War",
  9174. height: math.unit(1.98e55, "yottaparsecs")
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(5 + 8 / 12, "feet"),
  9183. weight: math.unit(63, "kg"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/xavier/front.svg",
  9187. extra: 944 / 883
  9188. }
  9189. },
  9190. frontStretch: {
  9191. height: math.unit(5 + 8 / 12, "feet"),
  9192. weight: math.unit(63, "kg"),
  9193. name: "Stretching",
  9194. image: {
  9195. source: "./media/characters/xavier/front-stretch.svg",
  9196. extra: 962 / 820
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(5 + 8 / 12, "feet")
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(100, "meters"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "McLargeHuge",
  9212. height: math.unit(10, "miles")
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(5 + 5 / 12, "feet"),
  9221. weight: math.unit(150, "lb"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/joshii/front.svg",
  9225. extra: 765 / 653,
  9226. bottom: 51 / 816
  9227. }
  9228. },
  9229. foot: {
  9230. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9231. name: "Foot",
  9232. image: {
  9233. source: "./media/characters/joshii/foot.svg"
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(2, "inches"),
  9241. default: true
  9242. },
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(5 + 5 / 12, "feet")
  9246. },
  9247. {
  9248. name: "Macro",
  9249. height: math.unit(785, "feet")
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(24.5, "miles")
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(150, "lb"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/goddess-elizabeth/front.svg",
  9266. extra: 1800 / 1525,
  9267. bottom: 0.005
  9268. }
  9269. },
  9270. foot: {
  9271. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9272. name: "Foot",
  9273. image: {
  9274. source: "./media/characters/goddess-elizabeth/foot.svg"
  9275. }
  9276. },
  9277. mouth: {
  9278. height: math.unit(6, "feet"),
  9279. name: "Mouth",
  9280. image: {
  9281. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Micro",
  9288. height: math.unit(12, "feet")
  9289. },
  9290. {
  9291. name: "Normal",
  9292. height: math.unit(80, "miles"),
  9293. default: true
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(15000, "parsecs")
  9298. },
  9299. ]
  9300. ))
  9301. characterMakers.push(() => makeCharacter(
  9302. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9303. {
  9304. front: {
  9305. height: math.unit(5 + 9 / 12, "feet"),
  9306. weight: math.unit(144, "lb"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/kara/front.svg"
  9310. }
  9311. },
  9312. feet: {
  9313. height: math.unit(6 / 6.765, "feet"),
  9314. name: "Kara's Feet",
  9315. rename: true,
  9316. image: {
  9317. source: "./media/characters/kara/feet.svg"
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(5 + 9 / 12, "feet")
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(174, "feet"),
  9329. default: true
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9335. {
  9336. front: {
  9337. height: math.unit(18, "feet"),
  9338. weight: math.unit(4050, "lb"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/tyrone/front.svg",
  9342. extra: 2405 / 2270,
  9343. bottom: 182 / 2587
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(18, "feet"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Macro",
  9355. height: math.unit(300, "feet")
  9356. },
  9357. {
  9358. name: "Megamacro",
  9359. height: math.unit(15, "km")
  9360. },
  9361. {
  9362. name: "Gigamacro",
  9363. height: math.unit(500, "km")
  9364. },
  9365. {
  9366. name: "Teramacro",
  9367. height: math.unit(0.5, "gigameters")
  9368. },
  9369. {
  9370. name: "Omnimacro",
  9371. height: math.unit(1e252, "yottauniverse")
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(7 + 8 / 12, "feet"),
  9380. weight: math.unit(120, "lb"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/danny/front.svg",
  9384. extra: 1490 / 1350
  9385. }
  9386. },
  9387. back: {
  9388. height: math.unit(7 + 8 / 12, "feet"),
  9389. weight: math.unit(120, "lb"),
  9390. name: "Back",
  9391. image: {
  9392. source: "./media/characters/danny/back.svg",
  9393. extra: 1490 / 1350
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(7 + 8 / 12, "feet"),
  9401. default: true
  9402. },
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9407. {
  9408. front: {
  9409. height: math.unit(3.5, "inches"),
  9410. weight: math.unit(19, "grams"),
  9411. name: "Front",
  9412. image: {
  9413. source: "./media/characters/mallow/front.svg",
  9414. extra: 471 / 431
  9415. }
  9416. },
  9417. back: {
  9418. height: math.unit(3.5, "inches"),
  9419. weight: math.unit(19, "grams"),
  9420. name: "Back",
  9421. image: {
  9422. source: "./media/characters/mallow/back.svg",
  9423. extra: 471 / 431
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Normal",
  9430. height: math.unit(3.5, "inches"),
  9431. default: true
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(9, "feet"),
  9440. weight: math.unit(230, "kg"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/starry-aqua/front.svg"
  9444. }
  9445. },
  9446. back: {
  9447. height: math.unit(9, "feet"),
  9448. weight: math.unit(230, "kg"),
  9449. name: "Back",
  9450. image: {
  9451. source: "./media/characters/starry-aqua/back.svg"
  9452. }
  9453. },
  9454. hand: {
  9455. height: math.unit(9 * 0.1168, "feet"),
  9456. name: "Hand",
  9457. image: {
  9458. source: "./media/characters/starry-aqua/hand.svg"
  9459. }
  9460. },
  9461. foot: {
  9462. height: math.unit(9 * 0.18, "feet"),
  9463. name: "Foot",
  9464. image: {
  9465. source: "./media/characters/starry-aqua/foot.svg"
  9466. }
  9467. }
  9468. },
  9469. [
  9470. {
  9471. name: "Micro",
  9472. height: math.unit(3, "inches")
  9473. },
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(9, "feet")
  9477. },
  9478. {
  9479. name: "Macro",
  9480. height: math.unit(300, "feet"),
  9481. default: true
  9482. },
  9483. {
  9484. name: "Megamacro",
  9485. height: math.unit(3200, "feet")
  9486. }
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9491. {
  9492. front: {
  9493. height: math.unit(15, "feet"),
  9494. weight: math.unit(5026, "lb"),
  9495. name: "Front",
  9496. image: {
  9497. source: "./media/characters/luka-towers/front.svg",
  9498. extra: 1269/1133,
  9499. bottom: 51/1320
  9500. }
  9501. },
  9502. },
  9503. [
  9504. {
  9505. name: "Normal",
  9506. height: math.unit(15, "feet"),
  9507. default: true
  9508. },
  9509. {
  9510. name: "Minimacro",
  9511. height: math.unit(25, "feet")
  9512. },
  9513. {
  9514. name: "Macro",
  9515. height: math.unit(320, "feet")
  9516. },
  9517. {
  9518. name: "Megamacro",
  9519. height: math.unit(35000, "feet")
  9520. },
  9521. {
  9522. name: "Gigamacro",
  9523. height: math.unit(4000, "miles")
  9524. },
  9525. {
  9526. name: "Teramacro",
  9527. height: math.unit(15000, "miles")
  9528. },
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9533. {
  9534. front: {
  9535. height: math.unit(6, "feet"),
  9536. weight: math.unit(150, "lb"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/natalie-nightring/front.svg",
  9540. extra: 1,
  9541. bottom: 0.06
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Uh Oh",
  9548. height: math.unit(0.1, "mm")
  9549. },
  9550. {
  9551. name: "Small",
  9552. height: math.unit(3, "inches")
  9553. },
  9554. {
  9555. name: "Human Scale",
  9556. height: math.unit(6, "feet")
  9557. },
  9558. {
  9559. name: "Librarian",
  9560. height: math.unit(50, "feet"),
  9561. default: true
  9562. },
  9563. {
  9564. name: "Immense",
  9565. height: math.unit(200, "miles")
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(180, "lbs"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/danni-rosie/front.svg",
  9578. extra: 1260 / 1128,
  9579. bottom: 0.022
  9580. }
  9581. },
  9582. },
  9583. [
  9584. {
  9585. name: "Micro",
  9586. height: math.unit(2, "inches"),
  9587. default: true
  9588. },
  9589. ]
  9590. ))
  9591. characterMakers.push(() => makeCharacter(
  9592. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9593. {
  9594. front: {
  9595. height: math.unit(5 + 9 / 12, "feet"),
  9596. weight: math.unit(220, "lb"),
  9597. name: "Front",
  9598. image: {
  9599. source: "./media/characters/samantha-kruse/front.svg",
  9600. extra: (985 / 935),
  9601. bottom: 0.03
  9602. }
  9603. },
  9604. frontUndressed: {
  9605. height: math.unit(5 + 9 / 12, "feet"),
  9606. weight: math.unit(220, "lb"),
  9607. name: "Front (Undressed)",
  9608. image: {
  9609. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9610. extra: (973 / 923),
  9611. bottom: 0.025
  9612. }
  9613. },
  9614. fat: {
  9615. height: math.unit(5 + 9 / 12, "feet"),
  9616. weight: math.unit(900, "lb"),
  9617. name: "Front (Fat)",
  9618. image: {
  9619. source: "./media/characters/samantha-kruse/fat.svg",
  9620. extra: 2688 / 2561
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(5 + 9 / 12, "feet"),
  9628. default: true
  9629. }
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9634. {
  9635. back: {
  9636. height: math.unit(5 + 4 / 12, "feet"),
  9637. weight: math.unit(4963, "lb"),
  9638. name: "Back",
  9639. image: {
  9640. source: "./media/characters/amelia-rosie/back.svg",
  9641. extra: 1113 / 963,
  9642. bottom: 0.01
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Level 0",
  9649. height: math.unit(5 + 4 / 12, "feet")
  9650. },
  9651. {
  9652. name: "Level 1",
  9653. height: math.unit(164597, "feet"),
  9654. default: true
  9655. },
  9656. {
  9657. name: "Level 2",
  9658. height: math.unit(956243, "miles")
  9659. },
  9660. {
  9661. name: "Level 3",
  9662. height: math.unit(29421709423, "miles")
  9663. },
  9664. {
  9665. name: "Level 4",
  9666. height: math.unit(154, "lightyears")
  9667. },
  9668. {
  9669. name: "Level 5",
  9670. height: math.unit(4738272, "lightyears")
  9671. },
  9672. {
  9673. name: "Level 6",
  9674. height: math.unit(145787152896, "lightyears")
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(5 + 11 / 12, "feet"),
  9683. weight: math.unit(65, "kg"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/rook-kitara/front.svg",
  9687. extra: 1347 / 1274,
  9688. bottom: 0.005
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Totally Unfair",
  9695. height: math.unit(1.8, "mm")
  9696. },
  9697. {
  9698. name: "Lap Rookie",
  9699. height: math.unit(1.4, "feet")
  9700. },
  9701. {
  9702. name: "Normal",
  9703. height: math.unit(5 + 11 / 12, "feet"),
  9704. default: true
  9705. },
  9706. {
  9707. name: "How Did This Happen",
  9708. height: math.unit(80, "miles")
  9709. }
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(7, "feet"),
  9717. weight: math.unit(300, "lb"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/pisces/front.svg",
  9721. extra: 2255 / 2115,
  9722. bottom: 0.03
  9723. }
  9724. },
  9725. back: {
  9726. height: math.unit(7, "feet"),
  9727. weight: math.unit(300, "lb"),
  9728. name: "Back",
  9729. image: {
  9730. source: "./media/characters/pisces/back.svg",
  9731. extra: 2146 / 2055,
  9732. bottom: 0.04
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(7, "feet"),
  9740. default: true
  9741. },
  9742. {
  9743. name: "Swimming Pool",
  9744. height: math.unit(12.2, "meters")
  9745. },
  9746. {
  9747. name: "Olympic Swimming Pool",
  9748. height: math.unit(56.3, "meters")
  9749. },
  9750. {
  9751. name: "Lake Superior",
  9752. height: math.unit(93900, "meters")
  9753. },
  9754. {
  9755. name: "Mediterranean Sea",
  9756. height: math.unit(644457, "meters")
  9757. },
  9758. {
  9759. name: "World's Oceans",
  9760. height: math.unit(4567491, "meters")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9766. {
  9767. front: {
  9768. height: math.unit(2.3, "meters"),
  9769. weight: math.unit(120, "kg"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/zelas/front.svg"
  9773. }
  9774. },
  9775. side: {
  9776. height: math.unit(2.3, "meters"),
  9777. weight: math.unit(120, "kg"),
  9778. name: "Side",
  9779. image: {
  9780. source: "./media/characters/zelas/side.svg"
  9781. }
  9782. },
  9783. back: {
  9784. height: math.unit(2.3, "meters"),
  9785. weight: math.unit(120, "kg"),
  9786. name: "Back",
  9787. image: {
  9788. source: "./media/characters/zelas/back.svg"
  9789. }
  9790. },
  9791. foot: {
  9792. height: math.unit(1.116, "feet"),
  9793. name: "Foot",
  9794. image: {
  9795. source: "./media/characters/zelas/foot.svg"
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(2.3, "meters")
  9803. },
  9804. {
  9805. name: "Macro",
  9806. height: math.unit(30, "meters"),
  9807. default: true
  9808. },
  9809. ]
  9810. ))
  9811. characterMakers.push(() => makeCharacter(
  9812. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9813. {
  9814. front: {
  9815. height: math.unit(1, "inch"),
  9816. weight: math.unit(0.21, "grams"),
  9817. name: "Front",
  9818. image: {
  9819. source: "./media/characters/talbot/front.svg",
  9820. extra: 594 / 544
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Micro",
  9827. height: math.unit(1, "inch"),
  9828. default: true
  9829. },
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9834. {
  9835. front: {
  9836. height: math.unit(3 + 3 / 12, "feet"),
  9837. weight: math.unit(51.8, "lb"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/fliss/front.svg",
  9841. extra: 840 / 640
  9842. }
  9843. },
  9844. },
  9845. [
  9846. {
  9847. name: "Teeny Tiny",
  9848. height: math.unit(1, "mm")
  9849. },
  9850. {
  9851. name: "Small",
  9852. height: math.unit(1, "inch"),
  9853. default: true
  9854. },
  9855. {
  9856. name: "Standard Sylveon",
  9857. height: math.unit(3 + 3 / 12, "feet")
  9858. },
  9859. {
  9860. name: "Large Nuisance",
  9861. height: math.unit(33, "feet")
  9862. },
  9863. {
  9864. name: "City Filler",
  9865. height: math.unit(3000, "feet")
  9866. },
  9867. {
  9868. name: "New Horizon",
  9869. height: math.unit(6000, "miles")
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(5, "cm"),
  9878. weight: math.unit(1.94, "g"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/fleta/front.svg",
  9882. extra: 835 / 803
  9883. }
  9884. },
  9885. back: {
  9886. height: math.unit(5, "cm"),
  9887. weight: math.unit(1.94, "g"),
  9888. name: "Back",
  9889. image: {
  9890. source: "./media/characters/fleta/back.svg",
  9891. extra: 835 / 803
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Micro",
  9898. height: math.unit(5, "cm"),
  9899. default: true
  9900. },
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(6, "feet"),
  9908. weight: math.unit(225, "lb"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/dominic/front.svg",
  9912. extra: 1770 / 1620,
  9913. bottom: 0.025
  9914. }
  9915. },
  9916. back: {
  9917. height: math.unit(6, "feet"),
  9918. weight: math.unit(225, "lb"),
  9919. name: "Back",
  9920. image: {
  9921. source: "./media/characters/dominic/back.svg",
  9922. extra: 1745 / 1620,
  9923. bottom: 0.065
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Nano",
  9930. height: math.unit(0.1, "mm")
  9931. },
  9932. {
  9933. name: "Micro-",
  9934. height: math.unit(1, "mm")
  9935. },
  9936. {
  9937. name: "Micro",
  9938. height: math.unit(4, "inches")
  9939. },
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(6 + 4 / 12, "feet"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Macro",
  9947. height: math.unit(115, "feet")
  9948. },
  9949. {
  9950. name: "Macro+",
  9951. height: math.unit(955, "feet")
  9952. },
  9953. {
  9954. name: "Megamacro",
  9955. height: math.unit(8990, "feet")
  9956. },
  9957. {
  9958. name: "Gigmacro",
  9959. height: math.unit(9310, "miles")
  9960. },
  9961. {
  9962. name: "Teramacro",
  9963. height: math.unit(1567005010, "miles")
  9964. },
  9965. {
  9966. name: "Examacro",
  9967. height: math.unit(1425, "parsecs")
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9973. {
  9974. front: {
  9975. height: math.unit(400, "feet"),
  9976. weight: math.unit(44444444, "lb"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/major-colonel/front.svg"
  9980. }
  9981. },
  9982. back: {
  9983. height: math.unit(400, "feet"),
  9984. weight: math.unit(44444444, "lb"),
  9985. name: "Back",
  9986. image: {
  9987. source: "./media/characters/major-colonel/back.svg"
  9988. }
  9989. },
  9990. },
  9991. [
  9992. {
  9993. name: "Macro",
  9994. height: math.unit(400, "feet"),
  9995. default: true
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10001. {
  10002. catFront: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(120, "lb"),
  10005. name: "Front (Cat Side)",
  10006. image: {
  10007. source: "./media/characters/axel-lycan/cat-front.svg",
  10008. extra: 430 / 402,
  10009. bottom: 43 / 472.35
  10010. }
  10011. },
  10012. catBack: {
  10013. height: math.unit(6, "feet"),
  10014. weight: math.unit(120, "lb"),
  10015. name: "Back (Cat Side)",
  10016. image: {
  10017. source: "./media/characters/axel-lycan/cat-back.svg",
  10018. extra: 447 / 419,
  10019. bottom: 23.3 / 469
  10020. }
  10021. },
  10022. wolfFront: {
  10023. height: math.unit(6, "feet"),
  10024. weight: math.unit(120, "lb"),
  10025. name: "Front (Wolf Side)",
  10026. image: {
  10027. source: "./media/characters/axel-lycan/wolf-front.svg",
  10028. extra: 485 / 456,
  10029. bottom: 19 / 504
  10030. }
  10031. },
  10032. wolfBack: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(120, "lb"),
  10035. name: "Back (Wolf Side)",
  10036. image: {
  10037. source: "./media/characters/axel-lycan/wolf-back.svg",
  10038. extra: 475 / 438,
  10039. bottom: 39.2 / 514
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Macro",
  10046. height: math.unit(1, "km"),
  10047. default: true
  10048. },
  10049. ]
  10050. ))
  10051. characterMakers.push(() => makeCharacter(
  10052. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10053. {
  10054. front: {
  10055. height: math.unit(5 + 9 / 12, "feet"),
  10056. weight: math.unit(175, "lb"),
  10057. name: "Front",
  10058. image: {
  10059. source: "./media/characters/vanrel-hyena/front.svg",
  10060. extra: 1086 / 1010,
  10061. bottom: 0.04
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Normal",
  10068. height: math.unit(5 + 9 / 12, "feet"),
  10069. default: true
  10070. },
  10071. ]
  10072. ))
  10073. characterMakers.push(() => makeCharacter(
  10074. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10075. {
  10076. front: {
  10077. height: math.unit(6, "feet"),
  10078. weight: math.unit(103, "lb"),
  10079. name: "Front",
  10080. image: {
  10081. source: "./media/characters/abbott-absol/front.svg",
  10082. extra: 2010 / 1842
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Megamicro",
  10089. height: math.unit(0.1, "mm")
  10090. },
  10091. {
  10092. name: "Micro",
  10093. height: math.unit(1, "inch")
  10094. },
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(6, "feet"),
  10098. default: true
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(264, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/hector/front.svg",
  10111. extra: 2280 / 2130,
  10112. bottom: 0.07
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(12.25, "foot"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Macro",
  10124. height: math.unit(160, "feet")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(6, "feet"),
  10133. weight: math.unit(150, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/sal/front.svg",
  10137. extra: 1846 / 1699,
  10138. bottom: 0.04
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Megamacro",
  10145. height: math.unit(10, "miles"),
  10146. default: true
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10152. {
  10153. front: {
  10154. height: math.unit(3, "meters"),
  10155. weight: math.unit(450, "kg"),
  10156. name: "front",
  10157. image: {
  10158. source: "./media/characters/ranger/front.svg",
  10159. extra: 2401 / 2243,
  10160. bottom: 0.05
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(3, "meters"),
  10168. default: true
  10169. },
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10174. {
  10175. front: {
  10176. height: math.unit(14, "feet"),
  10177. weight: math.unit(800, "kg"),
  10178. name: "Front",
  10179. image: {
  10180. source: "./media/characters/theresa/front.svg",
  10181. extra: 3575 / 3346,
  10182. bottom: 0.03
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Normal",
  10189. height: math.unit(14, "feet"),
  10190. default: true
  10191. },
  10192. ]
  10193. ))
  10194. characterMakers.push(() => makeCharacter(
  10195. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10196. {
  10197. front: {
  10198. height: math.unit(6, "feet"),
  10199. weight: math.unit(3, "kg"),
  10200. name: "Front",
  10201. image: {
  10202. source: "./media/characters/ine/front.svg",
  10203. extra: 678 / 539,
  10204. bottom: 0.023
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(2.265, "feet"),
  10212. default: true
  10213. },
  10214. ]
  10215. ))
  10216. characterMakers.push(() => makeCharacter(
  10217. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10218. {
  10219. front: {
  10220. height: math.unit(5, "feet"),
  10221. weight: math.unit(30, "kg"),
  10222. name: "Front",
  10223. image: {
  10224. source: "./media/characters/vial/front.svg",
  10225. extra: 1365 / 1277,
  10226. bottom: 0.04
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(5, "feet"),
  10234. default: true
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10240. {
  10241. side: {
  10242. height: math.unit(3.4, "meters"),
  10243. weight: math.unit(1000, "lb"),
  10244. name: "Side",
  10245. image: {
  10246. source: "./media/characters/rovoska/side.svg",
  10247. extra: 4403 / 1515
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Normal",
  10254. height: math.unit(3.4, "meters"),
  10255. default: true
  10256. },
  10257. ]
  10258. ))
  10259. characterMakers.push(() => makeCharacter(
  10260. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10261. {
  10262. front: {
  10263. height: math.unit(8, "feet"),
  10264. weight: math.unit(315, "lb"),
  10265. name: "Front",
  10266. image: {
  10267. source: "./media/characters/gunner-rotthbauer/front.svg"
  10268. }
  10269. },
  10270. back: {
  10271. height: math.unit(8, "feet"),
  10272. weight: math.unit(315, "lb"),
  10273. name: "Back",
  10274. image: {
  10275. source: "./media/characters/gunner-rotthbauer/back.svg"
  10276. }
  10277. },
  10278. },
  10279. [
  10280. {
  10281. name: "Micro",
  10282. height: math.unit(3.5, "inches")
  10283. },
  10284. {
  10285. name: "Normal",
  10286. height: math.unit(8, "feet"),
  10287. default: true
  10288. },
  10289. {
  10290. name: "Macro",
  10291. height: math.unit(250, "feet")
  10292. },
  10293. {
  10294. name: "Megamacro",
  10295. height: math.unit(1, "AU")
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10301. {
  10302. front: {
  10303. height: math.unit(5 + 5 / 12, "feet"),
  10304. weight: math.unit(140, "lb"),
  10305. name: "Front",
  10306. image: {
  10307. source: "./media/characters/allatia/front.svg",
  10308. extra: 1227 / 1180,
  10309. bottom: 0.027
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Normal",
  10316. height: math.unit(5 + 5 / 12, "feet")
  10317. },
  10318. {
  10319. name: "Macro",
  10320. height: math.unit(250, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Megamacro",
  10325. height: math.unit(8, "miles")
  10326. }
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10331. {
  10332. front: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(120, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/tene/front.svg",
  10338. extra: 814/750,
  10339. bottom: 36/850
  10340. }
  10341. },
  10342. stomping: {
  10343. height: math.unit(2.025, "meters"),
  10344. weight: math.unit(120, "lb"),
  10345. name: "Stomping",
  10346. image: {
  10347. source: "./media/characters/tene/stomping.svg",
  10348. extra: 885/821,
  10349. bottom: 15/900
  10350. }
  10351. },
  10352. sitting: {
  10353. height: math.unit(1, "meter"),
  10354. weight: math.unit(120, "lb"),
  10355. name: "Sitting",
  10356. image: {
  10357. source: "./media/characters/tene/sitting.svg",
  10358. extra: 396/366,
  10359. bottom: 79/475
  10360. }
  10361. },
  10362. smiling: {
  10363. height: math.unit(1.2, "feet"),
  10364. name: "Smiling",
  10365. image: {
  10366. source: "./media/characters/tene/smiling.svg",
  10367. extra: 1364/1071,
  10368. bottom: 0/1364
  10369. }
  10370. },
  10371. smug: {
  10372. height: math.unit(1.3, "feet"),
  10373. name: "Smug",
  10374. image: {
  10375. source: "./media/characters/tene/smug.svg",
  10376. extra: 1323/1082,
  10377. bottom: 0/1323
  10378. }
  10379. },
  10380. feral: {
  10381. height: math.unit(3.9, "feet"),
  10382. weight: math.unit(250, "lb"),
  10383. name: "Feral",
  10384. image: {
  10385. source: "./media/characters/tene/feral.svg",
  10386. extra: 717 / 458,
  10387. bottom: 0.179
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(6, "feet")
  10395. },
  10396. {
  10397. name: "Macro",
  10398. height: math.unit(300, "feet"),
  10399. default: true
  10400. },
  10401. {
  10402. name: "Megamacro",
  10403. height: math.unit(5, "miles")
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10409. {
  10410. side: {
  10411. height: math.unit(6, "feet"),
  10412. name: "Side",
  10413. image: {
  10414. source: "./media/characters/evander/side.svg",
  10415. extra: 877 / 477
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Normal",
  10422. height: math.unit(0.83, "meters"),
  10423. default: true
  10424. },
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10429. {
  10430. front: {
  10431. height: math.unit(12, "feet"),
  10432. weight: math.unit(1000, "lb"),
  10433. name: "Front",
  10434. image: {
  10435. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10436. extra: 1762 / 1611
  10437. }
  10438. },
  10439. back: {
  10440. height: math.unit(12, "feet"),
  10441. weight: math.unit(1000, "lb"),
  10442. name: "Back",
  10443. image: {
  10444. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10445. extra: 1762 / 1611
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Normal",
  10452. height: math.unit(12, "feet"),
  10453. default: true
  10454. },
  10455. {
  10456. name: "Kaiju",
  10457. height: math.unit(150, "feet")
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10463. {
  10464. front: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(150, "lb"),
  10467. name: "Front",
  10468. image: {
  10469. source: "./media/characters/zero-alurus/front.svg"
  10470. }
  10471. },
  10472. back: {
  10473. height: math.unit(6, "feet"),
  10474. weight: math.unit(150, "lb"),
  10475. name: "Back",
  10476. image: {
  10477. source: "./media/characters/zero-alurus/back.svg"
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Normal",
  10484. height: math.unit(5 + 10 / 12, "feet")
  10485. },
  10486. {
  10487. name: "Macro",
  10488. height: math.unit(60, "feet"),
  10489. default: true
  10490. },
  10491. {
  10492. name: "Macro+",
  10493. height: math.unit(450, "feet")
  10494. },
  10495. ]
  10496. ))
  10497. characterMakers.push(() => makeCharacter(
  10498. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10499. {
  10500. front: {
  10501. height: math.unit(6, "feet"),
  10502. weight: math.unit(200, "lb"),
  10503. name: "Front",
  10504. image: {
  10505. source: "./media/characters/mega-shi/front.svg",
  10506. extra: 1279 / 1250,
  10507. bottom: 0.02
  10508. }
  10509. },
  10510. back: {
  10511. height: math.unit(6, "feet"),
  10512. weight: math.unit(200, "lb"),
  10513. name: "Back",
  10514. image: {
  10515. source: "./media/characters/mega-shi/back.svg",
  10516. extra: 1279 / 1250,
  10517. bottom: 0.02
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Micro",
  10524. height: math.unit(16 + 6 / 12, "feet")
  10525. },
  10526. {
  10527. name: "Third Dimension",
  10528. height: math.unit(40, "meters")
  10529. },
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(660, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "Megamacro",
  10537. height: math.unit(10, "miles")
  10538. },
  10539. {
  10540. name: "Planetary Launch",
  10541. height: math.unit(500, "miles")
  10542. },
  10543. {
  10544. name: "Interstellar",
  10545. height: math.unit(1e9, "miles")
  10546. },
  10547. {
  10548. name: "Leaving the Universe",
  10549. height: math.unit(1, "gigaparsec")
  10550. },
  10551. {
  10552. name: "Travelling Universes",
  10553. height: math.unit(30e15, "parsecs")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(5 + 4/12, "feet"),
  10562. weight: math.unit(120, "lb"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/odyssey/front.svg",
  10566. extra: 1747/1571,
  10567. bottom: 47/1794
  10568. }
  10569. },
  10570. side: {
  10571. height: math.unit(5.1, "feet"),
  10572. weight: math.unit(120, "lb"),
  10573. name: "Side",
  10574. image: {
  10575. source: "./media/characters/odyssey/side.svg",
  10576. extra: 1847/1619,
  10577. bottom: 47/1894
  10578. }
  10579. },
  10580. lounging: {
  10581. height: math.unit(1.464, "feet"),
  10582. weight: math.unit(120, "lb"),
  10583. name: "Lounging",
  10584. image: {
  10585. source: "./media/characters/odyssey/lounging.svg",
  10586. extra: 1235/837,
  10587. bottom: 551/1786
  10588. }
  10589. },
  10590. },
  10591. [
  10592. {
  10593. name: "Normal",
  10594. height: math.unit(5 + 4 / 12, "feet")
  10595. },
  10596. {
  10597. name: "Macro",
  10598. height: math.unit(1, "km")
  10599. },
  10600. {
  10601. name: "Megamacro",
  10602. height: math.unit(3000, "km")
  10603. },
  10604. {
  10605. name: "Gigamacro",
  10606. height: math.unit(1, "AU"),
  10607. default: true
  10608. },
  10609. {
  10610. name: "Omniversal",
  10611. height: math.unit(100e14, "lightyears")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10617. {
  10618. front: {
  10619. height: math.unit(6, "feet"),
  10620. weight: math.unit(300, "lb"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/mekuto/front.svg",
  10624. extra: 921 / 832,
  10625. bottom: 0.03
  10626. }
  10627. },
  10628. hand: {
  10629. height: math.unit(6 / 10.24, "feet"),
  10630. name: "Hand",
  10631. image: {
  10632. source: "./media/characters/mekuto/hand.svg"
  10633. }
  10634. },
  10635. foot: {
  10636. height: math.unit(6 / 5.05, "feet"),
  10637. name: "Foot",
  10638. image: {
  10639. source: "./media/characters/mekuto/foot.svg"
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Minimicro",
  10646. height: math.unit(0.2, "inches")
  10647. },
  10648. {
  10649. name: "Micro",
  10650. height: math.unit(1.5, "inches")
  10651. },
  10652. {
  10653. name: "Normal",
  10654. height: math.unit(5 + 11 / 12, "feet"),
  10655. default: true
  10656. },
  10657. {
  10658. name: "Minimacro",
  10659. height: math.unit(17 + 9 / 12, "feet")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(177.5, "feet")
  10664. },
  10665. {
  10666. name: "Megamacro",
  10667. height: math.unit(152, "miles")
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(6.5, "inches"),
  10676. weight: math.unit(13, "oz"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/dafydd-tomos/front.svg",
  10680. extra: 2990 / 2603,
  10681. bottom: 0.03
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Micro",
  10688. height: math.unit(6.5, "inches"),
  10689. default: true
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10695. {
  10696. front: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(150, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/splinter/front.svg",
  10702. extra: 2990 / 2882,
  10703. bottom: 0.04
  10704. }
  10705. },
  10706. back: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(150, "lb"),
  10709. name: "Back",
  10710. image: {
  10711. source: "./media/characters/splinter/back.svg",
  10712. extra: 2990 / 2882,
  10713. bottom: 0.04
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Normal",
  10720. height: math.unit(6, "feet")
  10721. },
  10722. {
  10723. name: "Macro",
  10724. height: math.unit(230, "meters"),
  10725. default: true
  10726. },
  10727. ]
  10728. ))
  10729. characterMakers.push(() => makeCharacter(
  10730. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10731. {
  10732. front: {
  10733. height: math.unit(4 + 10 / 12, "feet"),
  10734. weight: math.unit(480, "lb"),
  10735. name: "Front",
  10736. image: {
  10737. source: "./media/characters/snow-gabumon/front.svg",
  10738. extra: 1140 / 963,
  10739. bottom: 0.058
  10740. }
  10741. },
  10742. back: {
  10743. height: math.unit(4 + 10 / 12, "feet"),
  10744. weight: math.unit(480, "lb"),
  10745. name: "Back",
  10746. image: {
  10747. source: "./media/characters/snow-gabumon/back.svg",
  10748. extra: 1115 / 962,
  10749. bottom: 0.041
  10750. }
  10751. },
  10752. frontUndresed: {
  10753. height: math.unit(4 + 10 / 12, "feet"),
  10754. weight: math.unit(480, "lb"),
  10755. name: "Front (Undressed)",
  10756. image: {
  10757. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10758. extra: 1061 / 960,
  10759. bottom: 0.045
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Micro",
  10766. height: math.unit(1, "inch")
  10767. },
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(4 + 10 / 12, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Macro",
  10775. height: math.unit(200, "feet")
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(120, "miles")
  10780. },
  10781. {
  10782. name: "Gigamacro",
  10783. height: math.unit(9800, "miles")
  10784. },
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10789. {
  10790. front: {
  10791. height: math.unit(1.7, "meters"),
  10792. weight: math.unit(140, "lb"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/moody/front.svg",
  10796. extra: 3226 / 3007,
  10797. bottom: 0.087
  10798. }
  10799. },
  10800. },
  10801. [
  10802. {
  10803. name: "Micro",
  10804. height: math.unit(1, "mm")
  10805. },
  10806. {
  10807. name: "Normal",
  10808. height: math.unit(1.7, "meters"),
  10809. default: true
  10810. },
  10811. {
  10812. name: "Macro",
  10813. height: math.unit(80, "meters")
  10814. },
  10815. {
  10816. name: "Macro+",
  10817. height: math.unit(500, "meters")
  10818. },
  10819. ]
  10820. ))
  10821. characterMakers.push(() => makeCharacter(
  10822. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10823. {
  10824. front: {
  10825. height: math.unit(6, "feet"),
  10826. weight: math.unit(150, "lb"),
  10827. name: "Front",
  10828. image: {
  10829. source: "./media/characters/zyas/front.svg",
  10830. extra: 1180 / 1120,
  10831. bottom: 0.045
  10832. }
  10833. },
  10834. },
  10835. [
  10836. {
  10837. name: "Normal",
  10838. height: math.unit(10, "feet"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(500, "feet")
  10844. },
  10845. {
  10846. name: "Megamacro",
  10847. height: math.unit(5, "miles")
  10848. },
  10849. {
  10850. name: "Teramacro",
  10851. height: math.unit(150000, "miles")
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10857. {
  10858. front: {
  10859. height: math.unit(6, "feet"),
  10860. weight: math.unit(150, "lb"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/cuon/front.svg",
  10864. extra: 1390 / 1320,
  10865. bottom: 0.008
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Micro",
  10872. height: math.unit(3, "inches")
  10873. },
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(18 + 9 / 12, "feet"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "Macro",
  10881. height: math.unit(360, "feet")
  10882. },
  10883. {
  10884. name: "Megamacro",
  10885. height: math.unit(360, "miles")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(2.4, "meters"),
  10894. weight: math.unit(70, "kg"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/nyanuxk/front.svg",
  10898. extra: 1172 / 1084,
  10899. bottom: 0.065
  10900. }
  10901. },
  10902. side: {
  10903. height: math.unit(2.4, "meters"),
  10904. weight: math.unit(70, "kg"),
  10905. name: "Side",
  10906. image: {
  10907. source: "./media/characters/nyanuxk/side.svg",
  10908. extra: 1190 / 1132,
  10909. bottom: 0.007
  10910. }
  10911. },
  10912. back: {
  10913. height: math.unit(2.4, "meters"),
  10914. weight: math.unit(70, "kg"),
  10915. name: "Back",
  10916. image: {
  10917. source: "./media/characters/nyanuxk/back.svg",
  10918. extra: 1200 / 1141,
  10919. bottom: 0.015
  10920. }
  10921. },
  10922. foot: {
  10923. height: math.unit(0.52, "meters"),
  10924. name: "Foot",
  10925. image: {
  10926. source: "./media/characters/nyanuxk/foot.svg"
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(2, "cm")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(2.4, "meters"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Smaller Macro",
  10942. height: math.unit(120, "meters")
  10943. },
  10944. {
  10945. name: "Bigger Macro",
  10946. height: math.unit(1.2, "km")
  10947. },
  10948. {
  10949. name: "Megamacro",
  10950. height: math.unit(15, "kilometers")
  10951. },
  10952. {
  10953. name: "Gigamacro",
  10954. height: math.unit(2000, "km")
  10955. },
  10956. {
  10957. name: "Teramacro",
  10958. height: math.unit(500000, "km")
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10964. {
  10965. side: {
  10966. height: math.unit(6, "feet"),
  10967. name: "Side",
  10968. image: {
  10969. source: "./media/characters/ailbhe/side.svg",
  10970. extra: 757 / 464,
  10971. bottom: 0.041
  10972. }
  10973. },
  10974. },
  10975. [
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(1.07, "meters"),
  10979. default: true
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10985. {
  10986. front: {
  10987. height: math.unit(6, "feet"),
  10988. weight: math.unit(120, "kg"),
  10989. name: "Front",
  10990. image: {
  10991. source: "./media/characters/zevulfius/front.svg",
  10992. extra: 965 / 903
  10993. }
  10994. },
  10995. side: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(120, "kg"),
  10998. name: "Side",
  10999. image: {
  11000. source: "./media/characters/zevulfius/side.svg",
  11001. extra: 939 / 900
  11002. }
  11003. },
  11004. back: {
  11005. height: math.unit(6, "feet"),
  11006. weight: math.unit(120, "kg"),
  11007. name: "Back",
  11008. image: {
  11009. source: "./media/characters/zevulfius/back.svg",
  11010. extra: 918 / 854,
  11011. bottom: 0.005
  11012. }
  11013. },
  11014. foot: {
  11015. height: math.unit(6 / 3.72, "feet"),
  11016. name: "Foot",
  11017. image: {
  11018. source: "./media/characters/zevulfius/foot.svg"
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Macro",
  11025. height: math.unit(750, "meters")
  11026. },
  11027. {
  11028. name: "Megamacro",
  11029. height: math.unit(20, "km"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Gigamacro",
  11034. height: math.unit(2000, "km")
  11035. },
  11036. {
  11037. name: "Teramacro",
  11038. height: math.unit(250000, "km")
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(100, "feet"),
  11047. weight: math.unit(350, "kg"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/rikes/front.svg",
  11051. extra: 1565 / 1483,
  11052. bottom: 0.017
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Macro",
  11059. height: math.unit(100, "feet"),
  11060. default: true
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(8, "feet"),
  11069. weight: math.unit(356, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/adam-silver-mane/front.svg",
  11073. extra: 1036/937,
  11074. bottom: 63/1099
  11075. }
  11076. },
  11077. side: {
  11078. height: math.unit(8, "feet"),
  11079. weight: math.unit(356, "lb"),
  11080. name: "Side",
  11081. image: {
  11082. source: "./media/characters/adam-silver-mane/side.svg",
  11083. extra: 997/901,
  11084. bottom: 59/1056
  11085. }
  11086. },
  11087. frontNsfw: {
  11088. height: math.unit(8, "feet"),
  11089. weight: math.unit(356, "lb"),
  11090. name: "Front (NSFW)",
  11091. image: {
  11092. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11093. extra: 1036/937,
  11094. bottom: 63/1099
  11095. }
  11096. },
  11097. sideNsfw: {
  11098. height: math.unit(8, "feet"),
  11099. weight: math.unit(356, "lb"),
  11100. name: "Side (NSFW)",
  11101. image: {
  11102. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11103. extra: 997/901,
  11104. bottom: 59/1056
  11105. }
  11106. },
  11107. dick: {
  11108. height: math.unit(2.1, "feet"),
  11109. name: "Dick",
  11110. image: {
  11111. source: "./media/characters/adam-silver-mane/dick.svg"
  11112. }
  11113. },
  11114. taur: {
  11115. height: math.unit(16, "feet"),
  11116. weight: math.unit(1500, "kg"),
  11117. name: "Taur",
  11118. image: {
  11119. source: "./media/characters/adam-silver-mane/taur.svg",
  11120. extra: 1713 / 1571,
  11121. bottom: 0.01
  11122. }
  11123. },
  11124. },
  11125. [
  11126. {
  11127. name: "Normal",
  11128. height: math.unit(8, "feet")
  11129. },
  11130. {
  11131. name: "Minimacro",
  11132. height: math.unit(80, "feet")
  11133. },
  11134. {
  11135. name: "MDA",
  11136. height: math.unit(80, "meters")
  11137. },
  11138. {
  11139. name: "Macro",
  11140. height: math.unit(800, "feet"),
  11141. default: true
  11142. },
  11143. {
  11144. name: "Megamacro",
  11145. height: math.unit(8000, "feet")
  11146. },
  11147. {
  11148. name: "Gigamacro",
  11149. height: math.unit(800, "miles")
  11150. },
  11151. {
  11152. name: "Teramacro",
  11153. height: math.unit(80000, "miles")
  11154. },
  11155. {
  11156. name: "Celestial",
  11157. height: math.unit(8e6, "miles")
  11158. },
  11159. {
  11160. name: "Star Dragon",
  11161. height: math.unit(800000, "parsecs")
  11162. },
  11163. {
  11164. name: "Godly",
  11165. height: math.unit(800, "teraparsecs")
  11166. },
  11167. ]
  11168. ))
  11169. characterMakers.push(() => makeCharacter(
  11170. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11171. {
  11172. front: {
  11173. height: math.unit(6, "feet"),
  11174. weight: math.unit(150, "lb"),
  11175. name: "Front",
  11176. image: {
  11177. source: "./media/characters/ky'owin/front.svg",
  11178. extra: 3888 / 3068,
  11179. bottom: 0.015
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(6 + 8 / 12, "feet")
  11187. },
  11188. {
  11189. name: "Large",
  11190. height: math.unit(68, "feet")
  11191. },
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(132, "feet")
  11195. },
  11196. {
  11197. name: "Macro+",
  11198. height: math.unit(340, "feet")
  11199. },
  11200. {
  11201. name: "Macro++",
  11202. height: math.unit(680, "feet"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Megamacro",
  11207. height: math.unit(1, "mile")
  11208. },
  11209. {
  11210. name: "Megamacro+",
  11211. height: math.unit(10, "miles")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(4, "feet"),
  11220. weight: math.unit(50, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/mal/front.svg",
  11224. extra: 785 / 724,
  11225. bottom: 0.07
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Micro",
  11232. height: math.unit(4, "inches")
  11233. },
  11234. {
  11235. name: "Normal",
  11236. height: math.unit(4, "feet"),
  11237. default: true
  11238. },
  11239. {
  11240. name: "Macro",
  11241. height: math.unit(200, "feet")
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11247. {
  11248. front: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Front",
  11252. image: {
  11253. source: "./media/characters/jordan-deware/front.svg",
  11254. extra: 1191 / 1012
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Nano",
  11261. height: math.unit(0.01, "mm")
  11262. },
  11263. {
  11264. name: "Minimicro",
  11265. height: math.unit(1, "mm")
  11266. },
  11267. {
  11268. name: "Micro",
  11269. height: math.unit(0.5, "inches")
  11270. },
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(4, "feet"),
  11274. default: true
  11275. },
  11276. {
  11277. name: "Minimacro",
  11278. height: math.unit(40, "meters")
  11279. },
  11280. {
  11281. name: "Small Macro",
  11282. height: math.unit(400, "meters")
  11283. },
  11284. {
  11285. name: "Macro",
  11286. height: math.unit(4, "miles")
  11287. },
  11288. {
  11289. name: "Megamacro",
  11290. height: math.unit(40, "miles")
  11291. },
  11292. {
  11293. name: "Megamacro+",
  11294. height: math.unit(400, "miles")
  11295. },
  11296. {
  11297. name: "Gigamacro",
  11298. height: math.unit(400000, "miles")
  11299. },
  11300. ]
  11301. ))
  11302. characterMakers.push(() => makeCharacter(
  11303. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11304. {
  11305. side: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(150, "lb"),
  11308. name: "Side",
  11309. image: {
  11310. source: "./media/characters/kimiko/side.svg",
  11311. extra: 600 / 358
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(15, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(220, "feet")
  11324. },
  11325. {
  11326. name: "Macro+",
  11327. height: math.unit(1450, "feet")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(11500, "feet")
  11332. },
  11333. {
  11334. name: "Gigamacro",
  11335. height: math.unit(9500, "miles")
  11336. },
  11337. {
  11338. name: "Teramacro",
  11339. height: math.unit(2208005005, "miles")
  11340. },
  11341. {
  11342. name: "Examacro",
  11343. height: math.unit(2750, "parsecs")
  11344. },
  11345. {
  11346. name: "Zettamacro",
  11347. height: math.unit(101500, "parsecs")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11353. {
  11354. front: {
  11355. height: math.unit(6, "feet"),
  11356. weight: math.unit(70, "kg"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/andrew-sleepy/front.svg"
  11360. }
  11361. },
  11362. side: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(70, "kg"),
  11365. name: "Side",
  11366. image: {
  11367. source: "./media/characters/andrew-sleepy/side.svg"
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Micro",
  11374. height: math.unit(1, "mm"),
  11375. default: true
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11381. {
  11382. front: {
  11383. height: math.unit(6, "feet"),
  11384. weight: math.unit(150, "lb"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/judio/front.svg",
  11388. extra: 1258 / 1110
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(5 + 6 / 12, "feet")
  11396. },
  11397. {
  11398. name: "Macro",
  11399. height: math.unit(1000, "feet"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Megamacro",
  11404. height: math.unit(10, "miles")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11410. {
  11411. frontDressed: {
  11412. height: math.unit(6, "feet"),
  11413. weight: math.unit(68, "kg"),
  11414. name: "Front (Dressed)",
  11415. image: {
  11416. source: "./media/characters/nomaxice/front-dressed.svg",
  11417. extra: 1137/824,
  11418. bottom: 74/1211
  11419. }
  11420. },
  11421. frontShorts: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(68, "kg"),
  11424. name: "Front (Shorts)",
  11425. image: {
  11426. source: "./media/characters/nomaxice/front-shorts.svg",
  11427. extra: 1137/824,
  11428. bottom: 74/1211
  11429. }
  11430. },
  11431. back: {
  11432. height: math.unit(6, "feet"),
  11433. weight: math.unit(68, "kg"),
  11434. name: "Back",
  11435. image: {
  11436. source: "./media/characters/nomaxice/back.svg",
  11437. extra: 822/786,
  11438. bottom: 39/861
  11439. }
  11440. },
  11441. hand: {
  11442. height: math.unit(0.565, "feet"),
  11443. name: "Hand",
  11444. image: {
  11445. source: "./media/characters/nomaxice/hand.svg"
  11446. }
  11447. },
  11448. foot: {
  11449. height: math.unit(1, "feet"),
  11450. name: "Foot",
  11451. image: {
  11452. source: "./media/characters/nomaxice/foot.svg"
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Micro",
  11459. height: math.unit(8, "cm")
  11460. },
  11461. {
  11462. name: "Norm",
  11463. height: math.unit(1.82, "m")
  11464. },
  11465. {
  11466. name: "Norm+",
  11467. height: math.unit(8.8, "feet"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Big",
  11472. height: math.unit(8, "meters")
  11473. },
  11474. {
  11475. name: "Macro",
  11476. height: math.unit(18, "meters")
  11477. },
  11478. {
  11479. name: "Macro+",
  11480. height: math.unit(88, "meters")
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(12, "feet"),
  11489. weight: math.unit(1.5, "tons"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/dydros/front.svg",
  11493. extra: 863 / 800,
  11494. bottom: 0.015
  11495. }
  11496. },
  11497. back: {
  11498. height: math.unit(12, "feet"),
  11499. weight: math.unit(1.5, "tons"),
  11500. name: "Back",
  11501. image: {
  11502. source: "./media/characters/dydros/back.svg",
  11503. extra: 900 / 843,
  11504. bottom: 0.005
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Normal",
  11511. height: math.unit(12, "feet"),
  11512. default: true
  11513. },
  11514. ]
  11515. ))
  11516. characterMakers.push(() => makeCharacter(
  11517. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11518. {
  11519. front: {
  11520. height: math.unit(6, "feet"),
  11521. weight: math.unit(100, "kg"),
  11522. name: "Front",
  11523. image: {
  11524. source: "./media/characters/riggi/front.svg",
  11525. extra: 5787 / 5303
  11526. }
  11527. },
  11528. hyper: {
  11529. height: math.unit(6 * 5 / 3, "feet"),
  11530. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11531. name: "Hyper",
  11532. image: {
  11533. source: "./media/characters/riggi/hyper.svg",
  11534. extra: 3595 / 3485
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Small Macro",
  11541. height: math.unit(50, "feet")
  11542. },
  11543. {
  11544. name: "Default",
  11545. height: math.unit(200, "feet"),
  11546. default: true
  11547. },
  11548. {
  11549. name: "Loom",
  11550. height: math.unit(10000, "feet")
  11551. },
  11552. {
  11553. name: "Cruising Altitude",
  11554. height: math.unit(30000, "feet")
  11555. },
  11556. {
  11557. name: "Megamacro",
  11558. height: math.unit(100, "miles")
  11559. },
  11560. {
  11561. name: "Continent Sized",
  11562. height: math.unit(2800, "miles")
  11563. },
  11564. {
  11565. name: "Earth Sized",
  11566. height: math.unit(8000, "miles")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(250, "lb"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/alexi/front.svg",
  11579. extra: 3483 / 3291,
  11580. bottom: 0.04
  11581. }
  11582. },
  11583. back: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(250, "lb"),
  11586. name: "Back",
  11587. image: {
  11588. source: "./media/characters/alexi/back.svg",
  11589. extra: 3533 / 3356,
  11590. bottom: 0.021
  11591. }
  11592. },
  11593. frontTransforming: {
  11594. height: math.unit(8.58, "feet"),
  11595. weight: math.unit(1300, "lb"),
  11596. name: "Transforming",
  11597. image: {
  11598. source: "./media/characters/alexi/front-transforming.svg",
  11599. extra: 437 / 409,
  11600. bottom: 19 / 458.66
  11601. }
  11602. },
  11603. frontTransformed: {
  11604. height: math.unit(12.5, "feet"),
  11605. weight: math.unit(4000, "lb"),
  11606. name: "Transformed",
  11607. image: {
  11608. source: "./media/characters/alexi/front-transformed.svg",
  11609. extra: 639 / 614,
  11610. bottom: 30.55 / 671
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(14, "feet"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Minimacro",
  11622. height: math.unit(30, "meters")
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(500, "meters")
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(9000, "km")
  11631. },
  11632. {
  11633. name: "Teramacro",
  11634. height: math.unit(384000, "km")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/kayroo/front.svg",
  11647. extra: 1153 / 1038,
  11648. bottom: 0.06
  11649. }
  11650. },
  11651. foot: {
  11652. height: math.unit(6, "feet"),
  11653. weight: math.unit(150, "lb"),
  11654. name: "Foot",
  11655. image: {
  11656. source: "./media/characters/kayroo/foot.svg"
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(8, "feet"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Minimacro",
  11668. height: math.unit(250, "feet")
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(2800, "feet")
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(5200, "feet")
  11677. },
  11678. {
  11679. name: "Gigamacro",
  11680. height: math.unit(27000, "feet")
  11681. },
  11682. {
  11683. name: "Omega",
  11684. height: math.unit(45000, "feet")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(18, "feet"),
  11693. weight: math.unit(5800, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/rhys/front.svg",
  11697. extra: 3386 / 3090,
  11698. bottom: 0.07
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(18, "feet"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Working Size",
  11710. height: math.unit(200, "feet")
  11711. },
  11712. {
  11713. name: "Demolition Size",
  11714. height: math.unit(2000, "feet")
  11715. },
  11716. {
  11717. name: "Maximum Licensed Size",
  11718. height: math.unit(5, "miles")
  11719. },
  11720. {
  11721. name: "Maximum Observed Size",
  11722. height: math.unit(10, "yottameters")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(6, "feet"),
  11731. weight: math.unit(250, "lb"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/toto/front.svg",
  11735. extra: 527 / 479,
  11736. bottom: 0.05
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Micro",
  11743. height: math.unit(3, "feet")
  11744. },
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(10, "feet")
  11748. },
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(150, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(1200, "feet")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "King", species: ["lion"], tags: ["anthro"] },
  11762. {
  11763. back: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Back",
  11767. image: {
  11768. source: "./media/characters/king/back.svg"
  11769. }
  11770. },
  11771. },
  11772. [
  11773. {
  11774. name: "Micro",
  11775. height: math.unit(2, "inches")
  11776. },
  11777. {
  11778. name: "Normal",
  11779. height: math.unit(8, "feet")
  11780. },
  11781. {
  11782. name: "Macro",
  11783. height: math.unit(200, "feet"),
  11784. default: true
  11785. },
  11786. {
  11787. name: "Megamacro",
  11788. height: math.unit(50, "miles")
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11794. {
  11795. front: {
  11796. height: math.unit(11, "feet"),
  11797. weight: math.unit(1400, "lb"),
  11798. name: "Front",
  11799. image: {
  11800. source: "./media/characters/cordite/front.svg",
  11801. extra: 1919/1827,
  11802. bottom: 40/1959
  11803. }
  11804. },
  11805. side: {
  11806. height: math.unit(11, "feet"),
  11807. weight: math.unit(1400, "lb"),
  11808. name: "Side",
  11809. image: {
  11810. source: "./media/characters/cordite/side.svg",
  11811. extra: 1908/1793,
  11812. bottom: 38/1946
  11813. }
  11814. },
  11815. back: {
  11816. height: math.unit(11, "feet"),
  11817. weight: math.unit(1400, "lb"),
  11818. name: "Back",
  11819. image: {
  11820. source: "./media/characters/cordite/back.svg",
  11821. extra: 1938/1837,
  11822. bottom: 10/1948
  11823. }
  11824. },
  11825. feral: {
  11826. height: math.unit(2, "feet"),
  11827. weight: math.unit(90, "lb"),
  11828. name: "Feral",
  11829. image: {
  11830. source: "./media/characters/cordite/feral.svg",
  11831. extra: 1260 / 755,
  11832. bottom: 0.05
  11833. }
  11834. },
  11835. },
  11836. [
  11837. {
  11838. name: "Normal",
  11839. height: math.unit(11, "feet"),
  11840. default: true
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(6, "feet"),
  11849. weight: math.unit(150, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/pianostrong/front.svg",
  11853. extra: 6577 / 6254,
  11854. bottom: 0.02
  11855. }
  11856. },
  11857. side: {
  11858. height: math.unit(6, "feet"),
  11859. weight: math.unit(150, "lb"),
  11860. name: "Side",
  11861. image: {
  11862. source: "./media/characters/pianostrong/side.svg",
  11863. extra: 6106 / 5730
  11864. }
  11865. },
  11866. back: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(150, "lb"),
  11869. name: "Back",
  11870. image: {
  11871. source: "./media/characters/pianostrong/back.svg",
  11872. extra: 6085 / 5733,
  11873. bottom: 0.01
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Macro",
  11880. height: math.unit(100, "feet")
  11881. },
  11882. {
  11883. name: "Macro+",
  11884. height: math.unit(300, "feet"),
  11885. default: true
  11886. },
  11887. {
  11888. name: "Macro++",
  11889. height: math.unit(1000, "feet")
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(6, "feet"),
  11898. weight: math.unit(150, "lb"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/kona/front.svg",
  11902. extra: 2960 / 2629,
  11903. bottom: 0.005
  11904. }
  11905. },
  11906. },
  11907. [
  11908. {
  11909. name: "Normal",
  11910. height: math.unit(11 + 8 / 12, "feet")
  11911. },
  11912. {
  11913. name: "Macro",
  11914. height: math.unit(850, "feet"),
  11915. default: true
  11916. },
  11917. {
  11918. name: "Macro+",
  11919. height: math.unit(1.5, "km"),
  11920. default: true
  11921. },
  11922. {
  11923. name: "Megamacro",
  11924. height: math.unit(80, "miles")
  11925. },
  11926. {
  11927. name: "Gigamacro",
  11928. height: math.unit(3500, "miles")
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11934. {
  11935. side: {
  11936. height: math.unit(1.9, "meters"),
  11937. weight: math.unit(326, "kg"),
  11938. name: "Side",
  11939. image: {
  11940. source: "./media/characters/levi/side.svg",
  11941. extra: 1704 / 1334,
  11942. bottom: 0.02
  11943. }
  11944. },
  11945. },
  11946. [
  11947. {
  11948. name: "Normal",
  11949. height: math.unit(1.9, "meters"),
  11950. default: true
  11951. },
  11952. {
  11953. name: "Macro",
  11954. height: math.unit(20, "meters")
  11955. },
  11956. {
  11957. name: "Macro+",
  11958. height: math.unit(200, "meters")
  11959. },
  11960. {
  11961. name: "Megamacro",
  11962. height: math.unit(2, "km")
  11963. },
  11964. {
  11965. name: "Megamacro+",
  11966. height: math.unit(20, "km")
  11967. },
  11968. {
  11969. name: "Gigamacro",
  11970. height: math.unit(2500, "km")
  11971. },
  11972. {
  11973. name: "Gigamacro+",
  11974. height: math.unit(120000, "km")
  11975. },
  11976. {
  11977. name: "Teramacro",
  11978. height: math.unit(7.77e6, "km")
  11979. },
  11980. ]
  11981. ))
  11982. characterMakers.push(() => makeCharacter(
  11983. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11984. {
  11985. front: {
  11986. height: math.unit(6 + 4/12, "feet"),
  11987. weight: math.unit(190, "lb"),
  11988. name: "Front",
  11989. image: {
  11990. source: "./media/characters/bmc/front.svg",
  11991. extra: 1626/1472,
  11992. bottom: 79/1705
  11993. }
  11994. },
  11995. back: {
  11996. height: math.unit(6 + 4/12, "feet"),
  11997. weight: math.unit(190, "lb"),
  11998. name: "Back",
  11999. image: {
  12000. source: "./media/characters/bmc/back.svg",
  12001. extra: 1640/1479,
  12002. bottom: 45/1685
  12003. }
  12004. },
  12005. frontArmor: {
  12006. height: math.unit(6 + 4/12, "feet"),
  12007. weight: math.unit(190, "lb"),
  12008. name: "Front-armor",
  12009. image: {
  12010. source: "./media/characters/bmc/front-armor.svg",
  12011. extra: 1538/1468,
  12012. bottom: 79/1617
  12013. }
  12014. },
  12015. },
  12016. [
  12017. {
  12018. name: "Human-sized",
  12019. height: math.unit(6 + 4 / 12, "feet")
  12020. },
  12021. {
  12022. name: "Interactive Size",
  12023. height: math.unit(25, "feet")
  12024. },
  12025. {
  12026. name: "Small",
  12027. height: math.unit(250, "feet")
  12028. },
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(1250, "feet"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Good Day",
  12036. height: math.unit(88, "miles")
  12037. },
  12038. {
  12039. name: "Largest Measured Size",
  12040. height: math.unit(105.960, "galaxies")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(20, "feet"),
  12049. weight: math.unit(2016, "kg"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/sven-the-kaiju/front.svg",
  12053. extra: 1277/1250,
  12054. bottom: 35/1312
  12055. }
  12056. },
  12057. mouth: {
  12058. height: math.unit(1.85, "feet"),
  12059. name: "Mouth",
  12060. image: {
  12061. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Fairy",
  12068. height: math.unit(6, "inches")
  12069. },
  12070. {
  12071. name: "Normal",
  12072. height: math.unit(20, "feet"),
  12073. default: true
  12074. },
  12075. {
  12076. name: "Rampage",
  12077. height: math.unit(200, "feet")
  12078. },
  12079. {
  12080. name: "Archfey Forest Guardian",
  12081. height: math.unit(1, "mile")
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(4, "meters"),
  12090. weight: math.unit(2, "tons"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/marik/front.svg",
  12094. extra: 1057 / 1003,
  12095. bottom: 0.08
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(4, "meters"),
  12103. default: true
  12104. },
  12105. {
  12106. name: "Macro",
  12107. height: math.unit(20, "meters")
  12108. },
  12109. {
  12110. name: "Megamacro",
  12111. height: math.unit(50, "km")
  12112. },
  12113. {
  12114. name: "Gigamacro",
  12115. height: math.unit(100, "km")
  12116. },
  12117. {
  12118. name: "Alpha Macro",
  12119. height: math.unit(7.88e7, "yottameters")
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(110, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/mel/front.svg",
  12132. extra: 736 / 617,
  12133. bottom: 0.017
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Pico",
  12140. height: math.unit(3, "pm")
  12141. },
  12142. {
  12143. name: "Nano",
  12144. height: math.unit(3, "nm")
  12145. },
  12146. {
  12147. name: "Micro",
  12148. height: math.unit(0.3, "mm"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Micro+",
  12153. height: math.unit(3, "mm")
  12154. },
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(5 + 10.5 / 12, "feet")
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12163. {
  12164. kaiju: {
  12165. height: math.unit(1.75, "meters"),
  12166. weight: math.unit(55, "kg"),
  12167. name: "Kaiju",
  12168. image: {
  12169. source: "./media/characters/lykonous/kaiju.svg",
  12170. extra: 1055 / 946,
  12171. bottom: 0.135
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(2.5, "meters"),
  12179. default: true
  12180. },
  12181. {
  12182. name: "Kaiju Dragon",
  12183. height: math.unit(60, "meters")
  12184. },
  12185. {
  12186. name: "Mega Kaiju",
  12187. height: math.unit(120, "km")
  12188. },
  12189. {
  12190. name: "Giga Kaiju",
  12191. height: math.unit(200, "megameters")
  12192. },
  12193. {
  12194. name: "Terra Kaiju",
  12195. height: math.unit(400, "gigameters")
  12196. },
  12197. {
  12198. name: "Kaiju Dragon God",
  12199. height: math.unit(13000, "exaparsecs")
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(6, "feet"),
  12208. weight: math.unit(150, "lb"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/blü/front.svg",
  12212. extra: 1883 / 1564,
  12213. bottom: 0.031
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Normal",
  12220. height: math.unit(13, "feet"),
  12221. default: true
  12222. },
  12223. {
  12224. name: "Big Boi",
  12225. height: math.unit(150, "meters")
  12226. },
  12227. {
  12228. name: "Mini Stomper",
  12229. height: math.unit(300, "meters")
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(1000, "meters")
  12234. },
  12235. {
  12236. name: "Megamacro",
  12237. height: math.unit(11000, "meters")
  12238. },
  12239. {
  12240. name: "Gigamacro",
  12241. height: math.unit(11000, "km")
  12242. },
  12243. {
  12244. name: "Teramacro",
  12245. height: math.unit(420000, "km")
  12246. },
  12247. {
  12248. name: "Examacro",
  12249. height: math.unit(120, "parsecs")
  12250. },
  12251. {
  12252. name: "God Tho",
  12253. height: math.unit(98000000000, "parsecs")
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12259. {
  12260. taurFront: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(200, "lb"),
  12263. name: "Taur (Front)",
  12264. image: {
  12265. source: "./media/characters/scales/taur-front.svg",
  12266. extra: 1,
  12267. bottom: 0.05
  12268. }
  12269. },
  12270. taurBack: {
  12271. height: math.unit(6, "feet"),
  12272. weight: math.unit(200, "lb"),
  12273. name: "Taur (Back)",
  12274. image: {
  12275. source: "./media/characters/scales/taur-back.svg",
  12276. extra: 1,
  12277. bottom: 0.08
  12278. }
  12279. },
  12280. anthro: {
  12281. height: math.unit(6 * 7 / 12, "feet"),
  12282. weight: math.unit(100, "lb"),
  12283. name: "Anthro",
  12284. image: {
  12285. source: "./media/characters/scales/anthro.svg",
  12286. extra: 1,
  12287. bottom: 0.06
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(12, "feet"),
  12295. default: true
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(6, "feet"),
  12304. weight: math.unit(150, "lb"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/koragos/front.svg",
  12308. extra: 841 / 794,
  12309. bottom: 0.035
  12310. }
  12311. },
  12312. back: {
  12313. height: math.unit(6, "feet"),
  12314. weight: math.unit(150, "lb"),
  12315. name: "Back",
  12316. image: {
  12317. source: "./media/characters/koragos/back.svg",
  12318. extra: 841 / 810,
  12319. bottom: 0.022
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(6 + 11 / 12, "feet"),
  12327. default: true
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(490, "feet")
  12332. },
  12333. {
  12334. name: "Megamacro",
  12335. height: math.unit(10, "miles")
  12336. },
  12337. {
  12338. name: "Gigamacro",
  12339. height: math.unit(50, "miles")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12345. {
  12346. front: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(250, "lb"),
  12349. name: "Front",
  12350. image: {
  12351. source: "./media/characters/xylrem/front.svg",
  12352. extra: 3323 / 3050,
  12353. bottom: 0.065
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Micro",
  12360. height: math.unit(4, "feet")
  12361. },
  12362. {
  12363. name: "Normal",
  12364. height: math.unit(16, "feet"),
  12365. default: true
  12366. },
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(2720, "feet")
  12370. },
  12371. {
  12372. name: "Megamacro",
  12373. height: math.unit(25000, "miles")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(8, "feet"),
  12382. weight: math.unit(250, "kg"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/ikideru/front.svg",
  12386. extra: 930 / 870,
  12387. bottom: 0.087
  12388. }
  12389. },
  12390. back: {
  12391. height: math.unit(8, "feet"),
  12392. weight: math.unit(250, "kg"),
  12393. name: "Back",
  12394. image: {
  12395. source: "./media/characters/ikideru/back.svg",
  12396. extra: 919 / 852,
  12397. bottom: 0.055
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Rare",
  12404. height: math.unit(8, "feet"),
  12405. default: true
  12406. },
  12407. {
  12408. name: "Playful Loom",
  12409. height: math.unit(80, "feet")
  12410. },
  12411. {
  12412. name: "City Leaner",
  12413. height: math.unit(230, "feet")
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(2500, "feet")
  12418. },
  12419. {
  12420. name: "Gigamacro",
  12421. height: math.unit(26400, "feet")
  12422. },
  12423. {
  12424. name: "Tectonic Shifter",
  12425. height: math.unit(1.7, "megameters")
  12426. },
  12427. {
  12428. name: "Planet Carer",
  12429. height: math.unit(21, "megameters")
  12430. },
  12431. {
  12432. name: "God",
  12433. height: math.unit(11157.22, "parsecs")
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12439. {
  12440. front: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(120, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/neo/front.svg"
  12446. }
  12447. },
  12448. },
  12449. [
  12450. {
  12451. name: "Micro",
  12452. height: math.unit(2, "inches"),
  12453. default: true
  12454. },
  12455. {
  12456. name: "Human Size",
  12457. height: math.unit(5 + 8 / 12, "feet")
  12458. },
  12459. ]
  12460. ))
  12461. characterMakers.push(() => makeCharacter(
  12462. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12463. {
  12464. front: {
  12465. height: math.unit(13 + 10 / 12, "feet"),
  12466. weight: math.unit(5320, "lb"),
  12467. name: "Front",
  12468. image: {
  12469. source: "./media/characters/chauncey-chantz/front.svg",
  12470. extra: 1587 / 1435,
  12471. bottom: 0.02
  12472. }
  12473. },
  12474. },
  12475. [
  12476. {
  12477. name: "Normal",
  12478. height: math.unit(13 + 10 / 12, "feet"),
  12479. default: true
  12480. },
  12481. {
  12482. name: "Macro",
  12483. height: math.unit(45, "feet")
  12484. },
  12485. {
  12486. name: "Megamacro",
  12487. height: math.unit(250, "miles")
  12488. },
  12489. {
  12490. name: "Planetary",
  12491. height: math.unit(10000, "miles")
  12492. },
  12493. {
  12494. name: "Galactic",
  12495. height: math.unit(40000, "parsecs")
  12496. },
  12497. {
  12498. name: "Universal",
  12499. height: math.unit(1, "yottameter")
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12505. {
  12506. front: {
  12507. height: math.unit(6, "feet"),
  12508. weight: math.unit(150, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/epifox/front.svg",
  12512. extra: 1,
  12513. bottom: 0.075
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Micro",
  12520. height: math.unit(6, "inches")
  12521. },
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(12, "feet"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Macro",
  12529. height: math.unit(3810, "feet")
  12530. },
  12531. {
  12532. name: "Megamacro",
  12533. height: math.unit(500, "miles")
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(1.8796, "m"),
  12542. weight: math.unit(230, "lb"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/colin-t/front.svg",
  12546. extra: 1272 / 1193,
  12547. bottom: 0.07
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Micro",
  12554. height: math.unit(0.571, "meters")
  12555. },
  12556. {
  12557. name: "Normal",
  12558. height: math.unit(1.8796, "meters"),
  12559. default: true
  12560. },
  12561. {
  12562. name: "Tall",
  12563. height: math.unit(4, "meters")
  12564. },
  12565. {
  12566. name: "Macro",
  12567. height: math.unit(67.241, "meters")
  12568. },
  12569. {
  12570. name: "Megamacro",
  12571. height: math.unit(371.856, "meters")
  12572. },
  12573. {
  12574. name: "Planetary",
  12575. height: math.unit(12631.5689, "km")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(1.85, "meters"),
  12584. weight: math.unit(80, "kg"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/matvei/front.svg",
  12588. extra: 614 / 594,
  12589. bottom: 0.01
  12590. }
  12591. },
  12592. },
  12593. [
  12594. {
  12595. name: "Normal",
  12596. height: math.unit(1.85, "meters"),
  12597. default: true
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12603. {
  12604. front: {
  12605. height: math.unit(5 + 9 / 12, "feet"),
  12606. weight: math.unit(70, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/quincy/front.svg",
  12610. extra: 3041 / 2751
  12611. }
  12612. },
  12613. back: {
  12614. height: math.unit(5 + 9 / 12, "feet"),
  12615. weight: math.unit(70, "lb"),
  12616. name: "Back",
  12617. image: {
  12618. source: "./media/characters/quincy/back.svg",
  12619. extra: 3041 / 2751
  12620. }
  12621. },
  12622. flying: {
  12623. height: math.unit(5 + 4 / 12, "feet"),
  12624. weight: math.unit(70, "lb"),
  12625. name: "Flying",
  12626. image: {
  12627. source: "./media/characters/quincy/flying.svg",
  12628. extra: 1044 / 930
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Micro",
  12635. height: math.unit(3, "cm")
  12636. },
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(5 + 9 / 12, "feet")
  12640. },
  12641. {
  12642. name: "Macro",
  12643. height: math.unit(200, "meters"),
  12644. default: true
  12645. },
  12646. {
  12647. name: "Megamacro",
  12648. height: math.unit(1000, "meters")
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(3 + 11/12, "feet"),
  12657. weight: math.unit(50, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/vanrel/front.svg",
  12661. extra: 1104/949,
  12662. bottom: 52/1156
  12663. }
  12664. },
  12665. back: {
  12666. height: math.unit(3 + 11/12, "feet"),
  12667. weight: math.unit(50, "lb"),
  12668. name: "Back",
  12669. image: {
  12670. source: "./media/characters/vanrel/back.svg",
  12671. extra: 1119/976,
  12672. bottom: 37/1156
  12673. }
  12674. },
  12675. tome: {
  12676. height: math.unit(1.35, "feet"),
  12677. weight: math.unit(10, "lb"),
  12678. name: "Vanrel's Tome",
  12679. rename: true,
  12680. image: {
  12681. source: "./media/characters/vanrel/tome.svg"
  12682. }
  12683. },
  12684. beans: {
  12685. height: math.unit(0.89, "feet"),
  12686. name: "Beans",
  12687. image: {
  12688. source: "./media/characters/vanrel/beans.svg"
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Normal",
  12695. height: math.unit(3 + 11/12, "feet"),
  12696. default: true
  12697. },
  12698. ]
  12699. ))
  12700. characterMakers.push(() => makeCharacter(
  12701. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12702. {
  12703. front: {
  12704. height: math.unit(7 + 5 / 12, "feet"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/kuiper-vanrel/front.svg",
  12708. extra: 1219/1169,
  12709. bottom: 69/1288
  12710. }
  12711. },
  12712. back: {
  12713. height: math.unit(7 + 5 / 12, "feet"),
  12714. name: "Back",
  12715. image: {
  12716. source: "./media/characters/kuiper-vanrel/back.svg",
  12717. extra: 1236/1193,
  12718. bottom: 27/1263
  12719. }
  12720. },
  12721. foot: {
  12722. height: math.unit(0.55, "meters"),
  12723. name: "Foot",
  12724. image: {
  12725. source: "./media/characters/kuiper-vanrel/foot.svg",
  12726. }
  12727. },
  12728. battle: {
  12729. height: math.unit(6.824, "feet"),
  12730. name: "Battle",
  12731. image: {
  12732. source: "./media/characters/kuiper-vanrel/battle.svg",
  12733. extra: 1466 / 1327,
  12734. bottom: 29 / 1492.5
  12735. }
  12736. },
  12737. meerkui: {
  12738. height: math.unit(18, "inches"),
  12739. name: "Meerkui",
  12740. image: {
  12741. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12742. extra: 1354/1289,
  12743. bottom: 69/1423
  12744. }
  12745. },
  12746. },
  12747. [
  12748. {
  12749. name: "Normal",
  12750. height: math.unit(7 + 5 / 12, "feet"),
  12751. default: true
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(8 + 5 / 12, "feet"),
  12760. name: "Front",
  12761. image: {
  12762. source: "./media/characters/keset-vanrel/front.svg",
  12763. extra: 1231/1148,
  12764. bottom: 82/1313
  12765. }
  12766. },
  12767. back: {
  12768. height: math.unit(8 + 5 / 12, "feet"),
  12769. name: "Back",
  12770. image: {
  12771. source: "./media/characters/keset-vanrel/back.svg",
  12772. extra: 1240/1174,
  12773. bottom: 33/1273
  12774. }
  12775. },
  12776. hand: {
  12777. height: math.unit(0.6, "meters"),
  12778. name: "Hand",
  12779. image: {
  12780. source: "./media/characters/keset-vanrel/hand.svg"
  12781. }
  12782. },
  12783. foot: {
  12784. height: math.unit(0.94978, "meters"),
  12785. name: "Foot",
  12786. image: {
  12787. source: "./media/characters/keset-vanrel/foot.svg"
  12788. }
  12789. },
  12790. battle: {
  12791. height: math.unit(7.408, "feet"),
  12792. name: "Battle",
  12793. image: {
  12794. source: "./media/characters/keset-vanrel/battle.svg",
  12795. extra: 1890 / 1386,
  12796. bottom: 73.28 / 1970
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(8 + 5 / 12, "feet"),
  12804. default: true
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(6, "feet"),
  12813. weight: math.unit(150, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/neos/front.svg",
  12817. extra: 1696 / 992,
  12818. bottom: 0.14
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(54, "cm"),
  12826. default: true
  12827. },
  12828. {
  12829. name: "Macro",
  12830. height: math.unit(100, "m")
  12831. },
  12832. {
  12833. name: "Megamacro",
  12834. height: math.unit(10, "km")
  12835. },
  12836. {
  12837. name: "Megamacro+",
  12838. height: math.unit(100, "km")
  12839. },
  12840. {
  12841. name: "Gigamacro",
  12842. height: math.unit(100, "Mm")
  12843. },
  12844. {
  12845. name: "Teramacro",
  12846. height: math.unit(100, "Gm")
  12847. },
  12848. {
  12849. name: "Examacro",
  12850. height: math.unit(100, "Em")
  12851. },
  12852. {
  12853. name: "Godly",
  12854. height: math.unit(10000, "Ym")
  12855. },
  12856. {
  12857. name: "Beyond Godly",
  12858. height: math.unit(25, "multiverses")
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12864. {
  12865. feminine: {
  12866. height: math.unit(5, "feet"),
  12867. weight: math.unit(100, "lb"),
  12868. name: "Feminine",
  12869. image: {
  12870. source: "./media/characters/sammy-mouse/feminine.svg",
  12871. extra: 2526 / 2425,
  12872. bottom: 0.123
  12873. }
  12874. },
  12875. masculine: {
  12876. height: math.unit(5, "feet"),
  12877. weight: math.unit(100, "lb"),
  12878. name: "Masculine",
  12879. image: {
  12880. source: "./media/characters/sammy-mouse/masculine.svg",
  12881. extra: 2526 / 2425,
  12882. bottom: 0.123
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Micro",
  12889. height: math.unit(5, "inches")
  12890. },
  12891. {
  12892. name: "Normal",
  12893. height: math.unit(5, "feet"),
  12894. default: true
  12895. },
  12896. {
  12897. name: "Macro",
  12898. height: math.unit(60, "feet")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(4, "feet"),
  12907. weight: math.unit(50, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/kole/front.svg",
  12911. extra: 1423 / 1303,
  12912. bottom: 0.025
  12913. }
  12914. },
  12915. back: {
  12916. height: math.unit(4, "feet"),
  12917. weight: math.unit(50, "lb"),
  12918. name: "Back",
  12919. image: {
  12920. source: "./media/characters/kole/back.svg",
  12921. extra: 1426 / 1280,
  12922. bottom: 0.02
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Normal",
  12929. height: math.unit(4, "feet"),
  12930. default: true
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(2.5, "feet"),
  12939. weight: math.unit(32, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/rufran/front.svg",
  12943. extra: 1313/885,
  12944. bottom: 94/1407
  12945. }
  12946. },
  12947. side: {
  12948. height: math.unit(2.5, "feet"),
  12949. weight: math.unit(32, "lb"),
  12950. name: "Side",
  12951. image: {
  12952. source: "./media/characters/rufran/side.svg",
  12953. extra: 1109/852,
  12954. bottom: 118/1227
  12955. }
  12956. },
  12957. back: {
  12958. height: math.unit(2.5, "feet"),
  12959. weight: math.unit(32, "lb"),
  12960. name: "Back",
  12961. image: {
  12962. source: "./media/characters/rufran/back.svg",
  12963. extra: 1280/878,
  12964. bottom: 131/1411
  12965. }
  12966. },
  12967. mouth: {
  12968. height: math.unit(1.13, "feet"),
  12969. name: "Mouth",
  12970. image: {
  12971. source: "./media/characters/rufran/mouth.svg"
  12972. }
  12973. },
  12974. foot: {
  12975. height: math.unit(1.33, "feet"),
  12976. name: "Foot",
  12977. image: {
  12978. source: "./media/characters/rufran/foot.svg"
  12979. }
  12980. },
  12981. koboldFront: {
  12982. height: math.unit(2 + 6 / 12, "feet"),
  12983. weight: math.unit(20, "lb"),
  12984. name: "Front (Kobold)",
  12985. image: {
  12986. source: "./media/characters/rufran/kobold-front.svg",
  12987. extra: 2041 / 1839,
  12988. bottom: 0.055
  12989. }
  12990. },
  12991. koboldBack: {
  12992. height: math.unit(2 + 6 / 12, "feet"),
  12993. weight: math.unit(20, "lb"),
  12994. name: "Back (Kobold)",
  12995. image: {
  12996. source: "./media/characters/rufran/kobold-back.svg",
  12997. extra: 2054 / 1839,
  12998. bottom: 0.01
  12999. }
  13000. },
  13001. koboldHand: {
  13002. height: math.unit(0.2166, "meters"),
  13003. name: "Hand (Kobold)",
  13004. image: {
  13005. source: "./media/characters/rufran/kobold-hand.svg"
  13006. }
  13007. },
  13008. koboldFoot: {
  13009. height: math.unit(0.185, "meters"),
  13010. name: "Foot (Kobold)",
  13011. image: {
  13012. source: "./media/characters/rufran/kobold-foot.svg"
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Micro",
  13019. height: math.unit(1, "inch")
  13020. },
  13021. {
  13022. name: "Normal",
  13023. height: math.unit(2 + 6 / 12, "feet"),
  13024. default: true
  13025. },
  13026. {
  13027. name: "Big",
  13028. height: math.unit(60, "feet")
  13029. },
  13030. {
  13031. name: "Macro",
  13032. height: math.unit(325, "feet")
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(0.3, "meters"),
  13041. weight: math.unit(3.5, "kg"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/chip/front.svg",
  13045. extra: 748 / 674
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Micro",
  13052. height: math.unit(1, "inch"),
  13053. default: true
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13059. {
  13060. side: {
  13061. height: math.unit(2.3, "meters"),
  13062. weight: math.unit(3500, "lb"),
  13063. name: "Side",
  13064. image: {
  13065. source: "./media/characters/torvid/side.svg",
  13066. extra: 1972 / 722,
  13067. bottom: 0.035
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Normal",
  13074. height: math.unit(2.3, "meters"),
  13075. default: true
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(2, "meters"),
  13084. weight: math.unit(150.5, "kg"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/susan/front.svg",
  13088. extra: 693 / 635,
  13089. bottom: 0.05
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Megamacro",
  13096. height: math.unit(505, "miles"),
  13097. default: true
  13098. },
  13099. ]
  13100. ))
  13101. characterMakers.push(() => makeCharacter(
  13102. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13103. {
  13104. front: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(150, "lb"),
  13107. name: "Front",
  13108. image: {
  13109. source: "./media/characters/raindrops/front.svg",
  13110. extra: 2655 / 2461,
  13111. bottom: 49 / 2705
  13112. }
  13113. },
  13114. back: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(150, "lb"),
  13117. name: "Back",
  13118. image: {
  13119. source: "./media/characters/raindrops/back.svg",
  13120. extra: 2574 / 2400,
  13121. bottom: 65 / 2634
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Micro",
  13128. height: math.unit(6, "inches")
  13129. },
  13130. {
  13131. name: "Normal",
  13132. height: math.unit(6 + 2 / 12, "feet")
  13133. },
  13134. {
  13135. name: "Macro",
  13136. height: math.unit(131, "feet"),
  13137. default: true
  13138. },
  13139. {
  13140. name: "Megamacro",
  13141. height: math.unit(15, "miles")
  13142. },
  13143. {
  13144. name: "Gigamacro",
  13145. height: math.unit(4000, "miles")
  13146. },
  13147. {
  13148. name: "Teramacro",
  13149. height: math.unit(315000, "miles")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(2.794, "meters"),
  13158. weight: math.unit(325, "kg"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/tezwa/front.svg",
  13162. extra: 2083 / 1906,
  13163. bottom: 0.031
  13164. }
  13165. },
  13166. foot: {
  13167. height: math.unit(0.687, "meters"),
  13168. name: "Foot",
  13169. image: {
  13170. source: "./media/characters/tezwa/foot.svg"
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(9 + 2 / 12, "feet"),
  13178. default: true
  13179. },
  13180. ]
  13181. ))
  13182. characterMakers.push(() => makeCharacter(
  13183. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13184. {
  13185. front: {
  13186. height: math.unit(58, "feet"),
  13187. weight: math.unit(89000, "lb"),
  13188. name: "Front",
  13189. image: {
  13190. source: "./media/characters/typhus/front.svg",
  13191. extra: 816 / 800,
  13192. bottom: 0.065
  13193. }
  13194. },
  13195. },
  13196. [
  13197. {
  13198. name: "Macro",
  13199. height: math.unit(58, "feet"),
  13200. default: true
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13206. {
  13207. front: {
  13208. height: math.unit(12, "feet"),
  13209. weight: math.unit(6, "tonnes"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/lyra-von-wulf/front.svg",
  13213. extra: 1,
  13214. bottom: 0.10
  13215. }
  13216. },
  13217. frontMecha: {
  13218. height: math.unit(12, "feet"),
  13219. weight: math.unit(12, "tonnes"),
  13220. name: "Front (Mecha)",
  13221. image: {
  13222. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13223. extra: 1,
  13224. bottom: 0.042
  13225. }
  13226. },
  13227. maw: {
  13228. height: math.unit(2.2, "feet"),
  13229. name: "Maw",
  13230. image: {
  13231. source: "./media/characters/lyra-von-wulf/maw.svg"
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(12, "feet"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Classic",
  13243. height: math.unit(50, "feet")
  13244. },
  13245. {
  13246. name: "Macro",
  13247. height: math.unit(500, "feet")
  13248. },
  13249. {
  13250. name: "Megamacro",
  13251. height: math.unit(1, "mile")
  13252. },
  13253. {
  13254. name: "Gigamacro",
  13255. height: math.unit(400, "miles")
  13256. },
  13257. {
  13258. name: "Teramacro",
  13259. height: math.unit(22000, "miles")
  13260. },
  13261. {
  13262. name: "Solarmacro",
  13263. height: math.unit(8600000, "miles")
  13264. },
  13265. {
  13266. name: "Galactic",
  13267. height: math.unit(1057000, "lightyears")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(6 + 10 / 12, "feet"),
  13276. weight: math.unit(150, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/dixon/front.svg",
  13280. extra: 3361 / 3209,
  13281. bottom: 0.01
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(6 + 10 / 12, "feet"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Big",
  13293. height: math.unit(12, "meters")
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(500, "meters")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(2, "km")
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13307. {
  13308. front: {
  13309. height: math.unit(185, "cm"),
  13310. weight: math.unit(68, "kg"),
  13311. name: "Front",
  13312. image: {
  13313. source: "./media/characters/kauko/front.svg",
  13314. extra: 1455 / 1421,
  13315. bottom: 0.03
  13316. }
  13317. },
  13318. back: {
  13319. height: math.unit(185, "cm"),
  13320. weight: math.unit(68, "kg"),
  13321. name: "Back",
  13322. image: {
  13323. source: "./media/characters/kauko/back.svg",
  13324. extra: 1455 / 1421,
  13325. bottom: 0.004
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(185, "cm"),
  13333. default: true
  13334. },
  13335. ]
  13336. ))
  13337. characterMakers.push(() => makeCharacter(
  13338. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13339. {
  13340. front: {
  13341. height: math.unit(6, "feet"),
  13342. weight: math.unit(150, "kg"),
  13343. name: "Front",
  13344. image: {
  13345. source: "./media/characters/varg/front.svg",
  13346. extra: 1108 / 1018,
  13347. bottom: 0.0375
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(5, "meters")
  13355. },
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(200, "meters")
  13359. },
  13360. {
  13361. name: "Megamacro",
  13362. height: math.unit(20, "kilometers")
  13363. },
  13364. {
  13365. name: "True Size",
  13366. height: math.unit(211, "km"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Gigamacro",
  13371. height: math.unit(1000, "km")
  13372. },
  13373. {
  13374. name: "Gigamacro+",
  13375. height: math.unit(8000, "km")
  13376. },
  13377. {
  13378. name: "Teramacro",
  13379. height: math.unit(1000000, "km")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(7 + 7 / 12, "feet"),
  13388. weight: math.unit(267, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/dayza/front.svg",
  13392. extra: 1262 / 1200,
  13393. bottom: 0.035
  13394. }
  13395. },
  13396. side: {
  13397. height: math.unit(7 + 7 / 12, "feet"),
  13398. weight: math.unit(267, "lb"),
  13399. name: "Side",
  13400. image: {
  13401. source: "./media/characters/dayza/side.svg",
  13402. extra: 1295 / 1245,
  13403. bottom: 0.05
  13404. }
  13405. },
  13406. back: {
  13407. height: math.unit(7 + 7 / 12, "feet"),
  13408. weight: math.unit(267, "lb"),
  13409. name: "Back",
  13410. image: {
  13411. source: "./media/characters/dayza/back.svg",
  13412. extra: 1241 / 1170
  13413. }
  13414. },
  13415. },
  13416. [
  13417. {
  13418. name: "Normal",
  13419. height: math.unit(7 + 7 / 12, "feet"),
  13420. default: true
  13421. },
  13422. {
  13423. name: "Macro",
  13424. height: math.unit(155, "feet")
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13430. {
  13431. front: {
  13432. height: math.unit(6 + 5 / 12, "feet"),
  13433. weight: math.unit(160, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/xanthos/front.svg",
  13437. extra: 1,
  13438. bottom: 0.04
  13439. }
  13440. },
  13441. back: {
  13442. height: math.unit(6 + 5 / 12, "feet"),
  13443. weight: math.unit(160, "lb"),
  13444. name: "Back",
  13445. image: {
  13446. source: "./media/characters/xanthos/back.svg",
  13447. extra: 1,
  13448. bottom: 0.03
  13449. }
  13450. },
  13451. hand: {
  13452. height: math.unit(0.928, "feet"),
  13453. name: "Hand",
  13454. image: {
  13455. source: "./media/characters/xanthos/hand.svg"
  13456. }
  13457. },
  13458. foot: {
  13459. height: math.unit(1.286, "feet"),
  13460. name: "Foot",
  13461. image: {
  13462. source: "./media/characters/xanthos/foot.svg"
  13463. }
  13464. },
  13465. },
  13466. [
  13467. {
  13468. name: "Normal",
  13469. height: math.unit(6 + 5 / 12, "feet"),
  13470. default: true
  13471. },
  13472. {
  13473. name: "Normal+",
  13474. height: math.unit(6, "meters")
  13475. },
  13476. {
  13477. name: "Macro",
  13478. height: math.unit(40, "feet")
  13479. },
  13480. {
  13481. name: "Macro+",
  13482. height: math.unit(200, "meters")
  13483. },
  13484. {
  13485. name: "Megamacro",
  13486. height: math.unit(20, "km")
  13487. },
  13488. {
  13489. name: "Megamacro+",
  13490. height: math.unit(100, "km")
  13491. },
  13492. {
  13493. name: "Gigamacro",
  13494. height: math.unit(200, "megameters")
  13495. },
  13496. {
  13497. name: "Gigamacro+",
  13498. height: math.unit(1.5, "gigameters")
  13499. },
  13500. ]
  13501. ))
  13502. characterMakers.push(() => makeCharacter(
  13503. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13504. {
  13505. front: {
  13506. height: math.unit(6 + 3 / 12, "feet"),
  13507. weight: math.unit(215, "lb"),
  13508. name: "Front",
  13509. image: {
  13510. source: "./media/characters/grynn/front.svg",
  13511. extra: 4627 / 4209,
  13512. bottom: 0.047
  13513. }
  13514. },
  13515. },
  13516. [
  13517. {
  13518. name: "Micro",
  13519. height: math.unit(6, "inches")
  13520. },
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(6 + 3 / 12, "feet"),
  13524. default: true
  13525. },
  13526. {
  13527. name: "Big",
  13528. height: math.unit(104, "feet")
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(944, "feet")
  13533. },
  13534. {
  13535. name: "Macro+",
  13536. height: math.unit(9480, "feet")
  13537. },
  13538. {
  13539. name: "Megamacro",
  13540. height: math.unit(78752, "feet")
  13541. },
  13542. {
  13543. name: "Megamacro+",
  13544. height: math.unit(630128, "feet")
  13545. },
  13546. {
  13547. name: "Megamacro++",
  13548. height: math.unit(3150695, "feet")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(7 + 5 / 12, "feet"),
  13557. weight: math.unit(450, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/mocha-aura/front.svg",
  13561. extra: 1907 / 1817,
  13562. bottom: 0.04
  13563. }
  13564. },
  13565. back: {
  13566. height: math.unit(7 + 5 / 12, "feet"),
  13567. weight: math.unit(450, "lb"),
  13568. name: "Back",
  13569. image: {
  13570. source: "./media/characters/mocha-aura/back.svg",
  13571. extra: 1900 / 1825,
  13572. bottom: 0.045
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Nano",
  13579. height: math.unit(1, "nm")
  13580. },
  13581. {
  13582. name: "Megamicro",
  13583. height: math.unit(1, "mm")
  13584. },
  13585. {
  13586. name: "Micro",
  13587. height: math.unit(3, "inches")
  13588. },
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(7 + 5 / 12, "feet"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Macro",
  13596. height: math.unit(30, "feet")
  13597. },
  13598. {
  13599. name: "Megamacro",
  13600. height: math.unit(3500, "feet")
  13601. },
  13602. {
  13603. name: "Teramacro",
  13604. height: math.unit(500000, "miles")
  13605. },
  13606. {
  13607. name: "Petamacro",
  13608. height: math.unit(50000000000000000, "parsecs")
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/ilisha-devya/front.svg",
  13621. extra: 1053/1049,
  13622. bottom: 270/1323
  13623. }
  13624. },
  13625. back: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(150, "lb"),
  13628. name: "Back",
  13629. image: {
  13630. source: "./media/characters/ilisha-devya/back.svg",
  13631. extra: 1131/1128,
  13632. bottom: 39/1170
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Macro",
  13639. height: math.unit(500, "feet"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Megamacro",
  13644. height: math.unit(10, "miles")
  13645. },
  13646. {
  13647. name: "Gigamacro",
  13648. height: math.unit(100000, "miles")
  13649. },
  13650. {
  13651. name: "Examacro",
  13652. height: math.unit(1e9, "lightyears")
  13653. },
  13654. {
  13655. name: "Omniversal",
  13656. height: math.unit(1e33, "lightyears")
  13657. },
  13658. {
  13659. name: "Beyond Infinite",
  13660. height: math.unit(1e100, "lightyears")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13666. {
  13667. Side: {
  13668. height: math.unit(6, "feet"),
  13669. weight: math.unit(150, "lb"),
  13670. name: "Side",
  13671. image: {
  13672. source: "./media/characters/mira/side.svg",
  13673. extra: 900 / 799,
  13674. bottom: 0.02
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Human Size",
  13681. height: math.unit(6, "feet")
  13682. },
  13683. {
  13684. name: "Macro",
  13685. height: math.unit(100, "feet"),
  13686. default: true
  13687. },
  13688. {
  13689. name: "Megamacro",
  13690. height: math.unit(10, "miles")
  13691. },
  13692. {
  13693. name: "Gigamacro",
  13694. height: math.unit(25000, "miles")
  13695. },
  13696. {
  13697. name: "Teramacro",
  13698. height: math.unit(300, "AU")
  13699. },
  13700. {
  13701. name: "Full Size",
  13702. height: math.unit(4.5e10, "lightyears")
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(150, "lb"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/holly/front.svg",
  13715. extra: 639 / 606
  13716. }
  13717. },
  13718. back: {
  13719. height: math.unit(6, "feet"),
  13720. weight: math.unit(150, "lb"),
  13721. name: "Back",
  13722. image: {
  13723. source: "./media/characters/holly/back.svg",
  13724. extra: 623 / 598
  13725. }
  13726. },
  13727. frontWorking: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(150, "lb"),
  13730. name: "Front (Working)",
  13731. image: {
  13732. source: "./media/characters/holly/front-working.svg",
  13733. extra: 607 / 577,
  13734. bottom: 0.048
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Normal",
  13741. height: math.unit(12 + 3 / 12, "feet"),
  13742. default: true
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Front",
  13753. image: {
  13754. source: "./media/characters/porter/front.svg",
  13755. extra: 1,
  13756. bottom: 0.01
  13757. }
  13758. },
  13759. frontRobes: {
  13760. height: math.unit(6, "feet"),
  13761. weight: math.unit(150, "lb"),
  13762. name: "Front (Robes)",
  13763. image: {
  13764. source: "./media/characters/porter/front-robes.svg",
  13765. extra: 1.01,
  13766. bottom: 0.01
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(11 + 9 / 12, "feet"),
  13774. default: true
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13780. {
  13781. legendary: {
  13782. height: math.unit(6, "feet"),
  13783. weight: math.unit(150, "lb"),
  13784. name: "Legendary",
  13785. image: {
  13786. source: "./media/characters/lucy/legendary.svg",
  13787. extra: 1355 / 1100,
  13788. bottom: 0.045
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Legendary",
  13795. height: math.unit(86882 * 2, "miles"),
  13796. default: true
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(6, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/drusilla/front.svg",
  13809. extra: 678 / 635,
  13810. bottom: 0.03
  13811. }
  13812. },
  13813. back: {
  13814. height: math.unit(6, "feet"),
  13815. weight: math.unit(150, "lb"),
  13816. name: "Back",
  13817. image: {
  13818. source: "./media/characters/drusilla/back.svg",
  13819. extra: 678 / 635,
  13820. bottom: 0.005
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Macro",
  13827. height: math.unit(100, "feet")
  13828. },
  13829. {
  13830. name: "Canon Height",
  13831. height: math.unit(2000, "feet"),
  13832. default: true
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(180, "lb"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/renard-thatch/front.svg",
  13845. extra: 2411 / 2275,
  13846. bottom: 0.01
  13847. }
  13848. },
  13849. frontPosing: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(180, "lb"),
  13852. name: "Front (Posing)",
  13853. image: {
  13854. source: "./media/characters/renard-thatch/front-posing.svg",
  13855. extra: 2381 / 2261,
  13856. bottom: 0.01
  13857. }
  13858. },
  13859. back: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(180, "lb"),
  13862. name: "Back",
  13863. image: {
  13864. source: "./media/characters/renard-thatch/back.svg",
  13865. extra: 2428 / 2288
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Micro",
  13872. height: math.unit(3, "inches")
  13873. },
  13874. {
  13875. name: "Default",
  13876. height: math.unit(6, "feet"),
  13877. default: true
  13878. },
  13879. {
  13880. name: "Macro",
  13881. height: math.unit(75, "feet")
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(1450, "feet"),
  13890. weight: math.unit(1.21e6, "tons"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/sekvra/front.svg",
  13894. extra: 1193/1190,
  13895. bottom: 78/1271
  13896. }
  13897. },
  13898. side: {
  13899. height: math.unit(1450, "feet"),
  13900. weight: math.unit(1.21e6, "tons"),
  13901. name: "Side",
  13902. image: {
  13903. source: "./media/characters/sekvra/side.svg",
  13904. extra: 1193/1190,
  13905. bottom: 52/1245
  13906. }
  13907. },
  13908. back: {
  13909. height: math.unit(1450, "feet"),
  13910. weight: math.unit(1.21e6, "tons"),
  13911. name: "Back",
  13912. image: {
  13913. source: "./media/characters/sekvra/back.svg",
  13914. extra: 1219/1216,
  13915. bottom: 21/1240
  13916. }
  13917. },
  13918. frontClothed: {
  13919. height: math.unit(1450, "feet"),
  13920. weight: math.unit(1.21e6, "tons"),
  13921. name: "Front (Clothed)",
  13922. image: {
  13923. source: "./media/characters/sekvra/front-clothed.svg",
  13924. extra: 1192/1189,
  13925. bottom: 79/1271
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Macro",
  13932. height: math.unit(1450, "feet"),
  13933. default: true
  13934. },
  13935. {
  13936. name: "Megamacro",
  13937. height: math.unit(15000, "feet")
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(6, "feet"),
  13946. weight: math.unit(150, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/carmine/front.svg",
  13950. extra: 1,
  13951. bottom: 0.035
  13952. }
  13953. },
  13954. frontArmor: {
  13955. height: math.unit(6, "feet"),
  13956. weight: math.unit(150, "lb"),
  13957. name: "Front (Armor)",
  13958. image: {
  13959. source: "./media/characters/carmine/front-armor.svg",
  13960. extra: 1,
  13961. bottom: 0.035
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Large",
  13968. height: math.unit(1, "mile")
  13969. },
  13970. {
  13971. name: "Huge",
  13972. height: math.unit(40, "miles"),
  13973. default: true
  13974. },
  13975. {
  13976. name: "Colossal",
  13977. height: math.unit(2500, "miles")
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13983. {
  13984. front: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(150, "lb"),
  13987. name: "Front",
  13988. image: {
  13989. source: "./media/characters/elyssia/front.svg",
  13990. extra: 2201 / 2035,
  13991. bottom: 0.05
  13992. }
  13993. },
  13994. frontClothed: {
  13995. height: math.unit(6, "feet"),
  13996. weight: math.unit(150, "lb"),
  13997. name: "Front (Clothed)",
  13998. image: {
  13999. source: "./media/characters/elyssia/front-clothed.svg",
  14000. extra: 2201 / 2035,
  14001. bottom: 0.05
  14002. }
  14003. },
  14004. back: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Back",
  14008. image: {
  14009. source: "./media/characters/elyssia/back.svg",
  14010. extra: 2201 / 2035,
  14011. bottom: 0.013
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Smaller",
  14018. height: math.unit(150, "feet")
  14019. },
  14020. {
  14021. name: "Standard",
  14022. height: math.unit(1400, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Distracted",
  14027. height: math.unit(15000, "feet")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(7 + 4/12, "feet"),
  14036. weight: math.unit(690, "lb"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/geno-maxwell/front.svg",
  14040. extra: 984/856,
  14041. bottom: 87/1071
  14042. }
  14043. },
  14044. back: {
  14045. height: math.unit(7 + 4/12, "feet"),
  14046. weight: math.unit(690, "lb"),
  14047. name: "Back",
  14048. image: {
  14049. source: "./media/characters/geno-maxwell/back.svg",
  14050. extra: 981/854,
  14051. bottom: 57/1038
  14052. }
  14053. },
  14054. frontCostume: {
  14055. height: math.unit(7 + 4/12, "feet"),
  14056. weight: math.unit(690, "lb"),
  14057. name: "Front (Costume)",
  14058. image: {
  14059. source: "./media/characters/geno-maxwell/front-costume.svg",
  14060. extra: 984/856,
  14061. bottom: 87/1071
  14062. }
  14063. },
  14064. backcostume: {
  14065. height: math.unit(7 + 4/12, "feet"),
  14066. weight: math.unit(690, "lb"),
  14067. name: "Back (Costume)",
  14068. image: {
  14069. source: "./media/characters/geno-maxwell/back-costume.svg",
  14070. extra: 981/854,
  14071. bottom: 57/1038
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Micro",
  14078. height: math.unit(3, "inches")
  14079. },
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(7 + 4 / 12, "feet"),
  14083. default: true
  14084. },
  14085. {
  14086. name: "Macro",
  14087. height: math.unit(220, "feet")
  14088. },
  14089. {
  14090. name: "Megamacro",
  14091. height: math.unit(11, "miles")
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(7 + 4/12, "feet"),
  14100. weight: math.unit(750, "lb"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/regena-maxwell/front.svg",
  14104. extra: 984/856,
  14105. bottom: 87/1071
  14106. }
  14107. },
  14108. back: {
  14109. height: math.unit(7 + 4/12, "feet"),
  14110. weight: math.unit(750, "lb"),
  14111. name: "Back",
  14112. image: {
  14113. source: "./media/characters/regena-maxwell/back.svg",
  14114. extra: 981/854,
  14115. bottom: 57/1038
  14116. }
  14117. },
  14118. frontCostume: {
  14119. height: math.unit(7 + 4/12, "feet"),
  14120. weight: math.unit(750, "lb"),
  14121. name: "Front (Costume)",
  14122. image: {
  14123. source: "./media/characters/regena-maxwell/front-costume.svg",
  14124. extra: 984/856,
  14125. bottom: 87/1071
  14126. }
  14127. },
  14128. backcostume: {
  14129. height: math.unit(7 + 4/12, "feet"),
  14130. weight: math.unit(750, "lb"),
  14131. name: "Back (Costume)",
  14132. image: {
  14133. source: "./media/characters/regena-maxwell/back-costume.svg",
  14134. extra: 981/854,
  14135. bottom: 57/1038
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(7 + 4 / 12, "feet"),
  14143. default: true
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(220, "feet")
  14148. },
  14149. {
  14150. name: "Megamacro",
  14151. height: math.unit(11, "miles")
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(6, "feet"),
  14160. weight: math.unit(150, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14164. extra: 860 / 690,
  14165. bottom: 0.03
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Normal",
  14172. height: math.unit(1.7, "meters"),
  14173. default: true
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(6, "feet"),
  14182. weight: math.unit(150, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/quilly/front.svg",
  14186. extra: 890 / 776
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Gigamacro",
  14193. height: math.unit(404090, "miles"),
  14194. default: true
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(7 + 8 / 12, "feet"),
  14203. weight: math.unit(350, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/tempest/front.svg",
  14207. extra: 1175 / 1086,
  14208. bottom: 0.02
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Normal",
  14215. height: math.unit(7 + 8 / 12, "feet"),
  14216. default: true
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14222. {
  14223. side: {
  14224. height: math.unit(4 + 5 / 12, "feet"),
  14225. weight: math.unit(80, "lb"),
  14226. name: "Side",
  14227. image: {
  14228. source: "./media/characters/rodger/side.svg",
  14229. extra: 1235 / 1118
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Micro",
  14236. height: math.unit(1, "inch")
  14237. },
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(4 + 5 / 12, "feet"),
  14241. default: true
  14242. },
  14243. {
  14244. name: "Macro",
  14245. height: math.unit(120, "feet")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(150, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/danyel/front.svg",
  14258. extra: 1185 / 1123,
  14259. bottom: 0.05
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Shrunken",
  14266. height: math.unit(0.5, "mm")
  14267. },
  14268. {
  14269. name: "Micro",
  14270. height: math.unit(1, "mm"),
  14271. default: true
  14272. },
  14273. {
  14274. name: "Upsized",
  14275. height: math.unit(5 + 5 / 12, "feet")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(5 + 6 / 12, "feet"),
  14284. weight: math.unit(200, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/vivian-bijoux/front.svg",
  14288. extra: 1217/1209,
  14289. bottom: 76/1293
  14290. }
  14291. },
  14292. back: {
  14293. height: math.unit(5 + 6 / 12, "feet"),
  14294. weight: math.unit(200, "lb"),
  14295. name: "Back",
  14296. image: {
  14297. source: "./media/characters/vivian-bijoux/back.svg",
  14298. extra: 1214/1208,
  14299. bottom: 51/1265
  14300. }
  14301. },
  14302. dressed: {
  14303. height: math.unit(5 + 6 / 12, "feet"),
  14304. weight: math.unit(200, "lb"),
  14305. name: "Dressed",
  14306. image: {
  14307. source: "./media/characters/vivian-bijoux/dressed.svg",
  14308. extra: 1217/1209,
  14309. bottom: 76/1293
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(5 + 6 / 12, "feet"),
  14317. default: true
  14318. },
  14319. {
  14320. name: "Bad Dream",
  14321. height: math.unit(500, "feet")
  14322. },
  14323. {
  14324. name: "Nightmare",
  14325. height: math.unit(500, "miles")
  14326. },
  14327. ]
  14328. ))
  14329. characterMakers.push(() => makeCharacter(
  14330. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14331. {
  14332. front: {
  14333. height: math.unit(6 + 1 / 12, "feet"),
  14334. weight: math.unit(260, "lb"),
  14335. name: "Front",
  14336. image: {
  14337. source: "./media/characters/zeta/front.svg",
  14338. extra: 1968 / 1889,
  14339. bottom: 0.06
  14340. }
  14341. },
  14342. back: {
  14343. height: math.unit(6 + 1 / 12, "feet"),
  14344. weight: math.unit(260, "lb"),
  14345. name: "Back",
  14346. image: {
  14347. source: "./media/characters/zeta/back.svg",
  14348. extra: 1944 / 1858,
  14349. bottom: 0.03
  14350. }
  14351. },
  14352. hand: {
  14353. height: math.unit(1.112, "feet"),
  14354. name: "Hand",
  14355. image: {
  14356. source: "./media/characters/zeta/hand.svg"
  14357. }
  14358. },
  14359. foot: {
  14360. height: math.unit(1.48, "feet"),
  14361. name: "Foot",
  14362. image: {
  14363. source: "./media/characters/zeta/foot.svg"
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Micro",
  14370. height: math.unit(6, "inches")
  14371. },
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(6 + 1 / 12, "feet"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Macro",
  14379. height: math.unit(20, "feet")
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14385. {
  14386. front: {
  14387. height: math.unit(6, "feet"),
  14388. weight: math.unit(150, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/jamie-larsen/front.svg",
  14392. extra: 962 / 933,
  14393. bottom: 0.02
  14394. }
  14395. },
  14396. back: {
  14397. height: math.unit(6, "feet"),
  14398. weight: math.unit(150, "lb"),
  14399. name: "Back",
  14400. image: {
  14401. source: "./media/characters/jamie-larsen/back.svg",
  14402. extra: 997 / 946
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Macro",
  14409. height: math.unit(28 + 7 / 12, "feet"),
  14410. default: true
  14411. },
  14412. {
  14413. name: "Macro+",
  14414. height: math.unit(180, "feet")
  14415. },
  14416. {
  14417. name: "Megamacro",
  14418. height: math.unit(10, "miles")
  14419. },
  14420. {
  14421. name: "Gigamacro",
  14422. height: math.unit(200000, "miles")
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(120, "lb"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/vance/front.svg",
  14435. extra: 1980 / 1890,
  14436. bottom: 0.09
  14437. }
  14438. },
  14439. back: {
  14440. height: math.unit(6, "feet"),
  14441. weight: math.unit(120, "lb"),
  14442. name: "Back",
  14443. image: {
  14444. source: "./media/characters/vance/back.svg",
  14445. extra: 2081 / 1994,
  14446. bottom: 0.014
  14447. }
  14448. },
  14449. hand: {
  14450. height: math.unit(0.88, "feet"),
  14451. name: "Hand",
  14452. image: {
  14453. source: "./media/characters/vance/hand.svg"
  14454. }
  14455. },
  14456. foot: {
  14457. height: math.unit(0.64, "feet"),
  14458. name: "Foot",
  14459. image: {
  14460. source: "./media/characters/vance/foot.svg"
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Small",
  14467. height: math.unit(90, "feet"),
  14468. default: true
  14469. },
  14470. {
  14471. name: "Macro",
  14472. height: math.unit(100, "meters")
  14473. },
  14474. {
  14475. name: "Megamacro",
  14476. height: math.unit(15, "miles")
  14477. },
  14478. ]
  14479. ))
  14480. characterMakers.push(() => makeCharacter(
  14481. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14482. {
  14483. front: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(180, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/xochitl/front.svg",
  14489. extra: 2297 / 2261,
  14490. bottom: 0.065
  14491. }
  14492. },
  14493. back: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(180, "lb"),
  14496. name: "Back",
  14497. image: {
  14498. source: "./media/characters/xochitl/back.svg",
  14499. extra: 2386 / 2354,
  14500. bottom: 0.01
  14501. }
  14502. },
  14503. foot: {
  14504. height: math.unit(6 / 5 * 1.15, "feet"),
  14505. weight: math.unit(150, "lb"),
  14506. name: "Foot",
  14507. image: {
  14508. source: "./media/characters/xochitl/foot.svg"
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Macro",
  14515. height: math.unit(80, "feet")
  14516. },
  14517. {
  14518. name: "Macro+",
  14519. height: math.unit(400, "feet"),
  14520. default: true
  14521. },
  14522. {
  14523. name: "Gigamacro",
  14524. height: math.unit(80000, "miles")
  14525. },
  14526. {
  14527. name: "Gigamacro+",
  14528. height: math.unit(400000, "miles")
  14529. },
  14530. {
  14531. name: "Teramacro",
  14532. height: math.unit(300, "AU")
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(6, "feet"),
  14541. weight: math.unit(150, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/vincent/front.svg",
  14545. extra: 1130 / 1080,
  14546. bottom: 0.055
  14547. }
  14548. },
  14549. beak: {
  14550. height: math.unit(6 * 0.1, "feet"),
  14551. name: "Beak",
  14552. image: {
  14553. source: "./media/characters/vincent/beak.svg"
  14554. }
  14555. },
  14556. hand: {
  14557. height: math.unit(6 * 0.85, "feet"),
  14558. weight: math.unit(150, "lb"),
  14559. name: "Hand",
  14560. image: {
  14561. source: "./media/characters/vincent/hand.svg"
  14562. }
  14563. },
  14564. foot: {
  14565. height: math.unit(6 * 0.19, "feet"),
  14566. weight: math.unit(150, "lb"),
  14567. name: "Foot",
  14568. image: {
  14569. source: "./media/characters/vincent/foot.svg"
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Base",
  14576. height: math.unit(6 + 5 / 12, "feet"),
  14577. default: true
  14578. },
  14579. {
  14580. name: "Macro",
  14581. height: math.unit(300, "feet")
  14582. },
  14583. {
  14584. name: "Megamacro",
  14585. height: math.unit(2, "miles")
  14586. },
  14587. {
  14588. name: "Gigamacro",
  14589. height: math.unit(1000, "miles")
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(2, "meters"),
  14598. weight: math.unit(500, "kg"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/coatl/front.svg",
  14602. extra: 3948 / 3500,
  14603. bottom: 0.082
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(4, "meters")
  14611. },
  14612. {
  14613. name: "Macro",
  14614. height: math.unit(100, "meters"),
  14615. default: true
  14616. },
  14617. {
  14618. name: "Macro+",
  14619. height: math.unit(300, "meters")
  14620. },
  14621. {
  14622. name: "Megamacro",
  14623. height: math.unit(3, "gigameters")
  14624. },
  14625. {
  14626. name: "Megamacro+",
  14627. height: math.unit(300, "terameters")
  14628. },
  14629. {
  14630. name: "Megamacro++",
  14631. height: math.unit(3, "lightyears")
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(6, "feet"),
  14640. weight: math.unit(50, "kg"),
  14641. name: "front",
  14642. image: {
  14643. source: "./media/characters/shiroryu/front.svg",
  14644. extra: 1990 / 1935
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Mortal Mingling",
  14651. height: math.unit(3, "meters")
  14652. },
  14653. {
  14654. name: "Kaiju-ish",
  14655. height: math.unit(250, "meters")
  14656. },
  14657. {
  14658. name: "Somewhat Godly",
  14659. height: math.unit(400, "km"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Planetary",
  14664. height: math.unit(300, "megameters")
  14665. },
  14666. {
  14667. name: "Galaxy-dwarfing",
  14668. height: math.unit(450, "kiloparsecs")
  14669. },
  14670. {
  14671. name: "Universe Eater",
  14672. height: math.unit(150, "gigaparsecs")
  14673. },
  14674. {
  14675. name: "Almost Immeasurable",
  14676. height: math.unit(1.3e266, "yottaparsecs")
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(6, "feet"),
  14685. weight: math.unit(150, "lb"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/umeko/front.svg",
  14689. extra: 1,
  14690. bottom: 0.019
  14691. }
  14692. },
  14693. frontArmored: {
  14694. height: math.unit(6, "feet"),
  14695. weight: math.unit(150, "lb"),
  14696. name: "Front (Armored)",
  14697. image: {
  14698. source: "./media/characters/umeko/front-armored.svg",
  14699. extra: 1,
  14700. bottom: 0.021
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(220, "feet"),
  14708. default: true
  14709. },
  14710. {
  14711. name: "Guardian Dragon",
  14712. height: math.unit(50, "miles")
  14713. },
  14714. {
  14715. name: "Cosmic",
  14716. height: math.unit(800000, "miles")
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(6, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/cassidy/front.svg",
  14729. extra: 810/808,
  14730. bottom: 41/851
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Canon Height",
  14737. height: math.unit(120, "feet"),
  14738. default: true
  14739. },
  14740. {
  14741. name: "Macro+",
  14742. height: math.unit(400, "feet")
  14743. },
  14744. {
  14745. name: "Macro++",
  14746. height: math.unit(4000, "feet")
  14747. },
  14748. {
  14749. name: "Megamacro",
  14750. height: math.unit(3, "miles")
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Isaac", species: ["moose"], 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/isaac/front.svg",
  14763. extra: 896 / 815,
  14764. bottom: 0.11
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Human Size",
  14771. height: math.unit(8, "feet"),
  14772. default: true
  14773. },
  14774. {
  14775. name: "Macro",
  14776. height: math.unit(400, "feet")
  14777. },
  14778. {
  14779. name: "Megamacro",
  14780. height: math.unit(50, "miles")
  14781. },
  14782. {
  14783. name: "Canon Height",
  14784. height: math.unit(200, "AU")
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(72, "kg"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/sleekit/front.svg",
  14797. extra: 4693 / 4487,
  14798. bottom: 0.012
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Minimum Height",
  14805. height: math.unit(10, "meters")
  14806. },
  14807. {
  14808. name: "Smaller",
  14809. height: math.unit(25, "meters")
  14810. },
  14811. {
  14812. name: "Larger",
  14813. height: math.unit(38, "meters"),
  14814. default: true
  14815. },
  14816. {
  14817. name: "Maximum height",
  14818. height: math.unit(100, "meters")
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(6, "feet"),
  14827. weight: math.unit(150, "lb"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/nillia/front.svg",
  14831. extra: 2195 / 2037,
  14832. bottom: 0.005
  14833. }
  14834. },
  14835. back: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Back",
  14839. image: {
  14840. source: "./media/characters/nillia/back.svg",
  14841. extra: 2195 / 2037,
  14842. bottom: 0.005
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Canon Height",
  14849. height: math.unit(489, "feet"),
  14850. default: true
  14851. }
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(6, "feet"),
  14859. weight: math.unit(150, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/mesmyriza/front.svg",
  14863. extra: 2067 / 1784,
  14864. bottom: 0.035
  14865. }
  14866. },
  14867. foot: {
  14868. height: math.unit(6 / (250 / 35), "feet"),
  14869. name: "Foot",
  14870. image: {
  14871. source: "./media/characters/mesmyriza/foot.svg"
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Macro",
  14878. height: math.unit(457, "meters"),
  14879. default: true
  14880. },
  14881. {
  14882. name: "Megamacro",
  14883. height: math.unit(8, "megameters")
  14884. },
  14885. ]
  14886. ))
  14887. characterMakers.push(() => makeCharacter(
  14888. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14889. {
  14890. front: {
  14891. height: math.unit(6, "feet"),
  14892. weight: math.unit(250, "lb"),
  14893. name: "Front",
  14894. image: {
  14895. source: "./media/characters/saudade/front.svg",
  14896. extra: 1172 / 1139,
  14897. bottom: 0.035
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Micro",
  14904. height: math.unit(3, "inches")
  14905. },
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(6, "feet"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Macro",
  14913. height: math.unit(50, "feet")
  14914. },
  14915. {
  14916. name: "Megamacro",
  14917. height: math.unit(2800, "feet")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(5 + 4 / 12, "feet"),
  14926. weight: math.unit(100, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/keireer/front.svg",
  14930. extra: 716 / 666,
  14931. bottom: 0.05
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(5 + 4 / 12, "feet"),
  14939. default: true
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14945. {
  14946. front: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(90, "kg"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/mirja/front.svg",
  14952. extra: 1789 / 1683,
  14953. bottom: 0.05
  14954. }
  14955. },
  14956. frontDressed: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(90, "lb"),
  14959. name: "Front (Dressed)",
  14960. image: {
  14961. source: "./media/characters/mirja/front-dressed.svg",
  14962. extra: 1789 / 1683,
  14963. bottom: 0.05
  14964. }
  14965. },
  14966. back: {
  14967. height: math.unit(6, "feet"),
  14968. weight: math.unit(90, "lb"),
  14969. name: "Back",
  14970. image: {
  14971. source: "./media/characters/mirja/back.svg",
  14972. extra: 953 / 917,
  14973. bottom: 0.017
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "\"Incognito\"",
  14980. height: math.unit(3, "meters")
  14981. },
  14982. {
  14983. name: "Strolling Size",
  14984. height: math.unit(15, "km")
  14985. },
  14986. {
  14987. name: "Larger Strolling Size",
  14988. height: math.unit(400, "km")
  14989. },
  14990. {
  14991. name: "Preferred Size",
  14992. height: math.unit(5000, "km")
  14993. },
  14994. {
  14995. name: "True Size",
  14996. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14997. default: true
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15003. {
  15004. front: {
  15005. height: math.unit(15, "feet"),
  15006. weight: math.unit(880, "kg"),
  15007. name: "Front",
  15008. image: {
  15009. source: "./media/characters/nightraver/front.svg",
  15010. extra: 2444 / 2160,
  15011. bottom: 0.027
  15012. }
  15013. },
  15014. back: {
  15015. height: math.unit(15, "feet"),
  15016. weight: math.unit(880, "kg"),
  15017. name: "Back",
  15018. image: {
  15019. source: "./media/characters/nightraver/back.svg",
  15020. extra: 2309 / 2180,
  15021. bottom: 0.005
  15022. }
  15023. },
  15024. sole: {
  15025. height: math.unit(2.878, "feet"),
  15026. name: "Sole",
  15027. image: {
  15028. source: "./media/characters/nightraver/sole.svg"
  15029. }
  15030. },
  15031. foot: {
  15032. height: math.unit(2.285, "feet"),
  15033. name: "Foot",
  15034. image: {
  15035. source: "./media/characters/nightraver/foot.svg"
  15036. }
  15037. },
  15038. maw: {
  15039. height: math.unit(2.67, "feet"),
  15040. name: "Maw",
  15041. image: {
  15042. source: "./media/characters/nightraver/maw.svg"
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Micro",
  15049. height: math.unit(1, "cm")
  15050. },
  15051. {
  15052. name: "Normal",
  15053. height: math.unit(15, "feet"),
  15054. default: true
  15055. },
  15056. {
  15057. name: "Macro",
  15058. height: math.unit(300, "feet")
  15059. },
  15060. {
  15061. name: "Megamacro",
  15062. height: math.unit(300, "miles")
  15063. },
  15064. {
  15065. name: "Gigamacro",
  15066. height: math.unit(10000, "miles")
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15072. {
  15073. side: {
  15074. height: math.unit(2, "inches"),
  15075. weight: math.unit(5, "grams"),
  15076. name: "Side",
  15077. image: {
  15078. source: "./media/characters/arc/side.svg"
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Micro",
  15085. height: math.unit(2, "inches"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(1.1938, "meters"),
  15095. weight: math.unit(54, "kg"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/nebula-shahar/front.svg",
  15099. extra: 1642 / 1436,
  15100. bottom: 0.06
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Megamicro",
  15107. height: math.unit(0.3, "mm")
  15108. },
  15109. {
  15110. name: "Micro",
  15111. height: math.unit(3, "cm")
  15112. },
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(138, "cm"),
  15116. default: true
  15117. },
  15118. {
  15119. name: "Macro",
  15120. height: math.unit(30, "m")
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(5.24, "feet"),
  15129. weight: math.unit(150, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/shayla/front.svg",
  15133. extra: 1512 / 1414,
  15134. bottom: 0.01
  15135. }
  15136. },
  15137. back: {
  15138. height: math.unit(5.24, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Back",
  15141. image: {
  15142. source: "./media/characters/shayla/back.svg",
  15143. extra: 1512 / 1414
  15144. }
  15145. },
  15146. hand: {
  15147. height: math.unit(0.7781496062992126, "feet"),
  15148. name: "Hand",
  15149. image: {
  15150. source: "./media/characters/shayla/hand.svg"
  15151. }
  15152. },
  15153. foot: {
  15154. height: math.unit(1.4206036745406823, "feet"),
  15155. name: "Foot",
  15156. image: {
  15157. source: "./media/characters/shayla/foot.svg"
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Micro",
  15164. height: math.unit(0.32, "feet")
  15165. },
  15166. {
  15167. name: "Normal",
  15168. height: math.unit(5.24, "feet"),
  15169. default: true
  15170. },
  15171. {
  15172. name: "Macro",
  15173. height: math.unit(492.12, "feet")
  15174. },
  15175. {
  15176. name: "Megamacro",
  15177. height: math.unit(186.41, "miles")
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(2.2, "m"),
  15186. weight: math.unit(120, "kg"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/pia-jr/front.svg",
  15190. extra: 1000 / 970,
  15191. bottom: 0.035
  15192. }
  15193. },
  15194. hand: {
  15195. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15196. name: "Hand",
  15197. image: {
  15198. source: "./media/characters/pia-jr/hand.svg"
  15199. }
  15200. },
  15201. paw: {
  15202. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15203. name: "Paw",
  15204. image: {
  15205. source: "./media/characters/pia-jr/paw.svg"
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Micro",
  15212. height: math.unit(1.2, "cm")
  15213. },
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(2.2, "m"),
  15217. default: true
  15218. },
  15219. {
  15220. name: "Macro",
  15221. height: math.unit(180, "m")
  15222. },
  15223. {
  15224. name: "Megamacro",
  15225. height: math.unit(420, "km")
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(2, "m"),
  15234. weight: math.unit(115, "kg"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/pia-sr/front.svg",
  15238. extra: 760 / 730,
  15239. bottom: 0.015
  15240. }
  15241. },
  15242. back: {
  15243. height: math.unit(2, "m"),
  15244. weight: math.unit(115, "kg"),
  15245. name: "Back",
  15246. image: {
  15247. source: "./media/characters/pia-sr/back.svg",
  15248. extra: 760 / 730,
  15249. bottom: 0.01
  15250. }
  15251. },
  15252. hand: {
  15253. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15254. name: "Hand",
  15255. image: {
  15256. source: "./media/characters/pia-sr/hand.svg"
  15257. }
  15258. },
  15259. foot: {
  15260. height: math.unit(1.83, "feet"),
  15261. name: "Foot",
  15262. image: {
  15263. source: "./media/characters/pia-sr/foot.svg"
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Micro",
  15270. height: math.unit(88, "mm")
  15271. },
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(2, "m"),
  15275. default: true
  15276. },
  15277. {
  15278. name: "Macro",
  15279. height: math.unit(200, "m")
  15280. },
  15281. {
  15282. name: "Megamacro",
  15283. height: math.unit(420, "km")
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(8 + 2 / 12, "feet"),
  15292. weight: math.unit(300, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/kibibyte/front.svg",
  15296. extra: 2221 / 2098,
  15297. bottom: 0.04
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(8 + 2 / 12, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Socialable Macro",
  15309. height: math.unit(50, "feet")
  15310. },
  15311. {
  15312. name: "Macro",
  15313. height: math.unit(300, "feet")
  15314. },
  15315. {
  15316. name: "Megamacro",
  15317. height: math.unit(500, "miles")
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(6, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/felix/front.svg",
  15330. extra: 762 / 722,
  15331. bottom: 0.02
  15332. }
  15333. },
  15334. frontClothed: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Front (Clothed)",
  15338. image: {
  15339. source: "./media/characters/felix/front-clothed.svg",
  15340. extra: 762 / 722,
  15341. bottom: 0.02
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(6 + 8 / 12, "feet"),
  15349. default: true
  15350. },
  15351. {
  15352. name: "Macro",
  15353. height: math.unit(2600, "feet")
  15354. },
  15355. {
  15356. name: "Megamacro",
  15357. height: math.unit(450, "miles")
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15363. {
  15364. front: {
  15365. height: math.unit(6 + 1 / 12, "feet"),
  15366. weight: math.unit(250, "lb"),
  15367. name: "Front",
  15368. image: {
  15369. source: "./media/characters/tobo/front.svg",
  15370. extra: 608 / 586,
  15371. bottom: 0.023
  15372. }
  15373. },
  15374. back: {
  15375. height: math.unit(6 + 1 / 12, "feet"),
  15376. weight: math.unit(250, "lb"),
  15377. name: "Back",
  15378. image: {
  15379. source: "./media/characters/tobo/back.svg",
  15380. extra: 608 / 586
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Nano",
  15387. height: math.unit(2, "nm")
  15388. },
  15389. {
  15390. name: "Megamicro",
  15391. height: math.unit(0.1, "mm")
  15392. },
  15393. {
  15394. name: "Micro",
  15395. height: math.unit(1, "inch"),
  15396. default: true
  15397. },
  15398. {
  15399. name: "Human-sized",
  15400. height: math.unit(6 + 1 / 12, "feet")
  15401. },
  15402. {
  15403. name: "Macro",
  15404. height: math.unit(250, "feet")
  15405. },
  15406. {
  15407. name: "Megamacro",
  15408. height: math.unit(75, "miles")
  15409. },
  15410. {
  15411. name: "Texas-sized",
  15412. height: math.unit(750, "miles")
  15413. },
  15414. {
  15415. name: "Teramacro",
  15416. height: math.unit(50000, "miles")
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(269, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/danny-kapowsky/front.svg",
  15429. extra: 766 / 736,
  15430. bottom: 0.044
  15431. }
  15432. },
  15433. back: {
  15434. height: math.unit(6, "feet"),
  15435. weight: math.unit(269, "lb"),
  15436. name: "Back",
  15437. image: {
  15438. source: "./media/characters/danny-kapowsky/back.svg",
  15439. extra: 797 / 760,
  15440. bottom: 0.025
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Macro",
  15447. height: math.unit(150, "feet"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Macro+",
  15452. height: math.unit(200, "feet")
  15453. },
  15454. {
  15455. name: "Macro++",
  15456. height: math.unit(300, "feet")
  15457. },
  15458. {
  15459. name: "Macro+++",
  15460. height: math.unit(400, "feet")
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15466. {
  15467. side: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(170, "lb"),
  15470. name: "Side",
  15471. image: {
  15472. source: "./media/characters/finn/side.svg",
  15473. extra: 1953 / 1807,
  15474. bottom: 0.057
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Megamacro",
  15481. height: math.unit(14445, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(5 + 6 / 12, "feet"),
  15491. weight: math.unit(125, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/roy/front.svg",
  15495. extra: 1,
  15496. bottom: 0.11
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Micro",
  15503. height: math.unit(3, "inches"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(5 + 6 / 12, "feet")
  15509. },
  15510. {
  15511. name: "Lesser Macro",
  15512. height: math.unit(60, "feet")
  15513. },
  15514. {
  15515. name: "Greater Macro",
  15516. height: math.unit(120, "feet")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(100, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/aevsivs/front.svg",
  15529. extra: 1,
  15530. bottom: 0.03
  15531. }
  15532. },
  15533. back: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(100, "lb"),
  15536. name: "Back",
  15537. image: {
  15538. source: "./media/characters/aevsivs/back.svg"
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Micro",
  15545. height: math.unit(2, "inches"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(5, "feet")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(5 + 7 / 12, "feet"),
  15559. weight: math.unit(159, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/hildegard/front.svg",
  15563. extra: 289 / 269,
  15564. bottom: 7.63 / 297.8
  15565. }
  15566. },
  15567. back: {
  15568. height: math.unit(5 + 7 / 12, "feet"),
  15569. weight: math.unit(159, "lb"),
  15570. name: "Back",
  15571. image: {
  15572. source: "./media/characters/hildegard/back.svg",
  15573. extra: 280 / 260,
  15574. bottom: 2.3 / 282
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Normal",
  15581. height: math.unit(5 + 7 / 12, "feet"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15588. {
  15589. bernard: {
  15590. height: math.unit(2 + 7 / 12, "feet"),
  15591. weight: math.unit(66, "lb"),
  15592. name: "Bernard",
  15593. rename: true,
  15594. image: {
  15595. source: "./media/characters/bernard-wilder/bernard.svg",
  15596. extra: 192 / 128,
  15597. bottom: 0.05
  15598. }
  15599. },
  15600. wilder: {
  15601. height: math.unit(5 + 8 / 12, "feet"),
  15602. weight: math.unit(143, "lb"),
  15603. name: "Wilder",
  15604. rename: true,
  15605. image: {
  15606. source: "./media/characters/bernard-wilder/wilder.svg",
  15607. extra: 361 / 312,
  15608. bottom: 0.02
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(2 + 7 / 12, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15622. {
  15623. anthro: {
  15624. height: math.unit(6 + 1 / 12, "feet"),
  15625. weight: math.unit(155, "lb"),
  15626. name: "Anthro",
  15627. image: {
  15628. source: "./media/characters/hearth/anthro.svg",
  15629. extra: 1178/1136,
  15630. bottom: 28/1206
  15631. }
  15632. },
  15633. feral: {
  15634. height: math.unit(3.78, "feet"),
  15635. weight: math.unit(35, "kg"),
  15636. name: "Feral",
  15637. image: {
  15638. source: "./media/characters/hearth/feral.svg",
  15639. extra: 153 / 135,
  15640. bottom: 0.03
  15641. }
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Normal",
  15647. height: math.unit(6 + 1 / 12, "feet"),
  15648. default: true
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(6, "feet"),
  15657. weight: math.unit(182, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/ingrid/front.svg",
  15661. extra: 294 / 268,
  15662. bottom: 0.027
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(6, "feet"),
  15670. default: true
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15676. {
  15677. eevee: {
  15678. height: math.unit(2 + 10 / 12, "feet"),
  15679. weight: math.unit(86, "lb"),
  15680. name: "Malgam",
  15681. image: {
  15682. source: "./media/characters/malgam/eevee.svg",
  15683. extra: 952/784,
  15684. bottom: 38/990
  15685. }
  15686. },
  15687. sylveon: {
  15688. height: math.unit(4, "feet"),
  15689. weight: math.unit(101, "lb"),
  15690. name: "Future Malgam",
  15691. rename: true,
  15692. image: {
  15693. source: "./media/characters/malgam/sylveon.svg",
  15694. extra: 371 / 325,
  15695. bottom: 0.015
  15696. }
  15697. },
  15698. gigantamax: {
  15699. height: math.unit(50, "feet"),
  15700. name: "Gigantamax Malgam",
  15701. rename: true,
  15702. image: {
  15703. source: "./media/characters/malgam/gigantamax.svg"
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(2 + 10 / 12, "feet"),
  15711. default: true
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15717. {
  15718. front: {
  15719. height: math.unit(5 + 11 / 12, "feet"),
  15720. weight: math.unit(188, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/fleur/front.svg",
  15724. extra: 309 / 283,
  15725. bottom: 0.007
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Normal",
  15732. height: math.unit(5 + 11 / 12, "feet"),
  15733. default: true
  15734. },
  15735. ]
  15736. ))
  15737. characterMakers.push(() => makeCharacter(
  15738. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15739. {
  15740. front: {
  15741. height: math.unit(5 + 4 / 12, "feet"),
  15742. weight: math.unit(122, "lb"),
  15743. name: "Front",
  15744. image: {
  15745. source: "./media/characters/jude/front.svg",
  15746. extra: 288 / 273,
  15747. bottom: 0.03
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Normal",
  15754. height: math.unit(5 + 4 / 12, "feet"),
  15755. default: true
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15761. {
  15762. front: {
  15763. height: math.unit(5 + 11 / 12, "feet"),
  15764. weight: math.unit(190, "lb"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/seara/front.svg",
  15768. extra: 1,
  15769. bottom: 0.05
  15770. }
  15771. },
  15772. },
  15773. [
  15774. {
  15775. name: "Normal",
  15776. height: math.unit(5 + 11 / 12, "feet"),
  15777. default: true
  15778. },
  15779. ]
  15780. ))
  15781. characterMakers.push(() => makeCharacter(
  15782. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15783. {
  15784. front: {
  15785. height: math.unit(16 + 5 / 12, "feet"),
  15786. weight: math.unit(524, "lb"),
  15787. name: "Front",
  15788. image: {
  15789. source: "./media/characters/caspian-lugia/front.svg",
  15790. extra: 1,
  15791. bottom: 0.04
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Normal",
  15798. height: math.unit(16 + 5 / 12, "feet"),
  15799. default: true
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15805. {
  15806. front: {
  15807. height: math.unit(5 + 7 / 12, "feet"),
  15808. weight: math.unit(170, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/mika/front.svg",
  15812. extra: 1,
  15813. bottom: 0.016
  15814. }
  15815. },
  15816. },
  15817. [
  15818. {
  15819. name: "Normal",
  15820. height: math.unit(5 + 7 / 12, "feet"),
  15821. default: true
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(6 + 2 / 12, "feet"),
  15830. weight: math.unit(268, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/sol/front.svg",
  15834. extra: 247 / 231,
  15835. bottom: 0.05
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Normal",
  15842. height: math.unit(6 + 2 / 12, "feet"),
  15843. default: true
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15849. {
  15850. buizel: {
  15851. height: math.unit(2 + 5 / 12, "feet"),
  15852. weight: math.unit(87, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/umiko/buizel.svg",
  15856. extra: 172 / 157,
  15857. bottom: 0.01
  15858. },
  15859. form: "buizel",
  15860. default: true
  15861. },
  15862. floatzel: {
  15863. height: math.unit(5 + 9 / 12, "feet"),
  15864. weight: math.unit(250, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/umiko/floatzel.svg",
  15868. extra: 1076/1006,
  15869. bottom: 15/1091
  15870. },
  15871. form: "floatzel",
  15872. default: true
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Normal",
  15878. height: math.unit(2 + 5 / 12, "feet"),
  15879. form: "buizel",
  15880. default: true
  15881. },
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(5 + 9 / 12, "feet"),
  15885. form: "floatzel",
  15886. default: true
  15887. },
  15888. ],
  15889. {
  15890. "buizel": {
  15891. name: "Buizel"
  15892. },
  15893. "floatzel": {
  15894. name: "Floatzel",
  15895. default: true
  15896. }
  15897. }
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(6 + 2 / 12, "feet"),
  15904. weight: math.unit(146, "lb"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/iliac/front.svg",
  15908. extra: 389 / 365,
  15909. bottom: 0.035
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Normal",
  15916. height: math.unit(6 + 2 / 12, "feet"),
  15917. default: true
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(6, "feet"),
  15926. weight: math.unit(170, "lb"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/topaz/front.svg",
  15930. extra: 317 / 303,
  15931. bottom: 0.055
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(6, "feet"),
  15939. default: true
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(5 + 11 / 12, "feet"),
  15948. weight: math.unit(144, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/gabriel/front.svg",
  15952. extra: 285 / 262,
  15953. bottom: 0.004
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(5 + 11 / 12, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15967. {
  15968. side: {
  15969. height: math.unit(6 + 5 / 12, "feet"),
  15970. weight: math.unit(300, "lb"),
  15971. name: "Side",
  15972. image: {
  15973. source: "./media/characters/tempest-suicune/side.svg",
  15974. extra: 195 / 154,
  15975. bottom: 0.04
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(6 + 5 / 12, "feet"),
  15983. default: true
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(7 + 2 / 12, "feet"),
  15992. weight: math.unit(322, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/vulcan/front.svg",
  15996. extra: 154 / 147,
  15997. bottom: 0.04
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(7 + 2 / 12, "feet"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(5 + 10 / 12, "feet"),
  16014. weight: math.unit(264, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/gault/front.svg",
  16018. extra: 161 / 140,
  16019. bottom: 0.028
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(5 + 10 / 12, "feet"),
  16027. default: true
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16033. {
  16034. front: {
  16035. height: math.unit(6, "feet"),
  16036. weight: math.unit(150, "lb"),
  16037. name: "Front",
  16038. image: {
  16039. source: "./media/characters/shard/front.svg",
  16040. extra: 273 / 238,
  16041. bottom: 0.02
  16042. }
  16043. },
  16044. },
  16045. [
  16046. {
  16047. name: "Normal",
  16048. height: math.unit(3 + 6 / 12, "feet"),
  16049. default: true
  16050. },
  16051. ]
  16052. ))
  16053. characterMakers.push(() => makeCharacter(
  16054. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16055. {
  16056. front: {
  16057. height: math.unit(5 + 11 / 12, "feet"),
  16058. weight: math.unit(146, "lb"),
  16059. name: "Front",
  16060. image: {
  16061. source: "./media/characters/ashe/front.svg",
  16062. extra: 400 / 373,
  16063. bottom: 0.01
  16064. }
  16065. },
  16066. },
  16067. [
  16068. {
  16069. name: "Normal",
  16070. height: math.unit(5 + 11 / 12, "feet"),
  16071. default: true
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16077. {
  16078. front: {
  16079. height: math.unit(5 + 5 / 12, "feet"),
  16080. weight: math.unit(135, "lb"),
  16081. name: "Front",
  16082. image: {
  16083. source: "./media/characters/beatrix/front.svg",
  16084. extra: 392 / 379,
  16085. bottom: 0.01
  16086. }
  16087. },
  16088. },
  16089. [
  16090. {
  16091. name: "Normal",
  16092. height: math.unit(6, "feet"),
  16093. default: true
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16099. {
  16100. front: {
  16101. height: math.unit(6 + 2/12, "feet"),
  16102. weight: math.unit(135, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/ignatius/front.svg",
  16106. extra: 1380/1259,
  16107. bottom: 27/1407
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(6 + 2/12, "feet"),
  16115. default: true
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16121. {
  16122. front: {
  16123. height: math.unit(6 + 2 / 12, "feet"),
  16124. weight: math.unit(138, "lb"),
  16125. name: "Front",
  16126. image: {
  16127. source: "./media/characters/mei-li/front.svg",
  16128. extra: 237 / 229,
  16129. bottom: 0.03
  16130. }
  16131. },
  16132. },
  16133. [
  16134. {
  16135. name: "Normal",
  16136. height: math.unit(6 + 2 / 12, "feet"),
  16137. default: true
  16138. },
  16139. ]
  16140. ))
  16141. characterMakers.push(() => makeCharacter(
  16142. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16143. {
  16144. front: {
  16145. height: math.unit(2 + 4 / 12, "feet"),
  16146. weight: math.unit(62, "lb"),
  16147. name: "Front",
  16148. image: {
  16149. source: "./media/characters/puru/front.svg",
  16150. extra: 206 / 149,
  16151. bottom: 0.06
  16152. }
  16153. },
  16154. },
  16155. [
  16156. {
  16157. name: "Normal",
  16158. height: math.unit(2 + 4 / 12, "feet"),
  16159. default: true
  16160. },
  16161. ]
  16162. ))
  16163. characterMakers.push(() => makeCharacter(
  16164. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16165. {
  16166. anthro: {
  16167. height: math.unit(5 + 8/12, "feet"),
  16168. weight: math.unit(200, "lb"),
  16169. energyNeed: math.unit(2000, "kcal"),
  16170. name: "Anthro",
  16171. image: {
  16172. source: "./media/characters/kee/anthro.svg",
  16173. extra: 3251/3184,
  16174. bottom: 250/3501
  16175. }
  16176. },
  16177. taur: {
  16178. height: math.unit(11, "feet"),
  16179. weight: math.unit(500, "lb"),
  16180. energyNeed: math.unit(5000, "kcal"),
  16181. name: "Taur",
  16182. image: {
  16183. source: "./media/characters/kee/taur.svg",
  16184. extra: 1362/1320,
  16185. bottom: 83/1445
  16186. }
  16187. },
  16188. },
  16189. [
  16190. {
  16191. name: "Normal",
  16192. height: math.unit(5 + 8/12, "feet"),
  16193. default: true
  16194. },
  16195. {
  16196. name: "Macro",
  16197. height: math.unit(35, "feet")
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16203. {
  16204. anthro: {
  16205. height: math.unit(7, "feet"),
  16206. weight: math.unit(190, "lb"),
  16207. name: "Anthro",
  16208. image: {
  16209. source: "./media/characters/cobalt-dracha/anthro.svg",
  16210. extra: 231 / 225,
  16211. bottom: 0.04
  16212. }
  16213. },
  16214. feral: {
  16215. height: math.unit(9 + 7 / 12, "feet"),
  16216. weight: math.unit(294, "lb"),
  16217. name: "Feral",
  16218. image: {
  16219. source: "./media/characters/cobalt-dracha/feral.svg",
  16220. extra: 692 / 633,
  16221. bottom: 0.05
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Normal",
  16228. height: math.unit(7, "feet"),
  16229. default: true
  16230. },
  16231. ]
  16232. ))
  16233. characterMakers.push(() => makeCharacter(
  16234. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16235. {
  16236. fallen: {
  16237. height: math.unit(11 + 8 / 12, "feet"),
  16238. weight: math.unit(485, "lb"),
  16239. name: "Java (Fallen)",
  16240. rename: true,
  16241. image: {
  16242. source: "./media/characters/java/fallen.svg",
  16243. extra: 226 / 208,
  16244. bottom: 0.005
  16245. }
  16246. },
  16247. godkin: {
  16248. height: math.unit(10 + 6 / 12, "feet"),
  16249. weight: math.unit(328, "lb"),
  16250. name: "Java (Godkin)",
  16251. rename: true,
  16252. image: {
  16253. source: "./media/characters/java/godkin.svg",
  16254. extra: 1104/1068,
  16255. bottom: 36/1140
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(11 + 8 / 12, "feet"),
  16263. default: true
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16269. {
  16270. front: {
  16271. height: math.unit(5 + 9 / 12, "feet"),
  16272. weight: math.unit(170, "lb"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/purna/front.svg",
  16276. extra: 239 / 229,
  16277. bottom: 0.01
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(5 + 9 / 12, "feet"),
  16285. default: true
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(5 + 9 / 12, "feet"),
  16294. weight: math.unit(142, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/kuva/front.svg",
  16298. extra: 281 / 271,
  16299. bottom: 0.006
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(5 + 9 / 12, "feet"),
  16307. default: true
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16313. {
  16314. anthro: {
  16315. height: math.unit(9 + 2 / 12, "feet"),
  16316. weight: math.unit(270, "lb"),
  16317. name: "Anthro",
  16318. image: {
  16319. source: "./media/characters/embra/anthro.svg",
  16320. extra: 200 / 187,
  16321. bottom: 0.02
  16322. }
  16323. },
  16324. feral: {
  16325. height: math.unit(18 + 8 / 12, "feet"),
  16326. weight: math.unit(576, "lb"),
  16327. name: "Feral",
  16328. image: {
  16329. source: "./media/characters/embra/feral.svg",
  16330. extra: 152 / 137,
  16331. bottom: 0.037
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Normal",
  16338. height: math.unit(9 + 2 / 12, "feet"),
  16339. default: true
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16345. {
  16346. anthro: {
  16347. height: math.unit(10 + 9 / 12, "feet"),
  16348. weight: math.unit(224, "lb"),
  16349. name: "Anthro",
  16350. image: {
  16351. source: "./media/characters/grottos/anthro.svg",
  16352. extra: 350 / 332,
  16353. bottom: 0.045
  16354. }
  16355. },
  16356. feral: {
  16357. height: math.unit(20 + 7 / 12, "feet"),
  16358. weight: math.unit(629, "lb"),
  16359. name: "Feral",
  16360. image: {
  16361. source: "./media/characters/grottos/feral.svg",
  16362. extra: 207 / 190,
  16363. bottom: 0.05
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Normal",
  16370. height: math.unit(10 + 9 / 12, "feet"),
  16371. default: true
  16372. },
  16373. ]
  16374. ))
  16375. characterMakers.push(() => makeCharacter(
  16376. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16377. {
  16378. anthro: {
  16379. height: math.unit(9 + 6 / 12, "feet"),
  16380. weight: math.unit(298, "lb"),
  16381. name: "Anthro",
  16382. image: {
  16383. source: "./media/characters/frifna/anthro.svg",
  16384. extra: 282 / 269,
  16385. bottom: 0.015
  16386. }
  16387. },
  16388. feral: {
  16389. height: math.unit(16 + 2 / 12, "feet"),
  16390. weight: math.unit(624, "lb"),
  16391. name: "Feral",
  16392. image: {
  16393. source: "./media/characters/frifna/feral.svg"
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(9 + 6 / 12, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(6 + 2 / 12, "feet"),
  16410. weight: math.unit(168, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/elise/front.svg",
  16414. extra: 276 / 271
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(6 + 2 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(5 + 10 / 12, "feet"),
  16431. weight: math.unit(210, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/glade/front.svg",
  16435. extra: 258 / 247,
  16436. bottom: 0.008
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(5 + 10 / 12, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(5 + 10 / 12, "feet"),
  16453. weight: math.unit(129, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/rina/front.svg",
  16457. extra: 266 / 255,
  16458. bottom: 0.005
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(5 + 10 / 12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(6 + 1 / 12, "feet"),
  16475. weight: math.unit(192, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/veronica/front.svg",
  16479. extra: 319 / 309,
  16480. bottom: 0.005
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(6 + 1 / 12, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(9 + 3 / 12, "feet"),
  16497. weight: math.unit(1100, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/braxton/front.svg",
  16501. extra: 1057 / 984,
  16502. bottom: 0.05
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(9 + 3 / 12, "feet")
  16510. },
  16511. {
  16512. name: "Giant",
  16513. height: math.unit(300, "feet"),
  16514. default: true
  16515. },
  16516. {
  16517. name: "Macro",
  16518. height: math.unit(700, "feet")
  16519. },
  16520. {
  16521. name: "Megamacro",
  16522. height: math.unit(6000, "feet")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(6 + 7 / 12, "feet"),
  16531. weight: math.unit(150, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/blue-feyonics/front.svg",
  16535. extra: 1403 / 1306,
  16536. bottom: 0.047
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(6 + 7 / 12, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(1.8, "meters"),
  16553. weight: math.unit(60, "kg"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/maxwell/front.svg",
  16557. extra: 2060 / 1873
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Micro",
  16564. height: math.unit(1, "mm")
  16565. },
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(1.8, "meter"),
  16569. default: true
  16570. },
  16571. {
  16572. name: "Macro",
  16573. height: math.unit(30, "meters")
  16574. },
  16575. {
  16576. name: "Megamacro",
  16577. height: math.unit(10, "km")
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16583. {
  16584. front: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(150, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/jack/front.svg",
  16590. extra: 1754 / 1640,
  16591. bottom: 0.01
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(80000, "feet"),
  16599. default: true
  16600. },
  16601. {
  16602. name: "Max size",
  16603. height: math.unit(10, "lightyears")
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16609. {
  16610. urban: {
  16611. height: math.unit(5, "feet"),
  16612. weight: math.unit(240, "lb"),
  16613. name: "Urban",
  16614. image: {
  16615. source: "./media/characters/cafat/urban.svg",
  16616. extra: 1223/1126,
  16617. bottom: 205/1428
  16618. }
  16619. },
  16620. summer: {
  16621. height: math.unit(5, "feet"),
  16622. weight: math.unit(240, "lb"),
  16623. name: "Summer",
  16624. image: {
  16625. source: "./media/characters/cafat/summer.svg",
  16626. extra: 1223/1126,
  16627. bottom: 205/1428
  16628. }
  16629. },
  16630. winter: {
  16631. height: math.unit(5, "feet"),
  16632. weight: math.unit(240, "lb"),
  16633. name: "Winter",
  16634. image: {
  16635. source: "./media/characters/cafat/winter.svg",
  16636. extra: 1223/1126,
  16637. bottom: 205/1428
  16638. }
  16639. },
  16640. lingerie: {
  16641. height: math.unit(5, "feet"),
  16642. weight: math.unit(240, "lb"),
  16643. name: "Lingerie",
  16644. image: {
  16645. source: "./media/characters/cafat/lingerie.svg",
  16646. extra: 1223/1126,
  16647. bottom: 205/1428
  16648. }
  16649. },
  16650. upright: {
  16651. height: math.unit(6.3, "feet"),
  16652. weight: math.unit(240, "lb"),
  16653. name: "Upright",
  16654. image: {
  16655. source: "./media/characters/cafat/upright.svg",
  16656. bottom: 0.01
  16657. }
  16658. },
  16659. uprightFull: {
  16660. height: math.unit(6.3, "feet"),
  16661. weight: math.unit(240, "lb"),
  16662. name: "Upright (Full)",
  16663. image: {
  16664. source: "./media/characters/cafat/upright-full.svg",
  16665. bottom: 0.01
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Small",
  16672. height: math.unit(5, "feet"),
  16673. default: true
  16674. },
  16675. {
  16676. name: "Large",
  16677. height: math.unit(13, "feet")
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(6, "feet"),
  16686. weight: math.unit(150, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/verin-raharra/front.svg",
  16690. extra: 5019 / 4835,
  16691. bottom: 0.023
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(7 + 5 / 12, "feet"),
  16699. default: true
  16700. },
  16701. {
  16702. name: "Upsized",
  16703. height: math.unit(20, "feet")
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(7, "feet"),
  16712. weight: math.unit(230, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/nakata/front.svg",
  16716. extra: 1.005,
  16717. bottom: 0.01
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(7, "feet"),
  16725. default: true
  16726. },
  16727. {
  16728. name: "Big",
  16729. height: math.unit(14, "feet")
  16730. },
  16731. {
  16732. name: "Macro",
  16733. height: math.unit(400, "feet")
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16739. {
  16740. front: {
  16741. height: math.unit(4.91, "feet"),
  16742. weight: math.unit(100, "lb"),
  16743. name: "Front",
  16744. image: {
  16745. source: "./media/characters/lily/front.svg",
  16746. extra: 1585 / 1415,
  16747. bottom: 0.02
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(4.91, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16761. {
  16762. laying: {
  16763. height: math.unit(4 + 4 / 12, "feet"),
  16764. weight: math.unit(600, "lb"),
  16765. name: "Laying",
  16766. image: {
  16767. source: "./media/characters/sheila/laying.svg",
  16768. extra: 1333 / 1265,
  16769. bottom: 0.16
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(4 + 4 / 12, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(190, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/sax/front.svg",
  16790. extra: 1187 / 973,
  16791. bottom: 0.042
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Micro",
  16798. height: math.unit(4, "inches"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6, "feet"),
  16808. weight: math.unit(150, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/pandora/front.svg",
  16812. extra: 2720 / 2556,
  16813. bottom: 0.015
  16814. }
  16815. },
  16816. back: {
  16817. height: math.unit(6, "feet"),
  16818. weight: math.unit(150, "lb"),
  16819. name: "Back",
  16820. image: {
  16821. source: "./media/characters/pandora/back.svg",
  16822. extra: 2720 / 2556,
  16823. bottom: 0.01
  16824. }
  16825. },
  16826. beans: {
  16827. height: math.unit(6 / 8, "feet"),
  16828. name: "Beans",
  16829. image: {
  16830. source: "./media/characters/pandora/beans.svg"
  16831. }
  16832. },
  16833. collar: {
  16834. height: math.unit(0.31, "feet"),
  16835. name: "Collar",
  16836. image: {
  16837. source: "./media/characters/pandora/collar.svg"
  16838. }
  16839. },
  16840. skirt: {
  16841. height: math.unit(6, "feet"),
  16842. weight: math.unit(150, "lb"),
  16843. name: "Skirt",
  16844. image: {
  16845. source: "./media/characters/pandora/skirt.svg",
  16846. extra: 1622 / 1525,
  16847. bottom: 0.015
  16848. }
  16849. },
  16850. hoodie: {
  16851. height: math.unit(6, "feet"),
  16852. weight: math.unit(150, "lb"),
  16853. name: "Hoodie",
  16854. image: {
  16855. source: "./media/characters/pandora/hoodie.svg",
  16856. extra: 1622 / 1525,
  16857. bottom: 0.015
  16858. }
  16859. },
  16860. casual: {
  16861. height: math.unit(6, "feet"),
  16862. weight: math.unit(150, "lb"),
  16863. name: "Casual",
  16864. image: {
  16865. source: "./media/characters/pandora/casual.svg",
  16866. extra: 1622 / 1525,
  16867. bottom: 0.015
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(6, "feet")
  16875. },
  16876. {
  16877. name: "Big Steppy",
  16878. height: math.unit(1, "km"),
  16879. default: true
  16880. },
  16881. {
  16882. name: "Galactic Steppy",
  16883. height: math.unit(2, "gigameters")
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16889. {
  16890. side: {
  16891. height: math.unit(10, "feet"),
  16892. weight: math.unit(800, "kg"),
  16893. name: "Side",
  16894. image: {
  16895. source: "./media/characters/venio-darcony/side.svg",
  16896. extra: 1373 / 1003,
  16897. bottom: 0.037
  16898. }
  16899. },
  16900. front: {
  16901. height: math.unit(19, "feet"),
  16902. weight: math.unit(800, "kg"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/venio-darcony/front.svg"
  16906. }
  16907. },
  16908. back: {
  16909. height: math.unit(19, "feet"),
  16910. weight: math.unit(800, "kg"),
  16911. name: "Back",
  16912. image: {
  16913. source: "./media/characters/venio-darcony/back.svg"
  16914. }
  16915. },
  16916. sideNsfw: {
  16917. height: math.unit(10, "feet"),
  16918. weight: math.unit(800, "kg"),
  16919. name: "Side (NSFW)",
  16920. image: {
  16921. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16922. extra: 1373 / 1003,
  16923. bottom: 0.037
  16924. }
  16925. },
  16926. frontNsfw: {
  16927. height: math.unit(19, "feet"),
  16928. weight: math.unit(800, "kg"),
  16929. name: "Front (NSFW)",
  16930. image: {
  16931. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16932. }
  16933. },
  16934. backNsfw: {
  16935. height: math.unit(19, "feet"),
  16936. weight: math.unit(800, "kg"),
  16937. name: "Back (NSFW)",
  16938. image: {
  16939. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16940. }
  16941. },
  16942. sideArmored: {
  16943. height: math.unit(10, "feet"),
  16944. weight: math.unit(800, "kg"),
  16945. name: "Side (Armored)",
  16946. image: {
  16947. source: "./media/characters/venio-darcony/side-armored.svg",
  16948. extra: 1373 / 1003,
  16949. bottom: 0.037
  16950. }
  16951. },
  16952. frontArmored: {
  16953. height: math.unit(19, "feet"),
  16954. weight: math.unit(900, "kg"),
  16955. name: "Front (Armored)",
  16956. image: {
  16957. source: "./media/characters/venio-darcony/front-armored.svg"
  16958. }
  16959. },
  16960. backArmored: {
  16961. height: math.unit(19, "feet"),
  16962. weight: math.unit(900, "kg"),
  16963. name: "Back (Armored)",
  16964. image: {
  16965. source: "./media/characters/venio-darcony/back-armored.svg"
  16966. }
  16967. },
  16968. sword: {
  16969. height: math.unit(10, "feet"),
  16970. weight: math.unit(50, "lb"),
  16971. name: "Sword",
  16972. image: {
  16973. source: "./media/characters/venio-darcony/sword.svg"
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(10, "feet")
  16981. },
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(130, "feet"),
  16985. default: true
  16986. },
  16987. {
  16988. name: "Macro+",
  16989. height: math.unit(240, "feet")
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(6, "feet"),
  16998. weight: math.unit(150, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/veski/front.svg",
  17002. extra: 1299 / 1225,
  17003. bottom: 0.04
  17004. }
  17005. },
  17006. back: {
  17007. height: math.unit(6, "feet"),
  17008. weight: math.unit(150, "lb"),
  17009. name: "Back",
  17010. image: {
  17011. source: "./media/characters/veski/back.svg",
  17012. extra: 1299 / 1225,
  17013. bottom: 0.008
  17014. }
  17015. },
  17016. maw: {
  17017. height: math.unit(1.5 * 1.21, "feet"),
  17018. name: "Maw",
  17019. image: {
  17020. source: "./media/characters/veski/maw.svg"
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Macro",
  17027. height: math.unit(2, "km"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(5 + 7 / 12, "feet"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/isabelle/front.svg",
  17040. extra: 2130 / 1976,
  17041. bottom: 0.05
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Supermicro",
  17048. height: math.unit(10, "micrometers")
  17049. },
  17050. {
  17051. name: "Micro",
  17052. height: math.unit(1, "inch")
  17053. },
  17054. {
  17055. name: "Tiny",
  17056. height: math.unit(5, "inches")
  17057. },
  17058. {
  17059. name: "Standard",
  17060. height: math.unit(5 + 7 / 12, "inches")
  17061. },
  17062. {
  17063. name: "Macro",
  17064. height: math.unit(80, "meters"),
  17065. default: true
  17066. },
  17067. {
  17068. name: "Megamacro",
  17069. height: math.unit(250, "meters")
  17070. },
  17071. {
  17072. name: "Gigamacro",
  17073. height: math.unit(5, "km")
  17074. },
  17075. {
  17076. name: "Cosmic",
  17077. height: math.unit(2.5e6, "miles")
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(6, "feet"),
  17086. weight: math.unit(150, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/hanzo/front.svg",
  17090. extra: 374 / 344,
  17091. bottom: 0.02
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(8, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(7, "feet"),
  17108. weight: math.unit(130, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/anna/front.svg",
  17112. extra: 169 / 145,
  17113. bottom: 0.06
  17114. }
  17115. },
  17116. full: {
  17117. height: math.unit(4.96, "feet"),
  17118. weight: math.unit(220, "lb"),
  17119. name: "Full",
  17120. image: {
  17121. source: "./media/characters/anna/full.svg",
  17122. extra: 138 / 114,
  17123. bottom: 0.15
  17124. }
  17125. },
  17126. tongue: {
  17127. height: math.unit(2.53, "feet"),
  17128. name: "Tongue",
  17129. image: {
  17130. source: "./media/characters/anna/tongue.svg"
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(7, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17144. {
  17145. front: {
  17146. height: math.unit(7, "feet"),
  17147. weight: math.unit(150, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/ian-corvid/front.svg",
  17151. extra: 150 / 142,
  17152. bottom: 0.02
  17153. }
  17154. },
  17155. back: {
  17156. height: math.unit(7, "feet"),
  17157. weight: math.unit(150, "lb"),
  17158. name: "Back",
  17159. image: {
  17160. source: "./media/characters/ian-corvid/back.svg",
  17161. extra: 150 / 143,
  17162. bottom: 0.01
  17163. }
  17164. },
  17165. stomping: {
  17166. height: math.unit(7, "feet"),
  17167. weight: math.unit(150, "lb"),
  17168. name: "Stomping",
  17169. image: {
  17170. source: "./media/characters/ian-corvid/stomping.svg",
  17171. extra: 76 / 72
  17172. }
  17173. },
  17174. sitting: {
  17175. height: math.unit(7 / 1.8, "feet"),
  17176. weight: math.unit(150, "lb"),
  17177. name: "Sitting",
  17178. image: {
  17179. source: "./media/characters/ian-corvid/sitting.svg",
  17180. extra: 1400 / 1269,
  17181. bottom: 0.15
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Tiny Microw",
  17188. height: math.unit(1, "inch")
  17189. },
  17190. {
  17191. name: "Microw",
  17192. height: math.unit(6, "inches")
  17193. },
  17194. {
  17195. name: "Crow",
  17196. height: math.unit(7 + 1 / 12, "feet"),
  17197. default: true
  17198. },
  17199. {
  17200. name: "Macrow",
  17201. height: math.unit(176, "feet")
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(5 + 7 / 12, "feet"),
  17210. weight: math.unit(147, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/natalie-kellon/front.svg",
  17214. extra: 1214 / 1141,
  17215. bottom: 0.02
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Micro",
  17222. height: math.unit(1 / 16, "inch")
  17223. },
  17224. {
  17225. name: "Tiny",
  17226. height: math.unit(4, "inches")
  17227. },
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(5 + 7 / 12, "feet"),
  17231. default: true
  17232. },
  17233. {
  17234. name: "Amazon",
  17235. height: math.unit(12, "feet")
  17236. },
  17237. {
  17238. name: "Giantess",
  17239. height: math.unit(160, "meters")
  17240. },
  17241. {
  17242. name: "Titaness",
  17243. height: math.unit(800, "meters")
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17249. {
  17250. front: {
  17251. height: math.unit(6, "feet"),
  17252. weight: math.unit(150, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/alluria/front.svg",
  17256. extra: 806 / 738,
  17257. bottom: 0.01
  17258. }
  17259. },
  17260. side: {
  17261. height: math.unit(6, "feet"),
  17262. weight: math.unit(150, "lb"),
  17263. name: "Side",
  17264. image: {
  17265. source: "./media/characters/alluria/side.svg",
  17266. extra: 800 / 750,
  17267. }
  17268. },
  17269. back: {
  17270. height: math.unit(6, "feet"),
  17271. weight: math.unit(150, "lb"),
  17272. name: "Back",
  17273. image: {
  17274. source: "./media/characters/alluria/back.svg",
  17275. extra: 806 / 738,
  17276. }
  17277. },
  17278. frontMaid: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Front (Maid)",
  17282. image: {
  17283. source: "./media/characters/alluria/front-maid.svg",
  17284. extra: 806 / 738,
  17285. bottom: 0.01
  17286. }
  17287. },
  17288. sideMaid: {
  17289. height: math.unit(6, "feet"),
  17290. weight: math.unit(150, "lb"),
  17291. name: "Side (Maid)",
  17292. image: {
  17293. source: "./media/characters/alluria/side-maid.svg",
  17294. extra: 800 / 750,
  17295. bottom: 0.005
  17296. }
  17297. },
  17298. backMaid: {
  17299. height: math.unit(6, "feet"),
  17300. weight: math.unit(150, "lb"),
  17301. name: "Back (Maid)",
  17302. image: {
  17303. source: "./media/characters/alluria/back-maid.svg",
  17304. extra: 806 / 738,
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Micro",
  17311. height: math.unit(6, "inches"),
  17312. default: true
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17318. {
  17319. front: {
  17320. height: math.unit(6, "feet"),
  17321. weight: math.unit(150, "lb"),
  17322. name: "Front",
  17323. image: {
  17324. source: "./media/characters/kyle/front.svg",
  17325. extra: 1069 / 962,
  17326. bottom: 77.228 / 1727.45
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Macro",
  17333. height: math.unit(150, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(6, "feet"),
  17343. weight: math.unit(300, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/duncan/front.svg",
  17347. extra: 1650 / 1482,
  17348. bottom: 0.05
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Macro",
  17355. height: math.unit(100, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(5 + 4 / 12, "feet"),
  17365. weight: math.unit(220, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/memory/front.svg",
  17369. extra: 3641 / 3545,
  17370. bottom: 0.03
  17371. }
  17372. },
  17373. back: {
  17374. height: math.unit(5 + 4 / 12, "feet"),
  17375. weight: math.unit(220, "lb"),
  17376. name: "Back",
  17377. image: {
  17378. source: "./media/characters/memory/back.svg",
  17379. extra: 3641 / 3545,
  17380. bottom: 0.025
  17381. }
  17382. },
  17383. frontSkirt: {
  17384. height: math.unit(5 + 4 / 12, "feet"),
  17385. weight: math.unit(220, "lb"),
  17386. name: "Front (Skirt)",
  17387. image: {
  17388. source: "./media/characters/memory/front-skirt.svg",
  17389. extra: 3641 / 3545,
  17390. bottom: 0.03
  17391. }
  17392. },
  17393. frontDress: {
  17394. height: math.unit(5 + 4 / 12, "feet"),
  17395. weight: math.unit(220, "lb"),
  17396. name: "Front (Dress)",
  17397. image: {
  17398. source: "./media/characters/memory/front-dress.svg",
  17399. extra: 3641 / 3545,
  17400. bottom: 0.03
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Micro",
  17407. height: math.unit(6, "inches"),
  17408. default: true
  17409. },
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(5 + 4 / 12, "feet")
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(4 + 11 / 12, "feet"),
  17421. weight: math.unit(100, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/luno/front.svg",
  17425. extra: 1535 / 1487,
  17426. bottom: 0.03
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Micro",
  17433. height: math.unit(3, "inches")
  17434. },
  17435. {
  17436. name: "Normal",
  17437. height: math.unit(4 + 11 / 12, "feet"),
  17438. default: true
  17439. },
  17440. {
  17441. name: "Macro",
  17442. height: math.unit(300, "feet")
  17443. },
  17444. {
  17445. name: "Megamacro",
  17446. height: math.unit(700, "miles")
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(6 + 2 / 12, "feet"),
  17455. weight: math.unit(170, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/jamesy/front.svg",
  17459. extra: 440 / 382,
  17460. bottom: 0.005
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Micro",
  17467. height: math.unit(3, "inches")
  17468. },
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(6 + 2 / 12, "feet"),
  17472. default: true
  17473. },
  17474. {
  17475. name: "Macro",
  17476. height: math.unit(300, "feet")
  17477. },
  17478. {
  17479. name: "Megamacro",
  17480. height: math.unit(700, "miles")
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(6, "feet"),
  17489. weight: math.unit(160, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/mark/front.svg",
  17493. extra: 3300 / 3100,
  17494. bottom: 136.42 / 3440.47
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Macro",
  17501. height: math.unit(120, "meters")
  17502. },
  17503. {
  17504. name: "Bigger Macro",
  17505. height: math.unit(350, "meters")
  17506. },
  17507. {
  17508. name: "Megamacro",
  17509. height: math.unit(8, "km"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Continental",
  17514. height: math.unit(4550, "km")
  17515. },
  17516. {
  17517. name: "Planetary",
  17518. height: math.unit(65000, "km")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(6, "feet"),
  17527. weight: math.unit(400, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/mac/front.svg",
  17531. extra: 1048 / 987.7,
  17532. bottom: 60 / 1107.6,
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Macro",
  17539. height: math.unit(500, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(5 + 2 / 12, "feet"),
  17549. weight: math.unit(190, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/bari/front.svg",
  17553. extra: 3156 / 2880,
  17554. bottom: 0.03
  17555. }
  17556. },
  17557. back: {
  17558. height: math.unit(5 + 2 / 12, "feet"),
  17559. weight: math.unit(190, "lb"),
  17560. name: "Back",
  17561. image: {
  17562. source: "./media/characters/bari/back.svg",
  17563. extra: 3260 / 2834,
  17564. bottom: 0.025
  17565. }
  17566. },
  17567. frontPlush: {
  17568. height: math.unit(5 + 2 / 12, "feet"),
  17569. weight: math.unit(190, "lb"),
  17570. name: "Front (Plush)",
  17571. image: {
  17572. source: "./media/characters/bari/front-plush.svg",
  17573. extra: 1112 / 1061,
  17574. bottom: 0.002
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Micro",
  17581. height: math.unit(3, "inches")
  17582. },
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(5 + 2 / 12, "feet"),
  17586. default: true
  17587. },
  17588. {
  17589. name: "Macro",
  17590. height: math.unit(20, "feet")
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(6 + 1 / 12, "feet"),
  17599. weight: math.unit(275, "lb"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/hunter-misha-raven/front.svg"
  17603. }
  17604. },
  17605. },
  17606. [
  17607. {
  17608. name: "Mortal",
  17609. height: math.unit(6 + 1 / 12, "feet")
  17610. },
  17611. {
  17612. name: "Divine",
  17613. height: math.unit(1.12134e34, "parsecs"),
  17614. default: true
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17620. {
  17621. front: {
  17622. height: math.unit(6 + 3 / 12, "feet"),
  17623. weight: math.unit(220, "lb"),
  17624. name: "Front",
  17625. image: {
  17626. source: "./media/characters/max-calore/front.svg",
  17627. extra: 1700 / 1648,
  17628. bottom: 0.01
  17629. }
  17630. },
  17631. back: {
  17632. height: math.unit(6 + 3 / 12, "feet"),
  17633. weight: math.unit(220, "lb"),
  17634. name: "Back",
  17635. image: {
  17636. source: "./media/characters/max-calore/back.svg",
  17637. extra: 1700 / 1648,
  17638. bottom: 0.01
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(6 + 3 / 12, "feet"),
  17646. default: true
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17652. {
  17653. side: {
  17654. height: math.unit(2 + 8 / 12, "feet"),
  17655. weight: math.unit(99, "lb"),
  17656. name: "Side",
  17657. image: {
  17658. source: "./media/characters/aspen/side.svg",
  17659. extra: 152 / 138,
  17660. bottom: 0.032
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(2 + 8 / 12, "feet"),
  17668. default: true
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17674. {
  17675. side: {
  17676. height: math.unit(3 + 2 / 12, "feet"),
  17677. weight: math.unit(224, "lb"),
  17678. name: "Side",
  17679. image: {
  17680. source: "./media/characters/sheila-feral-wolf/side.svg",
  17681. extra: 179 / 166,
  17682. bottom: 0.03
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(3 + 2 / 12, "feet"),
  17690. default: true
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17696. {
  17697. side: {
  17698. height: math.unit(1 + 9 / 12, "feet"),
  17699. weight: math.unit(38, "lb"),
  17700. name: "Side",
  17701. image: {
  17702. source: "./media/characters/michelle/side.svg",
  17703. extra: 147 / 136.7,
  17704. bottom: 0.03
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(1 + 9 / 12, "feet"),
  17712. default: true
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(1.54, "feet"),
  17721. weight: math.unit(50, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/nino/front.svg"
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(1.54, "feet"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(1.49, "feet"),
  17741. weight: math.unit(45, "lb"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/viola/front.svg"
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(1.49, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(6 + 5 / 12, "feet"),
  17761. weight: math.unit(580, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/atlas/front.svg",
  17765. extra: 298.5 / 290,
  17766. bottom: 0.015
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(6 + 5 / 12, "feet"),
  17774. default: true
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17780. {
  17781. side: {
  17782. height: math.unit(15.6, "inches"),
  17783. weight: math.unit(10, "lb"),
  17784. name: "Side",
  17785. image: {
  17786. source: "./media/characters/davy/side.svg",
  17787. extra: 200 / 170,
  17788. bottom: 0.01
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(15.6, "inches"),
  17796. default: true
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17802. {
  17803. side: {
  17804. height: math.unit(4 + 8 / 12, "feet"),
  17805. weight: math.unit(166, "lb"),
  17806. name: "Side",
  17807. image: {
  17808. source: "./media/characters/fiona/side.svg",
  17809. extra: 232 / 220,
  17810. bottom: 0.03
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(4 + 8 / 12, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17824. {
  17825. front: {
  17826. height: math.unit(26, "inches"),
  17827. weight: math.unit(35, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/lyla/front.svg",
  17831. bottom: 0.1
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(3, "feet"),
  17839. default: true
  17840. },
  17841. ]
  17842. ))
  17843. characterMakers.push(() => makeCharacter(
  17844. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17845. {
  17846. side: {
  17847. height: math.unit(1.8, "feet"),
  17848. weight: math.unit(44, "lb"),
  17849. name: "Side",
  17850. image: {
  17851. source: "./media/characters/perseus/side.svg",
  17852. bottom: 0.21
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(1.8, "feet"),
  17860. default: true
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17866. {
  17867. side: {
  17868. height: math.unit(4 + 2 / 12, "feet"),
  17869. weight: math.unit(20, "lb"),
  17870. name: "Side",
  17871. image: {
  17872. source: "./media/characters/remus/side.svg"
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(4 + 2 / 12, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(4 + 11 / 12, "feet"),
  17889. weight: math.unit(114, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/raf/front.svg",
  17893. extra: 1504/1339,
  17894. bottom: 26/1530
  17895. }
  17896. },
  17897. side: {
  17898. height: math.unit(4 + 11 / 12, "feet"),
  17899. weight: math.unit(114, "lb"),
  17900. name: "Side",
  17901. image: {
  17902. source: "./media/characters/raf/side.svg",
  17903. extra: 1466/1316,
  17904. bottom: 29/1495
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Micro",
  17911. height: math.unit(2, "inches")
  17912. },
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(4 + 11 / 12, "feet"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Macro",
  17920. height: math.unit(70, "feet")
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(1.5, "meters"),
  17929. weight: math.unit(68, "kg"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/liam-einarr/front.svg",
  17933. extra: 2822 / 2666
  17934. }
  17935. },
  17936. back: {
  17937. height: math.unit(1.5, "meters"),
  17938. weight: math.unit(68, "kg"),
  17939. name: "Back",
  17940. image: {
  17941. source: "./media/characters/liam-einarr/back.svg",
  17942. extra: 2822 / 2666,
  17943. bottom: 0.015
  17944. }
  17945. },
  17946. },
  17947. [
  17948. {
  17949. name: "Normal",
  17950. height: math.unit(1.5, "meters"),
  17951. default: true
  17952. },
  17953. {
  17954. name: "Macro",
  17955. height: math.unit(150, "meters")
  17956. },
  17957. {
  17958. name: "Megamacro",
  17959. height: math.unit(35, "km")
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17965. {
  17966. front: {
  17967. height: math.unit(6, "feet"),
  17968. weight: math.unit(75, "kg"),
  17969. name: "Front",
  17970. image: {
  17971. source: "./media/characters/linda/front.svg",
  17972. extra: 930 / 874,
  17973. bottom: 0.004
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(6, "feet"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17987. {
  17988. front: {
  17989. height: math.unit(6 + 8 / 12, "feet"),
  17990. weight: math.unit(220, "lb"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/caylex/front.svg",
  17994. extra: 821 / 772,
  17995. bottom: 0.07
  17996. }
  17997. },
  17998. back: {
  17999. height: math.unit(6 + 8 / 12, "feet"),
  18000. weight: math.unit(220, "lb"),
  18001. name: "Back",
  18002. image: {
  18003. source: "./media/characters/caylex/back.svg",
  18004. extra: 821 / 772,
  18005. bottom: 0.022
  18006. }
  18007. },
  18008. hand: {
  18009. height: math.unit(1.25, "feet"),
  18010. name: "Hand",
  18011. image: {
  18012. source: "./media/characters/caylex/hand.svg"
  18013. }
  18014. },
  18015. foot: {
  18016. height: math.unit(1.6, "feet"),
  18017. name: "Foot",
  18018. image: {
  18019. source: "./media/characters/caylex/foot.svg"
  18020. }
  18021. },
  18022. armored: {
  18023. height: math.unit(6 + 8 / 12, "feet"),
  18024. weight: math.unit(250, "lb"),
  18025. name: "Armored",
  18026. image: {
  18027. source: "./media/characters/caylex/armored.svg",
  18028. extra: 1420 / 1310,
  18029. bottom: 0.045
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Normal",
  18036. height: math.unit(6 + 8 / 12, "feet"),
  18037. default: true
  18038. },
  18039. {
  18040. name: "Normal+",
  18041. height: math.unit(12, "feet")
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(7 + 6 / 12, "feet"),
  18050. weight: math.unit(288, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/alana/front.svg",
  18054. extra: 679 / 653,
  18055. bottom: 22.5 / 701
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(7 + 6 / 12, "feet")
  18063. },
  18064. {
  18065. name: "Large",
  18066. height: math.unit(50, "feet")
  18067. },
  18068. {
  18069. name: "Macro",
  18070. height: math.unit(100, "feet"),
  18071. default: true
  18072. },
  18073. {
  18074. name: "Macro+",
  18075. height: math.unit(200, "feet")
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(6 + 1 / 12, "feet"),
  18084. weight: math.unit(210, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/hasani/front.svg",
  18088. extra: 244 / 232,
  18089. bottom: 0.01
  18090. }
  18091. },
  18092. back: {
  18093. height: math.unit(6 + 1 / 12, "feet"),
  18094. weight: math.unit(210, "lb"),
  18095. name: "Back",
  18096. image: {
  18097. source: "./media/characters/hasani/back.svg",
  18098. extra: 244 / 232,
  18099. bottom: 0.01
  18100. }
  18101. },
  18102. },
  18103. [
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(6 + 1 / 12, "feet")
  18107. },
  18108. {
  18109. name: "Macro",
  18110. height: math.unit(175, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(1.82, "meters"),
  18120. weight: math.unit(140, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/nita/front.svg",
  18124. extra: 2473 / 2363,
  18125. bottom: 0.01
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(1.82, "m")
  18133. },
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(300, "m")
  18137. },
  18138. {
  18139. name: "Mistake Canon",
  18140. height: math.unit(0.5, "miles"),
  18141. default: true
  18142. },
  18143. {
  18144. name: "Big Mistake",
  18145. height: math.unit(13, "miles")
  18146. },
  18147. {
  18148. name: "Playing God",
  18149. height: math.unit(2450, "miles")
  18150. },
  18151. ]
  18152. ))
  18153. characterMakers.push(() => makeCharacter(
  18154. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18155. {
  18156. front: {
  18157. height: math.unit(4, "feet"),
  18158. weight: math.unit(120, "lb"),
  18159. name: "Front",
  18160. image: {
  18161. source: "./media/characters/shiriko/front.svg",
  18162. extra: 970/934,
  18163. bottom: 5/975
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(4, "feet"),
  18171. default: true
  18172. },
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18177. {
  18178. front: {
  18179. height: math.unit(6, "feet"),
  18180. name: "front",
  18181. image: {
  18182. source: "./media/characters/deja/front.svg",
  18183. extra: 926 / 840,
  18184. bottom: 0.07
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Planck Length",
  18191. height: math.unit(1.6e-35, "meters")
  18192. },
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(30.48, "meters"),
  18196. default: true
  18197. },
  18198. {
  18199. name: "Universal",
  18200. height: math.unit(8.8e26, "meters")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18206. {
  18207. side: {
  18208. height: math.unit(8, "feet"),
  18209. weight: math.unit(6300, "lb"),
  18210. name: "Side",
  18211. image: {
  18212. source: "./media/characters/anima/side.svg",
  18213. bottom: 0.035
  18214. }
  18215. },
  18216. },
  18217. [
  18218. {
  18219. name: "Normal",
  18220. height: math.unit(8, "feet"),
  18221. default: true
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18227. {
  18228. front: {
  18229. height: math.unit(8, "feet"),
  18230. weight: math.unit(350, "lb"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/bianca/front.svg",
  18234. extra: 234 / 225,
  18235. bottom: 0.03
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(8, "feet"),
  18243. default: true
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18249. {
  18250. front: {
  18251. height: math.unit(11 + 5/12, "feet"),
  18252. weight: math.unit(1200, "lb"),
  18253. name: "Front",
  18254. image: {
  18255. source: "./media/characters/adinia/front.svg",
  18256. extra: 1767/1641,
  18257. bottom: 44/1811
  18258. }
  18259. },
  18260. back: {
  18261. height: math.unit(11 + 5/12, "feet"),
  18262. weight: math.unit(1200, "lb"),
  18263. name: "Back",
  18264. image: {
  18265. source: "./media/characters/adinia/back.svg",
  18266. extra: 1834/1684,
  18267. bottom: 14/1848
  18268. }
  18269. },
  18270. maw: {
  18271. height: math.unit(3.79, "feet"),
  18272. name: "Maw",
  18273. image: {
  18274. source: "./media/characters/adinia/maw.svg"
  18275. }
  18276. },
  18277. rump: {
  18278. height: math.unit(4.6, "feet"),
  18279. name: "Rump",
  18280. image: {
  18281. source: "./media/characters/adinia/rump.svg"
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Normal",
  18288. height: math.unit(11 + 5 / 12, "feet"),
  18289. default: true
  18290. },
  18291. ]
  18292. ))
  18293. characterMakers.push(() => makeCharacter(
  18294. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18295. {
  18296. front: {
  18297. height: math.unit(3, "meters"),
  18298. weight: math.unit(200, "kg"),
  18299. name: "Front",
  18300. image: {
  18301. source: "./media/characters/lykasa/front.svg",
  18302. extra: 1076 / 976,
  18303. bottom: 0.06
  18304. }
  18305. },
  18306. },
  18307. [
  18308. {
  18309. name: "Normal",
  18310. height: math.unit(3, "meters")
  18311. },
  18312. {
  18313. name: "Kaiju",
  18314. height: math.unit(120, "meters"),
  18315. default: true
  18316. },
  18317. {
  18318. name: "Mega Kaiju",
  18319. height: math.unit(240, "km")
  18320. },
  18321. {
  18322. name: "Giga Kaiju",
  18323. height: math.unit(400, "megameters")
  18324. },
  18325. {
  18326. name: "Tera Kaiju",
  18327. height: math.unit(800, "gigameters")
  18328. },
  18329. {
  18330. name: "Kaiju Dragon Goddess",
  18331. height: math.unit(26, "zettaparsecs")
  18332. },
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18337. {
  18338. side: {
  18339. height: math.unit(283 / 124 * 6, "feet"),
  18340. weight: math.unit(35000, "lb"),
  18341. name: "Side",
  18342. image: {
  18343. source: "./media/characters/malfaren/side.svg",
  18344. extra: 1310/529,
  18345. bottom: 24/1334
  18346. }
  18347. },
  18348. front: {
  18349. height: math.unit(22.36, "feet"),
  18350. weight: math.unit(35000, "lb"),
  18351. name: "Front",
  18352. image: {
  18353. source: "./media/characters/malfaren/front.svg",
  18354. extra: 1237/1115,
  18355. bottom: 32/1269
  18356. }
  18357. },
  18358. maw: {
  18359. height: math.unit(6.9, "feet"),
  18360. name: "Maw",
  18361. image: {
  18362. source: "./media/characters/malfaren/maw.svg"
  18363. }
  18364. },
  18365. dick: {
  18366. height: math.unit(6.19, "feet"),
  18367. name: "Dick",
  18368. image: {
  18369. source: "./media/characters/malfaren/dick.svg"
  18370. }
  18371. },
  18372. eye: {
  18373. height: math.unit(0.69, "feet"),
  18374. name: "Eye",
  18375. image: {
  18376. source: "./media/characters/malfaren/eye.svg"
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Big",
  18383. height: math.unit(283 / 162 * 6, "feet"),
  18384. },
  18385. {
  18386. name: "Bigger",
  18387. height: math.unit(283 / 124 * 6, "feet")
  18388. },
  18389. {
  18390. name: "Massive",
  18391. height: math.unit(283 / 92 * 6, "feet"),
  18392. default: true
  18393. },
  18394. {
  18395. name: "👀💦",
  18396. height: math.unit(283 / 73 * 6, "feet"),
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18402. {
  18403. front: {
  18404. height: math.unit(1.7, "m"),
  18405. weight: math.unit(70, "kg"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/kernel/front.svg",
  18409. extra: 222 / 210,
  18410. bottom: 0.007
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Nano",
  18417. height: math.unit(17, "micrometers")
  18418. },
  18419. {
  18420. name: "Micro",
  18421. height: math.unit(1.7, "mm")
  18422. },
  18423. {
  18424. name: "Small",
  18425. height: math.unit(1.7, "cm")
  18426. },
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(1.7, "m"),
  18430. default: true
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(1.75, "meters"),
  18439. weight: math.unit(65, "kg"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/jayne-folest/front.svg",
  18443. extra: 2115 / 2007,
  18444. bottom: 0.02
  18445. }
  18446. },
  18447. back: {
  18448. height: math.unit(1.75, "meters"),
  18449. weight: math.unit(65, "kg"),
  18450. name: "Back",
  18451. image: {
  18452. source: "./media/characters/jayne-folest/back.svg",
  18453. extra: 2115 / 2007,
  18454. bottom: 0.005
  18455. }
  18456. },
  18457. frontClothed: {
  18458. height: math.unit(1.75, "meters"),
  18459. weight: math.unit(65, "kg"),
  18460. name: "Front (Clothed)",
  18461. image: {
  18462. source: "./media/characters/jayne-folest/front-clothed.svg",
  18463. extra: 2115 / 2007,
  18464. bottom: 0.035
  18465. }
  18466. },
  18467. hand: {
  18468. height: math.unit(1 / 1.260, "feet"),
  18469. name: "Hand",
  18470. image: {
  18471. source: "./media/characters/jayne-folest/hand.svg"
  18472. }
  18473. },
  18474. foot: {
  18475. height: math.unit(1 / 0.918, "feet"),
  18476. name: "Foot",
  18477. image: {
  18478. source: "./media/characters/jayne-folest/foot.svg"
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Micro",
  18485. height: math.unit(4, "cm")
  18486. },
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(1.75, "meters")
  18490. },
  18491. {
  18492. name: "Macro",
  18493. height: math.unit(47.5, "meters"),
  18494. default: true
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18500. {
  18501. front: {
  18502. height: math.unit(180, "cm"),
  18503. weight: math.unit(70, "kg"),
  18504. name: "Front",
  18505. image: {
  18506. source: "./media/characters/algier/front.svg",
  18507. extra: 596 / 572,
  18508. bottom: 0.04
  18509. }
  18510. },
  18511. back: {
  18512. height: math.unit(180, "cm"),
  18513. weight: math.unit(70, "kg"),
  18514. name: "Back",
  18515. image: {
  18516. source: "./media/characters/algier/back.svg",
  18517. extra: 596 / 572,
  18518. bottom: 0.025
  18519. }
  18520. },
  18521. frontdressed: {
  18522. height: math.unit(180, "cm"),
  18523. weight: math.unit(150, "kg"),
  18524. name: "Front-dressed",
  18525. image: {
  18526. source: "./media/characters/algier/front-dressed.svg",
  18527. extra: 596 / 572,
  18528. bottom: 0.038
  18529. }
  18530. },
  18531. },
  18532. [
  18533. {
  18534. name: "Micro",
  18535. height: math.unit(5, "cm")
  18536. },
  18537. {
  18538. name: "Normal",
  18539. height: math.unit(180, "cm"),
  18540. default: true
  18541. },
  18542. {
  18543. name: "Macro",
  18544. height: math.unit(64, "m")
  18545. },
  18546. ]
  18547. ))
  18548. characterMakers.push(() => makeCharacter(
  18549. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18550. {
  18551. upright: {
  18552. height: math.unit(7, "feet"),
  18553. weight: math.unit(300, "lb"),
  18554. name: "Upright",
  18555. image: {
  18556. source: "./media/characters/pretzel/upright.svg",
  18557. extra: 534 / 522,
  18558. bottom: 0.065
  18559. }
  18560. },
  18561. sprawling: {
  18562. height: math.unit(3.75, "feet"),
  18563. weight: math.unit(300, "lb"),
  18564. name: "Sprawling",
  18565. image: {
  18566. source: "./media/characters/pretzel/sprawling.svg",
  18567. extra: 314 / 281,
  18568. bottom: 0.1
  18569. }
  18570. },
  18571. tongue: {
  18572. height: math.unit(2, "feet"),
  18573. name: "Tongue",
  18574. image: {
  18575. source: "./media/characters/pretzel/tongue.svg"
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Normal",
  18582. height: math.unit(7, "feet"),
  18583. default: true
  18584. },
  18585. {
  18586. name: "Oversized",
  18587. height: math.unit(15, "feet")
  18588. },
  18589. {
  18590. name: "Huge",
  18591. height: math.unit(30, "feet")
  18592. },
  18593. {
  18594. name: "Macro",
  18595. height: math.unit(250, "feet")
  18596. },
  18597. ]
  18598. ))
  18599. characterMakers.push(() => makeCharacter(
  18600. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18601. {
  18602. sideFront: {
  18603. height: math.unit(5 + 2 / 12, "feet"),
  18604. weight: math.unit(120, "lb"),
  18605. name: "Front Side",
  18606. image: {
  18607. source: "./media/characters/roxi/side-front.svg",
  18608. extra: 2924 / 2717,
  18609. bottom: 0.08
  18610. }
  18611. },
  18612. sideBack: {
  18613. height: math.unit(5 + 2 / 12, "feet"),
  18614. weight: math.unit(120, "lb"),
  18615. name: "Back Side",
  18616. image: {
  18617. source: "./media/characters/roxi/side-back.svg",
  18618. extra: 2904 / 2693,
  18619. bottom: 0.06
  18620. }
  18621. },
  18622. front: {
  18623. height: math.unit(5 + 2 / 12, "feet"),
  18624. weight: math.unit(120, "lb"),
  18625. name: "Front",
  18626. image: {
  18627. source: "./media/characters/roxi/front.svg",
  18628. extra: 2028 / 1907,
  18629. bottom: 0.01
  18630. }
  18631. },
  18632. frontAlt: {
  18633. height: math.unit(5 + 2 / 12, "feet"),
  18634. weight: math.unit(120, "lb"),
  18635. name: "Front (Alt)",
  18636. image: {
  18637. source: "./media/characters/roxi/front-alt.svg",
  18638. extra: 1828 / 1798,
  18639. bottom: 0.01
  18640. }
  18641. },
  18642. sitting: {
  18643. height: math.unit(2.8, "feet"),
  18644. weight: math.unit(120, "lb"),
  18645. name: "Sitting",
  18646. image: {
  18647. source: "./media/characters/roxi/sitting.svg",
  18648. extra: 2660 / 2462,
  18649. bottom: 0.1
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(5 + 2 / 12, "feet"),
  18657. default: true
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18663. {
  18664. side: {
  18665. height: math.unit(55, "feet"),
  18666. weight: math.unit(153, "tons"),
  18667. name: "Side",
  18668. image: {
  18669. source: "./media/characters/shadow/side.svg",
  18670. extra: 701 / 628,
  18671. bottom: 0.02
  18672. }
  18673. },
  18674. flying: {
  18675. height: math.unit(145, "feet"),
  18676. weight: math.unit(153, "tons"),
  18677. name: "Flying",
  18678. image: {
  18679. source: "./media/characters/shadow/flying.svg"
  18680. }
  18681. },
  18682. },
  18683. [
  18684. {
  18685. name: "Normal",
  18686. height: math.unit(55, "feet"),
  18687. default: true
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18693. {
  18694. front: {
  18695. height: math.unit(6, "feet"),
  18696. weight: math.unit(200, "lb"),
  18697. name: "Front",
  18698. image: {
  18699. source: "./media/characters/marcie/front.svg",
  18700. extra: 960 / 876,
  18701. bottom: 58 / 1017.87
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Macro",
  18708. height: math.unit(1, "mile"),
  18709. default: true
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(7, "feet"),
  18718. weight: math.unit(200, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/kachina/front.svg",
  18722. extra: 1290.68 / 1119,
  18723. bottom: 36.5 / 1327.18
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(7, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18737. {
  18738. looking: {
  18739. height: math.unit(2, "meters"),
  18740. weight: math.unit(300, "kg"),
  18741. name: "Looking",
  18742. image: {
  18743. source: "./media/characters/kash/looking.svg",
  18744. extra: 474 / 344,
  18745. bottom: 0.03
  18746. }
  18747. },
  18748. side: {
  18749. height: math.unit(2, "meters"),
  18750. weight: math.unit(300, "kg"),
  18751. name: "Side",
  18752. image: {
  18753. source: "./media/characters/kash/side.svg",
  18754. extra: 302 / 251,
  18755. bottom: 0.03
  18756. }
  18757. },
  18758. front: {
  18759. height: math.unit(2, "meters"),
  18760. weight: math.unit(300, "kg"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/kash/front.svg",
  18764. extra: 495 / 360,
  18765. bottom: 0.015
  18766. }
  18767. },
  18768. },
  18769. [
  18770. {
  18771. name: "Normal",
  18772. height: math.unit(2, "meters"),
  18773. default: true
  18774. },
  18775. {
  18776. name: "Big",
  18777. height: math.unit(3, "meters")
  18778. },
  18779. {
  18780. name: "Large",
  18781. height: math.unit(5, "meters")
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18787. {
  18788. feeding: {
  18789. height: math.unit(6.7, "feet"),
  18790. weight: math.unit(350, "lb"),
  18791. name: "Feeding",
  18792. image: {
  18793. source: "./media/characters/lalim/feeding.svg",
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(6.7, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18807. {
  18808. front: {
  18809. height: math.unit(9.5, "feet"),
  18810. weight: math.unit(600, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/de'vout/front.svg",
  18814. extra: 1443 / 1328,
  18815. bottom: 0.025
  18816. }
  18817. },
  18818. back: {
  18819. height: math.unit(9.5, "feet"),
  18820. weight: math.unit(600, "lb"),
  18821. name: "Back",
  18822. image: {
  18823. source: "./media/characters/de'vout/back.svg",
  18824. extra: 1443 / 1328
  18825. }
  18826. },
  18827. frontDressed: {
  18828. height: math.unit(9.5, "feet"),
  18829. weight: math.unit(600, "lb"),
  18830. name: "Front (Dressed",
  18831. image: {
  18832. source: "./media/characters/de'vout/front-dressed.svg",
  18833. extra: 1443 / 1328,
  18834. bottom: 0.025
  18835. }
  18836. },
  18837. backDressed: {
  18838. height: math.unit(9.5, "feet"),
  18839. weight: math.unit(600, "lb"),
  18840. name: "Back (Dressed",
  18841. image: {
  18842. source: "./media/characters/de'vout/back-dressed.svg",
  18843. extra: 1443 / 1328
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(9.5, "feet"),
  18851. default: true
  18852. },
  18853. ]
  18854. ))
  18855. characterMakers.push(() => makeCharacter(
  18856. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18857. {
  18858. front: {
  18859. height: math.unit(8, "feet"),
  18860. weight: math.unit(225, "lb"),
  18861. name: "Front",
  18862. image: {
  18863. source: "./media/characters/talana/front.svg",
  18864. extra: 1410 / 1300,
  18865. bottom: 0.015
  18866. }
  18867. },
  18868. frontDressed: {
  18869. height: math.unit(8, "feet"),
  18870. weight: math.unit(225, "lb"),
  18871. name: "Front (Dressed",
  18872. image: {
  18873. source: "./media/characters/talana/front-dressed.svg",
  18874. extra: 1410 / 1300,
  18875. bottom: 0.015
  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: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18889. {
  18890. side: {
  18891. height: math.unit(7.2, "feet"),
  18892. weight: math.unit(150, "lb"),
  18893. name: "Side",
  18894. image: {
  18895. source: "./media/characters/xeauvok/side.svg",
  18896. extra: 1975 / 1523,
  18897. bottom: 0.07
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(7.2, "feet"),
  18905. default: true
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18911. {
  18912. side: {
  18913. height: math.unit(4, "meters"),
  18914. weight: math.unit(2200, "kg"),
  18915. name: "Side",
  18916. image: {
  18917. source: "./media/characters/zara/side.svg",
  18918. extra: 765/744,
  18919. bottom: 156/921
  18920. }
  18921. },
  18922. },
  18923. [
  18924. {
  18925. name: "Normal",
  18926. height: math.unit(4, "meters"),
  18927. default: true
  18928. },
  18929. ]
  18930. ))
  18931. characterMakers.push(() => makeCharacter(
  18932. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18933. {
  18934. side: {
  18935. height: math.unit(6, "feet"),
  18936. weight: math.unit(150, "lb"),
  18937. name: "Side",
  18938. image: {
  18939. source: "./media/characters/richard-dragon/side.svg",
  18940. extra: 845 / 340,
  18941. bottom: 0.017
  18942. }
  18943. },
  18944. maw: {
  18945. height: math.unit(2.97, "feet"),
  18946. name: "Maw",
  18947. image: {
  18948. source: "./media/characters/richard-dragon/maw.svg"
  18949. }
  18950. },
  18951. },
  18952. [
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18957. {
  18958. front: {
  18959. height: math.unit(4, "feet"),
  18960. weight: math.unit(100, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/richard-smeargle/front.svg",
  18964. extra: 2952 / 2820,
  18965. bottom: 0.028
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(4, "feet"),
  18973. default: true
  18974. },
  18975. {
  18976. name: "Dynamax",
  18977. height: math.unit(20, "meters")
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18983. {
  18984. front: {
  18985. height: math.unit(6, "feet"),
  18986. weight: math.unit(110, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/klay/front.svg",
  18990. extra: 962 / 883,
  18991. bottom: 0.04
  18992. }
  18993. },
  18994. back: {
  18995. height: math.unit(6, "feet"),
  18996. weight: math.unit(110, "lb"),
  18997. name: "Back",
  18998. image: {
  18999. source: "./media/characters/klay/back.svg",
  19000. extra: 962 / 883
  19001. }
  19002. },
  19003. beans: {
  19004. height: math.unit(1.15, "feet"),
  19005. name: "Beans",
  19006. image: {
  19007. source: "./media/characters/klay/beans.svg"
  19008. }
  19009. },
  19010. },
  19011. [
  19012. {
  19013. name: "Micro",
  19014. height: math.unit(6, "inches")
  19015. },
  19016. {
  19017. name: "Mini",
  19018. height: math.unit(3, "feet")
  19019. },
  19020. {
  19021. name: "Normal",
  19022. height: math.unit(6, "feet"),
  19023. default: true
  19024. },
  19025. {
  19026. name: "Big",
  19027. height: math.unit(25, "feet")
  19028. },
  19029. {
  19030. name: "Macro",
  19031. height: math.unit(100, "feet")
  19032. },
  19033. {
  19034. name: "Megamacro",
  19035. height: math.unit(400, "feet")
  19036. },
  19037. ]
  19038. ))
  19039. characterMakers.push(() => makeCharacter(
  19040. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19041. {
  19042. front: {
  19043. height: math.unit(6, "feet"),
  19044. weight: math.unit(160, "lb"),
  19045. name: "Front",
  19046. image: {
  19047. source: "./media/characters/marcus/front.svg",
  19048. extra: 734 / 676,
  19049. bottom: 0.03
  19050. }
  19051. },
  19052. },
  19053. [
  19054. {
  19055. name: "Little",
  19056. height: math.unit(6, "feet")
  19057. },
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(110, "feet"),
  19061. default: true
  19062. },
  19063. {
  19064. name: "Macro",
  19065. height: math.unit(250, "feet")
  19066. },
  19067. {
  19068. name: "Megamacro",
  19069. height: math.unit(1000, "feet")
  19070. },
  19071. ]
  19072. ))
  19073. characterMakers.push(() => makeCharacter(
  19074. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19075. {
  19076. front: {
  19077. height: math.unit(7, "feet"),
  19078. weight: math.unit(275, "lb"),
  19079. name: "Front",
  19080. image: {
  19081. source: "./media/characters/claude-delroute/front.svg",
  19082. extra: 902/827,
  19083. bottom: 26/928
  19084. }
  19085. },
  19086. side: {
  19087. height: math.unit(7, "feet"),
  19088. weight: math.unit(275, "lb"),
  19089. name: "Side",
  19090. image: {
  19091. source: "./media/characters/claude-delroute/side.svg",
  19092. extra: 908/853,
  19093. bottom: 16/924
  19094. }
  19095. },
  19096. back: {
  19097. height: math.unit(7, "feet"),
  19098. weight: math.unit(275, "lb"),
  19099. name: "Back",
  19100. image: {
  19101. source: "./media/characters/claude-delroute/back.svg",
  19102. extra: 911/829,
  19103. bottom: 18/929
  19104. }
  19105. },
  19106. maw: {
  19107. height: math.unit(0.6407, "meters"),
  19108. name: "Maw",
  19109. image: {
  19110. source: "./media/characters/claude-delroute/maw.svg"
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(7, "feet"),
  19118. default: true
  19119. },
  19120. {
  19121. name: "Lorge",
  19122. height: math.unit(20, "feet")
  19123. },
  19124. ]
  19125. ))
  19126. characterMakers.push(() => makeCharacter(
  19127. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19128. {
  19129. front: {
  19130. height: math.unit(8 + 4 / 12, "feet"),
  19131. weight: math.unit(600, "lb"),
  19132. name: "Front",
  19133. image: {
  19134. source: "./media/characters/dragonien/front.svg",
  19135. extra: 100 / 94,
  19136. bottom: 3.3 / 103.3445
  19137. }
  19138. },
  19139. back: {
  19140. height: math.unit(8 + 4 / 12, "feet"),
  19141. weight: math.unit(600, "lb"),
  19142. name: "Back",
  19143. image: {
  19144. source: "./media/characters/dragonien/back.svg",
  19145. extra: 776 / 746,
  19146. bottom: 6.4 / 782.0616
  19147. }
  19148. },
  19149. foot: {
  19150. height: math.unit(1.54, "feet"),
  19151. name: "Foot",
  19152. image: {
  19153. source: "./media/characters/dragonien/foot.svg",
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(8 + 4 / 12, "feet"),
  19161. default: true
  19162. },
  19163. {
  19164. name: "Macro",
  19165. height: math.unit(200, "feet")
  19166. },
  19167. {
  19168. name: "Megamacro",
  19169. height: math.unit(1, "mile")
  19170. },
  19171. {
  19172. name: "Gigamacro",
  19173. height: math.unit(1000, "miles")
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19179. {
  19180. front: {
  19181. height: math.unit(5 + 2 / 12, "feet"),
  19182. weight: math.unit(110, "lb"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/desta/front.svg",
  19186. extra: 767 / 726,
  19187. bottom: 11.7 / 779
  19188. }
  19189. },
  19190. back: {
  19191. height: math.unit(5 + 2 / 12, "feet"),
  19192. weight: math.unit(110, "lb"),
  19193. name: "Back",
  19194. image: {
  19195. source: "./media/characters/desta/back.svg",
  19196. extra: 777 / 728,
  19197. bottom: 6 / 784
  19198. }
  19199. },
  19200. frontAlt: {
  19201. height: math.unit(5 + 2 / 12, "feet"),
  19202. weight: math.unit(110, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/desta/front-alt.svg",
  19206. extra: 1482 / 1417
  19207. }
  19208. },
  19209. side: {
  19210. height: math.unit(5 + 2 / 12, "feet"),
  19211. weight: math.unit(110, "lb"),
  19212. name: "Side",
  19213. image: {
  19214. source: "./media/characters/desta/side.svg",
  19215. extra: 2579 / 2491,
  19216. bottom: 0.053
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Micro",
  19223. height: math.unit(6, "inches")
  19224. },
  19225. {
  19226. name: "Normal",
  19227. height: math.unit(5 + 2 / 12, "feet"),
  19228. default: true
  19229. },
  19230. {
  19231. name: "Macro",
  19232. height: math.unit(62, "feet")
  19233. },
  19234. {
  19235. name: "Megamacro",
  19236. height: math.unit(1800, "feet")
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(10, "feet"),
  19245. weight: math.unit(700, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/storm-alystar/front.svg",
  19249. extra: 2112 / 1898,
  19250. bottom: 0.034
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Micro",
  19257. height: math.unit(3.5, "inches")
  19258. },
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(10, "feet"),
  19262. default: true
  19263. },
  19264. {
  19265. name: "Macro",
  19266. height: math.unit(400, "feet")
  19267. },
  19268. {
  19269. name: "Deific",
  19270. height: math.unit(60, "miles")
  19271. },
  19272. ]
  19273. ))
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19276. {
  19277. front: {
  19278. height: math.unit(2.35, "meters"),
  19279. weight: math.unit(119, "kg"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/ilia/front.svg",
  19283. extra: 1285 / 1255,
  19284. bottom: 0.06
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(2.35, "meters")
  19292. },
  19293. {
  19294. name: "Macro",
  19295. height: math.unit(140, "meters"),
  19296. default: true
  19297. },
  19298. {
  19299. name: "Megamacro",
  19300. height: math.unit(100, "miles")
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(6 + 5 / 12, "feet"),
  19309. weight: math.unit(190, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/kingdead/front.svg",
  19313. extra: 1228 / 1177
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Micro",
  19320. height: math.unit(7, "inches")
  19321. },
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(6 + 5 / 12, "feet")
  19325. },
  19326. {
  19327. name: "Macro",
  19328. height: math.unit(150, "feet"),
  19329. default: true
  19330. },
  19331. {
  19332. name: "Megamacro",
  19333. height: math.unit(200, "miles")
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19339. {
  19340. front: {
  19341. height: math.unit(8, "feet"),
  19342. weight: math.unit(600, "lb"),
  19343. name: "Front",
  19344. image: {
  19345. source: "./media/characters/kyrehx/front.svg",
  19346. extra: 1195 / 1095,
  19347. bottom: 0.034
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Micro",
  19354. height: math.unit(2, "inches")
  19355. },
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(8, "feet"),
  19359. default: true
  19360. },
  19361. {
  19362. name: "Macro",
  19363. height: math.unit(255, "feet")
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19369. {
  19370. front: {
  19371. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19372. weight: math.unit(184, "lb"),
  19373. name: "Front",
  19374. image: {
  19375. source: "./media/characters/xang/front.svg",
  19376. extra: 845 / 755
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19384. default: true
  19385. },
  19386. {
  19387. name: "Macro",
  19388. height: math.unit(0.935 * 146, "feet")
  19389. },
  19390. {
  19391. name: "Megamacro",
  19392. height: math.unit(0.935 * 3, "miles")
  19393. },
  19394. ]
  19395. ))
  19396. characterMakers.push(() => makeCharacter(
  19397. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19398. {
  19399. frontDressed: {
  19400. height: math.unit(5 + 7 / 12, "feet"),
  19401. weight: math.unit(140, "lb"),
  19402. name: "Front (Dressed)",
  19403. image: {
  19404. source: "./media/characters/doc-weardno/front-dressed.svg",
  19405. extra: 263 / 234
  19406. }
  19407. },
  19408. backDressed: {
  19409. height: math.unit(5 + 7 / 12, "feet"),
  19410. weight: math.unit(140, "lb"),
  19411. name: "Back (Dressed)",
  19412. image: {
  19413. source: "./media/characters/doc-weardno/back-dressed.svg",
  19414. extra: 266 / 238
  19415. }
  19416. },
  19417. front: {
  19418. height: math.unit(5 + 7 / 12, "feet"),
  19419. weight: math.unit(140, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/doc-weardno/front.svg",
  19423. extra: 254 / 233
  19424. }
  19425. },
  19426. },
  19427. [
  19428. {
  19429. name: "Micro",
  19430. height: math.unit(3, "inches")
  19431. },
  19432. {
  19433. name: "Normal",
  19434. height: math.unit(5 + 7 / 12, "feet"),
  19435. default: true
  19436. },
  19437. {
  19438. name: "Macro",
  19439. height: math.unit(25, "feet")
  19440. },
  19441. {
  19442. name: "Megamacro",
  19443. height: math.unit(2, "miles")
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19449. {
  19450. front: {
  19451. height: math.unit(6 + 2 / 12, "feet"),
  19452. weight: math.unit(153, "lb"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/seth-whilst/front.svg",
  19456. bottom: 0.07
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Micro",
  19463. height: math.unit(5, "inches")
  19464. },
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(6 + 2 / 12, "feet"),
  19468. default: true
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19474. {
  19475. front: {
  19476. height: math.unit(3, "inches"),
  19477. weight: math.unit(8, "grams"),
  19478. name: "Front",
  19479. image: {
  19480. source: "./media/characters/pocket-jabari/front.svg",
  19481. extra: 1024 / 974,
  19482. bottom: 0.039
  19483. }
  19484. },
  19485. },
  19486. [
  19487. {
  19488. name: "Minimicro",
  19489. height: math.unit(8, "mm")
  19490. },
  19491. {
  19492. name: "Micro",
  19493. height: math.unit(3, "inches"),
  19494. default: true
  19495. },
  19496. {
  19497. name: "Normal",
  19498. height: math.unit(3, "feet")
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19504. {
  19505. frontDressed: {
  19506. height: math.unit(15, "feet"),
  19507. weight: math.unit(3280, "lb"),
  19508. name: "Front (Dressed)",
  19509. image: {
  19510. source: "./media/characters/sapphy/front-dressed.svg",
  19511. extra: 1951/1654,
  19512. bottom: 194/2145
  19513. },
  19514. form: "anthro",
  19515. default: true
  19516. },
  19517. backDressed: {
  19518. height: math.unit(15, "feet"),
  19519. weight: math.unit(3280, "lb"),
  19520. name: "Back (Dressed)",
  19521. image: {
  19522. source: "./media/characters/sapphy/back-dressed.svg",
  19523. extra: 2058/1918,
  19524. bottom: 125/2183
  19525. },
  19526. form: "anthro"
  19527. },
  19528. frontNude: {
  19529. height: math.unit(15, "feet"),
  19530. weight: math.unit(3280, "lb"),
  19531. name: "Front (Nude)",
  19532. image: {
  19533. source: "./media/characters/sapphy/front-nude.svg",
  19534. extra: 1951/1654,
  19535. bottom: 194/2145
  19536. },
  19537. form: "anthro"
  19538. },
  19539. backNude: {
  19540. height: math.unit(15, "feet"),
  19541. weight: math.unit(3280, "lb"),
  19542. name: "Back (Nude)",
  19543. image: {
  19544. source: "./media/characters/sapphy/back-nude.svg",
  19545. extra: 2058/1918,
  19546. bottom: 125/2183
  19547. },
  19548. form: "anthro"
  19549. },
  19550. full: {
  19551. height: math.unit(15, "feet"),
  19552. weight: math.unit(3280, "lb"),
  19553. name: "Full",
  19554. image: {
  19555. source: "./media/characters/sapphy/full.svg",
  19556. extra: 1396/1317,
  19557. bottom: 44/1440
  19558. },
  19559. form: "anthro"
  19560. },
  19561. dick: {
  19562. height: math.unit(3.8, "feet"),
  19563. name: "Dick",
  19564. image: {
  19565. source: "./media/characters/sapphy/dick.svg"
  19566. },
  19567. form: "anthro"
  19568. },
  19569. feral: {
  19570. height: math.unit(35, "feet"),
  19571. weight: math.unit(160, "tons"),
  19572. name: "Feral",
  19573. image: {
  19574. source: "./media/characters/sapphy/feral.svg",
  19575. extra: 1050/573,
  19576. bottom: 60/1110
  19577. },
  19578. form: "feral",
  19579. default: true
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(15, "feet"),
  19586. form: "anthro"
  19587. },
  19588. {
  19589. name: "Casual Macro",
  19590. height: math.unit(120, "feet"),
  19591. form: "anthro"
  19592. },
  19593. {
  19594. name: "Macro",
  19595. height: math.unit(2150, "feet"),
  19596. default: true,
  19597. form: "anthro"
  19598. },
  19599. {
  19600. name: "Megamacro",
  19601. height: math.unit(8, "miles"),
  19602. form: "anthro"
  19603. },
  19604. {
  19605. name: "Galaxy Mom",
  19606. height: math.unit(6, "megalightyears"),
  19607. form: "anthro"
  19608. },
  19609. {
  19610. name: "Normal",
  19611. height: math.unit(35, "feet"),
  19612. form: "feral",
  19613. default: true
  19614. },
  19615. {
  19616. name: "Macro",
  19617. height: math.unit(300, "feet"),
  19618. form: "feral"
  19619. },
  19620. {
  19621. name: "Galaxy Mom",
  19622. height: math.unit(10, "megalightyears"),
  19623. form: "feral"
  19624. },
  19625. ],
  19626. {
  19627. "anthro": {
  19628. name: "Anthro",
  19629. default: true
  19630. },
  19631. "feral": {
  19632. name: "Feral"
  19633. }
  19634. }
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(6, "feet"),
  19641. weight: math.unit(170, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/kiro/front.svg",
  19645. extra: 1064 / 1012,
  19646. bottom: 0.052
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Micro",
  19653. height: math.unit(6, "inches")
  19654. },
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(6, "feet"),
  19658. default: true
  19659. },
  19660. {
  19661. name: "Macro",
  19662. height: math.unit(72, "feet")
  19663. },
  19664. ]
  19665. ))
  19666. characterMakers.push(() => makeCharacter(
  19667. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19668. {
  19669. front: {
  19670. height: math.unit(5 + 9 / 12, "feet"),
  19671. weight: math.unit(175, "lb"),
  19672. name: "Front",
  19673. image: {
  19674. source: "./media/characters/irishfox/front.svg",
  19675. extra: 1912 / 1680,
  19676. bottom: 0.02
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Nano",
  19683. height: math.unit(1, "mm")
  19684. },
  19685. {
  19686. name: "Micro",
  19687. height: math.unit(2, "inches")
  19688. },
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(5 + 9 / 12, "feet"),
  19692. default: true
  19693. },
  19694. {
  19695. name: "Macro",
  19696. height: math.unit(45, "feet")
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19702. {
  19703. front: {
  19704. height: math.unit(6 + 1 / 12, "feet"),
  19705. weight: math.unit(75, "lb"),
  19706. name: "Front",
  19707. image: {
  19708. source: "./media/characters/aronai-sieyes/front.svg",
  19709. extra: 1532/1450,
  19710. bottom: 42/1574
  19711. }
  19712. },
  19713. side: {
  19714. height: math.unit(6 + 1 / 12, "feet"),
  19715. weight: math.unit(75, "lb"),
  19716. name: "Side",
  19717. image: {
  19718. source: "./media/characters/aronai-sieyes/side.svg",
  19719. extra: 1422/1365,
  19720. bottom: 148/1570
  19721. }
  19722. },
  19723. back: {
  19724. height: math.unit(6 + 1 / 12, "feet"),
  19725. weight: math.unit(75, "lb"),
  19726. name: "Back",
  19727. image: {
  19728. source: "./media/characters/aronai-sieyes/back.svg",
  19729. extra: 1526/1464,
  19730. bottom: 51/1577
  19731. }
  19732. },
  19733. dressed: {
  19734. height: math.unit(6 + 1 / 12, "feet"),
  19735. weight: math.unit(75, "lb"),
  19736. name: "Dressed",
  19737. image: {
  19738. source: "./media/characters/aronai-sieyes/dressed.svg",
  19739. extra: 1559/1483,
  19740. bottom: 39/1598
  19741. }
  19742. },
  19743. slit: {
  19744. height: math.unit(1.3, "feet"),
  19745. name: "Slit",
  19746. image: {
  19747. source: "./media/characters/aronai-sieyes/slit.svg"
  19748. }
  19749. },
  19750. slitSpread: {
  19751. height: math.unit(0.9, "feet"),
  19752. name: "Slit (Spread)",
  19753. image: {
  19754. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19755. }
  19756. },
  19757. rump: {
  19758. height: math.unit(1.3, "feet"),
  19759. name: "Rump",
  19760. image: {
  19761. source: "./media/characters/aronai-sieyes/rump.svg"
  19762. }
  19763. },
  19764. maw: {
  19765. height: math.unit(1.25, "feet"),
  19766. name: "Maw",
  19767. image: {
  19768. source: "./media/characters/aronai-sieyes/maw.svg"
  19769. }
  19770. },
  19771. feral: {
  19772. height: math.unit(18, "feet"),
  19773. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19774. name: "Feral",
  19775. image: {
  19776. source: "./media/characters/aronai-sieyes/feral.svg",
  19777. extra: 1530 / 1240,
  19778. bottom: 0.035
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Micro",
  19785. height: math.unit(2, "inches")
  19786. },
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(6 + 1 / 12, "feet"),
  19790. default: true
  19791. }
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19796. {
  19797. front: {
  19798. height: math.unit(12, "feet"),
  19799. weight: math.unit(410, "kg"),
  19800. name: "Front",
  19801. image: {
  19802. source: "./media/characters/xuna/front.svg",
  19803. extra: 2184 / 1980
  19804. }
  19805. },
  19806. side: {
  19807. height: math.unit(12, "feet"),
  19808. weight: math.unit(410, "kg"),
  19809. name: "Side",
  19810. image: {
  19811. source: "./media/characters/xuna/side.svg",
  19812. extra: 2184 / 1980
  19813. }
  19814. },
  19815. back: {
  19816. height: math.unit(12, "feet"),
  19817. weight: math.unit(410, "kg"),
  19818. name: "Back",
  19819. image: {
  19820. source: "./media/characters/xuna/back.svg",
  19821. extra: 2184 / 1980
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Nano glow",
  19828. height: math.unit(10, "nm")
  19829. },
  19830. {
  19831. name: "Micro floof",
  19832. height: math.unit(0.3, "m")
  19833. },
  19834. {
  19835. name: "Huggable softy boi",
  19836. height: math.unit(3.6576, "m"),
  19837. default: true
  19838. },
  19839. {
  19840. name: "Admirable floof",
  19841. height: math.unit(80, "meters")
  19842. },
  19843. {
  19844. name: "Gentle macro",
  19845. height: math.unit(300, "meters")
  19846. },
  19847. {
  19848. name: "Very careful floof",
  19849. height: math.unit(3200, "meters")
  19850. },
  19851. {
  19852. name: "The mega floof",
  19853. height: math.unit(36000, "meters")
  19854. },
  19855. {
  19856. name: "Giga-fur-Wicker",
  19857. height: math.unit(4800000, "meters")
  19858. },
  19859. {
  19860. name: "Licky world",
  19861. height: math.unit(20000000, "meters")
  19862. },
  19863. {
  19864. name: "Floofy cyan sun",
  19865. height: math.unit(1500000000, "meters")
  19866. },
  19867. {
  19868. name: "Milky Wicker",
  19869. height: math.unit(1000000000000000000000, "meters")
  19870. },
  19871. {
  19872. name: "The observing Wicker",
  19873. height: math.unit(999999999999999999999999999, "meters")
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19879. {
  19880. front: {
  19881. height: math.unit(5 + 9 / 12, "feet"),
  19882. weight: math.unit(150, "lb"),
  19883. name: "Front",
  19884. image: {
  19885. source: "./media/characters/arokha-sieyes/front.svg",
  19886. extra: 1425 / 1284,
  19887. bottom: 0.05
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(5 + 9 / 12, "feet")
  19895. },
  19896. {
  19897. name: "Macro",
  19898. height: math.unit(30, "meters"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(6, "feet"),
  19908. weight: math.unit(180, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/arokh-sieyes/front.svg",
  19912. extra: 1830 / 1769,
  19913. bottom: 0.01
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(6, "feet")
  19921. },
  19922. {
  19923. name: "Macro",
  19924. height: math.unit(30, "meters"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19931. {
  19932. side: {
  19933. height: math.unit(13 + 1 / 12, "feet"),
  19934. weight: math.unit(8.5, "tonnes"),
  19935. name: "Side",
  19936. image: {
  19937. source: "./media/characters/goldeneye/side.svg",
  19938. extra: 1182 / 778,
  19939. bottom: 0.067
  19940. }
  19941. },
  19942. paw: {
  19943. height: math.unit(3.4, "feet"),
  19944. name: "Paw",
  19945. image: {
  19946. source: "./media/characters/goldeneye/paw.svg"
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(13 + 1 / 12, "feet"),
  19954. default: true
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19960. {
  19961. front: {
  19962. height: math.unit(6 + 1 / 12, "feet"),
  19963. weight: math.unit(210, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/leonardo-lycheborne/front.svg",
  19967. extra: 776/723,
  19968. bottom: 34/810
  19969. }
  19970. },
  19971. side: {
  19972. height: math.unit(6 + 1 / 12, "feet"),
  19973. weight: math.unit(210, "lb"),
  19974. name: "Side",
  19975. image: {
  19976. source: "./media/characters/leonardo-lycheborne/side.svg",
  19977. extra: 780/728,
  19978. bottom: 12/792
  19979. }
  19980. },
  19981. back: {
  19982. height: math.unit(6 + 1 / 12, "feet"),
  19983. weight: math.unit(210, "lb"),
  19984. name: "Back",
  19985. image: {
  19986. source: "./media/characters/leonardo-lycheborne/back.svg",
  19987. extra: 775/721,
  19988. bottom: 17/792
  19989. }
  19990. },
  19991. hand: {
  19992. height: math.unit(1.08, "feet"),
  19993. name: "Hand",
  19994. image: {
  19995. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19996. }
  19997. },
  19998. foot: {
  19999. height: math.unit(1.32, "feet"),
  20000. name: "Foot",
  20001. image: {
  20002. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20003. }
  20004. },
  20005. maw: {
  20006. height: math.unit(1, "feet"),
  20007. name: "Maw",
  20008. image: {
  20009. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20010. }
  20011. },
  20012. were: {
  20013. height: math.unit(20, "feet"),
  20014. weight: math.unit(7800, "lb"),
  20015. name: "Were",
  20016. image: {
  20017. source: "./media/characters/leonardo-lycheborne/were.svg",
  20018. extra: 1224/1165,
  20019. bottom: 72/1296
  20020. }
  20021. },
  20022. feral: {
  20023. height: math.unit(7.5, "feet"),
  20024. weight: math.unit(600, "lb"),
  20025. name: "Feral",
  20026. image: {
  20027. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20028. extra: 797/702,
  20029. bottom: 139/936
  20030. }
  20031. },
  20032. taur: {
  20033. height: math.unit(11, "feet"),
  20034. weight: math.unit(3300, "lb"),
  20035. name: "Taur",
  20036. image: {
  20037. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20038. extra: 1271/1197,
  20039. bottom: 47/1318
  20040. }
  20041. },
  20042. barghest: {
  20043. height: math.unit(11, "feet"),
  20044. weight: math.unit(1300, "lb"),
  20045. name: "Barghest",
  20046. image: {
  20047. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20048. extra: 1291/1204,
  20049. bottom: 37/1328
  20050. }
  20051. },
  20052. dick: {
  20053. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20054. name: "Dick",
  20055. image: {
  20056. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20057. }
  20058. },
  20059. dickWere: {
  20060. height: math.unit((20) / 3.8, "feet"),
  20061. name: "Dick (Were)",
  20062. image: {
  20063. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Normal",
  20070. height: math.unit(6 + 1 / 12, "feet"),
  20071. default: true
  20072. },
  20073. ]
  20074. ))
  20075. characterMakers.push(() => makeCharacter(
  20076. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20077. {
  20078. front: {
  20079. height: math.unit(10, "feet"),
  20080. weight: math.unit(350, "lb"),
  20081. name: "Front",
  20082. image: {
  20083. source: "./media/characters/jet/front.svg",
  20084. extra: 2050 / 1980,
  20085. bottom: 0.013
  20086. }
  20087. },
  20088. back: {
  20089. height: math.unit(10, "feet"),
  20090. weight: math.unit(350, "lb"),
  20091. name: "Back",
  20092. image: {
  20093. source: "./media/characters/jet/back.svg",
  20094. extra: 2050 / 1980,
  20095. bottom: 0.013
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Micro",
  20102. height: math.unit(6, "inches")
  20103. },
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(10, "feet"),
  20107. default: true
  20108. },
  20109. {
  20110. name: "Macro",
  20111. height: math.unit(100, "feet")
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20117. {
  20118. front: {
  20119. height: math.unit(15, "feet"),
  20120. weight: math.unit(2800, "lb"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/tanarath/front.svg",
  20124. extra: 2392 / 2220,
  20125. bottom: 0.03
  20126. }
  20127. },
  20128. back: {
  20129. height: math.unit(15, "feet"),
  20130. weight: math.unit(2800, "lb"),
  20131. name: "Back",
  20132. image: {
  20133. source: "./media/characters/tanarath/back.svg",
  20134. extra: 2392 / 2220,
  20135. bottom: 0.03
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Normal",
  20142. height: math.unit(15, "feet"),
  20143. default: true
  20144. },
  20145. ]
  20146. ))
  20147. characterMakers.push(() => makeCharacter(
  20148. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20149. {
  20150. front: {
  20151. height: math.unit(7 + 1 / 12, "feet"),
  20152. weight: math.unit(175, "lb"),
  20153. name: "Front",
  20154. image: {
  20155. source: "./media/characters/patty-cattybatty/front.svg",
  20156. extra: 908 / 874,
  20157. bottom: 0.025
  20158. }
  20159. },
  20160. },
  20161. [
  20162. {
  20163. name: "Micro",
  20164. height: math.unit(1, "inch")
  20165. },
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(7 + 1 / 12, "feet")
  20169. },
  20170. {
  20171. name: "Mini Macro",
  20172. height: math.unit(155, "feet")
  20173. },
  20174. {
  20175. name: "Macro",
  20176. height: math.unit(1077, "feet")
  20177. },
  20178. {
  20179. name: "Mega Macro",
  20180. height: math.unit(47650, "feet"),
  20181. default: true
  20182. },
  20183. {
  20184. name: "Giga Macro",
  20185. height: math.unit(440, "miles")
  20186. },
  20187. {
  20188. name: "Tera Macro",
  20189. height: math.unit(8700, "miles")
  20190. },
  20191. {
  20192. name: "Planetary Macro",
  20193. height: math.unit(32700, "miles")
  20194. },
  20195. {
  20196. name: "Solar Macro",
  20197. height: math.unit(550000, "miles")
  20198. },
  20199. {
  20200. name: "Celestial Macro",
  20201. height: math.unit(2.5, "AU")
  20202. },
  20203. ]
  20204. ))
  20205. characterMakers.push(() => makeCharacter(
  20206. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20207. {
  20208. front: {
  20209. height: math.unit(4 + 5 / 12, "feet"),
  20210. weight: math.unit(90, "lb"),
  20211. name: "Front",
  20212. image: {
  20213. source: "./media/characters/cappu/front.svg",
  20214. extra: 1247 / 1152,
  20215. bottom: 0.012
  20216. }
  20217. },
  20218. },
  20219. [
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(4 + 5 / 12, "feet"),
  20223. default: true
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20229. {
  20230. frontDressed: {
  20231. height: math.unit(70, "cm"),
  20232. weight: math.unit(6, "kg"),
  20233. name: "Front (Dressed)",
  20234. image: {
  20235. source: "./media/characters/sebi/front-dressed.svg",
  20236. extra: 713.5 / 686.5,
  20237. bottom: 0.003
  20238. }
  20239. },
  20240. front: {
  20241. height: math.unit(70, "cm"),
  20242. weight: math.unit(5, "kg"),
  20243. name: "Front",
  20244. image: {
  20245. source: "./media/characters/sebi/front.svg",
  20246. extra: 713.5 / 686.5,
  20247. bottom: 0.003
  20248. }
  20249. }
  20250. },
  20251. [
  20252. {
  20253. name: "Normal",
  20254. height: math.unit(70, "cm"),
  20255. default: true
  20256. },
  20257. {
  20258. name: "Macro",
  20259. height: math.unit(8, "meters")
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20265. {
  20266. front: {
  20267. height: math.unit(6, "feet"),
  20268. weight: math.unit(150, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/typhek/front.svg",
  20272. extra: 1948 / 1929,
  20273. bottom: 0.025
  20274. }
  20275. },
  20276. side: {
  20277. height: math.unit(6, "feet"),
  20278. weight: math.unit(150, "lb"),
  20279. name: "Side",
  20280. image: {
  20281. source: "./media/characters/typhek/side.svg",
  20282. extra: 2034 / 2010,
  20283. bottom: 0.003
  20284. }
  20285. },
  20286. back: {
  20287. height: math.unit(6, "feet"),
  20288. weight: math.unit(150, "lb"),
  20289. name: "Back",
  20290. image: {
  20291. source: "./media/characters/typhek/back.svg",
  20292. extra: 2005 / 1978,
  20293. bottom: 0.004
  20294. }
  20295. },
  20296. palm: {
  20297. height: math.unit(1.2, "feet"),
  20298. name: "Palm",
  20299. image: {
  20300. source: "./media/characters/typhek/palm.svg"
  20301. }
  20302. },
  20303. fist: {
  20304. height: math.unit(1.1, "feet"),
  20305. name: "Fist",
  20306. image: {
  20307. source: "./media/characters/typhek/fist.svg"
  20308. }
  20309. },
  20310. foot: {
  20311. height: math.unit(1.57, "feet"),
  20312. name: "Foot",
  20313. image: {
  20314. source: "./media/characters/typhek/foot.svg"
  20315. }
  20316. },
  20317. sole: {
  20318. height: math.unit(2.05, "feet"),
  20319. name: "Sole",
  20320. image: {
  20321. source: "./media/characters/typhek/sole.svg"
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Macro",
  20328. height: math.unit(40, "stories"),
  20329. default: true
  20330. },
  20331. {
  20332. name: "Megamacro",
  20333. height: math.unit(1, "mile")
  20334. },
  20335. {
  20336. name: "Gigamacro",
  20337. height: math.unit(4000, "solarradii")
  20338. },
  20339. {
  20340. name: "Universal",
  20341. height: math.unit(1.1, "universes")
  20342. }
  20343. ]
  20344. ))
  20345. characterMakers.push(() => makeCharacter(
  20346. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20347. {
  20348. side: {
  20349. height: math.unit(5 + 7 / 12, "feet"),
  20350. weight: math.unit(150, "lb"),
  20351. name: "Side",
  20352. image: {
  20353. source: "./media/characters/kassy/side.svg",
  20354. extra: 1280 / 1225,
  20355. bottom: 0.002
  20356. }
  20357. },
  20358. front: {
  20359. height: math.unit(5 + 7 / 12, "feet"),
  20360. weight: math.unit(150, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/kassy/front.svg",
  20364. extra: 1280 / 1225,
  20365. bottom: 0.025
  20366. }
  20367. },
  20368. back: {
  20369. height: math.unit(5 + 7 / 12, "feet"),
  20370. weight: math.unit(150, "lb"),
  20371. name: "Back",
  20372. image: {
  20373. source: "./media/characters/kassy/back.svg",
  20374. extra: 1280 / 1225,
  20375. bottom: 0.002
  20376. }
  20377. },
  20378. foot: {
  20379. height: math.unit(1.266, "feet"),
  20380. name: "Foot",
  20381. image: {
  20382. source: "./media/characters/kassy/foot.svg"
  20383. }
  20384. },
  20385. },
  20386. [
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(5 + 7 / 12, "feet")
  20390. },
  20391. {
  20392. name: "Macro",
  20393. height: math.unit(137, "feet"),
  20394. default: true
  20395. },
  20396. {
  20397. name: "Megamacro",
  20398. height: math.unit(1, "mile")
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(6 + 1 / 12, "feet"),
  20407. weight: math.unit(200, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/neil/front.svg",
  20411. extra: 1326 / 1250,
  20412. bottom: 0.023
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(6 + 1 / 12, "feet"),
  20420. default: true
  20421. },
  20422. {
  20423. name: "Macro",
  20424. height: math.unit(200, "feet")
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20430. {
  20431. front: {
  20432. height: math.unit(5 + 9 / 12, "feet"),
  20433. weight: math.unit(190, "lb"),
  20434. name: "Front",
  20435. image: {
  20436. source: "./media/characters/atticus/front.svg",
  20437. extra: 2934 / 2785,
  20438. bottom: 0.025
  20439. }
  20440. },
  20441. },
  20442. [
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(5 + 9 / 12, "feet"),
  20446. default: true
  20447. },
  20448. {
  20449. name: "Macro",
  20450. height: math.unit(180, "feet")
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20456. {
  20457. side: {
  20458. height: math.unit(9, "feet"),
  20459. weight: math.unit(650, "lb"),
  20460. name: "Side",
  20461. image: {
  20462. source: "./media/characters/milo/side.svg",
  20463. extra: 2644 / 2310,
  20464. bottom: 0.032
  20465. }
  20466. },
  20467. },
  20468. [
  20469. {
  20470. name: "Normal",
  20471. height: math.unit(9, "feet"),
  20472. default: true
  20473. },
  20474. {
  20475. name: "Macro",
  20476. height: math.unit(300, "feet")
  20477. },
  20478. ]
  20479. ))
  20480. characterMakers.push(() => makeCharacter(
  20481. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20482. {
  20483. side: {
  20484. height: math.unit(8, "meters"),
  20485. weight: math.unit(90000, "kg"),
  20486. name: "Side",
  20487. image: {
  20488. source: "./media/characters/ijzer/side.svg",
  20489. extra: 2756 / 1600,
  20490. bottom: 0.01
  20491. }
  20492. },
  20493. },
  20494. [
  20495. {
  20496. name: "Small",
  20497. height: math.unit(3, "meters")
  20498. },
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(8, "meters"),
  20502. default: true
  20503. },
  20504. {
  20505. name: "Normal+",
  20506. height: math.unit(10, "meters")
  20507. },
  20508. {
  20509. name: "Bigger",
  20510. height: math.unit(24, "meters")
  20511. },
  20512. {
  20513. name: "Huge",
  20514. height: math.unit(80, "meters")
  20515. },
  20516. ]
  20517. ))
  20518. characterMakers.push(() => makeCharacter(
  20519. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20520. {
  20521. front: {
  20522. height: math.unit(6 + 2 / 12, "feet"),
  20523. weight: math.unit(153, "lb"),
  20524. name: "Front",
  20525. image: {
  20526. source: "./media/characters/luca-cervicum/front.svg",
  20527. extra: 370 / 327,
  20528. bottom: 0.015
  20529. }
  20530. },
  20531. back: {
  20532. height: math.unit(6 + 2 / 12, "feet"),
  20533. weight: math.unit(153, "lb"),
  20534. name: "Back",
  20535. image: {
  20536. source: "./media/characters/luca-cervicum/back.svg",
  20537. extra: 367 / 333,
  20538. bottom: 0.005
  20539. }
  20540. },
  20541. frontGear: {
  20542. height: math.unit(6 + 2 / 12, "feet"),
  20543. weight: math.unit(173, "lb"),
  20544. name: "Front (Gear)",
  20545. image: {
  20546. source: "./media/characters/luca-cervicum/front-gear.svg",
  20547. extra: 377 / 333,
  20548. bottom: 0.006
  20549. }
  20550. },
  20551. },
  20552. [
  20553. {
  20554. name: "Normal",
  20555. height: math.unit(6 + 2 / 12, "feet"),
  20556. default: true
  20557. },
  20558. ]
  20559. ))
  20560. characterMakers.push(() => makeCharacter(
  20561. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20562. {
  20563. front: {
  20564. height: math.unit(6 + 1 / 12, "feet"),
  20565. weight: math.unit(304, "lb"),
  20566. name: "Front",
  20567. image: {
  20568. source: "./media/characters/oliver/front.svg",
  20569. extra: 157 / 143,
  20570. bottom: 0.08
  20571. }
  20572. },
  20573. },
  20574. [
  20575. {
  20576. name: "Normal",
  20577. height: math.unit(6 + 1 / 12, "feet"),
  20578. default: true
  20579. },
  20580. ]
  20581. ))
  20582. characterMakers.push(() => makeCharacter(
  20583. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20584. {
  20585. front: {
  20586. height: math.unit(5 + 7 / 12, "feet"),
  20587. weight: math.unit(140, "lb"),
  20588. name: "Front",
  20589. image: {
  20590. source: "./media/characters/shane/front.svg",
  20591. extra: 304 / 289,
  20592. bottom: 0.005
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(5 + 7 / 12, "feet"),
  20600. default: true
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20606. {
  20607. front: {
  20608. height: math.unit(5 + 9 / 12, "feet"),
  20609. weight: math.unit(178, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/shin/front.svg",
  20613. extra: 159 / 151,
  20614. bottom: 0.015
  20615. }
  20616. },
  20617. },
  20618. [
  20619. {
  20620. name: "Normal",
  20621. height: math.unit(5 + 9 / 12, "feet"),
  20622. default: true
  20623. },
  20624. ]
  20625. ))
  20626. characterMakers.push(() => makeCharacter(
  20627. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20628. {
  20629. front: {
  20630. height: math.unit(5 + 10 / 12, "feet"),
  20631. weight: math.unit(168, "lb"),
  20632. name: "Front",
  20633. image: {
  20634. source: "./media/characters/xerxes/front.svg",
  20635. extra: 282 / 260,
  20636. bottom: 0.045
  20637. }
  20638. },
  20639. },
  20640. [
  20641. {
  20642. name: "Normal",
  20643. height: math.unit(5 + 10 / 12, "feet"),
  20644. default: true
  20645. },
  20646. ]
  20647. ))
  20648. characterMakers.push(() => makeCharacter(
  20649. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20650. {
  20651. front: {
  20652. height: math.unit(6 + 7 / 12, "feet"),
  20653. weight: math.unit(208, "lb"),
  20654. name: "Front",
  20655. image: {
  20656. source: "./media/characters/chaska/front.svg",
  20657. extra: 332 / 319,
  20658. bottom: 0.015
  20659. }
  20660. },
  20661. },
  20662. [
  20663. {
  20664. name: "Normal",
  20665. height: math.unit(6 + 7 / 12, "feet"),
  20666. default: true
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20672. {
  20673. front: {
  20674. height: math.unit(5 + 8 / 12, "feet"),
  20675. weight: math.unit(208, "lb"),
  20676. name: "Front",
  20677. image: {
  20678. source: "./media/characters/enuk/front.svg",
  20679. extra: 437 / 406,
  20680. bottom: 0.02
  20681. }
  20682. },
  20683. },
  20684. [
  20685. {
  20686. name: "Normal",
  20687. height: math.unit(5 + 8 / 12, "feet"),
  20688. default: true
  20689. },
  20690. ]
  20691. ))
  20692. characterMakers.push(() => makeCharacter(
  20693. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20694. {
  20695. front: {
  20696. height: math.unit(5 + 10 / 12, "feet"),
  20697. weight: math.unit(252, "lb"),
  20698. name: "Front",
  20699. image: {
  20700. source: "./media/characters/bruun/front.svg",
  20701. extra: 197 / 187,
  20702. bottom: 0.012
  20703. }
  20704. },
  20705. },
  20706. [
  20707. {
  20708. name: "Normal",
  20709. height: math.unit(5 + 10 / 12, "feet"),
  20710. default: true
  20711. },
  20712. ]
  20713. ))
  20714. characterMakers.push(() => makeCharacter(
  20715. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20716. {
  20717. front: {
  20718. height: math.unit(6 + 10 / 12, "feet"),
  20719. weight: math.unit(255, "lb"),
  20720. name: "Front",
  20721. image: {
  20722. source: "./media/characters/alexeev/front.svg",
  20723. extra: 213 / 200,
  20724. bottom: 0.05
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(6 + 10 / 12, "feet"),
  20732. default: true
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20738. {
  20739. front: {
  20740. height: math.unit(2 + 8 / 12, "feet"),
  20741. weight: math.unit(22, "lb"),
  20742. name: "Front",
  20743. image: {
  20744. source: "./media/characters/evelyn/front.svg",
  20745. extra: 208 / 180
  20746. }
  20747. },
  20748. },
  20749. [
  20750. {
  20751. name: "Normal",
  20752. height: math.unit(2 + 8 / 12, "feet"),
  20753. default: true
  20754. },
  20755. ]
  20756. ))
  20757. characterMakers.push(() => makeCharacter(
  20758. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20759. {
  20760. front: {
  20761. height: math.unit(5 + 9 / 12, "feet"),
  20762. weight: math.unit(139, "lb"),
  20763. name: "Front",
  20764. image: {
  20765. source: "./media/characters/inca/front.svg",
  20766. extra: 294 / 291,
  20767. bottom: 0.03
  20768. }
  20769. },
  20770. },
  20771. [
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(5 + 9 / 12, "feet"),
  20775. default: true
  20776. },
  20777. ]
  20778. ))
  20779. characterMakers.push(() => makeCharacter(
  20780. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20781. {
  20782. front: {
  20783. height: math.unit(6 + 3 / 12, "feet"),
  20784. weight: math.unit(185, "lb"),
  20785. name: "Front",
  20786. image: {
  20787. source: "./media/characters/mera/front.svg",
  20788. extra: 291 / 277,
  20789. bottom: 0.03
  20790. }
  20791. },
  20792. },
  20793. [
  20794. {
  20795. name: "Normal",
  20796. height: math.unit(6 + 3 / 12, "feet"),
  20797. default: true
  20798. },
  20799. ]
  20800. ))
  20801. characterMakers.push(() => makeCharacter(
  20802. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20803. {
  20804. front: {
  20805. height: math.unit(6 + 7 / 12, "feet"),
  20806. weight: math.unit(160, "lb"),
  20807. name: "Front",
  20808. image: {
  20809. source: "./media/characters/ceres/front.svg",
  20810. extra: 1023 / 950,
  20811. bottom: 0.027
  20812. }
  20813. },
  20814. back: {
  20815. height: math.unit(6 + 7 / 12, "feet"),
  20816. weight: math.unit(160, "lb"),
  20817. name: "Back",
  20818. image: {
  20819. source: "./media/characters/ceres/back.svg",
  20820. extra: 1023 / 950
  20821. }
  20822. },
  20823. },
  20824. [
  20825. {
  20826. name: "Normal",
  20827. height: math.unit(6 + 7 / 12, "feet"),
  20828. default: true
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(5 + 10 / 12, "feet"),
  20837. weight: math.unit(150, "lb"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/kris/front.svg",
  20841. extra: 885 / 803,
  20842. bottom: 0.03
  20843. }
  20844. },
  20845. },
  20846. [
  20847. {
  20848. name: "Normal",
  20849. height: math.unit(5 + 10 / 12, "feet"),
  20850. default: true
  20851. },
  20852. ]
  20853. ))
  20854. characterMakers.push(() => makeCharacter(
  20855. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20856. {
  20857. front: {
  20858. height: math.unit(7, "feet"),
  20859. weight: math.unit(120, "kg"),
  20860. name: "Front",
  20861. image: {
  20862. source: "./media/characters/taluthus/front.svg",
  20863. extra: 903 / 833,
  20864. bottom: 0.015
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(7, "feet"),
  20872. default: true
  20873. },
  20874. {
  20875. name: "Macro",
  20876. height: math.unit(300, "feet")
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20882. {
  20883. front: {
  20884. height: math.unit(5 + 9 / 12, "feet"),
  20885. weight: math.unit(145, "lb"),
  20886. name: "Front",
  20887. image: {
  20888. source: "./media/characters/dawn/front.svg",
  20889. extra: 2094 / 2016,
  20890. bottom: 0.025
  20891. }
  20892. },
  20893. back: {
  20894. height: math.unit(5 + 9 / 12, "feet"),
  20895. weight: math.unit(160, "lb"),
  20896. name: "Back",
  20897. image: {
  20898. source: "./media/characters/dawn/back.svg",
  20899. extra: 2112 / 2080,
  20900. bottom: 0.005
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(6 + 7 / 12, "feet"),
  20908. default: true
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20914. {
  20915. anthro: {
  20916. height: math.unit(8 + 3 / 12, "feet"),
  20917. weight: math.unit(450, "lb"),
  20918. name: "Anthro",
  20919. image: {
  20920. source: "./media/characters/arador/anthro.svg",
  20921. extra: 1835 / 1718,
  20922. bottom: 0.025
  20923. }
  20924. },
  20925. feral: {
  20926. height: math.unit(4, "feet"),
  20927. weight: math.unit(200, "lb"),
  20928. name: "Feral",
  20929. image: {
  20930. source: "./media/characters/arador/feral.svg",
  20931. extra: 1683 / 1514,
  20932. bottom: 0.07
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(8 + 3 / 12, "feet")
  20940. },
  20941. {
  20942. name: "Macro",
  20943. height: math.unit(82.5, "feet"),
  20944. default: true
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20950. {
  20951. front: {
  20952. height: math.unit(5 + 10 / 12, "feet"),
  20953. weight: math.unit(125, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/dharsi/front.svg",
  20957. extra: 716 / 630,
  20958. bottom: 0.035
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Nano",
  20965. height: math.unit(100, "nm")
  20966. },
  20967. {
  20968. name: "Micro",
  20969. height: math.unit(2, "inches")
  20970. },
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(5 + 10 / 12, "feet"),
  20974. default: true
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(1000, "feet")
  20979. },
  20980. {
  20981. name: "Megamacro",
  20982. height: math.unit(10, "miles")
  20983. },
  20984. {
  20985. name: "Gigamacro",
  20986. height: math.unit(3000, "miles")
  20987. },
  20988. {
  20989. name: "Teramacro",
  20990. height: math.unit(500000, "miles")
  20991. },
  20992. {
  20993. name: "Teramacro+",
  20994. height: math.unit(30, "galaxies")
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21000. {
  21001. front: {
  21002. height: math.unit(6, "feet"),
  21003. weight: math.unit(150, "lb"),
  21004. name: "Front",
  21005. image: {
  21006. source: "./media/characters/deathy/front.svg",
  21007. extra: 1552 / 1463,
  21008. bottom: 0.025
  21009. }
  21010. },
  21011. side: {
  21012. height: math.unit(6, "feet"),
  21013. weight: math.unit(150, "lb"),
  21014. name: "Side",
  21015. image: {
  21016. source: "./media/characters/deathy/side.svg",
  21017. extra: 1604 / 1455,
  21018. bottom: 0.025
  21019. }
  21020. },
  21021. back: {
  21022. height: math.unit(6, "feet"),
  21023. weight: math.unit(150, "lb"),
  21024. name: "Back",
  21025. image: {
  21026. source: "./media/characters/deathy/back.svg",
  21027. extra: 1580 / 1463,
  21028. bottom: 0.005
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Micro",
  21035. height: math.unit(5, "millimeters")
  21036. },
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(6 + 5 / 12, "feet"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21046. {
  21047. front: {
  21048. height: math.unit(16, "feet"),
  21049. weight: math.unit(4000, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/juniper/front.svg",
  21053. bottom: 0.04
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(16, "feet"),
  21061. default: true
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21067. {
  21068. front: {
  21069. height: math.unit(6, "feet"),
  21070. weight: math.unit(150, "lb"),
  21071. name: "Front",
  21072. image: {
  21073. source: "./media/characters/hipster/front.svg",
  21074. extra: 1312 / 1209,
  21075. bottom: 0.025
  21076. }
  21077. },
  21078. back: {
  21079. height: math.unit(6, "feet"),
  21080. weight: math.unit(150, "lb"),
  21081. name: "Back",
  21082. image: {
  21083. source: "./media/characters/hipster/back.svg",
  21084. extra: 1281 / 1196,
  21085. bottom: 0.01
  21086. }
  21087. },
  21088. },
  21089. [
  21090. {
  21091. name: "Micro",
  21092. height: math.unit(1, "mm")
  21093. },
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(4, "inches"),
  21097. default: true
  21098. },
  21099. {
  21100. name: "Macro",
  21101. height: math.unit(500, "feet")
  21102. },
  21103. {
  21104. name: "Megamacro",
  21105. height: math.unit(1000, "miles")
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21111. {
  21112. front: {
  21113. height: math.unit(6, "feet"),
  21114. weight: math.unit(150, "lb"),
  21115. name: "Front",
  21116. image: {
  21117. source: "./media/characters/tendirmuldr/front.svg",
  21118. extra: 1878 / 1772,
  21119. bottom: 0.015
  21120. }
  21121. },
  21122. },
  21123. [
  21124. {
  21125. name: "Megamacro",
  21126. height: math.unit(1500, "miles"),
  21127. default: true
  21128. },
  21129. ]
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21133. {
  21134. front: {
  21135. height: math.unit(14, "feet"),
  21136. weight: math.unit(12000, "lb"),
  21137. name: "Front",
  21138. image: {
  21139. source: "./media/characters/mort/front.svg",
  21140. extra: 365 / 318,
  21141. bottom: 0.01
  21142. }
  21143. },
  21144. side: {
  21145. height: math.unit(14, "feet"),
  21146. weight: math.unit(12000, "lb"),
  21147. name: "Side",
  21148. image: {
  21149. source: "./media/characters/mort/side.svg",
  21150. extra: 365 / 318,
  21151. bottom: 0.052
  21152. },
  21153. default: true
  21154. },
  21155. back: {
  21156. height: math.unit(14, "feet"),
  21157. weight: math.unit(12000, "lb"),
  21158. name: "Back",
  21159. image: {
  21160. source: "./media/characters/mort/back.svg",
  21161. extra: 371 / 332,
  21162. bottom: 0.18
  21163. }
  21164. },
  21165. },
  21166. [
  21167. {
  21168. name: "Normal",
  21169. height: math.unit(14, "feet"),
  21170. default: true
  21171. },
  21172. ]
  21173. ))
  21174. characterMakers.push(() => makeCharacter(
  21175. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21176. {
  21177. front: {
  21178. height: math.unit(8, "feet"),
  21179. weight: math.unit(1, "ton"),
  21180. name: "Front",
  21181. image: {
  21182. source: "./media/characters/lycoa/front.svg",
  21183. extra: 1836/1728,
  21184. bottom: 81/1917
  21185. }
  21186. },
  21187. back: {
  21188. height: math.unit(8, "feet"),
  21189. weight: math.unit(1, "ton"),
  21190. name: "Back",
  21191. image: {
  21192. source: "./media/characters/lycoa/back.svg",
  21193. extra: 1785/1720,
  21194. bottom: 91/1876
  21195. }
  21196. },
  21197. head: {
  21198. height: math.unit(1.6243, "feet"),
  21199. name: "Head",
  21200. image: {
  21201. source: "./media/characters/lycoa/head.svg",
  21202. extra: 1011/782,
  21203. bottom: 0/1011
  21204. }
  21205. },
  21206. tailmaw: {
  21207. height: math.unit(1.9, "feet"),
  21208. name: "Tailmaw",
  21209. image: {
  21210. source: "./media/characters/lycoa/tailmaw.svg"
  21211. }
  21212. },
  21213. tentacles: {
  21214. height: math.unit(2.1, "feet"),
  21215. name: "Tentacles",
  21216. image: {
  21217. source: "./media/characters/lycoa/tentacles.svg"
  21218. }
  21219. },
  21220. dick: {
  21221. height: math.unit(1.73, "feet"),
  21222. name: "Dick",
  21223. image: {
  21224. source: "./media/characters/lycoa/dick.svg"
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Normal",
  21231. height: math.unit(8, "feet"),
  21232. default: true
  21233. },
  21234. {
  21235. name: "Macro",
  21236. height: math.unit(30, "feet")
  21237. },
  21238. ]
  21239. ))
  21240. characterMakers.push(() => makeCharacter(
  21241. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21242. {
  21243. front: {
  21244. height: math.unit(4 + 2 / 12, "feet"),
  21245. weight: math.unit(70, "lb"),
  21246. name: "Front",
  21247. image: {
  21248. source: "./media/characters/naldara/front.svg",
  21249. extra: 1664/1387,
  21250. bottom: 81/1745
  21251. },
  21252. form: "anthro",
  21253. default: true
  21254. },
  21255. naga: {
  21256. height: math.unit(20, "feet"),
  21257. weight: math.unit(15000, "kg"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/naldara/naga.svg",
  21261. extra: 1590/1396,
  21262. bottom: 285/1875
  21263. },
  21264. form: "naga",
  21265. default: true
  21266. },
  21267. },
  21268. [
  21269. {
  21270. name: "Normal",
  21271. height: math.unit(4 + 2 / 12, "feet"),
  21272. form: "anthro",
  21273. default: true
  21274. },
  21275. {
  21276. name: "Normal",
  21277. height: math.unit(20, "feet"),
  21278. form: "naga",
  21279. default: true
  21280. },
  21281. ],
  21282. {
  21283. "anthro": {
  21284. name: "Anthro",
  21285. default: true
  21286. },
  21287. "naga": {
  21288. name: "Naga"
  21289. }
  21290. }
  21291. ))
  21292. characterMakers.push(() => makeCharacter(
  21293. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21294. {
  21295. front: {
  21296. height: math.unit(13 + 7 / 12, "feet"),
  21297. weight: math.unit(1500, "lb"),
  21298. name: "Front",
  21299. image: {
  21300. source: "./media/characters/briar/front.svg",
  21301. extra: 1223/1157,
  21302. bottom: 123/1346
  21303. }
  21304. },
  21305. },
  21306. [
  21307. {
  21308. name: "Normal",
  21309. height: math.unit(13 + 7 / 12, "feet"),
  21310. default: true
  21311. },
  21312. ]
  21313. ))
  21314. characterMakers.push(() => makeCharacter(
  21315. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21316. {
  21317. side: {
  21318. height: math.unit(16, "feet"),
  21319. weight: math.unit(500, "lb"),
  21320. name: "Side",
  21321. image: {
  21322. source: "./media/characters/vanguard/side.svg",
  21323. extra: 1022/914,
  21324. bottom: 30/1052
  21325. }
  21326. },
  21327. sideAlt: {
  21328. height: math.unit(10, "feet"),
  21329. weight: math.unit(500, "lb"),
  21330. name: "Side (Alt)",
  21331. image: {
  21332. source: "./media/characters/vanguard/side-alt.svg",
  21333. extra: 502 / 425,
  21334. bottom: 0.087
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Normal",
  21341. height: math.unit(17.71, "feet"),
  21342. default: true
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21348. {
  21349. front: {
  21350. height: math.unit(7.5, "feet"),
  21351. weight: math.unit(2, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/artemis/work-safe-front.svg",
  21355. extra: 1192 / 1075,
  21356. bottom: 0.07
  21357. },
  21358. form: "work-safe",
  21359. default: true
  21360. },
  21361. frontNsfw: {
  21362. height: math.unit(7.5, "feet"),
  21363. weight: math.unit(2, "lb"),
  21364. name: "Front",
  21365. image: {
  21366. source: "./media/characters/artemis/calibrating-front.svg",
  21367. extra: 1192 / 1075,
  21368. bottom: 0.07
  21369. },
  21370. form: "calibrating",
  21371. default: true
  21372. },
  21373. frontNsfwer: {
  21374. height: math.unit(7.5, "feet"),
  21375. weight: math.unit(2, "lb"),
  21376. name: "Front",
  21377. image: {
  21378. source: "./media/characters/artemis/oversize-load-front.svg",
  21379. extra: 1192 / 1075,
  21380. bottom: 0.07
  21381. },
  21382. form: "oversize-load",
  21383. default: true
  21384. },
  21385. side: {
  21386. height: math.unit(7.5, "feet"),
  21387. weight: math.unit(2, "lb"),
  21388. name: "Side",
  21389. image: {
  21390. source: "./media/characters/artemis/work-safe-side.svg",
  21391. extra: 1192 / 1075,
  21392. bottom: 0.07
  21393. },
  21394. form: "work-safe"
  21395. },
  21396. sideNsfw: {
  21397. height: math.unit(7.5, "feet"),
  21398. weight: math.unit(2, "lb"),
  21399. name: "Side",
  21400. image: {
  21401. source: "./media/characters/artemis/calibrating-side.svg",
  21402. extra: 1192 / 1075,
  21403. bottom: 0.07
  21404. },
  21405. form: "calibrating"
  21406. },
  21407. sideNsfwer: {
  21408. height: math.unit(7.5, "feet"),
  21409. weight: math.unit(2, "lb"),
  21410. name: "Side",
  21411. image: {
  21412. source: "./media/characters/artemis/oversize-load-side.svg",
  21413. extra: 1192 / 1075,
  21414. bottom: 0.07
  21415. },
  21416. form: "oversize-load"
  21417. },
  21418. maw: {
  21419. height: math.unit(1.1, "feet"),
  21420. name: "Maw",
  21421. image: {
  21422. source: "./media/characters/artemis/maw.svg"
  21423. },
  21424. form: "work-safe"
  21425. },
  21426. stomach: {
  21427. height: math.unit(0.95, "feet"),
  21428. name: "Stomach",
  21429. image: {
  21430. source: "./media/characters/artemis/stomach.svg"
  21431. },
  21432. form: "work-safe"
  21433. },
  21434. dickCanine: {
  21435. height: math.unit(1, "feet"),
  21436. name: "Dick (Canine)",
  21437. image: {
  21438. source: "./media/characters/artemis/dick-canine.svg"
  21439. },
  21440. form: "calibrating"
  21441. },
  21442. dickEquine: {
  21443. height: math.unit(0.85, "feet"),
  21444. name: "Dick (Equine)",
  21445. image: {
  21446. source: "./media/characters/artemis/dick-equine.svg"
  21447. },
  21448. form: "calibrating"
  21449. },
  21450. dickExotic: {
  21451. height: math.unit(0.85, "feet"),
  21452. name: "Dick (Exotic)",
  21453. image: {
  21454. source: "./media/characters/artemis/dick-exotic.svg"
  21455. },
  21456. form: "calibrating"
  21457. },
  21458. dickCanineBigger: {
  21459. height: math.unit(1 * 1.33, "feet"),
  21460. name: "Dick (Canine)",
  21461. image: {
  21462. source: "./media/characters/artemis/dick-canine.svg"
  21463. },
  21464. form: "oversize-load"
  21465. },
  21466. dickEquineBigger: {
  21467. height: math.unit(0.85 * 1.33, "feet"),
  21468. name: "Dick (Equine)",
  21469. image: {
  21470. source: "./media/characters/artemis/dick-equine.svg"
  21471. },
  21472. form: "oversize-load"
  21473. },
  21474. dickExoticBigger: {
  21475. height: math.unit(0.85 * 1.33, "feet"),
  21476. name: "Dick (Exotic)",
  21477. image: {
  21478. source: "./media/characters/artemis/dick-exotic.svg"
  21479. },
  21480. form: "oversize-load"
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(7.5, "feet"),
  21487. form: "work-safe",
  21488. default: true
  21489. },
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(7.5, "feet"),
  21493. form: "calibrating",
  21494. default: true
  21495. },
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(7.5, "feet"),
  21499. form: "oversize-load",
  21500. default: true
  21501. },
  21502. {
  21503. name: "Enlarged",
  21504. height: math.unit(12, "feet"),
  21505. form: "work-safe",
  21506. },
  21507. {
  21508. name: "Enlarged",
  21509. height: math.unit(12, "feet"),
  21510. form: "calibrating",
  21511. },
  21512. {
  21513. name: "Enlarged",
  21514. height: math.unit(12, "feet"),
  21515. form: "oversize-load",
  21516. },
  21517. ],
  21518. {
  21519. "work-safe": {
  21520. name: "Work-Safe",
  21521. default: true
  21522. },
  21523. "calibrating": {
  21524. name: "Calibrating"
  21525. },
  21526. "oversize-load": {
  21527. name: "Oversize Load"
  21528. }
  21529. }
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(5 + 3 / 12, "feet"),
  21536. weight: math.unit(160, "lb"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/kira/front.svg",
  21540. extra: 906 / 786,
  21541. bottom: 0.01
  21542. }
  21543. },
  21544. back: {
  21545. height: math.unit(5 + 3 / 12, "feet"),
  21546. weight: math.unit(160, "lb"),
  21547. name: "Back",
  21548. image: {
  21549. source: "./media/characters/kira/back.svg",
  21550. extra: 882 / 757,
  21551. bottom: 0.005
  21552. }
  21553. },
  21554. frontDressed: {
  21555. height: math.unit(5 + 3 / 12, "feet"),
  21556. weight: math.unit(160, "lb"),
  21557. name: "Front (Dressed)",
  21558. image: {
  21559. source: "./media/characters/kira/front-dressed.svg",
  21560. extra: 906 / 786,
  21561. bottom: 0.01
  21562. }
  21563. },
  21564. beans: {
  21565. height: math.unit(0.92, "feet"),
  21566. name: "Beans",
  21567. image: {
  21568. source: "./media/characters/kira/beans.svg"
  21569. }
  21570. },
  21571. },
  21572. [
  21573. {
  21574. name: "Normal",
  21575. height: math.unit(5 + 3 / 12, "feet"),
  21576. default: true
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(5 + 4 / 12, "feet"),
  21585. weight: math.unit(145, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/scramble/front.svg",
  21589. extra: 763 / 727,
  21590. bottom: 0.05
  21591. }
  21592. },
  21593. back: {
  21594. height: math.unit(5 + 4 / 12, "feet"),
  21595. weight: math.unit(145, "lb"),
  21596. name: "Back",
  21597. image: {
  21598. source: "./media/characters/scramble/back.svg",
  21599. extra: 826 / 737,
  21600. bottom: 0.002
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(5 + 4 / 12, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21614. {
  21615. side: {
  21616. height: math.unit(6 + 2 / 12, "feet"),
  21617. weight: math.unit(190, "lb"),
  21618. name: "Side",
  21619. image: {
  21620. source: "./media/characters/biscuit/side.svg",
  21621. extra: 858 / 791,
  21622. bottom: 0.044
  21623. }
  21624. },
  21625. },
  21626. [
  21627. {
  21628. name: "Normal",
  21629. height: math.unit(6 + 2 / 12, "feet"),
  21630. default: true
  21631. },
  21632. ]
  21633. ))
  21634. characterMakers.push(() => makeCharacter(
  21635. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21636. {
  21637. front: {
  21638. height: math.unit(5 + 2 / 12, "feet"),
  21639. weight: math.unit(120, "lb"),
  21640. name: "Front",
  21641. image: {
  21642. source: "./media/characters/poffin/front.svg",
  21643. extra: 786 / 680,
  21644. bottom: 0.005
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(5 + 2 / 12, "feet"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(6 + 3 / 12, "feet"),
  21661. weight: math.unit(519, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/dhari/front.svg",
  21665. extra: 1048 / 946,
  21666. bottom: 0.015
  21667. }
  21668. },
  21669. back: {
  21670. height: math.unit(6 + 3 / 12, "feet"),
  21671. weight: math.unit(519, "lb"),
  21672. name: "Back",
  21673. image: {
  21674. source: "./media/characters/dhari/back.svg",
  21675. extra: 1048 / 931,
  21676. bottom: 0.005
  21677. }
  21678. },
  21679. frontDressed: {
  21680. height: math.unit(6 + 3 / 12, "feet"),
  21681. weight: math.unit(519, "lb"),
  21682. name: "Front (Dressed)",
  21683. image: {
  21684. source: "./media/characters/dhari/front-dressed.svg",
  21685. extra: 1713 / 1546,
  21686. bottom: 0.02
  21687. }
  21688. },
  21689. backDressed: {
  21690. height: math.unit(6 + 3 / 12, "feet"),
  21691. weight: math.unit(519, "lb"),
  21692. name: "Back (Dressed)",
  21693. image: {
  21694. source: "./media/characters/dhari/back-dressed.svg",
  21695. extra: 1699 / 1537,
  21696. bottom: 0.01
  21697. }
  21698. },
  21699. maw: {
  21700. height: math.unit(0.95, "feet"),
  21701. name: "Maw",
  21702. image: {
  21703. source: "./media/characters/dhari/maw.svg"
  21704. }
  21705. },
  21706. wereFront: {
  21707. height: math.unit(12 + 8 / 12, "feet"),
  21708. weight: math.unit(4000, "lb"),
  21709. name: "Front (Were)",
  21710. image: {
  21711. source: "./media/characters/dhari/were-front.svg",
  21712. extra: 1065 / 969,
  21713. bottom: 0.015
  21714. }
  21715. },
  21716. wereBack: {
  21717. height: math.unit(12 + 8 / 12, "feet"),
  21718. weight: math.unit(4000, "lb"),
  21719. name: "Back (Were)",
  21720. image: {
  21721. source: "./media/characters/dhari/were-back.svg",
  21722. extra: 1065 / 969,
  21723. bottom: 0.012
  21724. }
  21725. },
  21726. wereMaw: {
  21727. height: math.unit(0.625, "meters"),
  21728. name: "Maw (Were)",
  21729. image: {
  21730. source: "./media/characters/dhari/were-maw.svg"
  21731. }
  21732. },
  21733. },
  21734. [
  21735. {
  21736. name: "Normal",
  21737. height: math.unit(6 + 3 / 12, "feet"),
  21738. default: true
  21739. },
  21740. ]
  21741. ))
  21742. characterMakers.push(() => makeCharacter(
  21743. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21744. {
  21745. anthro: {
  21746. height: math.unit(5 + 7 / 12, "feet"),
  21747. weight: math.unit(175, "lb"),
  21748. name: "Anthro",
  21749. image: {
  21750. source: "./media/characters/rena-dyne/anthro.svg",
  21751. extra: 1849 / 1785,
  21752. bottom: 0.005
  21753. }
  21754. },
  21755. taur: {
  21756. height: math.unit(15 + 6 / 12, "feet"),
  21757. weight: math.unit(8000, "lb"),
  21758. name: "Taur",
  21759. image: {
  21760. source: "./media/characters/rena-dyne/taur.svg",
  21761. extra: 2315 / 2234,
  21762. bottom: 0.033
  21763. }
  21764. },
  21765. },
  21766. [
  21767. {
  21768. name: "Normal",
  21769. height: math.unit(5 + 7 / 12, "feet"),
  21770. default: true
  21771. },
  21772. ]
  21773. ))
  21774. characterMakers.push(() => makeCharacter(
  21775. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21776. {
  21777. front: {
  21778. height: math.unit(8, "feet"),
  21779. weight: math.unit(600, "lb"),
  21780. name: "Front",
  21781. image: {
  21782. source: "./media/characters/weremeep/front.svg",
  21783. extra: 967 / 862,
  21784. bottom: 0.01
  21785. }
  21786. },
  21787. },
  21788. [
  21789. {
  21790. name: "Normal",
  21791. height: math.unit(8, "feet"),
  21792. default: true
  21793. },
  21794. {
  21795. name: "Lorg",
  21796. height: math.unit(12, "feet")
  21797. },
  21798. {
  21799. name: "Oh Lawd She Comin'",
  21800. height: math.unit(20, "feet")
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21806. {
  21807. front: {
  21808. height: math.unit(4, "feet"),
  21809. weight: math.unit(90, "lb"),
  21810. name: "Front",
  21811. image: {
  21812. source: "./media/characters/reza/front.svg",
  21813. extra: 1183 / 1111,
  21814. bottom: 0.017
  21815. }
  21816. },
  21817. back: {
  21818. height: math.unit(4, "feet"),
  21819. weight: math.unit(90, "lb"),
  21820. name: "Back",
  21821. image: {
  21822. source: "./media/characters/reza/back.svg",
  21823. extra: 1183 / 1111,
  21824. bottom: 0.01
  21825. }
  21826. },
  21827. drake: {
  21828. height: math.unit(30, "feet"),
  21829. weight: math.unit(246960, "lb"),
  21830. name: "Drake",
  21831. image: {
  21832. source: "./media/characters/reza/drake.svg",
  21833. extra: 2350 / 2024,
  21834. bottom: 60.7 / 2403
  21835. }
  21836. },
  21837. },
  21838. [
  21839. {
  21840. name: "Normal",
  21841. height: math.unit(4, "feet"),
  21842. default: true
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21848. {
  21849. side: {
  21850. height: math.unit(15, "feet"),
  21851. weight: math.unit(14, "tons"),
  21852. name: "Side",
  21853. image: {
  21854. source: "./media/characters/athea/side.svg",
  21855. extra: 960 / 540,
  21856. bottom: 0.003
  21857. }
  21858. },
  21859. sitting: {
  21860. height: math.unit(6 * 2.85, "feet"),
  21861. weight: math.unit(14, "tons"),
  21862. name: "Sitting",
  21863. image: {
  21864. source: "./media/characters/athea/sitting.svg",
  21865. extra: 621 / 581,
  21866. bottom: 0.075
  21867. }
  21868. },
  21869. maw: {
  21870. height: math.unit(7.59498031496063, "feet"),
  21871. name: "Maw",
  21872. image: {
  21873. source: "./media/characters/athea/maw.svg"
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Lap Cat",
  21880. height: math.unit(2.5, "feet")
  21881. },
  21882. {
  21883. name: "Minimacro",
  21884. height: math.unit(15, "feet"),
  21885. default: true
  21886. },
  21887. {
  21888. name: "Macro",
  21889. height: math.unit(120, "feet")
  21890. },
  21891. {
  21892. name: "Macro+",
  21893. height: math.unit(640, "feet")
  21894. },
  21895. {
  21896. name: "Colossus",
  21897. height: math.unit(2.2, "miles")
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21903. {
  21904. front: {
  21905. height: math.unit(8 + 8 / 12, "feet"),
  21906. weight: math.unit(130, "kg"),
  21907. name: "Front",
  21908. image: {
  21909. source: "./media/characters/seroko/front.svg",
  21910. extra: 1385 / 1280,
  21911. bottom: 0.025
  21912. }
  21913. },
  21914. back: {
  21915. height: math.unit(8 + 8 / 12, "feet"),
  21916. weight: math.unit(130, "kg"),
  21917. name: "Back",
  21918. image: {
  21919. source: "./media/characters/seroko/back.svg",
  21920. extra: 1369 / 1238,
  21921. bottom: 0.018
  21922. }
  21923. },
  21924. frontDressed: {
  21925. height: math.unit(8 + 8 / 12, "feet"),
  21926. weight: math.unit(130, "kg"),
  21927. name: "Front (Dressed)",
  21928. image: {
  21929. source: "./media/characters/seroko/front-dressed.svg",
  21930. extra: 1366 / 1275,
  21931. bottom: 0.03
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(8 + 8 / 12, "feet"),
  21939. default: true
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(5.5, "feet"),
  21948. weight: math.unit(160, "lb"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/quatzi/front.svg",
  21952. extra: 2346 / 2242,
  21953. bottom: 0.015
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(5.5, "feet"),
  21961. default: true
  21962. },
  21963. {
  21964. name: "Big",
  21965. height: math.unit(7.7, "feet")
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(5 + 11 / 12, "feet"),
  21974. weight: math.unit(180, "lb"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/sen/front.svg",
  21978. extra: 1321 / 1254,
  21979. bottom: 0.015
  21980. }
  21981. },
  21982. side: {
  21983. height: math.unit(5 + 11 / 12, "feet"),
  21984. weight: math.unit(180, "lb"),
  21985. name: "Side",
  21986. image: {
  21987. source: "./media/characters/sen/side.svg",
  21988. extra: 1321 / 1254,
  21989. bottom: 0.007
  21990. }
  21991. },
  21992. back: {
  21993. height: math.unit(5 + 11 / 12, "feet"),
  21994. weight: math.unit(180, "lb"),
  21995. name: "Back",
  21996. image: {
  21997. source: "./media/characters/sen/back.svg",
  21998. extra: 1321 / 1254
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Normal",
  22005. height: math.unit(5 + 11 / 12, "feet"),
  22006. default: true
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22012. {
  22013. front: {
  22014. height: math.unit(166.6, "cm"),
  22015. weight: math.unit(66.6, "kg"),
  22016. name: "Front",
  22017. image: {
  22018. source: "./media/characters/fruity/front.svg",
  22019. extra: 1510 / 1386,
  22020. bottom: 0.04
  22021. }
  22022. },
  22023. back: {
  22024. height: math.unit(166.6, "cm"),
  22025. weight: math.unit(66.6, "lb"),
  22026. name: "Back",
  22027. image: {
  22028. source: "./media/characters/fruity/back.svg",
  22029. extra: 1563 / 1435,
  22030. bottom: 0.005
  22031. }
  22032. },
  22033. },
  22034. [
  22035. {
  22036. name: "Normal",
  22037. height: math.unit(166.6, "cm"),
  22038. default: true
  22039. },
  22040. {
  22041. name: "Demonic",
  22042. height: math.unit(166.6, "feet")
  22043. },
  22044. ]
  22045. ))
  22046. characterMakers.push(() => makeCharacter(
  22047. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22048. {
  22049. side: {
  22050. height: math.unit(10, "feet"),
  22051. weight: math.unit(500, "lb"),
  22052. name: "Side",
  22053. image: {
  22054. source: "./media/characters/zost/side.svg",
  22055. extra: 2870/2533,
  22056. bottom: 252/3122
  22057. }
  22058. },
  22059. mawFront: {
  22060. height: math.unit(1.08, "meters"),
  22061. name: "Maw (Front)",
  22062. image: {
  22063. source: "./media/characters/zost/maw-front.svg"
  22064. }
  22065. },
  22066. mawSide: {
  22067. height: math.unit(2.66, "feet"),
  22068. name: "Maw (Side)",
  22069. image: {
  22070. source: "./media/characters/zost/maw-side.svg"
  22071. }
  22072. },
  22073. wingspan: {
  22074. height: math.unit(7.4, "feet"),
  22075. name: "Wingspan",
  22076. image: {
  22077. source: "./media/characters/zost/wingspan.svg"
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Normal",
  22084. height: math.unit(10, "feet"),
  22085. default: true
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22091. {
  22092. front: {
  22093. height: math.unit(5 + 4 / 12, "feet"),
  22094. weight: math.unit(120, "lb"),
  22095. name: "Front",
  22096. image: {
  22097. source: "./media/characters/luci/front.svg",
  22098. extra: 1985 / 1884,
  22099. bottom: 0.04
  22100. }
  22101. },
  22102. back: {
  22103. height: math.unit(5 + 4 / 12, "feet"),
  22104. weight: math.unit(120, "lb"),
  22105. name: "Back",
  22106. image: {
  22107. source: "./media/characters/luci/back.svg",
  22108. extra: 1892 / 1791,
  22109. bottom: 0.002
  22110. }
  22111. },
  22112. },
  22113. [
  22114. {
  22115. name: "Normal",
  22116. height: math.unit(5 + 4 / 12, "feet"),
  22117. default: true
  22118. },
  22119. ]
  22120. ))
  22121. characterMakers.push(() => makeCharacter(
  22122. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22123. {
  22124. front: {
  22125. height: math.unit(1500, "feet"),
  22126. weight: math.unit(3.8e6, "tons"),
  22127. name: "Front",
  22128. image: {
  22129. source: "./media/characters/2th/front.svg",
  22130. extra: 3489 / 3350,
  22131. bottom: 0.1
  22132. }
  22133. },
  22134. foot: {
  22135. height: math.unit(461, "feet"),
  22136. name: "Foot",
  22137. image: {
  22138. source: "./media/characters/2th/foot.svg"
  22139. }
  22140. },
  22141. },
  22142. [
  22143. {
  22144. name: "\"Micro\"",
  22145. height: math.unit(15 + 7 / 12, "feet")
  22146. },
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(1500, "feet"),
  22150. default: true
  22151. },
  22152. {
  22153. name: "Macro",
  22154. height: math.unit(5000, "feet")
  22155. },
  22156. {
  22157. name: "Megamacro",
  22158. height: math.unit(15, "miles")
  22159. },
  22160. {
  22161. name: "Gigamacro",
  22162. height: math.unit(4000, "miles")
  22163. },
  22164. {
  22165. name: "Galactic",
  22166. height: math.unit(50, "AU")
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22172. {
  22173. front: {
  22174. height: math.unit(5 + 6 / 12, "feet"),
  22175. weight: math.unit(220, "lb"),
  22176. name: "Front",
  22177. image: {
  22178. source: "./media/characters/amethyst/front.svg",
  22179. extra: 2078 / 2040,
  22180. bottom: 0.045
  22181. }
  22182. },
  22183. back: {
  22184. height: math.unit(5 + 6 / 12, "feet"),
  22185. weight: math.unit(220, "lb"),
  22186. name: "Back",
  22187. image: {
  22188. source: "./media/characters/amethyst/back.svg",
  22189. extra: 2021 / 1989,
  22190. bottom: 0.02
  22191. }
  22192. },
  22193. },
  22194. [
  22195. {
  22196. name: "Normal",
  22197. height: math.unit(5 + 6 / 12, "feet"),
  22198. default: true
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22204. {
  22205. front: {
  22206. height: math.unit(4 + 11 / 12, "feet"),
  22207. weight: math.unit(120, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/yumi-akiyama/front.svg",
  22211. extra: 1327 / 1235,
  22212. bottom: 0.02
  22213. }
  22214. },
  22215. back: {
  22216. height: math.unit(4 + 11 / 12, "feet"),
  22217. weight: math.unit(120, "lb"),
  22218. name: "Back",
  22219. image: {
  22220. source: "./media/characters/yumi-akiyama/back.svg",
  22221. extra: 1287 / 1245,
  22222. bottom: 0.002
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Galactic",
  22229. height: math.unit(50, "galaxies"),
  22230. default: true
  22231. },
  22232. {
  22233. name: "Universal",
  22234. height: math.unit(100, "universes")
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(8, "feet"),
  22243. weight: math.unit(500, "lb"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/rifter-yrmori/front.svg",
  22247. extra: 1180 / 1125,
  22248. bottom: 0.02
  22249. }
  22250. },
  22251. back: {
  22252. height: math.unit(8, "feet"),
  22253. weight: math.unit(500, "lb"),
  22254. name: "Back",
  22255. image: {
  22256. source: "./media/characters/rifter-yrmori/back.svg",
  22257. extra: 1190 / 1145,
  22258. bottom: 0.001
  22259. }
  22260. },
  22261. wings: {
  22262. height: math.unit(7.75, "feet"),
  22263. weight: math.unit(500, "lb"),
  22264. name: "Wings",
  22265. image: {
  22266. source: "./media/characters/rifter-yrmori/wings.svg",
  22267. extra: 1357 / 1285
  22268. }
  22269. },
  22270. maw: {
  22271. height: math.unit(0.8, "feet"),
  22272. name: "Maw",
  22273. image: {
  22274. source: "./media/characters/rifter-yrmori/maw.svg"
  22275. }
  22276. },
  22277. mawfront: {
  22278. height: math.unit(1.45, "feet"),
  22279. name: "Maw (Front)",
  22280. image: {
  22281. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22282. }
  22283. },
  22284. },
  22285. [
  22286. {
  22287. name: "Normal",
  22288. height: math.unit(8, "feet"),
  22289. default: true
  22290. },
  22291. {
  22292. name: "Macro",
  22293. height: math.unit(42, "meters")
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22299. {
  22300. were: {
  22301. height: math.unit(25 + 6 / 12, "feet"),
  22302. weight: math.unit(10000, "lb"),
  22303. name: "Were",
  22304. image: {
  22305. source: "./media/characters/tahajin/were.svg",
  22306. extra: 801 / 770,
  22307. bottom: 0.042
  22308. }
  22309. },
  22310. aquatic: {
  22311. height: math.unit(6 + 4 / 12, "feet"),
  22312. weight: math.unit(160, "lb"),
  22313. name: "Aquatic",
  22314. image: {
  22315. source: "./media/characters/tahajin/aquatic.svg",
  22316. extra: 572 / 542,
  22317. bottom: 0.04
  22318. }
  22319. },
  22320. chow: {
  22321. height: math.unit(8 + 11 / 12, "feet"),
  22322. weight: math.unit(450, "lb"),
  22323. name: "Chow",
  22324. image: {
  22325. source: "./media/characters/tahajin/chow.svg",
  22326. extra: 660 / 640,
  22327. bottom: 0.015
  22328. }
  22329. },
  22330. demiNaga: {
  22331. height: math.unit(6 + 8 / 12, "feet"),
  22332. weight: math.unit(300, "lb"),
  22333. name: "Demi Naga",
  22334. image: {
  22335. source: "./media/characters/tahajin/demi-naga.svg",
  22336. extra: 643 / 615,
  22337. bottom: 0.1
  22338. }
  22339. },
  22340. data: {
  22341. height: math.unit(5, "inches"),
  22342. weight: math.unit(0.1, "lb"),
  22343. name: "Data",
  22344. image: {
  22345. source: "./media/characters/tahajin/data.svg"
  22346. }
  22347. },
  22348. fluu: {
  22349. height: math.unit(5 + 7 / 12, "feet"),
  22350. weight: math.unit(140, "lb"),
  22351. name: "Fluu",
  22352. image: {
  22353. source: "./media/characters/tahajin/fluu.svg",
  22354. extra: 628 / 592,
  22355. bottom: 0.02
  22356. }
  22357. },
  22358. starWarrior: {
  22359. height: math.unit(4 + 5 / 12, "feet"),
  22360. weight: math.unit(50, "lb"),
  22361. name: "Star Warrior",
  22362. image: {
  22363. source: "./media/characters/tahajin/star-warrior.svg"
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Normal",
  22370. height: math.unit(25 + 6 / 12, "feet"),
  22371. default: true
  22372. },
  22373. ]
  22374. ))
  22375. characterMakers.push(() => makeCharacter(
  22376. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22377. {
  22378. front: {
  22379. height: math.unit(8, "feet"),
  22380. weight: math.unit(350, "lb"),
  22381. name: "Front",
  22382. image: {
  22383. source: "./media/characters/gabira/front.svg",
  22384. extra: 608 / 580,
  22385. bottom: 0.03
  22386. }
  22387. },
  22388. back: {
  22389. height: math.unit(8, "feet"),
  22390. weight: math.unit(350, "lb"),
  22391. name: "Back",
  22392. image: {
  22393. source: "./media/characters/gabira/back.svg",
  22394. extra: 608 / 580,
  22395. bottom: 0.03
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(8, "feet"),
  22403. default: true
  22404. },
  22405. ]
  22406. ))
  22407. characterMakers.push(() => makeCharacter(
  22408. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22409. {
  22410. front: {
  22411. height: math.unit(5 + 3 / 12, "feet"),
  22412. weight: math.unit(137, "lb"),
  22413. name: "Front",
  22414. image: {
  22415. source: "./media/characters/sasha-katraine/front.svg",
  22416. extra: 1745/1694,
  22417. bottom: 37/1782
  22418. }
  22419. },
  22420. back: {
  22421. height: math.unit(5 + 3 / 12, "feet"),
  22422. weight: math.unit(137, "lb"),
  22423. name: "Back",
  22424. image: {
  22425. source: "./media/characters/sasha-katraine/back.svg",
  22426. extra: 1776/1699,
  22427. bottom: 26/1802
  22428. }
  22429. },
  22430. },
  22431. [
  22432. {
  22433. name: "Micro",
  22434. height: math.unit(5, "inches")
  22435. },
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(5 + 3 / 12, "feet"),
  22439. default: true
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22445. {
  22446. side: {
  22447. height: math.unit(4, "inches"),
  22448. weight: math.unit(200, "grams"),
  22449. name: "Side",
  22450. image: {
  22451. source: "./media/characters/der/side.svg",
  22452. extra: 719 / 400,
  22453. bottom: 30.6 / 749.9187
  22454. }
  22455. },
  22456. },
  22457. [
  22458. {
  22459. name: "Micro",
  22460. height: math.unit(4, "inches"),
  22461. default: true
  22462. },
  22463. ]
  22464. ))
  22465. characterMakers.push(() => makeCharacter(
  22466. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22467. {
  22468. side: {
  22469. height: math.unit(30, "meters"),
  22470. weight: math.unit(700, "tonnes"),
  22471. name: "Side",
  22472. image: {
  22473. source: "./media/characters/fixerdragon/side.svg",
  22474. extra: (1293.0514 - 116.03) / 1106.86,
  22475. bottom: 116.03 / 1293.0514
  22476. }
  22477. },
  22478. },
  22479. [
  22480. {
  22481. name: "Planck",
  22482. height: math.unit(1.6e-35, "meters")
  22483. },
  22484. {
  22485. name: "Micro",
  22486. height: math.unit(0.4, "meters")
  22487. },
  22488. {
  22489. name: "Normal",
  22490. height: math.unit(30, "meters"),
  22491. default: true
  22492. },
  22493. {
  22494. name: "Megamacro",
  22495. height: math.unit(1.2, "megameters")
  22496. },
  22497. {
  22498. name: "Teramacro",
  22499. height: math.unit(130, "terameters")
  22500. },
  22501. {
  22502. name: "Yottamacro",
  22503. height: math.unit(6200, "yottameters")
  22504. },
  22505. ]
  22506. ));
  22507. characterMakers.push(() => makeCharacter(
  22508. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22509. {
  22510. front: {
  22511. height: math.unit(8, "feet"),
  22512. weight: math.unit(250, "lb"),
  22513. name: "Front",
  22514. image: {
  22515. source: "./media/characters/kite/front.svg",
  22516. extra: 2796 / 2659,
  22517. bottom: 0.002
  22518. }
  22519. },
  22520. },
  22521. [
  22522. {
  22523. name: "Normal",
  22524. height: math.unit(8, "feet"),
  22525. default: true
  22526. },
  22527. {
  22528. name: "Macro",
  22529. height: math.unit(360, "feet")
  22530. },
  22531. {
  22532. name: "Megamacro",
  22533. height: math.unit(1500, "feet")
  22534. },
  22535. ]
  22536. ))
  22537. characterMakers.push(() => makeCharacter(
  22538. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22539. {
  22540. front: {
  22541. height: math.unit(5 + 11/12, "feet"),
  22542. weight: math.unit(170, "lb"),
  22543. name: "Front",
  22544. image: {
  22545. source: "./media/characters/poojawa-vynar/front.svg",
  22546. extra: 1735/1585,
  22547. bottom: 96/1831
  22548. }
  22549. },
  22550. back: {
  22551. height: math.unit(5 + 11/12, "feet"),
  22552. weight: math.unit(170, "lb"),
  22553. name: "Back",
  22554. image: {
  22555. source: "./media/characters/poojawa-vynar/back.svg",
  22556. extra: 1749/1607,
  22557. bottom: 28/1777
  22558. }
  22559. },
  22560. male: {
  22561. height: math.unit(5 + 11/12, "feet"),
  22562. weight: math.unit(170, "lb"),
  22563. name: "Male",
  22564. image: {
  22565. source: "./media/characters/poojawa-vynar/male.svg",
  22566. extra: 1855/1713,
  22567. bottom: 63/1918
  22568. }
  22569. },
  22570. taur: {
  22571. height: math.unit(5 + 11/12, "feet"),
  22572. weight: math.unit(170, "lb"),
  22573. name: "Taur",
  22574. image: {
  22575. source: "./media/characters/poojawa-vynar/taur.svg",
  22576. extra: 1151/1059,
  22577. bottom: 356/1507
  22578. }
  22579. },
  22580. frontDressed: {
  22581. height: math.unit(5 + 11/12, "feet"),
  22582. weight: math.unit(170, "lb"),
  22583. name: "Front (Dressed)",
  22584. image: {
  22585. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22586. extra: 1735/1585,
  22587. bottom: 96/1831
  22588. }
  22589. },
  22590. backDressed: {
  22591. height: math.unit(5 + 11/12, "feet"),
  22592. weight: math.unit(170, "lb"),
  22593. name: "Back (Dressed)",
  22594. image: {
  22595. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22596. extra: 1749/1607,
  22597. bottom: 28/1777
  22598. }
  22599. },
  22600. maleDressed: {
  22601. height: math.unit(5 + 11/12, "feet"),
  22602. weight: math.unit(170, "lb"),
  22603. name: "Male (Dressed)",
  22604. image: {
  22605. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22606. extra: 1855/1713,
  22607. bottom: 63/1918
  22608. }
  22609. },
  22610. taurDressed: {
  22611. height: math.unit(5 + 11/12, "feet"),
  22612. weight: math.unit(170, "lb"),
  22613. name: "Taur (Dressed)",
  22614. image: {
  22615. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22616. extra: 1151/1059,
  22617. bottom: 356/1507
  22618. }
  22619. },
  22620. maw: {
  22621. height: math.unit(1.46, "feet"),
  22622. name: "Maw",
  22623. image: {
  22624. source: "./media/characters/poojawa-vynar/maw.svg"
  22625. }
  22626. },
  22627. head: {
  22628. height: math.unit(2.34, "feet"),
  22629. name: "Head",
  22630. image: {
  22631. source: "./media/characters/poojawa-vynar/head.svg"
  22632. }
  22633. },
  22634. paw: {
  22635. height: math.unit(1.61, "feet"),
  22636. name: "Paw",
  22637. image: {
  22638. source: "./media/characters/poojawa-vynar/paw.svg"
  22639. }
  22640. },
  22641. pawToering: {
  22642. height: math.unit(1.72, "feet"),
  22643. name: "Paw (Toering)",
  22644. image: {
  22645. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22646. }
  22647. },
  22648. toering: {
  22649. height: math.unit(2.9, "inches"),
  22650. name: "Toering",
  22651. image: {
  22652. source: "./media/characters/poojawa-vynar/toering.svg"
  22653. }
  22654. },
  22655. shaft: {
  22656. height: math.unit(0.625, "feet"),
  22657. name: "Shaft",
  22658. image: {
  22659. source: "./media/characters/poojawa-vynar/shaft.svg"
  22660. }
  22661. },
  22662. spade: {
  22663. height: math.unit(0.42, "feet"),
  22664. name: "Spade",
  22665. image: {
  22666. source: "./media/characters/poojawa-vynar/spade.svg"
  22667. }
  22668. },
  22669. },
  22670. [
  22671. {
  22672. name: "Shortstack",
  22673. height: math.unit(4, "feet")
  22674. },
  22675. {
  22676. name: "Normal",
  22677. height: math.unit(5 + 11 / 12, "feet"),
  22678. default: true
  22679. },
  22680. {
  22681. name: "Tauric",
  22682. height: math.unit(4, "meters")
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22688. {
  22689. front: {
  22690. height: math.unit(293, "meters"),
  22691. weight: math.unit(70400, "tons"),
  22692. name: "Front",
  22693. image: {
  22694. source: "./media/characters/violette/front.svg",
  22695. extra: 1227 / 1180,
  22696. bottom: 0.005
  22697. }
  22698. },
  22699. back: {
  22700. height: math.unit(293, "meters"),
  22701. weight: math.unit(70400, "tons"),
  22702. name: "Back",
  22703. image: {
  22704. source: "./media/characters/violette/back.svg",
  22705. extra: 1227 / 1180,
  22706. bottom: 0.005
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Macro",
  22713. height: math.unit(293, "meters"),
  22714. default: true
  22715. },
  22716. ]
  22717. ))
  22718. characterMakers.push(() => makeCharacter(
  22719. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22720. {
  22721. front: {
  22722. height: math.unit(1050, "feet"),
  22723. weight: math.unit(200000, "tons"),
  22724. name: "Front",
  22725. image: {
  22726. source: "./media/characters/alessandra/front.svg",
  22727. extra: 960 / 912,
  22728. bottom: 0.06
  22729. }
  22730. },
  22731. },
  22732. [
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(1050, "feet")
  22736. },
  22737. {
  22738. name: "Macro+",
  22739. height: math.unit(900, "meters"),
  22740. default: true
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(5, "feet"),
  22749. weight: math.unit(187, "lb"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/person/front.svg",
  22753. extra: 3087 / 2945,
  22754. bottom: 91 / 3181
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Micro",
  22761. height: math.unit(3, "inches")
  22762. },
  22763. {
  22764. name: "Normal",
  22765. height: math.unit(5, "feet"),
  22766. default: true
  22767. },
  22768. {
  22769. name: "Macro",
  22770. height: math.unit(90, "feet")
  22771. },
  22772. {
  22773. name: "Max Size",
  22774. height: math.unit(280, "feet")
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22780. {
  22781. front: {
  22782. height: math.unit(4.5, "meters"),
  22783. weight: math.unit(3200, "lb"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/ty/front.svg",
  22787. extra: 1038 / 960,
  22788. bottom: 31.156 / 1068
  22789. }
  22790. },
  22791. back: {
  22792. height: math.unit(4.5, "meters"),
  22793. weight: math.unit(3200, "lb"),
  22794. name: "Back",
  22795. image: {
  22796. source: "./media/characters/ty/back.svg",
  22797. extra: 1044 / 966,
  22798. bottom: 7.48 / 1049
  22799. }
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Normal",
  22805. height: math.unit(4.5, "meters"),
  22806. default: true
  22807. },
  22808. ]
  22809. ))
  22810. characterMakers.push(() => makeCharacter(
  22811. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22812. {
  22813. front: {
  22814. height: math.unit(5 + 4 / 12, "feet"),
  22815. weight: math.unit(115, "lb"),
  22816. name: "Front",
  22817. image: {
  22818. source: "./media/characters/rocky/front.svg",
  22819. extra: 1012 / 975,
  22820. bottom: 54 / 1066
  22821. }
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(5 + 4 / 12, "feet"),
  22828. default: true
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22834. {
  22835. upright: {
  22836. height: math.unit(6, "meters"),
  22837. weight: math.unit(4000, "kg"),
  22838. name: "Upright",
  22839. image: {
  22840. source: "./media/characters/ruin/upright.svg",
  22841. extra: 668 / 661,
  22842. bottom: 42 / 799.8396
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(6, "meters"),
  22850. default: true
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(5, "feet"),
  22859. weight: math.unit(106, "lb"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/robin/front.svg",
  22863. extra: 862 / 799,
  22864. bottom: 42.4 / 914.8856
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Normal",
  22871. height: math.unit(5, "feet"),
  22872. default: true
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22878. {
  22879. side: {
  22880. height: math.unit(3, "feet"),
  22881. weight: math.unit(225, "lb"),
  22882. name: "Side",
  22883. image: {
  22884. source: "./media/characters/saian/side.svg",
  22885. extra: 566 / 356,
  22886. bottom: 79.7 / 643
  22887. }
  22888. },
  22889. maw: {
  22890. height: math.unit(2.85, "feet"),
  22891. name: "Maw",
  22892. image: {
  22893. source: "./media/characters/saian/maw.svg"
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Normal",
  22900. height: math.unit(3, "feet"),
  22901. default: true
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22907. {
  22908. side: {
  22909. height: math.unit(8, "feet"),
  22910. weight: math.unit(300, "lb"),
  22911. name: "Side",
  22912. image: {
  22913. source: "./media/characters/equus-silvermane/side.svg",
  22914. extra: 2176 / 2050,
  22915. bottom: 65.7 / 2245
  22916. }
  22917. },
  22918. front: {
  22919. height: math.unit(8, "feet"),
  22920. weight: math.unit(300, "lb"),
  22921. name: "Front",
  22922. image: {
  22923. source: "./media/characters/equus-silvermane/front.svg",
  22924. extra: 4633 / 4400,
  22925. bottom: 71.3 / 4706.915
  22926. }
  22927. },
  22928. sideStepping: {
  22929. height: math.unit(8, "feet"),
  22930. weight: math.unit(300, "lb"),
  22931. name: "Side (Stepping)",
  22932. image: {
  22933. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22934. extra: 1968 / 1860,
  22935. bottom: 16.4 / 1989
  22936. }
  22937. },
  22938. },
  22939. [
  22940. {
  22941. name: "Normal",
  22942. height: math.unit(8, "feet")
  22943. },
  22944. {
  22945. name: "Minimacro",
  22946. height: math.unit(75, "feet"),
  22947. default: true
  22948. },
  22949. {
  22950. name: "Macro",
  22951. height: math.unit(150, "feet")
  22952. },
  22953. {
  22954. name: "Macro+",
  22955. height: math.unit(1000, "feet")
  22956. },
  22957. {
  22958. name: "Megamacro",
  22959. height: math.unit(1, "mile")
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22965. {
  22966. side: {
  22967. height: math.unit(20, "feet"),
  22968. weight: math.unit(30000, "kg"),
  22969. name: "Side",
  22970. image: {
  22971. source: "./media/characters/windar/side.svg",
  22972. extra: 1491 / 1248,
  22973. bottom: 82.56 / 1568
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(20, "feet"),
  22981. default: true
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22987. {
  22988. side: {
  22989. height: math.unit(15.66, "feet"),
  22990. weight: math.unit(150, "lb"),
  22991. name: "Side",
  22992. image: {
  22993. source: "./media/characters/melody/side.svg",
  22994. extra: 1097 / 944,
  22995. bottom: 11.8 / 1109
  22996. }
  22997. },
  22998. sideOutfit: {
  22999. height: math.unit(15.66, "feet"),
  23000. weight: math.unit(150, "lb"),
  23001. name: "Side (Outfit)",
  23002. image: {
  23003. source: "./media/characters/melody/side-outfit.svg",
  23004. extra: 1097 / 944,
  23005. bottom: 11.8 / 1109
  23006. }
  23007. },
  23008. },
  23009. [
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(15.66, "feet"),
  23013. default: true
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23019. {
  23020. armoredFront: {
  23021. height: math.unit(8, "feet"),
  23022. weight: math.unit(325, "lb"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/windera/armored-front.svg",
  23026. extra: 1830/1598,
  23027. bottom: 151/1981
  23028. },
  23029. form: "armored",
  23030. default: true
  23031. },
  23032. macroFront: {
  23033. height: math.unit(70, "feet"),
  23034. weight: math.unit(315453, "lb"),
  23035. name: "Front",
  23036. image: {
  23037. source: "./media/characters/windera/macro-front.svg",
  23038. extra: 963/883,
  23039. bottom: 23/986
  23040. },
  23041. form: "macro",
  23042. default: true
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Normal",
  23048. height: math.unit(8, "feet"),
  23049. default: true,
  23050. form: "armored"
  23051. },
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(70, "feet"),
  23055. default: true,
  23056. form: "macro"
  23057. },
  23058. ],
  23059. {
  23060. "armored": {
  23061. name: "Armored",
  23062. default: true
  23063. },
  23064. "macro": {
  23065. name: "Macro",
  23066. },
  23067. }
  23068. ))
  23069. characterMakers.push(() => makeCharacter(
  23070. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23071. {
  23072. front: {
  23073. height: math.unit(28.75, "feet"),
  23074. weight: math.unit(2000, "kg"),
  23075. name: "Front",
  23076. image: {
  23077. source: "./media/characters/sonear/front.svg",
  23078. extra: 1041.1 / 964.9,
  23079. bottom: 53.7 / 1096.6
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Normal",
  23086. height: math.unit(28.75, "feet"),
  23087. default: true
  23088. },
  23089. ]
  23090. ))
  23091. characterMakers.push(() => makeCharacter(
  23092. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23093. {
  23094. side: {
  23095. height: math.unit(25.5, "feet"),
  23096. weight: math.unit(23000, "kg"),
  23097. name: "Side",
  23098. image: {
  23099. source: "./media/characters/kanara/side.svg"
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Normal",
  23106. height: math.unit(25.5, "feet"),
  23107. default: true
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23113. {
  23114. side: {
  23115. height: math.unit(10, "feet"),
  23116. weight: math.unit(1000, "kg"),
  23117. name: "Side",
  23118. image: {
  23119. source: "./media/characters/ereus/side.svg",
  23120. extra: 1157 / 959,
  23121. bottom: 153 / 1312.5
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Normal",
  23128. height: math.unit(10, "feet"),
  23129. default: true
  23130. },
  23131. ]
  23132. ))
  23133. characterMakers.push(() => makeCharacter(
  23134. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23135. {
  23136. side: {
  23137. height: math.unit(4.5, "feet"),
  23138. weight: math.unit(500, "lb"),
  23139. name: "Side",
  23140. image: {
  23141. source: "./media/characters/e-ter/side.svg",
  23142. extra: 1550 / 1248,
  23143. bottom: 146 / 1694
  23144. }
  23145. },
  23146. },
  23147. [
  23148. {
  23149. name: "Normal",
  23150. height: math.unit(4.5, "feet"),
  23151. default: true
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23157. {
  23158. side: {
  23159. height: math.unit(9.7, "feet"),
  23160. weight: math.unit(4000, "kg"),
  23161. name: "Side",
  23162. image: {
  23163. source: "./media/characters/yamie/side.svg"
  23164. }
  23165. },
  23166. },
  23167. [
  23168. {
  23169. name: "Normal",
  23170. height: math.unit(9.7, "feet"),
  23171. default: true
  23172. },
  23173. ]
  23174. ))
  23175. characterMakers.push(() => makeCharacter(
  23176. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23177. {
  23178. front: {
  23179. height: math.unit(50, "feet"),
  23180. weight: math.unit(50000, "kg"),
  23181. name: "Front",
  23182. image: {
  23183. source: "./media/characters/anders/front.svg",
  23184. extra: 570 / 539,
  23185. bottom: 14.7 / 586.7
  23186. }
  23187. },
  23188. },
  23189. [
  23190. {
  23191. name: "Large",
  23192. height: math.unit(50, "feet")
  23193. },
  23194. {
  23195. name: "Macro",
  23196. height: math.unit(2000, "feet"),
  23197. default: true
  23198. },
  23199. {
  23200. name: "Megamacro",
  23201. height: math.unit(12, "miles")
  23202. },
  23203. ]
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23207. {
  23208. front: {
  23209. height: math.unit(7 + 2 / 12, "feet"),
  23210. weight: math.unit(300, "lb"),
  23211. name: "Front",
  23212. image: {
  23213. source: "./media/characters/reban/front.svg",
  23214. extra: 1287/1212,
  23215. bottom: 148/1435
  23216. }
  23217. },
  23218. head: {
  23219. height: math.unit(1.95, "feet"),
  23220. name: "Head",
  23221. image: {
  23222. source: "./media/characters/reban/head.svg"
  23223. }
  23224. },
  23225. maw: {
  23226. height: math.unit(0.95, "feet"),
  23227. name: "Maw",
  23228. image: {
  23229. source: "./media/characters/reban/maw.svg"
  23230. }
  23231. },
  23232. foot: {
  23233. height: math.unit(1.65, "feet"),
  23234. name: "Foot",
  23235. image: {
  23236. source: "./media/characters/reban/foot.svg"
  23237. }
  23238. },
  23239. dick: {
  23240. height: math.unit(7 / 5, "feet"),
  23241. name: "Dick",
  23242. image: {
  23243. source: "./media/characters/reban/dick.svg"
  23244. }
  23245. },
  23246. },
  23247. [
  23248. {
  23249. name: "Natural Height",
  23250. height: math.unit(7 + 2 / 12, "feet")
  23251. },
  23252. {
  23253. name: "Macro",
  23254. height: math.unit(500, "feet"),
  23255. default: true
  23256. },
  23257. {
  23258. name: "Canon Height",
  23259. height: math.unit(50, "AU")
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23265. {
  23266. front: {
  23267. height: math.unit(6, "feet"),
  23268. weight: math.unit(150, "lb"),
  23269. name: "Front",
  23270. image: {
  23271. source: "./media/characters/terrance-keayes/front.svg",
  23272. extra: 1.005,
  23273. bottom: 151 / 1615
  23274. }
  23275. },
  23276. side: {
  23277. height: math.unit(6, "feet"),
  23278. weight: math.unit(150, "lb"),
  23279. name: "Side",
  23280. image: {
  23281. source: "./media/characters/terrance-keayes/side.svg",
  23282. extra: 1.005,
  23283. bottom: 129.4 / 1544
  23284. }
  23285. },
  23286. back: {
  23287. height: math.unit(6, "feet"),
  23288. weight: math.unit(150, "lb"),
  23289. name: "Back",
  23290. image: {
  23291. source: "./media/characters/terrance-keayes/back.svg",
  23292. extra: 1.005,
  23293. bottom: 58.4 / 1557.3
  23294. }
  23295. },
  23296. dick: {
  23297. height: math.unit(6 * 0.208, "feet"),
  23298. name: "Dick",
  23299. image: {
  23300. source: "./media/characters/terrance-keayes/dick.svg"
  23301. }
  23302. },
  23303. },
  23304. [
  23305. {
  23306. name: "Canon Height",
  23307. height: math.unit(35, "miles"),
  23308. default: true
  23309. },
  23310. ]
  23311. ))
  23312. characterMakers.push(() => makeCharacter(
  23313. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23314. {
  23315. front: {
  23316. height: math.unit(6, "feet"),
  23317. weight: math.unit(150, "lb"),
  23318. name: "Front",
  23319. image: {
  23320. source: "./media/characters/ofelia/front.svg",
  23321. extra: 1130/1117,
  23322. bottom: 91/1221
  23323. }
  23324. },
  23325. back: {
  23326. height: math.unit(6, "feet"),
  23327. weight: math.unit(150, "lb"),
  23328. name: "Back",
  23329. image: {
  23330. source: "./media/characters/ofelia/back.svg",
  23331. extra: 1172/1159,
  23332. bottom: 28/1200
  23333. }
  23334. },
  23335. maw: {
  23336. height: math.unit(1, "feet"),
  23337. name: "Maw",
  23338. image: {
  23339. source: "./media/characters/ofelia/maw.svg"
  23340. }
  23341. },
  23342. foot: {
  23343. height: math.unit(1.949, "feet"),
  23344. name: "Foot",
  23345. image: {
  23346. source: "./media/characters/ofelia/foot.svg"
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Canon Height",
  23353. height: math.unit(2000, "miles"),
  23354. default: true
  23355. },
  23356. ]
  23357. ))
  23358. characterMakers.push(() => makeCharacter(
  23359. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23360. {
  23361. front: {
  23362. height: math.unit(6, "feet"),
  23363. weight: math.unit(150, "lb"),
  23364. name: "Front",
  23365. image: {
  23366. source: "./media/characters/samuel/front.svg",
  23367. extra: 265 / 258,
  23368. bottom: 2 / 266.1566
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Macro",
  23375. height: math.unit(100, "feet"),
  23376. default: true
  23377. },
  23378. {
  23379. name: "Full Size",
  23380. height: math.unit(1000, "miles")
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23386. {
  23387. front: {
  23388. height: math.unit(6, "feet"),
  23389. weight: math.unit(300, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/beishir-kiel/front.svg",
  23393. extra: 569 / 547,
  23394. bottom: 41.9 / 609
  23395. }
  23396. },
  23397. maw: {
  23398. height: math.unit(6 * 0.202, "feet"),
  23399. name: "Maw",
  23400. image: {
  23401. source: "./media/characters/beishir-kiel/maw.svg"
  23402. }
  23403. },
  23404. },
  23405. [
  23406. {
  23407. name: "Macro",
  23408. height: math.unit(300, "feet"),
  23409. default: true
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23415. {
  23416. front: {
  23417. height: math.unit(5 + 7/12, "feet"),
  23418. weight: math.unit(120, "lb"),
  23419. name: "Front",
  23420. image: {
  23421. source: "./media/characters/logan-grey/front.svg",
  23422. extra: 1836/1738,
  23423. bottom: 108/1944
  23424. }
  23425. },
  23426. back: {
  23427. height: math.unit(5 + 7/12, "feet"),
  23428. weight: math.unit(120, "lb"),
  23429. name: "Back",
  23430. image: {
  23431. source: "./media/characters/logan-grey/back.svg",
  23432. extra: 1880/1794,
  23433. bottom: 24/1904
  23434. }
  23435. },
  23436. frontSfw: {
  23437. height: math.unit(5 + 7/12, "feet"),
  23438. weight: math.unit(120, "lb"),
  23439. name: "Front (SFW)",
  23440. image: {
  23441. source: "./media/characters/logan-grey/front-sfw.svg",
  23442. extra: 1836/1738,
  23443. bottom: 108/1944
  23444. }
  23445. },
  23446. backSfw: {
  23447. height: math.unit(5 + 7/12, "feet"),
  23448. weight: math.unit(120, "lb"),
  23449. name: "Back (SFW)",
  23450. image: {
  23451. source: "./media/characters/logan-grey/back-sfw.svg",
  23452. extra: 1880/1794,
  23453. bottom: 24/1904
  23454. }
  23455. },
  23456. hands: {
  23457. height: math.unit(0.84, "feet"),
  23458. name: "Hands",
  23459. image: {
  23460. source: "./media/characters/logan-grey/hands.svg"
  23461. }
  23462. },
  23463. paws: {
  23464. height: math.unit(0.72, "feet"),
  23465. name: "Paws",
  23466. image: {
  23467. source: "./media/characters/logan-grey/paws.svg"
  23468. }
  23469. },
  23470. cock: {
  23471. height: math.unit(1.45, "feet"),
  23472. name: "Cock",
  23473. image: {
  23474. source: "./media/characters/logan-grey/cock.svg"
  23475. }
  23476. },
  23477. cockAlt: {
  23478. height: math.unit(1.437, "feet"),
  23479. name: "Cock (alt)",
  23480. image: {
  23481. source: "./media/characters/logan-grey/cock-alt.svg"
  23482. }
  23483. },
  23484. },
  23485. [
  23486. {
  23487. name: "Normal",
  23488. height: math.unit(5 + 8 / 12, "feet")
  23489. },
  23490. {
  23491. name: "The 500 Foot Femboy",
  23492. height: math.unit(500, "feet"),
  23493. default: true
  23494. },
  23495. {
  23496. name: "Megmacro",
  23497. height: math.unit(20, "miles")
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(8 + 2 / 12, "feet"),
  23506. weight: math.unit(275, "lb"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/draganta/front.svg",
  23510. extra: 1177 / 1135,
  23511. bottom: 33.46 / 1212.1
  23512. }
  23513. },
  23514. },
  23515. [
  23516. {
  23517. name: "Normal",
  23518. height: math.unit(8 + 6 / 12, "feet"),
  23519. default: true
  23520. },
  23521. {
  23522. name: "Macro",
  23523. height: math.unit(150, "feet")
  23524. },
  23525. {
  23526. name: "Megamacro",
  23527. height: math.unit(1000, "miles")
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23533. {
  23534. front: {
  23535. height: math.unit(1.72, "m"),
  23536. weight: math.unit(80, "lb"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/voski/front.svg",
  23540. extra: 2076.22 / 2022.4,
  23541. bottom: 102.7 / 2177.3866
  23542. }
  23543. },
  23544. frontFlaccid: {
  23545. height: math.unit(1.72, "m"),
  23546. weight: math.unit(80, "lb"),
  23547. name: "Front (Flaccid)",
  23548. image: {
  23549. source: "./media/characters/voski/front-flaccid.svg",
  23550. extra: 2076.22 / 2022.4,
  23551. bottom: 102.7 / 2177.3866
  23552. }
  23553. },
  23554. frontErect: {
  23555. height: math.unit(1.72, "m"),
  23556. weight: math.unit(80, "lb"),
  23557. name: "Front (Erect)",
  23558. image: {
  23559. source: "./media/characters/voski/front-erect.svg",
  23560. extra: 2076.22 / 2022.4,
  23561. bottom: 102.7 / 2177.3866
  23562. }
  23563. },
  23564. back: {
  23565. height: math.unit(1.72, "m"),
  23566. weight: math.unit(80, "lb"),
  23567. name: "Back",
  23568. image: {
  23569. source: "./media/characters/voski/back.svg",
  23570. extra: 2104 / 2051,
  23571. bottom: 10.45 / 2113.63
  23572. }
  23573. },
  23574. },
  23575. [
  23576. {
  23577. name: "Normal",
  23578. height: math.unit(1.72, "m")
  23579. },
  23580. {
  23581. name: "Macro",
  23582. height: math.unit(55, "m"),
  23583. default: true
  23584. },
  23585. {
  23586. name: "Macro+",
  23587. height: math.unit(300, "m")
  23588. },
  23589. {
  23590. name: "Macro++",
  23591. height: math.unit(700, "m")
  23592. },
  23593. {
  23594. name: "Macro+++",
  23595. height: math.unit(4500, "m")
  23596. },
  23597. {
  23598. name: "Macro++++",
  23599. height: math.unit(45, "km")
  23600. },
  23601. {
  23602. name: "Macro+++++",
  23603. height: math.unit(1220, "km")
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23609. {
  23610. front: {
  23611. height: math.unit(2.3, "m"),
  23612. weight: math.unit(304, "kg"),
  23613. name: "Front",
  23614. image: {
  23615. source: "./media/characters/icowom-lee/front.svg",
  23616. extra: 985 / 955,
  23617. bottom: 25.4 / 1012
  23618. }
  23619. },
  23620. fronttentacles: {
  23621. height: math.unit(2.3, "m"),
  23622. weight: math.unit(304, "kg"),
  23623. name: "Front-tentacles",
  23624. image: {
  23625. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23626. extra: 985 / 955,
  23627. bottom: 25.4 / 1012
  23628. }
  23629. },
  23630. back: {
  23631. height: math.unit(2.3, "m"),
  23632. weight: math.unit(304, "kg"),
  23633. name: "Back",
  23634. image: {
  23635. source: "./media/characters/icowom-lee/back.svg",
  23636. extra: 975 / 954,
  23637. bottom: 9.5 / 985
  23638. }
  23639. },
  23640. backtentacles: {
  23641. height: math.unit(2.3, "m"),
  23642. weight: math.unit(304, "kg"),
  23643. name: "Back-tentacles",
  23644. image: {
  23645. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23646. extra: 975 / 954,
  23647. bottom: 9.5 / 985
  23648. }
  23649. },
  23650. frontDressed: {
  23651. height: math.unit(2.3, "m"),
  23652. weight: math.unit(304, "kg"),
  23653. name: "Front (Dressed)",
  23654. image: {
  23655. source: "./media/characters/icowom-lee/front-dressed.svg",
  23656. extra: 3076 / 2933,
  23657. bottom: 51.4 / 3125.1889
  23658. }
  23659. },
  23660. rump: {
  23661. height: math.unit(0.776, "meters"),
  23662. name: "Rump",
  23663. image: {
  23664. source: "./media/characters/icowom-lee/rump.svg"
  23665. }
  23666. },
  23667. genitals: {
  23668. height: math.unit(0.78, "meters"),
  23669. name: "Genitals",
  23670. image: {
  23671. source: "./media/characters/icowom-lee/genitals.svg"
  23672. }
  23673. },
  23674. },
  23675. [
  23676. {
  23677. name: "Normal",
  23678. height: math.unit(2.3, "meters"),
  23679. default: true
  23680. },
  23681. {
  23682. name: "Macro",
  23683. height: math.unit(94, "meters"),
  23684. default: true
  23685. },
  23686. ]
  23687. ))
  23688. characterMakers.push(() => makeCharacter(
  23689. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23690. {
  23691. front: {
  23692. height: math.unit(22, "meters"),
  23693. weight: math.unit(21000, "kg"),
  23694. name: "Front",
  23695. image: {
  23696. source: "./media/characters/shock-diamond/front.svg",
  23697. extra: 2204 / 2053,
  23698. bottom: 65 / 2239.47
  23699. }
  23700. },
  23701. frontNude: {
  23702. height: math.unit(22, "meters"),
  23703. weight: math.unit(21000, "kg"),
  23704. name: "Front (Nude)",
  23705. image: {
  23706. source: "./media/characters/shock-diamond/front-nude.svg",
  23707. extra: 2514 / 2285,
  23708. bottom: 13 / 2527.56
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Normal",
  23715. height: math.unit(3, "meters")
  23716. },
  23717. {
  23718. name: "Macro",
  23719. height: math.unit(22, "meters"),
  23720. default: true
  23721. },
  23722. ]
  23723. ))
  23724. characterMakers.push(() => makeCharacter(
  23725. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23726. {
  23727. front: {
  23728. height: math.unit(5 + 4 / 12, "feet"),
  23729. weight: math.unit(120, "lb"),
  23730. name: "Front",
  23731. image: {
  23732. source: "./media/characters/rory/front.svg",
  23733. extra: 1318/1241,
  23734. bottom: 42/1360
  23735. }
  23736. },
  23737. back: {
  23738. height: math.unit(5 + 4 / 12, "feet"),
  23739. weight: math.unit(120, "lb"),
  23740. name: "Back",
  23741. image: {
  23742. source: "./media/characters/rory/back.svg",
  23743. extra: 1318/1241,
  23744. bottom: 42/1360
  23745. }
  23746. },
  23747. butt: {
  23748. height: math.unit(1.74, "feet"),
  23749. name: "Butt",
  23750. image: {
  23751. source: "./media/characters/rory/butt.svg"
  23752. }
  23753. },
  23754. dick: {
  23755. height: math.unit(1.02, "feet"),
  23756. name: "Dick",
  23757. image: {
  23758. source: "./media/characters/rory/dick.svg"
  23759. }
  23760. },
  23761. paws: {
  23762. height: math.unit(1, "feet"),
  23763. name: "Paws",
  23764. image: {
  23765. source: "./media/characters/rory/paws.svg"
  23766. }
  23767. },
  23768. frontAlt: {
  23769. height: math.unit(5 + 4 / 12, "feet"),
  23770. weight: math.unit(120, "lb"),
  23771. name: "Front (Alt)",
  23772. image: {
  23773. source: "./media/characters/rory/front-alt.svg",
  23774. extra: 589 / 556,
  23775. bottom: 45.7 / 635.76
  23776. }
  23777. },
  23778. frontAltNude: {
  23779. height: math.unit(5 + 4 / 12, "feet"),
  23780. weight: math.unit(120, "lb"),
  23781. name: "Front (Alt, Nude)",
  23782. image: {
  23783. source: "./media/characters/rory/front-alt-nude.svg",
  23784. extra: 589 / 556,
  23785. bottom: 45.7 / 635.76
  23786. }
  23787. },
  23788. side: {
  23789. height: math.unit(5 + 4 / 12, "feet"),
  23790. weight: math.unit(120, "lb"),
  23791. name: "Side",
  23792. image: {
  23793. source: "./media/characters/rory/side.svg",
  23794. extra: 597 / 564,
  23795. bottom: 55 / 653
  23796. }
  23797. },
  23798. backAlt: {
  23799. height: math.unit(5 + 4 / 12, "feet"),
  23800. weight: math.unit(120, "lb"),
  23801. name: "Back (Alt)",
  23802. image: {
  23803. source: "./media/characters/rory/back-alt.svg",
  23804. extra: 620 / 585,
  23805. bottom: 8.86 / 630.43
  23806. }
  23807. },
  23808. dickAlt: {
  23809. height: math.unit(0.86, "feet"),
  23810. name: "Dick (Alt)",
  23811. image: {
  23812. source: "./media/characters/rory/dick-alt.svg"
  23813. }
  23814. },
  23815. },
  23816. [
  23817. {
  23818. name: "Normal",
  23819. height: math.unit(5 + 4 / 12, "feet"),
  23820. default: true
  23821. },
  23822. {
  23823. name: "Macro",
  23824. height: math.unit(100, "feet")
  23825. },
  23826. {
  23827. name: "Macro+",
  23828. height: math.unit(140, "feet")
  23829. },
  23830. {
  23831. name: "Macro++",
  23832. height: math.unit(300, "feet")
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23838. {
  23839. front: {
  23840. height: math.unit(5 + 9 / 12, "feet"),
  23841. weight: math.unit(190, "lb"),
  23842. name: "Front",
  23843. image: {
  23844. source: "./media/characters/sprisk/front.svg",
  23845. extra: 1225 / 1180,
  23846. bottom: 42.7 / 1266.4
  23847. }
  23848. },
  23849. frontNsfw: {
  23850. height: math.unit(5 + 9 / 12, "feet"),
  23851. weight: math.unit(190, "lb"),
  23852. name: "Front (NSFW)",
  23853. image: {
  23854. source: "./media/characters/sprisk/front-nsfw.svg",
  23855. extra: 1225 / 1180,
  23856. bottom: 42.7 / 1266.4
  23857. }
  23858. },
  23859. back: {
  23860. height: math.unit(5 + 9 / 12, "feet"),
  23861. weight: math.unit(190, "lb"),
  23862. name: "Back",
  23863. image: {
  23864. source: "./media/characters/sprisk/back.svg",
  23865. extra: 1247 / 1200,
  23866. bottom: 5.6 / 1253.04
  23867. }
  23868. },
  23869. },
  23870. [
  23871. {
  23872. name: "Tiny",
  23873. height: math.unit(2, "inches")
  23874. },
  23875. {
  23876. name: "Normal",
  23877. height: math.unit(5 + 9 / 12, "feet"),
  23878. default: true
  23879. },
  23880. {
  23881. name: "Mini Macro",
  23882. height: math.unit(18, "feet")
  23883. },
  23884. {
  23885. name: "Macro",
  23886. height: math.unit(100, "feet")
  23887. },
  23888. {
  23889. name: "MACRO",
  23890. height: math.unit(50, "miles")
  23891. },
  23892. {
  23893. name: "M A C R O",
  23894. height: math.unit(300, "miles")
  23895. },
  23896. ]
  23897. ))
  23898. characterMakers.push(() => makeCharacter(
  23899. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23900. {
  23901. side: {
  23902. height: math.unit(15.6, "meters"),
  23903. weight: math.unit(700000, "kg"),
  23904. name: "Side",
  23905. image: {
  23906. source: "./media/characters/bunsen/side.svg",
  23907. extra: 1644 / 358
  23908. }
  23909. },
  23910. foot: {
  23911. height: math.unit(1.611 * 1644 / 358, "meter"),
  23912. name: "Foot",
  23913. image: {
  23914. source: "./media/characters/bunsen/foot.svg"
  23915. }
  23916. },
  23917. },
  23918. [
  23919. {
  23920. name: "Small",
  23921. height: math.unit(10, "feet")
  23922. },
  23923. {
  23924. name: "Normal",
  23925. height: math.unit(15.6, "meters"),
  23926. default: true
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23932. {
  23933. front: {
  23934. height: math.unit(4 + 11 / 12, "feet"),
  23935. weight: math.unit(140, "lb"),
  23936. name: "Front",
  23937. image: {
  23938. source: "./media/characters/sesh/front.svg",
  23939. extra: 3420 / 3231,
  23940. bottom: 72 / 3949.5
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Normal",
  23947. height: math.unit(4 + 11 / 12, "feet")
  23948. },
  23949. {
  23950. name: "Grown",
  23951. height: math.unit(15, "feet"),
  23952. default: true
  23953. },
  23954. {
  23955. name: "Macro",
  23956. height: math.unit(1500, "feet")
  23957. },
  23958. {
  23959. name: "Megamacro",
  23960. height: math.unit(30, "miles")
  23961. },
  23962. {
  23963. name: "Continental",
  23964. height: math.unit(3000, "miles")
  23965. },
  23966. {
  23967. name: "Gravity Mass",
  23968. height: math.unit(300000, "miles")
  23969. },
  23970. {
  23971. name: "Planet Buster",
  23972. height: math.unit(30000000, "miles")
  23973. },
  23974. {
  23975. name: "Big",
  23976. height: math.unit(3000000000, "miles")
  23977. },
  23978. ]
  23979. ))
  23980. characterMakers.push(() => makeCharacter(
  23981. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23982. {
  23983. front: {
  23984. height: math.unit(9, "feet"),
  23985. weight: math.unit(350, "lb"),
  23986. name: "Front",
  23987. image: {
  23988. source: "./media/characters/pepper/front.svg",
  23989. extra: 1448 / 1312,
  23990. bottom: 9.4 / 1457.88
  23991. }
  23992. },
  23993. back: {
  23994. height: math.unit(9, "feet"),
  23995. weight: math.unit(350, "lb"),
  23996. name: "Back",
  23997. image: {
  23998. source: "./media/characters/pepper/back.svg",
  23999. extra: 1423 / 1300,
  24000. bottom: 4.6 / 1429
  24001. }
  24002. },
  24003. maw: {
  24004. height: math.unit(0.932, "feet"),
  24005. name: "Maw",
  24006. image: {
  24007. source: "./media/characters/pepper/maw.svg"
  24008. }
  24009. },
  24010. },
  24011. [
  24012. {
  24013. name: "Normal",
  24014. height: math.unit(9, "feet"),
  24015. default: true
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24021. {
  24022. front: {
  24023. height: math.unit(6, "feet"),
  24024. weight: math.unit(150, "lb"),
  24025. name: "Front",
  24026. image: {
  24027. source: "./media/characters/maelstrom/front.svg",
  24028. extra: 2100 / 1883,
  24029. bottom: 94 / 2196.7
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Less Kaiju",
  24036. height: math.unit(200, "feet")
  24037. },
  24038. {
  24039. name: "Kaiju",
  24040. height: math.unit(400, "feet"),
  24041. default: true
  24042. },
  24043. {
  24044. name: "Kaiju-er",
  24045. height: math.unit(600, "feet")
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24051. {
  24052. front: {
  24053. height: math.unit(6 + 5 / 12, "feet"),
  24054. weight: math.unit(180, "lb"),
  24055. name: "Front",
  24056. image: {
  24057. source: "./media/characters/lexir/front.svg",
  24058. extra: 180 / 172,
  24059. bottom: 12 / 192
  24060. }
  24061. },
  24062. back: {
  24063. height: math.unit(6 + 5 / 12, "feet"),
  24064. weight: math.unit(180, "lb"),
  24065. name: "Back",
  24066. image: {
  24067. source: "./media/characters/lexir/back.svg",
  24068. extra: 1273/1201,
  24069. bottom: 39/1312
  24070. }
  24071. },
  24072. },
  24073. [
  24074. {
  24075. name: "Very Smal",
  24076. height: math.unit(1, "nm")
  24077. },
  24078. {
  24079. name: "Normal",
  24080. height: math.unit(6 + 5 / 12, "feet"),
  24081. default: true
  24082. },
  24083. {
  24084. name: "Macro",
  24085. height: math.unit(1, "mile")
  24086. },
  24087. {
  24088. name: "Megamacro",
  24089. height: math.unit(50, "miles")
  24090. },
  24091. ]
  24092. ))
  24093. characterMakers.push(() => makeCharacter(
  24094. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24095. {
  24096. front: {
  24097. height: math.unit(1.5, "meters"),
  24098. weight: math.unit(100, "lb"),
  24099. name: "Front",
  24100. image: {
  24101. source: "./media/characters/maksio/front.svg",
  24102. extra: 1549 / 1531,
  24103. bottom: 123.7 / 1674.5429
  24104. }
  24105. },
  24106. back: {
  24107. height: math.unit(1.5, "meters"),
  24108. weight: math.unit(100, "lb"),
  24109. name: "Back",
  24110. image: {
  24111. source: "./media/characters/maksio/back.svg",
  24112. extra: 1541 / 1509,
  24113. bottom: 97 / 1639
  24114. }
  24115. },
  24116. hand: {
  24117. height: math.unit(0.621, "feet"),
  24118. name: "Hand",
  24119. image: {
  24120. source: "./media/characters/maksio/hand.svg"
  24121. }
  24122. },
  24123. foot: {
  24124. height: math.unit(1.611, "feet"),
  24125. name: "Foot",
  24126. image: {
  24127. source: "./media/characters/maksio/foot.svg"
  24128. }
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Shrunken",
  24134. height: math.unit(10, "cm")
  24135. },
  24136. {
  24137. name: "Normal",
  24138. height: math.unit(150, "cm"),
  24139. default: true
  24140. },
  24141. ]
  24142. ))
  24143. characterMakers.push(() => makeCharacter(
  24144. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24145. {
  24146. front: {
  24147. height: math.unit(100, "feet"),
  24148. name: "Front",
  24149. image: {
  24150. source: "./media/characters/erza-bear/front.svg",
  24151. extra: 2449 / 2390,
  24152. bottom: 46 / 2494
  24153. }
  24154. },
  24155. back: {
  24156. height: math.unit(100, "feet"),
  24157. name: "Back",
  24158. image: {
  24159. source: "./media/characters/erza-bear/back.svg",
  24160. extra: 2489 / 2430,
  24161. bottom: 85.4 / 2480
  24162. }
  24163. },
  24164. tail: {
  24165. height: math.unit(42, "feet"),
  24166. name: "Tail",
  24167. image: {
  24168. source: "./media/characters/erza-bear/tail.svg"
  24169. }
  24170. },
  24171. tongue: {
  24172. height: math.unit(8, "feet"),
  24173. name: "Tongue",
  24174. image: {
  24175. source: "./media/characters/erza-bear/tongue.svg"
  24176. }
  24177. },
  24178. dick: {
  24179. height: math.unit(10.5, "feet"),
  24180. name: "Dick",
  24181. image: {
  24182. source: "./media/characters/erza-bear/dick.svg"
  24183. }
  24184. },
  24185. dickVertical: {
  24186. height: math.unit(16.9, "feet"),
  24187. name: "Dick (Vertical)",
  24188. image: {
  24189. source: "./media/characters/erza-bear/dick-vertical.svg"
  24190. }
  24191. },
  24192. },
  24193. [
  24194. {
  24195. name: "Macro",
  24196. height: math.unit(100, "feet"),
  24197. default: true
  24198. },
  24199. ]
  24200. ))
  24201. characterMakers.push(() => makeCharacter(
  24202. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24203. {
  24204. front: {
  24205. height: math.unit(172, "cm"),
  24206. weight: math.unit(73, "kg"),
  24207. name: "Front",
  24208. image: {
  24209. source: "./media/characters/violet-flor/front.svg",
  24210. extra: 1530 / 1442,
  24211. bottom: 61.9 / 1588.8
  24212. }
  24213. },
  24214. back: {
  24215. height: math.unit(180, "cm"),
  24216. weight: math.unit(73, "kg"),
  24217. name: "Back",
  24218. image: {
  24219. source: "./media/characters/violet-flor/back.svg",
  24220. extra: 1692 / 1630,
  24221. bottom: 20 / 1712
  24222. }
  24223. },
  24224. },
  24225. [
  24226. {
  24227. name: "Normal",
  24228. height: math.unit(172, "cm"),
  24229. default: true
  24230. },
  24231. ]
  24232. ))
  24233. characterMakers.push(() => makeCharacter(
  24234. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24235. {
  24236. front: {
  24237. height: math.unit(6, "feet"),
  24238. weight: math.unit(220, "lb"),
  24239. name: "Front",
  24240. image: {
  24241. source: "./media/characters/lynn-rhea/front.svg",
  24242. extra: 310 / 273
  24243. }
  24244. },
  24245. back: {
  24246. height: math.unit(6, "feet"),
  24247. weight: math.unit(220, "lb"),
  24248. name: "Back",
  24249. image: {
  24250. source: "./media/characters/lynn-rhea/back.svg",
  24251. extra: 310 / 273
  24252. }
  24253. },
  24254. dicks: {
  24255. height: math.unit(0.9, "feet"),
  24256. name: "Dicks",
  24257. image: {
  24258. source: "./media/characters/lynn-rhea/dicks.svg"
  24259. }
  24260. },
  24261. slit: {
  24262. height: math.unit(0.4, "feet"),
  24263. name: "Slit",
  24264. image: {
  24265. source: "./media/characters/lynn-rhea/slit.svg"
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Micro",
  24272. height: math.unit(1, "inch")
  24273. },
  24274. {
  24275. name: "Macro",
  24276. height: math.unit(60, "feet"),
  24277. default: true
  24278. },
  24279. {
  24280. name: "Megamacro",
  24281. height: math.unit(2, "miles")
  24282. },
  24283. {
  24284. name: "Gigamacro",
  24285. height: math.unit(3, "earths")
  24286. },
  24287. {
  24288. name: "Galactic",
  24289. height: math.unit(0.8, "galaxies")
  24290. },
  24291. ]
  24292. ))
  24293. characterMakers.push(() => makeCharacter(
  24294. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24295. {
  24296. front: {
  24297. height: math.unit(1600, "feet"),
  24298. weight: math.unit(85758785169, "kg"),
  24299. name: "Front",
  24300. image: {
  24301. source: "./media/characters/valathos/front.svg",
  24302. extra: 1451 / 1339
  24303. }
  24304. },
  24305. },
  24306. [
  24307. {
  24308. name: "Macro",
  24309. height: math.unit(1600, "feet"),
  24310. default: true
  24311. },
  24312. ]
  24313. ))
  24314. characterMakers.push(() => makeCharacter(
  24315. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24316. {
  24317. front: {
  24318. height: math.unit(7 + 5 / 12, "feet"),
  24319. weight: math.unit(300, "lb"),
  24320. name: "Front",
  24321. image: {
  24322. source: "./media/characters/azula/front.svg",
  24323. extra: 3208 / 2880,
  24324. bottom: 80.2 / 3277
  24325. }
  24326. },
  24327. back: {
  24328. height: math.unit(7 + 5 / 12, "feet"),
  24329. weight: math.unit(300, "lb"),
  24330. name: "Back",
  24331. image: {
  24332. source: "./media/characters/azula/back.svg",
  24333. extra: 3169 / 2822,
  24334. bottom: 150.6 / 3321
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Normal",
  24341. height: math.unit(7 + 5 / 12, "feet"),
  24342. default: true
  24343. },
  24344. {
  24345. name: "Big",
  24346. height: math.unit(20, "feet")
  24347. },
  24348. ]
  24349. ))
  24350. characterMakers.push(() => makeCharacter(
  24351. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24352. {
  24353. front: {
  24354. height: math.unit(5 + 1 / 12, "feet"),
  24355. weight: math.unit(110, "lb"),
  24356. name: "Front",
  24357. image: {
  24358. source: "./media/characters/rupert/front.svg",
  24359. extra: 1549 / 1495,
  24360. bottom: 54.2 / 1604.4
  24361. }
  24362. },
  24363. },
  24364. [
  24365. {
  24366. name: "Normal",
  24367. height: math.unit(5 + 1 / 12, "feet"),
  24368. default: true
  24369. },
  24370. ]
  24371. ))
  24372. characterMakers.push(() => makeCharacter(
  24373. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24374. {
  24375. front: {
  24376. height: math.unit(8 + 4 / 12, "feet"),
  24377. weight: math.unit(350, "lb"),
  24378. name: "Front",
  24379. image: {
  24380. source: "./media/characters/sheera-castellar/front.svg",
  24381. extra: 1957 / 1894,
  24382. bottom: 26.97 / 1975.017
  24383. }
  24384. },
  24385. side: {
  24386. height: math.unit(8 + 4 / 12, "feet"),
  24387. weight: math.unit(350, "lb"),
  24388. name: "Side",
  24389. image: {
  24390. source: "./media/characters/sheera-castellar/side.svg",
  24391. extra: 1957 / 1894
  24392. }
  24393. },
  24394. back: {
  24395. height: math.unit(8 + 4 / 12, "feet"),
  24396. weight: math.unit(350, "lb"),
  24397. name: "Back",
  24398. image: {
  24399. source: "./media/characters/sheera-castellar/back.svg",
  24400. extra: 1957 / 1894
  24401. }
  24402. },
  24403. angled: {
  24404. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24405. weight: math.unit(350, "lb"),
  24406. name: "Angled",
  24407. image: {
  24408. source: "./media/characters/sheera-castellar/angled.svg",
  24409. extra: 1807 / 1707,
  24410. bottom: 68 / 1875
  24411. }
  24412. },
  24413. genitals: {
  24414. height: math.unit(2.2, "feet"),
  24415. name: "Genitals",
  24416. image: {
  24417. source: "./media/characters/sheera-castellar/genitals.svg"
  24418. }
  24419. },
  24420. taur: {
  24421. height: math.unit(10 + 6/12, "feet"),
  24422. name: "Taur",
  24423. image: {
  24424. source: "./media/characters/sheera-castellar/taur.svg",
  24425. extra: 2017/1909,
  24426. bottom: 185/2202
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Normal",
  24433. height: math.unit(8 + 4 / 12, "feet")
  24434. },
  24435. {
  24436. name: "Macro",
  24437. height: math.unit(150, "feet"),
  24438. default: true
  24439. },
  24440. {
  24441. name: "Macro+",
  24442. height: math.unit(800, "feet")
  24443. },
  24444. ]
  24445. ))
  24446. characterMakers.push(() => makeCharacter(
  24447. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24448. {
  24449. front: {
  24450. height: math.unit(6, "feet"),
  24451. weight: math.unit(150, "lb"),
  24452. name: "Front",
  24453. image: {
  24454. source: "./media/characters/jaipur/front.svg",
  24455. extra: 3860 / 3731,
  24456. bottom: 287 / 4140
  24457. }
  24458. },
  24459. back: {
  24460. height: math.unit(6, "feet"),
  24461. weight: math.unit(150, "lb"),
  24462. name: "Back",
  24463. image: {
  24464. source: "./media/characters/jaipur/back.svg",
  24465. extra: 1637/1561,
  24466. bottom: 154/1791
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Normal",
  24473. height: math.unit(1.85, "meters"),
  24474. default: true
  24475. },
  24476. {
  24477. name: "Macro",
  24478. height: math.unit(150, "meters")
  24479. },
  24480. {
  24481. name: "Macro+",
  24482. height: math.unit(0.5, "miles")
  24483. },
  24484. {
  24485. name: "Macro++",
  24486. height: math.unit(2.5, "miles")
  24487. },
  24488. {
  24489. name: "Macro+++",
  24490. height: math.unit(12, "miles")
  24491. },
  24492. {
  24493. name: "Macro++++",
  24494. height: math.unit(120, "miles")
  24495. },
  24496. {
  24497. name: "Macro+++++",
  24498. height: math.unit(1200, "miles")
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24504. {
  24505. front: {
  24506. height: math.unit(6, "feet"),
  24507. weight: math.unit(150, "lb"),
  24508. name: "Front",
  24509. image: {
  24510. source: "./media/characters/sheila-wolf/front.svg",
  24511. extra: 1931 / 1808,
  24512. bottom: 29.5 / 1960
  24513. }
  24514. },
  24515. dick: {
  24516. height: math.unit(1.464, "feet"),
  24517. name: "Dick",
  24518. image: {
  24519. source: "./media/characters/sheila-wolf/dick.svg"
  24520. }
  24521. },
  24522. muzzle: {
  24523. height: math.unit(0.513, "feet"),
  24524. name: "Muzzle",
  24525. image: {
  24526. source: "./media/characters/sheila-wolf/muzzle.svg"
  24527. }
  24528. },
  24529. },
  24530. [
  24531. {
  24532. name: "Macro",
  24533. height: math.unit(70, "feet"),
  24534. default: true
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24540. {
  24541. front: {
  24542. height: math.unit(32, "meters"),
  24543. weight: math.unit(300000, "kg"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/almor/front.svg",
  24547. extra: 1408 / 1322,
  24548. bottom: 94.6 / 1506.5
  24549. }
  24550. },
  24551. },
  24552. [
  24553. {
  24554. name: "Macro",
  24555. height: math.unit(32, "meters"),
  24556. default: true
  24557. },
  24558. ]
  24559. ))
  24560. characterMakers.push(() => makeCharacter(
  24561. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24562. {
  24563. front: {
  24564. height: math.unit(7, "feet"),
  24565. weight: math.unit(200, "lb"),
  24566. name: "Front",
  24567. image: {
  24568. source: "./media/characters/silver/front.svg",
  24569. extra: 472.1 / 450.5,
  24570. bottom: 26.5 / 499.424
  24571. }
  24572. },
  24573. },
  24574. [
  24575. {
  24576. name: "Normal",
  24577. height: math.unit(7, "feet"),
  24578. default: true
  24579. },
  24580. {
  24581. name: "Macro",
  24582. height: math.unit(800, "feet")
  24583. },
  24584. {
  24585. name: "Megamacro",
  24586. height: math.unit(250, "miles")
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24592. {
  24593. front: {
  24594. height: math.unit(6, "feet"),
  24595. weight: math.unit(150, "lb"),
  24596. name: "Front",
  24597. image: {
  24598. source: "./media/characters/pliskin/front.svg",
  24599. extra: 1469 / 1359,
  24600. bottom: 70 / 1540
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Micro",
  24607. height: math.unit(3, "inches")
  24608. },
  24609. {
  24610. name: "Normal",
  24611. height: math.unit(5 + 11 / 12, "feet"),
  24612. default: true
  24613. },
  24614. {
  24615. name: "Macro",
  24616. height: math.unit(120, "feet")
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(6, "feet"),
  24625. weight: math.unit(150, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/sammy/front.svg",
  24629. extra: 1193 / 1089,
  24630. bottom: 30.5 / 1226
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Macro",
  24637. height: math.unit(1700, "feet"),
  24638. default: true
  24639. },
  24640. {
  24641. name: "Examacro",
  24642. height: math.unit(2.5e9, "lightyears")
  24643. },
  24644. ]
  24645. ))
  24646. characterMakers.push(() => makeCharacter(
  24647. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24648. {
  24649. front: {
  24650. height: math.unit(21, "meters"),
  24651. weight: math.unit(12, "tonnes"),
  24652. name: "Front",
  24653. image: {
  24654. source: "./media/characters/kuru/front.svg",
  24655. extra: 4301 / 3785,
  24656. bottom: 371.3 / 4691
  24657. }
  24658. },
  24659. },
  24660. [
  24661. {
  24662. name: "Macro",
  24663. height: math.unit(21, "meters"),
  24664. default: true
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24670. {
  24671. front: {
  24672. height: math.unit(23, "meters"),
  24673. weight: math.unit(12.2, "tonnes"),
  24674. name: "Front",
  24675. image: {
  24676. source: "./media/characters/rakka/front.svg",
  24677. extra: 4670 / 4169,
  24678. bottom: 301 / 4968.7
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Macro",
  24685. height: math.unit(23, "meters"),
  24686. default: true
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24692. {
  24693. front: {
  24694. height: math.unit(6, "feet"),
  24695. weight: math.unit(150, "lb"),
  24696. name: "Front",
  24697. image: {
  24698. source: "./media/characters/rhys-feline/front.svg",
  24699. extra: 2488 / 2308,
  24700. bottom: 35.67 / 2519.19
  24701. }
  24702. },
  24703. },
  24704. [
  24705. {
  24706. name: "Really Small",
  24707. height: math.unit(1, "nm")
  24708. },
  24709. {
  24710. name: "Micro",
  24711. height: math.unit(4, "inches")
  24712. },
  24713. {
  24714. name: "Normal",
  24715. height: math.unit(4 + 10 / 12, "feet"),
  24716. default: true
  24717. },
  24718. {
  24719. name: "Macro",
  24720. height: math.unit(100, "feet")
  24721. },
  24722. {
  24723. name: "Megamacto",
  24724. height: math.unit(50, "miles")
  24725. },
  24726. ]
  24727. ))
  24728. characterMakers.push(() => makeCharacter(
  24729. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24730. {
  24731. side: {
  24732. height: math.unit(30, "feet"),
  24733. weight: math.unit(35000, "kg"),
  24734. name: "Side",
  24735. image: {
  24736. source: "./media/characters/alydar/side.svg",
  24737. extra: 234 / 222,
  24738. bottom: 6.5 / 241
  24739. }
  24740. },
  24741. front: {
  24742. height: math.unit(30, "feet"),
  24743. weight: math.unit(35000, "kg"),
  24744. name: "Front",
  24745. image: {
  24746. source: "./media/characters/alydar/front.svg",
  24747. extra: 223.37 / 210.2,
  24748. bottom: 22.3 / 246.76
  24749. }
  24750. },
  24751. top: {
  24752. height: math.unit(64.54, "feet"),
  24753. weight: math.unit(35000, "kg"),
  24754. name: "Top",
  24755. image: {
  24756. source: "./media/characters/alydar/top.svg"
  24757. }
  24758. },
  24759. anthro: {
  24760. height: math.unit(30, "feet"),
  24761. weight: math.unit(9000, "kg"),
  24762. name: "Anthro",
  24763. image: {
  24764. source: "./media/characters/alydar/anthro.svg",
  24765. extra: 432 / 421,
  24766. bottom: 7.18 / 440
  24767. }
  24768. },
  24769. maw: {
  24770. height: math.unit(11.693, "feet"),
  24771. name: "Maw",
  24772. image: {
  24773. source: "./media/characters/alydar/maw.svg"
  24774. }
  24775. },
  24776. head: {
  24777. height: math.unit(11.693, "feet"),
  24778. name: "Head",
  24779. image: {
  24780. source: "./media/characters/alydar/head.svg"
  24781. }
  24782. },
  24783. headAlt: {
  24784. height: math.unit(12.861, "feet"),
  24785. name: "Head (Alt)",
  24786. image: {
  24787. source: "./media/characters/alydar/head-alt.svg"
  24788. }
  24789. },
  24790. wing: {
  24791. height: math.unit(20.712, "feet"),
  24792. name: "Wing",
  24793. image: {
  24794. source: "./media/characters/alydar/wing.svg"
  24795. }
  24796. },
  24797. wingFeather: {
  24798. height: math.unit(9.662, "feet"),
  24799. name: "Wing Feather",
  24800. image: {
  24801. source: "./media/characters/alydar/wing-feather.svg"
  24802. }
  24803. },
  24804. countourFeather: {
  24805. height: math.unit(4.154, "feet"),
  24806. name: "Contour Feather",
  24807. image: {
  24808. source: "./media/characters/alydar/contour-feather.svg"
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Diplomatic",
  24815. height: math.unit(13, "feet"),
  24816. default: true
  24817. },
  24818. {
  24819. name: "Small",
  24820. height: math.unit(30, "feet")
  24821. },
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(95, "feet"),
  24825. default: true
  24826. },
  24827. {
  24828. name: "Large",
  24829. height: math.unit(285, "feet")
  24830. },
  24831. {
  24832. name: "Incomprehensible",
  24833. height: math.unit(450, "megameters")
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24839. {
  24840. side: {
  24841. height: math.unit(11, "feet"),
  24842. weight: math.unit(1750, "kg"),
  24843. name: "Side",
  24844. image: {
  24845. source: "./media/characters/selicia/side.svg",
  24846. extra: 440 / 396,
  24847. bottom: 24.8 / 465.979
  24848. }
  24849. },
  24850. maw: {
  24851. height: math.unit(4.665, "feet"),
  24852. name: "Maw",
  24853. image: {
  24854. source: "./media/characters/selicia/maw.svg"
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(11, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24868. {
  24869. side: {
  24870. height: math.unit(2 + 6 / 12, "feet"),
  24871. weight: math.unit(30, "lb"),
  24872. name: "Side",
  24873. image: {
  24874. source: "./media/characters/layla/side.svg",
  24875. extra: 244 / 188,
  24876. bottom: 18.2 / 262.1
  24877. }
  24878. },
  24879. back: {
  24880. height: math.unit(2 + 6 / 12, "feet"),
  24881. weight: math.unit(30, "lb"),
  24882. name: "Back",
  24883. image: {
  24884. source: "./media/characters/layla/back.svg",
  24885. extra: 308 / 241.5,
  24886. bottom: 8.9 / 316.8
  24887. }
  24888. },
  24889. cumming: {
  24890. height: math.unit(2 + 6 / 12, "feet"),
  24891. weight: math.unit(30, "lb"),
  24892. name: "Cumming",
  24893. image: {
  24894. source: "./media/characters/layla/cumming.svg",
  24895. extra: 342 / 279,
  24896. bottom: 595 / 938
  24897. }
  24898. },
  24899. dickFlaccid: {
  24900. height: math.unit(2.595, "feet"),
  24901. name: "Flaccid Genitals",
  24902. image: {
  24903. source: "./media/characters/layla/dick-flaccid.svg"
  24904. }
  24905. },
  24906. dickErect: {
  24907. height: math.unit(2.359, "feet"),
  24908. name: "Erect Genitals",
  24909. image: {
  24910. source: "./media/characters/layla/dick-erect.svg"
  24911. }
  24912. },
  24913. dragon: {
  24914. height: math.unit(40, "feet"),
  24915. name: "Dragon",
  24916. image: {
  24917. source: "./media/characters/layla/dragon.svg",
  24918. extra: 610/535,
  24919. bottom: 367/977
  24920. }
  24921. },
  24922. taur: {
  24923. height: math.unit(30, "feet"),
  24924. name: "Taur",
  24925. image: {
  24926. source: "./media/characters/layla/taur.svg",
  24927. extra: 1268/1199,
  24928. bottom: 112/1380
  24929. }
  24930. },
  24931. },
  24932. [
  24933. {
  24934. name: "Micro",
  24935. height: math.unit(1, "inch")
  24936. },
  24937. {
  24938. name: "Small",
  24939. height: math.unit(1, "foot")
  24940. },
  24941. {
  24942. name: "Normal",
  24943. height: math.unit(2 + 6 / 12, "feet"),
  24944. default: true
  24945. },
  24946. {
  24947. name: "Macro",
  24948. height: math.unit(200, "feet")
  24949. },
  24950. {
  24951. name: "Megamacro",
  24952. height: math.unit(1000, "miles")
  24953. },
  24954. {
  24955. name: "Planetary",
  24956. height: math.unit(8000, "miles")
  24957. },
  24958. {
  24959. name: "True Layla",
  24960. height: math.unit(200000 * 7, "multiverses")
  24961. },
  24962. ]
  24963. ))
  24964. characterMakers.push(() => makeCharacter(
  24965. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24966. {
  24967. back: {
  24968. height: math.unit(10.5, "feet"),
  24969. weight: math.unit(800, "lb"),
  24970. name: "Back",
  24971. image: {
  24972. source: "./media/characters/knox/back.svg",
  24973. extra: 1486 / 1089,
  24974. bottom: 107 / 1601.4
  24975. }
  24976. },
  24977. side: {
  24978. height: math.unit(10.5, "feet"),
  24979. weight: math.unit(800, "lb"),
  24980. name: "Side",
  24981. image: {
  24982. source: "./media/characters/knox/side.svg",
  24983. extra: 244 / 218,
  24984. bottom: 14 / 260
  24985. }
  24986. },
  24987. },
  24988. [
  24989. {
  24990. name: "Compact",
  24991. height: math.unit(10.5, "feet"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Dynamax",
  24996. height: math.unit(210, "feet")
  24997. },
  24998. {
  24999. name: "Full Macro",
  25000. height: math.unit(850, "feet")
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(28, "feet"),
  25009. weight: math.unit(10500, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/kayda/front.svg",
  25013. extra: 1536 / 1428,
  25014. bottom: 68.7 / 1603
  25015. }
  25016. },
  25017. back: {
  25018. height: math.unit(28, "feet"),
  25019. weight: math.unit(10500, "lb"),
  25020. name: "Back",
  25021. image: {
  25022. source: "./media/characters/kayda/back.svg",
  25023. extra: 1557 / 1464,
  25024. bottom: 39.5 / 1597.49
  25025. }
  25026. },
  25027. dick: {
  25028. height: math.unit(3.858, "feet"),
  25029. name: "Dick",
  25030. image: {
  25031. source: "./media/characters/kayda/dick.svg"
  25032. }
  25033. },
  25034. },
  25035. [
  25036. {
  25037. name: "Macro",
  25038. height: math.unit(28, "feet"),
  25039. default: true
  25040. },
  25041. ]
  25042. ))
  25043. characterMakers.push(() => makeCharacter(
  25044. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25045. {
  25046. front: {
  25047. height: math.unit(10 + 11 / 12, "feet"),
  25048. weight: math.unit(1400, "lb"),
  25049. name: "Front",
  25050. image: {
  25051. source: "./media/characters/brian/front.svg",
  25052. extra: 737 / 692,
  25053. bottom: 55.4 / 785
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(10 + 11 / 12, "feet"),
  25061. default: true
  25062. },
  25063. ]
  25064. ))
  25065. characterMakers.push(() => makeCharacter(
  25066. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25067. {
  25068. front: {
  25069. height: math.unit(5 + 8 / 12, "feet"),
  25070. weight: math.unit(140, "lb"),
  25071. name: "Front",
  25072. image: {
  25073. source: "./media/characters/khemri/front.svg",
  25074. extra: 4780 / 4059,
  25075. bottom: 80.1 / 4859.25
  25076. }
  25077. },
  25078. },
  25079. [
  25080. {
  25081. name: "Micro",
  25082. height: math.unit(6, "inches")
  25083. },
  25084. {
  25085. name: "Normal",
  25086. height: math.unit(5 + 8 / 12, "feet"),
  25087. default: true
  25088. },
  25089. ]
  25090. ))
  25091. characterMakers.push(() => makeCharacter(
  25092. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25093. {
  25094. front: {
  25095. height: math.unit(13, "feet"),
  25096. weight: math.unit(1700, "lb"),
  25097. name: "Front",
  25098. image: {
  25099. source: "./media/characters/felix-braveheart/front.svg",
  25100. extra: 1222 / 1157,
  25101. bottom: 53.2 / 1280
  25102. }
  25103. },
  25104. back: {
  25105. height: math.unit(13, "feet"),
  25106. weight: math.unit(1700, "lb"),
  25107. name: "Back",
  25108. image: {
  25109. source: "./media/characters/felix-braveheart/back.svg",
  25110. extra: 1277 / 1203,
  25111. bottom: 50.2 / 1327
  25112. }
  25113. },
  25114. feral: {
  25115. height: math.unit(6, "feet"),
  25116. weight: math.unit(400, "lb"),
  25117. name: "Feral",
  25118. image: {
  25119. source: "./media/characters/felix-braveheart/feral.svg",
  25120. extra: 682 / 625,
  25121. bottom: 6.9 / 688
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Normal",
  25128. height: math.unit(13, "feet"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25135. {
  25136. side: {
  25137. height: math.unit(5 + 11 / 12, "feet"),
  25138. weight: math.unit(1400, "lb"),
  25139. name: "Side",
  25140. image: {
  25141. source: "./media/characters/shadow-blade/side.svg",
  25142. extra: 1726 / 1267,
  25143. bottom: 58.4 / 1785
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Normal",
  25150. height: math.unit(5 + 11 / 12, "feet"),
  25151. default: true
  25152. },
  25153. ]
  25154. ))
  25155. characterMakers.push(() => makeCharacter(
  25156. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25157. {
  25158. front: {
  25159. height: math.unit(1 + 6 / 12, "feet"),
  25160. weight: math.unit(25, "lb"),
  25161. name: "Front",
  25162. image: {
  25163. source: "./media/characters/karla-halldor/front.svg",
  25164. extra: 1459 / 1383,
  25165. bottom: 12 / 1472
  25166. }
  25167. },
  25168. },
  25169. [
  25170. {
  25171. name: "Normal",
  25172. height: math.unit(1 + 6 / 12, "feet"),
  25173. default: true
  25174. },
  25175. ]
  25176. ))
  25177. characterMakers.push(() => makeCharacter(
  25178. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25179. {
  25180. front: {
  25181. height: math.unit(6 + 2 / 12, "feet"),
  25182. weight: math.unit(160, "lb"),
  25183. name: "Front",
  25184. image: {
  25185. source: "./media/characters/ariam/front.svg",
  25186. extra: 1073/976,
  25187. bottom: 52/1125
  25188. }
  25189. },
  25190. back: {
  25191. height: math.unit(6 + 2/12, "feet"),
  25192. weight: math.unit(160, "lb"),
  25193. name: "Back",
  25194. image: {
  25195. source: "./media/characters/ariam/back.svg",
  25196. extra: 1103/1023,
  25197. bottom: 9/1112
  25198. }
  25199. },
  25200. dressed: {
  25201. height: math.unit(6 + 2/12, "feet"),
  25202. weight: math.unit(160, "lb"),
  25203. name: "Dressed",
  25204. image: {
  25205. source: "./media/characters/ariam/dressed.svg",
  25206. extra: 1099/1009,
  25207. bottom: 25/1124
  25208. }
  25209. },
  25210. squatting: {
  25211. height: math.unit(4.1, "feet"),
  25212. weight: math.unit(160, "lb"),
  25213. name: "Squatting",
  25214. image: {
  25215. source: "./media/characters/ariam/squatting.svg",
  25216. extra: 2617 / 2112,
  25217. bottom: 61.2 / 2681,
  25218. }
  25219. },
  25220. },
  25221. [
  25222. {
  25223. name: "Normal",
  25224. height: math.unit(6 + 2 / 12, "feet"),
  25225. default: true
  25226. },
  25227. {
  25228. name: "Normal+",
  25229. height: math.unit(4, "meters")
  25230. },
  25231. {
  25232. name: "Macro",
  25233. height: math.unit(50, "meters")
  25234. },
  25235. {
  25236. name: "Macro+",
  25237. height: math.unit(100, "meters")
  25238. },
  25239. {
  25240. name: "Megamacro",
  25241. height: math.unit(20, "km")
  25242. },
  25243. {
  25244. name: "Caretaker",
  25245. height: math.unit(444, "megameters")
  25246. },
  25247. ]
  25248. ))
  25249. characterMakers.push(() => makeCharacter(
  25250. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25251. {
  25252. front: {
  25253. height: math.unit(1.67, "meters"),
  25254. weight: math.unit(140, "lb"),
  25255. name: "Front",
  25256. image: {
  25257. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25258. extra: 438 / 410,
  25259. bottom: 0.75 / 439
  25260. }
  25261. },
  25262. },
  25263. [
  25264. {
  25265. name: "Shrunken",
  25266. height: math.unit(7.6, "cm")
  25267. },
  25268. {
  25269. name: "Human Scale",
  25270. height: math.unit(1.67, "meters")
  25271. },
  25272. {
  25273. name: "Wolxi Scale",
  25274. height: math.unit(36.7, "meters"),
  25275. default: true
  25276. },
  25277. ]
  25278. ))
  25279. characterMakers.push(() => makeCharacter(
  25280. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25281. {
  25282. front: {
  25283. height: math.unit(1.73, "meters"),
  25284. weight: math.unit(240, "lb"),
  25285. name: "Front",
  25286. image: {
  25287. source: "./media/characters/izue-two-mothers/front.svg",
  25288. extra: 469 / 437,
  25289. bottom: 1.24 / 470.6
  25290. }
  25291. },
  25292. },
  25293. [
  25294. {
  25295. name: "Shrunken",
  25296. height: math.unit(7.86, "cm")
  25297. },
  25298. {
  25299. name: "Human Scale",
  25300. height: math.unit(1.73, "meters")
  25301. },
  25302. {
  25303. name: "Wolxi Scale",
  25304. height: math.unit(38, "meters"),
  25305. default: true
  25306. },
  25307. ]
  25308. ))
  25309. characterMakers.push(() => makeCharacter(
  25310. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25311. {
  25312. front: {
  25313. height: math.unit(1.55, "meters"),
  25314. weight: math.unit(120, "lb"),
  25315. name: "Front",
  25316. image: {
  25317. source: "./media/characters/teeku-love-shack/front.svg",
  25318. extra: 387 / 362,
  25319. bottom: 1.51 / 388
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Shrunken",
  25326. height: math.unit(7, "cm")
  25327. },
  25328. {
  25329. name: "Human Scale",
  25330. height: math.unit(1.55, "meters")
  25331. },
  25332. {
  25333. name: "Wolxi Scale",
  25334. height: math.unit(34.1, "meters"),
  25335. default: true
  25336. },
  25337. ]
  25338. ))
  25339. characterMakers.push(() => makeCharacter(
  25340. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25341. {
  25342. front: {
  25343. height: math.unit(1.83, "meters"),
  25344. weight: math.unit(135, "lb"),
  25345. name: "Front",
  25346. image: {
  25347. source: "./media/characters/dejma-the-red/front.svg",
  25348. extra: 480 / 458,
  25349. bottom: 1.8 / 482
  25350. }
  25351. },
  25352. },
  25353. [
  25354. {
  25355. name: "Shrunken",
  25356. height: math.unit(8.3, "cm")
  25357. },
  25358. {
  25359. name: "Human Scale",
  25360. height: math.unit(1.83, "meters")
  25361. },
  25362. {
  25363. name: "Wolxi Scale",
  25364. height: math.unit(40, "meters"),
  25365. default: true
  25366. },
  25367. ]
  25368. ))
  25369. characterMakers.push(() => makeCharacter(
  25370. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25371. {
  25372. front: {
  25373. height: math.unit(1.78, "meters"),
  25374. weight: math.unit(65, "kg"),
  25375. name: "Front",
  25376. image: {
  25377. source: "./media/characters/aki/front.svg",
  25378. extra: 452 / 415
  25379. }
  25380. },
  25381. frontNsfw: {
  25382. height: math.unit(1.78, "meters"),
  25383. weight: math.unit(65, "kg"),
  25384. name: "Front (NSFW)",
  25385. image: {
  25386. source: "./media/characters/aki/front-nsfw.svg",
  25387. extra: 452 / 415
  25388. }
  25389. },
  25390. back: {
  25391. height: math.unit(1.78, "meters"),
  25392. weight: math.unit(65, "kg"),
  25393. name: "Back",
  25394. image: {
  25395. source: "./media/characters/aki/back.svg",
  25396. extra: 452 / 415
  25397. }
  25398. },
  25399. rump: {
  25400. height: math.unit(2.05, "feet"),
  25401. name: "Rump",
  25402. image: {
  25403. source: "./media/characters/aki/rump.svg"
  25404. }
  25405. },
  25406. dick: {
  25407. height: math.unit(0.95, "feet"),
  25408. name: "Dick",
  25409. image: {
  25410. source: "./media/characters/aki/dick.svg"
  25411. }
  25412. },
  25413. },
  25414. [
  25415. {
  25416. name: "Micro",
  25417. height: math.unit(15, "cm")
  25418. },
  25419. {
  25420. name: "Normal",
  25421. height: math.unit(178, "cm"),
  25422. default: true
  25423. },
  25424. {
  25425. name: "Macro",
  25426. height: math.unit(214, "m")
  25427. },
  25428. {
  25429. name: "Macro+",
  25430. height: math.unit(534, "m")
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(5 + 5 / 12, "feet"),
  25439. weight: math.unit(120, "lb"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/ari/front.svg",
  25443. extra: 1550/1471,
  25444. bottom: 39/1589
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(5 + 5 / 12, "feet")
  25452. },
  25453. {
  25454. name: "Macro",
  25455. height: math.unit(100, "feet"),
  25456. default: true
  25457. },
  25458. {
  25459. name: "Megamacro",
  25460. height: math.unit(100, "miles")
  25461. },
  25462. {
  25463. name: "Gigamacro",
  25464. height: math.unit(80000, "miles")
  25465. },
  25466. ]
  25467. ))
  25468. characterMakers.push(() => makeCharacter(
  25469. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25470. {
  25471. side: {
  25472. height: math.unit(9, "feet"),
  25473. weight: math.unit(400, "kg"),
  25474. name: "Side",
  25475. image: {
  25476. source: "./media/characters/bolt/side.svg",
  25477. extra: 1126 / 896,
  25478. bottom: 60 / 1187.3,
  25479. }
  25480. },
  25481. },
  25482. [
  25483. {
  25484. name: "Micro",
  25485. height: math.unit(5, "inches")
  25486. },
  25487. {
  25488. name: "Normal",
  25489. height: math.unit(9, "feet"),
  25490. default: true
  25491. },
  25492. {
  25493. name: "Macro",
  25494. height: math.unit(700, "feet")
  25495. },
  25496. {
  25497. name: "Max Size",
  25498. height: math.unit(1.52e22, "yottameters")
  25499. },
  25500. ]
  25501. ))
  25502. characterMakers.push(() => makeCharacter(
  25503. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25504. {
  25505. front: {
  25506. height: math.unit(4.3, "meters"),
  25507. weight: math.unit(3, "tons"),
  25508. name: "Front",
  25509. image: {
  25510. source: "./media/characters/draekon-sylviar/front.svg",
  25511. extra: 2072/1512,
  25512. bottom: 74/2146
  25513. }
  25514. },
  25515. back: {
  25516. height: math.unit(4.3, "meters"),
  25517. weight: math.unit(3, "tons"),
  25518. name: "Back",
  25519. image: {
  25520. source: "./media/characters/draekon-sylviar/back.svg",
  25521. extra: 1639/1483,
  25522. bottom: 41/1680
  25523. }
  25524. },
  25525. feral: {
  25526. height: math.unit(1.15, "meters"),
  25527. weight: math.unit(3, "tons"),
  25528. name: "Feral",
  25529. image: {
  25530. source: "./media/characters/draekon-sylviar/feral.svg",
  25531. extra: 1033/395,
  25532. bottom: 130/1163
  25533. }
  25534. },
  25535. maw: {
  25536. height: math.unit(1.3, "meters"),
  25537. name: "Maw",
  25538. image: {
  25539. source: "./media/characters/draekon-sylviar/maw.svg"
  25540. }
  25541. },
  25542. mawSeparated: {
  25543. height: math.unit(1.53, "meters"),
  25544. name: "Separated Maw",
  25545. image: {
  25546. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25547. }
  25548. },
  25549. tail: {
  25550. height: math.unit(1.15, "meters"),
  25551. name: "Tail",
  25552. image: {
  25553. source: "./media/characters/draekon-sylviar/tail.svg"
  25554. }
  25555. },
  25556. tailDick: {
  25557. height: math.unit(1.15, "meters"),
  25558. name: "Tail (Dick)",
  25559. image: {
  25560. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25561. }
  25562. },
  25563. tailDickSeparated: {
  25564. height: math.unit(1.19, "meters"),
  25565. name: "Tail (Separated Dick)",
  25566. image: {
  25567. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25568. }
  25569. },
  25570. slit: {
  25571. height: math.unit(1, "meters"),
  25572. name: "Slit",
  25573. image: {
  25574. source: "./media/characters/draekon-sylviar/slit.svg"
  25575. }
  25576. },
  25577. dick: {
  25578. height: math.unit(1.15, "meters"),
  25579. name: "Dick",
  25580. image: {
  25581. source: "./media/characters/draekon-sylviar/dick.svg"
  25582. }
  25583. },
  25584. dickSeparated: {
  25585. height: math.unit(1.1, "meters"),
  25586. name: "Separated Dick",
  25587. image: {
  25588. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25589. }
  25590. },
  25591. sheath: {
  25592. height: math.unit(1.15, "meters"),
  25593. name: "Sheath",
  25594. image: {
  25595. source: "./media/characters/draekon-sylviar/sheath.svg"
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Small",
  25602. height: math.unit(4.53 / 2, "meters"),
  25603. default: true
  25604. },
  25605. {
  25606. name: "Normal",
  25607. height: math.unit(4.53, "meters"),
  25608. default: true
  25609. },
  25610. {
  25611. name: "Large",
  25612. height: math.unit(4.53 * 2, "meters"),
  25613. },
  25614. ]
  25615. ))
  25616. characterMakers.push(() => makeCharacter(
  25617. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25618. {
  25619. front: {
  25620. height: math.unit(6 + 2 / 12, "feet"),
  25621. weight: math.unit(180, "lb"),
  25622. name: "Front",
  25623. image: {
  25624. source: "./media/characters/brawler/front.svg",
  25625. extra: 3301 / 3027,
  25626. bottom: 138 / 3439
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(6 + 2 / 12, "feet"),
  25634. default: true
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(11, "feet"),
  25643. weight: math.unit(1000, "lb"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/alex/front.svg",
  25647. bottom: 44.5 / 620
  25648. }
  25649. },
  25650. },
  25651. [
  25652. {
  25653. name: "Micro",
  25654. height: math.unit(5, "inches")
  25655. },
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(11, "feet"),
  25659. default: true
  25660. },
  25661. {
  25662. name: "Macro",
  25663. height: math.unit(9.5e9, "feet")
  25664. },
  25665. {
  25666. name: "Max Size",
  25667. height: math.unit(1.4e283, "yottameters")
  25668. },
  25669. ]
  25670. ))
  25671. characterMakers.push(() => makeCharacter(
  25672. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25673. {
  25674. female: {
  25675. height: math.unit(29.9, "m"),
  25676. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25677. name: "Female",
  25678. image: {
  25679. source: "./media/characters/zenari/female.svg",
  25680. extra: 3281.6 / 3217,
  25681. bottom: 72.2 / 3353
  25682. }
  25683. },
  25684. male: {
  25685. height: math.unit(27.7, "m"),
  25686. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25687. name: "Male",
  25688. image: {
  25689. source: "./media/characters/zenari/male.svg",
  25690. extra: 3008 / 2991,
  25691. bottom: 54.6 / 3069
  25692. }
  25693. },
  25694. },
  25695. [
  25696. {
  25697. name: "Macro",
  25698. height: math.unit(29.7, "meters"),
  25699. default: true
  25700. },
  25701. ]
  25702. ))
  25703. characterMakers.push(() => makeCharacter(
  25704. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25705. {
  25706. female: {
  25707. height: math.unit(23.8, "m"),
  25708. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25709. name: "Female",
  25710. image: {
  25711. source: "./media/characters/mactarian/female.svg",
  25712. extra: 2662 / 2569,
  25713. bottom: 73 / 2736
  25714. }
  25715. },
  25716. male: {
  25717. height: math.unit(23.8, "m"),
  25718. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25719. name: "Male",
  25720. image: {
  25721. source: "./media/characters/mactarian/male.svg",
  25722. extra: 2673 / 2600,
  25723. bottom: 76 / 2750
  25724. }
  25725. },
  25726. },
  25727. [
  25728. {
  25729. name: "Macro",
  25730. height: math.unit(23.8, "meters"),
  25731. default: true
  25732. },
  25733. ]
  25734. ))
  25735. characterMakers.push(() => makeCharacter(
  25736. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25737. {
  25738. female: {
  25739. height: math.unit(19.3, "m"),
  25740. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25741. name: "Female",
  25742. image: {
  25743. source: "./media/characters/umok/female.svg",
  25744. extra: 2186 / 2078,
  25745. bottom: 87 / 2277
  25746. }
  25747. },
  25748. male: {
  25749. height: math.unit(19.5, "m"),
  25750. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25751. name: "Male",
  25752. image: {
  25753. source: "./media/characters/umok/male.svg",
  25754. extra: 2233 / 2140,
  25755. bottom: 24.4 / 2258
  25756. }
  25757. },
  25758. },
  25759. [
  25760. {
  25761. name: "Macro",
  25762. height: math.unit(19.3, "meters"),
  25763. default: true
  25764. },
  25765. ]
  25766. ))
  25767. characterMakers.push(() => makeCharacter(
  25768. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25769. {
  25770. female: {
  25771. height: math.unit(26.15, "m"),
  25772. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25773. name: "Female",
  25774. image: {
  25775. source: "./media/characters/joraxian/female.svg",
  25776. extra: 2912 / 2824,
  25777. bottom: 36 / 2956
  25778. }
  25779. },
  25780. male: {
  25781. height: math.unit(25.4, "m"),
  25782. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25783. name: "Male",
  25784. image: {
  25785. source: "./media/characters/joraxian/male.svg",
  25786. extra: 2877 / 2721,
  25787. bottom: 82 / 2967
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Macro",
  25794. height: math.unit(26.15, "meters"),
  25795. default: true
  25796. },
  25797. ]
  25798. ))
  25799. characterMakers.push(() => makeCharacter(
  25800. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25801. {
  25802. female: {
  25803. height: math.unit(21.6, "m"),
  25804. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25805. name: "Female",
  25806. image: {
  25807. source: "./media/characters/sthara/female.svg",
  25808. extra: 2516 / 2347,
  25809. bottom: 21.5 / 2537
  25810. }
  25811. },
  25812. male: {
  25813. height: math.unit(24, "m"),
  25814. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25815. name: "Male",
  25816. image: {
  25817. source: "./media/characters/sthara/male.svg",
  25818. extra: 2732 / 2607,
  25819. bottom: 23 / 2732
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Macro",
  25826. height: math.unit(21.6, "meters"),
  25827. default: true
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25833. {
  25834. front: {
  25835. height: math.unit(6 + 4 / 12, "feet"),
  25836. weight: math.unit(175, "lb"),
  25837. name: "Front",
  25838. image: {
  25839. source: "./media/characters/luka-bryzant/front.svg",
  25840. extra: 311 / 289,
  25841. bottom: 4 / 315
  25842. }
  25843. },
  25844. back: {
  25845. height: math.unit(6 + 4 / 12, "feet"),
  25846. weight: math.unit(175, "lb"),
  25847. name: "Back",
  25848. image: {
  25849. source: "./media/characters/luka-bryzant/back.svg",
  25850. extra: 311 / 289,
  25851. bottom: 3.8 / 313.7
  25852. }
  25853. },
  25854. },
  25855. [
  25856. {
  25857. name: "Micro",
  25858. height: math.unit(10, "inches")
  25859. },
  25860. {
  25861. name: "Normal",
  25862. height: math.unit(6 + 4 / 12, "feet"),
  25863. default: true
  25864. },
  25865. {
  25866. name: "Large",
  25867. height: math.unit(12, "feet")
  25868. },
  25869. ]
  25870. ))
  25871. characterMakers.push(() => makeCharacter(
  25872. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25873. {
  25874. front: {
  25875. height: math.unit(5 + 7 / 12, "feet"),
  25876. weight: math.unit(185, "lb"),
  25877. name: "Front",
  25878. image: {
  25879. source: "./media/characters/aman-aquila/front.svg",
  25880. extra: 1013 / 976,
  25881. bottom: 45.6 / 1057
  25882. }
  25883. },
  25884. side: {
  25885. height: math.unit(5 + 7 / 12, "feet"),
  25886. weight: math.unit(185, "lb"),
  25887. name: "Side",
  25888. image: {
  25889. source: "./media/characters/aman-aquila/side.svg",
  25890. extra: 1054 / 1011,
  25891. bottom: 15 / 1070
  25892. }
  25893. },
  25894. back: {
  25895. height: math.unit(5 + 7 / 12, "feet"),
  25896. weight: math.unit(185, "lb"),
  25897. name: "Back",
  25898. image: {
  25899. source: "./media/characters/aman-aquila/back.svg",
  25900. extra: 1026 / 970,
  25901. bottom: 12 / 1039
  25902. }
  25903. },
  25904. head: {
  25905. height: math.unit(1.211, "feet"),
  25906. name: "Head",
  25907. image: {
  25908. source: "./media/characters/aman-aquila/head.svg",
  25909. }
  25910. },
  25911. },
  25912. [
  25913. {
  25914. name: "Minimicro",
  25915. height: math.unit(0.057, "inches")
  25916. },
  25917. {
  25918. name: "Micro",
  25919. height: math.unit(7, "inches")
  25920. },
  25921. {
  25922. name: "Mini",
  25923. height: math.unit(3 + 7 / 12, "feet")
  25924. },
  25925. {
  25926. name: "Normal",
  25927. height: math.unit(5 + 7 / 12, "feet"),
  25928. default: true
  25929. },
  25930. {
  25931. name: "Macro",
  25932. height: math.unit(157 + 7 / 12, "feet")
  25933. },
  25934. {
  25935. name: "Megamacro",
  25936. height: math.unit(1557 + 7 / 12, "feet")
  25937. },
  25938. {
  25939. name: "Gigamacro",
  25940. height: math.unit(15557 + 7 / 12, "feet")
  25941. },
  25942. ]
  25943. ))
  25944. characterMakers.push(() => makeCharacter(
  25945. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25946. {
  25947. front: {
  25948. height: math.unit(3 + 2 / 12, "inches"),
  25949. weight: math.unit(0.3, "ounces"),
  25950. name: "Front",
  25951. image: {
  25952. source: "./media/characters/hiphae/front.svg",
  25953. extra: 1931 / 1683,
  25954. bottom: 24 / 1955
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Normal",
  25961. height: math.unit(3 + 1 / 2, "inches"),
  25962. default: true
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25968. {
  25969. front: {
  25970. height: math.unit(5 + 10 / 12, "feet"),
  25971. weight: math.unit(165, "lb"),
  25972. name: "Front",
  25973. image: {
  25974. source: "./media/characters/nicky/front.svg",
  25975. extra: 3144 / 2886,
  25976. bottom: 45.6 / 3192
  25977. }
  25978. },
  25979. back: {
  25980. height: math.unit(5 + 10 / 12, "feet"),
  25981. weight: math.unit(165, "lb"),
  25982. name: "Back",
  25983. image: {
  25984. source: "./media/characters/nicky/back.svg",
  25985. extra: 3055 / 2804,
  25986. bottom: 28.4 / 3087
  25987. }
  25988. },
  25989. frontclothed: {
  25990. height: math.unit(5 + 10 / 12, "feet"),
  25991. weight: math.unit(165, "lb"),
  25992. name: "Front-clothed",
  25993. image: {
  25994. source: "./media/characters/nicky/front-clothed.svg",
  25995. extra: 3184.9 / 2926.9,
  25996. bottom: 86.5 / 3239.9
  25997. }
  25998. },
  25999. foot: {
  26000. height: math.unit(1.16, "feet"),
  26001. name: "Foot",
  26002. image: {
  26003. source: "./media/characters/nicky/foot.svg"
  26004. }
  26005. },
  26006. feet: {
  26007. height: math.unit(1.34, "feet"),
  26008. name: "Feet",
  26009. image: {
  26010. source: "./media/characters/nicky/feet.svg"
  26011. }
  26012. },
  26013. maw: {
  26014. height: math.unit(0.9, "feet"),
  26015. name: "Maw",
  26016. image: {
  26017. source: "./media/characters/nicky/maw.svg"
  26018. }
  26019. },
  26020. },
  26021. [
  26022. {
  26023. name: "Normal",
  26024. height: math.unit(5 + 10 / 12, "feet"),
  26025. default: true
  26026. },
  26027. {
  26028. name: "Macro",
  26029. height: math.unit(60, "feet")
  26030. },
  26031. {
  26032. name: "Megamacro",
  26033. height: math.unit(1, "mile")
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26039. {
  26040. side: {
  26041. height: math.unit(10, "feet"),
  26042. weight: math.unit(600, "lb"),
  26043. name: "Side",
  26044. image: {
  26045. source: "./media/characters/blair/side.svg",
  26046. bottom: 16.6 / 475,
  26047. extra: 458 / 431
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Micro",
  26054. height: math.unit(8, "inches")
  26055. },
  26056. {
  26057. name: "Normal",
  26058. height: math.unit(10, "feet"),
  26059. default: true
  26060. },
  26061. {
  26062. name: "Macro",
  26063. height: math.unit(180, "feet")
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(5 + 4 / 12, "feet"),
  26072. weight: math.unit(125, "lb"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/fisher/front.svg",
  26076. extra: 444 / 390,
  26077. bottom: 2 / 444.8
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Micro",
  26084. height: math.unit(4, "inches")
  26085. },
  26086. {
  26087. name: "Normal",
  26088. height: math.unit(5 + 4 / 12, "feet"),
  26089. default: true
  26090. },
  26091. {
  26092. name: "Macro",
  26093. height: math.unit(100, "feet")
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26099. {
  26100. front: {
  26101. height: math.unit(6.71, "feet"),
  26102. weight: math.unit(200, "lb"),
  26103. preyCapacity: math.unit(1000000, "people"),
  26104. name: "Front",
  26105. image: {
  26106. source: "./media/characters/gliss/front.svg",
  26107. extra: 2347 / 2231,
  26108. bottom: 113 / 2462
  26109. }
  26110. },
  26111. hammerspaceSize: {
  26112. height: math.unit(6.71 * 717, "feet"),
  26113. weight: math.unit(200, "lb"),
  26114. preyCapacity: math.unit(1000000, "people"),
  26115. name: "Hammerspace Size",
  26116. image: {
  26117. source: "./media/characters/gliss/front.svg",
  26118. extra: 2347 / 2231,
  26119. bottom: 113 / 2462
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Normal",
  26126. height: math.unit(6.71, "feet"),
  26127. default: true
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26133. {
  26134. side: {
  26135. height: math.unit(1.44, "m"),
  26136. weight: math.unit(80, "kg"),
  26137. name: "Side",
  26138. image: {
  26139. source: "./media/characters/dune-anderson/side.svg",
  26140. bottom: 49 / 1426
  26141. }
  26142. },
  26143. },
  26144. [
  26145. {
  26146. name: "Wolf-sized",
  26147. height: math.unit(1.44, "meters")
  26148. },
  26149. {
  26150. name: "Normal",
  26151. height: math.unit(5.05, "meters"),
  26152. default: true
  26153. },
  26154. {
  26155. name: "Big",
  26156. height: math.unit(14.4, "meters")
  26157. },
  26158. {
  26159. name: "Huge",
  26160. height: math.unit(144, "meters")
  26161. },
  26162. ]
  26163. ))
  26164. characterMakers.push(() => makeCharacter(
  26165. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26166. {
  26167. front: {
  26168. height: math.unit(7, "feet"),
  26169. weight: math.unit(425, "lb"),
  26170. name: "Front",
  26171. image: {
  26172. source: "./media/characters/hind/front.svg",
  26173. extra: 2091 / 1860,
  26174. bottom: 129 / 2220
  26175. }
  26176. },
  26177. back: {
  26178. height: math.unit(7, "feet"),
  26179. weight: math.unit(425, "lb"),
  26180. name: "Back",
  26181. image: {
  26182. source: "./media/characters/hind/back.svg",
  26183. extra: 2091 / 1860,
  26184. bottom: 24.6 / 2309
  26185. }
  26186. },
  26187. tail: {
  26188. height: math.unit(2.8, "feet"),
  26189. name: "Tail",
  26190. image: {
  26191. source: "./media/characters/hind/tail.svg"
  26192. }
  26193. },
  26194. head: {
  26195. height: math.unit(2.55, "feet"),
  26196. name: "Head",
  26197. image: {
  26198. source: "./media/characters/hind/head.svg"
  26199. }
  26200. },
  26201. },
  26202. [
  26203. {
  26204. name: "XS",
  26205. height: math.unit(0.7, "feet")
  26206. },
  26207. {
  26208. name: "Normal",
  26209. height: math.unit(7, "feet"),
  26210. default: true
  26211. },
  26212. {
  26213. name: "XL",
  26214. height: math.unit(70, "feet")
  26215. },
  26216. ]
  26217. ))
  26218. characterMakers.push(() => makeCharacter(
  26219. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26220. {
  26221. front: {
  26222. height: math.unit(2.1, "meters"),
  26223. weight: math.unit(150, "lb"),
  26224. name: "Front",
  26225. image: {
  26226. source: "./media/characters/tharquench-sizestealer/front.svg",
  26227. extra: 1605/1470,
  26228. bottom: 36/1641
  26229. }
  26230. },
  26231. frontAlt: {
  26232. height: math.unit(2.1, "meters"),
  26233. weight: math.unit(150, "lb"),
  26234. name: "Front (Alt)",
  26235. image: {
  26236. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26237. extra: 2318 / 2063,
  26238. bottom: 93.4 / 2410
  26239. }
  26240. },
  26241. },
  26242. [
  26243. {
  26244. name: "Nano",
  26245. height: math.unit(1, "mm")
  26246. },
  26247. {
  26248. name: "Micro",
  26249. height: math.unit(1, "cm")
  26250. },
  26251. {
  26252. name: "Normal",
  26253. height: math.unit(2.1, "meters"),
  26254. default: true
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(7 + 5 / 12, "feet"),
  26263. weight: math.unit(357, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/solex-draconov/front.svg",
  26267. extra: 1993 / 1865,
  26268. bottom: 117 / 2111
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Natural Height",
  26275. height: math.unit(7 + 5 / 12, "feet"),
  26276. default: true
  26277. },
  26278. {
  26279. name: "Macro",
  26280. height: math.unit(350, "feet")
  26281. },
  26282. {
  26283. name: "Macro+",
  26284. height: math.unit(1000, "feet")
  26285. },
  26286. {
  26287. name: "Megamacro",
  26288. height: math.unit(20, "km")
  26289. },
  26290. {
  26291. name: "Megamacro+",
  26292. height: math.unit(1000, "km")
  26293. },
  26294. {
  26295. name: "Gigamacro",
  26296. height: math.unit(2.5, "Gm")
  26297. },
  26298. {
  26299. name: "Teramacro",
  26300. height: math.unit(15, "Tm")
  26301. },
  26302. {
  26303. name: "Galactic",
  26304. height: math.unit(30, "Zm")
  26305. },
  26306. {
  26307. name: "Universal",
  26308. height: math.unit(21000, "Ym")
  26309. },
  26310. {
  26311. name: "Omniversal",
  26312. height: math.unit(9.861e50, "Ym")
  26313. },
  26314. {
  26315. name: "Existential",
  26316. height: math.unit(1e300, "meters")
  26317. },
  26318. ]
  26319. ))
  26320. characterMakers.push(() => makeCharacter(
  26321. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26322. {
  26323. side: {
  26324. height: math.unit(25, "feet"),
  26325. weight: math.unit(90000, "lb"),
  26326. name: "Side",
  26327. image: {
  26328. source: "./media/characters/mandarax/side.svg",
  26329. extra: 614 / 332,
  26330. bottom: 55 / 630
  26331. }
  26332. },
  26333. lounging: {
  26334. height: math.unit(15.4, "feet"),
  26335. weight: math.unit(90000, "lb"),
  26336. name: "Lounging",
  26337. image: {
  26338. source: "./media/characters/mandarax/lounging.svg",
  26339. extra: 817/609,
  26340. bottom: 685/1502
  26341. }
  26342. },
  26343. head: {
  26344. height: math.unit(11.4, "feet"),
  26345. name: "Head",
  26346. image: {
  26347. source: "./media/characters/mandarax/head.svg"
  26348. }
  26349. },
  26350. belly: {
  26351. height: math.unit(33, "feet"),
  26352. name: "Belly",
  26353. preyCapacity: math.unit(500, "people"),
  26354. image: {
  26355. source: "./media/characters/mandarax/belly.svg"
  26356. }
  26357. },
  26358. dick: {
  26359. height: math.unit(8.46, "feet"),
  26360. name: "Dick",
  26361. image: {
  26362. source: "./media/characters/mandarax/dick.svg"
  26363. }
  26364. },
  26365. top: {
  26366. height: math.unit(28, "meters"),
  26367. name: "Top",
  26368. image: {
  26369. source: "./media/characters/mandarax/top.svg"
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Normal",
  26376. height: math.unit(25, "feet"),
  26377. default: true
  26378. },
  26379. ]
  26380. ))
  26381. characterMakers.push(() => makeCharacter(
  26382. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26383. {
  26384. front: {
  26385. height: math.unit(5, "feet"),
  26386. weight: math.unit(90, "lb"),
  26387. name: "Front",
  26388. image: {
  26389. source: "./media/characters/pixil/front.svg",
  26390. extra: 2000 / 1618,
  26391. bottom: 12.3 / 2011
  26392. }
  26393. },
  26394. },
  26395. [
  26396. {
  26397. name: "Normal",
  26398. height: math.unit(5, "feet"),
  26399. default: true
  26400. },
  26401. {
  26402. name: "Megamacro",
  26403. height: math.unit(10, "miles"),
  26404. },
  26405. ]
  26406. ))
  26407. characterMakers.push(() => makeCharacter(
  26408. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26409. {
  26410. front: {
  26411. height: math.unit(7 + 2 / 12, "feet"),
  26412. weight: math.unit(200, "lb"),
  26413. name: "Front",
  26414. image: {
  26415. source: "./media/characters/angel/front.svg",
  26416. extra: 1830 / 1737,
  26417. bottom: 22.6 / 1854,
  26418. }
  26419. },
  26420. },
  26421. [
  26422. {
  26423. name: "Normal",
  26424. height: math.unit(7 + 2 / 12, "feet"),
  26425. default: true
  26426. },
  26427. {
  26428. name: "Macro",
  26429. height: math.unit(1000, "feet")
  26430. },
  26431. {
  26432. name: "Megamacro",
  26433. height: math.unit(2, "miles")
  26434. },
  26435. {
  26436. name: "Gigamacro",
  26437. height: math.unit(20, "earths")
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(5, "feet"),
  26446. weight: math.unit(180, "lb"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/mekana/front.svg",
  26450. extra: 1671 / 1605,
  26451. bottom: 3.5 / 1691
  26452. }
  26453. },
  26454. side: {
  26455. height: math.unit(5, "feet"),
  26456. weight: math.unit(180, "lb"),
  26457. name: "Side",
  26458. image: {
  26459. source: "./media/characters/mekana/side.svg",
  26460. extra: 1671 / 1605,
  26461. bottom: 3.5 / 1691
  26462. }
  26463. },
  26464. back: {
  26465. height: math.unit(5, "feet"),
  26466. weight: math.unit(180, "lb"),
  26467. name: "Back",
  26468. image: {
  26469. source: "./media/characters/mekana/back.svg",
  26470. extra: 1671 / 1605,
  26471. bottom: 3.5 / 1691
  26472. }
  26473. },
  26474. },
  26475. [
  26476. {
  26477. name: "Normal",
  26478. height: math.unit(5, "feet"),
  26479. default: true
  26480. },
  26481. ]
  26482. ))
  26483. characterMakers.push(() => makeCharacter(
  26484. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26485. {
  26486. front: {
  26487. height: math.unit(4 + 6 / 12, "feet"),
  26488. weight: math.unit(80, "lb"),
  26489. name: "Front",
  26490. image: {
  26491. source: "./media/characters/pixie/front.svg",
  26492. extra: 1924 / 1825,
  26493. bottom: 22.4 / 1946
  26494. }
  26495. },
  26496. },
  26497. [
  26498. {
  26499. name: "Normal",
  26500. height: math.unit(4 + 6 / 12, "feet"),
  26501. default: true
  26502. },
  26503. {
  26504. name: "Macro",
  26505. height: math.unit(40, "feet")
  26506. },
  26507. ]
  26508. ))
  26509. characterMakers.push(() => makeCharacter(
  26510. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26511. {
  26512. front: {
  26513. height: math.unit(2.1, "meters"),
  26514. weight: math.unit(200, "lb"),
  26515. name: "Front",
  26516. image: {
  26517. source: "./media/characters/the-lascivious/front.svg",
  26518. extra: 1 / 0.893,
  26519. bottom: 3.5 / 573.7
  26520. }
  26521. },
  26522. },
  26523. [
  26524. {
  26525. name: "Human Scale",
  26526. height: math.unit(2.1, "meters")
  26527. },
  26528. {
  26529. name: "Wolxi Scale",
  26530. height: math.unit(46.2, "m"),
  26531. default: true
  26532. },
  26533. {
  26534. name: "Boinker of Buildings",
  26535. height: math.unit(10, "km")
  26536. },
  26537. {
  26538. name: "Shagger of Skyscrapers",
  26539. height: math.unit(40, "km")
  26540. },
  26541. {
  26542. name: "Banger of Boroughs",
  26543. height: math.unit(4000, "km")
  26544. },
  26545. {
  26546. name: "Screwer of States",
  26547. height: math.unit(100000, "km")
  26548. },
  26549. {
  26550. name: "Pounder of Planets",
  26551. height: math.unit(2000000, "km")
  26552. },
  26553. ]
  26554. ))
  26555. characterMakers.push(() => makeCharacter(
  26556. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26557. {
  26558. front: {
  26559. height: math.unit(6, "feet"),
  26560. weight: math.unit(150, "lb"),
  26561. name: "Front",
  26562. image: {
  26563. source: "./media/characters/aj/front.svg",
  26564. extra: 2039 / 1562,
  26565. bottom: 40 / 2079
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(11 + 6 / 12, "feet"),
  26573. default: true
  26574. },
  26575. {
  26576. name: "Megamacro",
  26577. height: math.unit(60, "megameters")
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26583. {
  26584. side: {
  26585. height: math.unit(31 + 8 / 12, "feet"),
  26586. weight: math.unit(75000, "kg"),
  26587. name: "Side",
  26588. image: {
  26589. source: "./media/characters/koros/side.svg",
  26590. extra: 1442 / 1297,
  26591. bottom: 122.7 / 1562
  26592. }
  26593. },
  26594. dicksKingsCrown: {
  26595. height: math.unit(6, "feet"),
  26596. name: "Dicks (King's Crown)",
  26597. image: {
  26598. source: "./media/characters/koros/dicks-kings-crown.svg"
  26599. }
  26600. },
  26601. dicksTailSet: {
  26602. height: math.unit(3, "feet"),
  26603. name: "Dicks (Tail Set)",
  26604. image: {
  26605. source: "./media/characters/koros/dicks-tail-set.svg"
  26606. }
  26607. },
  26608. dickCumming: {
  26609. height: math.unit(7.98, "feet"),
  26610. name: "Dick (Cumming)",
  26611. image: {
  26612. source: "./media/characters/koros/dick-cumming.svg"
  26613. }
  26614. },
  26615. dicksBack: {
  26616. height: math.unit(5.9, "feet"),
  26617. name: "Dicks (Back)",
  26618. image: {
  26619. source: "./media/characters/koros/dicks-back.svg"
  26620. }
  26621. },
  26622. dicksFront: {
  26623. height: math.unit(3.72, "feet"),
  26624. name: "Dicks (Front)",
  26625. image: {
  26626. source: "./media/characters/koros/dicks-front.svg"
  26627. }
  26628. },
  26629. dicksPeeking: {
  26630. height: math.unit(3.0, "feet"),
  26631. name: "Dicks (Peeking)",
  26632. image: {
  26633. source: "./media/characters/koros/dicks-peeking.svg"
  26634. }
  26635. },
  26636. eye: {
  26637. height: math.unit(1.7, "feet"),
  26638. name: "Eye",
  26639. image: {
  26640. source: "./media/characters/koros/eye.svg"
  26641. }
  26642. },
  26643. headFront: {
  26644. height: math.unit(11.69, "feet"),
  26645. name: "Head (Front)",
  26646. image: {
  26647. source: "./media/characters/koros/head-front.svg"
  26648. }
  26649. },
  26650. headSide: {
  26651. height: math.unit(14, "feet"),
  26652. name: "Head (Side)",
  26653. image: {
  26654. source: "./media/characters/koros/head-side.svg"
  26655. }
  26656. },
  26657. leg: {
  26658. height: math.unit(17, "feet"),
  26659. name: "Leg",
  26660. image: {
  26661. source: "./media/characters/koros/leg.svg"
  26662. }
  26663. },
  26664. mawSide: {
  26665. height: math.unit(12.8, "feet"),
  26666. name: "Maw (Side)",
  26667. image: {
  26668. source: "./media/characters/koros/maw-side.svg"
  26669. }
  26670. },
  26671. mawSpitting: {
  26672. height: math.unit(17, "feet"),
  26673. name: "Maw (Spitting)",
  26674. image: {
  26675. source: "./media/characters/koros/maw-spitting.svg"
  26676. }
  26677. },
  26678. slit: {
  26679. height: math.unit(2.8, "feet"),
  26680. name: "Slit",
  26681. image: {
  26682. source: "./media/characters/koros/slit.svg"
  26683. }
  26684. },
  26685. stomach: {
  26686. height: math.unit(6.8, "feet"),
  26687. preyCapacity: math.unit(20, "people"),
  26688. name: "Stomach",
  26689. image: {
  26690. source: "./media/characters/koros/stomach.svg"
  26691. }
  26692. },
  26693. wingspanBottom: {
  26694. height: math.unit(114, "feet"),
  26695. name: "Wingspan (Bottom)",
  26696. image: {
  26697. source: "./media/characters/koros/wingspan-bottom.svg"
  26698. }
  26699. },
  26700. wingspanTop: {
  26701. height: math.unit(104, "feet"),
  26702. name: "Wingspan (Top)",
  26703. image: {
  26704. source: "./media/characters/koros/wingspan-top.svg"
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Normal",
  26711. height: math.unit(31 + 8 / 12, "feet"),
  26712. default: true
  26713. },
  26714. ]
  26715. ))
  26716. characterMakers.push(() => makeCharacter(
  26717. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26718. {
  26719. front: {
  26720. height: math.unit(18 + 5 / 12, "feet"),
  26721. weight: math.unit(3750, "kg"),
  26722. name: "Front",
  26723. image: {
  26724. source: "./media/characters/vexx/front.svg",
  26725. extra: 426 / 396,
  26726. bottom: 31.5 / 458
  26727. }
  26728. },
  26729. maw: {
  26730. height: math.unit(6, "feet"),
  26731. name: "Maw",
  26732. image: {
  26733. source: "./media/characters/vexx/maw.svg"
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Normal",
  26740. height: math.unit(18 + 5 / 12, "feet"),
  26741. default: true
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26747. {
  26748. front: {
  26749. height: math.unit(17 + 6 / 12, "feet"),
  26750. weight: math.unit(150, "lb"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/baadra/front.svg",
  26754. extra: 1694/1553,
  26755. bottom: 179/1873
  26756. }
  26757. },
  26758. frontAlt: {
  26759. height: math.unit(17 + 6 / 12, "feet"),
  26760. weight: math.unit(150, "lb"),
  26761. name: "Front (Alt)",
  26762. image: {
  26763. source: "./media/characters/baadra/front-alt.svg",
  26764. extra: 3137 / 2890,
  26765. bottom: 168.4 / 3305
  26766. }
  26767. },
  26768. back: {
  26769. height: math.unit(17 + 6 / 12, "feet"),
  26770. weight: math.unit(150, "lb"),
  26771. name: "Back",
  26772. image: {
  26773. source: "./media/characters/baadra/back.svg",
  26774. extra: 3142 / 2890,
  26775. bottom: 220 / 3371
  26776. }
  26777. },
  26778. head: {
  26779. height: math.unit(5.45, "feet"),
  26780. name: "Head",
  26781. image: {
  26782. source: "./media/characters/baadra/head.svg"
  26783. }
  26784. },
  26785. headAngry: {
  26786. height: math.unit(4.95, "feet"),
  26787. name: "Head (Angry)",
  26788. image: {
  26789. source: "./media/characters/baadra/head-angry.svg"
  26790. }
  26791. },
  26792. headOpen: {
  26793. height: math.unit(6, "feet"),
  26794. name: "Head (Open)",
  26795. image: {
  26796. source: "./media/characters/baadra/head-open.svg"
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Normal",
  26803. height: math.unit(17 + 6 / 12, "feet"),
  26804. default: true
  26805. },
  26806. ]
  26807. ))
  26808. characterMakers.push(() => makeCharacter(
  26809. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26810. {
  26811. front: {
  26812. height: math.unit(7 + 3 / 12, "feet"),
  26813. weight: math.unit(180, "lb"),
  26814. name: "Front",
  26815. image: {
  26816. source: "./media/characters/juri/front.svg",
  26817. extra: 1401 / 1237,
  26818. bottom: 18.5 / 1418
  26819. }
  26820. },
  26821. side: {
  26822. height: math.unit(7 + 3 / 12, "feet"),
  26823. weight: math.unit(180, "lb"),
  26824. name: "Side",
  26825. image: {
  26826. source: "./media/characters/juri/side.svg",
  26827. extra: 1424 / 1242,
  26828. bottom: 18.5 / 1447
  26829. }
  26830. },
  26831. sitting: {
  26832. height: math.unit(6, "feet"),
  26833. weight: math.unit(180, "lb"),
  26834. name: "Sitting",
  26835. image: {
  26836. source: "./media/characters/juri/sitting.svg",
  26837. extra: 1270 / 1143,
  26838. bottom: 100 / 1343
  26839. }
  26840. },
  26841. back: {
  26842. height: math.unit(7 + 3 / 12, "feet"),
  26843. weight: math.unit(180, "lb"),
  26844. name: "Back",
  26845. image: {
  26846. source: "./media/characters/juri/back.svg",
  26847. extra: 1377 / 1240,
  26848. bottom: 23.7 / 1405
  26849. }
  26850. },
  26851. maw: {
  26852. height: math.unit(2.8, "feet"),
  26853. name: "Maw",
  26854. image: {
  26855. source: "./media/characters/juri/maw.svg"
  26856. }
  26857. },
  26858. stomach: {
  26859. height: math.unit(0.89, "feet"),
  26860. preyCapacity: math.unit(4, "liters"),
  26861. name: "Stomach",
  26862. image: {
  26863. source: "./media/characters/juri/stomach.svg"
  26864. }
  26865. },
  26866. },
  26867. [
  26868. {
  26869. name: "Normal",
  26870. height: math.unit(7 + 3 / 12, "feet"),
  26871. default: true
  26872. },
  26873. ]
  26874. ))
  26875. characterMakers.push(() => makeCharacter(
  26876. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26877. {
  26878. fox: {
  26879. height: math.unit(5 + 6 / 12, "feet"),
  26880. weight: math.unit(140, "lb"),
  26881. name: "Fox",
  26882. image: {
  26883. source: "./media/characters/maxene-sita/fox.svg",
  26884. extra: 146 / 138,
  26885. bottom: 2.1 / 148.19
  26886. }
  26887. },
  26888. foxLaying: {
  26889. height: math.unit(1.70, "feet"),
  26890. weight: math.unit(140, "lb"),
  26891. name: "Fox (Laying)",
  26892. image: {
  26893. source: "./media/characters/maxene-sita/fox-laying.svg",
  26894. extra: 910 / 572,
  26895. bottom: 71 / 981
  26896. }
  26897. },
  26898. kitsune: {
  26899. height: math.unit(10, "feet"),
  26900. weight: math.unit(800, "lb"),
  26901. name: "Kitsune",
  26902. image: {
  26903. source: "./media/characters/maxene-sita/kitsune.svg",
  26904. extra: 185 / 176,
  26905. bottom: 4.7 / 189.9
  26906. }
  26907. },
  26908. hellhound: {
  26909. height: math.unit(10, "feet"),
  26910. weight: math.unit(700, "lb"),
  26911. name: "Hellhound",
  26912. image: {
  26913. source: "./media/characters/maxene-sita/hellhound.svg",
  26914. extra: 1600 / 1545,
  26915. bottom: 81 / 1681
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(5 + 6 / 12, "feet"),
  26923. default: true
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26929. {
  26930. front: {
  26931. height: math.unit(3 + 4 / 12, "feet"),
  26932. weight: math.unit(70, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/maia/front.svg",
  26936. extra: 227 / 219.5,
  26937. bottom: 40 / 267
  26938. }
  26939. },
  26940. back: {
  26941. height: math.unit(3 + 4 / 12, "feet"),
  26942. weight: math.unit(70, "lb"),
  26943. name: "Back",
  26944. image: {
  26945. source: "./media/characters/maia/back.svg",
  26946. extra: 237 / 225
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Normal",
  26953. height: math.unit(3 + 4 / 12, "feet"),
  26954. default: true
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(5 + 10 / 12, "feet"),
  26963. weight: math.unit(197, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/jabaro/front.svg",
  26967. extra: 225 / 216,
  26968. bottom: 5.06 / 230
  26969. }
  26970. },
  26971. back: {
  26972. height: math.unit(5 + 10 / 12, "feet"),
  26973. weight: math.unit(197, "lb"),
  26974. name: "Back",
  26975. image: {
  26976. source: "./media/characters/jabaro/back.svg",
  26977. extra: 225 / 219,
  26978. bottom: 1.9 / 227
  26979. }
  26980. },
  26981. },
  26982. [
  26983. {
  26984. name: "Normal",
  26985. height: math.unit(5 + 10 / 12, "feet"),
  26986. default: true
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(5 + 8 / 12, "feet"),
  26995. weight: math.unit(139, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/risa/front.svg",
  26999. extra: 270 / 260,
  27000. bottom: 11.2 / 282
  27001. }
  27002. },
  27003. back: {
  27004. height: math.unit(5 + 8 / 12, "feet"),
  27005. weight: math.unit(139, "lb"),
  27006. name: "Back",
  27007. image: {
  27008. source: "./media/characters/risa/back.svg",
  27009. extra: 264 / 255,
  27010. bottom: 4 / 268
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Normal",
  27017. height: math.unit(5 + 8 / 12, "feet"),
  27018. default: true
  27019. },
  27020. ]
  27021. ))
  27022. characterMakers.push(() => makeCharacter(
  27023. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27024. {
  27025. front: {
  27026. height: math.unit(2 + 11 / 12, "feet"),
  27027. weight: math.unit(30, "lb"),
  27028. name: "Front",
  27029. image: {
  27030. source: "./media/characters/weatley/front.svg",
  27031. bottom: 10.7 / 414,
  27032. extra: 403.5 / 362
  27033. }
  27034. },
  27035. back: {
  27036. height: math.unit(2 + 11 / 12, "feet"),
  27037. weight: math.unit(30, "lb"),
  27038. name: "Back",
  27039. image: {
  27040. source: "./media/characters/weatley/back.svg",
  27041. bottom: 10.7 / 414,
  27042. extra: 403.5 / 362
  27043. }
  27044. },
  27045. },
  27046. [
  27047. {
  27048. name: "Normal",
  27049. height: math.unit(2 + 11 / 12, "feet"),
  27050. default: true
  27051. },
  27052. ]
  27053. ))
  27054. characterMakers.push(() => makeCharacter(
  27055. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27056. {
  27057. front: {
  27058. height: math.unit(5 + 2 / 12, "feet"),
  27059. weight: math.unit(50, "kg"),
  27060. name: "Front",
  27061. image: {
  27062. source: "./media/characters/mercury-crescent/front.svg",
  27063. extra: 1088 / 1033,
  27064. bottom: 18.9 / 1109
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Normal",
  27071. height: math.unit(5 + 2 / 12, "feet"),
  27072. default: true
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27078. {
  27079. front: {
  27080. height: math.unit(2, "feet"),
  27081. weight: math.unit(15, "kg"),
  27082. name: "Front",
  27083. image: {
  27084. source: "./media/characters/diamond-jones/front.svg",
  27085. extra: 727/723,
  27086. bottom: 46/773
  27087. }
  27088. },
  27089. },
  27090. [
  27091. {
  27092. name: "Normal",
  27093. height: math.unit(2, "feet"),
  27094. default: true
  27095. },
  27096. ]
  27097. ))
  27098. characterMakers.push(() => makeCharacter(
  27099. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27100. {
  27101. front: {
  27102. height: math.unit(3, "feet"),
  27103. weight: math.unit(30, "kg"),
  27104. name: "Front",
  27105. image: {
  27106. source: "./media/characters/sweet-bit/front.svg",
  27107. extra: 675 / 567,
  27108. bottom: 27.7 / 703
  27109. }
  27110. },
  27111. },
  27112. [
  27113. {
  27114. name: "Normal",
  27115. height: math.unit(3, "feet"),
  27116. default: true
  27117. },
  27118. ]
  27119. ))
  27120. characterMakers.push(() => makeCharacter(
  27121. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27122. {
  27123. side: {
  27124. height: math.unit(9.178, "feet"),
  27125. weight: math.unit(500, "lb"),
  27126. name: "Side",
  27127. image: {
  27128. source: "./media/characters/umbrazen/side.svg",
  27129. extra: 1730 / 1473,
  27130. bottom: 34.6 / 1765
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(9.178, "feet"),
  27138. default: true
  27139. },
  27140. ]
  27141. ))
  27142. characterMakers.push(() => makeCharacter(
  27143. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27144. {
  27145. front: {
  27146. height: math.unit(10, "feet"),
  27147. weight: math.unit(750, "lb"),
  27148. name: "Front",
  27149. image: {
  27150. source: "./media/characters/arlist/front.svg",
  27151. extra: 961 / 778,
  27152. bottom: 6.2 / 986
  27153. }
  27154. },
  27155. },
  27156. [
  27157. {
  27158. name: "Normal",
  27159. height: math.unit(10, "feet"),
  27160. default: true
  27161. },
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27166. {
  27167. front: {
  27168. height: math.unit(5 + 1 / 12, "feet"),
  27169. weight: math.unit(110, "lb"),
  27170. name: "Front",
  27171. image: {
  27172. source: "./media/characters/aradel/front.svg",
  27173. extra: 324 / 303,
  27174. bottom: 3.6 / 329.4
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(5 + 1 / 12, "feet"),
  27182. default: true
  27183. },
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27188. {
  27189. dressed: {
  27190. height: math.unit(3 + 8 / 12, "feet"),
  27191. weight: math.unit(50, "lb"),
  27192. name: "Dressed",
  27193. image: {
  27194. source: "./media/characters/serryn/dressed.svg",
  27195. extra: 1792 / 1656,
  27196. bottom: 43.5 / 1840
  27197. }
  27198. },
  27199. nude: {
  27200. height: math.unit(3 + 8 / 12, "feet"),
  27201. weight: math.unit(50, "lb"),
  27202. name: "Nude",
  27203. image: {
  27204. source: "./media/characters/serryn/nude.svg",
  27205. extra: 1792 / 1656,
  27206. bottom: 43.5 / 1840
  27207. }
  27208. },
  27209. },
  27210. [
  27211. {
  27212. name: "Normal",
  27213. height: math.unit(3 + 8 / 12, "feet"),
  27214. default: true
  27215. },
  27216. ]
  27217. ))
  27218. characterMakers.push(() => makeCharacter(
  27219. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27220. {
  27221. front: {
  27222. height: math.unit(7 + 10 / 12, "feet"),
  27223. weight: math.unit(255, "lb"),
  27224. name: "Front",
  27225. image: {
  27226. source: "./media/characters/xavier-thyme/front.svg",
  27227. extra: 3733 / 3642,
  27228. bottom: 131 / 3869
  27229. }
  27230. },
  27231. frontRaven: {
  27232. height: math.unit(7 + 10 / 12, "feet"),
  27233. weight: math.unit(255, "lb"),
  27234. name: "Front (Raven)",
  27235. image: {
  27236. source: "./media/characters/xavier-thyme/front-raven.svg",
  27237. extra: 4385 / 3642,
  27238. bottom: 131 / 4517
  27239. }
  27240. },
  27241. },
  27242. [
  27243. {
  27244. name: "Normal",
  27245. height: math.unit(7 + 10 / 12, "feet"),
  27246. default: true
  27247. },
  27248. ]
  27249. ))
  27250. characterMakers.push(() => makeCharacter(
  27251. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27252. {
  27253. front: {
  27254. height: math.unit(1.6, "m"),
  27255. weight: math.unit(50, "kg"),
  27256. name: "Front",
  27257. image: {
  27258. source: "./media/characters/kiki/front.svg",
  27259. extra: 4682 / 3610,
  27260. bottom: 115 / 4777
  27261. }
  27262. },
  27263. },
  27264. [
  27265. {
  27266. name: "Normal",
  27267. height: math.unit(1.6, "meters"),
  27268. default: true
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27274. {
  27275. front: {
  27276. height: math.unit(50, "m"),
  27277. weight: math.unit(500, "tonnes"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/ryoko/front.svg",
  27281. extra: 4632 / 3926,
  27282. bottom: 193 / 4823
  27283. }
  27284. },
  27285. },
  27286. [
  27287. {
  27288. name: "Normal",
  27289. height: math.unit(50, "meters"),
  27290. default: true
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(30, "m"),
  27299. weight: math.unit(22, "tonnes"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/elio/front.svg",
  27303. extra: 4582 / 3720,
  27304. bottom: 236 / 4828
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(30, "meters"),
  27312. default: true
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(6 + 3 / 12, "feet"),
  27321. weight: math.unit(120, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/azura/front.svg",
  27325. extra: 1149 / 1135,
  27326. bottom: 45 / 1194
  27327. }
  27328. },
  27329. frontClothed: {
  27330. height: math.unit(6 + 3 / 12, "feet"),
  27331. weight: math.unit(120, "lb"),
  27332. name: "Front (Clothed)",
  27333. image: {
  27334. source: "./media/characters/azura/front-clothed.svg",
  27335. extra: 1149 / 1135,
  27336. bottom: 45 / 1194
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Normal",
  27343. height: math.unit(6 + 3 / 12, "feet"),
  27344. default: true
  27345. },
  27346. {
  27347. name: "Macro",
  27348. height: math.unit(20 + 6 / 12, "feet")
  27349. },
  27350. {
  27351. name: "Megamacro",
  27352. height: math.unit(12, "miles")
  27353. },
  27354. {
  27355. name: "Gigamacro",
  27356. height: math.unit(10000, "miles")
  27357. },
  27358. {
  27359. name: "Teramacro",
  27360. height: math.unit(900000, "miles")
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27366. {
  27367. front: {
  27368. height: math.unit(12, "feet"),
  27369. weight: math.unit(1, "ton"),
  27370. capacity: math.unit(660000, "gallons"),
  27371. name: "Front",
  27372. image: {
  27373. source: "./media/characters/zeus/front.svg",
  27374. extra: 5005 / 4717,
  27375. bottom: 363 / 5388
  27376. }
  27377. },
  27378. },
  27379. [
  27380. {
  27381. name: "Normal",
  27382. height: math.unit(12, "feet")
  27383. },
  27384. {
  27385. name: "Preferred Size",
  27386. height: math.unit(0.5, "miles"),
  27387. default: true
  27388. },
  27389. {
  27390. name: "Giga Horse",
  27391. height: math.unit(300, "miles")
  27392. },
  27393. {
  27394. name: "Riding Planets",
  27395. height: math.unit(30, "megameters")
  27396. },
  27397. {
  27398. name: "Cosmic Giant",
  27399. height: math.unit(3, "zettameters")
  27400. },
  27401. {
  27402. name: "Breeding God",
  27403. height: math.unit(9.92e22, "yottameters")
  27404. },
  27405. ]
  27406. ))
  27407. characterMakers.push(() => makeCharacter(
  27408. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27409. {
  27410. side: {
  27411. height: math.unit(9, "feet"),
  27412. weight: math.unit(1500, "kg"),
  27413. name: "Side",
  27414. image: {
  27415. source: "./media/characters/fang/side.svg",
  27416. extra: 924 / 866,
  27417. bottom: 47.5 / 972.3
  27418. }
  27419. },
  27420. },
  27421. [
  27422. {
  27423. name: "Normal",
  27424. height: math.unit(9, "feet"),
  27425. default: true
  27426. },
  27427. {
  27428. name: "Macro",
  27429. height: math.unit(75 + 6 / 12, "feet")
  27430. },
  27431. {
  27432. name: "Teramacro",
  27433. height: math.unit(50000, "miles")
  27434. },
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27439. {
  27440. front: {
  27441. height: math.unit(10, "feet"),
  27442. weight: math.unit(2, "tons"),
  27443. name: "Front",
  27444. image: {
  27445. source: "./media/characters/rekhit/front.svg",
  27446. extra: 2796 / 2590,
  27447. bottom: 225 / 3022
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(10, "feet"),
  27455. default: true
  27456. },
  27457. {
  27458. name: "Macro",
  27459. height: math.unit(500, "feet")
  27460. },
  27461. ]
  27462. ))
  27463. characterMakers.push(() => makeCharacter(
  27464. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27465. {
  27466. front: {
  27467. height: math.unit(7 + 6.451 / 12, "feet"),
  27468. weight: math.unit(310, "lb"),
  27469. name: "Front",
  27470. image: {
  27471. source: "./media/characters/dahlia-verrick/front.svg",
  27472. extra: 1488 / 1365,
  27473. bottom: 6.2 / 1495
  27474. }
  27475. },
  27476. back: {
  27477. height: math.unit(7 + 6.451 / 12, "feet"),
  27478. weight: math.unit(310, "lb"),
  27479. name: "Back",
  27480. image: {
  27481. source: "./media/characters/dahlia-verrick/back.svg",
  27482. extra: 1472 / 1351,
  27483. bottom: 5.28 / 1477
  27484. }
  27485. },
  27486. frontBusiness: {
  27487. height: math.unit(7 + 6.451 / 12, "feet"),
  27488. weight: math.unit(200, "lb"),
  27489. name: "Front (Business)",
  27490. image: {
  27491. source: "./media/characters/dahlia-verrick/front-business.svg",
  27492. extra: 1478 / 1381,
  27493. bottom: 5.5 / 1484
  27494. }
  27495. },
  27496. frontCasual: {
  27497. height: math.unit(7 + 6.451 / 12, "feet"),
  27498. weight: math.unit(200, "lb"),
  27499. name: "Front (Casual)",
  27500. image: {
  27501. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27502. extra: 1478 / 1381,
  27503. bottom: 5.5 / 1484
  27504. }
  27505. },
  27506. },
  27507. [
  27508. {
  27509. name: "Travel-Sized",
  27510. height: math.unit(7.45, "inches")
  27511. },
  27512. {
  27513. name: "Normal",
  27514. height: math.unit(7 + 6.451 / 12, "feet"),
  27515. default: true
  27516. },
  27517. {
  27518. name: "Hitting the Town",
  27519. height: math.unit(37 + 8 / 12, "feet")
  27520. },
  27521. {
  27522. name: "Stomp in the Suburbs",
  27523. height: math.unit(964 + 9.728 / 12, "feet")
  27524. },
  27525. {
  27526. name: "Sit on the City",
  27527. height: math.unit(61747 + 10.592 / 12, "feet")
  27528. },
  27529. {
  27530. name: "Glomp the Globe",
  27531. height: math.unit(252919327 + 4.832 / 12, "feet")
  27532. },
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27537. {
  27538. front: {
  27539. height: math.unit(6 + 4 / 12, "feet"),
  27540. weight: math.unit(320, "lb"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/balina-mahigan/front.svg",
  27544. extra: 447 / 428,
  27545. bottom: 18 / 466
  27546. }
  27547. },
  27548. back: {
  27549. height: math.unit(6 + 4 / 12, "feet"),
  27550. weight: math.unit(320, "lb"),
  27551. name: "Back",
  27552. image: {
  27553. source: "./media/characters/balina-mahigan/back.svg",
  27554. extra: 445 / 428,
  27555. bottom: 4.07 / 448
  27556. }
  27557. },
  27558. arm: {
  27559. height: math.unit(1.88, "feet"),
  27560. name: "Arm",
  27561. image: {
  27562. source: "./media/characters/balina-mahigan/arm.svg"
  27563. }
  27564. },
  27565. backPort: {
  27566. height: math.unit(0.685, "feet"),
  27567. name: "Back Port",
  27568. image: {
  27569. source: "./media/characters/balina-mahigan/back-port.svg"
  27570. }
  27571. },
  27572. hoofpaw: {
  27573. height: math.unit(1.41, "feet"),
  27574. name: "Hoofpaw",
  27575. image: {
  27576. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27577. }
  27578. },
  27579. leftHandBack: {
  27580. height: math.unit(0.938, "feet"),
  27581. name: "Left Hand (Back)",
  27582. image: {
  27583. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27584. }
  27585. },
  27586. leftHandFront: {
  27587. height: math.unit(0.938, "feet"),
  27588. name: "Left Hand (Front)",
  27589. image: {
  27590. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27591. }
  27592. },
  27593. rightHandBack: {
  27594. height: math.unit(0.95, "feet"),
  27595. name: "Right Hand (Back)",
  27596. image: {
  27597. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27598. }
  27599. },
  27600. rightHandFront: {
  27601. height: math.unit(0.95, "feet"),
  27602. name: "Right Hand (Front)",
  27603. image: {
  27604. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27605. }
  27606. },
  27607. },
  27608. [
  27609. {
  27610. name: "Normal",
  27611. height: math.unit(6 + 4 / 12, "feet"),
  27612. default: true
  27613. },
  27614. ]
  27615. ))
  27616. characterMakers.push(() => makeCharacter(
  27617. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27618. {
  27619. front: {
  27620. height: math.unit(6, "feet"),
  27621. weight: math.unit(320, "lb"),
  27622. name: "Front",
  27623. image: {
  27624. source: "./media/characters/balina-mejeri/front.svg",
  27625. extra: 517 / 488,
  27626. bottom: 44.2 / 561
  27627. }
  27628. },
  27629. },
  27630. [
  27631. {
  27632. name: "Normal",
  27633. height: math.unit(6 + 4 / 12, "feet")
  27634. },
  27635. {
  27636. name: "Business",
  27637. height: math.unit(155, "feet"),
  27638. default: true
  27639. },
  27640. ]
  27641. ))
  27642. characterMakers.push(() => makeCharacter(
  27643. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27644. {
  27645. kneeling: {
  27646. height: math.unit(6 + 4 / 12, "feet"),
  27647. weight: math.unit(300 * 20, "lb"),
  27648. name: "Kneeling",
  27649. image: {
  27650. source: "./media/characters/balbarian/kneeling.svg",
  27651. extra: 922 / 862,
  27652. bottom: 42.4 / 965
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(6 + 4 / 12, "feet")
  27660. },
  27661. {
  27662. name: "Treasured",
  27663. height: math.unit(18 + 9 / 12, "feet"),
  27664. default: true
  27665. },
  27666. {
  27667. name: "Macro",
  27668. height: math.unit(900, "feet")
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27674. {
  27675. front: {
  27676. height: math.unit(6 + 4 / 12, "feet"),
  27677. weight: math.unit(325, "lb"),
  27678. name: "Front",
  27679. image: {
  27680. source: "./media/characters/balina-amarini/front.svg",
  27681. extra: 415 / 403,
  27682. bottom: 19 / 433.4
  27683. }
  27684. },
  27685. back: {
  27686. height: math.unit(6 + 4 / 12, "feet"),
  27687. weight: math.unit(325, "lb"),
  27688. name: "Back",
  27689. image: {
  27690. source: "./media/characters/balina-amarini/back.svg",
  27691. extra: 415 / 403,
  27692. bottom: 13.5 / 432
  27693. }
  27694. },
  27695. overdrive: {
  27696. height: math.unit(6 + 4 / 12, "feet"),
  27697. weight: math.unit(400, "lb"),
  27698. name: "Overdrive",
  27699. image: {
  27700. source: "./media/characters/balina-amarini/overdrive.svg",
  27701. extra: 269 / 259,
  27702. bottom: 12 / 282
  27703. }
  27704. },
  27705. },
  27706. [
  27707. {
  27708. name: "Boom",
  27709. height: math.unit(9 + 10 / 12, "feet"),
  27710. default: true
  27711. },
  27712. {
  27713. name: "Macro",
  27714. height: math.unit(280, "feet")
  27715. },
  27716. ]
  27717. ))
  27718. characterMakers.push(() => makeCharacter(
  27719. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27720. {
  27721. goddess: {
  27722. height: math.unit(600, "feet"),
  27723. weight: math.unit(2000000, "tons"),
  27724. name: "Goddess",
  27725. image: {
  27726. source: "./media/characters/lady-kubwa/goddess.svg",
  27727. extra: 1240.5 / 1223,
  27728. bottom: 22 / 1263
  27729. }
  27730. },
  27731. goddesser: {
  27732. height: math.unit(900, "feet"),
  27733. weight: math.unit(20000000, "lb"),
  27734. name: "Goddess-er",
  27735. image: {
  27736. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27737. extra: 899 / 888,
  27738. bottom: 12.6 / 912
  27739. }
  27740. },
  27741. },
  27742. [
  27743. {
  27744. name: "Macro",
  27745. height: math.unit(600, "feet"),
  27746. default: true
  27747. },
  27748. {
  27749. name: "Megamacro",
  27750. height: math.unit(250, "miles")
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27756. {
  27757. front: {
  27758. height: math.unit(7 + 7 / 12, "feet"),
  27759. weight: math.unit(250, "lb"),
  27760. name: "Front",
  27761. image: {
  27762. source: "./media/characters/tala-grovehorn/front.svg",
  27763. extra: 2636 / 2525,
  27764. bottom: 147 / 2781
  27765. }
  27766. },
  27767. back: {
  27768. height: math.unit(7 + 7 / 12, "feet"),
  27769. weight: math.unit(250, "lb"),
  27770. name: "Back",
  27771. image: {
  27772. source: "./media/characters/tala-grovehorn/back.svg",
  27773. extra: 2635 / 2539,
  27774. bottom: 100 / 2732.8
  27775. }
  27776. },
  27777. mouth: {
  27778. height: math.unit(1.15, "feet"),
  27779. name: "Mouth",
  27780. image: {
  27781. source: "./media/characters/tala-grovehorn/mouth.svg"
  27782. }
  27783. },
  27784. dick: {
  27785. height: math.unit(2.36, "feet"),
  27786. name: "Dick",
  27787. image: {
  27788. source: "./media/characters/tala-grovehorn/dick.svg"
  27789. }
  27790. },
  27791. slit: {
  27792. height: math.unit(0.61, "feet"),
  27793. name: "Slit",
  27794. image: {
  27795. source: "./media/characters/tala-grovehorn/slit.svg"
  27796. }
  27797. },
  27798. },
  27799. [
  27800. ]
  27801. ))
  27802. characterMakers.push(() => makeCharacter(
  27803. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27804. {
  27805. front: {
  27806. height: math.unit(7 + 7 / 12, "feet"),
  27807. weight: math.unit(225, "lb"),
  27808. name: "Front",
  27809. image: {
  27810. source: "./media/characters/epona/front.svg",
  27811. extra: 2445 / 2290,
  27812. bottom: 251 / 2696
  27813. }
  27814. },
  27815. back: {
  27816. height: math.unit(7 + 7 / 12, "feet"),
  27817. weight: math.unit(225, "lb"),
  27818. name: "Back",
  27819. image: {
  27820. source: "./media/characters/epona/back.svg",
  27821. extra: 2546 / 2408,
  27822. bottom: 44 / 2589
  27823. }
  27824. },
  27825. genitals: {
  27826. height: math.unit(1.5, "feet"),
  27827. name: "Genitals",
  27828. image: {
  27829. source: "./media/characters/epona/genitals.svg"
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Normal",
  27836. height: math.unit(7 + 7 / 12, "feet"),
  27837. default: true
  27838. },
  27839. ]
  27840. ))
  27841. characterMakers.push(() => makeCharacter(
  27842. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27843. {
  27844. front: {
  27845. height: math.unit(7, "feet"),
  27846. weight: math.unit(518, "lb"),
  27847. name: "Front",
  27848. image: {
  27849. source: "./media/characters/avia-bloodbourn/front.svg",
  27850. extra: 1466 / 1350,
  27851. bottom: 65 / 1527
  27852. }
  27853. },
  27854. },
  27855. [
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(9.35, "feet"),
  27863. weight: math.unit(600, "lb"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/amera/front.svg",
  27867. extra: 891 / 818,
  27868. bottom: 30 / 922.7
  27869. }
  27870. },
  27871. back: {
  27872. height: math.unit(9.35, "feet"),
  27873. weight: math.unit(600, "lb"),
  27874. name: "Back",
  27875. image: {
  27876. source: "./media/characters/amera/back.svg",
  27877. extra: 876 / 824,
  27878. bottom: 6.8 / 884
  27879. }
  27880. },
  27881. dick: {
  27882. height: math.unit(2.14, "feet"),
  27883. name: "Dick",
  27884. image: {
  27885. source: "./media/characters/amera/dick.svg"
  27886. }
  27887. },
  27888. },
  27889. [
  27890. {
  27891. name: "Normal",
  27892. height: math.unit(9.35, "feet"),
  27893. default: true
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27899. {
  27900. kneeling: {
  27901. height: math.unit(3 + 4 / 12, "feet"),
  27902. weight: math.unit(90, "lb"),
  27903. name: "Kneeling",
  27904. image: {
  27905. source: "./media/characters/rosewen/kneeling.svg",
  27906. extra: 1835 / 1571,
  27907. bottom: 27.7 / 1862
  27908. }
  27909. },
  27910. },
  27911. [
  27912. {
  27913. name: "Normal",
  27914. height: math.unit(3 + 4 / 12, "feet"),
  27915. default: true
  27916. },
  27917. ]
  27918. ))
  27919. characterMakers.push(() => makeCharacter(
  27920. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27921. {
  27922. front: {
  27923. height: math.unit(5 + 10 / 12, "feet"),
  27924. weight: math.unit(200, "lb"),
  27925. name: "Front",
  27926. image: {
  27927. source: "./media/characters/sabah/front.svg",
  27928. extra: 849 / 763,
  27929. bottom: 33.9 / 881
  27930. }
  27931. },
  27932. },
  27933. [
  27934. {
  27935. name: "Normal",
  27936. height: math.unit(5 + 10 / 12, "feet"),
  27937. default: true
  27938. },
  27939. ]
  27940. ))
  27941. characterMakers.push(() => makeCharacter(
  27942. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27943. {
  27944. front: {
  27945. height: math.unit(3 + 5 / 12, "feet"),
  27946. weight: math.unit(40, "kg"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/purple-flame/front.svg",
  27950. extra: 1577 / 1412,
  27951. bottom: 97 / 1694
  27952. }
  27953. },
  27954. frontDressed: {
  27955. height: math.unit(3 + 5 / 12, "feet"),
  27956. weight: math.unit(40, "kg"),
  27957. name: "Front (Dressed)",
  27958. image: {
  27959. source: "./media/characters/purple-flame/front-dressed.svg",
  27960. extra: 1577 / 1412,
  27961. bottom: 97 / 1694
  27962. }
  27963. },
  27964. headphones: {
  27965. height: math.unit(0.85, "feet"),
  27966. name: "Headphones",
  27967. image: {
  27968. source: "./media/characters/purple-flame/headphones.svg"
  27969. }
  27970. },
  27971. },
  27972. [
  27973. {
  27974. name: "Really Small",
  27975. height: math.unit(5, "cm")
  27976. },
  27977. {
  27978. name: "Micro",
  27979. height: math.unit(1 + 5 / 12, "feet")
  27980. },
  27981. {
  27982. name: "Normal",
  27983. height: math.unit(3 + 5 / 12, "feet"),
  27984. default: true
  27985. },
  27986. {
  27987. name: "Minimacro",
  27988. height: math.unit(125, "feet")
  27989. },
  27990. {
  27991. name: "Macro",
  27992. height: math.unit(0.5, "miles")
  27993. },
  27994. {
  27995. name: "Megamacro",
  27996. height: math.unit(50, "miles")
  27997. },
  27998. {
  27999. name: "Gigantic",
  28000. height: math.unit(750, "miles")
  28001. },
  28002. {
  28003. name: "Planetary",
  28004. height: math.unit(15000, "miles")
  28005. },
  28006. ]
  28007. ))
  28008. characterMakers.push(() => makeCharacter(
  28009. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28010. {
  28011. front: {
  28012. height: math.unit(14, "feet"),
  28013. weight: math.unit(959, "lb"),
  28014. name: "Front",
  28015. image: {
  28016. source: "./media/characters/arsenal/front.svg",
  28017. extra: 2357 / 2157,
  28018. bottom: 93 / 2458
  28019. }
  28020. },
  28021. },
  28022. [
  28023. {
  28024. name: "Normal",
  28025. height: math.unit(14, "feet"),
  28026. default: true
  28027. },
  28028. ]
  28029. ))
  28030. characterMakers.push(() => makeCharacter(
  28031. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28032. {
  28033. front: {
  28034. height: math.unit(6, "feet"),
  28035. weight: math.unit(150, "lb"),
  28036. name: "Front",
  28037. image: {
  28038. source: "./media/characters/adira/front.svg",
  28039. extra: 1078 / 1029,
  28040. bottom: 87 / 1166
  28041. }
  28042. },
  28043. },
  28044. [
  28045. {
  28046. name: "Micro",
  28047. height: math.unit(4, "inches"),
  28048. default: true
  28049. },
  28050. {
  28051. name: "Macro",
  28052. height: math.unit(50, "feet")
  28053. },
  28054. ]
  28055. ))
  28056. characterMakers.push(() => makeCharacter(
  28057. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28058. {
  28059. front: {
  28060. height: math.unit(16, "feet"),
  28061. weight: math.unit(1000, "lb"),
  28062. name: "Front",
  28063. image: {
  28064. source: "./media/characters/grim/front.svg",
  28065. extra: 622 / 614,
  28066. bottom: 18.1 / 642
  28067. }
  28068. },
  28069. back: {
  28070. height: math.unit(16, "feet"),
  28071. weight: math.unit(1000, "lb"),
  28072. name: "Back",
  28073. image: {
  28074. source: "./media/characters/grim/back.svg",
  28075. extra: 610.6 / 602,
  28076. bottom: 40.8 / 652
  28077. }
  28078. },
  28079. hunched: {
  28080. height: math.unit(9.75, "feet"),
  28081. weight: math.unit(1000, "lb"),
  28082. name: "Hunched",
  28083. image: {
  28084. source: "./media/characters/grim/hunched.svg",
  28085. extra: 304 / 297,
  28086. bottom: 35.4 / 394
  28087. }
  28088. },
  28089. },
  28090. [
  28091. {
  28092. name: "Normal",
  28093. height: math.unit(16, "feet"),
  28094. default: true
  28095. },
  28096. ]
  28097. ))
  28098. characterMakers.push(() => makeCharacter(
  28099. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28100. {
  28101. front: {
  28102. height: math.unit(2.3, "meters"),
  28103. weight: math.unit(300, "lb"),
  28104. name: "Front",
  28105. image: {
  28106. source: "./media/characters/sinja/front-sfw.svg",
  28107. extra: 1393 / 1294,
  28108. bottom: 70 / 1463
  28109. }
  28110. },
  28111. frontNsfw: {
  28112. height: math.unit(2.3, "meters"),
  28113. weight: math.unit(300, "lb"),
  28114. name: "Front (NSFW)",
  28115. image: {
  28116. source: "./media/characters/sinja/front-nsfw.svg",
  28117. extra: 1393 / 1294,
  28118. bottom: 70 / 1463
  28119. }
  28120. },
  28121. back: {
  28122. height: math.unit(2.3, "meters"),
  28123. weight: math.unit(300, "lb"),
  28124. name: "Back",
  28125. image: {
  28126. source: "./media/characters/sinja/back.svg",
  28127. extra: 1393 / 1294,
  28128. bottom: 70 / 1463
  28129. }
  28130. },
  28131. head: {
  28132. height: math.unit(1.771, "feet"),
  28133. name: "Head",
  28134. image: {
  28135. source: "./media/characters/sinja/head.svg"
  28136. }
  28137. },
  28138. slit: {
  28139. height: math.unit(0.8, "feet"),
  28140. name: "Slit",
  28141. image: {
  28142. source: "./media/characters/sinja/slit.svg"
  28143. }
  28144. },
  28145. },
  28146. [
  28147. {
  28148. name: "Normal",
  28149. height: math.unit(2.3, "meters")
  28150. },
  28151. {
  28152. name: "Macro",
  28153. height: math.unit(91, "meters"),
  28154. default: true
  28155. },
  28156. {
  28157. name: "Megamacro",
  28158. height: math.unit(91440, "meters")
  28159. },
  28160. {
  28161. name: "Gigamacro",
  28162. height: math.unit(60960000, "meters")
  28163. },
  28164. {
  28165. name: "Teramacro",
  28166. height: math.unit(9144000000, "meters")
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28172. {
  28173. front: {
  28174. height: math.unit(1.7, "meters"),
  28175. weight: math.unit(130, "lb"),
  28176. name: "Front",
  28177. image: {
  28178. source: "./media/characters/kyu/front.svg",
  28179. extra: 415 / 395,
  28180. bottom: 5 / 420
  28181. }
  28182. },
  28183. head: {
  28184. height: math.unit(1.75, "feet"),
  28185. name: "Head",
  28186. image: {
  28187. source: "./media/characters/kyu/head.svg"
  28188. }
  28189. },
  28190. foot: {
  28191. height: math.unit(0.81, "feet"),
  28192. name: "Foot",
  28193. image: {
  28194. source: "./media/characters/kyu/foot.svg"
  28195. }
  28196. },
  28197. },
  28198. [
  28199. {
  28200. name: "Normal",
  28201. height: math.unit(1.7, "meters")
  28202. },
  28203. {
  28204. name: "Macro",
  28205. height: math.unit(131, "feet"),
  28206. default: true
  28207. },
  28208. {
  28209. name: "Megamacro",
  28210. height: math.unit(91440, "meters")
  28211. },
  28212. {
  28213. name: "Gigamacro",
  28214. height: math.unit(60960000, "meters")
  28215. },
  28216. {
  28217. name: "Teramacro",
  28218. height: math.unit(9144000000, "meters")
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(7 + 1 / 12, "feet"),
  28227. weight: math.unit(250, "lb"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/joey/front.svg",
  28231. extra: 1791 / 1537,
  28232. bottom: 28 / 1816
  28233. }
  28234. },
  28235. },
  28236. [
  28237. {
  28238. name: "Micro",
  28239. height: math.unit(3, "inches")
  28240. },
  28241. {
  28242. name: "Normal",
  28243. height: math.unit(7 + 1 / 12, "feet"),
  28244. default: true
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28250. {
  28251. front: {
  28252. height: math.unit(165, "cm"),
  28253. weight: math.unit(140, "lb"),
  28254. name: "Front",
  28255. image: {
  28256. source: "./media/characters/sam-evans/front.svg",
  28257. extra: 3417 / 3230,
  28258. bottom: 41.3 / 3417
  28259. }
  28260. },
  28261. frontSixTails: {
  28262. height: math.unit(165, "cm"),
  28263. weight: math.unit(140, "lb"),
  28264. name: "Front-six-tails",
  28265. image: {
  28266. source: "./media/characters/sam-evans/front-six-tails.svg",
  28267. extra: 3417 / 3230,
  28268. bottom: 41.3 / 3417
  28269. }
  28270. },
  28271. back: {
  28272. height: math.unit(165, "cm"),
  28273. weight: math.unit(140, "lb"),
  28274. name: "Back",
  28275. image: {
  28276. source: "./media/characters/sam-evans/back.svg",
  28277. extra: 3227 / 3032,
  28278. bottom: 6.8 / 3234
  28279. }
  28280. },
  28281. face: {
  28282. height: math.unit(0.68, "feet"),
  28283. name: "Face",
  28284. image: {
  28285. source: "./media/characters/sam-evans/face.svg"
  28286. }
  28287. },
  28288. },
  28289. [
  28290. {
  28291. name: "Normal",
  28292. height: math.unit(165, "cm"),
  28293. default: true
  28294. },
  28295. {
  28296. name: "Macro",
  28297. height: math.unit(100, "meters")
  28298. },
  28299. {
  28300. name: "Macro+",
  28301. height: math.unit(800, "meters")
  28302. },
  28303. {
  28304. name: "Macro++",
  28305. height: math.unit(3, "km")
  28306. },
  28307. {
  28308. name: "Macro+++",
  28309. height: math.unit(30, "km")
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28315. {
  28316. front: {
  28317. height: math.unit(10, "feet"),
  28318. weight: math.unit(750, "lb"),
  28319. name: "Front",
  28320. image: {
  28321. source: "./media/characters/juliet-a/front.svg",
  28322. extra: 1766 / 1720,
  28323. bottom: 43 / 1809
  28324. }
  28325. },
  28326. back: {
  28327. height: math.unit(10, "feet"),
  28328. weight: math.unit(750, "lb"),
  28329. name: "Back",
  28330. image: {
  28331. source: "./media/characters/juliet-a/back.svg",
  28332. extra: 1781 / 1734,
  28333. bottom: 35 / 1810,
  28334. }
  28335. },
  28336. },
  28337. [
  28338. {
  28339. name: "Normal",
  28340. height: math.unit(10, "feet"),
  28341. default: true
  28342. },
  28343. {
  28344. name: "Dragon Form",
  28345. height: math.unit(250, "feet")
  28346. },
  28347. {
  28348. name: "Macro",
  28349. height: math.unit(1000, "feet")
  28350. },
  28351. {
  28352. name: "Megamacro",
  28353. height: math.unit(10000, "feet")
  28354. }
  28355. ]
  28356. ))
  28357. characterMakers.push(() => makeCharacter(
  28358. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28359. {
  28360. regular: {
  28361. height: math.unit(7 + 3 / 12, "feet"),
  28362. weight: math.unit(260, "lb"),
  28363. name: "Regular",
  28364. image: {
  28365. source: "./media/characters/wild/regular.svg",
  28366. extra: 97.45 / 92,
  28367. bottom: 6.8 / 104.3
  28368. }
  28369. },
  28370. biggums: {
  28371. height: math.unit(8 + 6 / 12, "feet"),
  28372. weight: math.unit(425, "lb"),
  28373. name: "Biggums",
  28374. image: {
  28375. source: "./media/characters/wild/biggums.svg",
  28376. extra: 97.45 / 92,
  28377. bottom: 7.5 / 132.34
  28378. }
  28379. },
  28380. mawRegular: {
  28381. height: math.unit(1.24, "feet"),
  28382. name: "Maw (Regular)",
  28383. image: {
  28384. source: "./media/characters/wild/maw.svg"
  28385. }
  28386. },
  28387. mawBiggums: {
  28388. height: math.unit(1.47, "feet"),
  28389. name: "Maw (Biggums)",
  28390. image: {
  28391. source: "./media/characters/wild/maw.svg"
  28392. }
  28393. },
  28394. },
  28395. [
  28396. {
  28397. name: "Normal",
  28398. height: math.unit(7 + 3 / 12, "feet"),
  28399. default: true
  28400. },
  28401. ]
  28402. ))
  28403. characterMakers.push(() => makeCharacter(
  28404. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28405. {
  28406. front: {
  28407. height: math.unit(2.5, "meters"),
  28408. weight: math.unit(200, "kg"),
  28409. name: "Front",
  28410. image: {
  28411. source: "./media/characters/vidar/front.svg",
  28412. extra: 2994 / 2795,
  28413. bottom: 56 / 3061
  28414. }
  28415. },
  28416. back: {
  28417. height: math.unit(2.5, "meters"),
  28418. weight: math.unit(200, "kg"),
  28419. name: "Back",
  28420. image: {
  28421. source: "./media/characters/vidar/back.svg",
  28422. extra: 3131 / 2928,
  28423. bottom: 13.5 / 3141.5
  28424. }
  28425. },
  28426. feral: {
  28427. height: math.unit(2.5, "meters"),
  28428. weight: math.unit(2000, "kg"),
  28429. name: "Feral",
  28430. image: {
  28431. source: "./media/characters/vidar/feral.svg",
  28432. extra: 2790 / 1765,
  28433. bottom: 6 / 2796
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(2.5, "meters"),
  28441. default: true
  28442. },
  28443. {
  28444. name: "Macro",
  28445. height: math.unit(100, "meters")
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(5 + 9 / 12, "feet"),
  28454. weight: math.unit(120, "lb"),
  28455. name: "Front",
  28456. image: {
  28457. source: "./media/characters/ash/front.svg",
  28458. extra: 2189 / 1961,
  28459. bottom: 5.2 / 2194
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Normal",
  28466. height: math.unit(5 + 9 / 12, "feet"),
  28467. default: true
  28468. },
  28469. ]
  28470. ))
  28471. characterMakers.push(() => makeCharacter(
  28472. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28473. {
  28474. front: {
  28475. height: math.unit(9, "feet"),
  28476. weight: math.unit(10000, "lb"),
  28477. name: "Front",
  28478. image: {
  28479. source: "./media/characters/gygabite/front.svg",
  28480. bottom: 31.7 / 537.8,
  28481. extra: 505 / 370
  28482. }
  28483. },
  28484. },
  28485. [
  28486. {
  28487. name: "Normal",
  28488. height: math.unit(9, "feet"),
  28489. default: true
  28490. },
  28491. ]
  28492. ))
  28493. characterMakers.push(() => makeCharacter(
  28494. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28495. {
  28496. front: {
  28497. height: math.unit(12, "feet"),
  28498. weight: math.unit(35000, "lb"),
  28499. name: "Front",
  28500. image: {
  28501. source: "./media/characters/p0tat0/front.svg",
  28502. extra: 1065 / 921,
  28503. bottom: 55.7 / 1121.25
  28504. }
  28505. },
  28506. },
  28507. [
  28508. {
  28509. name: "Normal",
  28510. height: math.unit(12, "feet"),
  28511. default: true
  28512. },
  28513. ]
  28514. ))
  28515. characterMakers.push(() => makeCharacter(
  28516. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28517. {
  28518. side: {
  28519. height: math.unit(6.5, "feet"),
  28520. weight: math.unit(800, "lb"),
  28521. name: "Side",
  28522. image: {
  28523. source: "./media/characters/dusk/side.svg",
  28524. extra: 615 / 373,
  28525. bottom: 53 / 664
  28526. }
  28527. },
  28528. sitting: {
  28529. height: math.unit(7, "feet"),
  28530. weight: math.unit(800, "lb"),
  28531. name: "Sitting",
  28532. image: {
  28533. source: "./media/characters/dusk/sitting.svg",
  28534. extra: 753 / 425,
  28535. bottom: 33 / 774
  28536. }
  28537. },
  28538. head: {
  28539. height: math.unit(6.1, "feet"),
  28540. name: "Head",
  28541. image: {
  28542. source: "./media/characters/dusk/head.svg"
  28543. }
  28544. },
  28545. },
  28546. [
  28547. {
  28548. name: "Normal",
  28549. height: math.unit(7, "feet"),
  28550. default: true
  28551. },
  28552. ]
  28553. ))
  28554. characterMakers.push(() => makeCharacter(
  28555. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28556. {
  28557. front: {
  28558. height: math.unit(15, "feet"),
  28559. weight: math.unit(7000, "lb"),
  28560. name: "Front",
  28561. image: {
  28562. source: "./media/characters/jay-direwolf/front.svg",
  28563. extra: 1810 / 1732,
  28564. bottom: 66 / 1892
  28565. }
  28566. },
  28567. },
  28568. [
  28569. {
  28570. name: "Normal",
  28571. height: math.unit(15, "feet"),
  28572. default: true
  28573. },
  28574. ]
  28575. ))
  28576. characterMakers.push(() => makeCharacter(
  28577. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28578. {
  28579. front: {
  28580. height: math.unit(4 + 9 / 12, "feet"),
  28581. weight: math.unit(130, "lb"),
  28582. name: "Front",
  28583. image: {
  28584. source: "./media/characters/anchovie/front.svg",
  28585. extra: 382 / 350,
  28586. bottom: 25 / 409
  28587. }
  28588. },
  28589. back: {
  28590. height: math.unit(4 + 9 / 12, "feet"),
  28591. weight: math.unit(130, "lb"),
  28592. name: "Back",
  28593. image: {
  28594. source: "./media/characters/anchovie/back.svg",
  28595. extra: 385 / 352,
  28596. bottom: 16.6 / 402
  28597. }
  28598. },
  28599. frontDressed: {
  28600. height: math.unit(4 + 9 / 12, "feet"),
  28601. weight: math.unit(130, "lb"),
  28602. name: "Front (Dressed)",
  28603. image: {
  28604. source: "./media/characters/anchovie/front-dressed.svg",
  28605. extra: 382 / 350,
  28606. bottom: 25 / 409
  28607. }
  28608. },
  28609. backDressed: {
  28610. height: math.unit(4 + 9 / 12, "feet"),
  28611. weight: math.unit(130, "lb"),
  28612. name: "Back (Dressed)",
  28613. image: {
  28614. source: "./media/characters/anchovie/back-dressed.svg",
  28615. extra: 385 / 352,
  28616. bottom: 16.6 / 402
  28617. }
  28618. },
  28619. },
  28620. [
  28621. {
  28622. name: "Micro",
  28623. height: math.unit(6.4, "inches")
  28624. },
  28625. {
  28626. name: "Normal",
  28627. height: math.unit(4 + 9 / 12, "feet"),
  28628. default: true
  28629. },
  28630. ]
  28631. ))
  28632. characterMakers.push(() => makeCharacter(
  28633. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28634. {
  28635. front: {
  28636. height: math.unit(2, "meters"),
  28637. weight: math.unit(180, "lb"),
  28638. name: "Front",
  28639. image: {
  28640. source: "./media/characters/acidrenamon/front.svg",
  28641. extra: 987 / 890,
  28642. bottom: 22.8 / 1009
  28643. }
  28644. },
  28645. back: {
  28646. height: math.unit(2, "meters"),
  28647. weight: math.unit(180, "lb"),
  28648. name: "Back",
  28649. image: {
  28650. source: "./media/characters/acidrenamon/back.svg",
  28651. extra: 983 / 891,
  28652. bottom: 8.4 / 992
  28653. }
  28654. },
  28655. head: {
  28656. height: math.unit(1.92, "feet"),
  28657. name: "Head",
  28658. image: {
  28659. source: "./media/characters/acidrenamon/head.svg"
  28660. }
  28661. },
  28662. rump: {
  28663. height: math.unit(1.72, "feet"),
  28664. name: "Rump",
  28665. image: {
  28666. source: "./media/characters/acidrenamon/rump.svg"
  28667. }
  28668. },
  28669. tail: {
  28670. height: math.unit(4.2, "feet"),
  28671. name: "Tail",
  28672. image: {
  28673. source: "./media/characters/acidrenamon/tail.svg"
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Normal",
  28680. height: math.unit(2, "meters"),
  28681. default: true
  28682. },
  28683. {
  28684. name: "Minimacro",
  28685. height: math.unit(7, "meters")
  28686. },
  28687. {
  28688. name: "Macro",
  28689. height: math.unit(200, "meters")
  28690. },
  28691. {
  28692. name: "Gigamacro",
  28693. height: math.unit(0.2, "earths")
  28694. },
  28695. ]
  28696. ))
  28697. characterMakers.push(() => makeCharacter(
  28698. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28699. {
  28700. front: {
  28701. height: math.unit(152, "feet"),
  28702. name: "Front",
  28703. image: {
  28704. source: "./media/characters/kenzie-lee/front.svg",
  28705. extra: 1869/1774,
  28706. bottom: 128/1997
  28707. }
  28708. },
  28709. side: {
  28710. height: math.unit(86, "feet"),
  28711. name: "Side",
  28712. image: {
  28713. source: "./media/characters/kenzie-lee/side.svg",
  28714. extra: 930/815,
  28715. bottom: 177/1107
  28716. }
  28717. },
  28718. paw: {
  28719. height: math.unit(15, "feet"),
  28720. name: "Paw",
  28721. image: {
  28722. source: "./media/characters/kenzie-lee/paw.svg"
  28723. }
  28724. },
  28725. },
  28726. [
  28727. {
  28728. name: "Kenzie Flea",
  28729. height: math.unit(2, "mm"),
  28730. default: true
  28731. },
  28732. {
  28733. name: "Micro",
  28734. height: math.unit(2, "inches")
  28735. },
  28736. {
  28737. name: "Normal",
  28738. height: math.unit(152, "feet")
  28739. },
  28740. {
  28741. name: "Megamacro",
  28742. height: math.unit(7, "miles")
  28743. },
  28744. {
  28745. name: "Gigamacro",
  28746. height: math.unit(8000, "miles")
  28747. },
  28748. ]
  28749. ))
  28750. characterMakers.push(() => makeCharacter(
  28751. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28752. {
  28753. front: {
  28754. height: math.unit(6, "feet"),
  28755. name: "Front",
  28756. image: {
  28757. source: "./media/characters/withers/front.svg",
  28758. extra: 1935/1760,
  28759. bottom: 72/2007
  28760. }
  28761. },
  28762. back: {
  28763. height: math.unit(6, "feet"),
  28764. name: "Back",
  28765. image: {
  28766. source: "./media/characters/withers/back.svg",
  28767. extra: 1944/1792,
  28768. bottom: 12/1956
  28769. }
  28770. },
  28771. dressed: {
  28772. height: math.unit(6, "feet"),
  28773. name: "Dressed",
  28774. image: {
  28775. source: "./media/characters/withers/dressed.svg",
  28776. extra: 1937/1765,
  28777. bottom: 73/2010
  28778. }
  28779. },
  28780. phase1: {
  28781. height: math.unit(1.1, "feet"),
  28782. name: "Phase 1",
  28783. image: {
  28784. source: "./media/characters/withers/phase-1.svg",
  28785. extra: 1885/1232,
  28786. bottom: 0/1885
  28787. }
  28788. },
  28789. phase2: {
  28790. height: math.unit(1.05, "feet"),
  28791. name: "Phase 2",
  28792. image: {
  28793. source: "./media/characters/withers/phase-2.svg",
  28794. extra: 1792/1090,
  28795. bottom: 0/1792
  28796. }
  28797. },
  28798. partyWipe: {
  28799. height: math.unit(1.1, "feet"),
  28800. name: "Party Wipe",
  28801. image: {
  28802. source: "./media/characters/withers/party-wipe.svg",
  28803. extra: 1864/1207,
  28804. bottom: 0/1864
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Macro",
  28811. height: math.unit(167, "feet"),
  28812. default: true
  28813. },
  28814. {
  28815. name: "Megamacro",
  28816. height: math.unit(15, "miles")
  28817. }
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28822. {
  28823. front: {
  28824. height: math.unit(6 + 7 / 12, "feet"),
  28825. weight: math.unit(250, "lb"),
  28826. name: "Front",
  28827. image: {
  28828. source: "./media/characters/nemoskii/front.svg",
  28829. extra: 2270 / 1734,
  28830. bottom: 86 / 2354
  28831. }
  28832. },
  28833. back: {
  28834. height: math.unit(6 + 7 / 12, "feet"),
  28835. weight: math.unit(250, "lb"),
  28836. name: "Back",
  28837. image: {
  28838. source: "./media/characters/nemoskii/back.svg",
  28839. extra: 1845 / 1788,
  28840. bottom: 10.5 / 1852
  28841. }
  28842. },
  28843. head: {
  28844. height: math.unit(1.31, "feet"),
  28845. name: "Head",
  28846. image: {
  28847. source: "./media/characters/nemoskii/head.svg"
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Micro",
  28854. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28855. },
  28856. {
  28857. name: "Normal",
  28858. height: math.unit(6 + 7 / 12, "feet"),
  28859. default: true
  28860. },
  28861. {
  28862. name: "Macro",
  28863. height: math.unit((6 + 7 / 12) * 150, "feet")
  28864. },
  28865. {
  28866. name: "Macro+",
  28867. height: math.unit((6 + 7 / 12) * 500, "feet")
  28868. },
  28869. {
  28870. name: "Megamacro",
  28871. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28872. },
  28873. ]
  28874. ))
  28875. characterMakers.push(() => makeCharacter(
  28876. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28877. {
  28878. front: {
  28879. height: math.unit(1, "mile"),
  28880. weight: math.unit(265261.9, "lb"),
  28881. name: "Front",
  28882. image: {
  28883. source: "./media/characters/shui/front.svg",
  28884. extra: 1633 / 1564,
  28885. bottom: 91.5 / 1726
  28886. }
  28887. },
  28888. },
  28889. [
  28890. {
  28891. name: "Macro",
  28892. height: math.unit(1, "mile"),
  28893. default: true
  28894. },
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28899. {
  28900. front: {
  28901. height: math.unit(12 + 6 / 12, "feet"),
  28902. weight: math.unit(1342, "lb"),
  28903. name: "Front",
  28904. image: {
  28905. source: "./media/characters/arokh-takakura/front.svg",
  28906. extra: 1089 / 1043,
  28907. bottom: 77.4 / 1176.7
  28908. }
  28909. },
  28910. back: {
  28911. height: math.unit(12 + 6 / 12, "feet"),
  28912. weight: math.unit(1342, "lb"),
  28913. name: "Back",
  28914. image: {
  28915. source: "./media/characters/arokh-takakura/back.svg",
  28916. extra: 1046 / 1019,
  28917. bottom: 102 / 1150
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Big",
  28924. height: math.unit(12 + 6 / 12, "feet"),
  28925. default: true
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(5 + 6 / 12, "feet"),
  28934. weight: math.unit(150, "lb"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/theo/front.svg",
  28938. extra: 1184 / 1131,
  28939. bottom: 7.4 / 1191
  28940. }
  28941. },
  28942. },
  28943. [
  28944. {
  28945. name: "Micro",
  28946. height: math.unit(5, "inches")
  28947. },
  28948. {
  28949. name: "Normal",
  28950. height: math.unit(5 + 6 / 12, "feet"),
  28951. default: true
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(5 + 9 / 12, "feet"),
  28960. weight: math.unit(130, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/cecelia-swift/front.svg",
  28964. extra: 502 / 484,
  28965. bottom: 23 / 523
  28966. }
  28967. },
  28968. back: {
  28969. height: math.unit(5 + 9 / 12, "feet"),
  28970. weight: math.unit(130, "lb"),
  28971. name: "Back",
  28972. image: {
  28973. source: "./media/characters/cecelia-swift/back.svg",
  28974. extra: 499 / 485,
  28975. bottom: 12 / 511
  28976. }
  28977. },
  28978. head: {
  28979. height: math.unit(0.90, "feet"),
  28980. name: "Head",
  28981. image: {
  28982. source: "./media/characters/cecelia-swift/head.svg"
  28983. }
  28984. },
  28985. rump: {
  28986. height: math.unit(1.75, "feet"),
  28987. name: "Rump",
  28988. image: {
  28989. source: "./media/characters/cecelia-swift/rump.svg"
  28990. }
  28991. },
  28992. },
  28993. [
  28994. {
  28995. name: "Normal",
  28996. height: math.unit(5 + 9 / 12, "feet"),
  28997. default: true
  28998. },
  28999. {
  29000. name: "Big",
  29001. height: math.unit(50, "feet")
  29002. },
  29003. {
  29004. name: "Macro",
  29005. height: math.unit(100, "feet")
  29006. },
  29007. {
  29008. name: "Macro+",
  29009. height: math.unit(500, "feet")
  29010. },
  29011. {
  29012. name: "Macro++",
  29013. height: math.unit(1000, "feet")
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29019. {
  29020. front: {
  29021. height: math.unit(6, "feet"),
  29022. weight: math.unit(150, "lb"),
  29023. name: "Front",
  29024. image: {
  29025. source: "./media/characters/kaunan/front.svg",
  29026. extra: 2890 / 2523,
  29027. bottom: 49 / 2939
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Macro",
  29034. height: math.unit(150, "feet"),
  29035. default: true
  29036. },
  29037. ]
  29038. ))
  29039. characterMakers.push(() => makeCharacter(
  29040. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29041. {
  29042. front: {
  29043. height: math.unit(175, "cm"),
  29044. weight: math.unit(60, "kg"),
  29045. name: "Front",
  29046. image: {
  29047. source: "./media/characters/fei/front.svg",
  29048. extra: 1873/1723,
  29049. bottom: 53/1926
  29050. }
  29051. },
  29052. },
  29053. [
  29054. {
  29055. name: "Mortal",
  29056. height: math.unit(175, "cm")
  29057. },
  29058. {
  29059. name: "Normal",
  29060. height: math.unit(3500, "m"),
  29061. default: true
  29062. },
  29063. {
  29064. name: "Stroll",
  29065. height: math.unit(17.5, "km")
  29066. },
  29067. {
  29068. name: "Showoff",
  29069. height: math.unit(175, "km")
  29070. },
  29071. ]
  29072. ))
  29073. characterMakers.push(() => makeCharacter(
  29074. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29075. {
  29076. front: {
  29077. height: math.unit(7, "feet"),
  29078. weight: math.unit(1000, "kg"),
  29079. name: "Front",
  29080. image: {
  29081. source: "./media/characters/edrax/front.svg",
  29082. extra: 2838 / 2550,
  29083. bottom: 130 / 2968
  29084. }
  29085. },
  29086. },
  29087. [
  29088. {
  29089. name: "Small",
  29090. height: math.unit(7, "feet")
  29091. },
  29092. {
  29093. name: "Normal",
  29094. height: math.unit(1500, "meters")
  29095. },
  29096. {
  29097. name: "Mega",
  29098. height: math.unit(12000000, "km"),
  29099. default: true
  29100. },
  29101. {
  29102. name: "Megamacro",
  29103. height: math.unit(10600000, "lightyears")
  29104. },
  29105. {
  29106. name: "Hypermacro",
  29107. height: math.unit(256, "yottameters")
  29108. },
  29109. ]
  29110. ))
  29111. characterMakers.push(() => makeCharacter(
  29112. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29113. {
  29114. front: {
  29115. height: math.unit(10, "feet"),
  29116. weight: math.unit(750, "lb"),
  29117. name: "Front",
  29118. image: {
  29119. source: "./media/characters/clove/front.svg",
  29120. extra: 1918/1751,
  29121. bottom: 52/1970
  29122. }
  29123. },
  29124. back: {
  29125. height: math.unit(10, "feet"),
  29126. weight: math.unit(750, "lb"),
  29127. name: "Back",
  29128. image: {
  29129. source: "./media/characters/clove/back.svg",
  29130. extra: 1912/1747,
  29131. bottom: 50/1962
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Normal",
  29138. height: math.unit(10, "feet"),
  29139. default: true
  29140. },
  29141. ]
  29142. ))
  29143. characterMakers.push(() => makeCharacter(
  29144. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29145. {
  29146. front: {
  29147. height: math.unit(4, "feet"),
  29148. weight: math.unit(50, "lb"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/alex-rabbit/front.svg",
  29152. extra: 507 / 458,
  29153. bottom: 18.5 / 527
  29154. }
  29155. },
  29156. back: {
  29157. height: math.unit(4, "feet"),
  29158. weight: math.unit(50, "lb"),
  29159. name: "Back",
  29160. image: {
  29161. source: "./media/characters/alex-rabbit/back.svg",
  29162. extra: 502 / 460,
  29163. bottom: 18.9 / 521
  29164. }
  29165. },
  29166. },
  29167. [
  29168. {
  29169. name: "Normal",
  29170. height: math.unit(4, "feet"),
  29171. default: true
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(1 + 3 / 12, "feet"),
  29180. weight: math.unit(80, "lb"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/zander-rose/front.svg",
  29184. extra: 916 / 797,
  29185. bottom: 17 / 933
  29186. }
  29187. },
  29188. back: {
  29189. height: math.unit(1 + 3 / 12, "feet"),
  29190. weight: math.unit(80, "lb"),
  29191. name: "Back",
  29192. image: {
  29193. source: "./media/characters/zander-rose/back.svg",
  29194. extra: 903 / 779,
  29195. bottom: 31 / 934
  29196. }
  29197. },
  29198. },
  29199. [
  29200. {
  29201. name: "Normal",
  29202. height: math.unit(1 + 3 / 12, "feet"),
  29203. default: true
  29204. },
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29209. {
  29210. anthro: {
  29211. height: math.unit(6, "feet"),
  29212. weight: math.unit(150, "lb"),
  29213. name: "Anthro",
  29214. image: {
  29215. source: "./media/characters/razz/anthro.svg",
  29216. extra: 1437 / 1343,
  29217. bottom: 48 / 1485
  29218. }
  29219. },
  29220. feral: {
  29221. height: math.unit(6, "feet"),
  29222. weight: math.unit(150, "lb"),
  29223. name: "Feral",
  29224. image: {
  29225. source: "./media/characters/razz/feral.svg",
  29226. extra: 2569 / 1385,
  29227. bottom: 95 / 2664
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(6, "feet"),
  29235. default: true
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(9 + 4 / 12, "feet"),
  29244. weight: math.unit(500, "lb"),
  29245. name: "Front",
  29246. image: {
  29247. source: "./media/characters/morrigan/front.svg",
  29248. extra: 2707 / 2579,
  29249. bottom: 156 / 2863
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(9 + 4 / 12, "feet"),
  29257. default: true
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(5, "stories"),
  29266. weight: math.unit(4000, "lb"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/jenene/front.svg",
  29270. extra: 1780 / 1710,
  29271. bottom: 57 / 1837
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Normal",
  29278. height: math.unit(5, "stories"),
  29279. default: true
  29280. },
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29285. {
  29286. taurSfw: {
  29287. height: math.unit(10, "meters"),
  29288. weight: math.unit(17500, "kg"),
  29289. name: "Taur",
  29290. image: {
  29291. source: "./media/characters/faey/taur-sfw.svg",
  29292. extra: 1200 / 968,
  29293. bottom: 41 / 1241
  29294. }
  29295. },
  29296. chestmaw: {
  29297. height: math.unit(2.01, "meters"),
  29298. name: "Chestmaw",
  29299. image: {
  29300. source: "./media/characters/faey/chestmaw.svg"
  29301. }
  29302. },
  29303. foot: {
  29304. height: math.unit(2.43, "meters"),
  29305. name: "Foot",
  29306. image: {
  29307. source: "./media/characters/faey/foot.svg"
  29308. }
  29309. },
  29310. jaws: {
  29311. height: math.unit(1.66, "meters"),
  29312. name: "Jaws",
  29313. image: {
  29314. source: "./media/characters/faey/jaws.svg"
  29315. }
  29316. },
  29317. tongues: {
  29318. height: math.unit(2.01, "meters"),
  29319. name: "Tongues",
  29320. image: {
  29321. source: "./media/characters/faey/tongues.svg"
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Small",
  29328. height: math.unit(10, "meters"),
  29329. default: true
  29330. },
  29331. {
  29332. name: "Big",
  29333. height: math.unit(500000, "km")
  29334. },
  29335. ]
  29336. ))
  29337. characterMakers.push(() => makeCharacter(
  29338. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29339. {
  29340. front: {
  29341. height: math.unit(7, "feet"),
  29342. weight: math.unit(275, "lb"),
  29343. name: "Front",
  29344. image: {
  29345. source: "./media/characters/roku/front.svg",
  29346. extra: 903 / 878,
  29347. bottom: 37 / 940
  29348. }
  29349. },
  29350. },
  29351. [
  29352. {
  29353. name: "Normal",
  29354. height: math.unit(7, "feet"),
  29355. default: true
  29356. },
  29357. {
  29358. name: "Macro",
  29359. height: math.unit(500, "feet")
  29360. },
  29361. {
  29362. name: "Megamacro",
  29363. height: math.unit(200, "miles")
  29364. },
  29365. ]
  29366. ))
  29367. characterMakers.push(() => makeCharacter(
  29368. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29369. {
  29370. front: {
  29371. height: math.unit(6 + 2 / 12, "feet"),
  29372. weight: math.unit(150, "lb"),
  29373. name: "Front",
  29374. image: {
  29375. source: "./media/characters/lira/front.svg",
  29376. extra: 1727 / 1605,
  29377. bottom: 26 / 1753
  29378. }
  29379. },
  29380. back: {
  29381. height: math.unit(6 + 2 / 12, "feet"),
  29382. weight: math.unit(150, "lb"),
  29383. name: "Back",
  29384. image: {
  29385. source: "./media/characters/lira/back.svg",
  29386. extra: 1713/1621,
  29387. bottom: 20/1733
  29388. }
  29389. },
  29390. hand: {
  29391. height: math.unit(0.75, "feet"),
  29392. name: "Hand",
  29393. image: {
  29394. source: "./media/characters/lira/hand.svg"
  29395. }
  29396. },
  29397. maw: {
  29398. height: math.unit(0.65, "feet"),
  29399. name: "Maw",
  29400. image: {
  29401. source: "./media/characters/lira/maw.svg"
  29402. }
  29403. },
  29404. pawDigi: {
  29405. height: math.unit(1.6, "feet"),
  29406. name: "Paw Digi",
  29407. image: {
  29408. source: "./media/characters/lira/paw-digi.svg"
  29409. }
  29410. },
  29411. pawPlanti: {
  29412. height: math.unit(1.4, "feet"),
  29413. name: "Paw Planti",
  29414. image: {
  29415. source: "./media/characters/lira/paw-planti.svg"
  29416. }
  29417. },
  29418. },
  29419. [
  29420. {
  29421. name: "Normal",
  29422. height: math.unit(6 + 2 / 12, "feet"),
  29423. default: true
  29424. },
  29425. {
  29426. name: "Macro",
  29427. height: math.unit(100, "feet")
  29428. },
  29429. {
  29430. name: "Macro²",
  29431. height: math.unit(1600, "feet")
  29432. },
  29433. {
  29434. name: "Planetary",
  29435. height: math.unit(20, "earths")
  29436. },
  29437. ]
  29438. ))
  29439. characterMakers.push(() => makeCharacter(
  29440. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29441. {
  29442. front: {
  29443. height: math.unit(6, "feet"),
  29444. weight: math.unit(150, "lb"),
  29445. name: "Front",
  29446. image: {
  29447. source: "./media/characters/hadjet/front.svg",
  29448. extra: 1480 / 1346,
  29449. bottom: 26 / 1506
  29450. }
  29451. },
  29452. frontNsfw: {
  29453. height: math.unit(6, "feet"),
  29454. weight: math.unit(150, "lb"),
  29455. name: "Front (NSFW)",
  29456. image: {
  29457. source: "./media/characters/hadjet/front-nsfw.svg",
  29458. extra: 1440 / 1358,
  29459. bottom: 52 / 1492
  29460. }
  29461. },
  29462. },
  29463. [
  29464. {
  29465. name: "Macro",
  29466. height: math.unit(10, "stories"),
  29467. default: true
  29468. },
  29469. {
  29470. name: "Megamacro",
  29471. height: math.unit(1.5, "miles")
  29472. },
  29473. {
  29474. name: "Megamacro+",
  29475. height: math.unit(5, "miles")
  29476. },
  29477. ]
  29478. ))
  29479. characterMakers.push(() => makeCharacter(
  29480. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29481. {
  29482. side: {
  29483. height: math.unit(106, "feet"),
  29484. weight: math.unit(500, "tonnes"),
  29485. name: "Side",
  29486. image: {
  29487. source: "./media/characters/kodran/side.svg",
  29488. extra: 553 / 480,
  29489. bottom: 33 / 586
  29490. }
  29491. },
  29492. front: {
  29493. height: math.unit(132, "feet"),
  29494. weight: math.unit(500, "tonnes"),
  29495. name: "Front",
  29496. image: {
  29497. source: "./media/characters/kodran/front.svg",
  29498. extra: 667 / 643,
  29499. bottom: 42 / 709
  29500. }
  29501. },
  29502. flying: {
  29503. height: math.unit(350, "feet"),
  29504. weight: math.unit(500, "tonnes"),
  29505. name: "Flying",
  29506. image: {
  29507. source: "./media/characters/kodran/flying.svg"
  29508. }
  29509. },
  29510. foot: {
  29511. height: math.unit(33, "feet"),
  29512. name: "Foot",
  29513. image: {
  29514. source: "./media/characters/kodran/foot.svg"
  29515. }
  29516. },
  29517. footFront: {
  29518. height: math.unit(19, "feet"),
  29519. name: "Foot (Front)",
  29520. image: {
  29521. source: "./media/characters/kodran/foot-front.svg",
  29522. extra: 261 / 261,
  29523. bottom: 91 / 352
  29524. }
  29525. },
  29526. headFront: {
  29527. height: math.unit(53, "feet"),
  29528. name: "Head (Front)",
  29529. image: {
  29530. source: "./media/characters/kodran/head-front.svg"
  29531. }
  29532. },
  29533. headSide: {
  29534. height: math.unit(65, "feet"),
  29535. name: "Head (Side)",
  29536. image: {
  29537. source: "./media/characters/kodran/head-side.svg"
  29538. }
  29539. },
  29540. throat: {
  29541. height: math.unit(79, "feet"),
  29542. name: "Throat",
  29543. image: {
  29544. source: "./media/characters/kodran/throat.svg"
  29545. }
  29546. },
  29547. },
  29548. [
  29549. {
  29550. name: "Large",
  29551. height: math.unit(106, "feet"),
  29552. default: true
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29558. {
  29559. side: {
  29560. height: math.unit(11, "feet"),
  29561. weight: math.unit(150, "lb"),
  29562. name: "Side",
  29563. image: {
  29564. source: "./media/characters/pyxaron/side.svg",
  29565. extra: 305 / 195,
  29566. bottom: 17 / 322
  29567. }
  29568. },
  29569. },
  29570. [
  29571. {
  29572. name: "Normal",
  29573. height: math.unit(11, "feet"),
  29574. default: true
  29575. },
  29576. ]
  29577. ))
  29578. characterMakers.push(() => makeCharacter(
  29579. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29580. {
  29581. front: {
  29582. height: math.unit(6, "feet"),
  29583. weight: math.unit(150, "lb"),
  29584. name: "Front",
  29585. image: {
  29586. source: "./media/characters/meep/front.svg",
  29587. extra: 88 / 80,
  29588. bottom: 6 / 94
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "Fun Sized",
  29595. height: math.unit(2, "inches"),
  29596. default: true
  29597. },
  29598. {
  29599. name: "Friend Sized",
  29600. height: math.unit(8, "inches")
  29601. },
  29602. ]
  29603. ))
  29604. characterMakers.push(() => makeCharacter(
  29605. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29606. {
  29607. front: {
  29608. height: math.unit(15, "feet"),
  29609. weight: math.unit(2500, "lb"),
  29610. name: "Front",
  29611. image: {
  29612. source: "./media/characters/holly-rabbit/front.svg",
  29613. extra: 1433 / 1233,
  29614. bottom: 125 / 1558
  29615. }
  29616. },
  29617. dick: {
  29618. height: math.unit(4.6, "feet"),
  29619. name: "Dick",
  29620. image: {
  29621. source: "./media/characters/holly-rabbit/dick.svg"
  29622. }
  29623. },
  29624. },
  29625. [
  29626. {
  29627. name: "Normal",
  29628. height: math.unit(15, "feet"),
  29629. default: true
  29630. },
  29631. {
  29632. name: "Macro",
  29633. height: math.unit(250, "feet")
  29634. },
  29635. {
  29636. name: "Macro+",
  29637. height: math.unit(2500, "feet")
  29638. },
  29639. ]
  29640. ))
  29641. characterMakers.push(() => makeCharacter(
  29642. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29643. {
  29644. front: {
  29645. height: math.unit(3.02, "meters"),
  29646. weight: math.unit(500, "kg"),
  29647. name: "Front",
  29648. image: {
  29649. source: "./media/characters/drena/front.svg",
  29650. extra: 282 / 243,
  29651. bottom: 8 / 290
  29652. }
  29653. },
  29654. side: {
  29655. height: math.unit(3.02, "meters"),
  29656. weight: math.unit(500, "kg"),
  29657. name: "Side",
  29658. image: {
  29659. source: "./media/characters/drena/side.svg",
  29660. extra: 280 / 245,
  29661. bottom: 10 / 290
  29662. }
  29663. },
  29664. back: {
  29665. height: math.unit(3.02, "meters"),
  29666. weight: math.unit(500, "kg"),
  29667. name: "Back",
  29668. image: {
  29669. source: "./media/characters/drena/back.svg",
  29670. extra: 278 / 243,
  29671. bottom: 2 / 280
  29672. }
  29673. },
  29674. foot: {
  29675. height: math.unit(0.75, "meters"),
  29676. name: "Foot",
  29677. image: {
  29678. source: "./media/characters/drena/foot.svg"
  29679. }
  29680. },
  29681. maw: {
  29682. height: math.unit(0.82, "meters"),
  29683. name: "Maw",
  29684. image: {
  29685. source: "./media/characters/drena/maw.svg"
  29686. }
  29687. },
  29688. eating: {
  29689. height: math.unit(0.75, "meters"),
  29690. name: "Eating",
  29691. image: {
  29692. source: "./media/characters/drena/eating.svg"
  29693. }
  29694. },
  29695. rump: {
  29696. height: math.unit(0.93, "meters"),
  29697. name: "Rump",
  29698. image: {
  29699. source: "./media/characters/drena/rump.svg"
  29700. }
  29701. },
  29702. },
  29703. [
  29704. {
  29705. name: "Normal",
  29706. height: math.unit(3.02, "meters"),
  29707. default: true
  29708. },
  29709. ]
  29710. ))
  29711. characterMakers.push(() => makeCharacter(
  29712. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29713. {
  29714. front: {
  29715. height: math.unit(6 + 4 / 12, "feet"),
  29716. weight: math.unit(250, "lb"),
  29717. name: "Front",
  29718. image: {
  29719. source: "./media/characters/remmyzilla/front.svg",
  29720. extra: 4033 / 3588,
  29721. bottom: 123 / 4156
  29722. }
  29723. },
  29724. back: {
  29725. height: math.unit(6 + 4 / 12, "feet"),
  29726. weight: math.unit(250, "lb"),
  29727. name: "Back",
  29728. image: {
  29729. source: "./media/characters/remmyzilla/back.svg",
  29730. extra: 2687 / 2555,
  29731. bottom: 48 / 2735
  29732. }
  29733. },
  29734. paw: {
  29735. height: math.unit(1.73, "feet"),
  29736. name: "Paw",
  29737. image: {
  29738. source: "./media/characters/remmyzilla/paw.svg"
  29739. },
  29740. extraAttributes: {
  29741. "toeSize": {
  29742. name: "Toe Size",
  29743. power: 2,
  29744. type: "area",
  29745. base: math.unit(0.0035, "m^2")
  29746. },
  29747. "padSize": {
  29748. name: "Pad Size",
  29749. power: 2,
  29750. type: "area",
  29751. base: math.unit(0.015, "m^2")
  29752. },
  29753. "pawsize": {
  29754. name: "Paw Size",
  29755. power: 2,
  29756. type: "area",
  29757. base: math.unit(0.072, "m^2")
  29758. },
  29759. }
  29760. },
  29761. maw: {
  29762. height: math.unit(1.73, "feet"),
  29763. name: "Maw",
  29764. image: {
  29765. source: "./media/characters/remmyzilla/maw.svg"
  29766. }
  29767. },
  29768. },
  29769. [
  29770. {
  29771. name: "Normal",
  29772. height: math.unit(6 + 4 / 12, "feet")
  29773. },
  29774. {
  29775. name: "Minimacro",
  29776. height: math.unit(12 + 8 / 12, "feet")
  29777. },
  29778. {
  29779. name: "Normal",
  29780. height: math.unit(640, "feet"),
  29781. default: true
  29782. },
  29783. {
  29784. name: "Megamacro",
  29785. height: math.unit(6400, "feet")
  29786. },
  29787. {
  29788. name: "Gigamacro",
  29789. height: math.unit(64000, "miles")
  29790. },
  29791. ]
  29792. ))
  29793. characterMakers.push(() => makeCharacter(
  29794. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29795. {
  29796. front: {
  29797. height: math.unit(2.5, "meters"),
  29798. weight: math.unit(300, "lb"),
  29799. name: "Front",
  29800. image: {
  29801. source: "./media/characters/lawrence/front.svg",
  29802. extra: 357 / 335,
  29803. bottom: 30 / 387
  29804. }
  29805. },
  29806. back: {
  29807. height: math.unit(2.5, "meters"),
  29808. weight: math.unit(300, "lb"),
  29809. name: "Back",
  29810. image: {
  29811. source: "./media/characters/lawrence/back.svg",
  29812. extra: 357 / 338,
  29813. bottom: 16 / 373
  29814. }
  29815. },
  29816. head: {
  29817. height: math.unit(0.9, "meter"),
  29818. name: "Head",
  29819. image: {
  29820. source: "./media/characters/lawrence/head.svg"
  29821. }
  29822. },
  29823. maw: {
  29824. height: math.unit(0.7, "meter"),
  29825. name: "Maw",
  29826. image: {
  29827. source: "./media/characters/lawrence/maw.svg"
  29828. }
  29829. },
  29830. footBottom: {
  29831. height: math.unit(0.5, "meter"),
  29832. name: "Foot (Bottom)",
  29833. image: {
  29834. source: "./media/characters/lawrence/foot-bottom.svg"
  29835. }
  29836. },
  29837. footTop: {
  29838. height: math.unit(0.5, "meter"),
  29839. name: "Foot (Top)",
  29840. image: {
  29841. source: "./media/characters/lawrence/foot-top.svg"
  29842. }
  29843. },
  29844. },
  29845. [
  29846. {
  29847. name: "Normal",
  29848. height: math.unit(2.5, "meters"),
  29849. default: true
  29850. },
  29851. {
  29852. name: "Macro",
  29853. height: math.unit(95, "meters")
  29854. },
  29855. {
  29856. name: "Megamacro",
  29857. height: math.unit(150, "km")
  29858. },
  29859. ]
  29860. ))
  29861. characterMakers.push(() => makeCharacter(
  29862. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29863. {
  29864. front: {
  29865. height: math.unit(4.2, "meters"),
  29866. name: "Front",
  29867. image: {
  29868. source: "./media/characters/sydney/front.svg",
  29869. extra: 1323 / 1277,
  29870. bottom: 111 / 1434
  29871. }
  29872. },
  29873. },
  29874. [
  29875. {
  29876. name: "Normal",
  29877. height: math.unit(4.2, "meters"),
  29878. default: true
  29879. },
  29880. ]
  29881. ))
  29882. characterMakers.push(() => makeCharacter(
  29883. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29884. {
  29885. back: {
  29886. height: math.unit(201, "feet"),
  29887. name: "Back",
  29888. image: {
  29889. source: "./media/characters/jessica/back.svg",
  29890. extra: 273 / 259,
  29891. bottom: 7 / 280
  29892. }
  29893. },
  29894. },
  29895. [
  29896. {
  29897. name: "Normal",
  29898. height: math.unit(201, "feet"),
  29899. default: true
  29900. },
  29901. {
  29902. name: "Megamacro",
  29903. height: math.unit(8, "miles")
  29904. },
  29905. ]
  29906. ))
  29907. characterMakers.push(() => makeCharacter(
  29908. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29909. {
  29910. side: {
  29911. height: math.unit(5.6, "m"),
  29912. weight: math.unit(8000, "kg"),
  29913. name: "Side",
  29914. image: {
  29915. source: "./media/characters/victoria/side.svg",
  29916. extra: 1542/1229,
  29917. bottom: 124/1666
  29918. }
  29919. },
  29920. maw: {
  29921. height: math.unit(7.14, "feet"),
  29922. name: "Maw",
  29923. image: {
  29924. source: "./media/characters/victoria/maw.svg"
  29925. }
  29926. },
  29927. },
  29928. [
  29929. {
  29930. name: "Normal",
  29931. height: math.unit(5.6, "m"),
  29932. default: true
  29933. },
  29934. ]
  29935. ))
  29936. characterMakers.push(() => makeCharacter(
  29937. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29938. {
  29939. front: {
  29940. height: math.unit(5 + 6 / 12, "feet"),
  29941. name: "Front",
  29942. image: {
  29943. source: "./media/characters/cat/front.svg",
  29944. extra: 1449/1295,
  29945. bottom: 34/1483
  29946. },
  29947. form: "cat",
  29948. default: true
  29949. },
  29950. back: {
  29951. height: math.unit(5 + 6 / 12, "feet"),
  29952. name: "Back",
  29953. image: {
  29954. source: "./media/characters/cat/back.svg",
  29955. extra: 1466/1301,
  29956. bottom: 19/1485
  29957. },
  29958. form: "cat"
  29959. },
  29960. taur: {
  29961. height: math.unit(7, "feet"),
  29962. name: "Taur",
  29963. image: {
  29964. source: "./media/characters/cat/taur.svg",
  29965. extra: 1389/1233,
  29966. bottom: 83/1472
  29967. },
  29968. form: "taur",
  29969. default: true
  29970. },
  29971. lucarioFront: {
  29972. height: math.unit(4, "feet"),
  29973. name: "Lucario (Front)",
  29974. image: {
  29975. source: "./media/characters/cat/lucario-front.svg",
  29976. extra: 1149/1019,
  29977. bottom: 84/1233
  29978. },
  29979. form: "lucario",
  29980. default: true
  29981. },
  29982. lucarioBack: {
  29983. height: math.unit(4, "feet"),
  29984. name: "Lucario (Back)",
  29985. image: {
  29986. source: "./media/characters/cat/lucario-back.svg",
  29987. extra: 1190/1059,
  29988. bottom: 33/1223
  29989. },
  29990. form: "lucario"
  29991. },
  29992. megaLucario: {
  29993. height: math.unit(4, "feet"),
  29994. name: "Mega Lucario",
  29995. image: {
  29996. source: "./media/characters/cat/mega-lucario.svg",
  29997. extra: 1515 / 1319,
  29998. bottom: 63 / 1578
  29999. },
  30000. form: "lucario"
  30001. },
  30002. nickit: {
  30003. height: math.unit(2, "feet"),
  30004. name: "Nickit",
  30005. image: {
  30006. source: "./media/characters/cat/nickit.svg",
  30007. extra: 1980 / 1585,
  30008. bottom: 102 / 2082
  30009. },
  30010. form: "nickit",
  30011. default: true
  30012. },
  30013. lopunnyFront: {
  30014. height: math.unit(5, "feet"),
  30015. name: "Lopunny (Front)",
  30016. image: {
  30017. source: "./media/characters/cat/lopunny-front.svg",
  30018. extra: 1782 / 1469,
  30019. bottom: 38 / 1820
  30020. },
  30021. form: "lopunny",
  30022. default: true
  30023. },
  30024. lopunnyBack: {
  30025. height: math.unit(5, "feet"),
  30026. name: "Lopunny (Back)",
  30027. image: {
  30028. source: "./media/characters/cat/lopunny-back.svg",
  30029. extra: 1660 / 1490,
  30030. bottom: 25 / 1685
  30031. },
  30032. form: "lopunny"
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Really small",
  30038. height: math.unit(1, "nm")
  30039. },
  30040. {
  30041. name: "Micro",
  30042. height: math.unit(5, "inches")
  30043. },
  30044. {
  30045. name: "Normal",
  30046. height: math.unit(5 + 6 / 12, "feet"),
  30047. default: true
  30048. },
  30049. {
  30050. name: "Macro",
  30051. height: math.unit(50, "feet")
  30052. },
  30053. {
  30054. name: "Macro+",
  30055. height: math.unit(150, "feet")
  30056. },
  30057. {
  30058. name: "Megamacro",
  30059. height: math.unit(100, "miles")
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30065. {
  30066. front: {
  30067. height: math.unit(63.4, "meters"),
  30068. weight: math.unit(3.28349e+6, "kilograms"),
  30069. name: "Front",
  30070. image: {
  30071. source: "./media/characters/kirina-violet/front.svg",
  30072. extra: 2812 / 2725,
  30073. bottom: 0 / 2812
  30074. }
  30075. },
  30076. back: {
  30077. height: math.unit(63.4, "meters"),
  30078. weight: math.unit(3.28349e+6, "kilograms"),
  30079. name: "Back",
  30080. image: {
  30081. source: "./media/characters/kirina-violet/back.svg",
  30082. extra: 2812 / 2725,
  30083. bottom: 0 / 2812
  30084. }
  30085. },
  30086. mouth: {
  30087. height: math.unit(4.35, "meters"),
  30088. name: "Mouth",
  30089. image: {
  30090. source: "./media/characters/kirina-violet/mouth.svg"
  30091. }
  30092. },
  30093. paw: {
  30094. height: math.unit(5.6, "meters"),
  30095. name: "Paw",
  30096. image: {
  30097. source: "./media/characters/kirina-violet/paw.svg"
  30098. }
  30099. },
  30100. tail: {
  30101. height: math.unit(18, "meters"),
  30102. name: "Tail",
  30103. image: {
  30104. source: "./media/characters/kirina-violet/tail.svg"
  30105. }
  30106. },
  30107. },
  30108. [
  30109. {
  30110. name: "Macro",
  30111. height: math.unit(63.4, "meters"),
  30112. default: true
  30113. },
  30114. ]
  30115. ))
  30116. characterMakers.push(() => makeCharacter(
  30117. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30118. {
  30119. front: {
  30120. height: math.unit(75, "feet"),
  30121. name: "Front",
  30122. image: {
  30123. source: "./media/characters/cat-gigachu/front.svg",
  30124. extra: 1239/1027,
  30125. bottom: 32/1271
  30126. }
  30127. },
  30128. back: {
  30129. height: math.unit(75, "feet"),
  30130. name: "Back",
  30131. image: {
  30132. source: "./media/characters/cat-gigachu/back.svg",
  30133. extra: 1229/1030,
  30134. bottom: 9/1238
  30135. }
  30136. },
  30137. },
  30138. [
  30139. {
  30140. name: "Dynamax",
  30141. height: math.unit(75, "feet"),
  30142. default: true
  30143. },
  30144. ]
  30145. ))
  30146. characterMakers.push(() => makeCharacter(
  30147. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30148. {
  30149. front: {
  30150. height: math.unit(6, "feet"),
  30151. weight: math.unit(150, "lb"),
  30152. name: "Front",
  30153. image: {
  30154. source: "./media/characters/sfaiyan/front.svg",
  30155. extra: 999 / 978,
  30156. bottom: 5 / 1004
  30157. }
  30158. },
  30159. },
  30160. [
  30161. {
  30162. name: "Normal",
  30163. height: math.unit(1.82, "meters")
  30164. },
  30165. {
  30166. name: "Giant",
  30167. height: math.unit(2.27, "km"),
  30168. default: true
  30169. },
  30170. ]
  30171. ))
  30172. characterMakers.push(() => makeCharacter(
  30173. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30174. {
  30175. front: {
  30176. height: math.unit(179, "cm"),
  30177. weight: math.unit(100, "kg"),
  30178. name: "Front",
  30179. image: {
  30180. source: "./media/characters/raunehkeli/front.svg",
  30181. extra: 1934 / 1926,
  30182. bottom: 0 / 1934
  30183. }
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Normal",
  30189. height: math.unit(179, "cm")
  30190. },
  30191. {
  30192. name: "Maximum",
  30193. height: math.unit(575, "meters"),
  30194. default: true
  30195. },
  30196. ]
  30197. ))
  30198. characterMakers.push(() => makeCharacter(
  30199. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30200. {
  30201. front: {
  30202. height: math.unit(6, "feet"),
  30203. weight: math.unit(150, "lb"),
  30204. name: "Front",
  30205. image: {
  30206. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30207. extra: 2625 / 2518,
  30208. bottom: 60 / 2685
  30209. }
  30210. },
  30211. },
  30212. [
  30213. {
  30214. name: "Normal",
  30215. height: math.unit(6 + 2 / 12, "feet")
  30216. },
  30217. {
  30218. name: "Macro",
  30219. height: math.unit(1180, "feet"),
  30220. default: true
  30221. },
  30222. ]
  30223. ))
  30224. characterMakers.push(() => makeCharacter(
  30225. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30226. {
  30227. front: {
  30228. height: math.unit(5 + 6 / 12, "feet"),
  30229. weight: math.unit(108, "lb"),
  30230. name: "Front",
  30231. image: {
  30232. source: "./media/characters/lilith-zott/front.svg",
  30233. extra: 2510 / 2238,
  30234. bottom: 100 / 2610
  30235. }
  30236. },
  30237. frontDressed: {
  30238. height: math.unit(5 + 6 / 12, "feet"),
  30239. weight: math.unit(108, "lb"),
  30240. name: "Front (Dressed)",
  30241. image: {
  30242. source: "./media/characters/lilith-zott/front-dressed.svg",
  30243. extra: 2510 / 2238,
  30244. bottom: 100 / 2610
  30245. }
  30246. },
  30247. },
  30248. [
  30249. {
  30250. name: "Normal",
  30251. height: math.unit(5 + 6 / 12, "feet")
  30252. },
  30253. {
  30254. name: "Macro",
  30255. height: math.unit(1030, "feet"),
  30256. default: true
  30257. },
  30258. ]
  30259. ))
  30260. characterMakers.push(() => makeCharacter(
  30261. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30262. {
  30263. front: {
  30264. height: math.unit(6, "feet"),
  30265. weight: math.unit(150, "lb"),
  30266. name: "Front",
  30267. image: {
  30268. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30269. extra: 2567 / 2435,
  30270. bottom: 39 / 2606
  30271. }
  30272. },
  30273. frontSuper: {
  30274. height: math.unit(6, "feet"),
  30275. name: "Front (Super)",
  30276. image: {
  30277. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30278. extra: 2567 / 2435,
  30279. bottom: 39 / 2606
  30280. }
  30281. },
  30282. },
  30283. [
  30284. {
  30285. name: "Normal",
  30286. height: math.unit(5 + 10 / 12, "feet")
  30287. },
  30288. {
  30289. name: "Macro",
  30290. height: math.unit(1100, "feet"),
  30291. default: true
  30292. },
  30293. ]
  30294. ))
  30295. characterMakers.push(() => makeCharacter(
  30296. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30297. {
  30298. front: {
  30299. height: math.unit(100, "miles"),
  30300. name: "Front",
  30301. image: {
  30302. source: "./media/characters/sona/front.svg",
  30303. extra: 2433 / 2201,
  30304. bottom: 53 / 2486
  30305. }
  30306. },
  30307. foot: {
  30308. height: math.unit(16.1, "miles"),
  30309. name: "Foot",
  30310. image: {
  30311. source: "./media/characters/sona/foot.svg"
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Macro",
  30318. height: math.unit(100, "miles"),
  30319. default: true
  30320. },
  30321. ]
  30322. ))
  30323. characterMakers.push(() => makeCharacter(
  30324. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30325. {
  30326. front: {
  30327. height: math.unit(6, "feet"),
  30328. weight: math.unit(150, "lb"),
  30329. name: "Front",
  30330. image: {
  30331. source: "./media/characters/bailey/front.svg",
  30332. extra: 1778 / 1724,
  30333. bottom: 30 / 1808
  30334. }
  30335. },
  30336. },
  30337. [
  30338. {
  30339. name: "Micro",
  30340. height: math.unit(4, "inches")
  30341. },
  30342. {
  30343. name: "Normal",
  30344. height: math.unit(5 + 5 / 12, "feet"),
  30345. default: true
  30346. },
  30347. {
  30348. name: "Macro",
  30349. height: math.unit(250, "feet")
  30350. },
  30351. {
  30352. name: "Megamacro",
  30353. height: math.unit(100, "miles")
  30354. },
  30355. ]
  30356. ))
  30357. characterMakers.push(() => makeCharacter(
  30358. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30359. {
  30360. front: {
  30361. height: math.unit(5 + 2 / 12, "feet"),
  30362. weight: math.unit(120, "lb"),
  30363. name: "Front",
  30364. image: {
  30365. source: "./media/characters/snaps/front.svg",
  30366. extra: 2370 / 2177,
  30367. bottom: 48 / 2418
  30368. }
  30369. },
  30370. back: {
  30371. height: math.unit(5 + 2 / 12, "feet"),
  30372. weight: math.unit(120, "lb"),
  30373. name: "Back",
  30374. image: {
  30375. source: "./media/characters/snaps/back.svg",
  30376. extra: 2408 / 2258,
  30377. bottom: 15 / 2423
  30378. }
  30379. },
  30380. },
  30381. [
  30382. {
  30383. name: "Micro",
  30384. height: math.unit(9, "inches")
  30385. },
  30386. {
  30387. name: "Normal",
  30388. height: math.unit(5 + 2 / 12, "feet"),
  30389. default: true
  30390. },
  30391. {
  30392. name: "Mini Macro",
  30393. height: math.unit(10, "feet")
  30394. },
  30395. ]
  30396. ))
  30397. characterMakers.push(() => makeCharacter(
  30398. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30399. {
  30400. front: {
  30401. height: math.unit(1.8, "meters"),
  30402. weight: math.unit(85, "kg"),
  30403. name: "Front",
  30404. image: {
  30405. source: "./media/characters/azteck/front.svg",
  30406. extra: 2815 / 2625,
  30407. bottom: 89 / 2904
  30408. }
  30409. },
  30410. back: {
  30411. height: math.unit(1.8, "meters"),
  30412. weight: math.unit(85, "kg"),
  30413. name: "Back",
  30414. image: {
  30415. source: "./media/characters/azteck/back.svg",
  30416. extra: 2856 / 2648,
  30417. bottom: 85 / 2941
  30418. }
  30419. },
  30420. frontDressed: {
  30421. height: math.unit(1.8, "meters"),
  30422. weight: math.unit(85, "kg"),
  30423. name: "Front (Dressed)",
  30424. image: {
  30425. source: "./media/characters/azteck/front-dressed.svg",
  30426. extra: 2147 / 2003,
  30427. bottom: 68 / 2215
  30428. }
  30429. },
  30430. head: {
  30431. height: math.unit(0.47, "meters"),
  30432. weight: math.unit(85, "kg"),
  30433. name: "Head",
  30434. image: {
  30435. source: "./media/characters/azteck/head.svg"
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Bite sized",
  30442. height: math.unit(16, "cm")
  30443. },
  30444. {
  30445. name: "Normal",
  30446. height: math.unit(1.8, "meters"),
  30447. default: true
  30448. },
  30449. ]
  30450. ))
  30451. characterMakers.push(() => makeCharacter(
  30452. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30453. {
  30454. front: {
  30455. height: math.unit(6, "feet"),
  30456. weight: math.unit(150, "lb"),
  30457. name: "Front",
  30458. image: {
  30459. source: "./media/characters/pidge/front.svg",
  30460. extra: 1936/1820,
  30461. bottom: 0/1936
  30462. }
  30463. },
  30464. back: {
  30465. height: math.unit(6, "feet"),
  30466. weight: math.unit(150, "lb"),
  30467. name: "Back",
  30468. image: {
  30469. source: "./media/characters/pidge/back.svg",
  30470. extra: 1938/1843,
  30471. bottom: 0/1938
  30472. }
  30473. },
  30474. casual: {
  30475. height: math.unit(6, "feet"),
  30476. weight: math.unit(150, "lb"),
  30477. name: "Casual",
  30478. image: {
  30479. source: "./media/characters/pidge/casual.svg",
  30480. extra: 1936/1820,
  30481. bottom: 0/1936
  30482. }
  30483. },
  30484. tech: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(150, "lb"),
  30487. name: "Tech",
  30488. image: {
  30489. source: "./media/characters/pidge/tech.svg",
  30490. extra: 1802/1682,
  30491. bottom: 0/1802
  30492. }
  30493. },
  30494. head: {
  30495. height: math.unit(1.61, "feet"),
  30496. name: "Head",
  30497. image: {
  30498. source: "./media/characters/pidge/head.svg"
  30499. }
  30500. },
  30501. collar: {
  30502. height: math.unit(0.82, "feet"),
  30503. name: "Collar",
  30504. image: {
  30505. source: "./media/characters/pidge/collar.svg"
  30506. }
  30507. },
  30508. },
  30509. [
  30510. {
  30511. name: "Macro",
  30512. height: math.unit(2, "mile"),
  30513. default: true
  30514. },
  30515. {
  30516. name: "PUPPY",
  30517. height: math.unit(20, "miles")
  30518. },
  30519. ]
  30520. ))
  30521. characterMakers.push(() => makeCharacter(
  30522. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30523. {
  30524. front: {
  30525. height: math.unit(6, "feet"),
  30526. weight: math.unit(150, "lb"),
  30527. name: "Front",
  30528. image: {
  30529. source: "./media/characters/en/front.svg",
  30530. extra: 1697 / 1563,
  30531. bottom: 103 / 1800
  30532. }
  30533. },
  30534. back: {
  30535. height: math.unit(6, "feet"),
  30536. weight: math.unit(150, "lb"),
  30537. name: "Back",
  30538. image: {
  30539. source: "./media/characters/en/back.svg",
  30540. extra: 1700 / 1570,
  30541. bottom: 51 / 1751
  30542. }
  30543. },
  30544. frontDressed: {
  30545. height: math.unit(6, "feet"),
  30546. weight: math.unit(150, "lb"),
  30547. name: "Front (Dressed)",
  30548. image: {
  30549. source: "./media/characters/en/front-dressed.svg",
  30550. extra: 1697 / 1563,
  30551. bottom: 103 / 1800
  30552. }
  30553. },
  30554. backDressed: {
  30555. height: math.unit(6, "feet"),
  30556. weight: math.unit(150, "lb"),
  30557. name: "Back (Dressed)",
  30558. image: {
  30559. source: "./media/characters/en/back-dressed.svg",
  30560. extra: 1700 / 1570,
  30561. bottom: 51 / 1751
  30562. }
  30563. },
  30564. },
  30565. [
  30566. {
  30567. name: "Macro",
  30568. height: math.unit(210, "feet"),
  30569. default: true
  30570. },
  30571. ]
  30572. ))
  30573. characterMakers.push(() => makeCharacter(
  30574. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30575. {
  30576. front: {
  30577. height: math.unit(6, "feet"),
  30578. weight: math.unit(150, "lb"),
  30579. name: "Front",
  30580. image: {
  30581. source: "./media/characters/haze-orris/front.svg",
  30582. extra: 3975 / 3525,
  30583. bottom: 137 / 4112
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Micro",
  30590. height: math.unit(150, "mm"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30597. {
  30598. front: {
  30599. height: math.unit(6, "feet"),
  30600. weight: math.unit(150, "lb"),
  30601. name: "Front",
  30602. image: {
  30603. source: "./media/characters/casselene-yaro/front.svg",
  30604. extra: 4721 / 4541,
  30605. bottom: 82 / 4803
  30606. }
  30607. },
  30608. back: {
  30609. height: math.unit(6, "feet"),
  30610. weight: math.unit(150, "lb"),
  30611. name: "Back",
  30612. image: {
  30613. source: "./media/characters/casselene-yaro/back.svg",
  30614. extra: 4569 / 4377,
  30615. bottom: 69 / 4638
  30616. }
  30617. },
  30618. dressed: {
  30619. height: math.unit(6, "feet"),
  30620. weight: math.unit(150, "lb"),
  30621. name: "Dressed",
  30622. image: {
  30623. source: "./media/characters/casselene-yaro/dressed.svg",
  30624. extra: 4721 / 4541,
  30625. bottom: 82 / 4803
  30626. }
  30627. },
  30628. maw: {
  30629. height: math.unit(1, "feet"),
  30630. name: "Maw",
  30631. image: {
  30632. source: "./media/characters/casselene-yaro/maw.svg"
  30633. }
  30634. },
  30635. },
  30636. [
  30637. {
  30638. name: "Macro",
  30639. height: math.unit(190, "feet"),
  30640. default: true
  30641. },
  30642. ]
  30643. ))
  30644. characterMakers.push(() => makeCharacter(
  30645. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30646. {
  30647. front: {
  30648. height: math.unit(10, "feet"),
  30649. weight: math.unit(15015, "lb"),
  30650. name: "Front",
  30651. image: {
  30652. source: "./media/characters/platine/front.svg",
  30653. extra: 1428/1353,
  30654. bottom: 31/1459
  30655. }
  30656. },
  30657. },
  30658. [
  30659. {
  30660. name: "Normal",
  30661. height: math.unit(10, "feet"),
  30662. default: true
  30663. },
  30664. {
  30665. name: "Macro",
  30666. height: math.unit(100, "feet")
  30667. },
  30668. {
  30669. name: "Megamacro",
  30670. height: math.unit(1000, "feet")
  30671. },
  30672. ]
  30673. ))
  30674. characterMakers.push(() => makeCharacter(
  30675. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30676. {
  30677. front: {
  30678. height: math.unit(15 + 5 / 12, "feet"),
  30679. weight: math.unit(4600, "lb"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/neapolitan-ananassa/front.svg",
  30683. extra: 2903 / 2736,
  30684. bottom: 0 / 2903
  30685. }
  30686. },
  30687. side: {
  30688. height: math.unit(15 + 5 / 12, "feet"),
  30689. weight: math.unit(4600, "lb"),
  30690. name: "Side",
  30691. image: {
  30692. source: "./media/characters/neapolitan-ananassa/side.svg",
  30693. extra: 2925 / 2719,
  30694. bottom: 0 / 2925
  30695. }
  30696. },
  30697. back: {
  30698. height: math.unit(15 + 5 / 12, "feet"),
  30699. weight: math.unit(4600, "lb"),
  30700. name: "Back",
  30701. image: {
  30702. source: "./media/characters/neapolitan-ananassa/back.svg",
  30703. extra: 2903 / 2736,
  30704. bottom: 0 / 2903
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(15 + 5 / 12, "feet"),
  30712. default: true
  30713. },
  30714. {
  30715. name: "Post-Millenium",
  30716. height: math.unit(35 + 5 / 12, "feet")
  30717. },
  30718. {
  30719. name: "Post-Era",
  30720. height: math.unit(450 + 5 / 12, "feet")
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30726. {
  30727. front: {
  30728. height: math.unit(300, "meters"),
  30729. weight: math.unit(125000, "tonnes"),
  30730. name: "Front",
  30731. image: {
  30732. source: "./media/characters/pazuzu/front.svg",
  30733. extra: 877 / 794,
  30734. bottom: 47 / 924
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Macro",
  30741. height: math.unit(300, "meters"),
  30742. default: true
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30748. {
  30749. side: {
  30750. height: math.unit(10 + 7 / 12, "feet"),
  30751. weight: math.unit(2.5, "tons"),
  30752. name: "Side",
  30753. image: {
  30754. source: "./media/characters/aasha/side.svg",
  30755. extra: 1345 / 1245,
  30756. bottom: 111 / 1456
  30757. }
  30758. },
  30759. back: {
  30760. height: math.unit(10 + 7 / 12, "feet"),
  30761. weight: math.unit(2.5, "tons"),
  30762. name: "Back",
  30763. image: {
  30764. source: "./media/characters/aasha/back.svg",
  30765. extra: 1133 / 1057,
  30766. bottom: 257 / 1390
  30767. }
  30768. },
  30769. },
  30770. [
  30771. {
  30772. name: "Normal",
  30773. height: math.unit(10 + 7 / 12, "feet"),
  30774. default: true
  30775. },
  30776. ]
  30777. ))
  30778. characterMakers.push(() => makeCharacter(
  30779. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30780. {
  30781. front: {
  30782. height: math.unit(6 + 3 / 12, "feet"),
  30783. name: "Front",
  30784. image: {
  30785. source: "./media/characters/nevan/front.svg",
  30786. extra: 704 / 704,
  30787. bottom: 28 / 732
  30788. }
  30789. },
  30790. back: {
  30791. height: math.unit(6 + 3 / 12, "feet"),
  30792. name: "Back",
  30793. image: {
  30794. source: "./media/characters/nevan/back.svg",
  30795. extra: 714 / 714,
  30796. bottom: 21 / 735
  30797. }
  30798. },
  30799. frontFlaccid: {
  30800. height: math.unit(6 + 3 / 12, "feet"),
  30801. name: "Front (Flaccid)",
  30802. image: {
  30803. source: "./media/characters/nevan/front-flaccid.svg",
  30804. extra: 704 / 704,
  30805. bottom: 28 / 732
  30806. }
  30807. },
  30808. frontErect: {
  30809. height: math.unit(6 + 3 / 12, "feet"),
  30810. name: "Front (Erect)",
  30811. image: {
  30812. source: "./media/characters/nevan/front-erect.svg",
  30813. extra: 704 / 704,
  30814. bottom: 28 / 732
  30815. }
  30816. },
  30817. backFlaccid: {
  30818. height: math.unit(6 + 3 / 12, "feet"),
  30819. name: "Back (Flaccid)",
  30820. image: {
  30821. source: "./media/characters/nevan/back-flaccid.svg",
  30822. extra: 714 / 714,
  30823. bottom: 21 / 735
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Normal",
  30830. height: math.unit(6 + 3 / 12, "feet"),
  30831. default: true
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30837. {
  30838. front: {
  30839. height: math.unit(4, "feet"),
  30840. name: "Front",
  30841. image: {
  30842. source: "./media/characters/arhan/front.svg",
  30843. extra: 3368 / 3133,
  30844. bottom: 0 / 3368
  30845. }
  30846. },
  30847. side: {
  30848. height: math.unit(4, "feet"),
  30849. name: "Side",
  30850. image: {
  30851. source: "./media/characters/arhan/side.svg",
  30852. extra: 3347 / 3105,
  30853. bottom: 0 / 3347
  30854. }
  30855. },
  30856. tongue: {
  30857. height: math.unit(1.42, "feet"),
  30858. name: "Tongue",
  30859. image: {
  30860. source: "./media/characters/arhan/tongue.svg"
  30861. }
  30862. },
  30863. head: {
  30864. height: math.unit(0.85, "feet"),
  30865. name: "Head",
  30866. image: {
  30867. source: "./media/characters/arhan/head.svg"
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(4, "feet"),
  30875. default: true
  30876. },
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30881. {
  30882. front: {
  30883. height: math.unit(5 + 7.5 / 12, "feet"),
  30884. weight: math.unit(120, "lb"),
  30885. name: "Front",
  30886. image: {
  30887. source: "./media/characters/digi-duncan/front.svg",
  30888. extra: 330 / 326,
  30889. bottom: 16 / 346
  30890. }
  30891. },
  30892. side: {
  30893. height: math.unit(5 + 7.5 / 12, "feet"),
  30894. weight: math.unit(120, "lb"),
  30895. name: "Side",
  30896. image: {
  30897. source: "./media/characters/digi-duncan/side.svg",
  30898. extra: 341 / 337,
  30899. bottom: 1 / 342
  30900. }
  30901. },
  30902. back: {
  30903. height: math.unit(5 + 7.5 / 12, "feet"),
  30904. weight: math.unit(120, "lb"),
  30905. name: "Back",
  30906. image: {
  30907. source: "./media/characters/digi-duncan/back.svg",
  30908. extra: 330 / 326,
  30909. bottom: 12 / 342
  30910. }
  30911. },
  30912. },
  30913. [
  30914. {
  30915. name: "Speck",
  30916. height: math.unit(0.25, "mm")
  30917. },
  30918. {
  30919. name: "Micro",
  30920. height: math.unit(5, "mm")
  30921. },
  30922. {
  30923. name: "Tiny",
  30924. height: math.unit(0.5, "inches"),
  30925. default: true
  30926. },
  30927. {
  30928. name: "Human",
  30929. height: math.unit(5 + 7.5 / 12, "feet")
  30930. },
  30931. {
  30932. name: "Minigiant",
  30933. height: math.unit(8 + 5.25, "feet")
  30934. },
  30935. {
  30936. name: "Giant",
  30937. height: math.unit(2000, "feet")
  30938. },
  30939. {
  30940. name: "Mega",
  30941. height: math.unit(371.1, "miles")
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30947. {
  30948. front: {
  30949. height: math.unit(2, "meters"),
  30950. weight: math.unit(350, "kg"),
  30951. name: "Front",
  30952. image: {
  30953. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30954. extra: 898 / 838,
  30955. bottom: 9 / 907
  30956. }
  30957. },
  30958. },
  30959. [
  30960. {
  30961. name: "Micro",
  30962. height: math.unit(8, "meters")
  30963. },
  30964. {
  30965. name: "Normal",
  30966. height: math.unit(50, "meters"),
  30967. default: true
  30968. },
  30969. {
  30970. name: "Macro",
  30971. height: math.unit(500, "meters")
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(6 + 6 / 12, "feet"),
  30980. name: "Front",
  30981. image: {
  30982. source: "./media/characters/khardesh/front.svg",
  30983. extra: 1788/1596,
  30984. bottom: 66/1854
  30985. }
  30986. },
  30987. back: {
  30988. height: math.unit(6 + 6 / 12, "feet"),
  30989. name: "Back",
  30990. image: {
  30991. source: "./media/characters/khardesh/back.svg",
  30992. extra: 1781/1584,
  30993. bottom: 68/1849
  30994. }
  30995. },
  30996. },
  30997. [
  30998. {
  30999. name: "Normal",
  31000. height: math.unit(6 + 6 / 12, "feet"),
  31001. default: true
  31002. },
  31003. {
  31004. name: "Normal+",
  31005. height: math.unit(4, "meters")
  31006. },
  31007. {
  31008. name: "Macro",
  31009. height: math.unit(50, "meters")
  31010. },
  31011. {
  31012. name: "Macro+",
  31013. height: math.unit(100, "meters")
  31014. },
  31015. {
  31016. name: "Megamacro",
  31017. height: math.unit(20, "km")
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31023. {
  31024. front: {
  31025. height: math.unit(6, "feet"),
  31026. weight: math.unit(150, "lb"),
  31027. name: "Front",
  31028. image: {
  31029. source: "./media/characters/kosho/front.svg",
  31030. extra: 1847 / 1847,
  31031. bottom: 86 / 1933
  31032. }
  31033. },
  31034. },
  31035. [
  31036. {
  31037. name: "Second-stage micro",
  31038. height: math.unit(0.5, "inches")
  31039. },
  31040. {
  31041. name: "First-stage micro",
  31042. height: math.unit(6, "inches")
  31043. },
  31044. {
  31045. name: "Normal",
  31046. height: math.unit(6, "feet"),
  31047. default: true
  31048. },
  31049. {
  31050. name: "First-stage macro",
  31051. height: math.unit(72, "feet")
  31052. },
  31053. {
  31054. name: "Second-stage macro",
  31055. height: math.unit(864, "feet")
  31056. },
  31057. ]
  31058. ))
  31059. characterMakers.push(() => makeCharacter(
  31060. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31061. {
  31062. normal: {
  31063. height: math.unit(4 + 6 / 12, "feet"),
  31064. name: "Normal",
  31065. image: {
  31066. source: "./media/characters/hydra/normal.svg",
  31067. extra: 2833 / 2634,
  31068. bottom: 68 / 2901
  31069. }
  31070. },
  31071. smol: {
  31072. height: math.unit(0.705, "inches"),
  31073. name: "Smol",
  31074. image: {
  31075. source: "./media/characters/hydra/smol.svg",
  31076. extra: 2715 / 2540,
  31077. bottom: 0 / 2715
  31078. }
  31079. },
  31080. },
  31081. [
  31082. {
  31083. name: "Normal",
  31084. height: math.unit(4 + 6 / 12, "feet"),
  31085. default: true
  31086. }
  31087. ]
  31088. ))
  31089. characterMakers.push(() => makeCharacter(
  31090. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31091. {
  31092. front: {
  31093. height: math.unit(0.6, "cm"),
  31094. name: "Front",
  31095. image: {
  31096. source: "./media/characters/daz/front.svg",
  31097. extra: 1682 / 1164,
  31098. bottom: 42 / 1724
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Normal",
  31105. height: math.unit(0.6, "cm"),
  31106. default: true
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31112. {
  31113. front: {
  31114. height: math.unit(6, "feet"),
  31115. weight: math.unit(235, "lb"),
  31116. name: "Front",
  31117. image: {
  31118. source: "./media/characters/theo-pangolin/front.svg",
  31119. extra: 1996 / 1969,
  31120. bottom: 115 / 2111
  31121. }
  31122. },
  31123. back: {
  31124. height: math.unit(6, "feet"),
  31125. weight: math.unit(235, "lb"),
  31126. name: "Back",
  31127. image: {
  31128. source: "./media/characters/theo-pangolin/back.svg",
  31129. extra: 1979 / 1979,
  31130. bottom: 40 / 2019
  31131. }
  31132. },
  31133. feral: {
  31134. height: math.unit(2, "feet"),
  31135. weight: math.unit(30, "lb"),
  31136. name: "Feral",
  31137. image: {
  31138. source: "./media/characters/theo-pangolin/feral.svg",
  31139. extra: 803 / 791,
  31140. bottom: 181 / 984
  31141. }
  31142. },
  31143. footFive: {
  31144. height: math.unit(1.43, "feet"),
  31145. name: "Foot (Five Toes)",
  31146. image: {
  31147. source: "./media/characters/theo-pangolin/foot-five.svg"
  31148. }
  31149. },
  31150. footFour: {
  31151. height: math.unit(1.43, "feet"),
  31152. name: "Foot (Four Toes)",
  31153. image: {
  31154. source: "./media/characters/theo-pangolin/foot-four.svg"
  31155. }
  31156. },
  31157. handFour: {
  31158. height: math.unit(0.81, "feet"),
  31159. name: "Hand (Four Fingers)",
  31160. image: {
  31161. source: "./media/characters/theo-pangolin/hand-four.svg"
  31162. }
  31163. },
  31164. handThree: {
  31165. height: math.unit(0.81, "feet"),
  31166. name: "Hand (Three Fingers)",
  31167. image: {
  31168. source: "./media/characters/theo-pangolin/hand-three.svg"
  31169. }
  31170. },
  31171. headFront: {
  31172. height: math.unit(1.37, "feet"),
  31173. name: "Head (Front)",
  31174. image: {
  31175. source: "./media/characters/theo-pangolin/head-front.svg"
  31176. }
  31177. },
  31178. headSide: {
  31179. height: math.unit(1.43, "feet"),
  31180. name: "Head (Side)",
  31181. image: {
  31182. source: "./media/characters/theo-pangolin/head-side.svg"
  31183. }
  31184. },
  31185. tongue: {
  31186. height: math.unit(2.29, "feet"),
  31187. name: "Tongue",
  31188. image: {
  31189. source: "./media/characters/theo-pangolin/tongue.svg"
  31190. }
  31191. },
  31192. },
  31193. [
  31194. {
  31195. name: "Normal",
  31196. height: math.unit(6, "feet")
  31197. },
  31198. {
  31199. name: "Macro",
  31200. height: math.unit(400, "feet"),
  31201. default: true
  31202. },
  31203. ]
  31204. ))
  31205. characterMakers.push(() => makeCharacter(
  31206. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31207. {
  31208. front: {
  31209. height: math.unit(6, "inches"),
  31210. weight: math.unit(0.036, "kg"),
  31211. name: "Front",
  31212. image: {
  31213. source: "./media/characters/renée/front.svg",
  31214. extra: 900 / 886,
  31215. bottom: 8 / 908
  31216. }
  31217. },
  31218. },
  31219. [
  31220. {
  31221. name: "Nano",
  31222. height: math.unit(1, "nm")
  31223. },
  31224. {
  31225. name: "Micro",
  31226. height: math.unit(1, "mm")
  31227. },
  31228. {
  31229. name: "Normal",
  31230. height: math.unit(6, "inches")
  31231. },
  31232. {
  31233. name: "Macro",
  31234. height: math.unit(2000, "feet"),
  31235. default: true
  31236. },
  31237. {
  31238. name: "Megamacro",
  31239. height: math.unit(2, "km")
  31240. },
  31241. {
  31242. name: "Gigamacro",
  31243. height: math.unit(2000, "km")
  31244. },
  31245. {
  31246. name: "Teramacro",
  31247. height: math.unit(250000, "km")
  31248. },
  31249. ]
  31250. ))
  31251. characterMakers.push(() => makeCharacter(
  31252. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31253. {
  31254. front: {
  31255. height: math.unit(4, "meters"),
  31256. weight: math.unit(150, "kg"),
  31257. name: "Front",
  31258. image: {
  31259. source: "./media/characters/caledvwlch/front.svg",
  31260. extra: 1760 / 1551,
  31261. bottom: 28 / 1788
  31262. }
  31263. },
  31264. side: {
  31265. height: math.unit(4, "meters"),
  31266. weight: math.unit(150, "kg"),
  31267. name: "Side",
  31268. image: {
  31269. source: "./media/characters/caledvwlch/side.svg",
  31270. extra: 1605 / 1536,
  31271. bottom: 31 / 1636
  31272. }
  31273. },
  31274. back: {
  31275. height: math.unit(4, "meters"),
  31276. weight: math.unit(150, "kg"),
  31277. name: "Back",
  31278. image: {
  31279. source: "./media/characters/caledvwlch/back.svg",
  31280. extra: 1635 / 1565,
  31281. bottom: 27 / 1662
  31282. }
  31283. },
  31284. },
  31285. [
  31286. {
  31287. name: "\"Incognito\"",
  31288. height: math.unit(4, "meters")
  31289. },
  31290. {
  31291. name: "Small rampage",
  31292. height: math.unit(600, "meters")
  31293. },
  31294. {
  31295. name: "Mega",
  31296. height: math.unit(30, "km")
  31297. },
  31298. {
  31299. name: "Home-size",
  31300. height: math.unit(50, "km"),
  31301. default: true
  31302. },
  31303. {
  31304. name: "Giga",
  31305. height: math.unit(300, "km")
  31306. },
  31307. {
  31308. name: "Lounging",
  31309. height: math.unit(11000, "km")
  31310. },
  31311. {
  31312. name: "Planet snacking",
  31313. height: math.unit(2000000, "km")
  31314. },
  31315. ]
  31316. ))
  31317. characterMakers.push(() => makeCharacter(
  31318. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31319. {
  31320. front: {
  31321. height: math.unit(6, "feet"),
  31322. weight: math.unit(215, "lb"),
  31323. name: "Front",
  31324. image: {
  31325. source: "./media/characters/sapphire-svell/front.svg",
  31326. extra: 495 / 455,
  31327. bottom: 20 / 515
  31328. }
  31329. },
  31330. back: {
  31331. height: math.unit(6, "feet"),
  31332. weight: math.unit(216, "lb"),
  31333. name: "Back",
  31334. image: {
  31335. source: "./media/characters/sapphire-svell/back.svg",
  31336. extra: 497 / 477,
  31337. bottom: 7 / 504
  31338. }
  31339. },
  31340. maw: {
  31341. height: math.unit(1.57, "feet"),
  31342. name: "Maw",
  31343. image: {
  31344. source: "./media/characters/sapphire-svell/maw.svg"
  31345. }
  31346. },
  31347. foot: {
  31348. height: math.unit(1.07, "feet"),
  31349. name: "Foot",
  31350. image: {
  31351. source: "./media/characters/sapphire-svell/foot.svg"
  31352. }
  31353. },
  31354. toering: {
  31355. height: math.unit(1.7, "inch"),
  31356. name: "Toering",
  31357. image: {
  31358. source: "./media/characters/sapphire-svell/toering.svg"
  31359. }
  31360. },
  31361. },
  31362. [
  31363. {
  31364. name: "Normal",
  31365. height: math.unit(300, "feet"),
  31366. default: true
  31367. },
  31368. {
  31369. name: "Augmented",
  31370. height: math.unit(1250, "feet")
  31371. },
  31372. {
  31373. name: "Unleashed",
  31374. height: math.unit(3000, "feet")
  31375. },
  31376. ]
  31377. ))
  31378. characterMakers.push(() => makeCharacter(
  31379. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31380. {
  31381. side: {
  31382. height: math.unit(2 + 3 / 12, "feet"),
  31383. weight: math.unit(110, "lb"),
  31384. name: "Side",
  31385. image: {
  31386. source: "./media/characters/glitch-flux/side.svg",
  31387. extra: 997 / 805,
  31388. bottom: 20 / 1017
  31389. }
  31390. },
  31391. },
  31392. [
  31393. {
  31394. name: "Normal",
  31395. height: math.unit(2 + 3 / 12, "feet"),
  31396. default: true
  31397. },
  31398. ]
  31399. ))
  31400. characterMakers.push(() => makeCharacter(
  31401. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31402. {
  31403. front: {
  31404. height: math.unit(4, "meters"),
  31405. name: "Front",
  31406. image: {
  31407. source: "./media/characters/mid/front.svg",
  31408. extra: 507 / 476,
  31409. bottom: 17 / 524
  31410. }
  31411. },
  31412. back: {
  31413. height: math.unit(4, "meters"),
  31414. name: "Back",
  31415. image: {
  31416. source: "./media/characters/mid/back.svg",
  31417. extra: 519 / 487,
  31418. bottom: 7 / 526
  31419. }
  31420. },
  31421. stuck: {
  31422. height: math.unit(2.2, "meters"),
  31423. name: "Stuck",
  31424. image: {
  31425. source: "./media/characters/mid/stuck.svg",
  31426. extra: 1951 / 1869,
  31427. bottom: 88 / 2039
  31428. }
  31429. }
  31430. },
  31431. [
  31432. {
  31433. name: "Normal",
  31434. height: math.unit(4, "meters"),
  31435. default: true
  31436. },
  31437. {
  31438. name: "Big",
  31439. height: math.unit(10, "meters")
  31440. },
  31441. {
  31442. name: "Macro",
  31443. height: math.unit(800, "meters")
  31444. },
  31445. {
  31446. name: "Megamacro",
  31447. height: math.unit(100, "km")
  31448. },
  31449. {
  31450. name: "Overgrown",
  31451. height: math.unit(1, "parsec")
  31452. },
  31453. ]
  31454. ))
  31455. characterMakers.push(() => makeCharacter(
  31456. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31457. {
  31458. front: {
  31459. height: math.unit(2.5, "meters"),
  31460. weight: math.unit(225, "kg"),
  31461. name: "Front",
  31462. image: {
  31463. source: "./media/characters/iris/front.svg",
  31464. extra: 3348 / 3251,
  31465. bottom: 205 / 3553
  31466. }
  31467. },
  31468. maw: {
  31469. height: math.unit(0.56, "meter"),
  31470. name: "Maw",
  31471. image: {
  31472. source: "./media/characters/iris/maw.svg"
  31473. }
  31474. },
  31475. },
  31476. [
  31477. {
  31478. name: "Mewter cat",
  31479. height: math.unit(1.2, "meters")
  31480. },
  31481. {
  31482. name: "Minimacro",
  31483. height: math.unit(2.5, "meters"),
  31484. default: true
  31485. },
  31486. {
  31487. name: "Macro",
  31488. height: math.unit(180, "meters")
  31489. },
  31490. {
  31491. name: "Megamacro",
  31492. height: math.unit(2746, "meters")
  31493. },
  31494. ]
  31495. ))
  31496. characterMakers.push(() => makeCharacter(
  31497. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31498. {
  31499. front: {
  31500. height: math.unit(6, "feet"),
  31501. weight: math.unit(135, "lb"),
  31502. name: "Front",
  31503. image: {
  31504. source: "./media/characters/axel/front.svg",
  31505. extra: 908 / 908,
  31506. bottom: 58 / 966
  31507. }
  31508. },
  31509. side: {
  31510. height: math.unit(6, "feet"),
  31511. weight: math.unit(135, "lb"),
  31512. name: "Side",
  31513. image: {
  31514. source: "./media/characters/axel/side.svg",
  31515. extra: 958 / 958,
  31516. bottom: 11 / 969
  31517. }
  31518. },
  31519. back: {
  31520. height: math.unit(6, "feet"),
  31521. weight: math.unit(135, "lb"),
  31522. name: "Back",
  31523. image: {
  31524. source: "./media/characters/axel/back.svg",
  31525. extra: 887 / 887,
  31526. bottom: 34 / 921
  31527. }
  31528. },
  31529. head: {
  31530. height: math.unit(1.07, "feet"),
  31531. name: "Head",
  31532. image: {
  31533. source: "./media/characters/axel/head.svg"
  31534. }
  31535. },
  31536. beak: {
  31537. height: math.unit(1.4, "feet"),
  31538. name: "Beak",
  31539. image: {
  31540. source: "./media/characters/axel/beak.svg"
  31541. }
  31542. },
  31543. beakSide: {
  31544. height: math.unit(1.4, "feet"),
  31545. name: "Beak Side",
  31546. image: {
  31547. source: "./media/characters/axel/beak-side.svg"
  31548. }
  31549. },
  31550. sheath: {
  31551. height: math.unit(0.5, "feet"),
  31552. name: "Sheath",
  31553. image: {
  31554. source: "./media/characters/axel/sheath.svg"
  31555. }
  31556. },
  31557. dick: {
  31558. height: math.unit(0.98, "feet"),
  31559. name: "Dick",
  31560. image: {
  31561. source: "./media/characters/axel/dick.svg"
  31562. }
  31563. },
  31564. },
  31565. [
  31566. {
  31567. name: "Macro",
  31568. height: math.unit(68, "meters"),
  31569. default: true
  31570. },
  31571. ]
  31572. ))
  31573. characterMakers.push(() => makeCharacter(
  31574. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31575. {
  31576. front: {
  31577. height: math.unit(3.5, "meters"),
  31578. weight: math.unit(1200, "kg"),
  31579. name: "Front",
  31580. image: {
  31581. source: "./media/characters/joanna/front.svg",
  31582. extra: 1596 / 1488,
  31583. bottom: 29 / 1625
  31584. }
  31585. },
  31586. back: {
  31587. height: math.unit(3.5, "meters"),
  31588. weight: math.unit(1200, "kg"),
  31589. name: "Back",
  31590. image: {
  31591. source: "./media/characters/joanna/back.svg",
  31592. extra: 1594 / 1495,
  31593. bottom: 26 / 1620
  31594. }
  31595. },
  31596. frontShorts: {
  31597. height: math.unit(3.5, "meters"),
  31598. weight: math.unit(1200, "kg"),
  31599. name: "Front (Shorts)",
  31600. image: {
  31601. source: "./media/characters/joanna/front-shorts.svg",
  31602. extra: 1596 / 1488,
  31603. bottom: 29 / 1625
  31604. }
  31605. },
  31606. frontBiker: {
  31607. height: math.unit(3.5, "meters"),
  31608. weight: math.unit(1200, "kg"),
  31609. name: "Front (Biker)",
  31610. image: {
  31611. source: "./media/characters/joanna/front-biker.svg",
  31612. extra: 1596 / 1488,
  31613. bottom: 29 / 1625
  31614. }
  31615. },
  31616. backBiker: {
  31617. height: math.unit(3.5, "meters"),
  31618. weight: math.unit(1200, "kg"),
  31619. name: "Back (Biker)",
  31620. image: {
  31621. source: "./media/characters/joanna/back-biker.svg",
  31622. extra: 1594 / 1495,
  31623. bottom: 88 / 1682
  31624. }
  31625. },
  31626. bikeLeft: {
  31627. height: math.unit(2.4, "meters"),
  31628. weight: math.unit(1600, "kg"),
  31629. name: "Bike (Left)",
  31630. image: {
  31631. source: "./media/characters/joanna/bike-left.svg",
  31632. extra: 720 / 720,
  31633. bottom: 8 / 728
  31634. }
  31635. },
  31636. bikeRight: {
  31637. height: math.unit(2.4, "meters"),
  31638. weight: math.unit(1600, "kg"),
  31639. name: "Bike (Right)",
  31640. image: {
  31641. source: "./media/characters/joanna/bike-right.svg",
  31642. extra: 720 / 720,
  31643. bottom: 8 / 728
  31644. }
  31645. },
  31646. },
  31647. [
  31648. {
  31649. name: "Incognito",
  31650. height: math.unit(3.5, "meters")
  31651. },
  31652. {
  31653. name: "Casual Big",
  31654. height: math.unit(200, "meters")
  31655. },
  31656. {
  31657. name: "Macro",
  31658. height: math.unit(600, "meters")
  31659. },
  31660. {
  31661. name: "Original",
  31662. height: math.unit(20, "km"),
  31663. default: true
  31664. },
  31665. {
  31666. name: "Giga",
  31667. height: math.unit(400, "km")
  31668. },
  31669. {
  31670. name: "Lounging",
  31671. height: math.unit(1500, "km")
  31672. },
  31673. {
  31674. name: "Planetary",
  31675. height: math.unit(200000, "km")
  31676. },
  31677. ]
  31678. ))
  31679. characterMakers.push(() => makeCharacter(
  31680. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31681. {
  31682. front: {
  31683. height: math.unit(6, "feet"),
  31684. weight: math.unit(150, "lb"),
  31685. name: "Front",
  31686. image: {
  31687. source: "./media/characters/hugo-sigil/front.svg",
  31688. extra: 522 / 500,
  31689. bottom: 2 / 524
  31690. }
  31691. },
  31692. back: {
  31693. height: math.unit(6, "feet"),
  31694. weight: math.unit(150, "lb"),
  31695. name: "Back",
  31696. image: {
  31697. source: "./media/characters/hugo-sigil/back.svg",
  31698. extra: 519 / 495,
  31699. bottom: 5 / 524
  31700. }
  31701. },
  31702. maw: {
  31703. height: math.unit(1.4, "feet"),
  31704. weight: math.unit(150, "lb"),
  31705. name: "Maw",
  31706. image: {
  31707. source: "./media/characters/hugo-sigil/maw.svg"
  31708. }
  31709. },
  31710. feet: {
  31711. height: math.unit(1.56, "feet"),
  31712. weight: math.unit(150, "lb"),
  31713. name: "Feet",
  31714. image: {
  31715. source: "./media/characters/hugo-sigil/feet.svg",
  31716. extra: 177 / 177,
  31717. bottom: 12 / 189
  31718. }
  31719. },
  31720. },
  31721. [
  31722. {
  31723. name: "Normal",
  31724. height: math.unit(6, "feet")
  31725. },
  31726. {
  31727. name: "Macro",
  31728. height: math.unit(200, "feet"),
  31729. default: true
  31730. },
  31731. ]
  31732. ))
  31733. characterMakers.push(() => makeCharacter(
  31734. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31735. {
  31736. front: {
  31737. height: math.unit(6, "feet"),
  31738. weight: math.unit(150, "lb"),
  31739. name: "Front",
  31740. image: {
  31741. source: "./media/characters/peri/front.svg",
  31742. extra: 2354 / 2233,
  31743. bottom: 49 / 2403
  31744. }
  31745. },
  31746. },
  31747. [
  31748. {
  31749. name: "Really Small",
  31750. height: math.unit(1, "nm")
  31751. },
  31752. {
  31753. name: "Micro",
  31754. height: math.unit(4, "inches")
  31755. },
  31756. {
  31757. name: "Normal",
  31758. height: math.unit(7, "inches"),
  31759. default: true
  31760. },
  31761. {
  31762. name: "Macro",
  31763. height: math.unit(400, "feet")
  31764. },
  31765. {
  31766. name: "Megamacro",
  31767. height: math.unit(100, "miles")
  31768. },
  31769. ]
  31770. ))
  31771. characterMakers.push(() => makeCharacter(
  31772. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31773. {
  31774. frontSlim: {
  31775. height: math.unit(7, "feet"),
  31776. name: "Front (Slim)",
  31777. image: {
  31778. source: "./media/characters/issilora/front-slim.svg",
  31779. extra: 529 / 449,
  31780. bottom: 53 / 582
  31781. }
  31782. },
  31783. sideSlim: {
  31784. height: math.unit(7, "feet"),
  31785. name: "Side (Slim)",
  31786. image: {
  31787. source: "./media/characters/issilora/side-slim.svg",
  31788. extra: 570 / 480,
  31789. bottom: 30 / 600
  31790. }
  31791. },
  31792. backSlim: {
  31793. height: math.unit(7, "feet"),
  31794. name: "Back (Slim)",
  31795. image: {
  31796. source: "./media/characters/issilora/back-slim.svg",
  31797. extra: 537 / 455,
  31798. bottom: 46 / 583
  31799. }
  31800. },
  31801. frontBuff: {
  31802. height: math.unit(7, "feet"),
  31803. name: "Front (Buff)",
  31804. image: {
  31805. source: "./media/characters/issilora/front-buff.svg",
  31806. extra: 2310 / 2035,
  31807. bottom: 335 / 2645
  31808. }
  31809. },
  31810. head: {
  31811. height: math.unit(1.94, "feet"),
  31812. name: "Head",
  31813. image: {
  31814. source: "./media/characters/issilora/head.svg"
  31815. }
  31816. },
  31817. },
  31818. [
  31819. {
  31820. name: "Minimum",
  31821. height: math.unit(7, "feet")
  31822. },
  31823. {
  31824. name: "Comfortable",
  31825. height: math.unit(17, "feet")
  31826. },
  31827. {
  31828. name: "Fun Size",
  31829. height: math.unit(47, "feet")
  31830. },
  31831. {
  31832. name: "Natural Macro",
  31833. height: math.unit(137, "feet"),
  31834. default: true
  31835. },
  31836. {
  31837. name: "Maximum Kaiju",
  31838. height: math.unit(397, "feet")
  31839. },
  31840. ]
  31841. ))
  31842. characterMakers.push(() => makeCharacter(
  31843. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31844. {
  31845. front: {
  31846. height: math.unit(50 + 9/12, "feet"),
  31847. weight: math.unit(32.8, "tons"),
  31848. name: "Front",
  31849. image: {
  31850. source: "./media/characters/irb'iiritaahn/front.svg",
  31851. extra: 1878/1826,
  31852. bottom: 326/2204
  31853. }
  31854. },
  31855. back: {
  31856. height: math.unit(50 + 9/12, "feet"),
  31857. weight: math.unit(32.8, "tons"),
  31858. name: "Back",
  31859. image: {
  31860. source: "./media/characters/irb'iiritaahn/back.svg",
  31861. extra: 2052/2018,
  31862. bottom: 152/2204
  31863. }
  31864. },
  31865. head: {
  31866. height: math.unit(12.86, "feet"),
  31867. name: "Head",
  31868. image: {
  31869. source: "./media/characters/irb'iiritaahn/head.svg"
  31870. }
  31871. },
  31872. maw: {
  31873. height: math.unit(9.66, "feet"),
  31874. name: "Maw",
  31875. image: {
  31876. source: "./media/characters/irb'iiritaahn/maw.svg"
  31877. }
  31878. },
  31879. frontDick: {
  31880. height: math.unit(8.78461, "feet"),
  31881. name: "Front Dick",
  31882. image: {
  31883. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31884. }
  31885. },
  31886. rearDick: {
  31887. height: math.unit(8.78461, "feet"),
  31888. name: "Rear Dick",
  31889. image: {
  31890. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31891. }
  31892. },
  31893. rearDickUnfolded: {
  31894. height: math.unit(8.78, "feet"),
  31895. name: "Rear Dick (Unfolded)",
  31896. image: {
  31897. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31898. }
  31899. },
  31900. wings: {
  31901. height: math.unit(43, "feet"),
  31902. name: "Wings",
  31903. image: {
  31904. source: "./media/characters/irb'iiritaahn/wings.svg"
  31905. }
  31906. },
  31907. },
  31908. [
  31909. {
  31910. name: "Macro",
  31911. height: math.unit(50 + 9/12, "feet"),
  31912. default: true
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31918. {
  31919. front: {
  31920. height: math.unit(205, "cm"),
  31921. weight: math.unit(102, "kg"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/irbisgreif/front.svg",
  31925. extra: 785/706,
  31926. bottom: 13/798
  31927. }
  31928. },
  31929. back: {
  31930. height: math.unit(205, "cm"),
  31931. weight: math.unit(102, "kg"),
  31932. name: "Back",
  31933. image: {
  31934. source: "./media/characters/irbisgreif/back.svg",
  31935. extra: 713/701,
  31936. bottom: 26/739
  31937. }
  31938. },
  31939. frontDressed: {
  31940. height: math.unit(216, "cm"),
  31941. weight: math.unit(102, "kg"),
  31942. name: "Front-dressed",
  31943. image: {
  31944. source: "./media/characters/irbisgreif/front-dressed.svg",
  31945. extra: 902/776,
  31946. bottom: 14/916
  31947. }
  31948. },
  31949. sideDressed: {
  31950. height: math.unit(195, "cm"),
  31951. weight: math.unit(102, "kg"),
  31952. name: "Side-dressed",
  31953. image: {
  31954. source: "./media/characters/irbisgreif/side-dressed.svg",
  31955. extra: 788/688,
  31956. bottom: 21/809
  31957. }
  31958. },
  31959. backDressed: {
  31960. height: math.unit(216, "cm"),
  31961. weight: math.unit(102, "kg"),
  31962. name: "Back-dressed",
  31963. image: {
  31964. source: "./media/characters/irbisgreif/back-dressed.svg",
  31965. extra: 901/783,
  31966. bottom: 10/911
  31967. }
  31968. },
  31969. dick: {
  31970. height: math.unit(0.49, "feet"),
  31971. name: "Dick",
  31972. image: {
  31973. source: "./media/characters/irbisgreif/dick.svg"
  31974. }
  31975. },
  31976. wingTop: {
  31977. height: math.unit(1.93 , "feet"),
  31978. name: "Wing-top",
  31979. image: {
  31980. source: "./media/characters/irbisgreif/wing-top.svg"
  31981. }
  31982. },
  31983. wingBottom: {
  31984. height: math.unit(1.93 , "feet"),
  31985. name: "Wing-bottom",
  31986. image: {
  31987. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31988. }
  31989. },
  31990. },
  31991. [
  31992. {
  31993. name: "Normal",
  31994. height: math.unit(216, "cm"),
  31995. default: true
  31996. },
  31997. ]
  31998. ))
  31999. characterMakers.push(() => makeCharacter(
  32000. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32001. {
  32002. front: {
  32003. height: math.unit(6, "feet"),
  32004. weight: math.unit(150, "lb"),
  32005. name: "Front",
  32006. image: {
  32007. source: "./media/characters/pride/front.svg",
  32008. extra: 1299/1230,
  32009. bottom: 18/1317
  32010. }
  32011. },
  32012. },
  32013. [
  32014. {
  32015. name: "Normal",
  32016. height: math.unit(7, "feet")
  32017. },
  32018. {
  32019. name: "Mini-macro",
  32020. height: math.unit(11, "feet")
  32021. },
  32022. {
  32023. name: "Macro",
  32024. height: math.unit(15, "meters"),
  32025. default: true
  32026. },
  32027. {
  32028. name: "Macro+",
  32029. height: math.unit(40, "meters")
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32035. {
  32036. front: {
  32037. height: math.unit(4 + 2 / 12, "feet"),
  32038. weight: math.unit(95, "lb"),
  32039. name: "Front",
  32040. image: {
  32041. source: "./media/characters/vaelophis-nyx/front.svg",
  32042. extra: 2532/2330,
  32043. bottom: 0/2532
  32044. }
  32045. },
  32046. back: {
  32047. height: math.unit(4 + 2 / 12, "feet"),
  32048. weight: math.unit(95, "lb"),
  32049. name: "Back",
  32050. image: {
  32051. source: "./media/characters/vaelophis-nyx/back.svg",
  32052. extra: 2484/2361,
  32053. bottom: 0/2484
  32054. }
  32055. },
  32056. feralSide: {
  32057. height: math.unit(2 + 1/12, "feet"),
  32058. weight: math.unit(20, "lb"),
  32059. name: "Feral (Side)",
  32060. image: {
  32061. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32062. extra: 1721/1581,
  32063. bottom: 70/1791
  32064. }
  32065. },
  32066. feralLazing: {
  32067. height: math.unit(1.08, "feet"),
  32068. weight: math.unit(20, "lb"),
  32069. name: "Feral (Lazing)",
  32070. image: {
  32071. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32072. extra: 822/822,
  32073. bottom: 248/1070
  32074. }
  32075. },
  32076. ear: {
  32077. height: math.unit(0.416, "feet"),
  32078. name: "Ear",
  32079. image: {
  32080. source: "./media/characters/vaelophis-nyx/ear.svg"
  32081. }
  32082. },
  32083. eye: {
  32084. height: math.unit(0.0748, "feet"),
  32085. name: "Eye",
  32086. image: {
  32087. source: "./media/characters/vaelophis-nyx/eye.svg"
  32088. }
  32089. },
  32090. mouth: {
  32091. height: math.unit(0.378, "feet"),
  32092. name: "Mouth",
  32093. image: {
  32094. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32095. }
  32096. },
  32097. spade: {
  32098. height: math.unit(0.55, "feet"),
  32099. name: "Spade",
  32100. image: {
  32101. source: "./media/characters/vaelophis-nyx/spade.svg"
  32102. }
  32103. },
  32104. },
  32105. [
  32106. {
  32107. name: "Normal",
  32108. height: math.unit(4 + 2/12, "feet"),
  32109. default: true
  32110. },
  32111. ]
  32112. ))
  32113. characterMakers.push(() => makeCharacter(
  32114. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32115. {
  32116. front: {
  32117. height: math.unit(7, "feet"),
  32118. weight: math.unit(231, "lb"),
  32119. name: "Front",
  32120. image: {
  32121. source: "./media/characters/flux/front.svg",
  32122. extra: 919/871,
  32123. bottom: 0/919
  32124. }
  32125. },
  32126. back: {
  32127. height: math.unit(7, "feet"),
  32128. weight: math.unit(231, "lb"),
  32129. name: "Back",
  32130. image: {
  32131. source: "./media/characters/flux/back.svg",
  32132. extra: 1040/992,
  32133. bottom: 0/1040
  32134. }
  32135. },
  32136. frontDressed: {
  32137. height: math.unit(7, "feet"),
  32138. weight: math.unit(231, "lb"),
  32139. name: "Front (Dressed)",
  32140. image: {
  32141. source: "./media/characters/flux/front-dressed.svg",
  32142. extra: 919/871,
  32143. bottom: 0/919
  32144. }
  32145. },
  32146. feralSide: {
  32147. height: math.unit(5, "feet"),
  32148. weight: math.unit(150, "lb"),
  32149. name: "Feral (Side)",
  32150. image: {
  32151. source: "./media/characters/flux/feral-side.svg",
  32152. extra: 598/528,
  32153. bottom: 28/626
  32154. }
  32155. },
  32156. head: {
  32157. height: math.unit(1.585, "feet"),
  32158. name: "Head",
  32159. image: {
  32160. source: "./media/characters/flux/head.svg"
  32161. }
  32162. },
  32163. headSide: {
  32164. height: math.unit(1.74, "feet"),
  32165. name: "Head (Side)",
  32166. image: {
  32167. source: "./media/characters/flux/head-side.svg"
  32168. }
  32169. },
  32170. headSideFire: {
  32171. height: math.unit(1.76, "feet"),
  32172. name: "Head (Side, Fire)",
  32173. image: {
  32174. source: "./media/characters/flux/head-side-fire.svg"
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Normal",
  32181. height: math.unit(7, "feet"),
  32182. default: true
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32188. {
  32189. front: {
  32190. height: math.unit(9, "feet"),
  32191. weight: math.unit(1012, "lb"),
  32192. name: "Front",
  32193. image: {
  32194. source: "./media/characters/ulfra-lupae/front.svg",
  32195. extra: 1083/1011,
  32196. bottom: 67/1150
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Micro",
  32203. height: math.unit(6, "inches")
  32204. },
  32205. {
  32206. name: "Socializing",
  32207. height: math.unit(6 + 5/12, "feet")
  32208. },
  32209. {
  32210. name: "Normal",
  32211. height: math.unit(9, "feet"),
  32212. default: true
  32213. },
  32214. {
  32215. name: "Macro",
  32216. height: math.unit(150, "feet")
  32217. },
  32218. ]
  32219. ))
  32220. characterMakers.push(() => makeCharacter(
  32221. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32222. {
  32223. front: {
  32224. height: math.unit(5 + 2/12, "feet"),
  32225. weight: math.unit(120, "lb"),
  32226. name: "Front",
  32227. image: {
  32228. source: "./media/characters/timber/front.svg",
  32229. extra: 2814/2705,
  32230. bottom: 181/2995
  32231. }
  32232. },
  32233. },
  32234. [
  32235. {
  32236. name: "Normal",
  32237. height: math.unit(5 + 2/12, "feet"),
  32238. default: true
  32239. },
  32240. ]
  32241. ))
  32242. characterMakers.push(() => makeCharacter(
  32243. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32244. {
  32245. front: {
  32246. height: math.unit(9, "feet"),
  32247. name: "Front",
  32248. image: {
  32249. source: "./media/characters/nicki/front.svg",
  32250. extra: 1240/990,
  32251. bottom: 45/1285
  32252. },
  32253. form: "anthro",
  32254. default: true
  32255. },
  32256. side: {
  32257. height: math.unit(9, "feet"),
  32258. name: "Side",
  32259. image: {
  32260. source: "./media/characters/nicki/side.svg",
  32261. extra: 1047/973,
  32262. bottom: 61/1108
  32263. },
  32264. form: "anthro"
  32265. },
  32266. back: {
  32267. height: math.unit(9, "feet"),
  32268. name: "Back",
  32269. image: {
  32270. source: "./media/characters/nicki/back.svg",
  32271. extra: 1006/965,
  32272. bottom: 39/1045
  32273. },
  32274. form: "anthro"
  32275. },
  32276. taur: {
  32277. height: math.unit(15, "feet"),
  32278. name: "Taur",
  32279. image: {
  32280. source: "./media/characters/nicki/taur.svg",
  32281. extra: 1592/1347,
  32282. bottom: 0/1592
  32283. },
  32284. form: "taur",
  32285. default: true
  32286. },
  32287. },
  32288. [
  32289. {
  32290. name: "Normal",
  32291. height: math.unit(9, "feet"),
  32292. form: "anthro",
  32293. default: true
  32294. },
  32295. {
  32296. name: "Normal",
  32297. height: math.unit(15, "feet"),
  32298. form: "taur",
  32299. default: true
  32300. }
  32301. ],
  32302. {
  32303. "anthro": {
  32304. name: "Anthro",
  32305. default: true
  32306. },
  32307. "taur": {
  32308. name: "Taur"
  32309. }
  32310. }
  32311. ))
  32312. characterMakers.push(() => makeCharacter(
  32313. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32314. {
  32315. front: {
  32316. height: math.unit(7 + 10/12, "feet"),
  32317. weight: math.unit(3.5, "tons"),
  32318. name: "Front",
  32319. image: {
  32320. source: "./media/characters/lee/front.svg",
  32321. extra: 1773/1615,
  32322. bottom: 86/1859
  32323. }
  32324. },
  32325. hand: {
  32326. height: math.unit(1.78, "feet"),
  32327. name: "Hand",
  32328. image: {
  32329. source: "./media/characters/lee/hand.svg"
  32330. }
  32331. },
  32332. maw: {
  32333. height: math.unit(1.18, "feet"),
  32334. name: "Maw",
  32335. image: {
  32336. source: "./media/characters/lee/maw.svg"
  32337. }
  32338. },
  32339. },
  32340. [
  32341. {
  32342. name: "Normal",
  32343. height: math.unit(7 + 10/12, "feet"),
  32344. default: true
  32345. },
  32346. ]
  32347. ))
  32348. characterMakers.push(() => makeCharacter(
  32349. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32350. {
  32351. front: {
  32352. height: math.unit(9, "feet"),
  32353. name: "Front",
  32354. image: {
  32355. source: "./media/characters/guti/front.svg",
  32356. extra: 4551/4355,
  32357. bottom: 123/4674
  32358. }
  32359. },
  32360. tongue: {
  32361. height: math.unit(1, "feet"),
  32362. name: "Tongue",
  32363. image: {
  32364. source: "./media/characters/guti/tongue.svg"
  32365. }
  32366. },
  32367. paw: {
  32368. height: math.unit(1.18, "feet"),
  32369. name: "Paw",
  32370. image: {
  32371. source: "./media/characters/guti/paw.svg"
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Normal",
  32378. height: math.unit(9, "feet"),
  32379. default: true
  32380. },
  32381. ]
  32382. ))
  32383. characterMakers.push(() => makeCharacter(
  32384. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32385. {
  32386. side: {
  32387. height: math.unit(5, "meters"),
  32388. name: "Side",
  32389. image: {
  32390. source: "./media/characters/vesper/side.svg",
  32391. extra: 1605/1518,
  32392. bottom: 0/1605
  32393. }
  32394. },
  32395. },
  32396. [
  32397. {
  32398. name: "Small",
  32399. height: math.unit(5, "meters")
  32400. },
  32401. {
  32402. name: "Sage",
  32403. height: math.unit(100, "meters"),
  32404. default: true
  32405. },
  32406. {
  32407. name: "Fun Size",
  32408. height: math.unit(600, "meters")
  32409. },
  32410. {
  32411. name: "Goddess",
  32412. height: math.unit(20000, "km")
  32413. },
  32414. {
  32415. name: "Maximum",
  32416. height: math.unit(5, "galaxies")
  32417. },
  32418. ]
  32419. ))
  32420. characterMakers.push(() => makeCharacter(
  32421. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32422. {
  32423. front: {
  32424. height: math.unit(6 + 3/12, "feet"),
  32425. weight: math.unit(190, "lb"),
  32426. name: "Front",
  32427. image: {
  32428. source: "./media/characters/gawain/front.svg",
  32429. extra: 2222/2139,
  32430. bottom: 90/2312
  32431. }
  32432. },
  32433. back: {
  32434. height: math.unit(6 + 3/12, "feet"),
  32435. weight: math.unit(190, "lb"),
  32436. name: "Back",
  32437. image: {
  32438. source: "./media/characters/gawain/back.svg",
  32439. extra: 2199/2111,
  32440. bottom: 73/2272
  32441. }
  32442. },
  32443. },
  32444. [
  32445. {
  32446. name: "Normal",
  32447. height: math.unit(6 + 3/12, "feet"),
  32448. default: true
  32449. },
  32450. ]
  32451. ))
  32452. characterMakers.push(() => makeCharacter(
  32453. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32454. {
  32455. side: {
  32456. height: math.unit(3.5, "meters"),
  32457. weight: math.unit(16000, "lb"),
  32458. name: "Side",
  32459. image: {
  32460. source: "./media/characters/dascalti/side.svg",
  32461. extra: 392/273,
  32462. bottom: 47/439
  32463. }
  32464. },
  32465. breath: {
  32466. height: math.unit(7.4, "feet"),
  32467. name: "Breath",
  32468. image: {
  32469. source: "./media/characters/dascalti/breath.svg"
  32470. }
  32471. },
  32472. fed: {
  32473. height: math.unit(3.6, "meters"),
  32474. weight: math.unit(16000, "lb"),
  32475. name: "Fed",
  32476. image: {
  32477. source: "./media/characters/dascalti/fed.svg",
  32478. extra: 1419/820,
  32479. bottom: 95/1514
  32480. }
  32481. },
  32482. },
  32483. [
  32484. {
  32485. name: "Normal",
  32486. height: math.unit(3.5, "meters"),
  32487. default: true
  32488. },
  32489. ]
  32490. ))
  32491. characterMakers.push(() => makeCharacter(
  32492. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32493. {
  32494. front: {
  32495. height: math.unit(3 + 5/12, "feet"),
  32496. name: "Front",
  32497. image: {
  32498. source: "./media/characters/mauve/front.svg",
  32499. extra: 1126/1033,
  32500. bottom: 65/1191
  32501. }
  32502. },
  32503. side: {
  32504. height: math.unit(3 + 5/12, "feet"),
  32505. name: "Side",
  32506. image: {
  32507. source: "./media/characters/mauve/side.svg",
  32508. extra: 1089/1001,
  32509. bottom: 29/1118
  32510. }
  32511. },
  32512. back: {
  32513. height: math.unit(3 + 5/12, "feet"),
  32514. name: "Back",
  32515. image: {
  32516. source: "./media/characters/mauve/back.svg",
  32517. extra: 1173/1053,
  32518. bottom: 109/1282
  32519. }
  32520. },
  32521. },
  32522. [
  32523. {
  32524. name: "Normal",
  32525. height: math.unit(3 + 5/12, "feet"),
  32526. default: true
  32527. },
  32528. ]
  32529. ))
  32530. characterMakers.push(() => makeCharacter(
  32531. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32532. {
  32533. front: {
  32534. height: math.unit(6 + 3/12, "feet"),
  32535. weight: math.unit(430, "lb"),
  32536. name: "Front",
  32537. image: {
  32538. source: "./media/characters/carlos/front.svg",
  32539. extra: 1964/1913,
  32540. bottom: 70/2034
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Normal",
  32547. height: math.unit(6 + 3/12, "feet"),
  32548. default: true
  32549. },
  32550. ]
  32551. ))
  32552. characterMakers.push(() => makeCharacter(
  32553. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32554. {
  32555. back: {
  32556. height: math.unit(5 + 10/12, "feet"),
  32557. weight: math.unit(200, "lb"),
  32558. name: "Back",
  32559. image: {
  32560. source: "./media/characters/jax/back.svg",
  32561. extra: 764/739,
  32562. bottom: 25/789
  32563. }
  32564. },
  32565. },
  32566. [
  32567. {
  32568. name: "Normal",
  32569. height: math.unit(5 + 10/12, "feet"),
  32570. default: true
  32571. },
  32572. ]
  32573. ))
  32574. characterMakers.push(() => makeCharacter(
  32575. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32576. {
  32577. front: {
  32578. height: math.unit(8, "feet"),
  32579. weight: math.unit(250, "lb"),
  32580. name: "Front",
  32581. image: {
  32582. source: "./media/characters/eikthynir/front.svg",
  32583. extra: 1332/1166,
  32584. bottom: 82/1414
  32585. }
  32586. },
  32587. back: {
  32588. height: math.unit(8, "feet"),
  32589. weight: math.unit(250, "lb"),
  32590. name: "Back",
  32591. image: {
  32592. source: "./media/characters/eikthynir/back.svg",
  32593. extra: 1342/1190,
  32594. bottom: 19/1361
  32595. }
  32596. },
  32597. dick: {
  32598. height: math.unit(2.35, "feet"),
  32599. name: "Dick",
  32600. image: {
  32601. source: "./media/characters/eikthynir/dick.svg"
  32602. }
  32603. },
  32604. },
  32605. [
  32606. {
  32607. name: "Normal",
  32608. height: math.unit(8, "feet"),
  32609. default: true
  32610. },
  32611. ]
  32612. ))
  32613. characterMakers.push(() => makeCharacter(
  32614. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32615. {
  32616. front: {
  32617. height: math.unit(99, "meters"),
  32618. weight: math.unit(13000, "tons"),
  32619. name: "Front",
  32620. image: {
  32621. source: "./media/characters/zlmos/front.svg",
  32622. extra: 2202/1992,
  32623. bottom: 315/2517
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Macro",
  32630. height: math.unit(99, "meters"),
  32631. default: true
  32632. },
  32633. ]
  32634. ))
  32635. characterMakers.push(() => makeCharacter(
  32636. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32637. {
  32638. front: {
  32639. height: math.unit(6 + 5/12, "feet"),
  32640. name: "Front",
  32641. image: {
  32642. source: "./media/characters/purri/front.svg",
  32643. extra: 1698/1610,
  32644. bottom: 32/1730
  32645. }
  32646. },
  32647. frontAlt: {
  32648. height: math.unit(6 + 5/12, "feet"),
  32649. name: "Front (Alt)",
  32650. image: {
  32651. source: "./media/characters/purri/front-alt.svg",
  32652. extra: 450/420,
  32653. bottom: 26/476
  32654. }
  32655. },
  32656. boots: {
  32657. height: math.unit(5.5, "feet"),
  32658. name: "Boots",
  32659. image: {
  32660. source: "./media/characters/purri/boots.svg",
  32661. extra: 905/853,
  32662. bottom: 18/923
  32663. }
  32664. },
  32665. lying: {
  32666. height: math.unit(2, "feet"),
  32667. name: "Lying",
  32668. image: {
  32669. source: "./media/characters/purri/lying.svg",
  32670. extra: 940/843,
  32671. bottom: 146/1086
  32672. }
  32673. },
  32674. devious: {
  32675. height: math.unit(1.77, "feet"),
  32676. name: "Devious",
  32677. image: {
  32678. source: "./media/characters/purri/devious.svg",
  32679. extra: 1440/1155,
  32680. bottom: 147/1587
  32681. }
  32682. },
  32683. bean: {
  32684. height: math.unit(1.94, "feet"),
  32685. name: "Bean",
  32686. image: {
  32687. source: "./media/characters/purri/bean.svg"
  32688. }
  32689. },
  32690. },
  32691. [
  32692. {
  32693. name: "Micro",
  32694. height: math.unit(1, "mm")
  32695. },
  32696. {
  32697. name: "Normal",
  32698. height: math.unit(6 + 5/12, "feet"),
  32699. default: true
  32700. },
  32701. {
  32702. name: "Macro :3c",
  32703. height: math.unit(2, "miles")
  32704. },
  32705. ]
  32706. ))
  32707. characterMakers.push(() => makeCharacter(
  32708. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32709. {
  32710. front: {
  32711. height: math.unit(6 + 2/12, "feet"),
  32712. weight: math.unit(250, "lb"),
  32713. name: "Front",
  32714. image: {
  32715. source: "./media/characters/moonlight/front.svg",
  32716. extra: 1044/908,
  32717. bottom: 56/1100
  32718. }
  32719. },
  32720. feral: {
  32721. height: math.unit(3 + 1/12, "feet"),
  32722. weight: math.unit(50, "kg"),
  32723. name: "Feral",
  32724. image: {
  32725. source: "./media/characters/moonlight/feral.svg",
  32726. extra: 3705/2791,
  32727. bottom: 145/3850
  32728. }
  32729. },
  32730. paw: {
  32731. height: math.unit(1, "feet"),
  32732. name: "Paw",
  32733. image: {
  32734. source: "./media/characters/moonlight/paw.svg"
  32735. }
  32736. },
  32737. paws: {
  32738. height: math.unit(0.98, "feet"),
  32739. name: "Paws",
  32740. image: {
  32741. source: "./media/characters/moonlight/paws.svg",
  32742. extra: 939/939,
  32743. bottom: 50/989
  32744. }
  32745. },
  32746. mouth: {
  32747. height: math.unit(0.48, "feet"),
  32748. name: "Mouth",
  32749. image: {
  32750. source: "./media/characters/moonlight/mouth.svg"
  32751. }
  32752. },
  32753. dick: {
  32754. height: math.unit(1.46, "feet"),
  32755. name: "Dick",
  32756. image: {
  32757. source: "./media/characters/moonlight/dick.svg"
  32758. }
  32759. },
  32760. },
  32761. [
  32762. {
  32763. name: "Normal",
  32764. height: math.unit(6 + 2/12, "feet"),
  32765. default: true
  32766. },
  32767. {
  32768. name: "Macro",
  32769. height: math.unit(300, "feet")
  32770. },
  32771. {
  32772. name: "Macro+",
  32773. height: math.unit(1, "mile")
  32774. },
  32775. {
  32776. name: "Mt. Moon",
  32777. height: math.unit(5, "miles")
  32778. },
  32779. {
  32780. name: "Megamacro",
  32781. height: math.unit(15, "miles")
  32782. },
  32783. ]
  32784. ))
  32785. characterMakers.push(() => makeCharacter(
  32786. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32787. {
  32788. back: {
  32789. height: math.unit(6, "feet"),
  32790. weight: math.unit(150, "lb"),
  32791. name: "Back",
  32792. image: {
  32793. source: "./media/characters/sylen/back.svg",
  32794. extra: 1335/1273,
  32795. bottom: 107/1442
  32796. }
  32797. },
  32798. },
  32799. [
  32800. {
  32801. name: "Normal",
  32802. height: math.unit(5 + 5/12, "feet")
  32803. },
  32804. {
  32805. name: "Megamacro",
  32806. height: math.unit(3, "miles"),
  32807. default: true
  32808. },
  32809. ]
  32810. ))
  32811. characterMakers.push(() => makeCharacter(
  32812. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32813. {
  32814. front: {
  32815. height: math.unit(6, "feet"),
  32816. weight: math.unit(190, "lb"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/huttser/front.svg",
  32820. extra: 1152/1058,
  32821. bottom: 23/1175
  32822. }
  32823. },
  32824. side: {
  32825. height: math.unit(6, "feet"),
  32826. weight: math.unit(190, "lb"),
  32827. name: "Side",
  32828. image: {
  32829. source: "./media/characters/huttser/side.svg",
  32830. extra: 1174/1065,
  32831. bottom: 18/1192
  32832. }
  32833. },
  32834. back: {
  32835. height: math.unit(6, "feet"),
  32836. weight: math.unit(190, "lb"),
  32837. name: "Back",
  32838. image: {
  32839. source: "./media/characters/huttser/back.svg",
  32840. extra: 1158/1056,
  32841. bottom: 12/1170
  32842. }
  32843. },
  32844. },
  32845. [
  32846. ]
  32847. ))
  32848. characterMakers.push(() => makeCharacter(
  32849. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32850. {
  32851. side: {
  32852. height: math.unit(12 + 9/12, "feet"),
  32853. weight: math.unit(15000, "lb"),
  32854. name: "Side",
  32855. image: {
  32856. source: "./media/characters/faan/side.svg",
  32857. extra: 2747/2697,
  32858. bottom: 0/2747
  32859. }
  32860. },
  32861. front: {
  32862. height: math.unit(12 + 9/12, "feet"),
  32863. weight: math.unit(15000, "lb"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/faan/front.svg",
  32867. extra: 607/571,
  32868. bottom: 24/631
  32869. }
  32870. },
  32871. head: {
  32872. height: math.unit(2.85, "feet"),
  32873. name: "Head",
  32874. image: {
  32875. source: "./media/characters/faan/head.svg"
  32876. }
  32877. },
  32878. headAlt: {
  32879. height: math.unit(3.13, "feet"),
  32880. name: "Head-alt",
  32881. image: {
  32882. source: "./media/characters/faan/head-alt.svg"
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Normal",
  32889. height: math.unit(12 + 9/12, "feet"),
  32890. default: true
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(6, "feet"),
  32899. weight: math.unit(300, "lb"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/tanio/front.svg",
  32903. extra: 711/673,
  32904. bottom: 25/736
  32905. }
  32906. },
  32907. },
  32908. [
  32909. {
  32910. name: "Normal",
  32911. height: math.unit(6, "feet"),
  32912. default: true
  32913. },
  32914. ]
  32915. ))
  32916. characterMakers.push(() => makeCharacter(
  32917. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32918. {
  32919. front: {
  32920. height: math.unit(3, "inches"),
  32921. name: "Front",
  32922. image: {
  32923. source: "./media/characters/noboru/front.svg",
  32924. extra: 1039/932,
  32925. bottom: 18/1057
  32926. }
  32927. },
  32928. },
  32929. [
  32930. {
  32931. name: "Micro",
  32932. height: math.unit(3, "inches"),
  32933. default: true
  32934. },
  32935. ]
  32936. ))
  32937. characterMakers.push(() => makeCharacter(
  32938. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32939. {
  32940. front: {
  32941. height: math.unit(1.85, "meters"),
  32942. weight: math.unit(80, "kg"),
  32943. name: "Front",
  32944. image: {
  32945. source: "./media/characters/daniel-barrett/front.svg",
  32946. extra: 355/337,
  32947. bottom: 9/364
  32948. }
  32949. },
  32950. },
  32951. [
  32952. {
  32953. name: "Pico",
  32954. height: math.unit(0.0433, "mm")
  32955. },
  32956. {
  32957. name: "Nano",
  32958. height: math.unit(1.5, "mm")
  32959. },
  32960. {
  32961. name: "Micro",
  32962. height: math.unit(5.3, "cm"),
  32963. default: true
  32964. },
  32965. {
  32966. name: "Normal",
  32967. height: math.unit(1.85, "meters")
  32968. },
  32969. {
  32970. name: "Macro",
  32971. height: math.unit(64.7, "meters")
  32972. },
  32973. {
  32974. name: "Megamacro",
  32975. height: math.unit(2.26, "km")
  32976. },
  32977. {
  32978. name: "Gigamacro",
  32979. height: math.unit(79, "km")
  32980. },
  32981. {
  32982. name: "Teramacro",
  32983. height: math.unit(2765, "km")
  32984. },
  32985. {
  32986. name: "Petamacro",
  32987. height: math.unit(96678, "km")
  32988. },
  32989. ]
  32990. ))
  32991. characterMakers.push(() => makeCharacter(
  32992. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32993. {
  32994. front: {
  32995. height: math.unit(30, "meters"),
  32996. weight: math.unit(400, "tons"),
  32997. name: "Front",
  32998. image: {
  32999. source: "./media/characters/zeel/front.svg",
  33000. extra: 2599/2599,
  33001. bottom: 226/2825
  33002. }
  33003. },
  33004. },
  33005. [
  33006. {
  33007. name: "Macro",
  33008. height: math.unit(30, "meters"),
  33009. default: true
  33010. },
  33011. ]
  33012. ))
  33013. characterMakers.push(() => makeCharacter(
  33014. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33015. {
  33016. front: {
  33017. height: math.unit(6 + 7/12, "feet"),
  33018. weight: math.unit(210, "lb"),
  33019. name: "Front",
  33020. image: {
  33021. source: "./media/characters/tarn/front.svg",
  33022. extra: 3517/3220,
  33023. bottom: 91/3608
  33024. }
  33025. },
  33026. back: {
  33027. height: math.unit(6 + 7/12, "feet"),
  33028. weight: math.unit(210, "lb"),
  33029. name: "Back",
  33030. image: {
  33031. source: "./media/characters/tarn/back.svg",
  33032. extra: 3566/3241,
  33033. bottom: 34/3600
  33034. }
  33035. },
  33036. dick: {
  33037. height: math.unit(1.65, "feet"),
  33038. name: "Dick",
  33039. image: {
  33040. source: "./media/characters/tarn/dick.svg"
  33041. }
  33042. },
  33043. paw: {
  33044. height: math.unit(1.80, "feet"),
  33045. name: "Paw",
  33046. image: {
  33047. source: "./media/characters/tarn/paw.svg"
  33048. }
  33049. },
  33050. tongue: {
  33051. height: math.unit(0.97, "feet"),
  33052. name: "Tongue",
  33053. image: {
  33054. source: "./media/characters/tarn/tongue.svg"
  33055. }
  33056. },
  33057. },
  33058. [
  33059. {
  33060. name: "Micro",
  33061. height: math.unit(4, "inches")
  33062. },
  33063. {
  33064. name: "Normal",
  33065. height: math.unit(6 + 7/12, "feet"),
  33066. default: true
  33067. },
  33068. {
  33069. name: "Macro",
  33070. height: math.unit(300, "feet")
  33071. },
  33072. ]
  33073. ))
  33074. characterMakers.push(() => makeCharacter(
  33075. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33076. {
  33077. front: {
  33078. height: math.unit(5 + 7/12, "feet"),
  33079. weight: math.unit(80, "kg"),
  33080. name: "Front",
  33081. image: {
  33082. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33083. extra: 3023/2865,
  33084. bottom: 33/3056
  33085. }
  33086. },
  33087. back: {
  33088. height: math.unit(5 + 7/12, "feet"),
  33089. weight: math.unit(80, "kg"),
  33090. name: "Back",
  33091. image: {
  33092. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33093. extra: 3020/2886,
  33094. bottom: 30/3050
  33095. }
  33096. },
  33097. dick: {
  33098. height: math.unit(0.98, "feet"),
  33099. name: "Dick",
  33100. image: {
  33101. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33102. }
  33103. },
  33104. anatomy: {
  33105. height: math.unit(2.86, "feet"),
  33106. name: "Anatomy",
  33107. image: {
  33108. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33109. }
  33110. },
  33111. },
  33112. [
  33113. {
  33114. name: "Really Small",
  33115. height: math.unit(2, "inches")
  33116. },
  33117. {
  33118. name: "Micro",
  33119. height: math.unit(5.583, "inches")
  33120. },
  33121. {
  33122. name: "Normal",
  33123. height: math.unit(5 + 7/12, "feet"),
  33124. default: true
  33125. },
  33126. {
  33127. name: "Macro",
  33128. height: math.unit(67, "feet")
  33129. },
  33130. {
  33131. name: "Megamacro",
  33132. height: math.unit(134, "feet")
  33133. },
  33134. ]
  33135. ))
  33136. characterMakers.push(() => makeCharacter(
  33137. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33138. {
  33139. front: {
  33140. height: math.unit(9, "feet"),
  33141. weight: math.unit(120, "lb"),
  33142. name: "Front",
  33143. image: {
  33144. source: "./media/characters/sally/front.svg",
  33145. extra: 1506/1349,
  33146. bottom: 66/1572
  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: "Owen", species: ["bear"], tags: ["anthro"] },
  33160. {
  33161. front: {
  33162. height: math.unit(8, "feet"),
  33163. weight: math.unit(900, "lb"),
  33164. name: "Front",
  33165. image: {
  33166. source: "./media/characters/owen/front.svg",
  33167. extra: 1761/1657,
  33168. bottom: 74/1835
  33169. }
  33170. },
  33171. side: {
  33172. height: math.unit(8, "feet"),
  33173. weight: math.unit(900, "lb"),
  33174. name: "Side",
  33175. image: {
  33176. source: "./media/characters/owen/side.svg",
  33177. extra: 1797/1734,
  33178. bottom: 30/1827
  33179. }
  33180. },
  33181. back: {
  33182. height: math.unit(8, "feet"),
  33183. weight: math.unit(900, "lb"),
  33184. name: "Back",
  33185. image: {
  33186. source: "./media/characters/owen/back.svg",
  33187. extra: 1796/1706,
  33188. bottom: 59/1855
  33189. }
  33190. },
  33191. maw: {
  33192. height: math.unit(1.76, "feet"),
  33193. name: "Maw",
  33194. image: {
  33195. source: "./media/characters/owen/maw.svg"
  33196. }
  33197. },
  33198. },
  33199. [
  33200. {
  33201. name: "Normal",
  33202. height: math.unit(8, "feet"),
  33203. default: true
  33204. },
  33205. ]
  33206. ))
  33207. characterMakers.push(() => makeCharacter(
  33208. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33209. {
  33210. front: {
  33211. height: math.unit(4, "feet"),
  33212. weight: math.unit(400, "lb"),
  33213. name: "Front",
  33214. image: {
  33215. source: "./media/characters/ryth/front.svg",
  33216. extra: 1920/1748,
  33217. bottom: 42/1962
  33218. }
  33219. },
  33220. back: {
  33221. height: math.unit(4, "feet"),
  33222. weight: math.unit(400, "lb"),
  33223. name: "Back",
  33224. image: {
  33225. source: "./media/characters/ryth/back.svg",
  33226. extra: 1897/1690,
  33227. bottom: 89/1986
  33228. }
  33229. },
  33230. mouth: {
  33231. height: math.unit(1.39, "feet"),
  33232. name: "Mouth",
  33233. image: {
  33234. source: "./media/characters/ryth/mouth.svg"
  33235. }
  33236. },
  33237. tailmaw: {
  33238. height: math.unit(1.23, "feet"),
  33239. name: "Tailmaw",
  33240. image: {
  33241. source: "./media/characters/ryth/tailmaw.svg"
  33242. }
  33243. },
  33244. goia: {
  33245. height: math.unit(4, "meters"),
  33246. weight: math.unit(10800, "lb"),
  33247. name: "Goia",
  33248. image: {
  33249. source: "./media/characters/ryth/goia.svg",
  33250. extra: 745/640,
  33251. bottom: 107/852
  33252. }
  33253. },
  33254. goiaFront: {
  33255. height: math.unit(4, "meters"),
  33256. weight: math.unit(10800, "lb"),
  33257. name: "Goia (Front)",
  33258. image: {
  33259. source: "./media/characters/ryth/goia-front.svg",
  33260. extra: 750/586,
  33261. bottom: 114/864
  33262. }
  33263. },
  33264. goiaMaw: {
  33265. height: math.unit(5.55, "feet"),
  33266. name: "Goia Maw",
  33267. image: {
  33268. source: "./media/characters/ryth/goia-maw.svg"
  33269. }
  33270. },
  33271. goiaForepaw: {
  33272. height: math.unit(3.5, "feet"),
  33273. name: "Goia Forepaw",
  33274. image: {
  33275. source: "./media/characters/ryth/goia-forepaw.svg"
  33276. }
  33277. },
  33278. goiaHindpaw: {
  33279. height: math.unit(5.55, "feet"),
  33280. name: "Goia Hindpaw",
  33281. image: {
  33282. source: "./media/characters/ryth/goia-hindpaw.svg"
  33283. }
  33284. },
  33285. },
  33286. [
  33287. {
  33288. name: "Normal",
  33289. height: math.unit(4, "feet"),
  33290. default: true
  33291. },
  33292. ]
  33293. ))
  33294. characterMakers.push(() => makeCharacter(
  33295. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33296. {
  33297. front: {
  33298. height: math.unit(7, "feet"),
  33299. weight: math.unit(180, "lb"),
  33300. name: "Front",
  33301. image: {
  33302. source: "./media/characters/necrolance/front.svg",
  33303. extra: 1062/947,
  33304. bottom: 41/1103
  33305. }
  33306. },
  33307. back: {
  33308. height: math.unit(7, "feet"),
  33309. weight: math.unit(180, "lb"),
  33310. name: "Back",
  33311. image: {
  33312. source: "./media/characters/necrolance/back.svg",
  33313. extra: 1045/984,
  33314. bottom: 14/1059
  33315. }
  33316. },
  33317. wing: {
  33318. height: math.unit(2.67, "feet"),
  33319. name: "Wing",
  33320. image: {
  33321. source: "./media/characters/necrolance/wing.svg"
  33322. }
  33323. },
  33324. },
  33325. [
  33326. {
  33327. name: "Normal",
  33328. height: math.unit(7, "feet"),
  33329. default: true
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33335. {
  33336. front: {
  33337. height: math.unit(76, "meters"),
  33338. weight: math.unit(30000, "tons"),
  33339. name: "Front",
  33340. image: {
  33341. source: "./media/characters/tyler/front.svg",
  33342. extra: 1640/1640,
  33343. bottom: 114/1754
  33344. }
  33345. },
  33346. },
  33347. [
  33348. {
  33349. name: "Macro",
  33350. height: math.unit(76, "meters"),
  33351. default: true
  33352. },
  33353. ]
  33354. ))
  33355. characterMakers.push(() => makeCharacter(
  33356. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33357. {
  33358. front: {
  33359. height: math.unit(4 + 11/12, "feet"),
  33360. weight: math.unit(132, "lb"),
  33361. name: "Front",
  33362. image: {
  33363. source: "./media/characters/icey/front.svg",
  33364. extra: 2750/2550,
  33365. bottom: 33/2783
  33366. }
  33367. },
  33368. back: {
  33369. height: math.unit(4 + 11/12, "feet"),
  33370. weight: math.unit(132, "lb"),
  33371. name: "Back",
  33372. image: {
  33373. source: "./media/characters/icey/back.svg",
  33374. extra: 2624/2481,
  33375. bottom: 35/2659
  33376. }
  33377. },
  33378. },
  33379. [
  33380. {
  33381. name: "Normal",
  33382. height: math.unit(4 + 11/12, "feet"),
  33383. default: true
  33384. },
  33385. ]
  33386. ))
  33387. characterMakers.push(() => makeCharacter(
  33388. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33389. {
  33390. front: {
  33391. height: math.unit(100, "feet"),
  33392. weight: math.unit(0, "lb"),
  33393. name: "Front",
  33394. image: {
  33395. source: "./media/characters/smile/front.svg",
  33396. extra: 2983/2912,
  33397. bottom: 162/3145
  33398. }
  33399. },
  33400. back: {
  33401. height: math.unit(100, "feet"),
  33402. weight: math.unit(0, "lb"),
  33403. name: "Back",
  33404. image: {
  33405. source: "./media/characters/smile/back.svg",
  33406. extra: 3143/3031,
  33407. bottom: 91/3234
  33408. }
  33409. },
  33410. head: {
  33411. height: math.unit(26.3, "feet"),
  33412. weight: math.unit(0, "lb"),
  33413. name: "Head",
  33414. image: {
  33415. source: "./media/characters/smile/head.svg"
  33416. }
  33417. },
  33418. collar: {
  33419. height: math.unit(5.3, "feet"),
  33420. weight: math.unit(0, "lb"),
  33421. name: "Collar",
  33422. image: {
  33423. source: "./media/characters/smile/collar.svg"
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Macro",
  33430. height: math.unit(100, "feet"),
  33431. default: true
  33432. },
  33433. ]
  33434. ))
  33435. characterMakers.push(() => makeCharacter(
  33436. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33437. {
  33438. dragon: {
  33439. height: math.unit(26, "feet"),
  33440. weight: math.unit(36, "tons"),
  33441. name: "Dragon",
  33442. image: {
  33443. source: "./media/characters/arimphae/dragon.svg",
  33444. extra: 1574/983,
  33445. bottom: 357/1931
  33446. }
  33447. },
  33448. drake: {
  33449. height: math.unit(9, "feet"),
  33450. weight: math.unit(1.5, "tons"),
  33451. name: "Drake",
  33452. image: {
  33453. source: "./media/characters/arimphae/drake.svg",
  33454. extra: 1120/925,
  33455. bottom: 435/1555
  33456. }
  33457. },
  33458. },
  33459. [
  33460. {
  33461. name: "Small",
  33462. height: math.unit(26*5/9, "feet")
  33463. },
  33464. {
  33465. name: "Normal",
  33466. height: math.unit(26, "feet"),
  33467. default: true
  33468. },
  33469. ]
  33470. ))
  33471. characterMakers.push(() => makeCharacter(
  33472. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33473. {
  33474. front: {
  33475. height: math.unit(8 + 9/12, "feet"),
  33476. name: "Front",
  33477. image: {
  33478. source: "./media/characters/xander/front.svg",
  33479. extra: 1237/974,
  33480. bottom: 94/1331
  33481. }
  33482. },
  33483. },
  33484. [
  33485. {
  33486. name: "Normal",
  33487. height: math.unit(8 + 9/12, "feet"),
  33488. default: true
  33489. },
  33490. {
  33491. name: "Gaze Grabber",
  33492. height: math.unit(13 + 8/12, "feet")
  33493. },
  33494. {
  33495. name: "Jaw Dropper",
  33496. height: math.unit(27, "feet")
  33497. },
  33498. {
  33499. name: "Show Stopper",
  33500. height: math.unit(136, "feet")
  33501. },
  33502. {
  33503. name: "Superstar",
  33504. height: math.unit(1.9e6, "miles")
  33505. },
  33506. ]
  33507. ))
  33508. characterMakers.push(() => makeCharacter(
  33509. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33510. {
  33511. side: {
  33512. height: math.unit(2100, "feet"),
  33513. name: "Side",
  33514. image: {
  33515. source: "./media/characters/osiris/side.svg",
  33516. extra: 1105/939,
  33517. bottom: 167/1272
  33518. }
  33519. },
  33520. },
  33521. [
  33522. {
  33523. name: "Macro",
  33524. height: math.unit(2100, "feet"),
  33525. default: true
  33526. },
  33527. ]
  33528. ))
  33529. characterMakers.push(() => makeCharacter(
  33530. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33531. {
  33532. front: {
  33533. height: math.unit(6 + 8/12, "feet"),
  33534. weight: math.unit(225, "lb"),
  33535. name: "Front",
  33536. image: {
  33537. source: "./media/characters/rhys-londe/front.svg",
  33538. extra: 2258/2141,
  33539. bottom: 188/2446
  33540. }
  33541. },
  33542. back: {
  33543. height: math.unit(6 + 8/12, "feet"),
  33544. weight: math.unit(225, "lb"),
  33545. name: "Back",
  33546. image: {
  33547. source: "./media/characters/rhys-londe/back.svg",
  33548. extra: 2237/2137,
  33549. bottom: 63/2300
  33550. }
  33551. },
  33552. frontNsfw: {
  33553. height: math.unit(6 + 8/12, "feet"),
  33554. weight: math.unit(225, "lb"),
  33555. name: "Front (NSFW)",
  33556. image: {
  33557. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33558. extra: 2258/2141,
  33559. bottom: 188/2446
  33560. }
  33561. },
  33562. backNsfw: {
  33563. height: math.unit(6 + 8/12, "feet"),
  33564. weight: math.unit(225, "lb"),
  33565. name: "Back (NSFW)",
  33566. image: {
  33567. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33568. extra: 2237/2137,
  33569. bottom: 63/2300
  33570. }
  33571. },
  33572. dick: {
  33573. height: math.unit(30, "inches"),
  33574. name: "Dick",
  33575. image: {
  33576. source: "./media/characters/rhys-londe/dick.svg"
  33577. }
  33578. },
  33579. maw: {
  33580. height: math.unit(1.6, "feet"),
  33581. name: "Maw",
  33582. image: {
  33583. source: "./media/characters/rhys-londe/maw.svg"
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(6 + 8/12, "feet"),
  33591. default: true
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33597. {
  33598. front: {
  33599. height: math.unit(3 + 10/12, "feet"),
  33600. weight: math.unit(90, "lb"),
  33601. name: "Front",
  33602. image: {
  33603. source: "./media/characters/taivas-ensim/front.svg",
  33604. extra: 1327/1216,
  33605. bottom: 96/1423
  33606. }
  33607. },
  33608. back: {
  33609. height: math.unit(3 + 10/12, "feet"),
  33610. weight: math.unit(90, "lb"),
  33611. name: "Back",
  33612. image: {
  33613. source: "./media/characters/taivas-ensim/back.svg",
  33614. extra: 1355/1247,
  33615. bottom: 11/1366
  33616. }
  33617. },
  33618. frontNsfw: {
  33619. height: math.unit(3 + 10/12, "feet"),
  33620. weight: math.unit(90, "lb"),
  33621. name: "Front (NSFW)",
  33622. image: {
  33623. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33624. extra: 1327/1216,
  33625. bottom: 96/1423
  33626. }
  33627. },
  33628. backNsfw: {
  33629. height: math.unit(3 + 10/12, "feet"),
  33630. weight: math.unit(90, "lb"),
  33631. name: "Back (NSFW)",
  33632. image: {
  33633. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33634. extra: 1355/1247,
  33635. bottom: 11/1366
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(3 + 10/12, "feet"),
  33643. default: true
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(9 + 6/12, "feet"),
  33652. weight: math.unit(940, "lb"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/byliss/front.svg",
  33656. extra: 1327/1290,
  33657. bottom: 82/1409
  33658. }
  33659. },
  33660. back: {
  33661. height: math.unit(9 + 6/12, "feet"),
  33662. weight: math.unit(940, "lb"),
  33663. name: "Back",
  33664. image: {
  33665. source: "./media/characters/byliss/back.svg",
  33666. extra: 1376/1349,
  33667. bottom: 9/1385
  33668. }
  33669. },
  33670. frontNsfw: {
  33671. height: math.unit(9 + 6/12, "feet"),
  33672. weight: math.unit(940, "lb"),
  33673. name: "Front (NSFW)",
  33674. image: {
  33675. source: "./media/characters/byliss/front-nsfw.svg",
  33676. extra: 1327/1290,
  33677. bottom: 82/1409
  33678. }
  33679. },
  33680. backNsfw: {
  33681. height: math.unit(9 + 6/12, "feet"),
  33682. weight: math.unit(940, "lb"),
  33683. name: "Back (NSFW)",
  33684. image: {
  33685. source: "./media/characters/byliss/back-nsfw.svg",
  33686. extra: 1376/1349,
  33687. bottom: 9/1385
  33688. }
  33689. },
  33690. },
  33691. [
  33692. {
  33693. name: "Normal",
  33694. height: math.unit(9 + 6/12, "feet"),
  33695. default: true
  33696. },
  33697. ]
  33698. ))
  33699. characterMakers.push(() => makeCharacter(
  33700. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33701. {
  33702. front: {
  33703. height: math.unit(5 + 2/12, "feet"),
  33704. weight: math.unit(200, "lb"),
  33705. name: "Front",
  33706. image: {
  33707. source: "./media/characters/noraly/front.svg",
  33708. extra: 4985/4773,
  33709. bottom: 150/5135
  33710. }
  33711. },
  33712. full: {
  33713. height: math.unit(5 + 2/12, "feet"),
  33714. weight: math.unit(164, "lb"),
  33715. name: "Full",
  33716. image: {
  33717. source: "./media/characters/noraly/full.svg",
  33718. extra: 1114/1059,
  33719. bottom: 35/1149
  33720. }
  33721. },
  33722. fuller: {
  33723. height: math.unit(5 + 2/12, "feet"),
  33724. weight: math.unit(230, "lb"),
  33725. name: "Fuller",
  33726. image: {
  33727. source: "./media/characters/noraly/fuller.svg",
  33728. extra: 1114/1059,
  33729. bottom: 35/1149
  33730. }
  33731. },
  33732. fullest: {
  33733. height: math.unit(5 + 2/12, "feet"),
  33734. weight: math.unit(300, "lb"),
  33735. name: "Fullest",
  33736. image: {
  33737. source: "./media/characters/noraly/fullest.svg",
  33738. extra: 1114/1059,
  33739. bottom: 35/1149
  33740. }
  33741. },
  33742. },
  33743. [
  33744. {
  33745. name: "Normal",
  33746. height: math.unit(5 + 2/12, "feet"),
  33747. default: true
  33748. },
  33749. ]
  33750. ))
  33751. characterMakers.push(() => makeCharacter(
  33752. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33753. {
  33754. front: {
  33755. height: math.unit(5 + 2/12, "feet"),
  33756. weight: math.unit(210, "lb"),
  33757. name: "Front",
  33758. image: {
  33759. source: "./media/characters/pera/front.svg",
  33760. extra: 1560/1531,
  33761. bottom: 165/1725
  33762. }
  33763. },
  33764. back: {
  33765. height: math.unit(5 + 2/12, "feet"),
  33766. weight: math.unit(210, "lb"),
  33767. name: "Back",
  33768. image: {
  33769. source: "./media/characters/pera/back.svg",
  33770. extra: 1523/1493,
  33771. bottom: 152/1675
  33772. }
  33773. },
  33774. dick: {
  33775. height: math.unit(2.4, "feet"),
  33776. name: "Dick",
  33777. image: {
  33778. source: "./media/characters/pera/dick.svg"
  33779. }
  33780. },
  33781. },
  33782. [
  33783. {
  33784. name: "Normal",
  33785. height: math.unit(5 + 2/12, "feet"),
  33786. default: true
  33787. },
  33788. ]
  33789. ))
  33790. characterMakers.push(() => makeCharacter(
  33791. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33792. {
  33793. front: {
  33794. height: math.unit(12, "feet"),
  33795. weight: math.unit(3200, "lb"),
  33796. name: "Front",
  33797. image: {
  33798. source: "./media/characters/julian/front.svg",
  33799. extra: 2962/2701,
  33800. bottom: 184/3146
  33801. }
  33802. },
  33803. maw: {
  33804. height: math.unit(5.35, "feet"),
  33805. name: "Maw",
  33806. image: {
  33807. source: "./media/characters/julian/maw.svg"
  33808. }
  33809. },
  33810. paw: {
  33811. height: math.unit(3.07, "feet"),
  33812. name: "Paw",
  33813. image: {
  33814. source: "./media/characters/julian/paw.svg"
  33815. }
  33816. },
  33817. },
  33818. [
  33819. {
  33820. name: "Default",
  33821. height: math.unit(12, "feet"),
  33822. default: true
  33823. },
  33824. {
  33825. name: "Big",
  33826. height: math.unit(50, "feet")
  33827. },
  33828. {
  33829. name: "Really Big",
  33830. height: math.unit(1, "mile")
  33831. },
  33832. {
  33833. name: "Extremely Big",
  33834. height: math.unit(100, "miles")
  33835. },
  33836. {
  33837. name: "Planet Hugger",
  33838. height: math.unit(200, "megameters")
  33839. },
  33840. {
  33841. name: "Unreasonably Big",
  33842. height: math.unit(1e300, "meters")
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33848. {
  33849. solgooleo: {
  33850. height: math.unit(4, "meters"),
  33851. weight: math.unit(6000*1.5, "kg"),
  33852. volume: math.unit(6000, "liters"),
  33853. name: "Solgooleo",
  33854. image: {
  33855. source: "./media/characters/pi/solgooleo.svg",
  33856. extra: 388/331,
  33857. bottom: 29/417
  33858. }
  33859. },
  33860. },
  33861. [
  33862. {
  33863. name: "Normal",
  33864. height: math.unit(4, "meters"),
  33865. default: true
  33866. },
  33867. ]
  33868. ))
  33869. characterMakers.push(() => makeCharacter(
  33870. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33871. {
  33872. front: {
  33873. height: math.unit(8, "feet"),
  33874. weight: math.unit(4, "tons"),
  33875. name: "Front",
  33876. image: {
  33877. source: "./media/characters/shaun/front.svg",
  33878. extra: 503/495,
  33879. bottom: 20/523
  33880. }
  33881. },
  33882. back: {
  33883. height: math.unit(8, "feet"),
  33884. weight: math.unit(4, "tons"),
  33885. name: "Back",
  33886. image: {
  33887. source: "./media/characters/shaun/back.svg",
  33888. extra: 487/480,
  33889. bottom: 20/507
  33890. }
  33891. },
  33892. },
  33893. [
  33894. {
  33895. name: "Lorg",
  33896. height: math.unit(8, "feet"),
  33897. default: true
  33898. },
  33899. ]
  33900. ))
  33901. characterMakers.push(() => makeCharacter(
  33902. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33903. {
  33904. frontAnthro: {
  33905. height: math.unit(7, "feet"),
  33906. name: "Front",
  33907. image: {
  33908. source: "./media/characters/sini/front-anthro.svg",
  33909. extra: 726/678,
  33910. bottom: 35/761
  33911. },
  33912. form: "anthro",
  33913. default: true
  33914. },
  33915. backAnthro: {
  33916. height: math.unit(7, "feet"),
  33917. name: "Back",
  33918. image: {
  33919. source: "./media/characters/sini/back-anthro.svg",
  33920. extra: 743/701,
  33921. bottom: 12/755
  33922. },
  33923. form: "anthro",
  33924. },
  33925. frontAnthroNsfw: {
  33926. height: math.unit(7, "feet"),
  33927. name: "Front (NSFW)",
  33928. image: {
  33929. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33930. extra: 726/678,
  33931. bottom: 35/761
  33932. },
  33933. form: "anthro"
  33934. },
  33935. backAnthroNsfw: {
  33936. height: math.unit(7, "feet"),
  33937. name: "Back (NSFW)",
  33938. image: {
  33939. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33940. extra: 743/701,
  33941. bottom: 12/755
  33942. },
  33943. form: "anthro",
  33944. },
  33945. mawAnthro: {
  33946. height: math.unit(2.14, "feet"),
  33947. name: "Maw",
  33948. image: {
  33949. source: "./media/characters/sini/maw-anthro.svg"
  33950. },
  33951. form: "anthro"
  33952. },
  33953. dick: {
  33954. height: math.unit(1.45, "feet"),
  33955. name: "Dick",
  33956. image: {
  33957. source: "./media/characters/sini/dick-anthro.svg"
  33958. },
  33959. form: "anthro"
  33960. },
  33961. feral: {
  33962. height: math.unit(16, "feet"),
  33963. name: "Feral",
  33964. image: {
  33965. source: "./media/characters/sini/feral.svg",
  33966. extra: 814/605,
  33967. bottom: 11/825
  33968. },
  33969. form: "feral",
  33970. default: true
  33971. },
  33972. feralNsfw: {
  33973. height: math.unit(16, "feet"),
  33974. name: "Feral (NSFW)",
  33975. image: {
  33976. source: "./media/characters/sini/feral-nsfw.svg",
  33977. extra: 814/605,
  33978. bottom: 11/825
  33979. },
  33980. form: "feral"
  33981. },
  33982. mawFeral: {
  33983. height: math.unit(5.66, "feet"),
  33984. name: "Maw",
  33985. image: {
  33986. source: "./media/characters/sini/maw-feral.svg"
  33987. },
  33988. form: "feral",
  33989. },
  33990. pawFeral: {
  33991. height: math.unit(5.17, "feet"),
  33992. name: "Paw",
  33993. image: {
  33994. source: "./media/characters/sini/paw-feral.svg"
  33995. },
  33996. form: "feral",
  33997. },
  33998. rumpFeral: {
  33999. height: math.unit(13.11, "feet"),
  34000. name: "Rump",
  34001. image: {
  34002. source: "./media/characters/sini/rump-feral.svg"
  34003. },
  34004. form: "feral",
  34005. },
  34006. dickFeral: {
  34007. height: math.unit(1, "feet"),
  34008. name: "Dick",
  34009. image: {
  34010. source: "./media/characters/sini/dick-feral.svg"
  34011. },
  34012. form: "feral",
  34013. },
  34014. eyeFeral: {
  34015. height: math.unit(1.23, "feet"),
  34016. name: "Eye",
  34017. image: {
  34018. source: "./media/characters/sini/eye-feral.svg"
  34019. },
  34020. form: "feral",
  34021. },
  34022. },
  34023. [
  34024. {
  34025. name: "Normal",
  34026. height: math.unit(7, "feet"),
  34027. default: true,
  34028. form: "anthro"
  34029. },
  34030. {
  34031. name: "Normal",
  34032. height: math.unit(16, "feet"),
  34033. default: true,
  34034. form: "feral"
  34035. },
  34036. ],
  34037. {
  34038. "anthro": {
  34039. name: "Anthro",
  34040. default: true
  34041. },
  34042. "feral": {
  34043. name: "Feral",
  34044. }
  34045. }
  34046. ))
  34047. characterMakers.push(() => makeCharacter(
  34048. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34049. {
  34050. side: {
  34051. height: math.unit(47.2, "meters"),
  34052. weight: math.unit(10000, "tons"),
  34053. name: "Side",
  34054. image: {
  34055. source: "./media/characters/raylldo/side.svg",
  34056. extra: 2363/642,
  34057. bottom: 221/2584
  34058. }
  34059. },
  34060. top: {
  34061. height: math.unit(240, "meters"),
  34062. weight: math.unit(10000, "tons"),
  34063. name: "Top",
  34064. image: {
  34065. source: "./media/characters/raylldo/top.svg"
  34066. }
  34067. },
  34068. bottom: {
  34069. height: math.unit(240, "meters"),
  34070. weight: math.unit(10000, "tons"),
  34071. name: "Bottom",
  34072. image: {
  34073. source: "./media/characters/raylldo/bottom.svg"
  34074. }
  34075. },
  34076. head: {
  34077. height: math.unit(38.6, "meters"),
  34078. name: "Head",
  34079. image: {
  34080. source: "./media/characters/raylldo/head.svg",
  34081. extra: 1335/1112,
  34082. bottom: 0/1335
  34083. }
  34084. },
  34085. maw: {
  34086. height: math.unit(16.37, "meters"),
  34087. name: "Maw",
  34088. image: {
  34089. source: "./media/characters/raylldo/maw.svg",
  34090. extra: 883/660,
  34091. bottom: 0/883
  34092. },
  34093. extraAttributes: {
  34094. preyCapacity: {
  34095. name: "Capacity",
  34096. power: 3,
  34097. type: "volume",
  34098. base: math.unit(1000, "people")
  34099. },
  34100. tongueSize: {
  34101. name: "Tongue Size",
  34102. power: 2,
  34103. type: "area",
  34104. base: math.unit(21, "m^2")
  34105. }
  34106. }
  34107. },
  34108. forepaw: {
  34109. height: math.unit(18, "meters"),
  34110. name: "Forepaw",
  34111. image: {
  34112. source: "./media/characters/raylldo/forepaw.svg"
  34113. }
  34114. },
  34115. hindpaw: {
  34116. height: math.unit(23, "meters"),
  34117. name: "Hindpaw",
  34118. image: {
  34119. source: "./media/characters/raylldo/hindpaw.svg"
  34120. }
  34121. },
  34122. genitals: {
  34123. height: math.unit(42, "meters"),
  34124. name: "Genitals",
  34125. image: {
  34126. source: "./media/characters/raylldo/genitals.svg"
  34127. }
  34128. },
  34129. },
  34130. [
  34131. {
  34132. name: "Normal",
  34133. height: math.unit(47.2, "meters"),
  34134. default: true
  34135. },
  34136. ]
  34137. ))
  34138. characterMakers.push(() => makeCharacter(
  34139. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34140. {
  34141. anthroFront: {
  34142. height: math.unit(9, "feet"),
  34143. weight: math.unit(600, "lb"),
  34144. name: "Anthro (Front)",
  34145. image: {
  34146. source: "./media/characters/glint/anthro-front.svg",
  34147. extra: 1097/1018,
  34148. bottom: 28/1125
  34149. }
  34150. },
  34151. anthroBack: {
  34152. height: math.unit(9, "feet"),
  34153. weight: math.unit(600, "lb"),
  34154. name: "Anthro (Back)",
  34155. image: {
  34156. source: "./media/characters/glint/anthro-back.svg",
  34157. extra: 1154/997,
  34158. bottom: 36/1190
  34159. }
  34160. },
  34161. feral: {
  34162. height: math.unit(11, "feet"),
  34163. weight: math.unit(50000, "lb"),
  34164. name: "Feral",
  34165. image: {
  34166. source: "./media/characters/glint/feral.svg",
  34167. extra: 3035/1585,
  34168. bottom: 1169/4204
  34169. }
  34170. },
  34171. dickAnthro: {
  34172. height: math.unit(0.7, "meters"),
  34173. name: "Dick (Anthro)",
  34174. image: {
  34175. source: "./media/characters/glint/dick-anthro.svg"
  34176. }
  34177. },
  34178. dickFeral: {
  34179. height: math.unit(2.65, "meters"),
  34180. name: "Dick (Feral)",
  34181. image: {
  34182. source: "./media/characters/glint/dick-feral.svg"
  34183. }
  34184. },
  34185. slitHidden: {
  34186. height: math.unit(5.85, "meters"),
  34187. name: "Slit (Hidden)",
  34188. image: {
  34189. source: "./media/characters/glint/slit-hidden.svg"
  34190. }
  34191. },
  34192. slitErect: {
  34193. height: math.unit(5.85, "meters"),
  34194. name: "Slit (Erect)",
  34195. image: {
  34196. source: "./media/characters/glint/slit-erect.svg"
  34197. }
  34198. },
  34199. mawAnthro: {
  34200. height: math.unit(0.63, "meters"),
  34201. name: "Maw (Anthro)",
  34202. image: {
  34203. source: "./media/characters/glint/maw.svg"
  34204. }
  34205. },
  34206. mawFeral: {
  34207. height: math.unit(2.89, "meters"),
  34208. name: "Maw (Feral)",
  34209. image: {
  34210. source: "./media/characters/glint/maw.svg"
  34211. }
  34212. },
  34213. },
  34214. [
  34215. {
  34216. name: "Normal",
  34217. height: math.unit(9, "feet"),
  34218. default: true
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34224. {
  34225. side: {
  34226. height: math.unit(15, "feet"),
  34227. weight: math.unit(5000, "kg"),
  34228. name: "Side",
  34229. image: {
  34230. source: "./media/characters/kairne/side.svg",
  34231. extra: 979/811,
  34232. bottom: 13/992
  34233. }
  34234. },
  34235. front: {
  34236. height: math.unit(15, "feet"),
  34237. weight: math.unit(5000, "kg"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/kairne/front.svg",
  34241. extra: 908/814,
  34242. bottom: 26/934
  34243. }
  34244. },
  34245. sideNsfw: {
  34246. height: math.unit(15, "feet"),
  34247. weight: math.unit(5000, "kg"),
  34248. name: "Side (NSFW)",
  34249. image: {
  34250. source: "./media/characters/kairne/side-nsfw.svg",
  34251. extra: 979/811,
  34252. bottom: 13/992
  34253. }
  34254. },
  34255. frontNsfw: {
  34256. height: math.unit(15, "feet"),
  34257. weight: math.unit(5000, "kg"),
  34258. name: "Front (NSFW)",
  34259. image: {
  34260. source: "./media/characters/kairne/front-nsfw.svg",
  34261. extra: 908/814,
  34262. bottom: 26/934
  34263. }
  34264. },
  34265. dickCaged: {
  34266. height: math.unit(0.65, "meters"),
  34267. name: "Dick-caged",
  34268. image: {
  34269. source: "./media/characters/kairne/dick-caged.svg"
  34270. }
  34271. },
  34272. dick: {
  34273. height: math.unit(0.79, "meters"),
  34274. name: "Dick",
  34275. image: {
  34276. source: "./media/characters/kairne/dick.svg"
  34277. }
  34278. },
  34279. genitals: {
  34280. height: math.unit(1.29, "meters"),
  34281. name: "Genitals",
  34282. image: {
  34283. source: "./media/characters/kairne/genitals.svg"
  34284. }
  34285. },
  34286. maw: {
  34287. height: math.unit(1.73, "meters"),
  34288. name: "Maw",
  34289. image: {
  34290. source: "./media/characters/kairne/maw.svg"
  34291. }
  34292. },
  34293. },
  34294. [
  34295. {
  34296. name: "Normal",
  34297. height: math.unit(15, "feet"),
  34298. default: true
  34299. },
  34300. ]
  34301. ))
  34302. characterMakers.push(() => makeCharacter(
  34303. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34304. {
  34305. front: {
  34306. height: math.unit(5 + 8/12, "feet"),
  34307. weight: math.unit(139, "lb"),
  34308. name: "Front",
  34309. image: {
  34310. source: "./media/characters/biscuit-jackal/front.svg",
  34311. extra: 2106/1961,
  34312. bottom: 58/2164
  34313. }
  34314. },
  34315. back: {
  34316. height: math.unit(5 + 8/12, "feet"),
  34317. weight: math.unit(139, "lb"),
  34318. name: "Back",
  34319. image: {
  34320. source: "./media/characters/biscuit-jackal/back.svg",
  34321. extra: 2132/1976,
  34322. bottom: 57/2189
  34323. }
  34324. },
  34325. werejackal: {
  34326. height: math.unit(6 + 3/12, "feet"),
  34327. weight: math.unit(188, "lb"),
  34328. name: "Werejackal",
  34329. image: {
  34330. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34331. extra: 2373/2178,
  34332. bottom: 53/2426
  34333. }
  34334. },
  34335. },
  34336. [
  34337. {
  34338. name: "Normal",
  34339. height: math.unit(5 + 8/12, "feet"),
  34340. default: true
  34341. },
  34342. ]
  34343. ))
  34344. characterMakers.push(() => makeCharacter(
  34345. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34346. {
  34347. front: {
  34348. height: math.unit(140, "cm"),
  34349. weight: math.unit(45, "kg"),
  34350. name: "Front",
  34351. image: {
  34352. source: "./media/characters/tayra-white/front.svg",
  34353. extra: 2229/2192,
  34354. bottom: 75/2304
  34355. }
  34356. },
  34357. },
  34358. [
  34359. {
  34360. name: "Normal",
  34361. height: math.unit(140, "cm"),
  34362. default: true
  34363. },
  34364. ]
  34365. ))
  34366. characterMakers.push(() => makeCharacter(
  34367. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34368. {
  34369. front: {
  34370. height: math.unit(4 + 5/12, "feet"),
  34371. name: "Front",
  34372. image: {
  34373. source: "./media/characters/scoop/front.svg",
  34374. extra: 1257/1136,
  34375. bottom: 69/1326
  34376. }
  34377. },
  34378. back: {
  34379. height: math.unit(4 + 5/12, "feet"),
  34380. name: "Back",
  34381. image: {
  34382. source: "./media/characters/scoop/back.svg",
  34383. extra: 1321/1152,
  34384. bottom: 32/1353
  34385. }
  34386. },
  34387. maw: {
  34388. height: math.unit(0.68, "feet"),
  34389. name: "Maw",
  34390. image: {
  34391. source: "./media/characters/scoop/maw.svg"
  34392. }
  34393. },
  34394. },
  34395. [
  34396. {
  34397. name: "Really Small",
  34398. height: math.unit(1, "mm")
  34399. },
  34400. {
  34401. name: "Micro",
  34402. height: math.unit(1, "inch")
  34403. },
  34404. {
  34405. name: "Normal",
  34406. height: math.unit(4 + 5/12, "feet"),
  34407. default: true
  34408. },
  34409. {
  34410. name: "Macro",
  34411. height: math.unit(200, "feet")
  34412. },
  34413. {
  34414. name: "Megamacro",
  34415. height: math.unit(3240, "feet")
  34416. },
  34417. {
  34418. name: "Teramacro",
  34419. height: math.unit(2500, "miles")
  34420. },
  34421. ]
  34422. ))
  34423. characterMakers.push(() => makeCharacter(
  34424. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34425. {
  34426. front: {
  34427. height: math.unit(15 + 7/12, "feet"),
  34428. weight: math.unit(1150, "tons"),
  34429. name: "Front",
  34430. image: {
  34431. source: "./media/characters/saphinara/front.svg",
  34432. extra: 1837/1643,
  34433. bottom: 84/1921
  34434. },
  34435. form: "normal",
  34436. default: true
  34437. },
  34438. side: {
  34439. height: math.unit(15 + 7/12, "feet"),
  34440. weight: math.unit(1150, "tons"),
  34441. name: "Side",
  34442. image: {
  34443. source: "./media/characters/saphinara/side.svg",
  34444. extra: 605/547,
  34445. bottom: 6/611
  34446. },
  34447. form: "normal"
  34448. },
  34449. back: {
  34450. height: math.unit(15 + 7/12, "feet"),
  34451. weight: math.unit(1150, "tons"),
  34452. name: "Back",
  34453. image: {
  34454. source: "./media/characters/saphinara/back.svg",
  34455. extra: 591/531,
  34456. bottom: 13/604
  34457. },
  34458. form: "normal"
  34459. },
  34460. frontTail: {
  34461. height: math.unit(15 + 7/12, "feet"),
  34462. weight: math.unit(1150, "tons"),
  34463. name: "Front (Full Tail)",
  34464. image: {
  34465. source: "./media/characters/saphinara/front-tail.svg",
  34466. extra: 2256/1630,
  34467. bottom: 261/2517
  34468. },
  34469. form: "normal"
  34470. },
  34471. insides: {
  34472. height: math.unit(11.92, "feet"),
  34473. name: "Insides",
  34474. image: {
  34475. source: "./media/characters/saphinara/insides.svg"
  34476. },
  34477. form: "normal"
  34478. },
  34479. head: {
  34480. height: math.unit(4.17, "feet"),
  34481. name: "Head",
  34482. image: {
  34483. source: "./media/characters/saphinara/head.svg"
  34484. },
  34485. form: "normal"
  34486. },
  34487. tongue: {
  34488. height: math.unit(4.60, "feet"),
  34489. name: "Tongue",
  34490. image: {
  34491. source: "./media/characters/saphinara/tongue.svg"
  34492. },
  34493. form: "normal"
  34494. },
  34495. headEnraged: {
  34496. height: math.unit(5.55, "feet"),
  34497. name: "Head (Enraged)",
  34498. image: {
  34499. source: "./media/characters/saphinara/head-enraged.svg"
  34500. },
  34501. form: "normal"
  34502. },
  34503. wings: {
  34504. height: math.unit(11.95, "feet"),
  34505. name: "Wings",
  34506. image: {
  34507. source: "./media/characters/saphinara/wings.svg"
  34508. },
  34509. form: "normal"
  34510. },
  34511. feathers: {
  34512. height: math.unit(8.92, "feet"),
  34513. name: "Feathers",
  34514. image: {
  34515. source: "./media/characters/saphinara/feathers.svg"
  34516. },
  34517. form: "normal"
  34518. },
  34519. shackles: {
  34520. height: math.unit(2, "feet"),
  34521. name: "Shackles",
  34522. image: {
  34523. source: "./media/characters/saphinara/shackles.svg"
  34524. },
  34525. form: "normal"
  34526. },
  34527. eyes: {
  34528. height: math.unit(1.331, "feet"),
  34529. name: "Eyes",
  34530. image: {
  34531. source: "./media/characters/saphinara/eyes.svg"
  34532. },
  34533. form: "normal"
  34534. },
  34535. eyesEnraged: {
  34536. height: math.unit(1.331, "feet"),
  34537. name: "Eyes (Enraged)",
  34538. image: {
  34539. source: "./media/characters/saphinara/eyes-enraged.svg"
  34540. },
  34541. form: "normal"
  34542. },
  34543. trueFormSide: {
  34544. height: math.unit(200, "feet"),
  34545. weight: math.unit(1e7, "tons"),
  34546. name: "Side",
  34547. image: {
  34548. source: "./media/characters/saphinara/true-form-side.svg",
  34549. extra: 1399/770,
  34550. bottom: 97/1496
  34551. },
  34552. form: "true-form",
  34553. default: true
  34554. },
  34555. trueFormMaw: {
  34556. height: math.unit(71.5, "feet"),
  34557. name: "Maw",
  34558. image: {
  34559. source: "./media/characters/saphinara/true-form-maw.svg",
  34560. extra: 2302/1453,
  34561. bottom: 0/2302
  34562. },
  34563. form: "true-form"
  34564. },
  34565. meowberusSide: {
  34566. height: math.unit(75, "feet"),
  34567. weight: math.unit(180000, "kg"),
  34568. preyCapacity: math.unit(50000, "people"),
  34569. name: "Side",
  34570. image: {
  34571. source: "./media/characters/saphinara/meowberus-side.svg",
  34572. extra: 1400/711,
  34573. bottom: 126/1526
  34574. },
  34575. form: "meowberus",
  34576. extraAttributes: {
  34577. "pawArea": {
  34578. name: "Paw Size",
  34579. power: 2,
  34580. type: "area",
  34581. base: math.unit(35, "m^2")
  34582. }
  34583. }
  34584. },
  34585. },
  34586. [
  34587. {
  34588. name: "Normal",
  34589. height: math.unit(15 + 7/12, "feet"),
  34590. default: true,
  34591. form: "normal"
  34592. },
  34593. {
  34594. name: "Angry",
  34595. height: math.unit(30 + 6/12, "feet"),
  34596. form: "normal"
  34597. },
  34598. {
  34599. name: "Enraged",
  34600. height: math.unit(102 + 1/12, "feet"),
  34601. form: "normal"
  34602. },
  34603. {
  34604. name: "True",
  34605. height: math.unit(200, "feet"),
  34606. default: true,
  34607. form: "true-form"
  34608. },
  34609. {
  34610. name: "Normal",
  34611. height: math.unit(75, "feet"),
  34612. default: true,
  34613. form: "meowberus"
  34614. },
  34615. ],
  34616. {
  34617. "normal": {
  34618. name: "Normal",
  34619. default: true
  34620. },
  34621. "true-form": {
  34622. name: "True Form"
  34623. },
  34624. "meowberus": {
  34625. name: "Meowberus",
  34626. },
  34627. }
  34628. ))
  34629. characterMakers.push(() => makeCharacter(
  34630. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34631. {
  34632. front: {
  34633. height: math.unit(6 + 8/12, "feet"),
  34634. weight: math.unit(300, "lb"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/jrain/front.svg",
  34638. extra: 3039/2865,
  34639. bottom: 399/3438
  34640. }
  34641. },
  34642. back: {
  34643. height: math.unit(6 + 8/12, "feet"),
  34644. weight: math.unit(300, "lb"),
  34645. name: "Back",
  34646. image: {
  34647. source: "./media/characters/jrain/back.svg",
  34648. extra: 3089/2938,
  34649. bottom: 172/3261
  34650. }
  34651. },
  34652. head: {
  34653. height: math.unit(2.14, "feet"),
  34654. name: "Head",
  34655. image: {
  34656. source: "./media/characters/jrain/head.svg"
  34657. }
  34658. },
  34659. maw: {
  34660. height: math.unit(1.77, "feet"),
  34661. name: "Maw",
  34662. image: {
  34663. source: "./media/characters/jrain/maw.svg"
  34664. }
  34665. },
  34666. leftHand: {
  34667. height: math.unit(1.1, "feet"),
  34668. name: "Left Hand",
  34669. image: {
  34670. source: "./media/characters/jrain/left-hand.svg"
  34671. }
  34672. },
  34673. rightHand: {
  34674. height: math.unit(1.1, "feet"),
  34675. name: "Right Hand",
  34676. image: {
  34677. source: "./media/characters/jrain/right-hand.svg"
  34678. }
  34679. },
  34680. eye: {
  34681. height: math.unit(0.35, "feet"),
  34682. name: "Eye",
  34683. image: {
  34684. source: "./media/characters/jrain/eye.svg"
  34685. }
  34686. },
  34687. },
  34688. [
  34689. {
  34690. name: "Normal",
  34691. height: math.unit(6 + 8/12, "feet"),
  34692. default: true
  34693. },
  34694. {
  34695. name: "Casually Large",
  34696. height: math.unit(25, "feet")
  34697. },
  34698. {
  34699. name: "Giant",
  34700. height: math.unit(100, "feet")
  34701. },
  34702. {
  34703. name: "Kaiju",
  34704. height: math.unit(300, "feet")
  34705. },
  34706. ]
  34707. ))
  34708. characterMakers.push(() => makeCharacter(
  34709. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34710. {
  34711. dragon: {
  34712. height: math.unit(5, "meters"),
  34713. name: "Dragon",
  34714. image: {
  34715. source: "./media/characters/sabrina/dragon.svg",
  34716. extra: 3670 / 2365,
  34717. bottom: 333 / 4003
  34718. }
  34719. },
  34720. gryphon: {
  34721. height: math.unit(3, "meters"),
  34722. name: "Gryphon",
  34723. image: {
  34724. source: "./media/characters/sabrina/gryphon.svg",
  34725. extra: 1576 / 945,
  34726. bottom: 71 / 1647
  34727. }
  34728. },
  34729. snake: {
  34730. height: math.unit(12, "meters"),
  34731. name: "Snake",
  34732. image: {
  34733. source: "./media/characters/sabrina/snake.svg",
  34734. extra: 1758 / 1320,
  34735. bottom: 186 / 1944
  34736. }
  34737. },
  34738. collar: {
  34739. height: math.unit(1.86, "meters"),
  34740. name: "Collar",
  34741. image: {
  34742. source: "./media/characters/sabrina/collar.svg"
  34743. }
  34744. },
  34745. eye: {
  34746. height: math.unit(0.53, "meters"),
  34747. name: "Eye",
  34748. image: {
  34749. source: "./media/characters/sabrina/eye.svg"
  34750. }
  34751. },
  34752. foot: {
  34753. height: math.unit(1.86, "meters"),
  34754. name: "Foot",
  34755. image: {
  34756. source: "./media/characters/sabrina/foot.svg"
  34757. }
  34758. },
  34759. hand: {
  34760. height: math.unit(1.32, "meters"),
  34761. name: "Hand",
  34762. image: {
  34763. source: "./media/characters/sabrina/hand.svg"
  34764. }
  34765. },
  34766. head: {
  34767. height: math.unit(2.44, "meters"),
  34768. name: "Head",
  34769. image: {
  34770. source: "./media/characters/sabrina/head.svg"
  34771. }
  34772. },
  34773. headAngry: {
  34774. height: math.unit(2.44, "meters"),
  34775. name: "Head (Angry))",
  34776. image: {
  34777. source: "./media/characters/sabrina/head-angry.svg"
  34778. }
  34779. },
  34780. maw: {
  34781. height: math.unit(1.65, "meters"),
  34782. name: "Maw",
  34783. image: {
  34784. source: "./media/characters/sabrina/maw.svg"
  34785. }
  34786. },
  34787. spikes: {
  34788. height: math.unit(1.69, "meters"),
  34789. name: "Spikes",
  34790. image: {
  34791. source: "./media/characters/sabrina/spikes.svg"
  34792. }
  34793. },
  34794. stomach: {
  34795. height: math.unit(1.15, "meters"),
  34796. name: "Stomach",
  34797. image: {
  34798. source: "./media/characters/sabrina/stomach.svg"
  34799. }
  34800. },
  34801. tongue: {
  34802. height: math.unit(1.27, "meters"),
  34803. name: "Tongue",
  34804. image: {
  34805. source: "./media/characters/sabrina/tongue.svg"
  34806. }
  34807. },
  34808. wingDorsal: {
  34809. height: math.unit(4.85, "meters"),
  34810. name: "Wing (Dorsal)",
  34811. image: {
  34812. source: "./media/characters/sabrina/wing-dorsal.svg"
  34813. }
  34814. },
  34815. wingVentral: {
  34816. height: math.unit(4.85, "meters"),
  34817. name: "Wing (Ventral)",
  34818. image: {
  34819. source: "./media/characters/sabrina/wing-ventral.svg"
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(5, "meters"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34833. {
  34834. frontMaid: {
  34835. height: math.unit(5 + 5/12, "feet"),
  34836. weight: math.unit(130, "lb"),
  34837. name: "Front (Maid)",
  34838. image: {
  34839. source: "./media/characters/midnight-tales/front-maid.svg",
  34840. extra: 489/454,
  34841. bottom: 61/550
  34842. }
  34843. },
  34844. frontFormal: {
  34845. height: math.unit(5 + 5/12, "feet"),
  34846. weight: math.unit(130, "lb"),
  34847. name: "Front (Formal)",
  34848. image: {
  34849. source: "./media/characters/midnight-tales/front-formal.svg",
  34850. extra: 489/454,
  34851. bottom: 61/550
  34852. }
  34853. },
  34854. back: {
  34855. height: math.unit(5 + 5/12, "feet"),
  34856. weight: math.unit(130, "lb"),
  34857. name: "Back",
  34858. image: {
  34859. source: "./media/characters/midnight-tales/back.svg",
  34860. extra: 498/456,
  34861. bottom: 33/531
  34862. }
  34863. },
  34864. frontBeast: {
  34865. height: math.unit(40, "feet"),
  34866. weight: math.unit(64000, "lb"),
  34867. name: "Front (Beast)",
  34868. image: {
  34869. source: "./media/characters/midnight-tales/front-beast.svg",
  34870. extra: 927/860,
  34871. bottom: 53/980
  34872. }
  34873. },
  34874. backBeast: {
  34875. height: math.unit(40, "feet"),
  34876. weight: math.unit(64000, "lb"),
  34877. name: "Back (Beast)",
  34878. image: {
  34879. source: "./media/characters/midnight-tales/back-beast.svg",
  34880. extra: 929/855,
  34881. bottom: 16/945
  34882. }
  34883. },
  34884. footBeast: {
  34885. height: math.unit(6.7, "feet"),
  34886. name: "Foot (Beast)",
  34887. image: {
  34888. source: "./media/characters/midnight-tales/foot-beast.svg"
  34889. }
  34890. },
  34891. headBeast: {
  34892. height: math.unit(8, "feet"),
  34893. name: "Head (Beast)",
  34894. image: {
  34895. source: "./media/characters/midnight-tales/head-beast.svg"
  34896. }
  34897. },
  34898. },
  34899. [
  34900. {
  34901. name: "Normal",
  34902. height: math.unit(5 + 5 / 12, "feet"),
  34903. default: true
  34904. },
  34905. {
  34906. name: "Macro",
  34907. height: math.unit(25, "feet")
  34908. },
  34909. ]
  34910. ))
  34911. characterMakers.push(() => makeCharacter(
  34912. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34913. {
  34914. front: {
  34915. height: math.unit(5 + 10/12, "feet"),
  34916. name: "Front",
  34917. image: {
  34918. source: "./media/characters/argon/front.svg",
  34919. extra: 2009/1935,
  34920. bottom: 118/2127
  34921. }
  34922. },
  34923. back: {
  34924. height: math.unit(5 + 10/12, "feet"),
  34925. name: "Back",
  34926. image: {
  34927. source: "./media/characters/argon/back.svg",
  34928. extra: 2047/1992,
  34929. bottom: 20/2067
  34930. }
  34931. },
  34932. frontDressed: {
  34933. height: math.unit(5 + 10/12, "feet"),
  34934. name: "Front (Dressed)",
  34935. image: {
  34936. source: "./media/characters/argon/front-dressed.svg",
  34937. extra: 2009/1935,
  34938. bottom: 118/2127
  34939. }
  34940. },
  34941. },
  34942. [
  34943. {
  34944. name: "Normal",
  34945. height: math.unit(5 + 10/12, "feet"),
  34946. default: true
  34947. },
  34948. ]
  34949. ))
  34950. characterMakers.push(() => makeCharacter(
  34951. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34952. {
  34953. front: {
  34954. height: math.unit(8 + 6/12, "feet"),
  34955. weight: math.unit(1150, "lb"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/kichi/front.svg",
  34959. extra: 1267/1164,
  34960. bottom: 61/1328
  34961. }
  34962. },
  34963. back: {
  34964. height: math.unit(8 + 6/12, "feet"),
  34965. weight: math.unit(1150, "lb"),
  34966. name: "Back",
  34967. image: {
  34968. source: "./media/characters/kichi/back.svg",
  34969. extra: 1273/1166,
  34970. bottom: 33/1306
  34971. }
  34972. },
  34973. },
  34974. [
  34975. {
  34976. name: "Normal",
  34977. height: math.unit(8 + 6/12, "feet"),
  34978. default: true
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34984. {
  34985. front: {
  34986. height: math.unit(6, "feet"),
  34987. weight: math.unit(210, "lb"),
  34988. name: "Front",
  34989. image: {
  34990. source: "./media/characters/manetel-greyscale/front.svg",
  34991. extra: 350/312,
  34992. bottom: 8/358
  34993. }
  34994. },
  34995. },
  34996. [
  34997. {
  34998. name: "Micro",
  34999. height: math.unit(2, "inches")
  35000. },
  35001. {
  35002. name: "Normal",
  35003. height: math.unit(6, "feet"),
  35004. default: true
  35005. },
  35006. {
  35007. name: "Minimacro",
  35008. height: math.unit(17, "feet")
  35009. },
  35010. {
  35011. name: "Macro",
  35012. height: math.unit(117, "feet")
  35013. },
  35014. ]
  35015. ))
  35016. characterMakers.push(() => makeCharacter(
  35017. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35018. {
  35019. side: {
  35020. height: math.unit(5 + 1/12, "feet"),
  35021. weight: math.unit(418, "lb"),
  35022. name: "Side",
  35023. image: {
  35024. source: "./media/characters/softpurr/side.svg",
  35025. extra: 1993/1945,
  35026. bottom: 134/2127
  35027. }
  35028. },
  35029. front: {
  35030. height: math.unit(5 + 1/12, "feet"),
  35031. weight: math.unit(418, "lb"),
  35032. name: "Front",
  35033. image: {
  35034. source: "./media/characters/softpurr/front.svg",
  35035. extra: 1950/1856,
  35036. bottom: 174/2124
  35037. }
  35038. },
  35039. paw: {
  35040. height: math.unit(1, "feet"),
  35041. name: "Paw",
  35042. image: {
  35043. source: "./media/characters/softpurr/paw.svg"
  35044. }
  35045. },
  35046. },
  35047. [
  35048. {
  35049. name: "Normal",
  35050. height: math.unit(5 + 1/12, "feet"),
  35051. default: true
  35052. },
  35053. ]
  35054. ))
  35055. characterMakers.push(() => makeCharacter(
  35056. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35057. {
  35058. front: {
  35059. height: math.unit(260, "meters"),
  35060. name: "Front",
  35061. image: {
  35062. source: "./media/characters/anahita/front.svg",
  35063. extra: 665/635,
  35064. bottom: 89/754
  35065. }
  35066. },
  35067. },
  35068. [
  35069. {
  35070. name: "Macro",
  35071. height: math.unit(260, "meters"),
  35072. default: true
  35073. },
  35074. ]
  35075. ))
  35076. characterMakers.push(() => makeCharacter(
  35077. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35078. {
  35079. front: {
  35080. height: math.unit(4 + 10/12, "feet"),
  35081. weight: math.unit(160, "lb"),
  35082. name: "Front",
  35083. image: {
  35084. source: "./media/characters/chip-mouse/front.svg",
  35085. extra: 3528/3408,
  35086. bottom: 0/3528
  35087. }
  35088. },
  35089. frontNsfw: {
  35090. height: math.unit(4 + 10/12, "feet"),
  35091. weight: math.unit(160, "lb"),
  35092. name: "Front (NSFW)",
  35093. image: {
  35094. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35095. extra: 3528/3408,
  35096. bottom: 0/3528
  35097. }
  35098. },
  35099. },
  35100. [
  35101. {
  35102. name: "Normal",
  35103. height: math.unit(4 + 10/12, "feet"),
  35104. default: true
  35105. },
  35106. ]
  35107. ))
  35108. characterMakers.push(() => makeCharacter(
  35109. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35110. {
  35111. side: {
  35112. height: math.unit(10, "feet"),
  35113. weight: math.unit(14000, "lb"),
  35114. name: "Side",
  35115. image: {
  35116. source: "./media/characters/kremm/side.svg",
  35117. extra: 1390/1053,
  35118. bottom: 90/1480
  35119. }
  35120. },
  35121. gut: {
  35122. height: math.unit(5.8, "feet"),
  35123. name: "Gut",
  35124. image: {
  35125. source: "./media/characters/kremm/gut.svg"
  35126. }
  35127. },
  35128. ass: {
  35129. height: math.unit(6.1, "feet"),
  35130. name: "Ass",
  35131. image: {
  35132. source: "./media/characters/kremm/ass.svg"
  35133. }
  35134. },
  35135. jaws: {
  35136. height: math.unit(2.2, "feet"),
  35137. name: "Jaws",
  35138. image: {
  35139. source: "./media/characters/kremm/jaws.svg"
  35140. }
  35141. },
  35142. dick: {
  35143. height: math.unit(4.26, "feet"),
  35144. name: "Dick",
  35145. image: {
  35146. source: "./media/characters/kremm/dick.svg"
  35147. }
  35148. },
  35149. },
  35150. [
  35151. {
  35152. name: "Normal",
  35153. height: math.unit(10, "feet"),
  35154. default: true
  35155. },
  35156. ]
  35157. ))
  35158. characterMakers.push(() => makeCharacter(
  35159. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35160. {
  35161. front: {
  35162. height: math.unit(30, "stories"),
  35163. name: "Front",
  35164. image: {
  35165. source: "./media/characters/kai/front.svg",
  35166. extra: 1892/1718,
  35167. bottom: 162/2054
  35168. }
  35169. },
  35170. },
  35171. [
  35172. {
  35173. name: "Macro",
  35174. height: math.unit(30, "stories"),
  35175. default: true
  35176. },
  35177. ]
  35178. ))
  35179. characterMakers.push(() => makeCharacter(
  35180. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35181. {
  35182. front: {
  35183. height: math.unit(6 + 4/12, "feet"),
  35184. weight: math.unit(145, "lb"),
  35185. name: "Front",
  35186. image: {
  35187. source: "./media/characters/sykes/front.svg",
  35188. extra: 1321 / 1187,
  35189. bottom: 66 / 1387
  35190. }
  35191. },
  35192. back: {
  35193. height: math.unit(6 + 4/12, "feet"),
  35194. weight: math.unit(145, "lb"),
  35195. name: "Back",
  35196. image: {
  35197. source: "./media/characters/sykes/back.svg",
  35198. extra: 1326/1181,
  35199. bottom: 31/1357
  35200. }
  35201. },
  35202. traditionalOutfit: {
  35203. height: math.unit(6 + 4/12, "feet"),
  35204. weight: math.unit(145, "lb"),
  35205. name: "Traditional Outfit",
  35206. image: {
  35207. source: "./media/characters/sykes/traditional-outfit.svg",
  35208. extra: 1321 / 1187,
  35209. bottom: 66 / 1387
  35210. }
  35211. },
  35212. adventureOutfit: {
  35213. height: math.unit(6 + 4/12, "feet"),
  35214. weight: math.unit(145, "lb"),
  35215. name: "Adventure Outfit",
  35216. image: {
  35217. source: "./media/characters/sykes/adventure-outfit.svg",
  35218. extra: 1321 / 1187,
  35219. bottom: 66 / 1387
  35220. }
  35221. },
  35222. handLeft: {
  35223. height: math.unit(0.9, "feet"),
  35224. name: "Hand (Left)",
  35225. image: {
  35226. source: "./media/characters/sykes/hand-left.svg"
  35227. }
  35228. },
  35229. handRight: {
  35230. height: math.unit(0.839, "feet"),
  35231. name: "Hand (Right)",
  35232. image: {
  35233. source: "./media/characters/sykes/hand-right.svg"
  35234. }
  35235. },
  35236. leftFoot: {
  35237. height: math.unit(1.2, "feet"),
  35238. name: "Foot (Left)",
  35239. image: {
  35240. source: "./media/characters/sykes/foot-left.svg"
  35241. }
  35242. },
  35243. rightFoot: {
  35244. height: math.unit(1.2, "feet"),
  35245. name: "Foot (Right)",
  35246. image: {
  35247. source: "./media/characters/sykes/foot-right.svg"
  35248. }
  35249. },
  35250. maw: {
  35251. height: math.unit(1.93, "feet"),
  35252. name: "Maw",
  35253. image: {
  35254. source: "./media/characters/sykes/maw.svg"
  35255. }
  35256. },
  35257. teeth: {
  35258. height: math.unit(0.51, "feet"),
  35259. name: "Teeth",
  35260. image: {
  35261. source: "./media/characters/sykes/teeth.svg"
  35262. }
  35263. },
  35264. tongue: {
  35265. height: math.unit(2.13, "feet"),
  35266. name: "Tongue",
  35267. image: {
  35268. source: "./media/characters/sykes/tongue.svg"
  35269. }
  35270. },
  35271. uvula: {
  35272. height: math.unit(0.16, "feet"),
  35273. name: "Uvula",
  35274. image: {
  35275. source: "./media/characters/sykes/uvula.svg"
  35276. }
  35277. },
  35278. collar: {
  35279. height: math.unit(0.287, "feet"),
  35280. name: "Collar",
  35281. image: {
  35282. source: "./media/characters/sykes/collar.svg"
  35283. }
  35284. },
  35285. tail: {
  35286. height: math.unit(3.8, "feet"),
  35287. name: "Tail",
  35288. image: {
  35289. source: "./media/characters/sykes/tail.svg"
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Shrunken",
  35296. height: math.unit(5, "inches")
  35297. },
  35298. {
  35299. name: "Normal",
  35300. height: math.unit(6 + 4 / 12, "feet"),
  35301. default: true
  35302. },
  35303. {
  35304. name: "Big",
  35305. height: math.unit(15, "feet")
  35306. },
  35307. ]
  35308. ))
  35309. characterMakers.push(() => makeCharacter(
  35310. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35311. {
  35312. front: {
  35313. height: math.unit(5 + 8/12, "feet"),
  35314. weight: math.unit(190, "lb"),
  35315. name: "Front",
  35316. image: {
  35317. source: "./media/characters/oven-otter/front.svg",
  35318. extra: 1809/1740,
  35319. bottom: 181/1990
  35320. }
  35321. },
  35322. back: {
  35323. height: math.unit(5 + 8/12, "feet"),
  35324. weight: math.unit(190, "lb"),
  35325. name: "Back",
  35326. image: {
  35327. source: "./media/characters/oven-otter/back.svg",
  35328. extra: 1709/1635,
  35329. bottom: 118/1827
  35330. }
  35331. },
  35332. hand: {
  35333. height: math.unit(1.07, "feet"),
  35334. name: "Hand",
  35335. image: {
  35336. source: "./media/characters/oven-otter/hand.svg"
  35337. }
  35338. },
  35339. beans: {
  35340. height: math.unit(1.74, "feet"),
  35341. name: "Beans",
  35342. image: {
  35343. source: "./media/characters/oven-otter/beans.svg"
  35344. }
  35345. },
  35346. },
  35347. [
  35348. {
  35349. name: "Micro",
  35350. height: math.unit(0.5, "inches")
  35351. },
  35352. {
  35353. name: "Normal",
  35354. height: math.unit(5 + 8/12, "feet"),
  35355. default: true
  35356. },
  35357. {
  35358. name: "Macro",
  35359. height: math.unit(250, "feet")
  35360. },
  35361. {
  35362. name: "Really High",
  35363. height: math.unit(420, "feet")
  35364. },
  35365. ]
  35366. ))
  35367. characterMakers.push(() => makeCharacter(
  35368. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35369. {
  35370. front: {
  35371. height: math.unit(5, "meters"),
  35372. weight: math.unit(292000000000000, "kg"),
  35373. name: "Front",
  35374. image: {
  35375. source: "./media/characters/devourer/front.svg",
  35376. extra: 1800/1733,
  35377. bottom: 211/2011
  35378. }
  35379. },
  35380. maw: {
  35381. height: math.unit(1.1, "meter"),
  35382. name: "Maw",
  35383. image: {
  35384. source: "./media/characters/devourer/maw.svg"
  35385. }
  35386. },
  35387. },
  35388. [
  35389. {
  35390. name: "Small",
  35391. height: math.unit(3, "meters")
  35392. },
  35393. {
  35394. name: "Large",
  35395. height: math.unit(5, "meters"),
  35396. default: true
  35397. },
  35398. ]
  35399. ))
  35400. characterMakers.push(() => makeCharacter(
  35401. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35402. {
  35403. front: {
  35404. height: math.unit(6, "feet"),
  35405. weight: math.unit(400, "lb"),
  35406. name: "Front",
  35407. image: {
  35408. source: "./media/characters/ellarby/front.svg",
  35409. extra: 1909/1763,
  35410. bottom: 80/1989
  35411. }
  35412. },
  35413. back: {
  35414. height: math.unit(6, "feet"),
  35415. weight: math.unit(400, "lb"),
  35416. name: "Back",
  35417. image: {
  35418. source: "./media/characters/ellarby/back.svg",
  35419. extra: 1914/1784,
  35420. bottom: 172/2086
  35421. }
  35422. },
  35423. },
  35424. [
  35425. {
  35426. name: "Mischief",
  35427. height: math.unit(18, "inches")
  35428. },
  35429. {
  35430. name: "Trouble",
  35431. height: math.unit(12, "feet")
  35432. },
  35433. {
  35434. name: "Havoc",
  35435. height: math.unit(200, "feet"),
  35436. default: true
  35437. },
  35438. {
  35439. name: "Pandemonium",
  35440. height: math.unit(1, "mile")
  35441. },
  35442. {
  35443. name: "Catastrophe",
  35444. height: math.unit(100, "miles")
  35445. },
  35446. ]
  35447. ))
  35448. characterMakers.push(() => makeCharacter(
  35449. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35450. {
  35451. front: {
  35452. height: math.unit(4.7, "meters"),
  35453. weight: math.unit(6500, "kg"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/vex/front.svg",
  35457. extra: 1288/1140,
  35458. bottom: 100/1388
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(4.7, "meters"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35472. {
  35473. normal: {
  35474. height: math.unit(6, "feet"),
  35475. weight: math.unit(350, "lb"),
  35476. name: "Normal",
  35477. image: {
  35478. source: "./media/characters/teshy/normal.svg",
  35479. extra: 1795/1735,
  35480. bottom: 16/1811
  35481. }
  35482. },
  35483. monsterFront: {
  35484. height: math.unit(12, "feet"),
  35485. weight: math.unit(4700, "lb"),
  35486. name: "Monster (Front)",
  35487. image: {
  35488. source: "./media/characters/teshy/monster-front.svg",
  35489. extra: 2042/2034,
  35490. bottom: 128/2170
  35491. }
  35492. },
  35493. monsterSide: {
  35494. height: math.unit(12, "feet"),
  35495. weight: math.unit(4700, "lb"),
  35496. name: "Monster (Side)",
  35497. image: {
  35498. source: "./media/characters/teshy/monster-side.svg",
  35499. extra: 2067/2056,
  35500. bottom: 70/2137
  35501. }
  35502. },
  35503. monsterBack: {
  35504. height: math.unit(12, "feet"),
  35505. weight: math.unit(4700, "lb"),
  35506. name: "Monster (Back)",
  35507. image: {
  35508. source: "./media/characters/teshy/monster-back.svg",
  35509. extra: 1921/1914,
  35510. bottom: 171/2092
  35511. }
  35512. },
  35513. },
  35514. [
  35515. {
  35516. name: "Normal",
  35517. height: math.unit(6, "feet"),
  35518. default: true
  35519. },
  35520. ]
  35521. ))
  35522. characterMakers.push(() => makeCharacter(
  35523. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35524. {
  35525. front: {
  35526. height: math.unit(6, "feet"),
  35527. name: "Front",
  35528. image: {
  35529. source: "./media/characters/ramey/front.svg",
  35530. extra: 790/787,
  35531. bottom: 27/817
  35532. }
  35533. },
  35534. },
  35535. [
  35536. {
  35537. name: "Normal",
  35538. height: math.unit(6, "feet"),
  35539. default: true
  35540. },
  35541. ]
  35542. ))
  35543. characterMakers.push(() => makeCharacter(
  35544. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35545. {
  35546. front: {
  35547. height: math.unit(5 + 5/12, "feet"),
  35548. weight: math.unit(120, "lb"),
  35549. name: "Front",
  35550. image: {
  35551. source: "./media/characters/phirae/front.svg",
  35552. extra: 2491/2436,
  35553. bottom: 38/2529
  35554. }
  35555. },
  35556. },
  35557. [
  35558. {
  35559. name: "Normal",
  35560. height: math.unit(5 + 5/12, "feet"),
  35561. default: true
  35562. },
  35563. ]
  35564. ))
  35565. characterMakers.push(() => makeCharacter(
  35566. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35567. {
  35568. front: {
  35569. height: math.unit(5 + 3/12, "feet"),
  35570. name: "Front",
  35571. image: {
  35572. source: "./media/characters/stagglas/front.svg",
  35573. extra: 962/882,
  35574. bottom: 53/1015
  35575. }
  35576. },
  35577. feral: {
  35578. height: math.unit(335, "cm"),
  35579. name: "Feral",
  35580. image: {
  35581. source: "./media/characters/stagglas/feral.svg",
  35582. extra: 1732/1090,
  35583. bottom: 48/1780
  35584. }
  35585. },
  35586. },
  35587. [
  35588. {
  35589. name: "Normal",
  35590. height: math.unit(5 + 3/12, "feet"),
  35591. default: true
  35592. },
  35593. ]
  35594. ))
  35595. characterMakers.push(() => makeCharacter(
  35596. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35597. {
  35598. front: {
  35599. height: math.unit(5 + 4/12, "feet"),
  35600. weight: math.unit(145, "lb"),
  35601. name: "Front",
  35602. image: {
  35603. source: "./media/characters/starra/front.svg",
  35604. extra: 1790/1691,
  35605. bottom: 91/1881
  35606. }
  35607. },
  35608. },
  35609. [
  35610. {
  35611. name: "Normal",
  35612. height: math.unit(5 + 4/12, "feet"),
  35613. default: true
  35614. },
  35615. ]
  35616. ))
  35617. characterMakers.push(() => makeCharacter(
  35618. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35619. {
  35620. front: {
  35621. height: math.unit(2.2, "meters"),
  35622. name: "Front",
  35623. image: {
  35624. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35625. extra: 1194/1005,
  35626. bottom: 25/1219
  35627. }
  35628. },
  35629. },
  35630. [
  35631. {
  35632. name: "Normal",
  35633. height: math.unit(2.2, "meters"),
  35634. default: true
  35635. },
  35636. ]
  35637. ))
  35638. characterMakers.push(() => makeCharacter(
  35639. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35640. {
  35641. side: {
  35642. height: math.unit(8 + 2/12, "feet"),
  35643. weight: math.unit(1240, "lb"),
  35644. name: "Side",
  35645. image: {
  35646. source: "./media/characters/mika-valentine/side.svg",
  35647. extra: 2670/2501,
  35648. bottom: 250/2920
  35649. }
  35650. },
  35651. },
  35652. [
  35653. {
  35654. name: "Normal",
  35655. height: math.unit(8 + 2/12, "feet"),
  35656. default: true
  35657. },
  35658. ]
  35659. ))
  35660. characterMakers.push(() => makeCharacter(
  35661. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35662. {
  35663. front: {
  35664. height: math.unit(7 + 2/12, "feet"),
  35665. name: "Front",
  35666. image: {
  35667. source: "./media/characters/xoltol/front.svg",
  35668. extra: 2212/2124,
  35669. bottom: 84/2296
  35670. }
  35671. },
  35672. side: {
  35673. height: math.unit(7 + 2/12, "feet"),
  35674. name: "Side",
  35675. image: {
  35676. source: "./media/characters/xoltol/side.svg",
  35677. extra: 2273/2197,
  35678. bottom: 26/2299
  35679. }
  35680. },
  35681. hand: {
  35682. height: math.unit(2.5, "feet"),
  35683. name: "Hand",
  35684. image: {
  35685. source: "./media/characters/xoltol/hand.svg"
  35686. }
  35687. },
  35688. },
  35689. [
  35690. {
  35691. name: "Small-ish",
  35692. height: math.unit(5 + 11/12, "feet")
  35693. },
  35694. {
  35695. name: "Normal",
  35696. height: math.unit(7 + 2/12, "feet")
  35697. },
  35698. {
  35699. name: "\"Macro\"",
  35700. height: math.unit(14 + 9/12, "feet"),
  35701. default: true
  35702. },
  35703. {
  35704. name: "Alternate Height",
  35705. height: math.unit(20, "feet")
  35706. },
  35707. {
  35708. name: "Actually Macro",
  35709. height: math.unit(100, "feet")
  35710. },
  35711. ]
  35712. ))
  35713. characterMakers.push(() => makeCharacter(
  35714. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35715. {
  35716. front: {
  35717. height: math.unit(5 + 2/12, "feet"),
  35718. name: "Front",
  35719. image: {
  35720. source: "./media/characters/kotetsu-redwood/front.svg",
  35721. extra: 1053/942,
  35722. bottom: 60/1113
  35723. }
  35724. },
  35725. },
  35726. [
  35727. {
  35728. name: "Normal",
  35729. height: math.unit(5 + 2/12, "feet"),
  35730. default: true
  35731. },
  35732. ]
  35733. ))
  35734. characterMakers.push(() => makeCharacter(
  35735. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35736. {
  35737. front: {
  35738. height: math.unit(2.4, "meters"),
  35739. weight: math.unit(125, "kg"),
  35740. name: "Front",
  35741. image: {
  35742. source: "./media/characters/lilith/front.svg",
  35743. extra: 1590/1513,
  35744. bottom: 203/1793
  35745. }
  35746. },
  35747. },
  35748. [
  35749. {
  35750. name: "Humanoid",
  35751. height: math.unit(2.4, "meters")
  35752. },
  35753. {
  35754. name: "Normal",
  35755. height: math.unit(6, "meters"),
  35756. default: true
  35757. },
  35758. {
  35759. name: "Largest",
  35760. height: math.unit(55, "meters")
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35766. {
  35767. front: {
  35768. height: math.unit(8 + 4/12, "feet"),
  35769. weight: math.unit(535, "lb"),
  35770. name: "Front",
  35771. image: {
  35772. source: "./media/characters/beh'kah-bolger/front.svg",
  35773. extra: 1660/1603,
  35774. bottom: 37/1697
  35775. }
  35776. },
  35777. },
  35778. [
  35779. {
  35780. name: "Normal",
  35781. height: math.unit(8 + 4/12, "feet"),
  35782. default: true
  35783. },
  35784. {
  35785. name: "Kaiju",
  35786. height: math.unit(250, "feet")
  35787. },
  35788. {
  35789. name: "Still Growing",
  35790. height: math.unit(10, "miles")
  35791. },
  35792. {
  35793. name: "Continental",
  35794. height: math.unit(5000, "miles")
  35795. },
  35796. {
  35797. name: "Final Form",
  35798. height: math.unit(2500000, "miles")
  35799. },
  35800. ]
  35801. ))
  35802. characterMakers.push(() => makeCharacter(
  35803. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35804. {
  35805. front: {
  35806. height: math.unit(7 + 2/12, "feet"),
  35807. weight: math.unit(230, "kg"),
  35808. name: "Front",
  35809. image: {
  35810. source: "./media/characters/tatyana-milewska/front.svg",
  35811. extra: 1199/1150,
  35812. bottom: 86/1285
  35813. }
  35814. },
  35815. },
  35816. [
  35817. {
  35818. name: "Normal",
  35819. height: math.unit(7 + 2/12, "feet"),
  35820. default: true
  35821. },
  35822. {
  35823. name: "Big",
  35824. height: math.unit(12, "feet")
  35825. },
  35826. {
  35827. name: "Minimacro",
  35828. height: math.unit(20, "feet")
  35829. },
  35830. {
  35831. name: "Macro",
  35832. height: math.unit(120, "feet")
  35833. },
  35834. ]
  35835. ))
  35836. characterMakers.push(() => makeCharacter(
  35837. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35838. {
  35839. front: {
  35840. height: math.unit(7 + 8/12, "feet"),
  35841. weight: math.unit(152, "kg"),
  35842. name: "Front",
  35843. image: {
  35844. source: "./media/characters/helen-arri/front.svg",
  35845. extra: 440/423,
  35846. bottom: 14/454
  35847. }
  35848. },
  35849. back: {
  35850. height: math.unit(7 + 8/12, "feet"),
  35851. weight: math.unit(152, "kg"),
  35852. name: "Back",
  35853. image: {
  35854. source: "./media/characters/helen-arri/back.svg",
  35855. extra: 443/426,
  35856. bottom: 8/451
  35857. }
  35858. },
  35859. },
  35860. [
  35861. {
  35862. name: "Normal",
  35863. height: math.unit(7 + 8/12, "feet"),
  35864. default: true
  35865. },
  35866. {
  35867. name: "Big",
  35868. height: math.unit(14, "feet")
  35869. },
  35870. {
  35871. name: "Minimacro",
  35872. height: math.unit(24, "feet")
  35873. },
  35874. {
  35875. name: "Macro",
  35876. height: math.unit(140, "feet")
  35877. },
  35878. ]
  35879. ))
  35880. characterMakers.push(() => makeCharacter(
  35881. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35882. {
  35883. front: {
  35884. height: math.unit(6, "meters"),
  35885. name: "Front",
  35886. image: {
  35887. source: "./media/characters/ehanu-rehu/front.svg",
  35888. extra: 1800/1800,
  35889. bottom: 59/1859
  35890. }
  35891. },
  35892. },
  35893. [
  35894. {
  35895. name: "Normal",
  35896. height: math.unit(6, "meters"),
  35897. default: true
  35898. },
  35899. ]
  35900. ))
  35901. characterMakers.push(() => makeCharacter(
  35902. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35903. {
  35904. front: {
  35905. height: math.unit(7 + 3/12, "feet"),
  35906. name: "Front",
  35907. image: {
  35908. source: "./media/characters/renholder/front.svg",
  35909. extra: 3096/2960,
  35910. bottom: 250/3346
  35911. }
  35912. },
  35913. },
  35914. [
  35915. {
  35916. name: "Normal Bat",
  35917. height: math.unit(7 + 3/12, "feet"),
  35918. default: true
  35919. },
  35920. {
  35921. name: "Slightly Tall Bat",
  35922. height: math.unit(100, "feet")
  35923. },
  35924. {
  35925. name: "Big Bat",
  35926. height: math.unit(1000, "feet")
  35927. },
  35928. {
  35929. name: "City-Sized Bat",
  35930. height: math.unit(200000, "feet")
  35931. },
  35932. {
  35933. name: "Bigger Bat",
  35934. height: math.unit(10000, "miles")
  35935. },
  35936. {
  35937. name: "Solar Sized Bat",
  35938. height: math.unit(100, "AU")
  35939. },
  35940. {
  35941. name: "Galactic Bat",
  35942. height: math.unit(200000, "lightyears")
  35943. },
  35944. {
  35945. name: "Universally Known Bat",
  35946. height: math.unit(1, "universe")
  35947. },
  35948. ]
  35949. ))
  35950. characterMakers.push(() => makeCharacter(
  35951. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35952. {
  35953. front: {
  35954. height: math.unit(6 + 11/12, "feet"),
  35955. weight: math.unit(250, "lb"),
  35956. name: "Front",
  35957. image: {
  35958. source: "./media/characters/cookiecat/front.svg",
  35959. extra: 893/827,
  35960. bottom: 14/907
  35961. }
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Micro",
  35967. height: math.unit(3, "inches")
  35968. },
  35969. {
  35970. name: "Normal",
  35971. height: math.unit(6 + 11/12, "feet"),
  35972. default: true
  35973. },
  35974. {
  35975. name: "Macro",
  35976. height: math.unit(100, "feet")
  35977. },
  35978. {
  35979. name: "Macro+",
  35980. height: math.unit(404, "feet")
  35981. },
  35982. {
  35983. name: "Megamacro",
  35984. height: math.unit(165, "miles")
  35985. },
  35986. {
  35987. name: "Planetary",
  35988. height: math.unit(4600, "miles")
  35989. },
  35990. ]
  35991. ))
  35992. characterMakers.push(() => makeCharacter(
  35993. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35994. {
  35995. front: {
  35996. height: math.unit(10 + 3/12, "feet"),
  35997. weight: math.unit(1500, "lb"),
  35998. name: "Front",
  35999. image: {
  36000. source: "./media/characters/tux-kusanagi/front.svg",
  36001. extra: 944/840,
  36002. bottom: 39/983
  36003. }
  36004. },
  36005. back: {
  36006. height: math.unit(10 + 3/12, "feet"),
  36007. weight: math.unit(1500, "lb"),
  36008. name: "Back",
  36009. image: {
  36010. source: "./media/characters/tux-kusanagi/back.svg",
  36011. extra: 941/842,
  36012. bottom: 28/969
  36013. }
  36014. },
  36015. rump: {
  36016. height: math.unit(5.25, "feet"),
  36017. name: "Rump",
  36018. image: {
  36019. source: "./media/characters/tux-kusanagi/rump.svg"
  36020. }
  36021. },
  36022. beak: {
  36023. height: math.unit(1.54, "feet"),
  36024. name: "Beak",
  36025. image: {
  36026. source: "./media/characters/tux-kusanagi/beak.svg"
  36027. }
  36028. },
  36029. },
  36030. [
  36031. {
  36032. name: "Normal",
  36033. height: math.unit(10 + 3/12, "feet"),
  36034. default: true
  36035. },
  36036. ]
  36037. ))
  36038. characterMakers.push(() => makeCharacter(
  36039. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36040. {
  36041. front: {
  36042. height: math.unit(58, "feet"),
  36043. weight: math.unit(200, "tons"),
  36044. name: "Front",
  36045. image: {
  36046. source: "./media/characters/uzarmazari/front.svg",
  36047. extra: 1575/1455,
  36048. bottom: 152/1727
  36049. }
  36050. },
  36051. back: {
  36052. height: math.unit(58, "feet"),
  36053. weight: math.unit(200, "tons"),
  36054. name: "Back",
  36055. image: {
  36056. source: "./media/characters/uzarmazari/back.svg",
  36057. extra: 1585/1510,
  36058. bottom: 157/1742
  36059. }
  36060. },
  36061. head: {
  36062. height: math.unit(26, "feet"),
  36063. name: "Head",
  36064. image: {
  36065. source: "./media/characters/uzarmazari/head.svg"
  36066. }
  36067. },
  36068. },
  36069. [
  36070. {
  36071. name: "Normal",
  36072. height: math.unit(58, "feet"),
  36073. default: true
  36074. },
  36075. ]
  36076. ))
  36077. characterMakers.push(() => makeCharacter(
  36078. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36079. {
  36080. side: {
  36081. height: math.unit(15, "feet"),
  36082. name: "Side",
  36083. image: {
  36084. source: "./media/characters/akitu/side.svg",
  36085. extra: 1421/1321,
  36086. bottom: 157/1578
  36087. }
  36088. },
  36089. front: {
  36090. height: math.unit(15, "feet"),
  36091. name: "Front",
  36092. image: {
  36093. source: "./media/characters/akitu/front.svg",
  36094. extra: 1435/1326,
  36095. bottom: 232/1667
  36096. }
  36097. },
  36098. },
  36099. [
  36100. {
  36101. name: "Normal",
  36102. height: math.unit(15, "feet"),
  36103. default: true
  36104. },
  36105. ]
  36106. ))
  36107. characterMakers.push(() => makeCharacter(
  36108. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36109. {
  36110. front: {
  36111. height: math.unit(10 + 8/12, "feet"),
  36112. name: "Front",
  36113. image: {
  36114. source: "./media/characters/azalie-croixland/front.svg",
  36115. extra: 1972/1856,
  36116. bottom: 31/2003
  36117. }
  36118. },
  36119. },
  36120. [
  36121. {
  36122. name: "Original Height",
  36123. height: math.unit(5 + 4/12, "feet")
  36124. },
  36125. {
  36126. name: "Normal Height",
  36127. height: math.unit(10 + 8/12, "feet"),
  36128. default: true
  36129. },
  36130. ]
  36131. ))
  36132. characterMakers.push(() => makeCharacter(
  36133. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36134. {
  36135. side: {
  36136. height: math.unit(7 + 1/12, "feet"),
  36137. weight: math.unit(245, "lb"),
  36138. name: "Side",
  36139. image: {
  36140. source: "./media/characters/kavus-kazian/side.svg",
  36141. extra: 349/342,
  36142. bottom: 15/364
  36143. }
  36144. },
  36145. },
  36146. [
  36147. {
  36148. name: "Normal",
  36149. height: math.unit(7 + 1/12, "feet"),
  36150. default: true
  36151. },
  36152. ]
  36153. ))
  36154. characterMakers.push(() => makeCharacter(
  36155. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36156. {
  36157. normalFront: {
  36158. height: math.unit(5 + 11/12, "feet"),
  36159. name: "Front",
  36160. image: {
  36161. source: "./media/characters/moonlight-rose/normal-front.svg",
  36162. extra: 1980/1825,
  36163. bottom: 18/1998
  36164. },
  36165. form: "normal",
  36166. default: true
  36167. },
  36168. normalBack: {
  36169. height: math.unit(5 + 11/12, "feet"),
  36170. name: "Back",
  36171. image: {
  36172. source: "./media/characters/moonlight-rose/normal-back.svg",
  36173. extra: 2010/1839,
  36174. bottom: 10/2020
  36175. },
  36176. form: "normal"
  36177. },
  36178. demonFront: {
  36179. height: math.unit(1.5, "earths"),
  36180. name: "Front",
  36181. image: {
  36182. source: "./media/characters/moonlight-rose/demon.svg",
  36183. extra: 1400/1294,
  36184. bottom: 45/1445
  36185. },
  36186. form: "demon",
  36187. default: true
  36188. },
  36189. terraFront: {
  36190. height: math.unit(1.5, "earths"),
  36191. name: "Front",
  36192. image: {
  36193. source: "./media/characters/moonlight-rose/terra.svg"
  36194. },
  36195. form: "terra",
  36196. default: true
  36197. },
  36198. jupiterFront: {
  36199. height: math.unit(69911*2, "km"),
  36200. name: "Front",
  36201. image: {
  36202. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36203. extra: 1367/1286,
  36204. bottom: 55/1422
  36205. },
  36206. form: "jupiter",
  36207. default: true
  36208. },
  36209. neptuneFront: {
  36210. height: math.unit(24622*2, "feet"),
  36211. name: "Front",
  36212. image: {
  36213. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36214. extra: 1851/1712,
  36215. bottom: 0/1851
  36216. },
  36217. form: "neptune",
  36218. default: true
  36219. },
  36220. },
  36221. [
  36222. {
  36223. name: "\"Natural\" Height",
  36224. height: math.unit(5 + 11/12, "feet"),
  36225. form: "normal"
  36226. },
  36227. {
  36228. name: "Smallest comfortable size",
  36229. height: math.unit(40, "meters"),
  36230. form: "normal"
  36231. },
  36232. {
  36233. name: "Common size",
  36234. height: math.unit(50, "km"),
  36235. form: "normal",
  36236. default: true
  36237. },
  36238. {
  36239. name: "Normal",
  36240. height: math.unit(1.5, "earths"),
  36241. form: "demon",
  36242. default: true
  36243. },
  36244. {
  36245. name: "Universal",
  36246. height: math.unit(15, "universes"),
  36247. form: "demon"
  36248. },
  36249. {
  36250. name: "Earth",
  36251. height: math.unit(1.5, "earths"),
  36252. form: "terra",
  36253. default: true
  36254. },
  36255. {
  36256. name: "Super Earth",
  36257. height: math.unit(67.5, "earths"),
  36258. form: "terra"
  36259. },
  36260. {
  36261. name: "Doesn't fit in a solar system...",
  36262. height: math.unit(1, "galaxy"),
  36263. form: "terra"
  36264. },
  36265. {
  36266. name: "Saturn",
  36267. height: math.unit(58232*2, "km"),
  36268. form: "jupiter"
  36269. },
  36270. {
  36271. name: "Jupiter",
  36272. height: math.unit(69911*2, "km"),
  36273. form: "jupiter",
  36274. default: true
  36275. },
  36276. {
  36277. name: "HD 100546 b",
  36278. height: math.unit(482938, "km"),
  36279. form: "jupiter"
  36280. },
  36281. {
  36282. name: "Enceladus",
  36283. height: math.unit(513*2, "km"),
  36284. form: "neptune"
  36285. },
  36286. {
  36287. name: "Europe",
  36288. height: math.unit(1560*2, "km"),
  36289. form: "neptune"
  36290. },
  36291. {
  36292. name: "Neptune",
  36293. height: math.unit(24622*2, "km"),
  36294. form: "neptune",
  36295. default: true
  36296. },
  36297. {
  36298. name: "CoRoT-9b",
  36299. height: math.unit(75067*2, "km"),
  36300. form: "neptune"
  36301. },
  36302. ],
  36303. {
  36304. "normal": {
  36305. name: "Normal",
  36306. default: true
  36307. },
  36308. "demon": {
  36309. name: "Demon"
  36310. },
  36311. "terra": {
  36312. name: "Terra"
  36313. },
  36314. "jupiter": {
  36315. name: "Jupiter"
  36316. },
  36317. "neptune": {
  36318. name: "Neptune"
  36319. }
  36320. }
  36321. ))
  36322. characterMakers.push(() => makeCharacter(
  36323. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36324. {
  36325. front: {
  36326. height: math.unit(16, "feet"),
  36327. weight: math.unit(610, "kg"),
  36328. name: "Front",
  36329. image: {
  36330. source: "./media/characters/huckle/front.svg",
  36331. extra: 1731/1625,
  36332. bottom: 33/1764
  36333. }
  36334. },
  36335. back: {
  36336. height: math.unit(16, "feet"),
  36337. weight: math.unit(610, "kg"),
  36338. name: "Back",
  36339. image: {
  36340. source: "./media/characters/huckle/back.svg",
  36341. extra: 1738/1651,
  36342. bottom: 37/1775
  36343. }
  36344. },
  36345. laughing: {
  36346. height: math.unit(3.75, "feet"),
  36347. name: "Laughing",
  36348. image: {
  36349. source: "./media/characters/huckle/laughing.svg"
  36350. }
  36351. },
  36352. angry: {
  36353. height: math.unit(4.15, "feet"),
  36354. name: "Angry",
  36355. image: {
  36356. source: "./media/characters/huckle/angry.svg"
  36357. }
  36358. },
  36359. },
  36360. [
  36361. {
  36362. name: "Normal",
  36363. height: math.unit(16, "feet"),
  36364. default: true
  36365. },
  36366. {
  36367. name: "Mini Macro",
  36368. height: math.unit(463, "feet")
  36369. },
  36370. {
  36371. name: "Macro",
  36372. height: math.unit(1680, "meters")
  36373. },
  36374. {
  36375. name: "Mega Macro",
  36376. height: math.unit(175, "km")
  36377. },
  36378. {
  36379. name: "Terra Macro",
  36380. height: math.unit(32, "gigameters")
  36381. },
  36382. {
  36383. name: "Multiverse+",
  36384. height: math.unit(2.56e23, "yottameters")
  36385. },
  36386. ]
  36387. ))
  36388. characterMakers.push(() => makeCharacter(
  36389. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36390. {
  36391. front: {
  36392. height: math.unit(6 + 9/12, "feet"),
  36393. weight: math.unit(280, "lb"),
  36394. name: "Front",
  36395. image: {
  36396. source: "./media/characters/candy/front.svg",
  36397. extra: 234/217,
  36398. bottom: 11/245
  36399. }
  36400. },
  36401. },
  36402. [
  36403. {
  36404. name: "Really Small",
  36405. height: math.unit(0.1, "nm")
  36406. },
  36407. {
  36408. name: "Micro",
  36409. height: math.unit(2, "inches")
  36410. },
  36411. {
  36412. name: "Normal",
  36413. height: math.unit(6 + 9/12, "feet"),
  36414. default: true
  36415. },
  36416. {
  36417. name: "Small Macro",
  36418. height: math.unit(69, "feet")
  36419. },
  36420. {
  36421. name: "Macro",
  36422. height: math.unit(160, "feet")
  36423. },
  36424. {
  36425. name: "Megamacro",
  36426. height: math.unit(22000, "miles")
  36427. },
  36428. {
  36429. name: "Gigamacro",
  36430. height: math.unit(50000, "miles")
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36436. {
  36437. front: {
  36438. height: math.unit(4, "feet"),
  36439. weight: math.unit(90, "lb"),
  36440. name: "Front",
  36441. image: {
  36442. source: "./media/characters/joey-mcdonald/front.svg",
  36443. extra: 1059/852,
  36444. bottom: 33/1092
  36445. }
  36446. },
  36447. back: {
  36448. height: math.unit(4, "feet"),
  36449. weight: math.unit(90, "lb"),
  36450. name: "Back",
  36451. image: {
  36452. source: "./media/characters/joey-mcdonald/back.svg",
  36453. extra: 1077/879,
  36454. bottom: 5/1082
  36455. }
  36456. },
  36457. frontKobold: {
  36458. height: math.unit(4, "feet"),
  36459. weight: math.unit(100, "lb"),
  36460. name: "Front-kobold",
  36461. image: {
  36462. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36463. extra: 1480/1367,
  36464. bottom: 0/1480
  36465. }
  36466. },
  36467. backKobold: {
  36468. height: math.unit(4, "feet"),
  36469. weight: math.unit(100, "lb"),
  36470. name: "Back-kobold",
  36471. image: {
  36472. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36473. extra: 1449/1361,
  36474. bottom: 0/1449
  36475. }
  36476. },
  36477. },
  36478. [
  36479. {
  36480. name: "Normal",
  36481. height: math.unit(4, "feet"),
  36482. default: true
  36483. },
  36484. ]
  36485. ))
  36486. characterMakers.push(() => makeCharacter(
  36487. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36488. {
  36489. front: {
  36490. height: math.unit(12 + 6/12, "feet"),
  36491. name: "Front",
  36492. image: {
  36493. source: "./media/characters/kass-lockheed/front.svg",
  36494. extra: 354/343,
  36495. bottom: 9/363
  36496. }
  36497. },
  36498. back: {
  36499. height: math.unit(12 + 6/12, "feet"),
  36500. name: "Back",
  36501. image: {
  36502. source: "./media/characters/kass-lockheed/back.svg",
  36503. extra: 364/352,
  36504. bottom: 3/367
  36505. }
  36506. },
  36507. dick: {
  36508. height: math.unit(3.12, "feet"),
  36509. name: "Dick",
  36510. image: {
  36511. source: "./media/characters/kass-lockheed/dick.svg"
  36512. }
  36513. },
  36514. head: {
  36515. height: math.unit(2.6, "feet"),
  36516. name: "Head",
  36517. image: {
  36518. source: "./media/characters/kass-lockheed/head.svg"
  36519. }
  36520. },
  36521. bleh: {
  36522. height: math.unit(2.85, "feet"),
  36523. name: "Bleh",
  36524. image: {
  36525. source: "./media/characters/kass-lockheed/bleh.svg"
  36526. }
  36527. },
  36528. smug: {
  36529. height: math.unit(2.85, "feet"),
  36530. name: "Smug",
  36531. image: {
  36532. source: "./media/characters/kass-lockheed/smug.svg"
  36533. }
  36534. },
  36535. },
  36536. [
  36537. {
  36538. name: "Normal",
  36539. height: math.unit(12 + 6/12, "feet"),
  36540. default: true
  36541. },
  36542. ]
  36543. ))
  36544. characterMakers.push(() => makeCharacter(
  36545. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36546. {
  36547. front: {
  36548. height: math.unit(6 + 2/12, "feet"),
  36549. name: "Front",
  36550. image: {
  36551. source: "./media/characters/taylor/front.svg",
  36552. extra: 639/495,
  36553. bottom: 12/651
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Normal",
  36560. height: math.unit(6 + 2/12, "feet"),
  36561. default: true
  36562. },
  36563. {
  36564. name: "Big",
  36565. height: math.unit(15, "feet")
  36566. },
  36567. {
  36568. name: "Lorg",
  36569. height: math.unit(80, "feet")
  36570. },
  36571. {
  36572. name: "Too Lorg",
  36573. height: math.unit(120, "feet")
  36574. },
  36575. ]
  36576. ))
  36577. characterMakers.push(() => makeCharacter(
  36578. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36579. {
  36580. front: {
  36581. height: math.unit(15, "feet"),
  36582. name: "Front",
  36583. image: {
  36584. source: "./media/characters/kaizer/front.svg",
  36585. extra: 1612/1436,
  36586. bottom: 43/1655
  36587. }
  36588. },
  36589. },
  36590. [
  36591. {
  36592. name: "Normal",
  36593. height: math.unit(15, "feet"),
  36594. default: true
  36595. },
  36596. ]
  36597. ))
  36598. characterMakers.push(() => makeCharacter(
  36599. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36600. {
  36601. front: {
  36602. height: math.unit(2, "feet"),
  36603. weight: math.unit(30, "lb"),
  36604. name: "Front",
  36605. image: {
  36606. source: "./media/characters/sandy/front.svg",
  36607. extra: 1439/1307,
  36608. bottom: 194/1633
  36609. }
  36610. },
  36611. },
  36612. [
  36613. {
  36614. name: "Normal",
  36615. height: math.unit(2, "feet"),
  36616. default: true
  36617. },
  36618. ]
  36619. ))
  36620. characterMakers.push(() => makeCharacter(
  36621. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36622. {
  36623. front: {
  36624. height: math.unit(3, "feet"),
  36625. name: "Front",
  36626. image: {
  36627. source: "./media/characters/mellvi/front.svg",
  36628. extra: 1831/1630,
  36629. bottom: 58/1889
  36630. }
  36631. },
  36632. },
  36633. [
  36634. {
  36635. name: "Normal",
  36636. height: math.unit(3, "feet"),
  36637. default: true
  36638. },
  36639. ]
  36640. ))
  36641. characterMakers.push(() => makeCharacter(
  36642. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36643. {
  36644. front: {
  36645. height: math.unit(5 + 11/12, "feet"),
  36646. weight: math.unit(200, "lb"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/shirou/front.svg",
  36650. extra: 2491/2383,
  36651. bottom: 189/2680
  36652. }
  36653. },
  36654. back: {
  36655. height: math.unit(5 + 11/12, "feet"),
  36656. weight: math.unit(200, "lb"),
  36657. name: "Back",
  36658. image: {
  36659. source: "./media/characters/shirou/back.svg",
  36660. extra: 2554/2450,
  36661. bottom: 76/2630
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(5 + 11/12, "feet"),
  36669. default: true
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36675. {
  36676. front: {
  36677. height: math.unit(6 + 3/12, "feet"),
  36678. weight: math.unit(177, "lb"),
  36679. name: "Front",
  36680. image: {
  36681. source: "./media/characters/noryu/front.svg",
  36682. extra: 973/885,
  36683. bottom: 10/983
  36684. }
  36685. },
  36686. },
  36687. [
  36688. {
  36689. name: "Normal",
  36690. height: math.unit(6 + 3/12, "feet"),
  36691. default: true
  36692. },
  36693. ]
  36694. ))
  36695. characterMakers.push(() => makeCharacter(
  36696. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36697. {
  36698. front: {
  36699. height: math.unit(5 + 6/12, "feet"),
  36700. weight: math.unit(170, "lb"),
  36701. name: "Front",
  36702. image: {
  36703. source: "./media/characters/mevolas-rubenido/front.svg",
  36704. extra: 2109/1901,
  36705. bottom: 96/2205
  36706. }
  36707. },
  36708. },
  36709. [
  36710. {
  36711. name: "Normal",
  36712. height: math.unit(5 + 6/12, "feet"),
  36713. default: true
  36714. },
  36715. ]
  36716. ))
  36717. characterMakers.push(() => makeCharacter(
  36718. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36719. {
  36720. front: {
  36721. height: math.unit(100, "feet"),
  36722. name: "Front",
  36723. image: {
  36724. source: "./media/characters/dee/front.svg",
  36725. extra: 2153/2036,
  36726. bottom: 59/2212
  36727. }
  36728. },
  36729. back: {
  36730. height: math.unit(100, "feet"),
  36731. name: "Back",
  36732. image: {
  36733. source: "./media/characters/dee/back.svg",
  36734. extra: 2183/2058,
  36735. bottom: 75/2258
  36736. }
  36737. },
  36738. foot: {
  36739. height: math.unit(19.43, "feet"),
  36740. name: "Foot",
  36741. image: {
  36742. source: "./media/characters/dee/foot.svg"
  36743. }
  36744. },
  36745. hoof: {
  36746. height: math.unit(20.6, "feet"),
  36747. name: "Hoof",
  36748. image: {
  36749. source: "./media/characters/dee/hoof.svg"
  36750. }
  36751. },
  36752. },
  36753. [
  36754. {
  36755. name: "Macro",
  36756. height: math.unit(100, "feet"),
  36757. default: true
  36758. },
  36759. ]
  36760. ))
  36761. characterMakers.push(() => makeCharacter(
  36762. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36763. {
  36764. front: {
  36765. height: math.unit(5 + 6/12, "feet"),
  36766. name: "Front",
  36767. image: {
  36768. source: "./media/characters/teh/front.svg",
  36769. extra: 1002/847,
  36770. bottom: 62/1064
  36771. }
  36772. },
  36773. },
  36774. [
  36775. {
  36776. name: "Normal",
  36777. height: math.unit(5 + 6/12, "feet"),
  36778. default: true
  36779. },
  36780. ]
  36781. ))
  36782. characterMakers.push(() => makeCharacter(
  36783. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36784. {
  36785. side: {
  36786. height: math.unit(6 + 1/12, "feet"),
  36787. weight: math.unit(204, "lb"),
  36788. name: "Side",
  36789. image: {
  36790. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36791. extra: 974/775,
  36792. bottom: 169/1143
  36793. }
  36794. },
  36795. sitting: {
  36796. height: math.unit(6 + 2/12, "feet"),
  36797. weight: math.unit(204, "lb"),
  36798. name: "Sitting",
  36799. image: {
  36800. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36801. extra: 1175/964,
  36802. bottom: 378/1553
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Normal",
  36809. height: math.unit(6 + 1/12, "feet"),
  36810. default: true
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36816. {
  36817. front: {
  36818. height: math.unit(6, "inches"),
  36819. name: "Front",
  36820. image: {
  36821. source: "./media/characters/tululi/front.svg",
  36822. extra: 1997/1876,
  36823. bottom: 20/2017
  36824. }
  36825. },
  36826. },
  36827. [
  36828. {
  36829. name: "Normal",
  36830. height: math.unit(6, "inches"),
  36831. default: true
  36832. },
  36833. ]
  36834. ))
  36835. characterMakers.push(() => makeCharacter(
  36836. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36837. {
  36838. front: {
  36839. height: math.unit(4 + 1/12, "feet"),
  36840. name: "Front",
  36841. image: {
  36842. source: "./media/characters/star/front.svg",
  36843. extra: 1493/1189,
  36844. bottom: 48/1541
  36845. }
  36846. },
  36847. },
  36848. [
  36849. {
  36850. name: "Normal",
  36851. height: math.unit(4 + 1/12, "feet"),
  36852. default: true
  36853. },
  36854. ]
  36855. ))
  36856. characterMakers.push(() => makeCharacter(
  36857. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36858. {
  36859. front: {
  36860. height: math.unit(6 + 3/12, "feet"),
  36861. name: "Front",
  36862. image: {
  36863. source: "./media/characters/comet/front.svg",
  36864. extra: 1681/1462,
  36865. bottom: 26/1707
  36866. }
  36867. },
  36868. },
  36869. [
  36870. {
  36871. name: "Normal",
  36872. height: math.unit(6 + 3/12, "feet"),
  36873. default: true
  36874. },
  36875. ]
  36876. ))
  36877. characterMakers.push(() => makeCharacter(
  36878. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36879. {
  36880. front: {
  36881. height: math.unit(950, "feet"),
  36882. name: "Front",
  36883. image: {
  36884. source: "./media/characters/vortex/front.svg",
  36885. extra: 1497/1434,
  36886. bottom: 56/1553
  36887. }
  36888. },
  36889. maw: {
  36890. height: math.unit(285, "feet"),
  36891. name: "Maw",
  36892. image: {
  36893. source: "./media/characters/vortex/maw.svg"
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Macro",
  36900. height: math.unit(950, "feet"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(600, "feet"),
  36910. weight: math.unit(0.02, "grams"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/doodle/front.svg",
  36914. extra: 1578/1413,
  36915. bottom: 37/1615
  36916. }
  36917. },
  36918. },
  36919. [
  36920. {
  36921. name: "Macro",
  36922. height: math.unit(600, "feet"),
  36923. default: true
  36924. },
  36925. ]
  36926. ))
  36927. characterMakers.push(() => makeCharacter(
  36928. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36929. {
  36930. front: {
  36931. height: math.unit(6 + 6/12, "feet"),
  36932. name: "Front",
  36933. image: {
  36934. source: "./media/characters/jai/front.svg",
  36935. extra: 1645/1534,
  36936. bottom: 115/1760
  36937. }
  36938. },
  36939. },
  36940. [
  36941. {
  36942. name: "Normal",
  36943. height: math.unit(6 + 6/12, "feet"),
  36944. default: true
  36945. },
  36946. ]
  36947. ))
  36948. characterMakers.push(() => makeCharacter(
  36949. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36950. {
  36951. front: {
  36952. height: math.unit(6 + 8/12, "feet"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/pixel/front.svg",
  36956. extra: 1900/1735,
  36957. bottom: 63/1963
  36958. }
  36959. },
  36960. },
  36961. [
  36962. {
  36963. name: "Normal",
  36964. height: math.unit(6 + 8/12, "feet"),
  36965. default: true
  36966. },
  36967. ]
  36968. ))
  36969. characterMakers.push(() => makeCharacter(
  36970. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36971. {
  36972. back: {
  36973. height: math.unit(4 + 1/12, "feet"),
  36974. weight: math.unit(75, "lb"),
  36975. name: "Back",
  36976. image: {
  36977. source: "./media/characters/rhett/back.svg",
  36978. extra: 930/878,
  36979. bottom: 25/955
  36980. }
  36981. },
  36982. front: {
  36983. height: math.unit(4 + 1/12, "feet"),
  36984. weight: math.unit(75, "lb"),
  36985. name: "Front",
  36986. image: {
  36987. source: "./media/characters/rhett/front.svg",
  36988. extra: 1682/1586,
  36989. bottom: 92/1774
  36990. }
  36991. },
  36992. },
  36993. [
  36994. {
  36995. name: "Micro",
  36996. height: math.unit(8, "inches")
  36997. },
  36998. {
  36999. name: "Tiny",
  37000. height: math.unit(2, "feet")
  37001. },
  37002. {
  37003. name: "Normal",
  37004. height: math.unit(4 + 1/12, "feet"),
  37005. default: true
  37006. },
  37007. ]
  37008. ))
  37009. characterMakers.push(() => makeCharacter(
  37010. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37011. {
  37012. front: {
  37013. height: math.unit(3 + 3/12, "feet"),
  37014. name: "Front",
  37015. image: {
  37016. source: "./media/characters/penny/front.svg",
  37017. extra: 1406/1311,
  37018. bottom: 26/1432
  37019. }
  37020. },
  37021. },
  37022. [
  37023. {
  37024. name: "Normal",
  37025. height: math.unit(3 + 3/12, "feet"),
  37026. default: true
  37027. },
  37028. ]
  37029. ))
  37030. characterMakers.push(() => makeCharacter(
  37031. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37032. {
  37033. front: {
  37034. height: math.unit(4 + 11/12, "feet"),
  37035. name: "Front",
  37036. image: {
  37037. source: "./media/characters/monty/front.svg",
  37038. extra: 1479/1209,
  37039. bottom: 0/1479
  37040. }
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "Normal",
  37046. height: math.unit(4 + 11/12, "feet"),
  37047. default: true
  37048. },
  37049. ]
  37050. ))
  37051. characterMakers.push(() => makeCharacter(
  37052. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37053. {
  37054. front: {
  37055. height: math.unit(8 + 4/12, "feet"),
  37056. name: "Front",
  37057. image: {
  37058. source: "./media/characters/sterling/front.svg",
  37059. extra: 1420/1236,
  37060. bottom: 27/1447
  37061. }
  37062. },
  37063. },
  37064. [
  37065. {
  37066. name: "Normal",
  37067. height: math.unit(8 + 4/12, "feet"),
  37068. default: true
  37069. },
  37070. ]
  37071. ))
  37072. characterMakers.push(() => makeCharacter(
  37073. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37074. {
  37075. front: {
  37076. height: math.unit(15, "feet"),
  37077. name: "Front",
  37078. image: {
  37079. source: "./media/characters/marble/front.svg",
  37080. extra: 973/937,
  37081. bottom: 32/1005
  37082. }
  37083. },
  37084. },
  37085. [
  37086. {
  37087. name: "Normal",
  37088. height: math.unit(15, "feet"),
  37089. default: true
  37090. },
  37091. ]
  37092. ))
  37093. characterMakers.push(() => makeCharacter(
  37094. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37095. {
  37096. front: {
  37097. height: math.unit(3, "inches"),
  37098. name: "Front",
  37099. image: {
  37100. source: "./media/characters/powder/front.svg",
  37101. extra: 1504/1334,
  37102. bottom: 518/2022
  37103. }
  37104. },
  37105. },
  37106. [
  37107. {
  37108. name: "Normal",
  37109. height: math.unit(3, "inches"),
  37110. default: true
  37111. },
  37112. ]
  37113. ))
  37114. characterMakers.push(() => makeCharacter(
  37115. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37116. {
  37117. front: {
  37118. height: math.unit(4 + 5/12, "feet"),
  37119. name: "Front",
  37120. image: {
  37121. source: "./media/characters/joey-raccoon/front.svg",
  37122. extra: 1273/1197,
  37123. bottom: 0/1273
  37124. }
  37125. },
  37126. },
  37127. [
  37128. {
  37129. name: "Normal",
  37130. height: math.unit(4 + 5/12, "feet"),
  37131. default: true
  37132. },
  37133. ]
  37134. ))
  37135. characterMakers.push(() => makeCharacter(
  37136. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37137. {
  37138. front: {
  37139. height: math.unit(8 + 4/12, "feet"),
  37140. name: "Front",
  37141. image: {
  37142. source: "./media/characters/vick/front.svg",
  37143. extra: 2187/2118,
  37144. bottom: 47/2234
  37145. }
  37146. },
  37147. },
  37148. [
  37149. {
  37150. name: "Normal",
  37151. height: math.unit(8 + 4/12, "feet"),
  37152. default: true
  37153. },
  37154. ]
  37155. ))
  37156. characterMakers.push(() => makeCharacter(
  37157. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37158. {
  37159. front: {
  37160. height: math.unit(5 + 5/12, "feet"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/mitsy/front.svg",
  37164. extra: 1842/1695,
  37165. bottom: 0/1842
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Normal",
  37172. height: math.unit(5 + 5/12, "feet"),
  37173. default: true
  37174. },
  37175. ]
  37176. ))
  37177. characterMakers.push(() => makeCharacter(
  37178. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37179. {
  37180. front: {
  37181. height: math.unit(6 + 3/12, "feet"),
  37182. name: "Front",
  37183. image: {
  37184. source: "./media/characters/silvy/front.svg",
  37185. extra: 1995/1836,
  37186. bottom: 225/2220
  37187. }
  37188. },
  37189. },
  37190. [
  37191. {
  37192. name: "Normal",
  37193. height: math.unit(6 + 3/12, "feet"),
  37194. default: true
  37195. },
  37196. ]
  37197. ))
  37198. characterMakers.push(() => makeCharacter(
  37199. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37200. {
  37201. front: {
  37202. height: math.unit(3 + 8/12, "feet"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/rodney/front.svg",
  37206. extra: 1956/1747,
  37207. bottom: 31/1987
  37208. }
  37209. },
  37210. frontDressed: {
  37211. height: math.unit(2.9, "feet"),
  37212. name: "Front (Dressed)",
  37213. image: {
  37214. source: "./media/characters/rodney/front-dressed.svg",
  37215. extra: 1382/1241,
  37216. bottom: 385/1767
  37217. }
  37218. },
  37219. },
  37220. [
  37221. {
  37222. name: "Normal",
  37223. height: math.unit(3 + 8/12, "feet"),
  37224. default: true
  37225. },
  37226. ]
  37227. ))
  37228. characterMakers.push(() => makeCharacter(
  37229. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37230. {
  37231. front: {
  37232. height: math.unit(5 + 9/12, "feet"),
  37233. weight: math.unit(194, "lbs"),
  37234. name: "Front",
  37235. image: {
  37236. source: "./media/characters/zakail-sudekai/front.svg",
  37237. extra: 2696/2533,
  37238. bottom: 248/2944
  37239. }
  37240. },
  37241. maw: {
  37242. height: math.unit(1.35, "feet"),
  37243. name: "Maw",
  37244. image: {
  37245. source: "./media/characters/zakail-sudekai/maw.svg"
  37246. }
  37247. },
  37248. },
  37249. [
  37250. {
  37251. name: "Normal",
  37252. height: math.unit(5 + 9/12, "feet"),
  37253. default: true
  37254. },
  37255. ]
  37256. ))
  37257. characterMakers.push(() => makeCharacter(
  37258. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37259. {
  37260. front: {
  37261. height: math.unit(8 + 4/12, "feet"),
  37262. weight: math.unit(1200, "lb"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/eleanor/front.svg",
  37266. extra: 1226/1192,
  37267. bottom: 52/1278
  37268. }
  37269. },
  37270. back: {
  37271. height: math.unit(8 + 4/12, "feet"),
  37272. weight: math.unit(1200, "lb"),
  37273. name: "Back",
  37274. image: {
  37275. source: "./media/characters/eleanor/back.svg",
  37276. extra: 1242/1184,
  37277. bottom: 60/1302
  37278. }
  37279. },
  37280. head: {
  37281. height: math.unit(2.62, "feet"),
  37282. name: "Head",
  37283. image: {
  37284. source: "./media/characters/eleanor/head.svg"
  37285. }
  37286. },
  37287. },
  37288. [
  37289. {
  37290. name: "Normal",
  37291. height: math.unit(8 + 4/12, "feet"),
  37292. default: true
  37293. },
  37294. ]
  37295. ))
  37296. characterMakers.push(() => makeCharacter(
  37297. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37298. {
  37299. front: {
  37300. height: math.unit(8 + 4/12, "feet"),
  37301. weight: math.unit(750, "lb"),
  37302. name: "Front",
  37303. image: {
  37304. source: "./media/characters/tanya/front.svg",
  37305. extra: 1749/1615,
  37306. bottom: 33/1782
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(8 + 4/12, "feet"),
  37314. default: true
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37320. {
  37321. front: {
  37322. height: math.unit(5, "feet"),
  37323. weight: math.unit(225, "lb"),
  37324. name: "Front",
  37325. image: {
  37326. source: "./media/characters/cindy/front.svg",
  37327. extra: 1320/1250,
  37328. bottom: 42/1362
  37329. }
  37330. },
  37331. frontDressed: {
  37332. height: math.unit(5, "feet"),
  37333. weight: math.unit(225, "lb"),
  37334. name: "Front (Dressed)",
  37335. image: {
  37336. source: "./media/characters/cindy/front-dressed.svg",
  37337. extra: 1320/1250,
  37338. bottom: 42/1362
  37339. }
  37340. },
  37341. back: {
  37342. height: math.unit(5, "feet"),
  37343. weight: math.unit(225, "lb"),
  37344. name: "Back",
  37345. image: {
  37346. source: "./media/characters/cindy/back.svg",
  37347. extra: 1384/1346,
  37348. bottom: 14/1398
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(5, "feet"),
  37356. default: true
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37362. {
  37363. front: {
  37364. height: math.unit(6 + 9/12, "feet"),
  37365. weight: math.unit(440, "lb"),
  37366. name: "Front",
  37367. image: {
  37368. source: "./media/characters/wilbur-owen/front.svg",
  37369. extra: 1575/1448,
  37370. bottom: 72/1647
  37371. }
  37372. },
  37373. back: {
  37374. height: math.unit(6 + 9/12, "feet"),
  37375. weight: math.unit(440, "lb"),
  37376. name: "Back",
  37377. image: {
  37378. source: "./media/characters/wilbur-owen/back.svg",
  37379. extra: 1578/1445,
  37380. bottom: 36/1614
  37381. }
  37382. },
  37383. },
  37384. [
  37385. {
  37386. name: "Normal",
  37387. height: math.unit(6 + 9/12, "feet"),
  37388. default: true
  37389. },
  37390. ]
  37391. ))
  37392. characterMakers.push(() => makeCharacter(
  37393. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37394. {
  37395. front: {
  37396. height: math.unit(6 + 5/12, "feet"),
  37397. weight: math.unit(650, "lb"),
  37398. name: "Front",
  37399. image: {
  37400. source: "./media/characters/keegan/front.svg",
  37401. extra: 2387/2198,
  37402. bottom: 33/2420
  37403. }
  37404. },
  37405. side: {
  37406. height: math.unit(6 + 5/12, "feet"),
  37407. weight: math.unit(650, "lb"),
  37408. name: "Side",
  37409. image: {
  37410. source: "./media/characters/keegan/side.svg",
  37411. extra: 2390/2202,
  37412. bottom: 47/2437
  37413. }
  37414. },
  37415. back: {
  37416. height: math.unit(6 + 5/12, "feet"),
  37417. weight: math.unit(650, "lb"),
  37418. name: "Back",
  37419. image: {
  37420. source: "./media/characters/keegan/back.svg",
  37421. extra: 2418/2268,
  37422. bottom: 15/2433
  37423. }
  37424. },
  37425. frontSfw: {
  37426. height: math.unit(6 + 5/12, "feet"),
  37427. weight: math.unit(650, "lb"),
  37428. name: "Front (SFW)",
  37429. image: {
  37430. source: "./media/characters/keegan/front-sfw.svg",
  37431. extra: 2387/2198,
  37432. bottom: 33/2420
  37433. }
  37434. },
  37435. beans: {
  37436. height: math.unit(1.85, "feet"),
  37437. name: "Beans",
  37438. image: {
  37439. source: "./media/characters/keegan/beans.svg"
  37440. }
  37441. },
  37442. },
  37443. [
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(6 + 5/12, "feet"),
  37447. default: true
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37453. {
  37454. front: {
  37455. height: math.unit(9, "feet"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/colton/front.svg",
  37459. extra: 1589/1326,
  37460. bottom: 139/1728
  37461. }
  37462. },
  37463. },
  37464. [
  37465. {
  37466. name: "Normal",
  37467. height: math.unit(9, "feet"),
  37468. default: true
  37469. },
  37470. ]
  37471. ))
  37472. characterMakers.push(() => makeCharacter(
  37473. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37474. {
  37475. front: {
  37476. height: math.unit(2 + 9/12, "feet"),
  37477. name: "Front",
  37478. image: {
  37479. source: "./media/characters/bora/front.svg",
  37480. extra: 1265/1250,
  37481. bottom: 24/1289
  37482. }
  37483. },
  37484. },
  37485. [
  37486. {
  37487. name: "Normal",
  37488. height: math.unit(2 + 9/12, "feet"),
  37489. default: true
  37490. },
  37491. ]
  37492. ))
  37493. characterMakers.push(() => makeCharacter(
  37494. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37495. {
  37496. front: {
  37497. height: math.unit(8, "feet"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/myu-myu/front.svg",
  37501. extra: 1949/1857,
  37502. bottom: 90/2039
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(8, "feet"),
  37510. default: true
  37511. },
  37512. {
  37513. name: "Big",
  37514. height: math.unit(15, "feet")
  37515. },
  37516. {
  37517. name: "BIG",
  37518. height: math.unit(25, "feet")
  37519. },
  37520. ]
  37521. ))
  37522. characterMakers.push(() => makeCharacter(
  37523. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37524. {
  37525. side: {
  37526. height: math.unit(7 + 5/12, "feet"),
  37527. weight: math.unit(2800, "lb"),
  37528. name: "Side",
  37529. image: {
  37530. source: "./media/characters/haloren/side.svg",
  37531. extra: 1793/409,
  37532. bottom: 59/1852
  37533. }
  37534. },
  37535. frontPaw: {
  37536. height: math.unit(2.36, "feet"),
  37537. name: "Front paw",
  37538. image: {
  37539. source: "./media/characters/haloren/front-paw.svg"
  37540. }
  37541. },
  37542. hindPaw: {
  37543. height: math.unit(3.18, "feet"),
  37544. name: "Hind paw",
  37545. image: {
  37546. source: "./media/characters/haloren/hind-paw.svg"
  37547. }
  37548. },
  37549. maw: {
  37550. height: math.unit(5.05, "feet"),
  37551. name: "Maw",
  37552. image: {
  37553. source: "./media/characters/haloren/maw.svg"
  37554. }
  37555. },
  37556. dick: {
  37557. height: math.unit(2.90, "feet"),
  37558. name: "Dick",
  37559. image: {
  37560. source: "./media/characters/haloren/dick.svg"
  37561. }
  37562. },
  37563. },
  37564. [
  37565. {
  37566. name: "Normal",
  37567. height: math.unit(7 + 5/12, "feet"),
  37568. default: true
  37569. },
  37570. {
  37571. name: "Enhanced",
  37572. height: math.unit(14 + 3/12, "feet")
  37573. },
  37574. ]
  37575. ))
  37576. characterMakers.push(() => makeCharacter(
  37577. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37578. {
  37579. front: {
  37580. height: math.unit(171, "cm"),
  37581. name: "Front",
  37582. image: {
  37583. source: "./media/characters/kimmy/front.svg",
  37584. extra: 1491/1435,
  37585. bottom: 53/1544
  37586. }
  37587. },
  37588. },
  37589. [
  37590. {
  37591. name: "Small",
  37592. height: math.unit(9, "cm")
  37593. },
  37594. {
  37595. name: "Normal",
  37596. height: math.unit(171, "cm"),
  37597. default: true
  37598. },
  37599. ]
  37600. ))
  37601. characterMakers.push(() => makeCharacter(
  37602. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37603. {
  37604. front: {
  37605. height: math.unit(8, "feet"),
  37606. weight: math.unit(300, "lb"),
  37607. name: "Front",
  37608. image: {
  37609. source: "./media/characters/galeboomer/front.svg",
  37610. extra: 4651/4415,
  37611. bottom: 162/4813
  37612. }
  37613. },
  37614. back: {
  37615. height: math.unit(8, "feet"),
  37616. weight: math.unit(300, "lb"),
  37617. name: "Back",
  37618. image: {
  37619. source: "./media/characters/galeboomer/back.svg",
  37620. extra: 4544/4314,
  37621. bottom: 16/4560
  37622. }
  37623. },
  37624. frontAlt: {
  37625. height: math.unit(8, "feet"),
  37626. weight: math.unit(300, "lb"),
  37627. name: "Front (Alt)",
  37628. image: {
  37629. source: "./media/characters/galeboomer/front-alt.svg",
  37630. extra: 4458/4228,
  37631. bottom: 68/4526
  37632. }
  37633. },
  37634. maw: {
  37635. height: math.unit(1.2, "feet"),
  37636. name: "Maw",
  37637. image: {
  37638. source: "./media/characters/galeboomer/maw.svg"
  37639. }
  37640. },
  37641. },
  37642. [
  37643. {
  37644. name: "Normal",
  37645. height: math.unit(8, "feet"),
  37646. default: true
  37647. },
  37648. ]
  37649. ))
  37650. characterMakers.push(() => makeCharacter(
  37651. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37652. {
  37653. front: {
  37654. height: math.unit(5 + 9/12, "feet"),
  37655. weight: math.unit(120, "lb"),
  37656. name: "Front",
  37657. image: {
  37658. source: "./media/characters/chyr/front.svg",
  37659. extra: 1323/1254,
  37660. bottom: 63/1386
  37661. }
  37662. },
  37663. back: {
  37664. height: math.unit(5 + 9/12, "feet"),
  37665. weight: math.unit(120, "lb"),
  37666. name: "Back",
  37667. image: {
  37668. source: "./media/characters/chyr/back.svg",
  37669. extra: 1323/1252,
  37670. bottom: 48/1371
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Normal",
  37677. height: math.unit(5 + 9/12, "feet"),
  37678. default: true
  37679. },
  37680. ]
  37681. ))
  37682. characterMakers.push(() => makeCharacter(
  37683. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37684. {
  37685. front: {
  37686. height: math.unit(7, "feet"),
  37687. weight: math.unit(310, "lb"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/solarus/front.svg",
  37691. extra: 2415/2021,
  37692. bottom: 103/2518
  37693. }
  37694. },
  37695. back: {
  37696. height: math.unit(7, "feet"),
  37697. weight: math.unit(310, "lb"),
  37698. name: "Back",
  37699. image: {
  37700. source: "./media/characters/solarus/back.svg",
  37701. extra: 2463/2089,
  37702. bottom: 79/2542
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Normal",
  37709. height: math.unit(7, "feet"),
  37710. default: true
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37716. {
  37717. front: {
  37718. height: math.unit(16, "feet"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37722. extra: 1844/1780,
  37723. bottom: 58/1902
  37724. }
  37725. },
  37726. winterCoat: {
  37727. height: math.unit(16, "feet"),
  37728. name: "Winter Coat",
  37729. image: {
  37730. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37731. extra: 1807/1775,
  37732. bottom: 69/1876
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Normal",
  37739. height: math.unit(16, "feet"),
  37740. default: true
  37741. },
  37742. {
  37743. name: "Chicago Size",
  37744. height: math.unit(560, "feet")
  37745. },
  37746. ]
  37747. ))
  37748. characterMakers.push(() => makeCharacter(
  37749. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37750. {
  37751. front: {
  37752. height: math.unit(11 + 6/12, "feet"),
  37753. weight: math.unit(1366, "lb"),
  37754. name: "Front",
  37755. image: {
  37756. source: "./media/characters/lexor/front.svg",
  37757. extra: 1560/1481,
  37758. bottom: 211/1771
  37759. }
  37760. },
  37761. back: {
  37762. height: math.unit(11 + 6/12, "feet"),
  37763. weight: math.unit(1366, "lb"),
  37764. name: "Back",
  37765. image: {
  37766. source: "./media/characters/lexor/back.svg",
  37767. extra: 1614/1533,
  37768. bottom: 76/1690
  37769. }
  37770. },
  37771. maw: {
  37772. height: math.unit(3, "feet"),
  37773. name: "Maw",
  37774. image: {
  37775. source: "./media/characters/lexor/maw.svg"
  37776. }
  37777. },
  37778. dick: {
  37779. height: math.unit(2.59, "feet"),
  37780. name: "Dick",
  37781. image: {
  37782. source: "./media/characters/lexor/dick.svg"
  37783. }
  37784. },
  37785. },
  37786. [
  37787. {
  37788. name: "Normal",
  37789. height: math.unit(11 + 6/12, "feet"),
  37790. default: true
  37791. },
  37792. ]
  37793. ))
  37794. characterMakers.push(() => makeCharacter(
  37795. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37796. {
  37797. front: {
  37798. height: math.unit(5 + 8/12, "feet"),
  37799. name: "Front",
  37800. image: {
  37801. source: "./media/characters/magnum/front.svg",
  37802. extra: 942/855,
  37803. bottom: 26/968
  37804. }
  37805. },
  37806. },
  37807. [
  37808. {
  37809. name: "Normal",
  37810. height: math.unit(5 + 8/12, "feet"),
  37811. default: true
  37812. },
  37813. ]
  37814. ))
  37815. characterMakers.push(() => makeCharacter(
  37816. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37817. {
  37818. front: {
  37819. height: math.unit(18 + 4/12, "feet"),
  37820. weight: math.unit(1500, "kg"),
  37821. name: "Front",
  37822. image: {
  37823. source: "./media/characters/solas-sharpsman/front.svg",
  37824. extra: 1698/1589,
  37825. bottom: 0/1698
  37826. }
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "Normal",
  37832. height: math.unit(18 + 4/12, "feet"),
  37833. default: true
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(5 + 5/12, "feet"),
  37842. weight: math.unit(180, "lb"),
  37843. name: "Front",
  37844. image: {
  37845. source: "./media/characters/october/front.svg",
  37846. extra: 1800/1650,
  37847. bottom: 0/1800
  37848. }
  37849. },
  37850. frontNsfw: {
  37851. height: math.unit(5 + 5/12, "feet"),
  37852. weight: math.unit(180, "lb"),
  37853. name: "Front (NSFW)",
  37854. image: {
  37855. source: "./media/characters/october/front-nsfw.svg",
  37856. extra: 1392/1307,
  37857. bottom: 42/1434
  37858. }
  37859. },
  37860. },
  37861. [
  37862. {
  37863. name: "Normal",
  37864. height: math.unit(5 + 5/12, "feet"),
  37865. default: true
  37866. },
  37867. ]
  37868. ))
  37869. characterMakers.push(() => makeCharacter(
  37870. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37871. {
  37872. front: {
  37873. height: math.unit(8 + 6/12, "feet"),
  37874. name: "Front",
  37875. image: {
  37876. source: "./media/characters/essynkardi/front.svg",
  37877. extra: 1914/1846,
  37878. bottom: 22/1936
  37879. }
  37880. },
  37881. },
  37882. [
  37883. {
  37884. name: "Normal",
  37885. height: math.unit(8 + 6/12, "feet"),
  37886. default: true
  37887. },
  37888. ]
  37889. ))
  37890. characterMakers.push(() => makeCharacter(
  37891. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37892. {
  37893. front: {
  37894. height: math.unit(6 + 6/12, "feet"),
  37895. weight: math.unit(7, "lb"),
  37896. name: "Front",
  37897. image: {
  37898. source: "./media/characters/icky/front.svg",
  37899. extra: 813/782,
  37900. bottom: 66/879
  37901. }
  37902. },
  37903. back: {
  37904. height: math.unit(6 + 6/12, "feet"),
  37905. weight: math.unit(7, "lb"),
  37906. name: "Back",
  37907. image: {
  37908. source: "./media/characters/icky/back.svg",
  37909. extra: 754/735,
  37910. bottom: 56/810
  37911. }
  37912. },
  37913. },
  37914. [
  37915. {
  37916. name: "Normal",
  37917. height: math.unit(6 + 6/12, "feet"),
  37918. default: true
  37919. },
  37920. ]
  37921. ))
  37922. characterMakers.push(() => makeCharacter(
  37923. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37924. {
  37925. front: {
  37926. height: math.unit(15, "feet"),
  37927. name: "Front",
  37928. image: {
  37929. source: "./media/characters/rojas/front.svg",
  37930. extra: 1462/1408,
  37931. bottom: 95/1557
  37932. }
  37933. },
  37934. back: {
  37935. height: math.unit(15, "feet"),
  37936. name: "Back",
  37937. image: {
  37938. source: "./media/characters/rojas/back.svg",
  37939. extra: 1023/954,
  37940. bottom: 28/1051
  37941. }
  37942. },
  37943. },
  37944. [
  37945. {
  37946. name: "Normal",
  37947. height: math.unit(15, "feet"),
  37948. default: true
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37954. {
  37955. frontHuman: {
  37956. height: math.unit(5 + 7/12, "feet"),
  37957. name: "Front (Human)",
  37958. image: {
  37959. source: "./media/characters/alek-dryagan/front-human.svg",
  37960. extra: 1687/1667,
  37961. bottom: 69/1756
  37962. }
  37963. },
  37964. backHuman: {
  37965. height: math.unit(5 + 7/12, "feet"),
  37966. name: "Back (Human)",
  37967. image: {
  37968. source: "./media/characters/alek-dryagan/back-human.svg",
  37969. extra: 1670/1649,
  37970. bottom: 65/1735
  37971. }
  37972. },
  37973. frontDemi: {
  37974. height: math.unit(65, "feet"),
  37975. name: "Front (Demi)",
  37976. image: {
  37977. source: "./media/characters/alek-dryagan/front-demi.svg",
  37978. extra: 1669/1642,
  37979. bottom: 49/1718
  37980. }
  37981. },
  37982. backDemi: {
  37983. height: math.unit(65, "feet"),
  37984. name: "Back (Demi)",
  37985. image: {
  37986. source: "./media/characters/alek-dryagan/back-demi.svg",
  37987. extra: 1658/1637,
  37988. bottom: 40/1698
  37989. }
  37990. },
  37991. mawHuman: {
  37992. height: math.unit(0.3, "feet"),
  37993. name: "Maw (Human)",
  37994. image: {
  37995. source: "./media/characters/alek-dryagan/maw-human.svg"
  37996. }
  37997. },
  37998. mawDemi: {
  37999. height: math.unit(3.8, "feet"),
  38000. name: "Maw (Demi)",
  38001. image: {
  38002. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38003. }
  38004. },
  38005. },
  38006. [
  38007. {
  38008. name: "Normal",
  38009. height: math.unit(5 + 7/12, "feet"),
  38010. default: true
  38011. },
  38012. ]
  38013. ))
  38014. characterMakers.push(() => makeCharacter(
  38015. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38016. {
  38017. frontHuman: {
  38018. height: math.unit(5 + 2/12, "feet"),
  38019. name: "Front (Human)",
  38020. image: {
  38021. source: "./media/characters/gen/front-human.svg",
  38022. extra: 1627/1538,
  38023. bottom: 71/1698
  38024. }
  38025. },
  38026. backHuman: {
  38027. height: math.unit(5 + 2/12, "feet"),
  38028. name: "Back (Human)",
  38029. image: {
  38030. source: "./media/characters/gen/back-human.svg",
  38031. extra: 1638/1548,
  38032. bottom: 69/1707
  38033. }
  38034. },
  38035. frontDemi: {
  38036. height: math.unit(5 + 2/12, "feet"),
  38037. name: "Front (Demi)",
  38038. image: {
  38039. source: "./media/characters/gen/front-demi.svg",
  38040. extra: 1627/1538,
  38041. bottom: 71/1698
  38042. }
  38043. },
  38044. backDemi: {
  38045. height: math.unit(5 + 2/12, "feet"),
  38046. name: "Back (Demi)",
  38047. image: {
  38048. source: "./media/characters/gen/back-demi.svg",
  38049. extra: 1638/1548,
  38050. bottom: 69/1707
  38051. }
  38052. },
  38053. },
  38054. [
  38055. {
  38056. name: "Normal",
  38057. height: math.unit(5 + 2/12, "feet"),
  38058. default: true
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38064. {
  38065. frontImp: {
  38066. height: math.unit(1 + 11/12, "feet"),
  38067. name: "Front (Imp)",
  38068. image: {
  38069. source: "./media/characters/max-kobold/front-imp.svg",
  38070. extra: 1238/1134,
  38071. bottom: 81/1319
  38072. }
  38073. },
  38074. backImp: {
  38075. height: math.unit(1 + 11/12, "feet"),
  38076. name: "Back (Imp)",
  38077. image: {
  38078. source: "./media/characters/max-kobold/back-imp.svg",
  38079. extra: 1334/1175,
  38080. bottom: 34/1368
  38081. }
  38082. },
  38083. frontDemi: {
  38084. height: math.unit(5 + 9/12, "feet"),
  38085. name: "Front (Demi)",
  38086. image: {
  38087. source: "./media/characters/max-kobold/front-demi.svg",
  38088. extra: 1715/1685,
  38089. bottom: 54/1769
  38090. }
  38091. },
  38092. backDemi: {
  38093. height: math.unit(5 + 9/12, "feet"),
  38094. name: "Back (Demi)",
  38095. image: {
  38096. source: "./media/characters/max-kobold/back-demi.svg",
  38097. extra: 1752/1729,
  38098. bottom: 41/1793
  38099. }
  38100. },
  38101. handImp: {
  38102. height: math.unit(0.45, "feet"),
  38103. name: "Hand (Imp)",
  38104. image: {
  38105. source: "./media/characters/max-kobold/hand.svg"
  38106. }
  38107. },
  38108. pawImp: {
  38109. height: math.unit(0.46, "feet"),
  38110. name: "Paw (Imp)",
  38111. image: {
  38112. source: "./media/characters/max-kobold/paw.svg"
  38113. }
  38114. },
  38115. handDemi: {
  38116. height: math.unit(0.80, "feet"),
  38117. name: "Hand (Demi)",
  38118. image: {
  38119. source: "./media/characters/max-kobold/hand.svg"
  38120. }
  38121. },
  38122. pawDemi: {
  38123. height: math.unit(1.1, "feet"),
  38124. name: "Paw (Demi)",
  38125. image: {
  38126. source: "./media/characters/max-kobold/paw.svg"
  38127. }
  38128. },
  38129. headImp: {
  38130. height: math.unit(1.33, "feet"),
  38131. name: "Head (Imp)",
  38132. image: {
  38133. source: "./media/characters/max-kobold/head-imp.svg"
  38134. }
  38135. },
  38136. mawImp: {
  38137. height: math.unit(0.75, "feet"),
  38138. name: "Maw (Imp)",
  38139. image: {
  38140. source: "./media/characters/max-kobold/maw-imp.svg"
  38141. }
  38142. },
  38143. mawDemi: {
  38144. height: math.unit(0.42, "feet"),
  38145. name: "Maw (Demi)",
  38146. image: {
  38147. source: "./media/characters/max-kobold/maw-demi.svg"
  38148. }
  38149. },
  38150. },
  38151. [
  38152. {
  38153. name: "Normal",
  38154. height: math.unit(1 + 11/12, "feet"),
  38155. default: true
  38156. },
  38157. ]
  38158. ))
  38159. characterMakers.push(() => makeCharacter(
  38160. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38161. {
  38162. front: {
  38163. height: math.unit(7 + 5/12, "feet"),
  38164. name: "Front",
  38165. image: {
  38166. source: "./media/characters/carbon/front.svg",
  38167. extra: 1754/1689,
  38168. bottom: 65/1819
  38169. }
  38170. },
  38171. back: {
  38172. height: math.unit(7 + 5/12, "feet"),
  38173. name: "Back",
  38174. image: {
  38175. source: "./media/characters/carbon/back.svg",
  38176. extra: 1762/1695,
  38177. bottom: 24/1786
  38178. }
  38179. },
  38180. frontGigantamax: {
  38181. height: math.unit(150, "feet"),
  38182. name: "Front (Gigantamax)",
  38183. image: {
  38184. source: "./media/characters/carbon/front-gigantamax.svg",
  38185. extra: 1826/1669,
  38186. bottom: 59/1885
  38187. }
  38188. },
  38189. backGigantamax: {
  38190. height: math.unit(150, "feet"),
  38191. name: "Back (Gigantamax)",
  38192. image: {
  38193. source: "./media/characters/carbon/back-gigantamax.svg",
  38194. extra: 1796/1653,
  38195. bottom: 53/1849
  38196. }
  38197. },
  38198. maw: {
  38199. height: math.unit(0.48, "feet"),
  38200. name: "Maw",
  38201. image: {
  38202. source: "./media/characters/carbon/maw.svg"
  38203. }
  38204. },
  38205. mawGigantamax: {
  38206. height: math.unit(7.5, "feet"),
  38207. name: "Maw (Gigantamax)",
  38208. image: {
  38209. source: "./media/characters/carbon/maw-gigantamax.svg"
  38210. }
  38211. },
  38212. },
  38213. [
  38214. {
  38215. name: "Normal",
  38216. height: math.unit(7 + 5/12, "feet"),
  38217. default: true
  38218. },
  38219. ]
  38220. ))
  38221. characterMakers.push(() => makeCharacter(
  38222. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38223. {
  38224. front: {
  38225. height: math.unit(6, "feet"),
  38226. name: "Front",
  38227. image: {
  38228. source: "./media/characters/maverick/front.svg",
  38229. extra: 1672/1661,
  38230. bottom: 85/1757
  38231. }
  38232. },
  38233. back: {
  38234. height: math.unit(6, "feet"),
  38235. name: "Back",
  38236. image: {
  38237. source: "./media/characters/maverick/back.svg",
  38238. extra: 1642/1631,
  38239. bottom: 38/1680
  38240. }
  38241. },
  38242. },
  38243. [
  38244. {
  38245. name: "Normal",
  38246. height: math.unit(6, "feet"),
  38247. default: true
  38248. },
  38249. ]
  38250. ))
  38251. characterMakers.push(() => makeCharacter(
  38252. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38253. {
  38254. front: {
  38255. height: math.unit(15, "feet"),
  38256. weight: math.unit(615, "lb"),
  38257. name: "Front",
  38258. image: {
  38259. source: "./media/characters/grockle/front.svg",
  38260. extra: 1535/1427,
  38261. bottom: 56/1591
  38262. }
  38263. },
  38264. },
  38265. [
  38266. {
  38267. name: "Normal",
  38268. height: math.unit(15, "feet"),
  38269. default: true
  38270. },
  38271. {
  38272. name: "Large",
  38273. height: math.unit(150, "feet")
  38274. },
  38275. {
  38276. name: "Macro",
  38277. height: math.unit(1876, "feet")
  38278. },
  38279. {
  38280. name: "Mega Macro",
  38281. height: math.unit(121940, "feet")
  38282. },
  38283. {
  38284. name: "Giga Macro",
  38285. height: math.unit(750, "km")
  38286. },
  38287. {
  38288. name: "Tera Macro",
  38289. height: math.unit(750000, "km")
  38290. },
  38291. {
  38292. name: "Galactic",
  38293. height: math.unit(1.4e5, "km")
  38294. },
  38295. {
  38296. name: "Godlike",
  38297. height: math.unit(9.8e280, "galaxies")
  38298. },
  38299. ]
  38300. ))
  38301. characterMakers.push(() => makeCharacter(
  38302. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38303. {
  38304. front: {
  38305. height: math.unit(11, "meters"),
  38306. weight: math.unit(20, "tonnes"),
  38307. name: "Front",
  38308. image: {
  38309. source: "./media/characters/alistair/front.svg",
  38310. extra: 1265/1009,
  38311. bottom: 93/1358
  38312. }
  38313. },
  38314. },
  38315. [
  38316. {
  38317. name: "Normal",
  38318. height: math.unit(11, "meters"),
  38319. default: true
  38320. },
  38321. ]
  38322. ))
  38323. characterMakers.push(() => makeCharacter(
  38324. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38325. {
  38326. front: {
  38327. height: math.unit(5 + 8/12, "feet"),
  38328. name: "Front",
  38329. image: {
  38330. source: "./media/characters/haruka/front.svg",
  38331. extra: 2012/1952,
  38332. bottom: 0/2012
  38333. }
  38334. },
  38335. },
  38336. [
  38337. {
  38338. name: "Normal",
  38339. height: math.unit(5 + 8/12, "feet"),
  38340. default: true
  38341. },
  38342. ]
  38343. ))
  38344. characterMakers.push(() => makeCharacter(
  38345. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38346. {
  38347. back: {
  38348. height: math.unit(9, "feet"),
  38349. name: "Back",
  38350. image: {
  38351. source: "./media/characters/vivian-sylveon/back.svg",
  38352. extra: 1853/1714,
  38353. bottom: 0/1853
  38354. }
  38355. },
  38356. },
  38357. [
  38358. {
  38359. name: "Normal",
  38360. height: math.unit(9, "feet"),
  38361. default: true
  38362. },
  38363. {
  38364. name: "Macro",
  38365. height: math.unit(500, "feet")
  38366. },
  38367. {
  38368. name: "Megamacro",
  38369. height: math.unit(600, "miles")
  38370. },
  38371. {
  38372. name: "Gigamacro",
  38373. height: math.unit(30000, "miles")
  38374. },
  38375. ]
  38376. ))
  38377. characterMakers.push(() => makeCharacter(
  38378. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38379. {
  38380. anthro: {
  38381. height: math.unit(5 + 10/12, "feet"),
  38382. weight: math.unit(100, "lb"),
  38383. name: "Anthro",
  38384. image: {
  38385. source: "./media/characters/daiki/anthro.svg",
  38386. extra: 1115/1027,
  38387. bottom: 69/1184
  38388. }
  38389. },
  38390. feral: {
  38391. height: math.unit(200, "feet"),
  38392. name: "Feral",
  38393. image: {
  38394. source: "./media/characters/daiki/feral.svg",
  38395. extra: 1256/313,
  38396. bottom: 39/1295
  38397. }
  38398. },
  38399. feralHead: {
  38400. height: math.unit(171, "feet"),
  38401. name: "Feral Head",
  38402. image: {
  38403. source: "./media/characters/daiki/feral-head.svg"
  38404. }
  38405. },
  38406. manaDragon: {
  38407. height: math.unit(170, "meters"),
  38408. name: "Mana-dragon",
  38409. image: {
  38410. source: "./media/characters/daiki/mana-dragon.svg",
  38411. extra: 763/420,
  38412. bottom: 97/860
  38413. }
  38414. },
  38415. },
  38416. [
  38417. {
  38418. name: "Normal",
  38419. height: math.unit(5 + 10/12, "feet"),
  38420. default: true
  38421. },
  38422. ]
  38423. ))
  38424. characterMakers.push(() => makeCharacter(
  38425. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38426. {
  38427. fullyEquippedFront: {
  38428. height: math.unit(3 + 1/12, "feet"),
  38429. weight: math.unit(24, "lb"),
  38430. name: "Fully Equipped (Front)",
  38431. image: {
  38432. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38433. extra: 687/605,
  38434. bottom: 18/705
  38435. }
  38436. },
  38437. fullyEquippedBack: {
  38438. height: math.unit(3 + 1/12, "feet"),
  38439. weight: math.unit(24, "lb"),
  38440. name: "Fully Equipped (Back)",
  38441. image: {
  38442. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38443. extra: 689/590,
  38444. bottom: 18/707
  38445. }
  38446. },
  38447. dailyWear: {
  38448. height: math.unit(3 + 1/12, "feet"),
  38449. weight: math.unit(24, "lb"),
  38450. name: "Daily Wear",
  38451. image: {
  38452. source: "./media/characters/tea-spot/daily-wear.svg",
  38453. extra: 701/620,
  38454. bottom: 21/722
  38455. }
  38456. },
  38457. maidWork: {
  38458. height: math.unit(3 + 1/12, "feet"),
  38459. weight: math.unit(24, "lb"),
  38460. name: "Maid Work",
  38461. image: {
  38462. source: "./media/characters/tea-spot/maid-work.svg",
  38463. extra: 693/609,
  38464. bottom: 15/708
  38465. }
  38466. },
  38467. },
  38468. [
  38469. {
  38470. name: "Normal",
  38471. height: math.unit(3 + 1/12, "feet"),
  38472. default: true
  38473. },
  38474. ]
  38475. ))
  38476. characterMakers.push(() => makeCharacter(
  38477. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38478. {
  38479. front: {
  38480. height: math.unit(175, "cm"),
  38481. weight: math.unit(75, "kg"),
  38482. name: "Front",
  38483. image: {
  38484. source: "./media/characters/chee/front.svg",
  38485. extra: 1796/1740,
  38486. bottom: 40/1836
  38487. }
  38488. },
  38489. },
  38490. [
  38491. {
  38492. name: "Micro-Micro",
  38493. height: math.unit(1, "nm")
  38494. },
  38495. {
  38496. name: "Micro-erst",
  38497. height: math.unit(1, "micrometer")
  38498. },
  38499. {
  38500. name: "Micro-er",
  38501. height: math.unit(1, "cm")
  38502. },
  38503. {
  38504. name: "Normal",
  38505. height: math.unit(175, "cm"),
  38506. default: true
  38507. },
  38508. {
  38509. name: "Macro",
  38510. height: math.unit(100, "m")
  38511. },
  38512. {
  38513. name: "Macro-er",
  38514. height: math.unit(1, "km")
  38515. },
  38516. {
  38517. name: "Macro-erst",
  38518. height: math.unit(10, "km")
  38519. },
  38520. {
  38521. name: "Macro-Macro",
  38522. height: math.unit(100, "km")
  38523. },
  38524. ]
  38525. ))
  38526. characterMakers.push(() => makeCharacter(
  38527. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38528. {
  38529. front: {
  38530. height: math.unit(11 + 9/12, "feet"),
  38531. weight: math.unit(935, "lb"),
  38532. name: "Front",
  38533. image: {
  38534. source: "./media/characters/kingsley/front.svg",
  38535. extra: 1803/1674,
  38536. bottom: 127/1930
  38537. }
  38538. },
  38539. frontNude: {
  38540. height: math.unit(11 + 9/12, "feet"),
  38541. weight: math.unit(935, "lb"),
  38542. name: "Front (Nude)",
  38543. image: {
  38544. source: "./media/characters/kingsley/front-nude.svg",
  38545. extra: 1803/1674,
  38546. bottom: 127/1930
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Normal",
  38553. height: math.unit(11 + 9/12, "feet"),
  38554. default: true
  38555. },
  38556. ]
  38557. ))
  38558. characterMakers.push(() => makeCharacter(
  38559. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38560. {
  38561. side: {
  38562. height: math.unit(9, "feet"),
  38563. name: "Side",
  38564. image: {
  38565. source: "./media/characters/rymel/side.svg",
  38566. extra: 792/469,
  38567. bottom: 121/913
  38568. }
  38569. },
  38570. maw: {
  38571. height: math.unit(2.4, "meters"),
  38572. name: "Maw",
  38573. image: {
  38574. source: "./media/characters/rymel/maw.svg"
  38575. }
  38576. },
  38577. },
  38578. [
  38579. {
  38580. name: "House Drake",
  38581. height: math.unit(2, "feet")
  38582. },
  38583. {
  38584. name: "Reduced",
  38585. height: math.unit(4.5, "feet")
  38586. },
  38587. {
  38588. name: "Normal",
  38589. height: math.unit(9, "feet"),
  38590. default: true
  38591. },
  38592. ]
  38593. ))
  38594. characterMakers.push(() => makeCharacter(
  38595. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38596. {
  38597. front: {
  38598. height: math.unit(1.74, "meters"),
  38599. weight: math.unit(55, "kg"),
  38600. name: "Front",
  38601. image: {
  38602. source: "./media/characters/rubus/front.svg",
  38603. extra: 1894/1742,
  38604. bottom: 44/1938
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(1.74, "meters"),
  38612. default: true
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38618. {
  38619. front: {
  38620. height: math.unit(5 + 2/12, "feet"),
  38621. weight: math.unit(112, "lb"),
  38622. name: "Front",
  38623. image: {
  38624. source: "./media/characters/cassie-kingston/front.svg",
  38625. extra: 1438/1390,
  38626. bottom: 47/1485
  38627. }
  38628. },
  38629. },
  38630. [
  38631. {
  38632. name: "Normal",
  38633. height: math.unit(5 + 2/12, "feet"),
  38634. default: true
  38635. },
  38636. {
  38637. name: "Macro",
  38638. height: math.unit(128, "feet")
  38639. },
  38640. {
  38641. name: "Megamacro",
  38642. height: math.unit(2.56, "miles")
  38643. },
  38644. ]
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38648. {
  38649. front: {
  38650. height: math.unit(7, "feet"),
  38651. name: "Front",
  38652. image: {
  38653. source: "./media/characters/fox/front.svg",
  38654. extra: 1798/1703,
  38655. bottom: 55/1853
  38656. }
  38657. },
  38658. back: {
  38659. height: math.unit(7, "feet"),
  38660. name: "Back",
  38661. image: {
  38662. source: "./media/characters/fox/back.svg",
  38663. extra: 1748/1649,
  38664. bottom: 32/1780
  38665. }
  38666. },
  38667. head: {
  38668. height: math.unit(1.95, "feet"),
  38669. name: "Head",
  38670. image: {
  38671. source: "./media/characters/fox/head.svg"
  38672. }
  38673. },
  38674. dick: {
  38675. height: math.unit(1.33, "feet"),
  38676. name: "Dick",
  38677. image: {
  38678. source: "./media/characters/fox/dick.svg"
  38679. }
  38680. },
  38681. foot: {
  38682. height: math.unit(1, "feet"),
  38683. name: "Foot",
  38684. image: {
  38685. source: "./media/characters/fox/foot.svg"
  38686. }
  38687. },
  38688. paw: {
  38689. height: math.unit(0.92, "feet"),
  38690. name: "Paw",
  38691. image: {
  38692. source: "./media/characters/fox/paw.svg"
  38693. }
  38694. },
  38695. },
  38696. [
  38697. {
  38698. name: "Small",
  38699. height: math.unit(3, "inches")
  38700. },
  38701. {
  38702. name: "\"Realistic\"",
  38703. height: math.unit(7, "feet")
  38704. },
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(150, "feet"),
  38708. default: true
  38709. },
  38710. {
  38711. name: "BIG",
  38712. height: math.unit(1200, "feet")
  38713. },
  38714. {
  38715. name: "👀",
  38716. height: math.unit(5, "miles")
  38717. },
  38718. {
  38719. name: "👀👀👀",
  38720. height: math.unit(64, "miles")
  38721. },
  38722. ]
  38723. ))
  38724. characterMakers.push(() => makeCharacter(
  38725. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38726. {
  38727. front: {
  38728. height: math.unit(625, "feet"),
  38729. name: "Front",
  38730. image: {
  38731. source: "./media/characters/asonja-rossa/front.svg",
  38732. extra: 1833/1686,
  38733. bottom: 24/1857
  38734. }
  38735. },
  38736. back: {
  38737. height: math.unit(625, "feet"),
  38738. name: "Back",
  38739. image: {
  38740. source: "./media/characters/asonja-rossa/back.svg",
  38741. extra: 1852/1753,
  38742. bottom: 26/1878
  38743. }
  38744. },
  38745. },
  38746. [
  38747. {
  38748. name: "Macro",
  38749. height: math.unit(625, "feet"),
  38750. default: true
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38756. {
  38757. side: {
  38758. height: math.unit(8, "feet"),
  38759. name: "Side",
  38760. image: {
  38761. source: "./media/characters/rezukii/side.svg",
  38762. extra: 979/542,
  38763. bottom: 87/1066
  38764. }
  38765. },
  38766. sitting: {
  38767. height: math.unit(14.6, "feet"),
  38768. name: "Sitting",
  38769. image: {
  38770. source: "./media/characters/rezukii/sitting.svg",
  38771. extra: 1023/813,
  38772. bottom: 45/1068
  38773. }
  38774. },
  38775. },
  38776. [
  38777. {
  38778. name: "Tiny",
  38779. height: math.unit(2, "feet")
  38780. },
  38781. {
  38782. name: "Smol",
  38783. height: math.unit(4, "feet")
  38784. },
  38785. {
  38786. name: "Normal",
  38787. height: math.unit(8, "feet"),
  38788. default: true
  38789. },
  38790. {
  38791. name: "Big",
  38792. height: math.unit(12, "feet")
  38793. },
  38794. {
  38795. name: "Macro",
  38796. height: math.unit(30, "feet")
  38797. },
  38798. ]
  38799. ))
  38800. characterMakers.push(() => makeCharacter(
  38801. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38802. {
  38803. front: {
  38804. height: math.unit(14, "feet"),
  38805. weight: math.unit(9.5, "tonnes"),
  38806. name: "Front",
  38807. image: {
  38808. source: "./media/characters/dawnheart/front.svg",
  38809. extra: 2792/2675,
  38810. bottom: 64/2856
  38811. }
  38812. },
  38813. },
  38814. [
  38815. {
  38816. name: "Normal",
  38817. height: math.unit(14, "feet"),
  38818. default: true
  38819. },
  38820. ]
  38821. ))
  38822. characterMakers.push(() => makeCharacter(
  38823. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38824. {
  38825. front: {
  38826. height: math.unit(1.7, "m"),
  38827. name: "Front",
  38828. image: {
  38829. source: "./media/characters/gladi/front.svg",
  38830. extra: 1460/1362,
  38831. bottom: 19/1479
  38832. }
  38833. },
  38834. back: {
  38835. height: math.unit(1.7, "m"),
  38836. name: "Back",
  38837. image: {
  38838. source: "./media/characters/gladi/back.svg",
  38839. extra: 1459/1357,
  38840. bottom: 12/1471
  38841. }
  38842. },
  38843. feral: {
  38844. height: math.unit(2.05, "m"),
  38845. name: "Feral",
  38846. image: {
  38847. source: "./media/characters/gladi/feral.svg",
  38848. extra: 821/557,
  38849. bottom: 91/912
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Shortest",
  38856. height: math.unit(70, "cm")
  38857. },
  38858. {
  38859. name: "Normal",
  38860. height: math.unit(1.7, "m")
  38861. },
  38862. {
  38863. name: "Macro",
  38864. height: math.unit(10, "m"),
  38865. default: true
  38866. },
  38867. {
  38868. name: "Tallest",
  38869. height: math.unit(200, "m")
  38870. },
  38871. ]
  38872. ))
  38873. characterMakers.push(() => makeCharacter(
  38874. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38875. {
  38876. front: {
  38877. height: math.unit(5 + 7/12, "feet"),
  38878. weight: math.unit(2, "tons"),
  38879. name: "Front",
  38880. image: {
  38881. source: "./media/characters/erdno/front.svg",
  38882. extra: 1234/1129,
  38883. bottom: 35/1269
  38884. }
  38885. },
  38886. angled: {
  38887. height: math.unit(5 + 7/12, "feet"),
  38888. weight: math.unit(2, "tons"),
  38889. name: "Angled",
  38890. image: {
  38891. source: "./media/characters/erdno/angled.svg",
  38892. extra: 1185/1139,
  38893. bottom: 36/1221
  38894. }
  38895. },
  38896. side: {
  38897. height: math.unit(5 + 7/12, "feet"),
  38898. weight: math.unit(2, "tons"),
  38899. name: "Side",
  38900. image: {
  38901. source: "./media/characters/erdno/side.svg",
  38902. extra: 1191/1144,
  38903. bottom: 40/1231
  38904. }
  38905. },
  38906. back: {
  38907. height: math.unit(5 + 7/12, "feet"),
  38908. weight: math.unit(2, "tons"),
  38909. name: "Back",
  38910. image: {
  38911. source: "./media/characters/erdno/back.svg",
  38912. extra: 1202/1146,
  38913. bottom: 17/1219
  38914. }
  38915. },
  38916. frontNsfw: {
  38917. height: math.unit(5 + 7/12, "feet"),
  38918. weight: math.unit(2, "tons"),
  38919. name: "Front (NSFW)",
  38920. image: {
  38921. source: "./media/characters/erdno/front-nsfw.svg",
  38922. extra: 1234/1129,
  38923. bottom: 35/1269
  38924. }
  38925. },
  38926. angledNsfw: {
  38927. height: math.unit(5 + 7/12, "feet"),
  38928. weight: math.unit(2, "tons"),
  38929. name: "Angled (NSFW)",
  38930. image: {
  38931. source: "./media/characters/erdno/angled-nsfw.svg",
  38932. extra: 1185/1139,
  38933. bottom: 36/1221
  38934. }
  38935. },
  38936. sideNsfw: {
  38937. height: math.unit(5 + 7/12, "feet"),
  38938. weight: math.unit(2, "tons"),
  38939. name: "Side (NSFW)",
  38940. image: {
  38941. source: "./media/characters/erdno/side-nsfw.svg",
  38942. extra: 1191/1144,
  38943. bottom: 40/1231
  38944. }
  38945. },
  38946. backNsfw: {
  38947. height: math.unit(5 + 7/12, "feet"),
  38948. weight: math.unit(2, "tons"),
  38949. name: "Back (NSFW)",
  38950. image: {
  38951. source: "./media/characters/erdno/back-nsfw.svg",
  38952. extra: 1202/1146,
  38953. bottom: 17/1219
  38954. }
  38955. },
  38956. frontHyper: {
  38957. height: math.unit(5 + 7/12, "feet"),
  38958. weight: math.unit(2, "tons"),
  38959. name: "Front (Hyper)",
  38960. image: {
  38961. source: "./media/characters/erdno/front-hyper.svg",
  38962. extra: 1298/1136,
  38963. bottom: 35/1333
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Normal",
  38970. height: math.unit(5 + 7/12, "feet"),
  38971. default: true
  38972. },
  38973. {
  38974. name: "Big",
  38975. height: math.unit(5.7, "meters")
  38976. },
  38977. {
  38978. name: "Macro",
  38979. height: math.unit(5.7, "kilometers")
  38980. },
  38981. {
  38982. name: "Megamacro",
  38983. height: math.unit(5.7, "earths")
  38984. },
  38985. ]
  38986. ))
  38987. characterMakers.push(() => makeCharacter(
  38988. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38989. {
  38990. front: {
  38991. height: math.unit(5 + 10/12, "feet"),
  38992. weight: math.unit(150, "lb"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/jamie/front.svg",
  38996. extra: 1908/1768,
  38997. bottom: 19/1927
  38998. }
  38999. },
  39000. },
  39001. [
  39002. {
  39003. name: "Minimum",
  39004. height: math.unit(2, "cm")
  39005. },
  39006. {
  39007. name: "Micro",
  39008. height: math.unit(3, "inches")
  39009. },
  39010. {
  39011. name: "Normal",
  39012. height: math.unit(5 + 10/12, "feet"),
  39013. default: true
  39014. },
  39015. {
  39016. name: "Macro",
  39017. height: math.unit(150, "feet")
  39018. },
  39019. {
  39020. name: "Megamacro",
  39021. height: math.unit(10000, "m")
  39022. },
  39023. ]
  39024. ))
  39025. characterMakers.push(() => makeCharacter(
  39026. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39027. {
  39028. front: {
  39029. height: math.unit(2, "meters"),
  39030. weight: math.unit(100, "kg"),
  39031. name: "Front",
  39032. image: {
  39033. source: "./media/characters/shiron/front.svg",
  39034. extra: 2103/1985,
  39035. bottom: 98/2201
  39036. }
  39037. },
  39038. back: {
  39039. height: math.unit(2, "meters"),
  39040. weight: math.unit(100, "kg"),
  39041. name: "Back",
  39042. image: {
  39043. source: "./media/characters/shiron/back.svg",
  39044. extra: 2110/2015,
  39045. bottom: 89/2199
  39046. }
  39047. },
  39048. hand: {
  39049. height: math.unit(0.96, "feet"),
  39050. name: "Hand",
  39051. image: {
  39052. source: "./media/characters/shiron/hand.svg"
  39053. }
  39054. },
  39055. foot: {
  39056. height: math.unit(1.464, "feet"),
  39057. name: "Foot",
  39058. image: {
  39059. source: "./media/characters/shiron/foot.svg"
  39060. }
  39061. },
  39062. },
  39063. [
  39064. {
  39065. name: "Normal",
  39066. height: math.unit(2, "meters")
  39067. },
  39068. {
  39069. name: "Macro",
  39070. height: math.unit(500, "meters"),
  39071. default: true
  39072. },
  39073. {
  39074. name: "Megamacro",
  39075. height: math.unit(20, "km")
  39076. },
  39077. ]
  39078. ))
  39079. characterMakers.push(() => makeCharacter(
  39080. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39081. {
  39082. front: {
  39083. height: math.unit(6, "feet"),
  39084. name: "Front",
  39085. image: {
  39086. source: "./media/characters/sam/front.svg",
  39087. extra: 849/826,
  39088. bottom: 19/868
  39089. }
  39090. },
  39091. },
  39092. [
  39093. {
  39094. name: "Normal",
  39095. height: math.unit(6, "feet"),
  39096. default: true
  39097. },
  39098. ]
  39099. ))
  39100. characterMakers.push(() => makeCharacter(
  39101. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39102. {
  39103. front: {
  39104. height: math.unit(8 + 4/12, "feet"),
  39105. weight: math.unit(122, "kg"),
  39106. name: "Front",
  39107. image: {
  39108. source: "./media/characters/namori-kurogawa/front.svg",
  39109. extra: 1894/1576,
  39110. bottom: 34/1928
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Normal",
  39117. height: math.unit(8 + 4/12, "feet"),
  39118. default: true
  39119. },
  39120. ]
  39121. ))
  39122. characterMakers.push(() => makeCharacter(
  39123. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39124. {
  39125. front: {
  39126. height: math.unit(9, "feet"),
  39127. weight: math.unit(621, "lb"),
  39128. name: "Front",
  39129. image: {
  39130. source: "./media/characters/unmru/front.svg",
  39131. extra: 1853/1747,
  39132. bottom: 73/1926
  39133. }
  39134. },
  39135. side: {
  39136. height: math.unit(9, "feet"),
  39137. weight: math.unit(621, "lb"),
  39138. name: "Side",
  39139. image: {
  39140. source: "./media/characters/unmru/side.svg",
  39141. extra: 1781/1671,
  39142. bottom: 127/1908
  39143. }
  39144. },
  39145. back: {
  39146. height: math.unit(9, "feet"),
  39147. weight: math.unit(621, "lb"),
  39148. name: "Back",
  39149. image: {
  39150. source: "./media/characters/unmru/back.svg",
  39151. extra: 1894/1765,
  39152. bottom: 75/1969
  39153. }
  39154. },
  39155. dick: {
  39156. height: math.unit(3, "feet"),
  39157. weight: math.unit(35, "lb"),
  39158. name: "Dick",
  39159. image: {
  39160. source: "./media/characters/unmru/dick.svg"
  39161. }
  39162. },
  39163. },
  39164. [
  39165. {
  39166. name: "Normal",
  39167. height: math.unit(9, "feet")
  39168. },
  39169. {
  39170. name: "Natural",
  39171. height: math.unit(27, "feet"),
  39172. default: true
  39173. },
  39174. {
  39175. name: "Giant",
  39176. height: math.unit(90, "feet")
  39177. },
  39178. {
  39179. name: "Kaiju",
  39180. height: math.unit(270, "feet")
  39181. },
  39182. {
  39183. name: "Macro",
  39184. height: math.unit(900, "feet")
  39185. },
  39186. {
  39187. name: "Macro+",
  39188. height: math.unit(2700, "feet")
  39189. },
  39190. {
  39191. name: "Megamacro",
  39192. height: math.unit(9000, "feet")
  39193. },
  39194. {
  39195. name: "City-Crushing",
  39196. height: math.unit(27000, "feet")
  39197. },
  39198. {
  39199. name: "Mountain-Mashing",
  39200. height: math.unit(90000, "feet")
  39201. },
  39202. {
  39203. name: "Earth-Eclipsing",
  39204. height: math.unit(2.7e8, "feet")
  39205. },
  39206. {
  39207. name: "Sol-Swallowing",
  39208. height: math.unit(9e10, "feet")
  39209. },
  39210. {
  39211. name: "Majoris-Munching",
  39212. height: math.unit(2.7e13, "feet")
  39213. },
  39214. ]
  39215. ))
  39216. characterMakers.push(() => makeCharacter(
  39217. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39218. {
  39219. front: {
  39220. height: math.unit(1, "inch"),
  39221. name: "Front",
  39222. image: {
  39223. source: "./media/characters/squeaks-mouse/front.svg",
  39224. extra: 352/308,
  39225. bottom: 25/377
  39226. }
  39227. },
  39228. },
  39229. [
  39230. {
  39231. name: "Micro",
  39232. height: math.unit(1, "inch"),
  39233. default: true
  39234. },
  39235. ]
  39236. ))
  39237. characterMakers.push(() => makeCharacter(
  39238. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39239. {
  39240. side: {
  39241. height: math.unit(35, "feet"),
  39242. name: "Side",
  39243. image: {
  39244. source: "./media/characters/sayko/side.svg",
  39245. extra: 1697/1021,
  39246. bottom: 82/1779
  39247. }
  39248. },
  39249. head: {
  39250. height: math.unit(16, "feet"),
  39251. name: "Head",
  39252. image: {
  39253. source: "./media/characters/sayko/head.svg"
  39254. }
  39255. },
  39256. forepaw: {
  39257. height: math.unit(7.85, "feet"),
  39258. name: "Forepaw",
  39259. image: {
  39260. source: "./media/characters/sayko/forepaw.svg"
  39261. }
  39262. },
  39263. hindpaw: {
  39264. height: math.unit(8.8, "feet"),
  39265. name: "Hindpaw",
  39266. image: {
  39267. source: "./media/characters/sayko/hindpaw.svg"
  39268. }
  39269. },
  39270. },
  39271. [
  39272. {
  39273. name: "Normal",
  39274. height: math.unit(35, "feet"),
  39275. default: true
  39276. },
  39277. {
  39278. name: "Colossus",
  39279. height: math.unit(100, "meters")
  39280. },
  39281. {
  39282. name: "\"Small\" Deity",
  39283. height: math.unit(1, "km")
  39284. },
  39285. {
  39286. name: "\"Large\" Deity",
  39287. height: math.unit(15, "km")
  39288. },
  39289. ]
  39290. ))
  39291. characterMakers.push(() => makeCharacter(
  39292. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39293. {
  39294. front: {
  39295. height: math.unit(6, "feet"),
  39296. weight: math.unit(250, "lb"),
  39297. name: "Front",
  39298. image: {
  39299. source: "./media/characters/mukiro/front.svg",
  39300. extra: 1368/1310,
  39301. bottom: 34/1402
  39302. }
  39303. },
  39304. },
  39305. [
  39306. {
  39307. name: "Normal",
  39308. height: math.unit(6, "feet"),
  39309. default: true
  39310. },
  39311. ]
  39312. ))
  39313. characterMakers.push(() => makeCharacter(
  39314. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39315. {
  39316. front: {
  39317. height: math.unit(12 + 4/12, "feet"),
  39318. name: "Front",
  39319. image: {
  39320. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39321. extra: 1346/1311,
  39322. bottom: 65/1411
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Base",
  39329. height: math.unit(12 + 4/12, "feet"),
  39330. default: true
  39331. },
  39332. {
  39333. name: "Macro",
  39334. height: math.unit(150, "feet")
  39335. },
  39336. {
  39337. name: "Mega",
  39338. height: math.unit(2, "miles")
  39339. },
  39340. {
  39341. name: "Demi God",
  39342. height: math.unit(4, "AU")
  39343. },
  39344. {
  39345. name: "God Size",
  39346. height: math.unit(1, "universe")
  39347. },
  39348. ]
  39349. ))
  39350. characterMakers.push(() => makeCharacter(
  39351. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39352. {
  39353. front: {
  39354. height: math.unit(3 + 3/12, "feet"),
  39355. weight: math.unit(88, "lb"),
  39356. name: "Front",
  39357. image: {
  39358. source: "./media/characters/trey/front.svg",
  39359. extra: 1815/1509,
  39360. bottom: 60/1875
  39361. }
  39362. },
  39363. },
  39364. [
  39365. {
  39366. name: "Normal",
  39367. height: math.unit(3 + 3/12, "feet"),
  39368. default: true
  39369. },
  39370. ]
  39371. ))
  39372. characterMakers.push(() => makeCharacter(
  39373. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39374. {
  39375. front: {
  39376. height: math.unit(4, "meters"),
  39377. name: "Front",
  39378. image: {
  39379. source: "./media/characters/adelonda/front.svg",
  39380. extra: 1077/982,
  39381. bottom: 39/1116
  39382. }
  39383. },
  39384. back: {
  39385. height: math.unit(4, "meters"),
  39386. name: "Back",
  39387. image: {
  39388. source: "./media/characters/adelonda/back.svg",
  39389. extra: 1105/1003,
  39390. bottom: 25/1130
  39391. }
  39392. },
  39393. feral: {
  39394. height: math.unit(40/1.5, "meters"),
  39395. name: "Feral",
  39396. image: {
  39397. source: "./media/characters/adelonda/feral.svg",
  39398. extra: 597/271,
  39399. bottom: 387/984
  39400. }
  39401. },
  39402. },
  39403. [
  39404. {
  39405. name: "Normal",
  39406. height: math.unit(4, "meters"),
  39407. default: true
  39408. },
  39409. ]
  39410. ))
  39411. characterMakers.push(() => makeCharacter(
  39412. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39413. {
  39414. front: {
  39415. height: math.unit(8 + 4/12, "feet"),
  39416. weight: math.unit(670, "lb"),
  39417. name: "Front",
  39418. image: {
  39419. source: "./media/characters/acadiel/front.svg",
  39420. extra: 1901/1595,
  39421. bottom: 142/2043
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "Normal",
  39428. height: math.unit(8 + 4/12, "feet"),
  39429. default: true
  39430. },
  39431. {
  39432. name: "Macro",
  39433. height: math.unit(200, "feet")
  39434. },
  39435. ]
  39436. ))
  39437. characterMakers.push(() => makeCharacter(
  39438. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39439. {
  39440. front: {
  39441. height: math.unit(6 + 2/12, "feet"),
  39442. weight: math.unit(185, "lb"),
  39443. name: "Front",
  39444. image: {
  39445. source: "./media/characters/kayne-ein/front.svg",
  39446. extra: 1780/1560,
  39447. bottom: 81/1861
  39448. }
  39449. },
  39450. },
  39451. [
  39452. {
  39453. name: "Normal",
  39454. height: math.unit(6 + 2/12, "feet"),
  39455. default: true
  39456. },
  39457. {
  39458. name: "Transformation Stage",
  39459. height: math.unit(15, "feet")
  39460. },
  39461. {
  39462. name: "Macro",
  39463. height: math.unit(150, "feet")
  39464. },
  39465. {
  39466. name: "Earth's Shadow",
  39467. height: math.unit(6200, "miles")
  39468. },
  39469. {
  39470. name: "Universal Demon",
  39471. height: math.unit(28e9, "parsecs")
  39472. },
  39473. {
  39474. name: "Multiverse God",
  39475. height: math.unit(3, "multiverses")
  39476. },
  39477. ]
  39478. ))
  39479. characterMakers.push(() => makeCharacter(
  39480. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39481. {
  39482. front: {
  39483. height: math.unit(5 + 5/12, "feet"),
  39484. name: "Front",
  39485. image: {
  39486. source: "./media/characters/fawn/front.svg",
  39487. extra: 1873/1731,
  39488. bottom: 95/1968
  39489. }
  39490. },
  39491. back: {
  39492. height: math.unit(5 + 5/12, "feet"),
  39493. name: "Back",
  39494. image: {
  39495. source: "./media/characters/fawn/back.svg",
  39496. extra: 1813/1700,
  39497. bottom: 14/1827
  39498. }
  39499. },
  39500. hoof: {
  39501. height: math.unit(1.45, "feet"),
  39502. name: "Hoof",
  39503. image: {
  39504. source: "./media/characters/fawn/hoof.svg"
  39505. }
  39506. },
  39507. },
  39508. [
  39509. {
  39510. name: "Normal",
  39511. height: math.unit(5 + 5/12, "feet"),
  39512. default: true
  39513. },
  39514. ]
  39515. ))
  39516. characterMakers.push(() => makeCharacter(
  39517. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39518. {
  39519. front: {
  39520. height: math.unit(2 + 5/12, "feet"),
  39521. name: "Front",
  39522. image: {
  39523. source: "./media/characters/orion/front.svg",
  39524. extra: 1366/1304,
  39525. bottom: 43/1409
  39526. }
  39527. },
  39528. paw: {
  39529. height: math.unit(0.52, "feet"),
  39530. name: "Paw",
  39531. image: {
  39532. source: "./media/characters/orion/paw.svg"
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "Normal",
  39539. height: math.unit(2 + 5/12, "feet"),
  39540. default: true
  39541. },
  39542. ]
  39543. ))
  39544. characterMakers.push(() => makeCharacter(
  39545. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39546. {
  39547. front: {
  39548. height: math.unit(5 + 10/12, "feet"),
  39549. name: "Front",
  39550. image: {
  39551. source: "./media/characters/vera/front.svg",
  39552. extra: 1680/1575,
  39553. bottom: 49/1729
  39554. }
  39555. },
  39556. back: {
  39557. height: math.unit(5 + 10/12, "feet"),
  39558. name: "Back",
  39559. image: {
  39560. source: "./media/characters/vera/back.svg",
  39561. extra: 1700/1588,
  39562. bottom: 18/1718
  39563. }
  39564. },
  39565. arcanine: {
  39566. height: math.unit(6 + 8/12, "feet"),
  39567. name: "Arcanine",
  39568. image: {
  39569. source: "./media/characters/vera/arcanine.svg",
  39570. extra: 1590/1511,
  39571. bottom: 71/1661
  39572. }
  39573. },
  39574. maw: {
  39575. height: math.unit(0.82, "feet"),
  39576. name: "Maw",
  39577. image: {
  39578. source: "./media/characters/vera/maw.svg"
  39579. }
  39580. },
  39581. mawArcanine: {
  39582. height: math.unit(0.97, "feet"),
  39583. name: "Maw (Arcanine)",
  39584. image: {
  39585. source: "./media/characters/vera/maw-arcanine.svg"
  39586. }
  39587. },
  39588. paw: {
  39589. height: math.unit(0.75, "feet"),
  39590. name: "Paw",
  39591. image: {
  39592. source: "./media/characters/vera/paw.svg"
  39593. }
  39594. },
  39595. pawprint: {
  39596. height: math.unit(0.52, "feet"),
  39597. name: "Pawprint",
  39598. image: {
  39599. source: "./media/characters/vera/pawprint.svg"
  39600. }
  39601. },
  39602. },
  39603. [
  39604. {
  39605. name: "Normal",
  39606. height: math.unit(5 + 10/12, "feet"),
  39607. default: true
  39608. },
  39609. {
  39610. name: "Macro",
  39611. height: math.unit(75, "feet")
  39612. },
  39613. ]
  39614. ))
  39615. characterMakers.push(() => makeCharacter(
  39616. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39617. {
  39618. front: {
  39619. height: math.unit(4, "feet"),
  39620. weight: math.unit(40, "lb"),
  39621. name: "Front",
  39622. image: {
  39623. source: "./media/characters/orvan-rabbit/front.svg",
  39624. extra: 1896/1642,
  39625. bottom: 29/1925
  39626. }
  39627. },
  39628. },
  39629. [
  39630. {
  39631. name: "Normal",
  39632. height: math.unit(4, "feet"),
  39633. default: true
  39634. },
  39635. ]
  39636. ))
  39637. characterMakers.push(() => makeCharacter(
  39638. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39639. {
  39640. front: {
  39641. height: math.unit(6, "feet"),
  39642. weight: math.unit(168, "lb"),
  39643. name: "Front",
  39644. image: {
  39645. source: "./media/characters/lisa/front.svg",
  39646. extra: 2065/1867,
  39647. bottom: 46/2111
  39648. }
  39649. },
  39650. back: {
  39651. height: math.unit(6, "feet"),
  39652. weight: math.unit(168, "lb"),
  39653. name: "Back",
  39654. image: {
  39655. source: "./media/characters/lisa/back.svg",
  39656. extra: 1982/1838,
  39657. bottom: 29/2011
  39658. }
  39659. },
  39660. maw: {
  39661. height: math.unit(0.81, "feet"),
  39662. name: "Maw",
  39663. image: {
  39664. source: "./media/characters/lisa/maw.svg"
  39665. }
  39666. },
  39667. paw: {
  39668. height: math.unit(0.9, "feet"),
  39669. name: "Paw",
  39670. image: {
  39671. source: "./media/characters/lisa/paw.svg"
  39672. }
  39673. },
  39674. caribousune: {
  39675. height: math.unit(7 + 2/12, "feet"),
  39676. weight: math.unit(268, "lb"),
  39677. name: "Caribousune",
  39678. image: {
  39679. source: "./media/characters/lisa/caribousune.svg",
  39680. extra: 1843/1633,
  39681. bottom: 29/1872
  39682. }
  39683. },
  39684. frontCaribousune: {
  39685. height: math.unit(7 + 2/12, "feet"),
  39686. weight: math.unit(268, "lb"),
  39687. name: "Front (Caribousune)",
  39688. image: {
  39689. source: "./media/characters/lisa/front-caribousune.svg",
  39690. extra: 1818/1638,
  39691. bottom: 52/1870
  39692. }
  39693. },
  39694. sideCaribousune: {
  39695. height: math.unit(7 + 2/12, "feet"),
  39696. weight: math.unit(268, "lb"),
  39697. name: "Side (Caribousune)",
  39698. image: {
  39699. source: "./media/characters/lisa/side-caribousune.svg",
  39700. extra: 1851/1635,
  39701. bottom: 16/1867
  39702. }
  39703. },
  39704. backCaribousune: {
  39705. height: math.unit(7 + 2/12, "feet"),
  39706. weight: math.unit(268, "lb"),
  39707. name: "Back (Caribousune)",
  39708. image: {
  39709. source: "./media/characters/lisa/back-caribousune.svg",
  39710. extra: 1801/1604,
  39711. bottom: 44/1845
  39712. }
  39713. },
  39714. caribou: {
  39715. height: math.unit(7 + 2/12, "feet"),
  39716. weight: math.unit(268, "lb"),
  39717. name: "Caribou",
  39718. image: {
  39719. source: "./media/characters/lisa/caribou.svg",
  39720. extra: 1843/1633,
  39721. bottom: 29/1872
  39722. }
  39723. },
  39724. frontCaribou: {
  39725. height: math.unit(7 + 2/12, "feet"),
  39726. weight: math.unit(268, "lb"),
  39727. name: "Front (Caribou)",
  39728. image: {
  39729. source: "./media/characters/lisa/front-caribou.svg",
  39730. extra: 1818/1638,
  39731. bottom: 52/1870
  39732. }
  39733. },
  39734. sideCaribou: {
  39735. height: math.unit(7 + 2/12, "feet"),
  39736. weight: math.unit(268, "lb"),
  39737. name: "Side (Caribou)",
  39738. image: {
  39739. source: "./media/characters/lisa/side-caribou.svg",
  39740. extra: 1851/1635,
  39741. bottom: 16/1867
  39742. }
  39743. },
  39744. backCaribou: {
  39745. height: math.unit(7 + 2/12, "feet"),
  39746. weight: math.unit(268, "lb"),
  39747. name: "Back (Caribou)",
  39748. image: {
  39749. source: "./media/characters/lisa/back-caribou.svg",
  39750. extra: 1801/1604,
  39751. bottom: 44/1845
  39752. }
  39753. },
  39754. mawCaribou: {
  39755. height: math.unit(1.45, "feet"),
  39756. name: "Maw (Caribou)",
  39757. image: {
  39758. source: "./media/characters/lisa/maw-caribou.svg"
  39759. }
  39760. },
  39761. mawCaribousune: {
  39762. height: math.unit(1.45, "feet"),
  39763. name: "Maw (Caribousune)",
  39764. image: {
  39765. source: "./media/characters/lisa/maw-caribousune.svg"
  39766. }
  39767. },
  39768. pawCaribousune: {
  39769. height: math.unit(1.61, "feet"),
  39770. name: "Paw (Caribou)",
  39771. image: {
  39772. source: "./media/characters/lisa/paw-caribousune.svg"
  39773. }
  39774. },
  39775. },
  39776. [
  39777. {
  39778. name: "Normal",
  39779. height: math.unit(6, "feet")
  39780. },
  39781. {
  39782. name: "God Size",
  39783. height: math.unit(72, "feet"),
  39784. default: true
  39785. },
  39786. {
  39787. name: "Towering",
  39788. height: math.unit(288, "feet")
  39789. },
  39790. {
  39791. name: "City Size",
  39792. height: math.unit(48384, "feet")
  39793. },
  39794. {
  39795. name: "Continental",
  39796. height: math.unit(4200, "miles")
  39797. },
  39798. {
  39799. name: "Planet Eater",
  39800. height: math.unit(42, "earths")
  39801. },
  39802. {
  39803. name: "Star Swallower",
  39804. height: math.unit(42, "solarradii")
  39805. },
  39806. {
  39807. name: "System Swallower",
  39808. height: math.unit(84000, "AU")
  39809. },
  39810. {
  39811. name: "Galaxy Gobbler",
  39812. height: math.unit(42, "galaxies")
  39813. },
  39814. {
  39815. name: "Universe Devourer",
  39816. height: math.unit(42, "universes")
  39817. },
  39818. {
  39819. name: "Multiverse Muncher",
  39820. height: math.unit(42, "multiverses")
  39821. },
  39822. ]
  39823. ))
  39824. characterMakers.push(() => makeCharacter(
  39825. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39826. {
  39827. front: {
  39828. height: math.unit(36, "feet"),
  39829. name: "Front",
  39830. image: {
  39831. source: "./media/characters/shadow-rat/front.svg",
  39832. extra: 1845/1758,
  39833. bottom: 83/1928
  39834. }
  39835. },
  39836. },
  39837. [
  39838. {
  39839. name: "Macro",
  39840. height: math.unit(36, "feet"),
  39841. default: true
  39842. },
  39843. ]
  39844. ))
  39845. characterMakers.push(() => makeCharacter(
  39846. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39847. {
  39848. side: {
  39849. height: math.unit(8, "feet"),
  39850. weight: math.unit(2630, "lb"),
  39851. name: "Side",
  39852. image: {
  39853. source: "./media/characters/torallia/side.svg",
  39854. extra: 2164/2021,
  39855. bottom: 371/2535
  39856. }
  39857. },
  39858. },
  39859. [
  39860. {
  39861. name: "Mortal Interaction",
  39862. height: math.unit(8, "feet")
  39863. },
  39864. {
  39865. name: "Natural",
  39866. height: math.unit(24, "feet"),
  39867. default: true
  39868. },
  39869. {
  39870. name: "Giant",
  39871. height: math.unit(80, "feet")
  39872. },
  39873. {
  39874. name: "Kaiju",
  39875. height: math.unit(240, "feet")
  39876. },
  39877. {
  39878. name: "Macro",
  39879. height: math.unit(800, "feet")
  39880. },
  39881. {
  39882. name: "Macro+",
  39883. height: math.unit(2400, "feet")
  39884. },
  39885. {
  39886. name: "Macro++",
  39887. height: math.unit(8000, "feet")
  39888. },
  39889. {
  39890. name: "City-Crushing",
  39891. height: math.unit(24000, "feet")
  39892. },
  39893. {
  39894. name: "Mountain-Mashing",
  39895. height: math.unit(80000, "feet")
  39896. },
  39897. {
  39898. name: "District Demolisher",
  39899. height: math.unit(240000, "feet")
  39900. },
  39901. {
  39902. name: "Tri-County Terror",
  39903. height: math.unit(800000, "feet")
  39904. },
  39905. {
  39906. name: "State Smasher",
  39907. height: math.unit(2.4e6, "feet")
  39908. },
  39909. {
  39910. name: "Nation Nemesis",
  39911. height: math.unit(8e6, "feet")
  39912. },
  39913. {
  39914. name: "Continent Cracker",
  39915. height: math.unit(2.4e7, "feet")
  39916. },
  39917. {
  39918. name: "Planet-Pillaging",
  39919. height: math.unit(8e7, "feet")
  39920. },
  39921. {
  39922. name: "Earth-Eclipsing",
  39923. height: math.unit(2.4e8, "feet")
  39924. },
  39925. {
  39926. name: "Jovian-Jostling",
  39927. height: math.unit(8e8, "feet")
  39928. },
  39929. {
  39930. name: "Gas Giant Gulper",
  39931. height: math.unit(2.4e9, "feet")
  39932. },
  39933. {
  39934. name: "Astral Annihilator",
  39935. height: math.unit(8e9, "feet")
  39936. },
  39937. {
  39938. name: "Celestial Conqueror",
  39939. height: math.unit(2.4e10, "feet")
  39940. },
  39941. {
  39942. name: "Sol-Swallowing",
  39943. height: math.unit(8e10, "feet")
  39944. },
  39945. {
  39946. name: "Hunter of the Heavens",
  39947. height: math.unit(2.4e13, "feet")
  39948. },
  39949. ]
  39950. ))
  39951. characterMakers.push(() => makeCharacter(
  39952. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39953. {
  39954. front: {
  39955. height: math.unit(6 + 8/12, "feet"),
  39956. weight: math.unit(250, "kilograms"),
  39957. volume: math.unit(28, "liters"),
  39958. name: "Front",
  39959. image: {
  39960. source: "./media/characters/rebecca-pawlson/front.svg",
  39961. extra: 1737/1596,
  39962. bottom: 107/1844
  39963. }
  39964. },
  39965. back: {
  39966. height: math.unit(6 + 8/12, "feet"),
  39967. weight: math.unit(250, "kilograms"),
  39968. volume: math.unit(28, "liters"),
  39969. name: "Back",
  39970. image: {
  39971. source: "./media/characters/rebecca-pawlson/back.svg",
  39972. extra: 1702/1523,
  39973. bottom: 86/1788
  39974. }
  39975. },
  39976. },
  39977. [
  39978. {
  39979. name: "Normal",
  39980. height: math.unit(6 + 8/12, "feet")
  39981. },
  39982. {
  39983. name: "Mini Macro",
  39984. height: math.unit(10, "feet"),
  39985. default: true
  39986. },
  39987. {
  39988. name: "Macro",
  39989. height: math.unit(100, "feet")
  39990. },
  39991. {
  39992. name: "Mega Macro",
  39993. height: math.unit(2500, "feet")
  39994. },
  39995. {
  39996. name: "Giga Macro",
  39997. height: math.unit(50, "miles")
  39998. },
  39999. ]
  40000. ))
  40001. characterMakers.push(() => makeCharacter(
  40002. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40003. {
  40004. front: {
  40005. height: math.unit(7 + 6/12, "feet"),
  40006. weight: math.unit(600, "lb"),
  40007. name: "Front",
  40008. image: {
  40009. source: "./media/characters/moxie-nova/front.svg",
  40010. extra: 1734/1652,
  40011. bottom: 41/1775
  40012. }
  40013. },
  40014. },
  40015. [
  40016. {
  40017. name: "Normal",
  40018. height: math.unit(7 + 6/12, "feet"),
  40019. default: true
  40020. },
  40021. ]
  40022. ))
  40023. characterMakers.push(() => makeCharacter(
  40024. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40025. {
  40026. goat: {
  40027. height: math.unit(4, "feet"),
  40028. weight: math.unit(180, "lb"),
  40029. name: "Goat",
  40030. image: {
  40031. source: "./media/characters/tiffany/goat.svg",
  40032. extra: 1845/1595,
  40033. bottom: 106/1951
  40034. }
  40035. },
  40036. front: {
  40037. height: math.unit(5, "feet"),
  40038. weight: math.unit(150, "lb"),
  40039. name: "Foxcoon",
  40040. image: {
  40041. source: "./media/characters/tiffany/foxcoon.svg",
  40042. extra: 1941/1845,
  40043. bottom: 58/1999
  40044. }
  40045. },
  40046. },
  40047. [
  40048. {
  40049. name: "Normal",
  40050. height: math.unit(5, "feet"),
  40051. default: true
  40052. },
  40053. ]
  40054. ))
  40055. characterMakers.push(() => makeCharacter(
  40056. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40057. {
  40058. front: {
  40059. height: math.unit(8, "feet"),
  40060. weight: math.unit(300, "lb"),
  40061. name: "Front",
  40062. image: {
  40063. source: "./media/characters/raxinath/front.svg",
  40064. extra: 1407/1309,
  40065. bottom: 39/1446
  40066. }
  40067. },
  40068. back: {
  40069. height: math.unit(8, "feet"),
  40070. weight: math.unit(300, "lb"),
  40071. name: "Back",
  40072. image: {
  40073. source: "./media/characters/raxinath/back.svg",
  40074. extra: 1405/1315,
  40075. bottom: 9/1414
  40076. }
  40077. },
  40078. },
  40079. [
  40080. {
  40081. name: "Speck",
  40082. height: math.unit(0.5, "nm")
  40083. },
  40084. {
  40085. name: "Micro",
  40086. height: math.unit(3, "inches")
  40087. },
  40088. {
  40089. name: "Kobold",
  40090. height: math.unit(3, "feet")
  40091. },
  40092. {
  40093. name: "Normal",
  40094. height: math.unit(8, "feet"),
  40095. default: true
  40096. },
  40097. {
  40098. name: "Giant",
  40099. height: math.unit(50, "feet")
  40100. },
  40101. {
  40102. name: "Macro",
  40103. height: math.unit(1000, "feet")
  40104. },
  40105. {
  40106. name: "Megamacro",
  40107. height: math.unit(1, "mile")
  40108. },
  40109. ]
  40110. ))
  40111. characterMakers.push(() => makeCharacter(
  40112. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40113. {
  40114. front: {
  40115. height: math.unit(10, "feet"),
  40116. weight: math.unit(1442, "lb"),
  40117. name: "Front",
  40118. image: {
  40119. source: "./media/characters/mal-dragon/front.svg",
  40120. extra: 1515/1444,
  40121. bottom: 113/1628
  40122. }
  40123. },
  40124. back: {
  40125. height: math.unit(10, "feet"),
  40126. weight: math.unit(1442, "lb"),
  40127. name: "Back",
  40128. image: {
  40129. source: "./media/characters/mal-dragon/back.svg",
  40130. extra: 1527/1434,
  40131. bottom: 25/1552
  40132. }
  40133. },
  40134. },
  40135. [
  40136. {
  40137. name: "Mortal Interaction",
  40138. height: math.unit(10, "feet"),
  40139. default: true
  40140. },
  40141. {
  40142. name: "Large",
  40143. height: math.unit(30, "feet")
  40144. },
  40145. {
  40146. name: "Kaiju",
  40147. height: math.unit(300, "feet")
  40148. },
  40149. {
  40150. name: "Megamacro",
  40151. height: math.unit(10000, "feet")
  40152. },
  40153. {
  40154. name: "Continent Cracker",
  40155. height: math.unit(30000000, "feet")
  40156. },
  40157. {
  40158. name: "Sol-Swallowing",
  40159. height: math.unit(1e11, "feet")
  40160. },
  40161. {
  40162. name: "Light Universal",
  40163. height: math.unit(5, "universes")
  40164. },
  40165. {
  40166. name: "Universe Atoms",
  40167. height: math.unit(1.829e9, "universes")
  40168. },
  40169. {
  40170. name: "Light Multiversal",
  40171. height: math.unit(5, "multiverses")
  40172. },
  40173. {
  40174. name: "Multiverse Atoms",
  40175. height: math.unit(1.829e9, "multiverses")
  40176. },
  40177. {
  40178. name: "Fabric of Time",
  40179. height: math.unit(1e262, "multiverses")
  40180. },
  40181. ]
  40182. ))
  40183. characterMakers.push(() => makeCharacter(
  40184. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40185. {
  40186. front: {
  40187. height: math.unit(9, "feet"),
  40188. weight: math.unit(1050, "lb"),
  40189. name: "Front",
  40190. image: {
  40191. source: "./media/characters/tabitha/front.svg",
  40192. extra: 2083/1994,
  40193. bottom: 68/2151
  40194. }
  40195. },
  40196. },
  40197. [
  40198. {
  40199. name: "Baseline",
  40200. height: math.unit(9, "feet"),
  40201. default: true
  40202. },
  40203. {
  40204. name: "Giant",
  40205. height: math.unit(90, "feet")
  40206. },
  40207. {
  40208. name: "Macro",
  40209. height: math.unit(900, "feet")
  40210. },
  40211. {
  40212. name: "Megamacro",
  40213. height: math.unit(9000, "feet")
  40214. },
  40215. {
  40216. name: "City-Crushing",
  40217. height: math.unit(27000, "feet")
  40218. },
  40219. {
  40220. name: "Mountain-Mashing",
  40221. height: math.unit(90000, "feet")
  40222. },
  40223. {
  40224. name: "Nation Nemesis",
  40225. height: math.unit(9e6, "feet")
  40226. },
  40227. {
  40228. name: "Continent Cracker",
  40229. height: math.unit(27e6, "feet")
  40230. },
  40231. {
  40232. name: "Earth-Eclipsing",
  40233. height: math.unit(2.7e8, "feet")
  40234. },
  40235. {
  40236. name: "Gas Giant Gulper",
  40237. height: math.unit(2.7e9, "feet")
  40238. },
  40239. {
  40240. name: "Sol-Swallowing",
  40241. height: math.unit(9e10, "feet")
  40242. },
  40243. {
  40244. name: "Galaxy Gulper",
  40245. height: math.unit(9, "galaxies")
  40246. },
  40247. {
  40248. name: "Cosmos Churner",
  40249. height: math.unit(9, "universes")
  40250. },
  40251. ]
  40252. ))
  40253. characterMakers.push(() => makeCharacter(
  40254. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40255. {
  40256. front: {
  40257. height: math.unit(160, "cm"),
  40258. weight: math.unit(55, "kg"),
  40259. name: "Front",
  40260. image: {
  40261. source: "./media/characters/tow/front.svg",
  40262. extra: 1751/1722,
  40263. bottom: 74/1825
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Norm",
  40270. height: math.unit(160, "cm")
  40271. },
  40272. {
  40273. name: "Casual",
  40274. height: math.unit(3200, "m"),
  40275. default: true
  40276. },
  40277. {
  40278. name: "Show-Off",
  40279. height: math.unit(160, "km")
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40285. {
  40286. front: {
  40287. height: math.unit(7 + 11/12, "feet"),
  40288. weight: math.unit(342.8, "lb"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/vivian-orca-dragon/front.svg",
  40292. extra: 1890/1865,
  40293. bottom: 28/1918
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Micro",
  40300. height: math.unit(5, "inches")
  40301. },
  40302. {
  40303. name: "Normal",
  40304. height: math.unit(7 + 11/12, "feet"),
  40305. default: true
  40306. },
  40307. {
  40308. name: "Macro",
  40309. height: math.unit(395 + 7/12, "feet")
  40310. },
  40311. ]
  40312. ))
  40313. characterMakers.push(() => makeCharacter(
  40314. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40315. {
  40316. side: {
  40317. height: math.unit(10, "feet"),
  40318. weight: math.unit(1442, "lb"),
  40319. name: "Side",
  40320. image: {
  40321. source: "./media/characters/lotherakon/side.svg",
  40322. extra: 1604/1497,
  40323. bottom: 89/1693
  40324. }
  40325. },
  40326. },
  40327. [
  40328. {
  40329. name: "Mortal Interaction",
  40330. height: math.unit(10, "feet")
  40331. },
  40332. {
  40333. name: "Large",
  40334. height: math.unit(30, "feet"),
  40335. default: true
  40336. },
  40337. {
  40338. name: "Giant",
  40339. height: math.unit(100, "feet")
  40340. },
  40341. {
  40342. name: "Kaiju",
  40343. height: math.unit(300, "feet")
  40344. },
  40345. {
  40346. name: "Macro",
  40347. height: math.unit(1000, "feet")
  40348. },
  40349. {
  40350. name: "Macro+",
  40351. height: math.unit(3000, "feet")
  40352. },
  40353. {
  40354. name: "Megamacro",
  40355. height: math.unit(10000, "feet")
  40356. },
  40357. {
  40358. name: "City-Crushing",
  40359. height: math.unit(30000, "feet")
  40360. },
  40361. {
  40362. name: "Continent Cracker",
  40363. height: math.unit(30e6, "feet")
  40364. },
  40365. {
  40366. name: "Earth Eclipsing",
  40367. height: math.unit(3e8, "feet")
  40368. },
  40369. {
  40370. name: "Gas Giant Gulper",
  40371. height: math.unit(3e9, "feet")
  40372. },
  40373. {
  40374. name: "Sol-Swallowing",
  40375. height: math.unit(1e11, "feet")
  40376. },
  40377. {
  40378. name: "System Swallower",
  40379. height: math.unit(3e14, "feet")
  40380. },
  40381. {
  40382. name: "Galaxy Gulper",
  40383. height: math.unit(10, "galaxies")
  40384. },
  40385. {
  40386. name: "Light Universal",
  40387. height: math.unit(5, "universes")
  40388. },
  40389. {
  40390. name: "Universe Palm",
  40391. height: math.unit(20, "universes")
  40392. },
  40393. {
  40394. name: "Light Multiversal",
  40395. height: math.unit(5, "multiverses")
  40396. },
  40397. {
  40398. name: "Multiverse Palm",
  40399. height: math.unit(20, "multiverses")
  40400. },
  40401. {
  40402. name: "Inferno Incarnate",
  40403. height: math.unit(1e7, "multiverses")
  40404. },
  40405. ]
  40406. ))
  40407. characterMakers.push(() => makeCharacter(
  40408. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40409. {
  40410. front: {
  40411. height: math.unit(8, "feet"),
  40412. weight: math.unit(1200, "lb"),
  40413. name: "Front",
  40414. image: {
  40415. source: "./media/characters/malithee/front.svg",
  40416. extra: 1675/1640,
  40417. bottom: 162/1837
  40418. }
  40419. },
  40420. },
  40421. [
  40422. {
  40423. name: "Mortal Interaction",
  40424. height: math.unit(8, "feet"),
  40425. default: true
  40426. },
  40427. {
  40428. name: "Large",
  40429. height: math.unit(24, "feet")
  40430. },
  40431. {
  40432. name: "Kaiju",
  40433. height: math.unit(240, "feet")
  40434. },
  40435. {
  40436. name: "Megamacro",
  40437. height: math.unit(8000, "feet")
  40438. },
  40439. {
  40440. name: "Continent Cracker",
  40441. height: math.unit(24e6, "feet")
  40442. },
  40443. {
  40444. name: "Earth-Eclipsing",
  40445. height: math.unit(2.4e8, "feet")
  40446. },
  40447. {
  40448. name: "Sol-Swallowing",
  40449. height: math.unit(8e10, "feet")
  40450. },
  40451. {
  40452. name: "Galaxy Gulper",
  40453. height: math.unit(8, "galaxies")
  40454. },
  40455. {
  40456. name: "Light Universal",
  40457. height: math.unit(4, "universes")
  40458. },
  40459. {
  40460. name: "Universe Atoms",
  40461. height: math.unit(1.829e9, "universes")
  40462. },
  40463. {
  40464. name: "Light Multiversal",
  40465. height: math.unit(4, "multiverses")
  40466. },
  40467. {
  40468. name: "Multiverse Atoms",
  40469. height: math.unit(1.829e9, "multiverses")
  40470. },
  40471. {
  40472. name: "Nigh-Omnipresence",
  40473. height: math.unit(8e261, "multiverses")
  40474. },
  40475. ]
  40476. ))
  40477. characterMakers.push(() => makeCharacter(
  40478. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40479. {
  40480. front: {
  40481. height: math.unit(10, "feet"),
  40482. weight: math.unit(1500, "lb"),
  40483. name: "Front",
  40484. image: {
  40485. source: "./media/characters/miles-thestia/front.svg",
  40486. extra: 1812/1727,
  40487. bottom: 86/1898
  40488. }
  40489. },
  40490. back: {
  40491. height: math.unit(10, "feet"),
  40492. weight: math.unit(1500, "lb"),
  40493. name: "Back",
  40494. image: {
  40495. source: "./media/characters/miles-thestia/back.svg",
  40496. extra: 1799/1690,
  40497. bottom: 47/1846
  40498. }
  40499. },
  40500. frontNsfw: {
  40501. height: math.unit(10, "feet"),
  40502. weight: math.unit(1500, "lb"),
  40503. name: "Front (NSFW)",
  40504. image: {
  40505. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40506. extra: 1812/1727,
  40507. bottom: 86/1898
  40508. }
  40509. },
  40510. },
  40511. [
  40512. {
  40513. name: "Mini-Macro",
  40514. height: math.unit(10, "feet"),
  40515. default: true
  40516. },
  40517. ]
  40518. ))
  40519. characterMakers.push(() => makeCharacter(
  40520. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40521. {
  40522. front: {
  40523. height: math.unit(25, "feet"),
  40524. name: "Front",
  40525. image: {
  40526. source: "./media/characters/titan-s-wulf/front.svg",
  40527. extra: 1560/1484,
  40528. bottom: 76/1636
  40529. }
  40530. },
  40531. },
  40532. [
  40533. {
  40534. name: "Smallest",
  40535. height: math.unit(25, "feet"),
  40536. default: true
  40537. },
  40538. {
  40539. name: "Normal",
  40540. height: math.unit(200, "feet")
  40541. },
  40542. {
  40543. name: "Macro",
  40544. height: math.unit(200000, "feet")
  40545. },
  40546. {
  40547. name: "Multiversal Original",
  40548. height: math.unit(10000, "multiverses")
  40549. },
  40550. ]
  40551. ))
  40552. characterMakers.push(() => makeCharacter(
  40553. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40554. {
  40555. front: {
  40556. height: math.unit(8, "feet"),
  40557. weight: math.unit(553, "lb"),
  40558. name: "Front",
  40559. image: {
  40560. source: "./media/characters/tawendeh/front.svg",
  40561. extra: 2365/2268,
  40562. bottom: 83/2448
  40563. }
  40564. },
  40565. frontClothed: {
  40566. height: math.unit(8, "feet"),
  40567. weight: math.unit(553, "lb"),
  40568. name: "Front (Clothed)",
  40569. image: {
  40570. source: "./media/characters/tawendeh/front-clothed.svg",
  40571. extra: 2365/2268,
  40572. bottom: 83/2448
  40573. }
  40574. },
  40575. back: {
  40576. height: math.unit(8, "feet"),
  40577. weight: math.unit(553, "lb"),
  40578. name: "Back",
  40579. image: {
  40580. source: "./media/characters/tawendeh/back.svg",
  40581. extra: 2397/2294,
  40582. bottom: 42/2439
  40583. }
  40584. },
  40585. },
  40586. [
  40587. {
  40588. name: "Mortal Interaction",
  40589. height: math.unit(8, "feet"),
  40590. default: true
  40591. },
  40592. {
  40593. name: "Giant",
  40594. height: math.unit(80, "feet")
  40595. },
  40596. {
  40597. name: "Macro",
  40598. height: math.unit(800, "feet")
  40599. },
  40600. {
  40601. name: "Megamacro",
  40602. height: math.unit(8000, "feet")
  40603. },
  40604. {
  40605. name: "City-Crushing",
  40606. height: math.unit(24000, "feet")
  40607. },
  40608. {
  40609. name: "Mountain-Mashing",
  40610. height: math.unit(80000, "feet")
  40611. },
  40612. {
  40613. name: "Nation Nemesis",
  40614. height: math.unit(8e6, "feet")
  40615. },
  40616. {
  40617. name: "Continent Cracker",
  40618. height: math.unit(24e6, "feet")
  40619. },
  40620. {
  40621. name: "Earth-Eclipsing",
  40622. height: math.unit(2.4e8, "feet")
  40623. },
  40624. {
  40625. name: "Gas Giant Gulper",
  40626. height: math.unit(2.4e9, "feet")
  40627. },
  40628. {
  40629. name: "Sol-Swallowing",
  40630. height: math.unit(8e10, "feet")
  40631. },
  40632. {
  40633. name: "Galaxy Gulper",
  40634. height: math.unit(8, "galaxies")
  40635. },
  40636. {
  40637. name: "Cosmos Churner",
  40638. height: math.unit(8, "universes")
  40639. },
  40640. {
  40641. name: "Omnipotent Otter",
  40642. height: math.unit(80, "universes")
  40643. },
  40644. ]
  40645. ))
  40646. characterMakers.push(() => makeCharacter(
  40647. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40648. {
  40649. front: {
  40650. height: math.unit(2.6, "meters"),
  40651. weight: math.unit(900, "kg"),
  40652. name: "Front",
  40653. image: {
  40654. source: "./media/characters/neesha/front.svg",
  40655. extra: 1803/1653,
  40656. bottom: 128/1931
  40657. }
  40658. },
  40659. },
  40660. [
  40661. {
  40662. name: "Normal",
  40663. height: math.unit(2.6, "meters"),
  40664. default: true
  40665. },
  40666. {
  40667. name: "Macro",
  40668. height: math.unit(50, "meters")
  40669. },
  40670. ]
  40671. ))
  40672. characterMakers.push(() => makeCharacter(
  40673. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40674. {
  40675. front: {
  40676. height: math.unit(5, "feet"),
  40677. weight: math.unit(185, "lb"),
  40678. name: "Front",
  40679. image: {
  40680. source: "./media/characters/kyera/front.svg",
  40681. extra: 1875/1790,
  40682. bottom: 96/1971
  40683. }
  40684. },
  40685. },
  40686. [
  40687. {
  40688. name: "Normal",
  40689. height: math.unit(5, "feet"),
  40690. default: true
  40691. },
  40692. ]
  40693. ))
  40694. characterMakers.push(() => makeCharacter(
  40695. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40696. {
  40697. front: {
  40698. height: math.unit(7 + 6/12, "feet"),
  40699. weight: math.unit(540, "lb"),
  40700. name: "Front",
  40701. image: {
  40702. source: "./media/characters/yuko/front.svg",
  40703. extra: 1282/1222,
  40704. bottom: 101/1383
  40705. }
  40706. },
  40707. frontClothed: {
  40708. height: math.unit(7 + 6/12, "feet"),
  40709. weight: math.unit(540, "lb"),
  40710. name: "Front (Clothed)",
  40711. image: {
  40712. source: "./media/characters/yuko/front-clothed.svg",
  40713. extra: 1282/1222,
  40714. bottom: 101/1383
  40715. }
  40716. },
  40717. },
  40718. [
  40719. {
  40720. name: "Normal",
  40721. height: math.unit(7 + 6/12, "feet"),
  40722. default: true
  40723. },
  40724. {
  40725. name: "Macro",
  40726. height: math.unit(26 + 9/12, "feet")
  40727. },
  40728. {
  40729. name: "Megamacro",
  40730. height: math.unit(300, "feet")
  40731. },
  40732. {
  40733. name: "Gigamacro",
  40734. height: math.unit(5000, "feet")
  40735. },
  40736. {
  40737. name: "Planetary",
  40738. height: math.unit(10000, "miles")
  40739. },
  40740. ]
  40741. ))
  40742. characterMakers.push(() => makeCharacter(
  40743. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40744. {
  40745. front: {
  40746. height: math.unit(8 + 2/12, "feet"),
  40747. weight: math.unit(600, "lb"),
  40748. name: "Front",
  40749. image: {
  40750. source: "./media/characters/deam-nitrel/front.svg",
  40751. extra: 1308/1234,
  40752. bottom: 125/1433
  40753. }
  40754. },
  40755. },
  40756. [
  40757. {
  40758. name: "Normal",
  40759. height: math.unit(8 + 2/12, "feet"),
  40760. default: true
  40761. },
  40762. ]
  40763. ))
  40764. characterMakers.push(() => makeCharacter(
  40765. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40766. {
  40767. front: {
  40768. height: math.unit(6.1, "feet"),
  40769. weight: math.unit(180, "lb"),
  40770. name: "Front",
  40771. image: {
  40772. source: "./media/characters/skyress/front.svg",
  40773. extra: 1045/915,
  40774. bottom: 28/1073
  40775. }
  40776. },
  40777. maw: {
  40778. height: math.unit(1, "feet"),
  40779. name: "Maw",
  40780. image: {
  40781. source: "./media/characters/skyress/maw.svg"
  40782. }
  40783. },
  40784. },
  40785. [
  40786. {
  40787. name: "Normal",
  40788. height: math.unit(6.1, "feet"),
  40789. default: true
  40790. },
  40791. {
  40792. name: "Macro",
  40793. height: math.unit(200, "feet")
  40794. },
  40795. ]
  40796. ))
  40797. characterMakers.push(() => makeCharacter(
  40798. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40799. {
  40800. front: {
  40801. height: math.unit(4 + 2/12, "feet"),
  40802. weight: math.unit(40, "kg"),
  40803. name: "Front",
  40804. image: {
  40805. source: "./media/characters/amethyst-jones/front.svg",
  40806. extra: 1220/1150,
  40807. bottom: 101/1321
  40808. }
  40809. },
  40810. },
  40811. [
  40812. {
  40813. name: "Normal",
  40814. height: math.unit(4 + 2/12, "feet"),
  40815. default: true
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40821. {
  40822. front: {
  40823. height: math.unit(1.7, "m"),
  40824. weight: math.unit(135, "lb"),
  40825. name: "Front",
  40826. image: {
  40827. source: "./media/characters/jade/front.svg",
  40828. extra: 1818/1767,
  40829. bottom: 32/1850
  40830. }
  40831. },
  40832. back: {
  40833. height: math.unit(1.7, "m"),
  40834. weight: math.unit(135, "lb"),
  40835. name: "Back",
  40836. image: {
  40837. source: "./media/characters/jade/back.svg",
  40838. extra: 1869/1809,
  40839. bottom: 35/1904
  40840. }
  40841. },
  40842. hand: {
  40843. height: math.unit(0.24, "m"),
  40844. name: "Hand",
  40845. image: {
  40846. source: "./media/characters/jade/hand.svg"
  40847. }
  40848. },
  40849. foot: {
  40850. height: math.unit(0.263, "m"),
  40851. name: "Foot",
  40852. image: {
  40853. source: "./media/characters/jade/foot.svg"
  40854. }
  40855. },
  40856. dick: {
  40857. height: math.unit(0.47, "m"),
  40858. name: "Dick",
  40859. image: {
  40860. source: "./media/characters/jade/dick.svg"
  40861. }
  40862. },
  40863. },
  40864. [
  40865. {
  40866. name: "Micro",
  40867. height: math.unit(22, "cm")
  40868. },
  40869. {
  40870. name: "Normal",
  40871. height: math.unit(1.7, "m"),
  40872. default: true
  40873. },
  40874. {
  40875. name: "Macro",
  40876. height: math.unit(152, "m")
  40877. },
  40878. ]
  40879. ))
  40880. characterMakers.push(() => makeCharacter(
  40881. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40882. {
  40883. front: {
  40884. height: math.unit(100, "miles"),
  40885. weight: math.unit(20000, "tons"),
  40886. name: "Front",
  40887. image: {
  40888. source: "./media/characters/cookie/front.svg",
  40889. extra: 1125/1070,
  40890. bottom: 30/1155
  40891. }
  40892. },
  40893. },
  40894. [
  40895. {
  40896. name: "Big",
  40897. height: math.unit(50, "feet")
  40898. },
  40899. {
  40900. name: "Macro",
  40901. height: math.unit(100, "miles"),
  40902. default: true
  40903. },
  40904. {
  40905. name: "Megamacro",
  40906. height: math.unit(90000, "miles")
  40907. },
  40908. ]
  40909. ))
  40910. characterMakers.push(() => makeCharacter(
  40911. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40912. {
  40913. front: {
  40914. height: math.unit(6, "feet"),
  40915. weight: math.unit(145, "lb"),
  40916. name: "Front",
  40917. image: {
  40918. source: "./media/characters/farzian/front.svg",
  40919. extra: 1902/1693,
  40920. bottom: 108/2010
  40921. }
  40922. },
  40923. },
  40924. [
  40925. {
  40926. name: "Macro",
  40927. height: math.unit(500, "feet"),
  40928. default: true
  40929. },
  40930. ]
  40931. ))
  40932. characterMakers.push(() => makeCharacter(
  40933. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40934. {
  40935. front: {
  40936. height: math.unit(3 + 6/12, "feet"),
  40937. weight: math.unit(50, "lb"),
  40938. name: "Front",
  40939. image: {
  40940. source: "./media/characters/kimberly-tilson/front.svg",
  40941. extra: 1400/1322,
  40942. bottom: 36/1436
  40943. }
  40944. },
  40945. back: {
  40946. height: math.unit(3 + 6/12, "feet"),
  40947. weight: math.unit(50, "lb"),
  40948. name: "Back",
  40949. image: {
  40950. source: "./media/characters/kimberly-tilson/back.svg",
  40951. extra: 1370/1307,
  40952. bottom: 20/1390
  40953. }
  40954. },
  40955. },
  40956. [
  40957. {
  40958. name: "Normal",
  40959. height: math.unit(3 + 6/12, "feet"),
  40960. default: true
  40961. },
  40962. ]
  40963. ))
  40964. characterMakers.push(() => makeCharacter(
  40965. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40966. {
  40967. front: {
  40968. height: math.unit(1148, "feet"),
  40969. weight: math.unit(34057, "lb"),
  40970. name: "Front",
  40971. image: {
  40972. source: "./media/characters/harthos/front.svg",
  40973. extra: 1391/1339,
  40974. bottom: 13/1404
  40975. }
  40976. },
  40977. },
  40978. [
  40979. {
  40980. name: "Macro",
  40981. height: math.unit(1148, "feet"),
  40982. default: true
  40983. },
  40984. ]
  40985. ))
  40986. characterMakers.push(() => makeCharacter(
  40987. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40988. {
  40989. front: {
  40990. height: math.unit(15, "feet"),
  40991. name: "Front",
  40992. image: {
  40993. source: "./media/characters/hypatia/front.svg",
  40994. extra: 1653/1591,
  40995. bottom: 79/1732
  40996. }
  40997. },
  40998. },
  40999. [
  41000. {
  41001. name: "Normal",
  41002. height: math.unit(15, "feet")
  41003. },
  41004. {
  41005. name: "Small",
  41006. height: math.unit(300, "feet")
  41007. },
  41008. {
  41009. name: "Macro",
  41010. height: math.unit(2500, "feet"),
  41011. default: true
  41012. },
  41013. {
  41014. name: "Mega Macro",
  41015. height: math.unit(1500, "miles")
  41016. },
  41017. {
  41018. name: "Giga Macro",
  41019. height: math.unit(1.5e6, "miles")
  41020. },
  41021. ]
  41022. ))
  41023. characterMakers.push(() => makeCharacter(
  41024. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41025. {
  41026. front: {
  41027. height: math.unit(6, "feet"),
  41028. weight: math.unit(200, "lb"),
  41029. name: "Front",
  41030. image: {
  41031. source: "./media/characters/wulver/front.svg",
  41032. extra: 1724/1632,
  41033. bottom: 130/1854
  41034. }
  41035. },
  41036. frontNsfw: {
  41037. height: math.unit(6, "feet"),
  41038. weight: math.unit(200, "lb"),
  41039. name: "Front (NSFW)",
  41040. image: {
  41041. source: "./media/characters/wulver/front-nsfw.svg",
  41042. extra: 1724/1632,
  41043. bottom: 130/1854
  41044. }
  41045. },
  41046. },
  41047. [
  41048. {
  41049. name: "Human-Sized",
  41050. height: math.unit(6, "feet")
  41051. },
  41052. {
  41053. name: "Normal",
  41054. height: math.unit(4, "meters"),
  41055. default: true
  41056. },
  41057. {
  41058. name: "Large",
  41059. height: math.unit(6, "m")
  41060. },
  41061. ]
  41062. ))
  41063. characterMakers.push(() => makeCharacter(
  41064. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41065. {
  41066. front: {
  41067. height: math.unit(7, "feet"),
  41068. name: "Front",
  41069. image: {
  41070. source: "./media/characters/maru/front.svg",
  41071. extra: 1595/1570,
  41072. bottom: 0/1595
  41073. }
  41074. },
  41075. },
  41076. [
  41077. {
  41078. name: "Normal",
  41079. height: math.unit(7, "feet"),
  41080. default: true
  41081. },
  41082. {
  41083. name: "Macro",
  41084. height: math.unit(700, "feet")
  41085. },
  41086. {
  41087. name: "Mega Macro",
  41088. height: math.unit(25, "miles")
  41089. },
  41090. ]
  41091. ))
  41092. characterMakers.push(() => makeCharacter(
  41093. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41094. {
  41095. front: {
  41096. height: math.unit(6, "feet"),
  41097. weight: math.unit(170, "lb"),
  41098. name: "Front",
  41099. image: {
  41100. source: "./media/characters/xenon/front.svg",
  41101. extra: 1376/1305,
  41102. bottom: 56/1432
  41103. }
  41104. },
  41105. back: {
  41106. height: math.unit(6, "feet"),
  41107. weight: math.unit(170, "lb"),
  41108. name: "Back",
  41109. image: {
  41110. source: "./media/characters/xenon/back.svg",
  41111. extra: 1328/1259,
  41112. bottom: 95/1423
  41113. }
  41114. },
  41115. maw: {
  41116. height: math.unit(0.52, "feet"),
  41117. name: "Maw",
  41118. image: {
  41119. source: "./media/characters/xenon/maw.svg"
  41120. }
  41121. },
  41122. hand: {
  41123. height: math.unit(0.82, "feet"),
  41124. name: "Hand",
  41125. image: {
  41126. source: "./media/characters/xenon/hand.svg"
  41127. }
  41128. },
  41129. foot: {
  41130. height: math.unit(1.13, "feet"),
  41131. name: "Foot",
  41132. image: {
  41133. source: "./media/characters/xenon/foot.svg"
  41134. }
  41135. },
  41136. },
  41137. [
  41138. {
  41139. name: "Micro",
  41140. height: math.unit(0.8, "inches")
  41141. },
  41142. {
  41143. name: "Normal",
  41144. height: math.unit(6, "feet")
  41145. },
  41146. {
  41147. name: "Macro",
  41148. height: math.unit(50, "feet"),
  41149. default: true
  41150. },
  41151. {
  41152. name: "Macro+",
  41153. height: math.unit(250, "feet")
  41154. },
  41155. {
  41156. name: "Megamacro",
  41157. height: math.unit(1500, "feet")
  41158. },
  41159. ]
  41160. ))
  41161. characterMakers.push(() => makeCharacter(
  41162. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41163. {
  41164. front: {
  41165. height: math.unit(7 + 5/12, "feet"),
  41166. name: "Front",
  41167. image: {
  41168. source: "./media/characters/zane/front.svg",
  41169. extra: 1260/1203,
  41170. bottom: 94/1354
  41171. }
  41172. },
  41173. back: {
  41174. height: math.unit(5.05, "feet"),
  41175. name: "Back",
  41176. image: {
  41177. source: "./media/characters/zane/back.svg",
  41178. extra: 893/829,
  41179. bottom: 30/923
  41180. }
  41181. },
  41182. werewolf: {
  41183. height: math.unit(11, "feet"),
  41184. name: "Werewolf",
  41185. image: {
  41186. source: "./media/characters/zane/werewolf.svg",
  41187. extra: 1383/1323,
  41188. bottom: 89/1472
  41189. }
  41190. },
  41191. foot: {
  41192. height: math.unit(1.46, "feet"),
  41193. name: "Foot",
  41194. image: {
  41195. source: "./media/characters/zane/foot.svg"
  41196. }
  41197. },
  41198. footFront: {
  41199. height: math.unit(0.784, "feet"),
  41200. name: "Foot (Front)",
  41201. image: {
  41202. source: "./media/characters/zane/foot-front.svg"
  41203. }
  41204. },
  41205. dick: {
  41206. height: math.unit(1.95, "feet"),
  41207. name: "Dick",
  41208. image: {
  41209. source: "./media/characters/zane/dick.svg"
  41210. }
  41211. },
  41212. dickWerewolf: {
  41213. height: math.unit(3.77, "feet"),
  41214. name: "Dick (Werewolf)",
  41215. image: {
  41216. source: "./media/characters/zane/dick.svg"
  41217. }
  41218. },
  41219. },
  41220. [
  41221. {
  41222. name: "Normal",
  41223. height: math.unit(7 + 5/12, "feet"),
  41224. default: true
  41225. },
  41226. ]
  41227. ))
  41228. characterMakers.push(() => makeCharacter(
  41229. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41230. {
  41231. front: {
  41232. height: math.unit(6 + 2/12, "feet"),
  41233. weight: math.unit(284, "lb"),
  41234. name: "Front",
  41235. image: {
  41236. source: "./media/characters/benni-desparque/front.svg",
  41237. extra: 1353/1126,
  41238. bottom: 69/1422
  41239. }
  41240. },
  41241. },
  41242. [
  41243. {
  41244. name: "Civilian",
  41245. height: math.unit(6 + 2/12, "feet")
  41246. },
  41247. {
  41248. name: "Normal",
  41249. height: math.unit(98, "feet"),
  41250. default: true
  41251. },
  41252. {
  41253. name: "Kaiju Fighter",
  41254. height: math.unit(268, "feet")
  41255. },
  41256. ]
  41257. ))
  41258. characterMakers.push(() => makeCharacter(
  41259. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41260. {
  41261. front: {
  41262. height: math.unit(5, "feet"),
  41263. weight: math.unit(105, "lb"),
  41264. name: "Front",
  41265. image: {
  41266. source: "./media/characters/maxine/front.svg",
  41267. extra: 1386/1250,
  41268. bottom: 71/1457
  41269. }
  41270. },
  41271. },
  41272. [
  41273. {
  41274. name: "Normal",
  41275. height: math.unit(5, "feet"),
  41276. default: true
  41277. },
  41278. ]
  41279. ))
  41280. characterMakers.push(() => makeCharacter(
  41281. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41282. {
  41283. front: {
  41284. height: math.unit(11 + 7/12, "feet"),
  41285. weight: math.unit(9576, "lb"),
  41286. name: "Front",
  41287. image: {
  41288. source: "./media/characters/scaly/front.svg",
  41289. extra: 888/867,
  41290. bottom: 36/924
  41291. }
  41292. },
  41293. },
  41294. [
  41295. {
  41296. name: "Normal",
  41297. height: math.unit(11 + 7/12, "feet"),
  41298. default: true
  41299. },
  41300. ]
  41301. ))
  41302. characterMakers.push(() => makeCharacter(
  41303. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41304. {
  41305. front: {
  41306. height: math.unit(6 + 3/12, "feet"),
  41307. name: "Front",
  41308. image: {
  41309. source: "./media/characters/saelria/front.svg",
  41310. extra: 1243/1138,
  41311. bottom: 46/1289
  41312. }
  41313. },
  41314. },
  41315. [
  41316. {
  41317. name: "Micro",
  41318. height: math.unit(6, "inches"),
  41319. },
  41320. {
  41321. name: "Normal",
  41322. height: math.unit(6 + 3/12, "feet"),
  41323. default: true
  41324. },
  41325. {
  41326. name: "Macro",
  41327. height: math.unit(25, "feet")
  41328. },
  41329. ]
  41330. ))
  41331. characterMakers.push(() => makeCharacter(
  41332. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41333. {
  41334. front: {
  41335. height: math.unit(80, "meters"),
  41336. weight: math.unit(7000, "tonnes"),
  41337. name: "Front",
  41338. image: {
  41339. source: "./media/characters/tef/front.svg",
  41340. extra: 2036/1991,
  41341. bottom: 54/2090
  41342. }
  41343. },
  41344. back: {
  41345. height: math.unit(80, "meters"),
  41346. weight: math.unit(7000, "tonnes"),
  41347. name: "Back",
  41348. image: {
  41349. source: "./media/characters/tef/back.svg",
  41350. extra: 2036/1991,
  41351. bottom: 54/2090
  41352. }
  41353. },
  41354. },
  41355. [
  41356. {
  41357. name: "Macro",
  41358. height: math.unit(80, "meters"),
  41359. default: true
  41360. },
  41361. ]
  41362. ))
  41363. characterMakers.push(() => makeCharacter(
  41364. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41365. {
  41366. front: {
  41367. height: math.unit(13, "feet"),
  41368. weight: math.unit(6, "tons"),
  41369. name: "Front",
  41370. image: {
  41371. source: "./media/characters/rover/front.svg",
  41372. extra: 1233/1156,
  41373. bottom: 50/1283
  41374. }
  41375. },
  41376. back: {
  41377. height: math.unit(13, "feet"),
  41378. weight: math.unit(6, "tons"),
  41379. name: "Back",
  41380. image: {
  41381. source: "./media/characters/rover/back.svg",
  41382. extra: 1327/1258,
  41383. bottom: 39/1366
  41384. }
  41385. },
  41386. },
  41387. [
  41388. {
  41389. name: "Normal",
  41390. height: math.unit(13, "feet"),
  41391. default: true
  41392. },
  41393. {
  41394. name: "Macro",
  41395. height: math.unit(1300, "feet")
  41396. },
  41397. {
  41398. name: "Megamacro",
  41399. height: math.unit(1300, "miles")
  41400. },
  41401. {
  41402. name: "Gigamacro",
  41403. height: math.unit(1300000, "miles")
  41404. },
  41405. ]
  41406. ))
  41407. characterMakers.push(() => makeCharacter(
  41408. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41409. {
  41410. front: {
  41411. height: math.unit(6, "feet"),
  41412. weight: math.unit(150, "lb"),
  41413. name: "Front",
  41414. image: {
  41415. source: "./media/characters/ariz/front.svg",
  41416. extra: 1401/1346,
  41417. bottom: 5/1406
  41418. }
  41419. },
  41420. },
  41421. [
  41422. {
  41423. name: "Normal",
  41424. height: math.unit(10, "feet"),
  41425. default: true
  41426. },
  41427. ]
  41428. ))
  41429. characterMakers.push(() => makeCharacter(
  41430. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41431. {
  41432. front: {
  41433. height: math.unit(6, "feet"),
  41434. weight: math.unit(140, "lb"),
  41435. name: "Front",
  41436. image: {
  41437. source: "./media/characters/sigrun/front.svg",
  41438. extra: 1418/1359,
  41439. bottom: 27/1445
  41440. }
  41441. },
  41442. },
  41443. [
  41444. {
  41445. name: "Macro",
  41446. height: math.unit(35, "feet"),
  41447. default: true
  41448. },
  41449. ]
  41450. ))
  41451. characterMakers.push(() => makeCharacter(
  41452. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41453. {
  41454. front: {
  41455. height: math.unit(6, "feet"),
  41456. weight: math.unit(150, "lb"),
  41457. name: "Front",
  41458. image: {
  41459. source: "./media/characters/numin/front.svg",
  41460. extra: 1433/1388,
  41461. bottom: 12/1445
  41462. }
  41463. },
  41464. },
  41465. [
  41466. {
  41467. name: "Macro",
  41468. height: math.unit(21.5, "km"),
  41469. default: true
  41470. },
  41471. ]
  41472. ))
  41473. characterMakers.push(() => makeCharacter(
  41474. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41475. {
  41476. front: {
  41477. height: math.unit(6, "feet"),
  41478. weight: math.unit(463, "lb"),
  41479. name: "Front",
  41480. image: {
  41481. source: "./media/characters/melwa/front.svg",
  41482. extra: 1307/1248,
  41483. bottom: 93/1400
  41484. }
  41485. },
  41486. },
  41487. [
  41488. {
  41489. name: "Macro",
  41490. height: math.unit(50, "meters"),
  41491. default: true
  41492. },
  41493. ]
  41494. ))
  41495. characterMakers.push(() => makeCharacter(
  41496. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41497. {
  41498. front: {
  41499. height: math.unit(325, "feet"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/zorkaiju/front.svg",
  41503. extra: 1955/1814,
  41504. bottom: 40/1995
  41505. }
  41506. },
  41507. frontExtended: {
  41508. height: math.unit(325, "feet"),
  41509. name: "Front (Extended)",
  41510. image: {
  41511. source: "./media/characters/zorkaiju/front-extended.svg",
  41512. extra: 1955/1814,
  41513. bottom: 40/1995
  41514. }
  41515. },
  41516. side: {
  41517. height: math.unit(325, "feet"),
  41518. name: "Side",
  41519. image: {
  41520. source: "./media/characters/zorkaiju/side.svg",
  41521. extra: 1495/1396,
  41522. bottom: 17/1512
  41523. }
  41524. },
  41525. sideExtended: {
  41526. height: math.unit(325, "feet"),
  41527. name: "Side (Extended)",
  41528. image: {
  41529. source: "./media/characters/zorkaiju/side-extended.svg",
  41530. extra: 1495/1396,
  41531. bottom: 17/1512
  41532. }
  41533. },
  41534. back: {
  41535. height: math.unit(325, "feet"),
  41536. name: "Back",
  41537. image: {
  41538. source: "./media/characters/zorkaiju/back.svg",
  41539. extra: 1959/1821,
  41540. bottom: 31/1990
  41541. }
  41542. },
  41543. backExtended: {
  41544. height: math.unit(325, "feet"),
  41545. name: "Back (Extended)",
  41546. image: {
  41547. source: "./media/characters/zorkaiju/back-extended.svg",
  41548. extra: 1959/1821,
  41549. bottom: 31/1990
  41550. }
  41551. },
  41552. hand: {
  41553. height: math.unit(58.4, "feet"),
  41554. name: "Hand",
  41555. image: {
  41556. source: "./media/characters/zorkaiju/hand.svg"
  41557. }
  41558. },
  41559. handExtended: {
  41560. height: math.unit(61.4, "feet"),
  41561. name: "Hand (Extended)",
  41562. image: {
  41563. source: "./media/characters/zorkaiju/hand-extended.svg"
  41564. }
  41565. },
  41566. foot: {
  41567. height: math.unit(95, "feet"),
  41568. name: "Foot",
  41569. image: {
  41570. source: "./media/characters/zorkaiju/foot.svg"
  41571. }
  41572. },
  41573. leftArm: {
  41574. height: math.unit(59, "feet"),
  41575. name: "Left Arm",
  41576. image: {
  41577. source: "./media/characters/zorkaiju/left-arm.svg"
  41578. }
  41579. },
  41580. rightArm: {
  41581. height: math.unit(59, "feet"),
  41582. name: "Right Arm",
  41583. image: {
  41584. source: "./media/characters/zorkaiju/right-arm.svg"
  41585. }
  41586. },
  41587. tail: {
  41588. height: math.unit(104, "feet"),
  41589. name: "Tail",
  41590. image: {
  41591. source: "./media/characters/zorkaiju/tail.svg"
  41592. }
  41593. },
  41594. tailExtended: {
  41595. height: math.unit(104, "feet"),
  41596. name: "Tail (Extended)",
  41597. image: {
  41598. source: "./media/characters/zorkaiju/tail-extended.svg"
  41599. }
  41600. },
  41601. tailBottom: {
  41602. height: math.unit(104, "feet"),
  41603. name: "Tail Bottom",
  41604. image: {
  41605. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41606. }
  41607. },
  41608. crystal: {
  41609. height: math.unit(27.54, "feet"),
  41610. name: "Crystal",
  41611. image: {
  41612. source: "./media/characters/zorkaiju/crystal.svg"
  41613. }
  41614. },
  41615. },
  41616. [
  41617. {
  41618. name: "Kaiju",
  41619. height: math.unit(325, "feet"),
  41620. default: true
  41621. },
  41622. ]
  41623. ))
  41624. characterMakers.push(() => makeCharacter(
  41625. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41626. {
  41627. front: {
  41628. height: math.unit(6 + 1/12, "feet"),
  41629. weight: math.unit(115, "lb"),
  41630. name: "Front",
  41631. image: {
  41632. source: "./media/characters/bailey-belfry/front.svg",
  41633. extra: 1240/1121,
  41634. bottom: 101/1341
  41635. }
  41636. },
  41637. },
  41638. [
  41639. {
  41640. name: "Normal",
  41641. height: math.unit(6 + 1/12, "feet"),
  41642. default: true
  41643. },
  41644. ]
  41645. ))
  41646. characterMakers.push(() => makeCharacter(
  41647. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41648. {
  41649. side: {
  41650. height: math.unit(4, "meters"),
  41651. weight: math.unit(250, "kg"),
  41652. name: "Side",
  41653. image: {
  41654. source: "./media/characters/blacky/side.svg",
  41655. extra: 1027/919,
  41656. bottom: 43/1070
  41657. }
  41658. },
  41659. maw: {
  41660. height: math.unit(1, "meters"),
  41661. name: "Maw",
  41662. image: {
  41663. source: "./media/characters/blacky/maw.svg"
  41664. }
  41665. },
  41666. paw: {
  41667. height: math.unit(1, "meters"),
  41668. name: "Paw",
  41669. image: {
  41670. source: "./media/characters/blacky/paw.svg"
  41671. }
  41672. },
  41673. },
  41674. [
  41675. {
  41676. name: "Normal",
  41677. height: math.unit(4, "meters"),
  41678. default: true
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41684. {
  41685. front: {
  41686. height: math.unit(170, "cm"),
  41687. weight: math.unit(66, "kg"),
  41688. name: "Front",
  41689. image: {
  41690. source: "./media/characters/thux-ei/front.svg",
  41691. extra: 1109/1011,
  41692. bottom: 8/1117
  41693. }
  41694. },
  41695. },
  41696. [
  41697. {
  41698. name: "Normal",
  41699. height: math.unit(170, "cm"),
  41700. default: true
  41701. },
  41702. ]
  41703. ))
  41704. characterMakers.push(() => makeCharacter(
  41705. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41706. {
  41707. front: {
  41708. height: math.unit(5, "feet"),
  41709. weight: math.unit(120, "lb"),
  41710. name: "Front",
  41711. image: {
  41712. source: "./media/characters/roxanne-voltaire/front.svg",
  41713. extra: 1901/1779,
  41714. bottom: 53/1954
  41715. }
  41716. },
  41717. },
  41718. [
  41719. {
  41720. name: "Normal",
  41721. height: math.unit(5, "feet"),
  41722. default: true
  41723. },
  41724. {
  41725. name: "Giant",
  41726. height: math.unit(50, "feet")
  41727. },
  41728. {
  41729. name: "Titan",
  41730. height: math.unit(500, "feet")
  41731. },
  41732. {
  41733. name: "Macro",
  41734. height: math.unit(5000, "feet")
  41735. },
  41736. {
  41737. name: "Megamacro",
  41738. height: math.unit(50000, "feet")
  41739. },
  41740. {
  41741. name: "Gigamacro",
  41742. height: math.unit(500000, "feet")
  41743. },
  41744. {
  41745. name: "Teramacro",
  41746. height: math.unit(5e6, "feet")
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41752. {
  41753. front: {
  41754. height: math.unit(6 + 2/12, "feet"),
  41755. name: "Front",
  41756. image: {
  41757. source: "./media/characters/squeaks/front.svg",
  41758. extra: 1823/1768,
  41759. bottom: 138/1961
  41760. }
  41761. },
  41762. },
  41763. [
  41764. {
  41765. name: "Micro",
  41766. height: math.unit(0.5, "inches")
  41767. },
  41768. {
  41769. name: "Normal",
  41770. height: math.unit(6 + 2/12, "feet"),
  41771. default: true
  41772. },
  41773. {
  41774. name: "Macro",
  41775. height: math.unit(600, "feet")
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(1.72, "meters"),
  41784. name: "Front",
  41785. image: {
  41786. source: "./media/characters/archinger/front.svg",
  41787. extra: 1861/1675,
  41788. bottom: 125/1986
  41789. }
  41790. },
  41791. back: {
  41792. height: math.unit(1.72, "meters"),
  41793. name: "Back",
  41794. image: {
  41795. source: "./media/characters/archinger/back.svg",
  41796. extra: 1844/1701,
  41797. bottom: 104/1948
  41798. }
  41799. },
  41800. cock: {
  41801. height: math.unit(0.59, "feet"),
  41802. name: "Cock",
  41803. image: {
  41804. source: "./media/characters/archinger/cock.svg"
  41805. }
  41806. },
  41807. },
  41808. [
  41809. {
  41810. name: "Normal",
  41811. height: math.unit(1.72, "meters"),
  41812. default: true
  41813. },
  41814. {
  41815. name: "Macro",
  41816. height: math.unit(84, "meters")
  41817. },
  41818. {
  41819. name: "Macro+",
  41820. height: math.unit(112, "meters")
  41821. },
  41822. {
  41823. name: "Macro++",
  41824. height: math.unit(960, "meters")
  41825. },
  41826. {
  41827. name: "Macro+++",
  41828. height: math.unit(4, "km")
  41829. },
  41830. {
  41831. name: "Macro++++",
  41832. height: math.unit(48, "km")
  41833. },
  41834. {
  41835. name: "Macro+++++",
  41836. height: math.unit(4500, "km")
  41837. },
  41838. ]
  41839. ))
  41840. characterMakers.push(() => makeCharacter(
  41841. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41842. {
  41843. front: {
  41844. height: math.unit(5 + 5/12, "feet"),
  41845. name: "Front",
  41846. image: {
  41847. source: "./media/characters/alsnapz/front.svg",
  41848. extra: 1157/1065,
  41849. bottom: 42/1199
  41850. }
  41851. },
  41852. },
  41853. [
  41854. {
  41855. name: "Normal",
  41856. height: math.unit(5 + 5/12, "feet"),
  41857. default: true
  41858. },
  41859. ]
  41860. ))
  41861. characterMakers.push(() => makeCharacter(
  41862. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41863. {
  41864. side: {
  41865. height: math.unit(3.2, "earths"),
  41866. name: "Side",
  41867. image: {
  41868. source: "./media/characters/mag/side.svg",
  41869. extra: 1331/1008,
  41870. bottom: 52/1383
  41871. }
  41872. },
  41873. wing: {
  41874. height: math.unit(1.94, "earths"),
  41875. name: "Wing",
  41876. image: {
  41877. source: "./media/characters/mag/wing.svg"
  41878. }
  41879. },
  41880. dick: {
  41881. height: math.unit(1.8, "earths"),
  41882. name: "Dick",
  41883. image: {
  41884. source: "./media/characters/mag/dick.svg"
  41885. }
  41886. },
  41887. ass: {
  41888. height: math.unit(1.33, "earths"),
  41889. name: "Ass",
  41890. image: {
  41891. source: "./media/characters/mag/ass.svg"
  41892. }
  41893. },
  41894. head: {
  41895. height: math.unit(1.1, "earths"),
  41896. name: "Head",
  41897. image: {
  41898. source: "./media/characters/mag/head.svg"
  41899. }
  41900. },
  41901. maw: {
  41902. height: math.unit(1.62, "earths"),
  41903. name: "Maw",
  41904. image: {
  41905. source: "./media/characters/mag/maw.svg"
  41906. }
  41907. },
  41908. },
  41909. [
  41910. {
  41911. name: "Small",
  41912. height: math.unit(162, "feet")
  41913. },
  41914. {
  41915. name: "Normal",
  41916. height: math.unit(3.2, "earths"),
  41917. default: true
  41918. },
  41919. ]
  41920. ))
  41921. characterMakers.push(() => makeCharacter(
  41922. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41923. {
  41924. front: {
  41925. height: math.unit(512, "feet"),
  41926. weight: math.unit(63509, "tonnes"),
  41927. name: "Front",
  41928. image: {
  41929. source: "./media/characters/vorrel-harroc/front.svg",
  41930. extra: 1075/1063,
  41931. bottom: 62/1137
  41932. }
  41933. },
  41934. },
  41935. [
  41936. {
  41937. name: "Normal",
  41938. height: math.unit(10, "feet")
  41939. },
  41940. {
  41941. name: "Macro",
  41942. height: math.unit(512, "feet"),
  41943. default: true
  41944. },
  41945. {
  41946. name: "Megamacro",
  41947. height: math.unit(256, "miles")
  41948. },
  41949. {
  41950. name: "Gigamacro",
  41951. height: math.unit(4096, "miles")
  41952. },
  41953. ]
  41954. ))
  41955. characterMakers.push(() => makeCharacter(
  41956. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41957. {
  41958. side: {
  41959. height: math.unit(50, "feet"),
  41960. name: "Side",
  41961. image: {
  41962. source: "./media/characters/froimar/side.svg",
  41963. extra: 855/638,
  41964. bottom: 99/954
  41965. }
  41966. },
  41967. },
  41968. [
  41969. {
  41970. name: "Macro",
  41971. height: math.unit(50, "feet"),
  41972. default: true
  41973. },
  41974. ]
  41975. ))
  41976. characterMakers.push(() => makeCharacter(
  41977. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41978. {
  41979. front: {
  41980. height: math.unit(210, "miles"),
  41981. name: "Front",
  41982. image: {
  41983. source: "./media/characters/timothy/front.svg",
  41984. extra: 1007/943,
  41985. bottom: 62/1069
  41986. }
  41987. },
  41988. frontSkirt: {
  41989. height: math.unit(210, "miles"),
  41990. name: "Front (Skirt)",
  41991. image: {
  41992. source: "./media/characters/timothy/front-skirt.svg",
  41993. extra: 1007/943,
  41994. bottom: 62/1069
  41995. }
  41996. },
  41997. frontCoat: {
  41998. height: math.unit(210, "miles"),
  41999. name: "Front (Coat)",
  42000. image: {
  42001. source: "./media/characters/timothy/front-coat.svg",
  42002. extra: 1007/943,
  42003. bottom: 62/1069
  42004. }
  42005. },
  42006. },
  42007. [
  42008. {
  42009. name: "Macro",
  42010. height: math.unit(210, "miles"),
  42011. default: true
  42012. },
  42013. {
  42014. name: "Megamacro",
  42015. height: math.unit(210000, "miles")
  42016. },
  42017. ]
  42018. ))
  42019. characterMakers.push(() => makeCharacter(
  42020. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42021. {
  42022. front: {
  42023. height: math.unit(188, "feet"),
  42024. name: "Front",
  42025. image: {
  42026. source: "./media/characters/pyotr/front.svg",
  42027. extra: 1912/1826,
  42028. bottom: 18/1930
  42029. }
  42030. },
  42031. },
  42032. [
  42033. {
  42034. name: "Macro",
  42035. height: math.unit(188, "feet"),
  42036. default: true
  42037. },
  42038. {
  42039. name: "Megamacro",
  42040. height: math.unit(8, "miles")
  42041. },
  42042. ]
  42043. ))
  42044. characterMakers.push(() => makeCharacter(
  42045. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42046. {
  42047. side: {
  42048. height: math.unit(10, "feet"),
  42049. weight: math.unit(4500, "lb"),
  42050. name: "Side",
  42051. image: {
  42052. source: "./media/characters/ackart/side.svg",
  42053. extra: 1776/1668,
  42054. bottom: 116/1892
  42055. }
  42056. },
  42057. },
  42058. [
  42059. {
  42060. name: "Normal",
  42061. height: math.unit(10, "feet"),
  42062. default: true
  42063. },
  42064. ]
  42065. ))
  42066. characterMakers.push(() => makeCharacter(
  42067. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42068. {
  42069. side: {
  42070. height: math.unit(21, "feet"),
  42071. name: "Side",
  42072. image: {
  42073. source: "./media/characters/nolow/side.svg",
  42074. extra: 1484/1434,
  42075. bottom: 85/1569
  42076. }
  42077. },
  42078. sideErect: {
  42079. height: math.unit(21, "feet"),
  42080. name: "Side-erect",
  42081. image: {
  42082. source: "./media/characters/nolow/side-erect.svg",
  42083. extra: 1484/1434,
  42084. bottom: 85/1569
  42085. }
  42086. },
  42087. },
  42088. [
  42089. {
  42090. name: "Regular",
  42091. height: math.unit(12, "feet")
  42092. },
  42093. {
  42094. name: "Big Chee",
  42095. height: math.unit(21, "feet"),
  42096. default: true
  42097. },
  42098. ]
  42099. ))
  42100. characterMakers.push(() => makeCharacter(
  42101. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42102. {
  42103. front: {
  42104. height: math.unit(7, "feet"),
  42105. weight: math.unit(250, "lb"),
  42106. name: "Front",
  42107. image: {
  42108. source: "./media/characters/nines/front.svg",
  42109. extra: 1741/1607,
  42110. bottom: 41/1782
  42111. }
  42112. },
  42113. side: {
  42114. height: math.unit(7, "feet"),
  42115. weight: math.unit(250, "lb"),
  42116. name: "Side",
  42117. image: {
  42118. source: "./media/characters/nines/side.svg",
  42119. extra: 1854/1735,
  42120. bottom: 93/1947
  42121. }
  42122. },
  42123. back: {
  42124. height: math.unit(7, "feet"),
  42125. weight: math.unit(250, "lb"),
  42126. name: "Back",
  42127. image: {
  42128. source: "./media/characters/nines/back.svg",
  42129. extra: 1748/1615,
  42130. bottom: 20/1768
  42131. }
  42132. },
  42133. },
  42134. [
  42135. {
  42136. name: "Megamacro",
  42137. height: math.unit(99, "km"),
  42138. default: true
  42139. },
  42140. ]
  42141. ))
  42142. characterMakers.push(() => makeCharacter(
  42143. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42144. {
  42145. front: {
  42146. height: math.unit(5 + 10/12, "feet"),
  42147. weight: math.unit(210, "lb"),
  42148. name: "Front",
  42149. image: {
  42150. source: "./media/characters/zenith/front.svg",
  42151. extra: 1531/1452,
  42152. bottom: 198/1729
  42153. }
  42154. },
  42155. back: {
  42156. height: math.unit(5 + 10/12, "feet"),
  42157. weight: math.unit(210, "lb"),
  42158. name: "Back",
  42159. image: {
  42160. source: "./media/characters/zenith/back.svg",
  42161. extra: 1571/1487,
  42162. bottom: 75/1646
  42163. }
  42164. },
  42165. },
  42166. [
  42167. {
  42168. name: "Normal",
  42169. height: math.unit(5 + 10/12, "feet"),
  42170. default: true
  42171. }
  42172. ]
  42173. ))
  42174. characterMakers.push(() => makeCharacter(
  42175. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42176. {
  42177. front: {
  42178. height: math.unit(4, "feet"),
  42179. weight: math.unit(60, "lb"),
  42180. name: "Front",
  42181. image: {
  42182. source: "./media/characters/jasper/front.svg",
  42183. extra: 1450/1379,
  42184. bottom: 19/1469
  42185. }
  42186. },
  42187. },
  42188. [
  42189. {
  42190. name: "Normal",
  42191. height: math.unit(4, "feet"),
  42192. default: true
  42193. },
  42194. ]
  42195. ))
  42196. characterMakers.push(() => makeCharacter(
  42197. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42198. {
  42199. front: {
  42200. height: math.unit(6 + 5/12, "feet"),
  42201. weight: math.unit(290, "lb"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/tiberius-thyben/front.svg",
  42205. extra: 757/739,
  42206. bottom: 39/796
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Micro",
  42213. height: math.unit(1.5, "inches")
  42214. },
  42215. {
  42216. name: "Normal",
  42217. height: math.unit(6 + 5/12, "feet"),
  42218. default: true
  42219. },
  42220. {
  42221. name: "Macro",
  42222. height: math.unit(300, "feet")
  42223. },
  42224. ]
  42225. ))
  42226. characterMakers.push(() => makeCharacter(
  42227. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42228. {
  42229. front: {
  42230. height: math.unit(5 + 6/12, "feet"),
  42231. weight: math.unit(60, "kg"),
  42232. name: "Front",
  42233. image: {
  42234. source: "./media/characters/sabre/front.svg",
  42235. extra: 738/671,
  42236. bottom: 27/765
  42237. }
  42238. },
  42239. },
  42240. [
  42241. {
  42242. name: "Teeny",
  42243. height: math.unit(2, "inches")
  42244. },
  42245. {
  42246. name: "Smol",
  42247. height: math.unit(8, "inches")
  42248. },
  42249. {
  42250. name: "Normal",
  42251. height: math.unit(5 + 6/12, "feet"),
  42252. default: true
  42253. },
  42254. {
  42255. name: "Mini-Macro",
  42256. height: math.unit(15, "feet")
  42257. },
  42258. {
  42259. name: "Macro",
  42260. height: math.unit(50, "feet")
  42261. },
  42262. ]
  42263. ))
  42264. characterMakers.push(() => makeCharacter(
  42265. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42266. {
  42267. front: {
  42268. height: math.unit(6 + 4/12, "feet"),
  42269. weight: math.unit(170, "lb"),
  42270. name: "Front",
  42271. image: {
  42272. source: "./media/characters/charlie/front.svg",
  42273. extra: 1348/1228,
  42274. bottom: 15/1363
  42275. }
  42276. },
  42277. },
  42278. [
  42279. {
  42280. name: "Macro",
  42281. height: math.unit(1700, "meters"),
  42282. default: true
  42283. },
  42284. {
  42285. name: "MegaMacro",
  42286. height: math.unit(20400, "meters")
  42287. },
  42288. ]
  42289. ))
  42290. characterMakers.push(() => makeCharacter(
  42291. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42292. {
  42293. front: {
  42294. height: math.unit(6 + 3/12, "feet"),
  42295. weight: math.unit(185, "lb"),
  42296. name: "Front",
  42297. image: {
  42298. source: "./media/characters/susan-grant/front.svg",
  42299. extra: 1351/1327,
  42300. bottom: 26/1377
  42301. }
  42302. },
  42303. },
  42304. [
  42305. {
  42306. name: "Normal",
  42307. height: math.unit(6 + 3/12, "feet"),
  42308. default: true
  42309. },
  42310. {
  42311. name: "Macro",
  42312. height: math.unit(225, "feet")
  42313. },
  42314. {
  42315. name: "Macro+",
  42316. height: math.unit(900, "feet")
  42317. },
  42318. {
  42319. name: "MegaMacro",
  42320. height: math.unit(14400, "feet")
  42321. },
  42322. ]
  42323. ))
  42324. characterMakers.push(() => makeCharacter(
  42325. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42326. {
  42327. front: {
  42328. height: math.unit(5 + 4/12, "feet"),
  42329. weight: math.unit(110, "lb"),
  42330. name: "Front",
  42331. image: {
  42332. source: "./media/characters/axel-isanov/front.svg",
  42333. extra: 1096/1065,
  42334. bottom: 13/1109
  42335. }
  42336. },
  42337. },
  42338. [
  42339. {
  42340. name: "Normal",
  42341. height: math.unit(5 + 4/12, "feet"),
  42342. default: true
  42343. },
  42344. ]
  42345. ))
  42346. characterMakers.push(() => makeCharacter(
  42347. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42348. {
  42349. front: {
  42350. height: math.unit(9, "feet"),
  42351. weight: math.unit(467, "lb"),
  42352. name: "Front",
  42353. image: {
  42354. source: "./media/characters/necahual/front.svg",
  42355. extra: 920/873,
  42356. bottom: 26/946
  42357. }
  42358. },
  42359. back: {
  42360. height: math.unit(9, "feet"),
  42361. weight: math.unit(467, "lb"),
  42362. name: "Back",
  42363. image: {
  42364. source: "./media/characters/necahual/back.svg",
  42365. extra: 930/884,
  42366. bottom: 16/946
  42367. }
  42368. },
  42369. frontUnderwear: {
  42370. height: math.unit(9, "feet"),
  42371. weight: math.unit(467, "lb"),
  42372. name: "Front (Underwear)",
  42373. image: {
  42374. source: "./media/characters/necahual/front-underwear.svg",
  42375. extra: 920/873,
  42376. bottom: 26/946
  42377. }
  42378. },
  42379. frontDressed: {
  42380. height: math.unit(9, "feet"),
  42381. weight: math.unit(467, "lb"),
  42382. name: "Front (Dressed)",
  42383. image: {
  42384. source: "./media/characters/necahual/front-dressed.svg",
  42385. extra: 920/873,
  42386. bottom: 26/946
  42387. }
  42388. },
  42389. },
  42390. [
  42391. {
  42392. name: "Comprsesed",
  42393. height: math.unit(9, "feet")
  42394. },
  42395. {
  42396. name: "Natural",
  42397. height: math.unit(15, "feet"),
  42398. default: true
  42399. },
  42400. {
  42401. name: "Boosted",
  42402. height: math.unit(50, "feet")
  42403. },
  42404. {
  42405. name: "Boosted+",
  42406. height: math.unit(150, "feet")
  42407. },
  42408. {
  42409. name: "Max",
  42410. height: math.unit(500, "feet")
  42411. },
  42412. ]
  42413. ))
  42414. characterMakers.push(() => makeCharacter(
  42415. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42416. {
  42417. front: {
  42418. height: math.unit(22 + 1/12, "feet"),
  42419. weight: math.unit(3200, "lb"),
  42420. name: "Front",
  42421. image: {
  42422. source: "./media/characters/theo-acacia/front.svg",
  42423. extra: 1796/1741,
  42424. bottom: 83/1879
  42425. }
  42426. },
  42427. frontUnderwear: {
  42428. height: math.unit(22 + 1/12, "feet"),
  42429. weight: math.unit(3200, "lb"),
  42430. name: "Front (Underwear)",
  42431. image: {
  42432. source: "./media/characters/theo-acacia/front-underwear.svg",
  42433. extra: 1796/1741,
  42434. bottom: 83/1879
  42435. }
  42436. },
  42437. frontNude: {
  42438. height: math.unit(22 + 1/12, "feet"),
  42439. weight: math.unit(3200, "lb"),
  42440. name: "Front (Nude)",
  42441. image: {
  42442. source: "./media/characters/theo-acacia/front-nude.svg",
  42443. extra: 1796/1741,
  42444. bottom: 83/1879
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(22 + 1/12, "feet"),
  42452. default: true
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42458. {
  42459. front: {
  42460. height: math.unit(20, "feet"),
  42461. name: "Front",
  42462. image: {
  42463. source: "./media/characters/astra/front.svg",
  42464. extra: 1850/1714,
  42465. bottom: 106/1956
  42466. }
  42467. },
  42468. frontUndressed: {
  42469. height: math.unit(20, "feet"),
  42470. name: "Front (Undressed)",
  42471. image: {
  42472. source: "./media/characters/astra/front-undressed.svg",
  42473. extra: 1926/1749,
  42474. bottom: 0/1926
  42475. }
  42476. },
  42477. hand: {
  42478. height: math.unit(1.53, "feet"),
  42479. name: "Hand",
  42480. image: {
  42481. source: "./media/characters/astra/hand.svg"
  42482. }
  42483. },
  42484. paw: {
  42485. height: math.unit(1.53, "feet"),
  42486. name: "Paw",
  42487. image: {
  42488. source: "./media/characters/astra/paw.svg"
  42489. }
  42490. },
  42491. },
  42492. [
  42493. {
  42494. name: "Smallest",
  42495. height: math.unit(20, "feet")
  42496. },
  42497. {
  42498. name: "Normal",
  42499. height: math.unit(1e9, "miles"),
  42500. default: true
  42501. },
  42502. {
  42503. name: "Larger",
  42504. height: math.unit(5, "multiverses")
  42505. },
  42506. {
  42507. name: "Largest",
  42508. height: math.unit(1e9, "multiverses")
  42509. },
  42510. ]
  42511. ))
  42512. characterMakers.push(() => makeCharacter(
  42513. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42514. {
  42515. front: {
  42516. height: math.unit(8, "feet"),
  42517. name: "Front",
  42518. image: {
  42519. source: "./media/characters/breanna/front.svg",
  42520. extra: 1912/1632,
  42521. bottom: 33/1945
  42522. }
  42523. },
  42524. },
  42525. [
  42526. {
  42527. name: "Smallest",
  42528. height: math.unit(8, "feet")
  42529. },
  42530. {
  42531. name: "Normal",
  42532. height: math.unit(1, "mile"),
  42533. default: true
  42534. },
  42535. {
  42536. name: "Maximum",
  42537. height: math.unit(1500000000000, "lightyears")
  42538. },
  42539. ]
  42540. ))
  42541. characterMakers.push(() => makeCharacter(
  42542. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42543. {
  42544. front: {
  42545. height: math.unit(5 + 11/12, "feet"),
  42546. weight: math.unit(155, "lb"),
  42547. name: "Front",
  42548. image: {
  42549. source: "./media/characters/cai/front.svg",
  42550. extra: 1823/1702,
  42551. bottom: 32/1855
  42552. }
  42553. },
  42554. back: {
  42555. height: math.unit(5 + 11/12, "feet"),
  42556. weight: math.unit(155, "lb"),
  42557. name: "Back",
  42558. image: {
  42559. source: "./media/characters/cai/back.svg",
  42560. extra: 1809/1708,
  42561. bottom: 31/1840
  42562. }
  42563. },
  42564. },
  42565. [
  42566. {
  42567. name: "Normal",
  42568. height: math.unit(5 + 11/12, "feet"),
  42569. default: true
  42570. },
  42571. {
  42572. name: "Big",
  42573. height: math.unit(15, "feet")
  42574. },
  42575. {
  42576. name: "Macro",
  42577. height: math.unit(200, "feet")
  42578. },
  42579. ]
  42580. ))
  42581. characterMakers.push(() => makeCharacter(
  42582. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42583. {
  42584. front: {
  42585. height: math.unit(5 + 6/12, "feet"),
  42586. weight: math.unit(160, "lb"),
  42587. name: "Front",
  42588. image: {
  42589. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42590. extra: 1227/1174,
  42591. bottom: 37/1264
  42592. }
  42593. },
  42594. },
  42595. [
  42596. {
  42597. name: "Macro",
  42598. height: math.unit(444, "meters"),
  42599. default: true
  42600. },
  42601. ]
  42602. ))
  42603. characterMakers.push(() => makeCharacter(
  42604. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42605. {
  42606. front: {
  42607. height: math.unit(18 + 7/12, "feet"),
  42608. name: "Front",
  42609. image: {
  42610. source: "./media/characters/rex/front.svg",
  42611. extra: 1941/1807,
  42612. bottom: 66/2007
  42613. }
  42614. },
  42615. back: {
  42616. height: math.unit(18 + 7/12, "feet"),
  42617. name: "Back",
  42618. image: {
  42619. source: "./media/characters/rex/back.svg",
  42620. extra: 1937/1822,
  42621. bottom: 42/1979
  42622. }
  42623. },
  42624. boot: {
  42625. height: math.unit(3.45, "feet"),
  42626. name: "Boot",
  42627. image: {
  42628. source: "./media/characters/rex/boot.svg"
  42629. }
  42630. },
  42631. paw: {
  42632. height: math.unit(4.17, "feet"),
  42633. name: "Paw",
  42634. image: {
  42635. source: "./media/characters/rex/paw.svg"
  42636. }
  42637. },
  42638. head: {
  42639. height: math.unit(6.728, "feet"),
  42640. name: "Head",
  42641. image: {
  42642. source: "./media/characters/rex/head.svg"
  42643. }
  42644. },
  42645. },
  42646. [
  42647. {
  42648. name: "Nano",
  42649. height: math.unit(18 + 7/12, "feet")
  42650. },
  42651. {
  42652. name: "Micro",
  42653. height: math.unit(1.5, "megameters")
  42654. },
  42655. {
  42656. name: "Normal",
  42657. height: math.unit(440, "megameters"),
  42658. default: true
  42659. },
  42660. {
  42661. name: "Macro",
  42662. height: math.unit(2.5, "gigameters")
  42663. },
  42664. {
  42665. name: "Gigamacro",
  42666. height: math.unit(2, "galaxies")
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42672. {
  42673. side: {
  42674. height: math.unit(32, "feet"),
  42675. weight: math.unit(250000, "lb"),
  42676. name: "Side",
  42677. image: {
  42678. source: "./media/characters/silverwing/side.svg",
  42679. extra: 1100/1019,
  42680. bottom: 204/1304
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Normal",
  42687. height: math.unit(32, "feet"),
  42688. default: true
  42689. },
  42690. ]
  42691. ))
  42692. characterMakers.push(() => makeCharacter(
  42693. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42694. {
  42695. front: {
  42696. height: math.unit(6 + 6/12, "feet"),
  42697. weight: math.unit(350, "lb"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/tristan-hawthorne/front.svg",
  42701. extra: 1159/1124,
  42702. bottom: 37/1196
  42703. },
  42704. form: "labrador",
  42705. default: true
  42706. },
  42707. skunkFront: {
  42708. height: math.unit(4 + 6/12, "feet"),
  42709. weight: math.unit(120, "lb"),
  42710. name: "Front",
  42711. image: {
  42712. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42713. extra: 1609/1551,
  42714. bottom: 169/1778
  42715. },
  42716. form: "skunk",
  42717. default: true
  42718. },
  42719. },
  42720. [
  42721. {
  42722. name: "Normal",
  42723. height: math.unit(6 + 6/12, "feet"),
  42724. form: "labrador",
  42725. default: true
  42726. },
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(4 + 6/12, "feet"),
  42730. form: "skunk",
  42731. default: true
  42732. },
  42733. ],
  42734. {
  42735. "labrador": {
  42736. name: "Labrador",
  42737. default: true
  42738. },
  42739. "skunk": {
  42740. name: "Skunk"
  42741. }
  42742. }
  42743. ))
  42744. characterMakers.push(() => makeCharacter(
  42745. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42746. {
  42747. front: {
  42748. height: math.unit(5 + 11/12, "feet"),
  42749. weight: math.unit(190, "lb"),
  42750. name: "Front",
  42751. image: {
  42752. source: "./media/characters/mizu/front.svg",
  42753. extra: 1988/1788,
  42754. bottom: 14/2002
  42755. }
  42756. },
  42757. },
  42758. [
  42759. {
  42760. name: "Normal",
  42761. height: math.unit(5 + 11/12, "feet"),
  42762. default: true
  42763. },
  42764. ]
  42765. ))
  42766. characterMakers.push(() => makeCharacter(
  42767. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42768. {
  42769. front: {
  42770. height: math.unit(1.7, "feet"),
  42771. weight: math.unit(50, "lb"),
  42772. name: "Front",
  42773. image: {
  42774. source: "./media/characters/dechroma/front.svg",
  42775. extra: 1095/859,
  42776. bottom: 64/1159
  42777. }
  42778. },
  42779. },
  42780. [
  42781. {
  42782. name: "Normal",
  42783. height: math.unit(1.7, "feet"),
  42784. default: true
  42785. },
  42786. ]
  42787. ))
  42788. characterMakers.push(() => makeCharacter(
  42789. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42790. {
  42791. side: {
  42792. height: math.unit(30, "feet"),
  42793. name: "Side",
  42794. image: {
  42795. source: "./media/characters/veluren-thanazel/side.svg",
  42796. extra: 1611/633,
  42797. bottom: 118/1729
  42798. }
  42799. },
  42800. front: {
  42801. height: math.unit(30, "feet"),
  42802. name: "Front",
  42803. image: {
  42804. source: "./media/characters/veluren-thanazel/front.svg",
  42805. extra: 1486/636,
  42806. bottom: 238/1724
  42807. }
  42808. },
  42809. head: {
  42810. height: math.unit(21.4, "feet"),
  42811. name: "Head",
  42812. image: {
  42813. source: "./media/characters/veluren-thanazel/head.svg"
  42814. }
  42815. },
  42816. genitals: {
  42817. height: math.unit(19.4, "feet"),
  42818. name: "Genitals",
  42819. image: {
  42820. source: "./media/characters/veluren-thanazel/genitals.svg"
  42821. }
  42822. },
  42823. },
  42824. [
  42825. {
  42826. name: "Social",
  42827. height: math.unit(6, "feet")
  42828. },
  42829. {
  42830. name: "Play",
  42831. height: math.unit(12, "feet")
  42832. },
  42833. {
  42834. name: "True",
  42835. height: math.unit(30, "feet"),
  42836. default: true
  42837. },
  42838. ]
  42839. ))
  42840. characterMakers.push(() => makeCharacter(
  42841. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42842. {
  42843. front: {
  42844. height: math.unit(7 + 6/12, "feet"),
  42845. weight: math.unit(500, "kg"),
  42846. name: "Front",
  42847. image: {
  42848. source: "./media/characters/arcturas/front.svg",
  42849. extra: 1700/1500,
  42850. bottom: 145/1845
  42851. }
  42852. },
  42853. },
  42854. [
  42855. {
  42856. name: "Normal",
  42857. height: math.unit(7 + 6/12, "feet"),
  42858. default: true
  42859. },
  42860. ]
  42861. ))
  42862. characterMakers.push(() => makeCharacter(
  42863. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42864. {
  42865. side: {
  42866. height: math.unit(6, "feet"),
  42867. weight: math.unit(2, "tons"),
  42868. name: "Side",
  42869. image: {
  42870. source: "./media/characters/vitaen/side.svg",
  42871. extra: 1157/617,
  42872. bottom: 122/1279
  42873. }
  42874. },
  42875. },
  42876. [
  42877. {
  42878. name: "Normal",
  42879. height: math.unit(6, "feet"),
  42880. default: true
  42881. },
  42882. ]
  42883. ))
  42884. characterMakers.push(() => makeCharacter(
  42885. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42886. {
  42887. front: {
  42888. height: math.unit(19, "feet"),
  42889. name: "Front",
  42890. image: {
  42891. source: "./media/characters/fia-dreamweaver/front.svg",
  42892. extra: 1630/1504,
  42893. bottom: 25/1655
  42894. }
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Normal",
  42900. height: math.unit(19, "feet"),
  42901. default: true
  42902. },
  42903. ]
  42904. ))
  42905. characterMakers.push(() => makeCharacter(
  42906. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42907. {
  42908. front: {
  42909. height: math.unit(5 + 4/12, "feet"),
  42910. name: "Front",
  42911. image: {
  42912. source: "./media/characters/artan/front.svg",
  42913. extra: 1618/1535,
  42914. bottom: 46/1664
  42915. }
  42916. },
  42917. back: {
  42918. height: math.unit(5 + 4/12, "feet"),
  42919. name: "Back",
  42920. image: {
  42921. source: "./media/characters/artan/back.svg",
  42922. extra: 1618/1543,
  42923. bottom: 31/1649
  42924. }
  42925. },
  42926. },
  42927. [
  42928. {
  42929. name: "Normal",
  42930. height: math.unit(5 + 4/12, "feet"),
  42931. default: true
  42932. },
  42933. ]
  42934. ))
  42935. characterMakers.push(() => makeCharacter(
  42936. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42937. {
  42938. side: {
  42939. height: math.unit(182, "cm"),
  42940. weight: math.unit(1000, "lb"),
  42941. name: "Side",
  42942. image: {
  42943. source: "./media/characters/silver-dragon/side.svg",
  42944. extra: 710/287,
  42945. bottom: 88/798
  42946. }
  42947. },
  42948. },
  42949. [
  42950. {
  42951. name: "Normal",
  42952. height: math.unit(182, "cm"),
  42953. default: true
  42954. },
  42955. ]
  42956. ))
  42957. characterMakers.push(() => makeCharacter(
  42958. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42959. {
  42960. side: {
  42961. height: math.unit(6 + 6/12, "feet"),
  42962. weight: math.unit(1.5, "tons"),
  42963. name: "Side",
  42964. image: {
  42965. source: "./media/characters/zephyr/side.svg",
  42966. extra: 1433/586,
  42967. bottom: 109/1542
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Normal",
  42974. height: math.unit(6 + 6/12, "feet"),
  42975. default: true
  42976. },
  42977. ]
  42978. ))
  42979. characterMakers.push(() => makeCharacter(
  42980. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42981. {
  42982. side: {
  42983. height: math.unit(1, "feet"),
  42984. name: "Side",
  42985. image: {
  42986. source: "./media/characters/vixye/side.svg",
  42987. extra: 632/541,
  42988. bottom: 0/632
  42989. }
  42990. },
  42991. },
  42992. [
  42993. {
  42994. name: "Normal",
  42995. height: math.unit(1, "feet"),
  42996. default: true
  42997. },
  42998. {
  42999. name: "True",
  43000. height: math.unit(1e15, "multiverses")
  43001. },
  43002. ]
  43003. ))
  43004. characterMakers.push(() => makeCharacter(
  43005. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43006. {
  43007. front: {
  43008. height: math.unit(8 + 2/12, "feet"),
  43009. weight: math.unit(650, "lb"),
  43010. name: "Front",
  43011. image: {
  43012. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43013. extra: 1174/1137,
  43014. bottom: 82/1256
  43015. }
  43016. },
  43017. back: {
  43018. height: math.unit(8 + 2/12, "feet"),
  43019. weight: math.unit(650, "lb"),
  43020. name: "Back",
  43021. image: {
  43022. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43023. extra: 1204/1157,
  43024. bottom: 46/1250
  43025. }
  43026. },
  43027. },
  43028. [
  43029. {
  43030. name: "Wildform",
  43031. height: math.unit(8 + 2/12, "feet"),
  43032. default: true
  43033. },
  43034. ]
  43035. ))
  43036. characterMakers.push(() => makeCharacter(
  43037. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43038. {
  43039. front: {
  43040. height: math.unit(18, "feet"),
  43041. name: "Front",
  43042. image: {
  43043. source: "./media/characters/cyphin/front.svg",
  43044. extra: 970/886,
  43045. bottom: 42/1012
  43046. }
  43047. },
  43048. back: {
  43049. height: math.unit(18, "feet"),
  43050. name: "Back",
  43051. image: {
  43052. source: "./media/characters/cyphin/back.svg",
  43053. extra: 1009/894,
  43054. bottom: 24/1033
  43055. }
  43056. },
  43057. head: {
  43058. height: math.unit(5.05, "feet"),
  43059. name: "Head",
  43060. image: {
  43061. source: "./media/characters/cyphin/head.svg"
  43062. }
  43063. },
  43064. tailbud: {
  43065. height: math.unit(5, "feet"),
  43066. name: "Tailbud",
  43067. image: {
  43068. source: "./media/characters/cyphin/tailbud.svg"
  43069. }
  43070. },
  43071. },
  43072. [
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43077. {
  43078. side: {
  43079. height: math.unit(10, "feet"),
  43080. weight: math.unit(6, "tons"),
  43081. name: "Side",
  43082. image: {
  43083. source: "./media/characters/raijin/side.svg",
  43084. extra: 1529/613,
  43085. bottom: 337/1866
  43086. }
  43087. },
  43088. },
  43089. [
  43090. {
  43091. name: "Normal",
  43092. height: math.unit(10, "feet"),
  43093. default: true
  43094. },
  43095. ]
  43096. ))
  43097. characterMakers.push(() => makeCharacter(
  43098. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43099. {
  43100. side: {
  43101. height: math.unit(9, "feet"),
  43102. name: "Side",
  43103. image: {
  43104. source: "./media/characters/nilghais/side.svg",
  43105. extra: 1047/744,
  43106. bottom: 91/1138
  43107. }
  43108. },
  43109. head: {
  43110. height: math.unit(3.14, "feet"),
  43111. name: "Head",
  43112. image: {
  43113. source: "./media/characters/nilghais/head.svg"
  43114. }
  43115. },
  43116. mouth: {
  43117. height: math.unit(4.6, "feet"),
  43118. name: "Mouth",
  43119. image: {
  43120. source: "./media/characters/nilghais/mouth.svg"
  43121. }
  43122. },
  43123. wings: {
  43124. height: math.unit(24, "feet"),
  43125. name: "Wings",
  43126. image: {
  43127. source: "./media/characters/nilghais/wings.svg"
  43128. }
  43129. },
  43130. ass: {
  43131. height: math.unit(6.12, "feet"),
  43132. name: "Ass",
  43133. image: {
  43134. source: "./media/characters/nilghais/ass.svg"
  43135. }
  43136. },
  43137. },
  43138. [
  43139. {
  43140. name: "Normal",
  43141. height: math.unit(9, "feet"),
  43142. default: true
  43143. },
  43144. ]
  43145. ))
  43146. characterMakers.push(() => makeCharacter(
  43147. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43148. {
  43149. regular: {
  43150. height: math.unit(16 + 2/12, "feet"),
  43151. weight: math.unit(2300, "lb"),
  43152. name: "Regular",
  43153. image: {
  43154. source: "./media/characters/zolgar/regular.svg",
  43155. extra: 1246/1004,
  43156. bottom: 124/1370
  43157. }
  43158. },
  43159. boxers: {
  43160. height: math.unit(16 + 2/12, "feet"),
  43161. weight: math.unit(2300, "lb"),
  43162. name: "Boxers",
  43163. image: {
  43164. source: "./media/characters/zolgar/boxers.svg",
  43165. extra: 1246/1004,
  43166. bottom: 124/1370
  43167. }
  43168. },
  43169. armored: {
  43170. height: math.unit(16 + 2/12, "feet"),
  43171. weight: math.unit(2300, "lb"),
  43172. name: "Armored",
  43173. image: {
  43174. source: "./media/characters/zolgar/armored.svg",
  43175. extra: 1246/1004,
  43176. bottom: 124/1370
  43177. }
  43178. },
  43179. goth: {
  43180. height: math.unit(16 + 2/12, "feet"),
  43181. weight: math.unit(2300, "lb"),
  43182. name: "Goth",
  43183. image: {
  43184. source: "./media/characters/zolgar/goth.svg",
  43185. extra: 1246/1004,
  43186. bottom: 124/1370
  43187. }
  43188. },
  43189. },
  43190. [
  43191. {
  43192. name: "Shrunken Down",
  43193. height: math.unit(9 + 2/12, "feet")
  43194. },
  43195. {
  43196. name: "Normal",
  43197. height: math.unit(16 + 2/12, "feet"),
  43198. default: true
  43199. },
  43200. ]
  43201. ))
  43202. characterMakers.push(() => makeCharacter(
  43203. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43204. {
  43205. front: {
  43206. height: math.unit(6, "feet"),
  43207. weight: math.unit(168, "lb"),
  43208. name: "Front",
  43209. image: {
  43210. source: "./media/characters/luca/front.svg",
  43211. extra: 841/667,
  43212. bottom: 102/943
  43213. }
  43214. },
  43215. },
  43216. [
  43217. {
  43218. name: "Normal",
  43219. height: math.unit(6, "feet"),
  43220. default: true
  43221. },
  43222. ]
  43223. ))
  43224. characterMakers.push(() => makeCharacter(
  43225. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43226. {
  43227. side: {
  43228. height: math.unit(7 + 3/12, "feet"),
  43229. weight: math.unit(312, "lb"),
  43230. name: "Side",
  43231. image: {
  43232. source: "./media/characters/zezo/side.svg",
  43233. extra: 1192/1067,
  43234. bottom: 63/1255
  43235. }
  43236. },
  43237. },
  43238. [
  43239. {
  43240. name: "Normal",
  43241. height: math.unit(7 + 3/12, "feet"),
  43242. default: true
  43243. },
  43244. ]
  43245. ))
  43246. characterMakers.push(() => makeCharacter(
  43247. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43248. {
  43249. front: {
  43250. height: math.unit(5 + 5/12, "feet"),
  43251. weight: math.unit(170, "lb"),
  43252. name: "Front",
  43253. image: {
  43254. source: "./media/characters/mayso/front.svg",
  43255. extra: 1215/1108,
  43256. bottom: 16/1231
  43257. }
  43258. },
  43259. },
  43260. [
  43261. {
  43262. name: "Normal",
  43263. height: math.unit(5 + 5/12, "feet"),
  43264. default: true
  43265. },
  43266. ]
  43267. ))
  43268. characterMakers.push(() => makeCharacter(
  43269. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43270. {
  43271. front: {
  43272. height: math.unit(4 + 3/12, "feet"),
  43273. weight: math.unit(80, "lb"),
  43274. name: "Front",
  43275. image: {
  43276. source: "./media/characters/hess/front.svg",
  43277. extra: 1200/1123,
  43278. bottom: 16/1216
  43279. }
  43280. },
  43281. },
  43282. [
  43283. {
  43284. name: "Normal",
  43285. height: math.unit(4 + 3/12, "feet"),
  43286. default: true
  43287. },
  43288. ]
  43289. ))
  43290. characterMakers.push(() => makeCharacter(
  43291. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43292. {
  43293. front: {
  43294. height: math.unit(1.9, "meters"),
  43295. name: "Front",
  43296. image: {
  43297. source: "./media/characters/ashgar/front.svg",
  43298. extra: 1177/1146,
  43299. bottom: 99/1276
  43300. }
  43301. },
  43302. back: {
  43303. height: math.unit(1.9, "meters"),
  43304. name: "Back",
  43305. image: {
  43306. source: "./media/characters/ashgar/back.svg",
  43307. extra: 1201/1183,
  43308. bottom: 53/1254
  43309. }
  43310. },
  43311. feral: {
  43312. height: math.unit(1.4, "meters"),
  43313. name: "Feral",
  43314. image: {
  43315. source: "./media/characters/ashgar/feral.svg",
  43316. extra: 370/345,
  43317. bottom: 45/415
  43318. }
  43319. },
  43320. },
  43321. [
  43322. {
  43323. name: "Normal",
  43324. height: math.unit(1.9, "meters"),
  43325. default: true
  43326. },
  43327. ]
  43328. ))
  43329. characterMakers.push(() => makeCharacter(
  43330. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43331. {
  43332. regular: {
  43333. height: math.unit(6, "feet"),
  43334. weight: math.unit(220, "lb"),
  43335. name: "Regular",
  43336. image: {
  43337. source: "./media/characters/phillip/regular.svg",
  43338. extra: 1373/1277,
  43339. bottom: 75/1448
  43340. }
  43341. },
  43342. dressed: {
  43343. height: math.unit(6, "feet"),
  43344. weight: math.unit(220, "lb"),
  43345. name: "Dressed",
  43346. image: {
  43347. source: "./media/characters/phillip/dressed.svg",
  43348. extra: 1373/1277,
  43349. bottom: 75/1448
  43350. }
  43351. },
  43352. paw: {
  43353. height: math.unit(1.44, "feet"),
  43354. name: "Paw",
  43355. image: {
  43356. source: "./media/characters/phillip/paw.svg"
  43357. }
  43358. },
  43359. },
  43360. [
  43361. {
  43362. name: "Normal",
  43363. height: math.unit(6, "feet"),
  43364. default: true
  43365. },
  43366. ]
  43367. ))
  43368. characterMakers.push(() => makeCharacter(
  43369. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43370. {
  43371. side: {
  43372. height: math.unit(42, "feet"),
  43373. name: "Side",
  43374. image: {
  43375. source: "./media/characters/uvula/side.svg",
  43376. extra: 683/586,
  43377. bottom: 60/743
  43378. }
  43379. },
  43380. front: {
  43381. height: math.unit(42, "feet"),
  43382. name: "Front",
  43383. image: {
  43384. source: "./media/characters/uvula/front.svg",
  43385. extra: 705/613,
  43386. bottom: 54/759
  43387. }
  43388. },
  43389. maw: {
  43390. height: math.unit(23.5, "feet"),
  43391. name: "Maw",
  43392. image: {
  43393. source: "./media/characters/uvula/maw.svg"
  43394. }
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Original Size",
  43400. height: math.unit(14, "inches")
  43401. },
  43402. {
  43403. name: "Human Size",
  43404. height: math.unit(6, "feet")
  43405. },
  43406. {
  43407. name: "Big",
  43408. height: math.unit(42, "feet"),
  43409. default: true
  43410. },
  43411. {
  43412. name: "Bigger",
  43413. height: math.unit(100, "feet")
  43414. },
  43415. ]
  43416. ))
  43417. characterMakers.push(() => makeCharacter(
  43418. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43419. {
  43420. front: {
  43421. height: math.unit(5 + 11/12, "feet"),
  43422. name: "Front",
  43423. image: {
  43424. source: "./media/characters/lannah/front.svg",
  43425. extra: 1208/1113,
  43426. bottom: 97/1305
  43427. }
  43428. },
  43429. },
  43430. [
  43431. {
  43432. name: "Normal",
  43433. height: math.unit(5 + 11/12, "feet"),
  43434. default: true
  43435. },
  43436. ]
  43437. ))
  43438. characterMakers.push(() => makeCharacter(
  43439. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43440. {
  43441. front: {
  43442. height: math.unit(6 + 3/12, "feet"),
  43443. weight: math.unit(3.5, "tons"),
  43444. name: "Front",
  43445. image: {
  43446. source: "./media/characters/emberflame/front.svg",
  43447. extra: 1198/672,
  43448. bottom: 82/1280
  43449. }
  43450. },
  43451. side: {
  43452. height: math.unit(6 + 3/12, "feet"),
  43453. weight: math.unit(3.5, "tons"),
  43454. name: "Side",
  43455. image: {
  43456. source: "./media/characters/emberflame/side.svg",
  43457. extra: 938/527,
  43458. bottom: 56/994
  43459. }
  43460. },
  43461. },
  43462. [
  43463. {
  43464. name: "Normal",
  43465. height: math.unit(6 + 3/12, "feet"),
  43466. default: true
  43467. },
  43468. ]
  43469. ))
  43470. characterMakers.push(() => makeCharacter(
  43471. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43472. {
  43473. side: {
  43474. height: math.unit(17.5, "feet"),
  43475. weight: math.unit(35, "tons"),
  43476. name: "Side",
  43477. image: {
  43478. source: "./media/characters/sophie-ambrose/side.svg",
  43479. extra: 1573/1242,
  43480. bottom: 71/1644
  43481. }
  43482. },
  43483. maw: {
  43484. height: math.unit(7.4, "feet"),
  43485. name: "Maw",
  43486. image: {
  43487. source: "./media/characters/sophie-ambrose/maw.svg"
  43488. }
  43489. },
  43490. },
  43491. [
  43492. {
  43493. name: "Normal",
  43494. height: math.unit(17.5, "feet"),
  43495. default: true
  43496. },
  43497. ]
  43498. ))
  43499. characterMakers.push(() => makeCharacter(
  43500. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43501. {
  43502. front: {
  43503. height: math.unit(280, "feet"),
  43504. weight: math.unit(550, "tons"),
  43505. name: "Front",
  43506. image: {
  43507. source: "./media/characters/king-mugi/front.svg",
  43508. extra: 1102/947,
  43509. bottom: 104/1206
  43510. }
  43511. },
  43512. },
  43513. [
  43514. {
  43515. name: "King Mugi",
  43516. height: math.unit(280, "feet"),
  43517. default: true
  43518. },
  43519. ]
  43520. ))
  43521. characterMakers.push(() => makeCharacter(
  43522. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43523. {
  43524. front: {
  43525. height: math.unit(64, "meters"),
  43526. name: "Front",
  43527. image: {
  43528. source: "./media/characters/nova-fox/front.svg",
  43529. extra: 1310/1246,
  43530. bottom: 65/1375
  43531. }
  43532. },
  43533. },
  43534. [
  43535. {
  43536. name: "Macro",
  43537. height: math.unit(64, "meters"),
  43538. default: true
  43539. },
  43540. ]
  43541. ))
  43542. characterMakers.push(() => makeCharacter(
  43543. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43544. {
  43545. front: {
  43546. height: math.unit(6 + 3/12, "feet"),
  43547. weight: math.unit(170, "lb"),
  43548. name: "Front",
  43549. image: {
  43550. source: "./media/characters/sam-bat/front.svg",
  43551. extra: 1601/1411,
  43552. bottom: 125/1726
  43553. }
  43554. },
  43555. back: {
  43556. height: math.unit(6 + 3/12, "feet"),
  43557. weight: math.unit(170, "lb"),
  43558. name: "Back",
  43559. image: {
  43560. source: "./media/characters/sam-bat/back.svg",
  43561. extra: 1577/1405,
  43562. bottom: 58/1635
  43563. }
  43564. },
  43565. },
  43566. [
  43567. {
  43568. name: "Normal",
  43569. height: math.unit(6 + 3/12, "feet"),
  43570. default: true
  43571. },
  43572. ]
  43573. ))
  43574. characterMakers.push(() => makeCharacter(
  43575. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43576. {
  43577. front: {
  43578. height: math.unit(59, "feet"),
  43579. weight: math.unit(40000, "lb"),
  43580. name: "Front",
  43581. image: {
  43582. source: "./media/characters/inari/front.svg",
  43583. extra: 1884/1350,
  43584. bottom: 95/1979
  43585. }
  43586. },
  43587. },
  43588. [
  43589. {
  43590. name: "Gigantamax",
  43591. height: math.unit(59, "feet"),
  43592. default: true
  43593. },
  43594. ]
  43595. ))
  43596. characterMakers.push(() => makeCharacter(
  43597. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43598. {
  43599. front: {
  43600. height: math.unit(5 + 8/12, "feet"),
  43601. name: "Front",
  43602. image: {
  43603. source: "./media/characters/elizabeth/front.svg",
  43604. extra: 1395/1298,
  43605. bottom: 54/1449
  43606. }
  43607. },
  43608. mouth: {
  43609. height: math.unit(1.97, "feet"),
  43610. name: "Mouth",
  43611. image: {
  43612. source: "./media/characters/elizabeth/mouth.svg"
  43613. }
  43614. },
  43615. foot: {
  43616. height: math.unit(1.17, "feet"),
  43617. name: "Foot",
  43618. image: {
  43619. source: "./media/characters/elizabeth/foot.svg"
  43620. }
  43621. },
  43622. },
  43623. [
  43624. {
  43625. name: "Normal",
  43626. height: math.unit(5 + 8/12, "feet"),
  43627. default: true
  43628. },
  43629. {
  43630. name: "Minimacro",
  43631. height: math.unit(18, "feet")
  43632. },
  43633. {
  43634. name: "Macro",
  43635. height: math.unit(180, "feet")
  43636. },
  43637. ]
  43638. ))
  43639. characterMakers.push(() => makeCharacter(
  43640. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43641. {
  43642. front: {
  43643. height: math.unit(5 + 2/12, "feet"),
  43644. name: "Front",
  43645. image: {
  43646. source: "./media/characters/october-gossamer/front.svg",
  43647. extra: 505/454,
  43648. bottom: 7/512
  43649. }
  43650. },
  43651. back: {
  43652. height: math.unit(5 + 2/12, "feet"),
  43653. name: "Back",
  43654. image: {
  43655. source: "./media/characters/october-gossamer/back.svg",
  43656. extra: 501/454,
  43657. bottom: 11/512
  43658. }
  43659. },
  43660. },
  43661. [
  43662. {
  43663. name: "Normal",
  43664. height: math.unit(5 + 2/12, "feet"),
  43665. default: true
  43666. },
  43667. ]
  43668. ))
  43669. characterMakers.push(() => makeCharacter(
  43670. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43671. {
  43672. front: {
  43673. height: math.unit(5, "feet"),
  43674. name: "Front",
  43675. image: {
  43676. source: "./media/characters/epiglottis/front.svg",
  43677. extra: 923/849,
  43678. bottom: 17/940
  43679. }
  43680. },
  43681. },
  43682. [
  43683. {
  43684. name: "Original Size",
  43685. height: math.unit(10, "inches")
  43686. },
  43687. {
  43688. name: "Human Size",
  43689. height: math.unit(5, "feet"),
  43690. default: true
  43691. },
  43692. {
  43693. name: "Big",
  43694. height: math.unit(25, "feet")
  43695. },
  43696. {
  43697. name: "Bigger",
  43698. height: math.unit(50, "feet")
  43699. },
  43700. {
  43701. name: "oh lawd",
  43702. height: math.unit(75, "feet")
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43708. {
  43709. front: {
  43710. height: math.unit(2 + 4/12, "feet"),
  43711. weight: math.unit(60, "lb"),
  43712. name: "Front",
  43713. image: {
  43714. source: "./media/characters/lerm/front.svg",
  43715. extra: 796/790,
  43716. bottom: 79/875
  43717. }
  43718. },
  43719. },
  43720. [
  43721. {
  43722. name: "Normal",
  43723. height: math.unit(2 + 4/12, "feet"),
  43724. default: true
  43725. },
  43726. ]
  43727. ))
  43728. characterMakers.push(() => makeCharacter(
  43729. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43730. {
  43731. front: {
  43732. height: math.unit(5.5, "feet"),
  43733. weight: math.unit(130, "lb"),
  43734. name: "Front",
  43735. image: {
  43736. source: "./media/characters/xena-nebadon/front.svg",
  43737. extra: 1828/1730,
  43738. bottom: 79/1907
  43739. }
  43740. },
  43741. },
  43742. [
  43743. {
  43744. name: "Tiny Puppy",
  43745. height: math.unit(3, "inches")
  43746. },
  43747. {
  43748. name: "Normal",
  43749. height: math.unit(5.5, "feet"),
  43750. default: true
  43751. },
  43752. {
  43753. name: "Lotta Lady",
  43754. height: math.unit(12, "feet")
  43755. },
  43756. {
  43757. name: "Pretty Big",
  43758. height: math.unit(100, "feet")
  43759. },
  43760. {
  43761. name: "Big",
  43762. height: math.unit(500, "feet")
  43763. },
  43764. {
  43765. name: "Skyscraper Toys",
  43766. height: math.unit(2500, "feet")
  43767. },
  43768. {
  43769. name: "Plane Catcher",
  43770. height: math.unit(8, "miles")
  43771. },
  43772. {
  43773. name: "Planet Toys",
  43774. height: math.unit(15, "earths")
  43775. },
  43776. {
  43777. name: "Stardust",
  43778. height: math.unit(0.25, "galaxies")
  43779. },
  43780. {
  43781. name: "Snacks",
  43782. height: math.unit(70, "universes")
  43783. },
  43784. ]
  43785. ))
  43786. characterMakers.push(() => makeCharacter(
  43787. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43788. {
  43789. front: {
  43790. height: math.unit(1.6, "meters"),
  43791. weight: math.unit(60, "kg"),
  43792. name: "Front",
  43793. image: {
  43794. source: "./media/characters/bounty/front.svg",
  43795. extra: 1426/1308,
  43796. bottom: 15/1441
  43797. }
  43798. },
  43799. back: {
  43800. height: math.unit(1.6, "meters"),
  43801. weight: math.unit(60, "kg"),
  43802. name: "Back",
  43803. image: {
  43804. source: "./media/characters/bounty/back.svg",
  43805. extra: 1417/1307,
  43806. bottom: 8/1425
  43807. }
  43808. },
  43809. },
  43810. [
  43811. {
  43812. name: "Normal",
  43813. height: math.unit(1.6, "meters"),
  43814. default: true
  43815. },
  43816. {
  43817. name: "Macro",
  43818. height: math.unit(300, "meters")
  43819. },
  43820. ]
  43821. ))
  43822. characterMakers.push(() => makeCharacter(
  43823. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43824. {
  43825. front: {
  43826. height: math.unit(2 + 8/12, "feet"),
  43827. weight: math.unit(15, "lb"),
  43828. name: "Front",
  43829. image: {
  43830. source: "./media/characters/mochi/front.svg",
  43831. extra: 1022/852,
  43832. bottom: 435/1457
  43833. }
  43834. },
  43835. back: {
  43836. height: math.unit(2 + 8/12, "feet"),
  43837. weight: math.unit(15, "lb"),
  43838. name: "Back",
  43839. image: {
  43840. source: "./media/characters/mochi/back.svg",
  43841. extra: 1335/1119,
  43842. bottom: 39/1374
  43843. }
  43844. },
  43845. bird: {
  43846. height: math.unit(2 + 8/12, "feet"),
  43847. weight: math.unit(15, "lb"),
  43848. name: "Bird",
  43849. image: {
  43850. source: "./media/characters/mochi/bird.svg",
  43851. extra: 1251/1113,
  43852. bottom: 178/1429
  43853. }
  43854. },
  43855. kaiju: {
  43856. height: math.unit(154, "feet"),
  43857. weight: math.unit(1e7, "lb"),
  43858. name: "Kaiju",
  43859. image: {
  43860. source: "./media/characters/mochi/kaiju.svg",
  43861. extra: 460/324,
  43862. bottom: 40/500
  43863. }
  43864. },
  43865. head: {
  43866. height: math.unit(1.21, "feet"),
  43867. name: "Head",
  43868. image: {
  43869. source: "./media/characters/mochi/head.svg"
  43870. }
  43871. },
  43872. alternateTail: {
  43873. height: math.unit(2 + 8/12, "feet"),
  43874. weight: math.unit(45, "lb"),
  43875. name: "Alternate Tail",
  43876. image: {
  43877. source: "./media/characters/mochi/alternate-tail.svg",
  43878. extra: 139/76,
  43879. bottom: 45/184
  43880. }
  43881. },
  43882. },
  43883. [
  43884. {
  43885. name: "Micro",
  43886. height: math.unit(2, "inches")
  43887. },
  43888. {
  43889. name: "Normal",
  43890. height: math.unit(2 + 8/12, "feet"),
  43891. default: true
  43892. },
  43893. {
  43894. name: "Macro",
  43895. height: math.unit(106, "feet")
  43896. },
  43897. ]
  43898. ))
  43899. characterMakers.push(() => makeCharacter(
  43900. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43901. {
  43902. front: {
  43903. height: math.unit(5.67, "feet"),
  43904. weight: math.unit(135, "lb"),
  43905. name: "Front",
  43906. image: {
  43907. source: "./media/characters/sarel/front.svg",
  43908. extra: 865/788,
  43909. bottom: 97/962
  43910. }
  43911. },
  43912. back: {
  43913. height: math.unit(5.67, "feet"),
  43914. weight: math.unit(135, "lb"),
  43915. name: "Back",
  43916. image: {
  43917. source: "./media/characters/sarel/back.svg",
  43918. extra: 857/777,
  43919. bottom: 32/889
  43920. }
  43921. },
  43922. chozoan: {
  43923. height: math.unit(5.67, "feet"),
  43924. weight: math.unit(135, "lb"),
  43925. name: "Chozoan",
  43926. image: {
  43927. source: "./media/characters/sarel/chozoan.svg",
  43928. extra: 865/788,
  43929. bottom: 97/962
  43930. }
  43931. },
  43932. current: {
  43933. height: math.unit(5.67, "feet"),
  43934. weight: math.unit(135, "lb"),
  43935. name: "Current",
  43936. image: {
  43937. source: "./media/characters/sarel/current.svg",
  43938. extra: 865/788,
  43939. bottom: 97/962
  43940. }
  43941. },
  43942. head: {
  43943. height: math.unit(1.77, "feet"),
  43944. name: "Head",
  43945. image: {
  43946. source: "./media/characters/sarel/head.svg"
  43947. }
  43948. },
  43949. claws: {
  43950. height: math.unit(1.8, "feet"),
  43951. name: "Claws",
  43952. image: {
  43953. source: "./media/characters/sarel/claws.svg"
  43954. }
  43955. },
  43956. clawsAlt: {
  43957. height: math.unit(1.8, "feet"),
  43958. name: "Claws-alt",
  43959. image: {
  43960. source: "./media/characters/sarel/claws-alt.svg"
  43961. }
  43962. },
  43963. },
  43964. [
  43965. {
  43966. name: "Normal",
  43967. height: math.unit(5.67, "feet"),
  43968. default: true
  43969. },
  43970. ]
  43971. ))
  43972. characterMakers.push(() => makeCharacter(
  43973. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43974. {
  43975. front: {
  43976. height: math.unit(5500, "feet"),
  43977. name: "Front",
  43978. image: {
  43979. source: "./media/characters/alyonia/front.svg",
  43980. extra: 1200/1135,
  43981. bottom: 29/1229
  43982. }
  43983. },
  43984. back: {
  43985. height: math.unit(5500, "feet"),
  43986. name: "Back",
  43987. image: {
  43988. source: "./media/characters/alyonia/back.svg",
  43989. extra: 1205/1138,
  43990. bottom: 10/1215
  43991. }
  43992. },
  43993. },
  43994. [
  43995. {
  43996. name: "Small",
  43997. height: math.unit(10, "feet")
  43998. },
  43999. {
  44000. name: "Macro",
  44001. height: math.unit(500, "feet")
  44002. },
  44003. {
  44004. name: "Mega Macro",
  44005. height: math.unit(5500, "feet"),
  44006. default: true
  44007. },
  44008. {
  44009. name: "Mega Macro+",
  44010. height: math.unit(500000, "feet")
  44011. },
  44012. {
  44013. name: "Giga Macro",
  44014. height: math.unit(3000, "miles")
  44015. },
  44016. {
  44017. name: "Tera Macro",
  44018. height: math.unit(2.8e6, "miles")
  44019. },
  44020. {
  44021. name: "Galactic",
  44022. height: math.unit(120000, "lightyears")
  44023. },
  44024. ]
  44025. ))
  44026. characterMakers.push(() => makeCharacter(
  44027. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44028. {
  44029. werewolf: {
  44030. height: math.unit(8, "feet"),
  44031. weight: math.unit(425, "lb"),
  44032. name: "Werewolf",
  44033. image: {
  44034. source: "./media/characters/autumn/werewolf.svg",
  44035. extra: 2154/2031,
  44036. bottom: 160/2314
  44037. }
  44038. },
  44039. human: {
  44040. height: math.unit(5 + 8/12, "feet"),
  44041. weight: math.unit(150, "lb"),
  44042. name: "Human",
  44043. image: {
  44044. source: "./media/characters/autumn/human.svg",
  44045. extra: 1200/1149,
  44046. bottom: 30/1230
  44047. }
  44048. },
  44049. },
  44050. [
  44051. {
  44052. name: "Normal",
  44053. height: math.unit(8, "feet"),
  44054. default: true
  44055. },
  44056. ]
  44057. ))
  44058. characterMakers.push(() => makeCharacter(
  44059. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44060. {
  44061. front: {
  44062. height: math.unit(8 + 5/12, "feet"),
  44063. weight: math.unit(825, "lb"),
  44064. name: "Front",
  44065. image: {
  44066. source: "./media/characters/cobalt-charizard/front.svg",
  44067. extra: 1268/1155,
  44068. bottom: 122/1390
  44069. }
  44070. },
  44071. side: {
  44072. height: math.unit(8 + 5/12, "feet"),
  44073. weight: math.unit(825, "lb"),
  44074. name: "Side",
  44075. image: {
  44076. source: "./media/characters/cobalt-charizard/side.svg",
  44077. extra: 1348/1257,
  44078. bottom: 58/1406
  44079. }
  44080. },
  44081. gMax: {
  44082. height: math.unit(134 + 11/12, "feet"),
  44083. name: "G-Max",
  44084. image: {
  44085. source: "./media/characters/cobalt-charizard/g-max.svg",
  44086. extra: 1835/1541,
  44087. bottom: 151/1986
  44088. }
  44089. },
  44090. },
  44091. [
  44092. {
  44093. name: "Normal",
  44094. height: math.unit(8 + 5/12, "feet"),
  44095. default: true
  44096. },
  44097. ]
  44098. ))
  44099. characterMakers.push(() => makeCharacter(
  44100. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44101. {
  44102. front: {
  44103. height: math.unit(6 + 3/12, "feet"),
  44104. weight: math.unit(210, "lb"),
  44105. name: "Front",
  44106. image: {
  44107. source: "./media/characters/stella/front.svg",
  44108. extra: 3549/3335,
  44109. bottom: 51/3600
  44110. }
  44111. },
  44112. },
  44113. [
  44114. {
  44115. name: "Normal",
  44116. height: math.unit(6 + 3/12, "feet"),
  44117. default: true
  44118. },
  44119. ]
  44120. ))
  44121. characterMakers.push(() => makeCharacter(
  44122. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44123. {
  44124. front: {
  44125. height: math.unit(5, "feet"),
  44126. weight: math.unit(90, "lb"),
  44127. name: "Front",
  44128. image: {
  44129. source: "./media/characters/riley-bishop/front.svg",
  44130. extra: 1450/1428,
  44131. bottom: 152/1602
  44132. }
  44133. },
  44134. },
  44135. [
  44136. {
  44137. name: "Normal",
  44138. height: math.unit(5, "feet"),
  44139. default: true
  44140. },
  44141. ]
  44142. ))
  44143. characterMakers.push(() => makeCharacter(
  44144. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44145. {
  44146. side: {
  44147. height: math.unit(8 + 2/12, "feet"),
  44148. weight: math.unit(500, "kg"),
  44149. name: "Side",
  44150. image: {
  44151. source: "./media/characters/theo-arcanine/side.svg",
  44152. extra: 1342/1074,
  44153. bottom: 111/1453
  44154. }
  44155. },
  44156. },
  44157. [
  44158. {
  44159. name: "Normal",
  44160. height: math.unit(8 + 2/12, "feet"),
  44161. default: true
  44162. },
  44163. ]
  44164. ))
  44165. characterMakers.push(() => makeCharacter(
  44166. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44167. {
  44168. front: {
  44169. height: math.unit(4, "feet"),
  44170. name: "Front",
  44171. image: {
  44172. source: "./media/characters/kali/front.svg",
  44173. extra: 1921/1357,
  44174. bottom: 70/1991
  44175. }
  44176. },
  44177. },
  44178. [
  44179. {
  44180. name: "Normal",
  44181. height: math.unit(4, "feet"),
  44182. default: true
  44183. },
  44184. {
  44185. name: "Macro",
  44186. height: math.unit(32, "meters")
  44187. },
  44188. {
  44189. name: "Macro+",
  44190. height: math.unit(150, "meters")
  44191. },
  44192. {
  44193. name: "Megamacro",
  44194. height: math.unit(7500, "meters")
  44195. },
  44196. {
  44197. name: "Megamacro+",
  44198. height: math.unit(80, "kilometers")
  44199. },
  44200. ]
  44201. ))
  44202. characterMakers.push(() => makeCharacter(
  44203. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44204. {
  44205. side: {
  44206. height: math.unit(5 + 11/12, "feet"),
  44207. weight: math.unit(236, "lb"),
  44208. name: "Side",
  44209. image: {
  44210. source: "./media/characters/gapp/side.svg",
  44211. extra: 775/340,
  44212. bottom: 58/833
  44213. }
  44214. },
  44215. mouth: {
  44216. height: math.unit(2.98, "feet"),
  44217. name: "Mouth",
  44218. image: {
  44219. source: "./media/characters/gapp/mouth.svg"
  44220. }
  44221. },
  44222. },
  44223. [
  44224. {
  44225. name: "Normal",
  44226. height: math.unit(5 + 1/12, "feet"),
  44227. default: true
  44228. },
  44229. ]
  44230. ))
  44231. characterMakers.push(() => makeCharacter(
  44232. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44233. {
  44234. front: {
  44235. height: math.unit(6, "feet"),
  44236. name: "Front",
  44237. image: {
  44238. source: "./media/characters/persephone/front.svg",
  44239. extra: 1895/1717,
  44240. bottom: 96/1991
  44241. }
  44242. },
  44243. back: {
  44244. height: math.unit(6, "feet"),
  44245. name: "Back",
  44246. image: {
  44247. source: "./media/characters/persephone/back.svg",
  44248. extra: 1868/1679,
  44249. bottom: 26/1894
  44250. }
  44251. },
  44252. casual: {
  44253. height: math.unit(6, "feet"),
  44254. name: "Casual",
  44255. image: {
  44256. source: "./media/characters/persephone/casual.svg",
  44257. extra: 1713/1541,
  44258. bottom: 76/1789
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Human Size",
  44265. height: math.unit(6, "feet")
  44266. },
  44267. {
  44268. name: "Big Steppy",
  44269. height: math.unit(600, "meters"),
  44270. default: true
  44271. },
  44272. {
  44273. name: "Galaxy Brain",
  44274. height: math.unit(1, "zettameter")
  44275. },
  44276. ]
  44277. ))
  44278. characterMakers.push(() => makeCharacter(
  44279. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44280. {
  44281. front: {
  44282. height: math.unit(1.85, "meters"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/riley-foxthing/front.svg",
  44286. extra: 1495/1354,
  44287. bottom: 122/1617
  44288. }
  44289. },
  44290. frontAlt: {
  44291. height: math.unit(1.85, "meters"),
  44292. name: "Front (Alt)",
  44293. image: {
  44294. source: "./media/characters/riley-foxthing/front-alt.svg",
  44295. extra: 1572/1389,
  44296. bottom: 116/1688
  44297. }
  44298. },
  44299. },
  44300. [
  44301. {
  44302. name: "Normal Sized",
  44303. height: math.unit(1.85, "meters"),
  44304. default: true
  44305. },
  44306. {
  44307. name: "Quite Sizable",
  44308. height: math.unit(5, "meters")
  44309. },
  44310. {
  44311. name: "Rather Large",
  44312. height: math.unit(20, "meters")
  44313. },
  44314. {
  44315. name: "Macro",
  44316. height: math.unit(450, "meters")
  44317. },
  44318. {
  44319. name: "Giga",
  44320. height: math.unit(5, "km")
  44321. },
  44322. ]
  44323. ))
  44324. characterMakers.push(() => makeCharacter(
  44325. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44326. {
  44327. front: {
  44328. height: math.unit(6, "feet"),
  44329. weight: math.unit(200, "lb"),
  44330. name: "Front",
  44331. image: {
  44332. source: "./media/characters/blizzard/front.svg",
  44333. extra: 1136/990,
  44334. bottom: 136/1272
  44335. }
  44336. },
  44337. back: {
  44338. height: math.unit(6, "feet"),
  44339. weight: math.unit(200, "lb"),
  44340. name: "Back",
  44341. image: {
  44342. source: "./media/characters/blizzard/back.svg",
  44343. extra: 1175/1034,
  44344. bottom: 97/1272
  44345. }
  44346. },
  44347. sitting: {
  44348. height: math.unit(3.725, "feet"),
  44349. weight: math.unit(200, "lb"),
  44350. name: "Sitting",
  44351. image: {
  44352. source: "./media/characters/blizzard/sitting.svg",
  44353. extra: 581/485,
  44354. bottom: 90/671
  44355. }
  44356. },
  44357. frontWizard: {
  44358. height: math.unit(7.9, "feet"),
  44359. weight: math.unit(200, "lb"),
  44360. name: "Front (Wizard)",
  44361. image: {
  44362. source: "./media/characters/blizzard/front-wizard.svg"
  44363. }
  44364. },
  44365. backWizard: {
  44366. height: math.unit(7.9, "feet"),
  44367. weight: math.unit(200, "lb"),
  44368. name: "Back (Wizard)",
  44369. image: {
  44370. source: "./media/characters/blizzard/back-wizard.svg"
  44371. }
  44372. },
  44373. frontNsfw: {
  44374. height: math.unit(6, "feet"),
  44375. weight: math.unit(200, "lb"),
  44376. name: "Front (NSFW)",
  44377. image: {
  44378. source: "./media/characters/blizzard/front-nsfw.svg",
  44379. extra: 1136/990,
  44380. bottom: 136/1272
  44381. }
  44382. },
  44383. backNsfw: {
  44384. height: math.unit(6, "feet"),
  44385. weight: math.unit(200, "lb"),
  44386. name: "Back (NSFW)",
  44387. image: {
  44388. source: "./media/characters/blizzard/back-nsfw.svg",
  44389. extra: 1175/1034,
  44390. bottom: 97/1272
  44391. }
  44392. },
  44393. sittingNsfw: {
  44394. height: math.unit(3.725, "feet"),
  44395. weight: math.unit(200, "lb"),
  44396. name: "Sitting (NSFW)",
  44397. image: {
  44398. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44399. extra: 581/485,
  44400. bottom: 90/671
  44401. }
  44402. },
  44403. wizardFrontNsfw: {
  44404. height: math.unit(7.9, "feet"),
  44405. weight: math.unit(200, "lb"),
  44406. name: "Wizard (Front, NSFW)",
  44407. image: {
  44408. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44409. }
  44410. },
  44411. },
  44412. [
  44413. {
  44414. name: "Normal",
  44415. height: math.unit(6, "feet"),
  44416. default: true
  44417. },
  44418. ]
  44419. ))
  44420. characterMakers.push(() => makeCharacter(
  44421. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44422. {
  44423. front: {
  44424. height: math.unit(5 + 2/12, "feet"),
  44425. name: "Front",
  44426. image: {
  44427. source: "./media/characters/lumi/front.svg",
  44428. extra: 1328/1268,
  44429. bottom: 103/1431
  44430. }
  44431. },
  44432. back: {
  44433. height: math.unit(5 + 2/12, "feet"),
  44434. name: "Back",
  44435. image: {
  44436. source: "./media/characters/lumi/back.svg",
  44437. extra: 1381/1327,
  44438. bottom: 43/1424
  44439. }
  44440. },
  44441. },
  44442. [
  44443. {
  44444. name: "Normal",
  44445. height: math.unit(5 + 2/12, "feet"),
  44446. default: true
  44447. },
  44448. ]
  44449. ))
  44450. characterMakers.push(() => makeCharacter(
  44451. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44452. {
  44453. front: {
  44454. height: math.unit(5 + 9/12, "feet"),
  44455. name: "Front",
  44456. image: {
  44457. source: "./media/characters/aliya-cotton/front.svg",
  44458. extra: 577/564,
  44459. bottom: 29/606
  44460. }
  44461. },
  44462. },
  44463. [
  44464. {
  44465. name: "Normal",
  44466. height: math.unit(5 + 9/12, "feet"),
  44467. default: true
  44468. },
  44469. ]
  44470. ))
  44471. characterMakers.push(() => makeCharacter(
  44472. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44473. {
  44474. front: {
  44475. height: math.unit(2.7, "meters"),
  44476. weight: math.unit(25000, "lb"),
  44477. name: "Front",
  44478. image: {
  44479. source: "./media/characters/noah-luxray/front.svg",
  44480. extra: 1644/825,
  44481. bottom: 339/1983
  44482. }
  44483. },
  44484. side: {
  44485. height: math.unit(2.97, "meters"),
  44486. weight: math.unit(25000, "lb"),
  44487. name: "Side",
  44488. image: {
  44489. source: "./media/characters/noah-luxray/side.svg",
  44490. extra: 1319/650,
  44491. bottom: 163/1482
  44492. }
  44493. },
  44494. dick: {
  44495. height: math.unit(7.4, "feet"),
  44496. weight: math.unit(2500, "lb"),
  44497. name: "Dick",
  44498. image: {
  44499. source: "./media/characters/noah-luxray/dick.svg"
  44500. }
  44501. },
  44502. dickAlt: {
  44503. height: math.unit(10.83, "feet"),
  44504. weight: math.unit(2500, "lb"),
  44505. name: "Dick-alt",
  44506. image: {
  44507. source: "./media/characters/noah-luxray/dick-alt.svg"
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "BIG",
  44514. height: math.unit(2.7, "meters"),
  44515. default: true
  44516. },
  44517. ]
  44518. ))
  44519. characterMakers.push(() => makeCharacter(
  44520. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44521. {
  44522. standing: {
  44523. height: math.unit(183, "cm"),
  44524. weight: math.unit(68, "kg"),
  44525. name: "Standing",
  44526. image: {
  44527. source: "./media/characters/arion/standing.svg",
  44528. extra: 1869/1807,
  44529. bottom: 93/1962
  44530. }
  44531. },
  44532. reclining: {
  44533. height: math.unit(70.5, "cm"),
  44534. weight: math.unit(68, "lb"),
  44535. name: "Reclining",
  44536. image: {
  44537. source: "./media/characters/arion/reclining.svg",
  44538. extra: 937/870,
  44539. bottom: 63/1000
  44540. }
  44541. },
  44542. },
  44543. [
  44544. {
  44545. name: "Colossus Size, Low",
  44546. height: math.unit(33, "meters"),
  44547. default: true
  44548. },
  44549. {
  44550. name: "Colossus Size, Mid",
  44551. height: math.unit(52, "meters")
  44552. },
  44553. {
  44554. name: "Colossus Size, High",
  44555. height: math.unit(60, "meters")
  44556. },
  44557. {
  44558. name: "Titan Size, Low",
  44559. height: math.unit(91, "meters"),
  44560. },
  44561. {
  44562. name: "Titan Size, Mid",
  44563. height: math.unit(122, "meters")
  44564. },
  44565. {
  44566. name: "Titan Size, High",
  44567. height: math.unit(162, "meters")
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44573. {
  44574. front: {
  44575. height: math.unit(53, "meters"),
  44576. name: "Front",
  44577. image: {
  44578. source: "./media/characters/stellar-marbey/front.svg",
  44579. extra: 1913/1805,
  44580. bottom: 92/2005
  44581. }
  44582. },
  44583. back: {
  44584. height: math.unit(53, "meters"),
  44585. name: "Back",
  44586. image: {
  44587. source: "./media/characters/stellar-marbey/back.svg",
  44588. extra: 1960/1851,
  44589. bottom: 28/1988
  44590. }
  44591. },
  44592. mouth: {
  44593. height: math.unit(3.5, "meters"),
  44594. name: "Mouth",
  44595. image: {
  44596. source: "./media/characters/stellar-marbey/mouth.svg"
  44597. }
  44598. },
  44599. },
  44600. [
  44601. {
  44602. name: "Macro",
  44603. height: math.unit(53, "meters"),
  44604. default: true
  44605. },
  44606. ]
  44607. ))
  44608. characterMakers.push(() => makeCharacter(
  44609. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44610. {
  44611. front: {
  44612. height: math.unit(8 + 1/12, "feet"),
  44613. weight: math.unit(233, "lb"),
  44614. name: "Front",
  44615. image: {
  44616. source: "./media/characters/matsu/front.svg",
  44617. extra: 832/772,
  44618. bottom: 40/872
  44619. }
  44620. },
  44621. back: {
  44622. height: math.unit(8 + 1/12, "feet"),
  44623. weight: math.unit(233, "lb"),
  44624. name: "Back",
  44625. image: {
  44626. source: "./media/characters/matsu/back.svg",
  44627. extra: 839/780,
  44628. bottom: 47/886
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Normal",
  44635. height: math.unit(8 + 1/12, "feet"),
  44636. default: true
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44642. {
  44643. front: {
  44644. height: math.unit(4, "feet"),
  44645. weight: math.unit(148, "lb"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/thiz/front.svg",
  44649. extra: 1913/1748,
  44650. bottom: 62/1975
  44651. }
  44652. },
  44653. },
  44654. [
  44655. {
  44656. name: "Normal",
  44657. height: math.unit(4, "feet"),
  44658. default: true
  44659. },
  44660. ]
  44661. ))
  44662. characterMakers.push(() => makeCharacter(
  44663. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44664. {
  44665. front: {
  44666. height: math.unit(7 + 6/12, "feet"),
  44667. weight: math.unit(267, "lb"),
  44668. name: "Front",
  44669. image: {
  44670. source: "./media/characters/marcel/front.svg",
  44671. extra: 1221/1096,
  44672. bottom: 76/1297
  44673. }
  44674. },
  44675. },
  44676. [
  44677. {
  44678. name: "Normal",
  44679. height: math.unit(7 + 6/12, "feet"),
  44680. default: true
  44681. },
  44682. ]
  44683. ))
  44684. characterMakers.push(() => makeCharacter(
  44685. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44686. {
  44687. side: {
  44688. height: math.unit(42, "meters"),
  44689. name: "Side",
  44690. image: {
  44691. source: "./media/characters/flake/side.svg",
  44692. extra: 1525/1306,
  44693. bottom: 209/1734
  44694. }
  44695. },
  44696. },
  44697. [
  44698. {
  44699. name: "Normal",
  44700. height: math.unit(42, "meters"),
  44701. default: true
  44702. },
  44703. ]
  44704. ))
  44705. characterMakers.push(() => makeCharacter(
  44706. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44707. {
  44708. dressed: {
  44709. height: math.unit(6 + 4/12, "feet"),
  44710. weight: math.unit(520, "lb"),
  44711. name: "Dressed",
  44712. image: {
  44713. source: "./media/characters/someonne/dressed.svg",
  44714. extra: 1020/1010,
  44715. bottom: 178/1198
  44716. }
  44717. },
  44718. undressed: {
  44719. height: math.unit(6 + 4/12, "feet"),
  44720. weight: math.unit(520, "lb"),
  44721. name: "Undressed",
  44722. image: {
  44723. source: "./media/characters/someonne/undressed.svg",
  44724. extra: 1019/1014,
  44725. bottom: 169/1188
  44726. }
  44727. },
  44728. },
  44729. [
  44730. {
  44731. name: "Normal",
  44732. height: math.unit(6 + 4/12, "feet"),
  44733. default: true
  44734. },
  44735. ]
  44736. ))
  44737. characterMakers.push(() => makeCharacter(
  44738. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44739. {
  44740. front: {
  44741. height: math.unit(3, "feet"),
  44742. weight: math.unit(30, "lb"),
  44743. name: "Front",
  44744. image: {
  44745. source: "./media/characters/till/front.svg",
  44746. extra: 892/823,
  44747. bottom: 55/947
  44748. }
  44749. },
  44750. },
  44751. [
  44752. {
  44753. name: "Normal",
  44754. height: math.unit(3, "feet"),
  44755. default: true
  44756. },
  44757. ]
  44758. ))
  44759. characterMakers.push(() => makeCharacter(
  44760. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44761. {
  44762. front: {
  44763. height: math.unit(9 + 8/12, "feet"),
  44764. weight: math.unit(800, "lb"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/sydney-heki/front.svg",
  44768. extra: 1360/1300,
  44769. bottom: 22/1382
  44770. }
  44771. },
  44772. back: {
  44773. height: math.unit(9 + 8/12, "feet"),
  44774. weight: math.unit(800, "lb"),
  44775. name: "Back",
  44776. image: {
  44777. source: "./media/characters/sydney-heki/back.svg",
  44778. extra: 1356/1293,
  44779. bottom: 12/1368
  44780. }
  44781. },
  44782. frontDressed: {
  44783. height: math.unit(9 + 8/12, "feet"),
  44784. weight: math.unit(800, "lb"),
  44785. name: "Front-dressed",
  44786. image: {
  44787. source: "./media/characters/sydney-heki/front-dressed.svg",
  44788. extra: 1360/1300,
  44789. bottom: 22/1382
  44790. }
  44791. },
  44792. },
  44793. [
  44794. {
  44795. name: "Normal",
  44796. height: math.unit(9 + 8/12, "feet"),
  44797. default: true
  44798. },
  44799. {
  44800. name: "Macro",
  44801. height: math.unit(500, "feet")
  44802. },
  44803. {
  44804. name: "Megamacro",
  44805. height: math.unit(3.6, "miles")
  44806. },
  44807. ]
  44808. ))
  44809. characterMakers.push(() => makeCharacter(
  44810. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44811. {
  44812. front: {
  44813. height: math.unit(200, "cm"),
  44814. weight: math.unit(250, "lb"),
  44815. name: "Front",
  44816. image: {
  44817. source: "./media/characters/fowler-karlsson/front.svg",
  44818. extra: 897/845,
  44819. bottom: 123/1020
  44820. }
  44821. },
  44822. back: {
  44823. height: math.unit(200, "cm"),
  44824. weight: math.unit(250, "lb"),
  44825. name: "Back",
  44826. image: {
  44827. source: "./media/characters/fowler-karlsson/back.svg",
  44828. extra: 999/944,
  44829. bottom: 26/1025
  44830. }
  44831. },
  44832. dick: {
  44833. height: math.unit(1.92, "feet"),
  44834. weight: math.unit(150, "lb"),
  44835. name: "Dick",
  44836. image: {
  44837. source: "./media/characters/fowler-karlsson/dick.svg"
  44838. }
  44839. },
  44840. },
  44841. [
  44842. {
  44843. name: "Normal",
  44844. height: math.unit(200, "cm"),
  44845. default: true
  44846. },
  44847. {
  44848. name: "Smaller Macro",
  44849. height: math.unit(90, "m")
  44850. },
  44851. {
  44852. name: "Macro",
  44853. height: math.unit(150, "m")
  44854. },
  44855. {
  44856. name: "Bigger Macro",
  44857. height: math.unit(300, "m")
  44858. },
  44859. ]
  44860. ))
  44861. characterMakers.push(() => makeCharacter(
  44862. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44863. {
  44864. side: {
  44865. height: math.unit(8 + 2/12, "feet"),
  44866. weight: math.unit(1, "tonne"),
  44867. name: "Side",
  44868. image: {
  44869. source: "./media/characters/rylide/side.svg",
  44870. extra: 1318/1034,
  44871. bottom: 106/1424
  44872. }
  44873. },
  44874. sitting: {
  44875. height: math.unit(303, "cm"),
  44876. weight: math.unit(1, "tonne"),
  44877. name: "Sitting",
  44878. image: {
  44879. source: "./media/characters/rylide/sitting.svg",
  44880. extra: 1303/1103,
  44881. bottom: 36/1339
  44882. }
  44883. },
  44884. },
  44885. [
  44886. {
  44887. name: "Normal",
  44888. height: math.unit(8 + 2/12, "feet"),
  44889. default: true
  44890. },
  44891. ]
  44892. ))
  44893. characterMakers.push(() => makeCharacter(
  44894. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44895. {
  44896. front: {
  44897. height: math.unit(5 + 10/12, "feet"),
  44898. weight: math.unit(160, "lb"),
  44899. name: "Front",
  44900. image: {
  44901. source: "./media/characters/pudask/front.svg",
  44902. extra: 1616/1590,
  44903. bottom: 161/1777
  44904. }
  44905. },
  44906. },
  44907. [
  44908. {
  44909. name: "Ferret Height",
  44910. height: math.unit(2 + 5/12, "feet")
  44911. },
  44912. {
  44913. name: "Canon Height",
  44914. height: math.unit(5 + 10/12, "feet"),
  44915. default: true
  44916. },
  44917. ]
  44918. ))
  44919. characterMakers.push(() => makeCharacter(
  44920. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44921. {
  44922. front: {
  44923. height: math.unit(3 + 6/12, "feet"),
  44924. weight: math.unit(60, "lb"),
  44925. name: "Front",
  44926. image: {
  44927. source: "./media/characters/ramita/front.svg",
  44928. extra: 1402/1232,
  44929. bottom: 62/1464
  44930. }
  44931. },
  44932. dressed: {
  44933. height: math.unit(3 + 6/12, "feet"),
  44934. weight: math.unit(60, "lb"),
  44935. name: "Dressed",
  44936. image: {
  44937. source: "./media/characters/ramita/dressed.svg",
  44938. extra: 1534/1249,
  44939. bottom: 50/1584
  44940. }
  44941. },
  44942. },
  44943. [
  44944. {
  44945. name: "Normal",
  44946. height: math.unit(3 + 6/12, "feet"),
  44947. default: true
  44948. },
  44949. ]
  44950. ))
  44951. characterMakers.push(() => makeCharacter(
  44952. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44953. {
  44954. front: {
  44955. height: math.unit(8, "feet"),
  44956. name: "Front",
  44957. image: {
  44958. source: "./media/characters/ark/front.svg",
  44959. extra: 772/693,
  44960. bottom: 45/817
  44961. }
  44962. },
  44963. },
  44964. [
  44965. {
  44966. name: "Normal",
  44967. height: math.unit(8, "feet"),
  44968. default: true
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44974. {
  44975. front: {
  44976. height: math.unit(6, "feet"),
  44977. weight: math.unit(250, "lb"),
  44978. volume: math.unit(5/8, "gallons"),
  44979. name: "Front",
  44980. image: {
  44981. source: "./media/characters/ludwig-horn/front.svg",
  44982. extra: 1782/1635,
  44983. bottom: 96/1878
  44984. }
  44985. },
  44986. back: {
  44987. height: math.unit(6, "feet"),
  44988. weight: math.unit(250, "lb"),
  44989. volume: math.unit(5/8, "gallons"),
  44990. name: "Back",
  44991. image: {
  44992. source: "./media/characters/ludwig-horn/back.svg",
  44993. extra: 1874/1729,
  44994. bottom: 27/1901
  44995. }
  44996. },
  44997. dick: {
  44998. height: math.unit(1.05, "feet"),
  44999. weight: math.unit(15, "lb"),
  45000. volume: math.unit(5/8, "gallons"),
  45001. name: "Dick",
  45002. image: {
  45003. source: "./media/characters/ludwig-horn/dick.svg"
  45004. }
  45005. },
  45006. },
  45007. [
  45008. {
  45009. name: "Small",
  45010. height: math.unit(6, "feet")
  45011. },
  45012. {
  45013. name: "Typical",
  45014. height: math.unit(12, "feet"),
  45015. default: true
  45016. },
  45017. {
  45018. name: "Building",
  45019. height: math.unit(80, "feet")
  45020. },
  45021. {
  45022. name: "Town",
  45023. height: math.unit(800, "feet")
  45024. },
  45025. {
  45026. name: "Kingdom",
  45027. height: math.unit(80000, "feet")
  45028. },
  45029. {
  45030. name: "Planet",
  45031. height: math.unit(8000000, "feet")
  45032. },
  45033. {
  45034. name: "Universe",
  45035. height: math.unit(8000000000, "feet")
  45036. },
  45037. {
  45038. name: "Transcended",
  45039. height: math.unit(8e27, "feet")
  45040. },
  45041. ]
  45042. ))
  45043. characterMakers.push(() => makeCharacter(
  45044. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45045. {
  45046. front: {
  45047. height: math.unit(5, "feet"),
  45048. weight: math.unit(50, "kg"),
  45049. name: "Front",
  45050. image: {
  45051. source: "./media/characters/biot-avery/front.svg",
  45052. extra: 1295/1232,
  45053. bottom: 86/1381
  45054. }
  45055. },
  45056. },
  45057. [
  45058. {
  45059. name: "Normal",
  45060. height: math.unit(5, "feet"),
  45061. default: true
  45062. },
  45063. ]
  45064. ))
  45065. characterMakers.push(() => makeCharacter(
  45066. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45067. {
  45068. front: {
  45069. height: math.unit(6, "feet"),
  45070. name: "Front",
  45071. image: {
  45072. source: "./media/characters/kitsune-kiro/front.svg",
  45073. extra: 1270/1158,
  45074. bottom: 42/1312
  45075. }
  45076. },
  45077. frontAlt: {
  45078. height: math.unit(6, "feet"),
  45079. name: "Front-alt",
  45080. image: {
  45081. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45082. extra: 1130/1081,
  45083. bottom: 36/1166
  45084. }
  45085. },
  45086. },
  45087. [
  45088. {
  45089. name: "Smol",
  45090. height: math.unit(3, "feet")
  45091. },
  45092. {
  45093. name: "Normal",
  45094. height: math.unit(6, "feet"),
  45095. default: true
  45096. },
  45097. ]
  45098. ))
  45099. characterMakers.push(() => makeCharacter(
  45100. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45101. {
  45102. front: {
  45103. height: math.unit(6, "feet"),
  45104. weight: math.unit(125, "lb"),
  45105. name: "Front",
  45106. image: {
  45107. source: "./media/characters/jack-thatcher/front.svg",
  45108. extra: 1474/1370,
  45109. bottom: 26/1500
  45110. }
  45111. },
  45112. back: {
  45113. height: math.unit(6, "feet"),
  45114. weight: math.unit(125, "lb"),
  45115. name: "Back",
  45116. image: {
  45117. source: "./media/characters/jack-thatcher/back.svg",
  45118. extra: 1489/1384,
  45119. bottom: 18/1507
  45120. }
  45121. },
  45122. },
  45123. [
  45124. {
  45125. name: "Normal",
  45126. height: math.unit(6, "feet"),
  45127. default: true
  45128. },
  45129. {
  45130. name: "Macro",
  45131. height: math.unit(75, "feet")
  45132. },
  45133. {
  45134. name: "Macro-er",
  45135. height: math.unit(250, "feet")
  45136. },
  45137. ]
  45138. ))
  45139. characterMakers.push(() => makeCharacter(
  45140. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45141. {
  45142. front: {
  45143. height: math.unit(7, "feet"),
  45144. weight: math.unit(110, "kg"),
  45145. name: "Front",
  45146. image: {
  45147. source: "./media/characters/max-hyper/front.svg",
  45148. extra: 1969/1881,
  45149. bottom: 49/2018
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Normal",
  45156. height: math.unit(7, "feet"),
  45157. default: true
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45163. {
  45164. front: {
  45165. height: math.unit(5 + 5/12, "feet"),
  45166. weight: math.unit(160, "lb"),
  45167. name: "Front",
  45168. image: {
  45169. source: "./media/characters/spook/front.svg",
  45170. extra: 794/791,
  45171. bottom: 54/848
  45172. }
  45173. },
  45174. back: {
  45175. height: math.unit(5 + 5/12, "feet"),
  45176. weight: math.unit(160, "lb"),
  45177. name: "Back",
  45178. image: {
  45179. source: "./media/characters/spook/back.svg",
  45180. extra: 812/798,
  45181. bottom: 32/844
  45182. }
  45183. },
  45184. },
  45185. [
  45186. {
  45187. name: "Normal",
  45188. height: math.unit(5 + 5/12, "feet"),
  45189. default: true
  45190. },
  45191. ]
  45192. ))
  45193. characterMakers.push(() => makeCharacter(
  45194. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45195. {
  45196. front: {
  45197. height: math.unit(18, "feet"),
  45198. name: "Front",
  45199. image: {
  45200. source: "./media/characters/xeaduulix/front.svg",
  45201. extra: 1380/1166,
  45202. bottom: 110/1490
  45203. }
  45204. },
  45205. back: {
  45206. height: math.unit(18, "feet"),
  45207. name: "Back",
  45208. image: {
  45209. source: "./media/characters/xeaduulix/back.svg",
  45210. extra: 1592/1170,
  45211. bottom: 128/1720
  45212. }
  45213. },
  45214. frontNsfw: {
  45215. height: math.unit(18, "feet"),
  45216. name: "Front (NSFW)",
  45217. image: {
  45218. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45219. extra: 1380/1166,
  45220. bottom: 110/1490
  45221. }
  45222. },
  45223. backNsfw: {
  45224. height: math.unit(18, "feet"),
  45225. name: "Back (NSFW)",
  45226. image: {
  45227. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45228. extra: 1592/1170,
  45229. bottom: 128/1720
  45230. }
  45231. },
  45232. },
  45233. [
  45234. {
  45235. name: "Normal",
  45236. height: math.unit(18, "feet"),
  45237. default: true
  45238. },
  45239. ]
  45240. ))
  45241. characterMakers.push(() => makeCharacter(
  45242. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45243. {
  45244. spreadWings: {
  45245. height: math.unit(20, "feet"),
  45246. name: "Spread Wings",
  45247. image: {
  45248. source: "./media/characters/fledge/spread-wings.svg",
  45249. extra: 693/635,
  45250. bottom: 26/719
  45251. }
  45252. },
  45253. front: {
  45254. height: math.unit(20, "feet"),
  45255. name: "Front",
  45256. image: {
  45257. source: "./media/characters/fledge/front.svg",
  45258. extra: 684/637,
  45259. bottom: 18/702
  45260. }
  45261. },
  45262. frontAlt: {
  45263. height: math.unit(20, "feet"),
  45264. name: "Front (Alt)",
  45265. image: {
  45266. source: "./media/characters/fledge/front-alt.svg",
  45267. extra: 708/664,
  45268. bottom: 13/721
  45269. }
  45270. },
  45271. back: {
  45272. height: math.unit(20, "feet"),
  45273. name: "Back",
  45274. image: {
  45275. source: "./media/characters/fledge/back.svg",
  45276. extra: 718/634,
  45277. bottom: 22/740
  45278. }
  45279. },
  45280. head: {
  45281. height: math.unit(5.55, "feet"),
  45282. name: "Head",
  45283. image: {
  45284. source: "./media/characters/fledge/head.svg"
  45285. }
  45286. },
  45287. headAlt: {
  45288. height: math.unit(5.1, "feet"),
  45289. name: "Head (Alt)",
  45290. image: {
  45291. source: "./media/characters/fledge/head-alt.svg"
  45292. }
  45293. },
  45294. },
  45295. [
  45296. {
  45297. name: "Small",
  45298. height: math.unit(6 + 2/12, "feet")
  45299. },
  45300. {
  45301. name: "Big",
  45302. height: math.unit(20, "feet"),
  45303. default: true
  45304. },
  45305. {
  45306. name: "Giant",
  45307. height: math.unit(100, "feet")
  45308. },
  45309. {
  45310. name: "Macro",
  45311. height: math.unit(200, "feet")
  45312. },
  45313. ]
  45314. ))
  45315. characterMakers.push(() => makeCharacter(
  45316. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45317. {
  45318. front: {
  45319. height: math.unit(1, "meter"),
  45320. name: "Front",
  45321. image: {
  45322. source: "./media/characters/atlas-morenai/front.svg",
  45323. extra: 1275/1043,
  45324. bottom: 19/1294
  45325. }
  45326. },
  45327. back: {
  45328. height: math.unit(1, "meter"),
  45329. name: "Back",
  45330. image: {
  45331. source: "./media/characters/atlas-morenai/back.svg",
  45332. extra: 1141/1001,
  45333. bottom: 25/1166
  45334. }
  45335. },
  45336. },
  45337. [
  45338. {
  45339. name: "Normal",
  45340. height: math.unit(1, "meter"),
  45341. default: true
  45342. },
  45343. {
  45344. name: "Magic-Infused",
  45345. height: math.unit(5, "meters")
  45346. },
  45347. ]
  45348. ))
  45349. characterMakers.push(() => makeCharacter(
  45350. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45351. {
  45352. front: {
  45353. height: math.unit(5, "meters"),
  45354. name: "Front",
  45355. image: {
  45356. source: "./media/characters/cintia/front.svg",
  45357. extra: 1312/1228,
  45358. bottom: 38/1350
  45359. }
  45360. },
  45361. back: {
  45362. height: math.unit(5, "meters"),
  45363. name: "Back",
  45364. image: {
  45365. source: "./media/characters/cintia/back.svg",
  45366. extra: 1260/1166,
  45367. bottom: 98/1358
  45368. }
  45369. },
  45370. frontDick: {
  45371. height: math.unit(5, "meters"),
  45372. name: "Front (Dick)",
  45373. image: {
  45374. source: "./media/characters/cintia/front-dick.svg",
  45375. extra: 1312/1228,
  45376. bottom: 38/1350
  45377. }
  45378. },
  45379. backDick: {
  45380. height: math.unit(5, "meters"),
  45381. name: "Back (Dick)",
  45382. image: {
  45383. source: "./media/characters/cintia/back-dick.svg",
  45384. extra: 1260/1166,
  45385. bottom: 98/1358
  45386. }
  45387. },
  45388. bust: {
  45389. height: math.unit(1.97, "meters"),
  45390. name: "Bust",
  45391. image: {
  45392. source: "./media/characters/cintia/bust.svg",
  45393. extra: 617/565,
  45394. bottom: 0/617
  45395. }
  45396. },
  45397. },
  45398. [
  45399. {
  45400. name: "Normal",
  45401. height: math.unit(5, "meters"),
  45402. default: true
  45403. },
  45404. ]
  45405. ))
  45406. characterMakers.push(() => makeCharacter(
  45407. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45408. {
  45409. side: {
  45410. height: math.unit(100, "feet"),
  45411. name: "Side",
  45412. image: {
  45413. source: "./media/characters/denora/side.svg",
  45414. extra: 875/803,
  45415. bottom: 9/884
  45416. }
  45417. },
  45418. },
  45419. [
  45420. {
  45421. name: "Standard",
  45422. height: math.unit(100, "feet"),
  45423. default: true
  45424. },
  45425. {
  45426. name: "Grand",
  45427. height: math.unit(1000, "feet")
  45428. },
  45429. {
  45430. name: "Conquering",
  45431. height: math.unit(10000, "feet")
  45432. },
  45433. ]
  45434. ))
  45435. characterMakers.push(() => makeCharacter(
  45436. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45437. {
  45438. dressed: {
  45439. height: math.unit(8 + 5/12, "feet"),
  45440. weight: math.unit(700, "lb"),
  45441. name: "Dressed",
  45442. image: {
  45443. source: "./media/characters/kiva/dressed.svg",
  45444. extra: 1102/1055,
  45445. bottom: 60/1162
  45446. }
  45447. },
  45448. nude: {
  45449. height: math.unit(8 + 5/12, "feet"),
  45450. weight: math.unit(700, "lb"),
  45451. name: "Nude",
  45452. image: {
  45453. source: "./media/characters/kiva/nude.svg",
  45454. extra: 1102/1055,
  45455. bottom: 60/1162
  45456. }
  45457. },
  45458. },
  45459. [
  45460. {
  45461. name: "Base Height",
  45462. height: math.unit(8 + 5/12, "feet"),
  45463. default: true
  45464. },
  45465. {
  45466. name: "Macro",
  45467. height: math.unit(100, "feet")
  45468. },
  45469. {
  45470. name: "Max",
  45471. height: math.unit(3280, "feet")
  45472. },
  45473. ]
  45474. ))
  45475. characterMakers.push(() => makeCharacter(
  45476. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45477. {
  45478. front: {
  45479. height: math.unit(6 + 8/12, "feet"),
  45480. weight: math.unit(250, "lb"),
  45481. name: "Front",
  45482. image: {
  45483. source: "./media/characters/ztragon/front.svg",
  45484. extra: 1825/1684,
  45485. bottom: 98/1923
  45486. }
  45487. },
  45488. },
  45489. [
  45490. {
  45491. name: "Normal",
  45492. height: math.unit(6 + 8/12, "feet"),
  45493. default: true
  45494. },
  45495. {
  45496. name: "Macro",
  45497. height: math.unit(80, "feet")
  45498. },
  45499. ]
  45500. ))
  45501. characterMakers.push(() => makeCharacter(
  45502. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45503. {
  45504. front: {
  45505. height: math.unit(10.4, "feet"),
  45506. weight: math.unit(2, "tons"),
  45507. name: "Front",
  45508. image: {
  45509. source: "./media/characters/yesenia/front.svg",
  45510. extra: 1479/1474,
  45511. bottom: 233/1712
  45512. }
  45513. },
  45514. },
  45515. [
  45516. {
  45517. name: "Normal",
  45518. height: math.unit(10.4, "feet"),
  45519. default: true
  45520. },
  45521. ]
  45522. ))
  45523. characterMakers.push(() => makeCharacter(
  45524. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45525. {
  45526. normal: {
  45527. height: math.unit(6 + 1/12, "feet"),
  45528. weight: math.unit(180, "lb"),
  45529. name: "Normal",
  45530. image: {
  45531. source: "./media/characters/leanne-lycheborne/normal.svg",
  45532. extra: 1748/1660,
  45533. bottom: 98/1846
  45534. }
  45535. },
  45536. were: {
  45537. height: math.unit(12, "feet"),
  45538. weight: math.unit(1600, "lb"),
  45539. name: "Were",
  45540. image: {
  45541. source: "./media/characters/leanne-lycheborne/were.svg",
  45542. extra: 1485/1432,
  45543. bottom: 66/1551
  45544. }
  45545. },
  45546. },
  45547. [
  45548. {
  45549. name: "Normal",
  45550. height: math.unit(6 + 1/12, "feet"),
  45551. default: true
  45552. },
  45553. ]
  45554. ))
  45555. characterMakers.push(() => makeCharacter(
  45556. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45557. {
  45558. side: {
  45559. height: math.unit(13, "feet"),
  45560. name: "Side",
  45561. image: {
  45562. source: "./media/characters/kira-tyler/side.svg",
  45563. extra: 693/393,
  45564. bottom: 58/751
  45565. }
  45566. },
  45567. },
  45568. [
  45569. {
  45570. name: "Normal",
  45571. height: math.unit(13, "feet"),
  45572. default: true
  45573. },
  45574. ]
  45575. ))
  45576. characterMakers.push(() => makeCharacter(
  45577. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45578. {
  45579. front: {
  45580. height: math.unit(10.3, "feet"),
  45581. weight: math.unit(150, "lb"),
  45582. name: "Front",
  45583. image: {
  45584. source: "./media/characters/blaze/front.svg",
  45585. extra: 1378/1286,
  45586. bottom: 172/1550
  45587. }
  45588. },
  45589. },
  45590. [
  45591. {
  45592. name: "Normal",
  45593. height: math.unit(10.3, "feet"),
  45594. default: true
  45595. },
  45596. ]
  45597. ))
  45598. characterMakers.push(() => makeCharacter(
  45599. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45600. {
  45601. side: {
  45602. height: math.unit(2, "meters"),
  45603. weight: math.unit(400, "kg"),
  45604. name: "Side",
  45605. image: {
  45606. source: "./media/characters/anu/side.svg",
  45607. extra: 506/394,
  45608. bottom: 18/524
  45609. }
  45610. },
  45611. },
  45612. [
  45613. {
  45614. name: "Humanoid",
  45615. height: math.unit(2, "meters")
  45616. },
  45617. {
  45618. name: "Normal",
  45619. height: math.unit(5, "meters"),
  45620. default: true
  45621. },
  45622. ]
  45623. ))
  45624. characterMakers.push(() => makeCharacter(
  45625. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45626. {
  45627. front: {
  45628. height: math.unit(5 + 5/12, "feet"),
  45629. weight: math.unit(170, "lb"),
  45630. name: "Front",
  45631. image: {
  45632. source: "./media/characters/synx-the-lynx/front.svg",
  45633. extra: 1893/1745,
  45634. bottom: 17/1910
  45635. }
  45636. },
  45637. side: {
  45638. height: math.unit(5 + 5/12, "feet"),
  45639. weight: math.unit(170, "lb"),
  45640. name: "Side",
  45641. image: {
  45642. source: "./media/characters/synx-the-lynx/side.svg",
  45643. extra: 1884/1740,
  45644. bottom: 39/1923
  45645. }
  45646. },
  45647. back: {
  45648. height: math.unit(5 + 5/12, "feet"),
  45649. weight: math.unit(170, "lb"),
  45650. name: "Back",
  45651. image: {
  45652. source: "./media/characters/synx-the-lynx/back.svg",
  45653. extra: 1903/1755,
  45654. bottom: 14/1917
  45655. }
  45656. },
  45657. },
  45658. [
  45659. {
  45660. name: "Normal",
  45661. height: math.unit(5 + 5/12, "feet"),
  45662. default: true
  45663. },
  45664. ]
  45665. ))
  45666. characterMakers.push(() => makeCharacter(
  45667. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45668. {
  45669. back: {
  45670. height: math.unit(15, "feet"),
  45671. name: "Back",
  45672. image: {
  45673. source: "./media/characters/nadezda-fex/back.svg",
  45674. extra: 1695/1481,
  45675. bottom: 25/1720
  45676. }
  45677. },
  45678. },
  45679. [
  45680. {
  45681. name: "Normal",
  45682. height: math.unit(15, "feet"),
  45683. default: true
  45684. },
  45685. {
  45686. name: "Macro",
  45687. height: math.unit(2.5, "miles")
  45688. },
  45689. {
  45690. name: "Goddess",
  45691. height: math.unit(2, "multiverses")
  45692. },
  45693. ]
  45694. ))
  45695. characterMakers.push(() => makeCharacter(
  45696. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45697. {
  45698. front: {
  45699. height: math.unit(216, "cm"),
  45700. name: "Front",
  45701. image: {
  45702. source: "./media/characters/lev/front.svg",
  45703. extra: 1728/1670,
  45704. bottom: 82/1810
  45705. }
  45706. },
  45707. back: {
  45708. height: math.unit(216, "cm"),
  45709. name: "Back",
  45710. image: {
  45711. source: "./media/characters/lev/back.svg",
  45712. extra: 1738/1675,
  45713. bottom: 24/1762
  45714. }
  45715. },
  45716. dressed: {
  45717. height: math.unit(216, "cm"),
  45718. name: "Dressed",
  45719. image: {
  45720. source: "./media/characters/lev/dressed.svg",
  45721. extra: 1397/1351,
  45722. bottom: 73/1470
  45723. }
  45724. },
  45725. head: {
  45726. height: math.unit(0.51, "meter"),
  45727. name: "Head",
  45728. image: {
  45729. source: "./media/characters/lev/head.svg"
  45730. }
  45731. },
  45732. },
  45733. [
  45734. {
  45735. name: "Normal",
  45736. height: math.unit(216, "cm"),
  45737. default: true
  45738. },
  45739. {
  45740. name: "Relatively Macro",
  45741. height: math.unit(80, "meters")
  45742. },
  45743. {
  45744. name: "Megamacro",
  45745. height: math.unit(21600, "meters")
  45746. },
  45747. {
  45748. name: "Megamacro+",
  45749. height: math.unit(64800, "meters")
  45750. },
  45751. ]
  45752. ))
  45753. characterMakers.push(() => makeCharacter(
  45754. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45755. {
  45756. front: {
  45757. height: math.unit(2, "meters"),
  45758. weight: math.unit(80, "kg"),
  45759. name: "Front",
  45760. image: {
  45761. source: "./media/characters/moka/front.svg",
  45762. extra: 1337/1255,
  45763. bottom: 58/1395
  45764. }
  45765. },
  45766. },
  45767. [
  45768. {
  45769. name: "Micro",
  45770. height: math.unit(15, "cm")
  45771. },
  45772. {
  45773. name: "Normal",
  45774. height: math.unit(2, "meters"),
  45775. default: true
  45776. },
  45777. {
  45778. name: "Macro",
  45779. height: math.unit(20, "meters"),
  45780. },
  45781. ]
  45782. ))
  45783. characterMakers.push(() => makeCharacter(
  45784. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45785. {
  45786. front: {
  45787. height: math.unit(9, "feet"),
  45788. weight: math.unit(240, "lb"),
  45789. name: "Front",
  45790. image: {
  45791. source: "./media/characters/kuzco/front.svg",
  45792. extra: 1593/1487,
  45793. bottom: 32/1625
  45794. }
  45795. },
  45796. side: {
  45797. height: math.unit(9, "feet"),
  45798. weight: math.unit(240, "lb"),
  45799. name: "Side",
  45800. image: {
  45801. source: "./media/characters/kuzco/side.svg",
  45802. extra: 1575/1485,
  45803. bottom: 30/1605
  45804. }
  45805. },
  45806. back: {
  45807. height: math.unit(9, "feet"),
  45808. weight: math.unit(240, "lb"),
  45809. name: "Back",
  45810. image: {
  45811. source: "./media/characters/kuzco/back.svg",
  45812. extra: 1603/1514,
  45813. bottom: 14/1617
  45814. }
  45815. },
  45816. },
  45817. [
  45818. {
  45819. name: "Normal",
  45820. height: math.unit(9, "feet"),
  45821. default: true
  45822. },
  45823. ]
  45824. ))
  45825. characterMakers.push(() => makeCharacter(
  45826. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45827. {
  45828. side: {
  45829. height: math.unit(2, "meters"),
  45830. weight: math.unit(300, "kg"),
  45831. name: "Side",
  45832. image: {
  45833. source: "./media/characters/ceruleus/side.svg",
  45834. extra: 1068/974,
  45835. bottom: 126/1194
  45836. }
  45837. },
  45838. },
  45839. [
  45840. {
  45841. name: "Normal",
  45842. height: math.unit(16, "meters"),
  45843. default: true
  45844. },
  45845. ]
  45846. ))
  45847. characterMakers.push(() => makeCharacter(
  45848. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45849. {
  45850. front: {
  45851. height: math.unit(9, "feet"),
  45852. weight: math.unit(500, "kg"),
  45853. name: "Front",
  45854. image: {
  45855. source: "./media/characters/acouya/front.svg",
  45856. extra: 1660/1473,
  45857. bottom: 28/1688
  45858. }
  45859. },
  45860. },
  45861. [
  45862. {
  45863. name: "Normal",
  45864. height: math.unit(9, "feet"),
  45865. default: true
  45866. },
  45867. ]
  45868. ))
  45869. characterMakers.push(() => makeCharacter(
  45870. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45871. {
  45872. front: {
  45873. height: math.unit(5 + 6/12, "feet"),
  45874. weight: math.unit(195, "lb"),
  45875. name: "Front",
  45876. image: {
  45877. source: "./media/characters/vant/front.svg",
  45878. extra: 1396/1320,
  45879. bottom: 20/1416
  45880. }
  45881. },
  45882. back: {
  45883. height: math.unit(5 + 6/12, "feet"),
  45884. weight: math.unit(195, "lb"),
  45885. name: "Back",
  45886. image: {
  45887. source: "./media/characters/vant/back.svg",
  45888. extra: 1396/1320,
  45889. bottom: 20/1416
  45890. }
  45891. },
  45892. maw: {
  45893. height: math.unit(0.75, "feet"),
  45894. name: "Maw",
  45895. image: {
  45896. source: "./media/characters/vant/maw.svg"
  45897. }
  45898. },
  45899. paw: {
  45900. height: math.unit(1.07, "feet"),
  45901. name: "Paw",
  45902. image: {
  45903. source: "./media/characters/vant/paw.svg"
  45904. }
  45905. },
  45906. },
  45907. [
  45908. {
  45909. name: "Micro",
  45910. height: math.unit(0.25, "inches")
  45911. },
  45912. {
  45913. name: "Normal",
  45914. height: math.unit(5 + 6/12, "feet"),
  45915. default: true
  45916. },
  45917. {
  45918. name: "Macro",
  45919. height: math.unit(75, "feet")
  45920. },
  45921. ]
  45922. ))
  45923. characterMakers.push(() => makeCharacter(
  45924. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45925. {
  45926. front: {
  45927. height: math.unit(30, "meters"),
  45928. weight: math.unit(363, "tons"),
  45929. name: "Front",
  45930. image: {
  45931. source: "./media/characters/ahra/front.svg",
  45932. extra: 1914/1814,
  45933. bottom: 46/1960
  45934. }
  45935. },
  45936. },
  45937. [
  45938. {
  45939. name: "Macro",
  45940. height: math.unit(30, "meters"),
  45941. default: true
  45942. },
  45943. ]
  45944. ))
  45945. characterMakers.push(() => makeCharacter(
  45946. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45947. {
  45948. undressed: {
  45949. height: math.unit(2, "m"),
  45950. weight: math.unit(250, "kg"),
  45951. name: "Undressed",
  45952. image: {
  45953. source: "./media/characters/coriander/undressed.svg",
  45954. extra: 1757/1606,
  45955. bottom: 107/1864
  45956. }
  45957. },
  45958. dressed: {
  45959. height: math.unit(2, "m"),
  45960. weight: math.unit(250, "kg"),
  45961. name: "Dressed",
  45962. image: {
  45963. source: "./media/characters/coriander/dressed.svg",
  45964. extra: 1757/1606,
  45965. bottom: 107/1864
  45966. }
  45967. },
  45968. },
  45969. [
  45970. {
  45971. name: "Normal",
  45972. height: math.unit(4, "meters"),
  45973. default: true
  45974. },
  45975. {
  45976. name: "XL",
  45977. height: math.unit(6, "meters")
  45978. },
  45979. {
  45980. name: "XXL",
  45981. height: math.unit(8, "meters")
  45982. },
  45983. ]
  45984. ))
  45985. characterMakers.push(() => makeCharacter(
  45986. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45987. {
  45988. front: {
  45989. height: math.unit(6, "feet"),
  45990. name: "Front",
  45991. image: {
  45992. source: "./media/characters/syrinx/front.svg",
  45993. extra: 1557/1259,
  45994. bottom: 171/1728
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Normal",
  46001. height: math.unit(6 + 3/12, "feet"),
  46002. default: true
  46003. },
  46004. ]
  46005. ))
  46006. characterMakers.push(() => makeCharacter(
  46007. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46008. {
  46009. front: {
  46010. height: math.unit(11 + 6/12, "feet"),
  46011. weight: math.unit(1.5, "tons"),
  46012. name: "Front",
  46013. image: {
  46014. source: "./media/characters/bor/front.svg",
  46015. extra: 1189/1109,
  46016. bottom: 170/1359
  46017. }
  46018. },
  46019. },
  46020. [
  46021. {
  46022. name: "Normal",
  46023. height: math.unit(11 + 6/12, "feet"),
  46024. default: true
  46025. },
  46026. {
  46027. name: "Macro",
  46028. height: math.unit(32 + 9/12, "feet")
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46034. {
  46035. anthro: {
  46036. height: math.unit(9, "feet"),
  46037. weight: math.unit(2076, "lb"),
  46038. name: "Anthro",
  46039. image: {
  46040. source: "./media/characters/abacus/anthro.svg",
  46041. extra: 1540/1494,
  46042. bottom: 233/1773
  46043. }
  46044. },
  46045. pigeon: {
  46046. height: math.unit(1, "feet"),
  46047. name: "Pigeon",
  46048. image: {
  46049. source: "./media/characters/abacus/pigeon.svg",
  46050. extra: 528/525,
  46051. bottom: 46/574
  46052. }
  46053. },
  46054. },
  46055. [
  46056. {
  46057. name: "Normal",
  46058. height: math.unit(9, "feet"),
  46059. default: true
  46060. },
  46061. ]
  46062. ))
  46063. characterMakers.push(() => makeCharacter(
  46064. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46065. {
  46066. side: {
  46067. height: math.unit(6, "feet"),
  46068. name: "Side",
  46069. image: {
  46070. source: "./media/characters/delkhan/side.svg",
  46071. extra: 1884/1786,
  46072. bottom: 308/2192
  46073. }
  46074. },
  46075. head: {
  46076. height: math.unit(3.38, "feet"),
  46077. name: "Head",
  46078. image: {
  46079. source: "./media/characters/delkhan/head.svg"
  46080. }
  46081. },
  46082. },
  46083. [
  46084. {
  46085. name: "Normal",
  46086. height: math.unit(72, "feet"),
  46087. default: true
  46088. },
  46089. {
  46090. name: "Giant",
  46091. height: math.unit(172, "feet")
  46092. },
  46093. ]
  46094. ))
  46095. characterMakers.push(() => makeCharacter(
  46096. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46097. {
  46098. standing: {
  46099. height: math.unit(6, "feet"),
  46100. name: "Standing",
  46101. image: {
  46102. source: "./media/characters/euchidat/standing.svg",
  46103. extra: 1612/1553,
  46104. bottom: 116/1728
  46105. }
  46106. },
  46107. leaning: {
  46108. height: math.unit(6, "feet"),
  46109. name: "Leaning",
  46110. image: {
  46111. source: "./media/characters/euchidat/leaning.svg",
  46112. extra: 1719/1674,
  46113. bottom: 27/1746
  46114. }
  46115. },
  46116. },
  46117. [
  46118. {
  46119. name: "Normal",
  46120. height: math.unit(175, "feet"),
  46121. default: true
  46122. },
  46123. {
  46124. name: "Megamacro",
  46125. height: math.unit(190, "miles")
  46126. },
  46127. {
  46128. name: "Gigamacro",
  46129. height: math.unit(190000, "miles")
  46130. },
  46131. ]
  46132. ))
  46133. characterMakers.push(() => makeCharacter(
  46134. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46135. {
  46136. front: {
  46137. height: math.unit(6, "feet"),
  46138. weight: math.unit(150, "lb"),
  46139. name: "Front",
  46140. image: {
  46141. source: "./media/characters/rebecca-stack/front.svg",
  46142. extra: 1256/1201,
  46143. bottom: 18/1274
  46144. }
  46145. },
  46146. },
  46147. [
  46148. {
  46149. name: "Normal",
  46150. height: math.unit(5 + 8/12, "feet"),
  46151. default: true
  46152. },
  46153. {
  46154. name: "Demolitionist",
  46155. height: math.unit(200, "feet")
  46156. },
  46157. {
  46158. name: "Out of Control",
  46159. height: math.unit(2, "miles")
  46160. },
  46161. {
  46162. name: "Giga",
  46163. height: math.unit(7200, "miles")
  46164. },
  46165. ]
  46166. ))
  46167. characterMakers.push(() => makeCharacter(
  46168. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46169. {
  46170. front: {
  46171. height: math.unit(6, "feet"),
  46172. weight: math.unit(150, "lb"),
  46173. name: "Front",
  46174. image: {
  46175. source: "./media/characters/jenny-cartwright/front.svg",
  46176. extra: 1384/1376,
  46177. bottom: 58/1442
  46178. }
  46179. },
  46180. },
  46181. [
  46182. {
  46183. name: "Normal",
  46184. height: math.unit(6 + 7/12, "feet"),
  46185. default: true
  46186. },
  46187. {
  46188. name: "Librarian",
  46189. height: math.unit(55, "feet")
  46190. },
  46191. {
  46192. name: "Sightseer",
  46193. height: math.unit(50, "miles")
  46194. },
  46195. {
  46196. name: "Giga",
  46197. height: math.unit(30000, "miles")
  46198. },
  46199. ]
  46200. ))
  46201. characterMakers.push(() => makeCharacter(
  46202. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46203. {
  46204. nude: {
  46205. height: math.unit(8, "feet"),
  46206. weight: math.unit(225, "lb"),
  46207. name: "Nude",
  46208. image: {
  46209. source: "./media/characters/marvy/nude.svg",
  46210. extra: 1900/1683,
  46211. bottom: 89/1989
  46212. }
  46213. },
  46214. dressed: {
  46215. height: math.unit(8, "feet"),
  46216. weight: math.unit(225, "lb"),
  46217. name: "Dressed",
  46218. image: {
  46219. source: "./media/characters/marvy/dressed.svg",
  46220. extra: 1900/1683,
  46221. bottom: 89/1989
  46222. }
  46223. },
  46224. head: {
  46225. height: math.unit(2.85, "feet"),
  46226. name: "Head",
  46227. image: {
  46228. source: "./media/characters/marvy/head.svg"
  46229. }
  46230. },
  46231. },
  46232. [
  46233. {
  46234. name: "Normal",
  46235. height: math.unit(8, "feet"),
  46236. default: true
  46237. },
  46238. ]
  46239. ))
  46240. characterMakers.push(() => makeCharacter(
  46241. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46242. {
  46243. front: {
  46244. height: math.unit(8, "feet"),
  46245. weight: math.unit(250, "lb"),
  46246. name: "Front",
  46247. image: {
  46248. source: "./media/characters/leah/front.svg",
  46249. extra: 1257/1149,
  46250. bottom: 109/1366
  46251. }
  46252. },
  46253. },
  46254. [
  46255. {
  46256. name: "Normal",
  46257. height: math.unit(8, "feet"),
  46258. default: true
  46259. },
  46260. {
  46261. name: "Minimacro",
  46262. height: math.unit(40, "feet")
  46263. },
  46264. {
  46265. name: "Macro",
  46266. height: math.unit(124, "feet")
  46267. },
  46268. {
  46269. name: "Megamacro",
  46270. height: math.unit(850, "feet")
  46271. },
  46272. ]
  46273. ))
  46274. characterMakers.push(() => makeCharacter(
  46275. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46276. {
  46277. side: {
  46278. height: math.unit(13 + 6/12, "feet"),
  46279. weight: math.unit(3200, "lb"),
  46280. name: "Side",
  46281. image: {
  46282. source: "./media/characters/alvir/side.svg",
  46283. extra: 896/589,
  46284. bottom: 26/922
  46285. }
  46286. },
  46287. },
  46288. [
  46289. {
  46290. name: "Normal",
  46291. height: math.unit(13 + 6/12, "feet"),
  46292. default: true
  46293. },
  46294. ]
  46295. ))
  46296. characterMakers.push(() => makeCharacter(
  46297. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46298. {
  46299. front: {
  46300. height: math.unit(5 + 4/12, "feet"),
  46301. weight: math.unit(236, "lb"),
  46302. name: "Front",
  46303. image: {
  46304. source: "./media/characters/zaina-khalil/front.svg",
  46305. extra: 1533/1485,
  46306. bottom: 94/1627
  46307. }
  46308. },
  46309. side: {
  46310. height: math.unit(5 + 4/12, "feet"),
  46311. weight: math.unit(236, "lb"),
  46312. name: "Side",
  46313. image: {
  46314. source: "./media/characters/zaina-khalil/side.svg",
  46315. extra: 1537/1498,
  46316. bottom: 66/1603
  46317. }
  46318. },
  46319. back: {
  46320. height: math.unit(5 + 4/12, "feet"),
  46321. weight: math.unit(236, "lb"),
  46322. name: "Back",
  46323. image: {
  46324. source: "./media/characters/zaina-khalil/back.svg",
  46325. extra: 1546/1494,
  46326. bottom: 89/1635
  46327. }
  46328. },
  46329. },
  46330. [
  46331. {
  46332. name: "Normal",
  46333. height: math.unit(5 + 4/12, "feet"),
  46334. default: true
  46335. },
  46336. ]
  46337. ))
  46338. characterMakers.push(() => makeCharacter(
  46339. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46340. {
  46341. side: {
  46342. height: math.unit(12, "feet"),
  46343. weight: math.unit(4000, "lb"),
  46344. name: "Side",
  46345. image: {
  46346. source: "./media/characters/terry/side.svg",
  46347. extra: 1518/1439,
  46348. bottom: 149/1667
  46349. }
  46350. },
  46351. },
  46352. [
  46353. {
  46354. name: "Normal",
  46355. height: math.unit(12, "feet"),
  46356. default: true
  46357. },
  46358. ]
  46359. ))
  46360. characterMakers.push(() => makeCharacter(
  46361. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46362. {
  46363. front: {
  46364. height: math.unit(12, "feet"),
  46365. weight: math.unit(1500, "lb"),
  46366. name: "Front",
  46367. image: {
  46368. source: "./media/characters/kahea/front.svg",
  46369. extra: 1722/1617,
  46370. bottom: 179/1901
  46371. }
  46372. },
  46373. },
  46374. [
  46375. {
  46376. name: "Normal",
  46377. height: math.unit(12, "feet"),
  46378. default: true
  46379. },
  46380. ]
  46381. ))
  46382. characterMakers.push(() => makeCharacter(
  46383. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46384. {
  46385. demonFront: {
  46386. height: math.unit(36, "feet"),
  46387. name: "Front",
  46388. image: {
  46389. source: "./media/characters/alex-xuria/demon-front.svg",
  46390. extra: 1705/1673,
  46391. bottom: 198/1903
  46392. },
  46393. form: "demon",
  46394. default: true
  46395. },
  46396. demonBack: {
  46397. height: math.unit(36, "feet"),
  46398. name: "Back",
  46399. image: {
  46400. source: "./media/characters/alex-xuria/demon-back.svg",
  46401. extra: 1725/1693,
  46402. bottom: 70/1795
  46403. },
  46404. form: "demon"
  46405. },
  46406. demonHead: {
  46407. height: math.unit(2.14, "meters"),
  46408. name: "Head",
  46409. image: {
  46410. source: "./media/characters/alex-xuria/demon-head.svg"
  46411. },
  46412. form: "demon"
  46413. },
  46414. demonHand: {
  46415. height: math.unit(1.61, "meters"),
  46416. name: "Hand",
  46417. image: {
  46418. source: "./media/characters/alex-xuria/demon-hand.svg"
  46419. },
  46420. form: "demon"
  46421. },
  46422. demonPaw: {
  46423. height: math.unit(1.35, "meters"),
  46424. name: "Paw",
  46425. image: {
  46426. source: "./media/characters/alex-xuria/demon-paw.svg"
  46427. },
  46428. form: "demon"
  46429. },
  46430. demonFoot: {
  46431. height: math.unit(2.2, "meters"),
  46432. name: "Foot",
  46433. image: {
  46434. source: "./media/characters/alex-xuria/demon-foot.svg"
  46435. },
  46436. form: "demon"
  46437. },
  46438. demonCock: {
  46439. height: math.unit(1.74, "meters"),
  46440. name: "Cock",
  46441. image: {
  46442. source: "./media/characters/alex-xuria/demon-cock.svg"
  46443. },
  46444. form: "demon"
  46445. },
  46446. demonTailClosed: {
  46447. height: math.unit(1.47, "meters"),
  46448. name: "Tail (Closed)",
  46449. image: {
  46450. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46451. },
  46452. form: "demon"
  46453. },
  46454. demonTailOpen: {
  46455. height: math.unit(2.85, "meters"),
  46456. name: "Tail (Open)",
  46457. image: {
  46458. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46459. },
  46460. form: "demon"
  46461. },
  46462. incubusFront: {
  46463. height: math.unit(12, "feet"),
  46464. name: "Front",
  46465. image: {
  46466. source: "./media/characters/alex-xuria/incubus-front.svg",
  46467. extra: 1754/1677,
  46468. bottom: 125/1879
  46469. },
  46470. form: "incubus",
  46471. default: true
  46472. },
  46473. incubusBack: {
  46474. height: math.unit(12, "feet"),
  46475. name: "Back",
  46476. image: {
  46477. source: "./media/characters/alex-xuria/incubus-back.svg",
  46478. extra: 1702/1647,
  46479. bottom: 30/1732
  46480. },
  46481. form: "incubus"
  46482. },
  46483. incubusHead: {
  46484. height: math.unit(3.45, "feet"),
  46485. name: "Head",
  46486. image: {
  46487. source: "./media/characters/alex-xuria/incubus-head.svg"
  46488. },
  46489. form: "incubus"
  46490. },
  46491. rabbitFront: {
  46492. height: math.unit(6, "feet"),
  46493. name: "Front",
  46494. image: {
  46495. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46496. extra: 1369/1349,
  46497. bottom: 45/1414
  46498. },
  46499. form: "rabbit",
  46500. default: true
  46501. },
  46502. rabbitSide: {
  46503. height: math.unit(6, "feet"),
  46504. name: "Side",
  46505. image: {
  46506. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46507. extra: 1370/1356,
  46508. bottom: 37/1407
  46509. },
  46510. form: "rabbit"
  46511. },
  46512. rabbitBack: {
  46513. height: math.unit(6, "feet"),
  46514. name: "Back",
  46515. image: {
  46516. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46517. extra: 1375/1358,
  46518. bottom: 43/1418
  46519. },
  46520. form: "rabbit"
  46521. },
  46522. },
  46523. [
  46524. {
  46525. name: "Normal",
  46526. height: math.unit(6, "feet"),
  46527. default: true,
  46528. form: "rabbit"
  46529. },
  46530. {
  46531. name: "Incubus",
  46532. height: math.unit(12, "feet"),
  46533. default: true,
  46534. form: "incubus"
  46535. },
  46536. {
  46537. name: "Demon",
  46538. height: math.unit(36, "feet"),
  46539. default: true,
  46540. form: "demon"
  46541. }
  46542. ],
  46543. {
  46544. "demon": {
  46545. name: "Demon",
  46546. default: true
  46547. },
  46548. "incubus": {
  46549. name: "Incubus",
  46550. },
  46551. "rabbit": {
  46552. name: "Rabbit"
  46553. }
  46554. }
  46555. ))
  46556. characterMakers.push(() => makeCharacter(
  46557. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46558. {
  46559. front: {
  46560. height: math.unit(7 + 5/12, "feet"),
  46561. weight: math.unit(510, "lb"),
  46562. name: "Front",
  46563. image: {
  46564. source: "./media/characters/syrup/front.svg",
  46565. extra: 932/916,
  46566. bottom: 26/958
  46567. }
  46568. },
  46569. },
  46570. [
  46571. {
  46572. name: "Normal",
  46573. height: math.unit(7 + 5/12, "feet"),
  46574. default: true
  46575. },
  46576. {
  46577. name: "Big",
  46578. height: math.unit(50, "feet")
  46579. },
  46580. {
  46581. name: "Macro",
  46582. height: math.unit(300, "feet")
  46583. },
  46584. {
  46585. name: "Megamacro",
  46586. height: math.unit(1, "mile")
  46587. },
  46588. ]
  46589. ))
  46590. characterMakers.push(() => makeCharacter(
  46591. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46592. {
  46593. front: {
  46594. height: math.unit(6 + 9/12, "feet"),
  46595. name: "Front",
  46596. image: {
  46597. source: "./media/characters/zeimne/front.svg",
  46598. extra: 1969/1806,
  46599. bottom: 53/2022
  46600. }
  46601. },
  46602. },
  46603. [
  46604. {
  46605. name: "Normal",
  46606. height: math.unit(6 + 9/12, "feet"),
  46607. default: true
  46608. },
  46609. {
  46610. name: "Giant",
  46611. height: math.unit(550, "feet")
  46612. },
  46613. {
  46614. name: "Mega",
  46615. height: math.unit(3, "miles")
  46616. },
  46617. {
  46618. name: "Giga",
  46619. height: math.unit(250, "miles")
  46620. },
  46621. {
  46622. name: "Tera",
  46623. height: math.unit(1, "AU")
  46624. },
  46625. ]
  46626. ))
  46627. characterMakers.push(() => makeCharacter(
  46628. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46629. {
  46630. front: {
  46631. height: math.unit(5 + 2/12, "feet"),
  46632. name: "Front",
  46633. image: {
  46634. source: "./media/characters/grar/front.svg",
  46635. extra: 1331/1119,
  46636. bottom: 60/1391
  46637. }
  46638. },
  46639. back: {
  46640. height: math.unit(5 + 2/12, "feet"),
  46641. name: "Back",
  46642. image: {
  46643. source: "./media/characters/grar/back.svg",
  46644. extra: 1385/1169,
  46645. bottom: 23/1408
  46646. }
  46647. },
  46648. },
  46649. [
  46650. {
  46651. name: "Normal",
  46652. height: math.unit(5 + 2/12, "feet"),
  46653. default: true
  46654. },
  46655. ]
  46656. ))
  46657. characterMakers.push(() => makeCharacter(
  46658. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46659. {
  46660. front: {
  46661. height: math.unit(13 + 7/12, "feet"),
  46662. weight: math.unit(2200, "lb"),
  46663. name: "Front",
  46664. image: {
  46665. source: "./media/characters/endraya/front.svg",
  46666. extra: 1289/1215,
  46667. bottom: 50/1339
  46668. }
  46669. },
  46670. nude: {
  46671. height: math.unit(13 + 7/12, "feet"),
  46672. weight: math.unit(2200, "lb"),
  46673. name: "Nude",
  46674. image: {
  46675. source: "./media/characters/endraya/nude.svg",
  46676. extra: 1247/1171,
  46677. bottom: 40/1287
  46678. }
  46679. },
  46680. head: {
  46681. height: math.unit(2.6, "feet"),
  46682. name: "Head",
  46683. image: {
  46684. source: "./media/characters/endraya/head.svg"
  46685. }
  46686. },
  46687. slit: {
  46688. height: math.unit(3.4, "feet"),
  46689. name: "Slit",
  46690. image: {
  46691. source: "./media/characters/endraya/slit.svg"
  46692. }
  46693. },
  46694. },
  46695. [
  46696. {
  46697. name: "Normal",
  46698. height: math.unit(13 + 7/12, "feet"),
  46699. default: true
  46700. },
  46701. {
  46702. name: "Macro",
  46703. height: math.unit(200, "feet")
  46704. },
  46705. ]
  46706. ))
  46707. characterMakers.push(() => makeCharacter(
  46708. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46709. {
  46710. front: {
  46711. height: math.unit(1.81, "meters"),
  46712. weight: math.unit(69, "kg"),
  46713. name: "Front",
  46714. image: {
  46715. source: "./media/characters/rodryana/front.svg",
  46716. extra: 2002/1921,
  46717. bottom: 53/2055
  46718. }
  46719. },
  46720. back: {
  46721. height: math.unit(1.81, "meters"),
  46722. weight: math.unit(69, "kg"),
  46723. name: "Back",
  46724. image: {
  46725. source: "./media/characters/rodryana/back.svg",
  46726. extra: 1993/1926,
  46727. bottom: 48/2041
  46728. }
  46729. },
  46730. maw: {
  46731. height: math.unit(0.19769417475, "meters"),
  46732. name: "Maw",
  46733. image: {
  46734. source: "./media/characters/rodryana/maw.svg"
  46735. }
  46736. },
  46737. slit: {
  46738. height: math.unit(0.31631067961, "meters"),
  46739. name: "Slit",
  46740. image: {
  46741. source: "./media/characters/rodryana/slit.svg"
  46742. }
  46743. },
  46744. },
  46745. [
  46746. {
  46747. name: "Normal",
  46748. height: math.unit(1.81, "meters")
  46749. },
  46750. {
  46751. name: "Mini Macro",
  46752. height: math.unit(181, "meters")
  46753. },
  46754. {
  46755. name: "Macro",
  46756. height: math.unit(452, "meters"),
  46757. default: true
  46758. },
  46759. {
  46760. name: "Mega Macro",
  46761. height: math.unit(1.375, "km")
  46762. },
  46763. {
  46764. name: "Giga Macro",
  46765. height: math.unit(13.575, "km")
  46766. },
  46767. ]
  46768. ))
  46769. characterMakers.push(() => makeCharacter(
  46770. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46771. {
  46772. front: {
  46773. height: math.unit(6, "feet"),
  46774. weight: math.unit(1000, "lb"),
  46775. name: "Front",
  46776. image: {
  46777. source: "./media/characters/asaya/front.svg",
  46778. extra: 1460/1200,
  46779. bottom: 71/1531
  46780. }
  46781. },
  46782. },
  46783. [
  46784. {
  46785. name: "Normal",
  46786. height: math.unit(8, "km"),
  46787. default: true
  46788. },
  46789. ]
  46790. ))
  46791. characterMakers.push(() => makeCharacter(
  46792. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46793. {
  46794. front: {
  46795. height: math.unit(3.5, "meters"),
  46796. name: "Front",
  46797. image: {
  46798. source: "./media/characters/sarzu-and-israz/front.svg",
  46799. extra: 1570/1558,
  46800. bottom: 150/1720
  46801. },
  46802. },
  46803. back: {
  46804. height: math.unit(3.5, "meters"),
  46805. name: "Back",
  46806. image: {
  46807. source: "./media/characters/sarzu-and-israz/back.svg",
  46808. extra: 1523/1509,
  46809. bottom: 132/1655
  46810. },
  46811. },
  46812. frontFemale: {
  46813. height: math.unit(3.5, "meters"),
  46814. name: "Front (Female)",
  46815. image: {
  46816. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46817. extra: 1570/1558,
  46818. bottom: 150/1720
  46819. },
  46820. },
  46821. frontHerm: {
  46822. height: math.unit(3.5, "meters"),
  46823. name: "Front (Herm)",
  46824. image: {
  46825. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46826. extra: 1570/1558,
  46827. bottom: 150/1720
  46828. },
  46829. },
  46830. },
  46831. [
  46832. {
  46833. name: "Normal",
  46834. height: math.unit(3.5, "meters"),
  46835. default: true,
  46836. },
  46837. {
  46838. name: "Macro",
  46839. height: math.unit(65.5, "meters"),
  46840. },
  46841. ],
  46842. ))
  46843. characterMakers.push(() => makeCharacter(
  46844. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46845. {
  46846. front: {
  46847. height: math.unit(6, "feet"),
  46848. weight: math.unit(250, "lb"),
  46849. name: "Front",
  46850. image: {
  46851. source: "./media/characters/zenimma/front.svg",
  46852. extra: 1346/1320,
  46853. bottom: 58/1404
  46854. }
  46855. },
  46856. back: {
  46857. height: math.unit(6, "feet"),
  46858. weight: math.unit(250, "lb"),
  46859. name: "Back",
  46860. image: {
  46861. source: "./media/characters/zenimma/back.svg",
  46862. extra: 1324/1308,
  46863. bottom: 44/1368
  46864. }
  46865. },
  46866. dick: {
  46867. height: math.unit(1.44, "feet"),
  46868. name: "Dick",
  46869. image: {
  46870. source: "./media/characters/zenimma/dick.svg"
  46871. }
  46872. },
  46873. },
  46874. [
  46875. {
  46876. name: "Canon Height",
  46877. height: math.unit(66, "miles"),
  46878. default: true
  46879. },
  46880. ]
  46881. ))
  46882. characterMakers.push(() => makeCharacter(
  46883. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46884. {
  46885. nude: {
  46886. height: math.unit(6, "feet"),
  46887. weight: math.unit(150, "lb"),
  46888. name: "Nude",
  46889. image: {
  46890. source: "./media/characters/shavon/nude.svg",
  46891. extra: 1242/1096,
  46892. bottom: 98/1340
  46893. }
  46894. },
  46895. dressed: {
  46896. height: math.unit(6, "feet"),
  46897. weight: math.unit(150, "lb"),
  46898. name: "Dressed",
  46899. image: {
  46900. source: "./media/characters/shavon/dressed.svg",
  46901. extra: 1242/1096,
  46902. bottom: 98/1340
  46903. }
  46904. },
  46905. },
  46906. [
  46907. {
  46908. name: "Macro",
  46909. height: math.unit(255, "feet"),
  46910. default: true
  46911. },
  46912. ]
  46913. ))
  46914. characterMakers.push(() => makeCharacter(
  46915. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46916. {
  46917. front: {
  46918. height: math.unit(6, "feet"),
  46919. name: "Front",
  46920. image: {
  46921. source: "./media/characters/steph/front.svg",
  46922. extra: 1430/1330,
  46923. bottom: 54/1484
  46924. }
  46925. },
  46926. },
  46927. [
  46928. {
  46929. name: "Normal",
  46930. height: math.unit(6, "feet"),
  46931. default: true
  46932. },
  46933. ]
  46934. ))
  46935. characterMakers.push(() => makeCharacter(
  46936. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46937. {
  46938. front: {
  46939. height: math.unit(9, "feet"),
  46940. weight: math.unit(400, "lb"),
  46941. name: "Front",
  46942. image: {
  46943. source: "./media/characters/kil'aman/front.svg",
  46944. extra: 1210/1159,
  46945. bottom: 109/1319
  46946. }
  46947. },
  46948. head: {
  46949. height: math.unit(2.14, "feet"),
  46950. name: "Head",
  46951. image: {
  46952. source: "./media/characters/kil'aman/head.svg"
  46953. }
  46954. },
  46955. maw: {
  46956. height: math.unit(1.21, "feet"),
  46957. name: "Maw",
  46958. image: {
  46959. source: "./media/characters/kil'aman/maw.svg"
  46960. }
  46961. },
  46962. foot: {
  46963. height: math.unit(1.7, "feet"),
  46964. name: "Foot",
  46965. image: {
  46966. source: "./media/characters/kil'aman/foot.svg"
  46967. }
  46968. },
  46969. dick: {
  46970. height: math.unit(2.1, "feet"),
  46971. name: "Dick",
  46972. image: {
  46973. source: "./media/characters/kil'aman/dick.svg"
  46974. }
  46975. },
  46976. },
  46977. [
  46978. {
  46979. name: "Normal",
  46980. height: math.unit(9, "feet")
  46981. },
  46982. {
  46983. name: "Canon Height",
  46984. height: math.unit(10, "miles"),
  46985. default: true
  46986. },
  46987. {
  46988. name: "Maximum",
  46989. height: math.unit(6e9, "miles")
  46990. },
  46991. ]
  46992. ))
  46993. characterMakers.push(() => makeCharacter(
  46994. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46995. {
  46996. front: {
  46997. height: math.unit(90, "feet"),
  46998. weight: math.unit(675000, "lb"),
  46999. name: "Front",
  47000. image: {
  47001. source: "./media/characters/qadan/front.svg",
  47002. extra: 1012/1004,
  47003. bottom: 78/1090
  47004. }
  47005. },
  47006. back: {
  47007. height: math.unit(90, "feet"),
  47008. weight: math.unit(675000, "lb"),
  47009. name: "Back",
  47010. image: {
  47011. source: "./media/characters/qadan/back.svg",
  47012. extra: 1042/1031,
  47013. bottom: 55/1097
  47014. }
  47015. },
  47016. armored: {
  47017. height: math.unit(90, "feet"),
  47018. weight: math.unit(675000, "lb"),
  47019. name: "Armored",
  47020. image: {
  47021. source: "./media/characters/qadan/armored.svg",
  47022. extra: 1047/1037,
  47023. bottom: 48/1095
  47024. }
  47025. },
  47026. },
  47027. [
  47028. {
  47029. name: "Normal",
  47030. height: math.unit(90, "feet"),
  47031. default: true
  47032. },
  47033. ]
  47034. ))
  47035. characterMakers.push(() => makeCharacter(
  47036. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47037. {
  47038. front: {
  47039. height: math.unit(6, "feet"),
  47040. weight: math.unit(225, "lb"),
  47041. name: "Front",
  47042. image: {
  47043. source: "./media/characters/brooke/front.svg",
  47044. extra: 1050/1010,
  47045. bottom: 66/1116
  47046. }
  47047. },
  47048. back: {
  47049. height: math.unit(6, "feet"),
  47050. weight: math.unit(225, "lb"),
  47051. name: "Back",
  47052. image: {
  47053. source: "./media/characters/brooke/back.svg",
  47054. extra: 1053/1013,
  47055. bottom: 41/1094
  47056. }
  47057. },
  47058. dressed: {
  47059. height: math.unit(6, "feet"),
  47060. weight: math.unit(225, "lb"),
  47061. name: "Dressed",
  47062. image: {
  47063. source: "./media/characters/brooke/dressed.svg",
  47064. extra: 1050/1010,
  47065. bottom: 66/1116
  47066. }
  47067. },
  47068. },
  47069. [
  47070. {
  47071. name: "Canon Height",
  47072. height: math.unit(500, "miles"),
  47073. default: true
  47074. },
  47075. ]
  47076. ))
  47077. characterMakers.push(() => makeCharacter(
  47078. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47079. {
  47080. front: {
  47081. height: math.unit(6 + 2/12, "feet"),
  47082. weight: math.unit(210, "lb"),
  47083. name: "Front",
  47084. image: {
  47085. source: "./media/characters/wubs/front.svg",
  47086. extra: 1345/1325,
  47087. bottom: 70/1415
  47088. }
  47089. },
  47090. back: {
  47091. height: math.unit(6 + 2/12, "feet"),
  47092. weight: math.unit(210, "lb"),
  47093. name: "Back",
  47094. image: {
  47095. source: "./media/characters/wubs/back.svg",
  47096. extra: 1296/1275,
  47097. bottom: 58/1354
  47098. }
  47099. },
  47100. },
  47101. [
  47102. {
  47103. name: "Normal",
  47104. height: math.unit(6 + 2/12, "feet"),
  47105. default: true
  47106. },
  47107. {
  47108. name: "Macro",
  47109. height: math.unit(1000, "feet")
  47110. },
  47111. {
  47112. name: "Megamacro",
  47113. height: math.unit(1, "mile")
  47114. },
  47115. ]
  47116. ))
  47117. characterMakers.push(() => makeCharacter(
  47118. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47119. {
  47120. front: {
  47121. height: math.unit(4, "feet"),
  47122. weight: math.unit(120, "lb"),
  47123. name: "Front",
  47124. image: {
  47125. source: "./media/characters/blue/front.svg",
  47126. extra: 1636/1525,
  47127. bottom: 43/1679
  47128. }
  47129. },
  47130. back: {
  47131. height: math.unit(4, "feet"),
  47132. weight: math.unit(120, "lb"),
  47133. name: "Back",
  47134. image: {
  47135. source: "./media/characters/blue/back.svg",
  47136. extra: 1660/1560,
  47137. bottom: 57/1717
  47138. }
  47139. },
  47140. paws: {
  47141. height: math.unit(0.826, "feet"),
  47142. name: "Paws",
  47143. image: {
  47144. source: "./media/characters/blue/paws.svg"
  47145. }
  47146. },
  47147. },
  47148. [
  47149. {
  47150. name: "Micro",
  47151. height: math.unit(3, "inches")
  47152. },
  47153. {
  47154. name: "Normal",
  47155. height: math.unit(4, "feet"),
  47156. default: true
  47157. },
  47158. {
  47159. name: "Femenine Form",
  47160. height: math.unit(14, "feet")
  47161. },
  47162. {
  47163. name: "Werebat Form",
  47164. height: math.unit(18, "feet")
  47165. },
  47166. ]
  47167. ))
  47168. characterMakers.push(() => makeCharacter(
  47169. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47170. {
  47171. female: {
  47172. height: math.unit(7 + 4/12, "feet"),
  47173. weight: math.unit(243, "lb"),
  47174. name: "Female",
  47175. image: {
  47176. source: "./media/characters/kaya/female.svg",
  47177. extra: 975/898,
  47178. bottom: 34/1009
  47179. }
  47180. },
  47181. herm: {
  47182. height: math.unit(7 + 4/12, "feet"),
  47183. weight: math.unit(243, "lb"),
  47184. name: "Herm",
  47185. image: {
  47186. source: "./media/characters/kaya/herm.svg",
  47187. extra: 975/898,
  47188. bottom: 34/1009
  47189. }
  47190. },
  47191. },
  47192. [
  47193. {
  47194. name: "Normal",
  47195. height: math.unit(7 + 4/12, "feet"),
  47196. default: true
  47197. },
  47198. ]
  47199. ))
  47200. characterMakers.push(() => makeCharacter(
  47201. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47202. {
  47203. female: {
  47204. height: math.unit(9 + 4/12, "feet"),
  47205. weight: math.unit(398, "lb"),
  47206. name: "Female",
  47207. image: {
  47208. source: "./media/characters/kassandra/female.svg",
  47209. extra: 908/839,
  47210. bottom: 61/969
  47211. }
  47212. },
  47213. intersex: {
  47214. height: math.unit(9 + 4/12, "feet"),
  47215. weight: math.unit(398, "lb"),
  47216. name: "Intersex",
  47217. image: {
  47218. source: "./media/characters/kassandra/intersex.svg",
  47219. extra: 908/839,
  47220. bottom: 61/969
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Normal",
  47227. height: math.unit(9 + 4/12, "feet"),
  47228. default: true
  47229. },
  47230. ]
  47231. ))
  47232. characterMakers.push(() => makeCharacter(
  47233. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47234. {
  47235. front: {
  47236. height: math.unit(3, "meters"),
  47237. name: "Front",
  47238. image: {
  47239. source: "./media/characters/amy/front.svg",
  47240. extra: 1380/1343,
  47241. bottom: 70/1450
  47242. }
  47243. },
  47244. back: {
  47245. height: math.unit(3, "meters"),
  47246. name: "Back",
  47247. image: {
  47248. source: "./media/characters/amy/back.svg",
  47249. extra: 1380/1347,
  47250. bottom: 66/1446
  47251. }
  47252. },
  47253. },
  47254. [
  47255. {
  47256. name: "Normal",
  47257. height: math.unit(3, "meters"),
  47258. default: true
  47259. },
  47260. ]
  47261. ))
  47262. characterMakers.push(() => makeCharacter(
  47263. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47264. {
  47265. side: {
  47266. height: math.unit(47, "cm"),
  47267. weight: math.unit(10.8, "kg"),
  47268. name: "Side",
  47269. image: {
  47270. source: "./media/characters/alphaschakal/side.svg",
  47271. extra: 1058/568,
  47272. bottom: 62/1120
  47273. }
  47274. },
  47275. back: {
  47276. height: math.unit(78, "cm"),
  47277. weight: math.unit(10.8, "kg"),
  47278. name: "Back",
  47279. image: {
  47280. source: "./media/characters/alphaschakal/back.svg",
  47281. extra: 1102/942,
  47282. bottom: 185/1287
  47283. }
  47284. },
  47285. head: {
  47286. height: math.unit(28, "cm"),
  47287. name: "Head",
  47288. image: {
  47289. source: "./media/characters/alphaschakal/head.svg",
  47290. extra: 696/508,
  47291. bottom: 0/696
  47292. }
  47293. },
  47294. paw: {
  47295. height: math.unit(16, "cm"),
  47296. name: "Paw",
  47297. image: {
  47298. source: "./media/characters/alphaschakal/paw.svg"
  47299. }
  47300. },
  47301. },
  47302. [
  47303. {
  47304. name: "Normal",
  47305. height: math.unit(47, "cm"),
  47306. default: true
  47307. },
  47308. {
  47309. name: "Macro",
  47310. height: math.unit(340, "cm")
  47311. },
  47312. ]
  47313. ))
  47314. characterMakers.push(() => makeCharacter(
  47315. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47316. {
  47317. front: {
  47318. height: math.unit(36, "earths"),
  47319. name: "Front",
  47320. image: {
  47321. source: "./media/characters/ecobyss/front.svg",
  47322. extra: 1282/1215,
  47323. bottom: 11/1293
  47324. }
  47325. },
  47326. back: {
  47327. height: math.unit(36, "earths"),
  47328. name: "Back",
  47329. image: {
  47330. source: "./media/characters/ecobyss/back.svg",
  47331. extra: 1291/1222,
  47332. bottom: 8/1299
  47333. }
  47334. },
  47335. },
  47336. [
  47337. {
  47338. name: "Normal",
  47339. height: math.unit(36, "earths"),
  47340. default: true
  47341. },
  47342. ]
  47343. ))
  47344. characterMakers.push(() => makeCharacter(
  47345. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47346. {
  47347. front: {
  47348. height: math.unit(12, "feet"),
  47349. name: "Front",
  47350. image: {
  47351. source: "./media/characters/vasuk/front.svg",
  47352. extra: 1326/1207,
  47353. bottom: 64/1390
  47354. }
  47355. },
  47356. },
  47357. [
  47358. {
  47359. name: "Normal",
  47360. height: math.unit(12, "feet"),
  47361. default: true
  47362. },
  47363. ]
  47364. ))
  47365. characterMakers.push(() => makeCharacter(
  47366. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47367. {
  47368. side: {
  47369. height: math.unit(100, "feet"),
  47370. name: "Side",
  47371. image: {
  47372. source: "./media/characters/linneaus/side.svg",
  47373. extra: 987/807,
  47374. bottom: 47/1034
  47375. }
  47376. },
  47377. },
  47378. [
  47379. {
  47380. name: "Macro",
  47381. height: math.unit(100, "feet"),
  47382. default: true
  47383. },
  47384. ]
  47385. ))
  47386. characterMakers.push(() => makeCharacter(
  47387. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47388. {
  47389. front: {
  47390. height: math.unit(8, "feet"),
  47391. weight: math.unit(1200, "lb"),
  47392. name: "Front",
  47393. image: {
  47394. source: "./media/characters/nyterious-daligdig/front.svg",
  47395. extra: 1284/1094,
  47396. bottom: 84/1368
  47397. }
  47398. },
  47399. back: {
  47400. height: math.unit(8, "feet"),
  47401. weight: math.unit(1200, "lb"),
  47402. name: "Back",
  47403. image: {
  47404. source: "./media/characters/nyterious-daligdig/back.svg",
  47405. extra: 1301/1121,
  47406. bottom: 129/1430
  47407. }
  47408. },
  47409. mouth: {
  47410. height: math.unit(1.464, "feet"),
  47411. name: "Mouth",
  47412. image: {
  47413. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47414. }
  47415. },
  47416. },
  47417. [
  47418. {
  47419. name: "Small",
  47420. height: math.unit(8, "feet"),
  47421. default: true
  47422. },
  47423. {
  47424. name: "Normal",
  47425. height: math.unit(15, "feet")
  47426. },
  47427. {
  47428. name: "Macro",
  47429. height: math.unit(90, "feet")
  47430. },
  47431. ]
  47432. ))
  47433. characterMakers.push(() => makeCharacter(
  47434. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47435. {
  47436. front: {
  47437. height: math.unit(7 + 4/12, "feet"),
  47438. weight: math.unit(252, "lb"),
  47439. name: "Front",
  47440. image: {
  47441. source: "./media/characters/bandel/front.svg",
  47442. extra: 1946/1775,
  47443. bottom: 26/1972
  47444. }
  47445. },
  47446. back: {
  47447. height: math.unit(7 + 4/12, "feet"),
  47448. weight: math.unit(252, "lb"),
  47449. name: "Back",
  47450. image: {
  47451. source: "./media/characters/bandel/back.svg",
  47452. extra: 1940/1770,
  47453. bottom: 25/1965
  47454. }
  47455. },
  47456. maw: {
  47457. height: math.unit(2.15, "feet"),
  47458. name: "Maw",
  47459. image: {
  47460. source: "./media/characters/bandel/maw.svg"
  47461. }
  47462. },
  47463. stomach: {
  47464. height: math.unit(1.95, "feet"),
  47465. name: "Stomach",
  47466. image: {
  47467. source: "./media/characters/bandel/stomach.svg"
  47468. }
  47469. },
  47470. },
  47471. [
  47472. {
  47473. name: "Normal",
  47474. height: math.unit(7 + 4/12, "feet"),
  47475. default: true
  47476. },
  47477. ]
  47478. ))
  47479. characterMakers.push(() => makeCharacter(
  47480. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47481. {
  47482. front: {
  47483. height: math.unit(10 + 5/12, "feet"),
  47484. weight: math.unit(773.5, "kg"),
  47485. name: "Front",
  47486. image: {
  47487. source: "./media/characters/zed/front.svg",
  47488. extra: 987/941,
  47489. bottom: 52/1039
  47490. }
  47491. },
  47492. },
  47493. [
  47494. {
  47495. name: "Short",
  47496. height: math.unit(5 + 4/12, "feet")
  47497. },
  47498. {
  47499. name: "Average",
  47500. height: math.unit(10 + 5/12, "feet"),
  47501. default: true
  47502. },
  47503. {
  47504. name: "Mini-Macro",
  47505. height: math.unit(24 + 9/12, "feet")
  47506. },
  47507. {
  47508. name: "Macro",
  47509. height: math.unit(249, "feet")
  47510. },
  47511. {
  47512. name: "Mega-Macro",
  47513. height: math.unit(12490, "feet")
  47514. },
  47515. {
  47516. name: "Giga-Macro",
  47517. height: math.unit(24.9, "miles")
  47518. },
  47519. {
  47520. name: "Tera-Macro",
  47521. height: math.unit(24900, "miles")
  47522. },
  47523. {
  47524. name: "Cosmic Scale",
  47525. height: math.unit(38.9, "lightyears")
  47526. },
  47527. {
  47528. name: "Universal Scale",
  47529. height: math.unit(138e12, "lightyears")
  47530. },
  47531. ]
  47532. ))
  47533. characterMakers.push(() => makeCharacter(
  47534. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47535. {
  47536. front: {
  47537. height: math.unit(1561, "inches"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/ivan/front.svg",
  47541. extra: 1126/1071,
  47542. bottom: 26/1152
  47543. }
  47544. },
  47545. back: {
  47546. height: math.unit(1561, "inches"),
  47547. name: "Back",
  47548. image: {
  47549. source: "./media/characters/ivan/back.svg",
  47550. extra: 1134/1079,
  47551. bottom: 30/1164
  47552. }
  47553. },
  47554. },
  47555. [
  47556. {
  47557. name: "Normal",
  47558. height: math.unit(1561, "inches"),
  47559. default: true
  47560. },
  47561. ]
  47562. ))
  47563. characterMakers.push(() => makeCharacter(
  47564. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47565. {
  47566. front: {
  47567. height: math.unit(5 + 7/12, "feet"),
  47568. weight: math.unit(150, "lb"),
  47569. name: "Front",
  47570. image: {
  47571. source: "./media/characters/robin-arctic-hare/front.svg",
  47572. extra: 1148/974,
  47573. bottom: 20/1168
  47574. }
  47575. },
  47576. },
  47577. [
  47578. {
  47579. name: "Normal",
  47580. height: math.unit(5 + 7/12, "feet"),
  47581. default: true
  47582. },
  47583. ]
  47584. ))
  47585. characterMakers.push(() => makeCharacter(
  47586. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47587. {
  47588. side: {
  47589. height: math.unit(5, "feet"),
  47590. name: "Side",
  47591. image: {
  47592. source: "./media/characters/birch/side.svg",
  47593. extra: 985/796,
  47594. bottom: 111/1096
  47595. }
  47596. },
  47597. },
  47598. [
  47599. {
  47600. name: "Normal",
  47601. height: math.unit(5, "feet"),
  47602. default: true
  47603. },
  47604. ]
  47605. ))
  47606. characterMakers.push(() => makeCharacter(
  47607. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47608. {
  47609. front: {
  47610. height: math.unit(4, "feet"),
  47611. name: "Front",
  47612. image: {
  47613. source: "./media/characters/rasp/front.svg",
  47614. extra: 561/478,
  47615. bottom: 74/635
  47616. }
  47617. },
  47618. },
  47619. [
  47620. {
  47621. name: "Normal",
  47622. height: math.unit(4, "feet"),
  47623. default: true
  47624. },
  47625. ]
  47626. ))
  47627. characterMakers.push(() => makeCharacter(
  47628. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47629. {
  47630. front: {
  47631. height: math.unit(4 + 6/12, "feet"),
  47632. name: "Front",
  47633. image: {
  47634. source: "./media/characters/agatha/front.svg",
  47635. extra: 947/933,
  47636. bottom: 42/989
  47637. }
  47638. },
  47639. back: {
  47640. height: math.unit(4 + 6/12, "feet"),
  47641. name: "Back",
  47642. image: {
  47643. source: "./media/characters/agatha/back.svg",
  47644. extra: 935/922,
  47645. bottom: 48/983
  47646. }
  47647. },
  47648. },
  47649. [
  47650. {
  47651. name: "Normal",
  47652. height: math.unit(4 + 6 /12, "feet"),
  47653. default: true
  47654. },
  47655. {
  47656. name: "Max Size",
  47657. height: math.unit(500, "feet")
  47658. },
  47659. ]
  47660. ))
  47661. characterMakers.push(() => makeCharacter(
  47662. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47663. {
  47664. side: {
  47665. height: math.unit(30, "feet"),
  47666. name: "Side",
  47667. image: {
  47668. source: "./media/characters/roggy/side.svg",
  47669. extra: 909/643,
  47670. bottom: 63/972
  47671. }
  47672. },
  47673. lounging: {
  47674. height: math.unit(20, "feet"),
  47675. name: "Lounging",
  47676. image: {
  47677. source: "./media/characters/roggy/lounging.svg",
  47678. extra: 643/479,
  47679. bottom: 145/788
  47680. }
  47681. },
  47682. handpaw: {
  47683. height: math.unit(13.1, "feet"),
  47684. name: "Handpaw",
  47685. image: {
  47686. source: "./media/characters/roggy/handpaw.svg"
  47687. }
  47688. },
  47689. footpaw: {
  47690. height: math.unit(15.8, "feet"),
  47691. name: "Footpaw",
  47692. image: {
  47693. source: "./media/characters/roggy/footpaw.svg"
  47694. }
  47695. },
  47696. },
  47697. [
  47698. {
  47699. name: "Menacing",
  47700. height: math.unit(30, "feet"),
  47701. default: true
  47702. },
  47703. ]
  47704. ))
  47705. characterMakers.push(() => makeCharacter(
  47706. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47707. {
  47708. front: {
  47709. height: math.unit(5 + 7/12, "feet"),
  47710. weight: math.unit(135, "lb"),
  47711. name: "Front",
  47712. image: {
  47713. source: "./media/characters/naomi/front.svg",
  47714. extra: 1209/1154,
  47715. bottom: 129/1338
  47716. }
  47717. },
  47718. back: {
  47719. height: math.unit(5 + 7/12, "feet"),
  47720. weight: math.unit(135, "lb"),
  47721. name: "Back",
  47722. image: {
  47723. source: "./media/characters/naomi/back.svg",
  47724. extra: 1252/1190,
  47725. bottom: 23/1275
  47726. }
  47727. },
  47728. },
  47729. [
  47730. {
  47731. name: "Normal",
  47732. height: math.unit(5 + 7 /12, "feet"),
  47733. default: true
  47734. },
  47735. ]
  47736. ))
  47737. characterMakers.push(() => makeCharacter(
  47738. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47739. {
  47740. side: {
  47741. height: math.unit(35, "meters"),
  47742. name: "Side",
  47743. image: {
  47744. source: "./media/characters/kimpi/side.svg",
  47745. extra: 419/382,
  47746. bottom: 63/482
  47747. }
  47748. },
  47749. hand: {
  47750. height: math.unit(8.96, "meters"),
  47751. name: "Hand",
  47752. image: {
  47753. source: "./media/characters/kimpi/hand.svg"
  47754. }
  47755. },
  47756. },
  47757. [
  47758. {
  47759. name: "Normal",
  47760. height: math.unit(35, "meters"),
  47761. default: true
  47762. },
  47763. ]
  47764. ))
  47765. characterMakers.push(() => makeCharacter(
  47766. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47767. {
  47768. front: {
  47769. height: math.unit(4 + 4/12, "feet"),
  47770. name: "Front",
  47771. image: {
  47772. source: "./media/characters/pepper-purrloin/front.svg",
  47773. extra: 1141/1024,
  47774. bottom: 21/1162
  47775. }
  47776. },
  47777. },
  47778. [
  47779. {
  47780. name: "Normal",
  47781. height: math.unit(4 + 4/12, "feet"),
  47782. default: true
  47783. },
  47784. ]
  47785. ))
  47786. characterMakers.push(() => makeCharacter(
  47787. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47788. {
  47789. front: {
  47790. height: math.unit(6 + 2/12, "feet"),
  47791. name: "Front",
  47792. image: {
  47793. source: "./media/characters/raphael/front.svg",
  47794. extra: 1101/962,
  47795. bottom: 59/1160
  47796. }
  47797. },
  47798. },
  47799. [
  47800. {
  47801. name: "Normal",
  47802. height: math.unit(6 + 2/12, "feet"),
  47803. default: true
  47804. },
  47805. ]
  47806. ))
  47807. characterMakers.push(() => makeCharacter(
  47808. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47809. {
  47810. front: {
  47811. height: math.unit(6, "feet"),
  47812. weight: math.unit(150, "lb"),
  47813. name: "Front",
  47814. image: {
  47815. source: "./media/characters/victor-williams/front.svg",
  47816. extra: 1894/1825,
  47817. bottom: 67/1961
  47818. }
  47819. },
  47820. },
  47821. [
  47822. {
  47823. name: "Normal",
  47824. height: math.unit(6, "feet"),
  47825. default: true
  47826. },
  47827. ]
  47828. ))
  47829. characterMakers.push(() => makeCharacter(
  47830. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47831. {
  47832. front: {
  47833. height: math.unit(5 + 8/12, "feet"),
  47834. weight: math.unit(150, "lb"),
  47835. name: "Front",
  47836. image: {
  47837. source: "./media/characters/rachel/front.svg",
  47838. extra: 1902/1787,
  47839. bottom: 46/1948
  47840. }
  47841. },
  47842. },
  47843. [
  47844. {
  47845. name: "Base Height",
  47846. height: math.unit(5 + 8/12, "feet"),
  47847. default: true
  47848. },
  47849. {
  47850. name: "Macro",
  47851. height: math.unit(200, "feet")
  47852. },
  47853. {
  47854. name: "Mega Macro",
  47855. height: math.unit(1, "mile")
  47856. },
  47857. {
  47858. name: "Giga Macro",
  47859. height: math.unit(1500, "miles")
  47860. },
  47861. {
  47862. name: "Tera Macro",
  47863. height: math.unit(8000, "miles")
  47864. },
  47865. {
  47866. name: "Tera Macro+",
  47867. height: math.unit(2e5, "miles")
  47868. },
  47869. ]
  47870. ))
  47871. characterMakers.push(() => makeCharacter(
  47872. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47873. {
  47874. front: {
  47875. height: math.unit(6.5, "feet"),
  47876. name: "Front",
  47877. image: {
  47878. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47879. extra: 860/819,
  47880. bottom: 307/1167
  47881. }
  47882. },
  47883. back: {
  47884. height: math.unit(6.5, "feet"),
  47885. name: "Back",
  47886. image: {
  47887. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47888. extra: 880/837,
  47889. bottom: 395/1275
  47890. }
  47891. },
  47892. sleeping: {
  47893. height: math.unit(2.79, "feet"),
  47894. name: "Sleeping",
  47895. image: {
  47896. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47897. extra: 465/383,
  47898. bottom: 263/728
  47899. }
  47900. },
  47901. maw: {
  47902. height: math.unit(2.52, "feet"),
  47903. name: "Maw",
  47904. image: {
  47905. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47906. }
  47907. },
  47908. },
  47909. [
  47910. {
  47911. name: "Normal",
  47912. height: math.unit(6.5, "feet"),
  47913. default: true
  47914. },
  47915. ]
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47919. {
  47920. front: {
  47921. height: math.unit(5, "feet"),
  47922. name: "Front",
  47923. image: {
  47924. source: "./media/characters/nova-nerium/front.svg",
  47925. extra: 1548/1392,
  47926. bottom: 374/1922
  47927. }
  47928. },
  47929. back: {
  47930. height: math.unit(5, "feet"),
  47931. name: "Back",
  47932. image: {
  47933. source: "./media/characters/nova-nerium/back.svg",
  47934. extra: 1658/1468,
  47935. bottom: 257/1915
  47936. }
  47937. },
  47938. },
  47939. [
  47940. {
  47941. name: "Normal",
  47942. height: math.unit(5, "feet"),
  47943. default: true
  47944. },
  47945. ]
  47946. ))
  47947. characterMakers.push(() => makeCharacter(
  47948. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47949. {
  47950. front: {
  47951. height: math.unit(5 + 4/12, "feet"),
  47952. name: "Front",
  47953. image: {
  47954. source: "./media/characters/ashe-pyriph/front.svg",
  47955. extra: 1935/1747,
  47956. bottom: 60/1995
  47957. }
  47958. },
  47959. },
  47960. [
  47961. {
  47962. name: "Normal",
  47963. height: math.unit(5 + 4/12, "feet"),
  47964. default: true
  47965. },
  47966. ]
  47967. ))
  47968. characterMakers.push(() => makeCharacter(
  47969. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47970. {
  47971. front: {
  47972. height: math.unit(8.7, "feet"),
  47973. name: "Front",
  47974. image: {
  47975. source: "./media/characters/flicker-wisp/front.svg",
  47976. extra: 1835/1613,
  47977. bottom: 449/2284
  47978. }
  47979. },
  47980. side: {
  47981. height: math.unit(8.7, "feet"),
  47982. name: "Side",
  47983. image: {
  47984. source: "./media/characters/flicker-wisp/side.svg",
  47985. extra: 1841/1642,
  47986. bottom: 336/2177
  47987. },
  47988. default: true
  47989. },
  47990. maw: {
  47991. height: math.unit(3.35, "feet"),
  47992. name: "Maw",
  47993. image: {
  47994. source: "./media/characters/flicker-wisp/maw.svg",
  47995. extra: 2338/1506,
  47996. bottom: 0/2338
  47997. }
  47998. },
  47999. ovipositor: {
  48000. height: math.unit(4.95, "feet"),
  48001. name: "Ovipositor",
  48002. image: {
  48003. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48004. }
  48005. },
  48006. egg: {
  48007. height: math.unit(0.385, "feet"),
  48008. weight: math.unit(2, "lb"),
  48009. name: "Egg",
  48010. image: {
  48011. source: "./media/characters/flicker-wisp/egg.svg"
  48012. }
  48013. },
  48014. },
  48015. [
  48016. {
  48017. name: "Normal",
  48018. height: math.unit(8.7, "feet"),
  48019. default: true
  48020. },
  48021. ]
  48022. ))
  48023. characterMakers.push(() => makeCharacter(
  48024. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48025. {
  48026. side: {
  48027. height: math.unit(11, "feet"),
  48028. name: "Side",
  48029. image: {
  48030. source: "./media/characters/faefnul/side.svg",
  48031. extra: 1100/1007,
  48032. bottom: 0/1100
  48033. }
  48034. },
  48035. },
  48036. [
  48037. {
  48038. name: "Normal",
  48039. height: math.unit(11, "feet"),
  48040. default: true
  48041. },
  48042. ]
  48043. ))
  48044. characterMakers.push(() => makeCharacter(
  48045. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48046. {
  48047. front: {
  48048. height: math.unit(6 + 2/12, "feet"),
  48049. name: "Front",
  48050. image: {
  48051. source: "./media/characters/shady/front.svg",
  48052. extra: 502/461,
  48053. bottom: 9/511
  48054. }
  48055. },
  48056. kneeling: {
  48057. height: math.unit(4.6, "feet"),
  48058. name: "Kneeling",
  48059. image: {
  48060. source: "./media/characters/shady/kneeling.svg",
  48061. extra: 1328/1219,
  48062. bottom: 117/1445
  48063. }
  48064. },
  48065. maw: {
  48066. height: math.unit(2, "feet"),
  48067. name: "Maw",
  48068. image: {
  48069. source: "./media/characters/shady/maw.svg"
  48070. }
  48071. },
  48072. },
  48073. [
  48074. {
  48075. name: "Nano",
  48076. height: math.unit(1, "mm")
  48077. },
  48078. {
  48079. name: "Micro",
  48080. height: math.unit(12, "mm")
  48081. },
  48082. {
  48083. name: "Tiny",
  48084. height: math.unit(3, "inches")
  48085. },
  48086. {
  48087. name: "Normal",
  48088. height: math.unit(6 + 2/12, "feet"),
  48089. default: true
  48090. },
  48091. {
  48092. name: "Big",
  48093. height: math.unit(15, "feet")
  48094. },
  48095. {
  48096. name: "Macro",
  48097. height: math.unit(150, "feet")
  48098. },
  48099. {
  48100. name: "Titanic",
  48101. height: math.unit(500, "feet")
  48102. },
  48103. ]
  48104. ))
  48105. characterMakers.push(() => makeCharacter(
  48106. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48107. {
  48108. front: {
  48109. height: math.unit(12, "feet"),
  48110. name: "Front",
  48111. image: {
  48112. source: "./media/characters/fenrir/front.svg",
  48113. extra: 968/875,
  48114. bottom: 22/990
  48115. }
  48116. },
  48117. },
  48118. [
  48119. {
  48120. name: "Big",
  48121. height: math.unit(12, "feet"),
  48122. default: true
  48123. },
  48124. ]
  48125. ))
  48126. characterMakers.push(() => makeCharacter(
  48127. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48128. {
  48129. front: {
  48130. height: math.unit(5 + 4/12, "feet"),
  48131. name: "Front",
  48132. image: {
  48133. source: "./media/characters/makar/front.svg",
  48134. extra: 1181/1112,
  48135. bottom: 78/1259
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Normal",
  48142. height: math.unit(5 + 4/12, "feet"),
  48143. default: true
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48149. {
  48150. front: {
  48151. height: math.unit(5 + 7/12, "feet"),
  48152. name: "Front",
  48153. image: {
  48154. source: "./media/characters/callow/front.svg",
  48155. extra: 1482/1304,
  48156. bottom: 23/1505
  48157. }
  48158. },
  48159. back: {
  48160. height: math.unit(5 + 7/12, "feet"),
  48161. name: "Back",
  48162. image: {
  48163. source: "./media/characters/callow/back.svg",
  48164. extra: 1484/1296,
  48165. bottom: 25/1509
  48166. }
  48167. },
  48168. },
  48169. [
  48170. {
  48171. name: "Micro",
  48172. height: math.unit(3, "inches"),
  48173. default: true
  48174. },
  48175. {
  48176. name: "Normal",
  48177. height: math.unit(5 + 7/12, "feet")
  48178. },
  48179. ]
  48180. ))
  48181. characterMakers.push(() => makeCharacter(
  48182. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48183. {
  48184. front: {
  48185. height: math.unit(6 + 2/12, "feet"),
  48186. name: "Front",
  48187. image: {
  48188. source: "./media/characters/natel/front.svg",
  48189. extra: 1833/1692,
  48190. bottom: 166/1999
  48191. }
  48192. },
  48193. },
  48194. [
  48195. {
  48196. name: "Normal",
  48197. height: math.unit(6 + 2/12, "feet"),
  48198. default: true
  48199. },
  48200. ]
  48201. ))
  48202. characterMakers.push(() => makeCharacter(
  48203. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48204. {
  48205. front: {
  48206. height: math.unit(1.75, "meters"),
  48207. name: "Front",
  48208. image: {
  48209. source: "./media/characters/misu/front.svg",
  48210. extra: 1690/1558,
  48211. bottom: 234/1924
  48212. }
  48213. },
  48214. back: {
  48215. height: math.unit(1.75, "meters"),
  48216. name: "Back",
  48217. image: {
  48218. source: "./media/characters/misu/back.svg",
  48219. extra: 1762/1618,
  48220. bottom: 146/1908
  48221. }
  48222. },
  48223. frontNude: {
  48224. height: math.unit(1.75, "meters"),
  48225. name: "Front (Nude)",
  48226. image: {
  48227. source: "./media/characters/misu/front-nude.svg",
  48228. extra: 1690/1558,
  48229. bottom: 234/1924
  48230. }
  48231. },
  48232. backNude: {
  48233. height: math.unit(1.75, "meters"),
  48234. name: "Back (Nude)",
  48235. image: {
  48236. source: "./media/characters/misu/back-nude.svg",
  48237. extra: 1762/1618,
  48238. bottom: 146/1908
  48239. }
  48240. },
  48241. frontErect: {
  48242. height: math.unit(1.75, "meters"),
  48243. name: "Front (Erect)",
  48244. image: {
  48245. source: "./media/characters/misu/front-erect.svg",
  48246. extra: 1690/1558,
  48247. bottom: 234/1924
  48248. }
  48249. },
  48250. maw: {
  48251. height: math.unit(0.47, "meters"),
  48252. name: "Maw",
  48253. image: {
  48254. source: "./media/characters/misu/maw.svg"
  48255. }
  48256. },
  48257. head: {
  48258. height: math.unit(0.35, "meters"),
  48259. name: "Head",
  48260. image: {
  48261. source: "./media/characters/misu/head.svg"
  48262. }
  48263. },
  48264. rear: {
  48265. height: math.unit(0.47, "meters"),
  48266. name: "Rear",
  48267. image: {
  48268. source: "./media/characters/misu/rear.svg"
  48269. }
  48270. },
  48271. },
  48272. [
  48273. {
  48274. name: "Normal",
  48275. height: math.unit(1.75, "meters")
  48276. },
  48277. {
  48278. name: "Not good for the people",
  48279. height: math.unit(42, "meters")
  48280. },
  48281. {
  48282. name: "Not good for the neighborhood",
  48283. height: math.unit(135, "meters")
  48284. },
  48285. {
  48286. name: "Bit bigger problem",
  48287. height: math.unit(380, "meters"),
  48288. default: true
  48289. },
  48290. {
  48291. name: "Not good for the city",
  48292. height: math.unit(1.5, "km")
  48293. },
  48294. {
  48295. name: "Not good for the county",
  48296. height: math.unit(5.5, "km")
  48297. },
  48298. {
  48299. name: "Not good for the state",
  48300. height: math.unit(25, "km")
  48301. },
  48302. {
  48303. name: "Not good for the country",
  48304. height: math.unit(125, "km")
  48305. },
  48306. {
  48307. name: "Not good for the continent",
  48308. height: math.unit(2100, "km")
  48309. },
  48310. {
  48311. name: "Not good for the planet",
  48312. height: math.unit(35000, "km")
  48313. },
  48314. {
  48315. name: "Just no",
  48316. height: math.unit(8.5e18, "km")
  48317. },
  48318. ]
  48319. ))
  48320. characterMakers.push(() => makeCharacter(
  48321. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48322. {
  48323. front: {
  48324. height: math.unit(6.5, "feet"),
  48325. name: "Front",
  48326. image: {
  48327. source: "./media/characters/poppy/front.svg",
  48328. extra: 1878/1812,
  48329. bottom: 43/1921
  48330. }
  48331. },
  48332. feet: {
  48333. height: math.unit(1.06, "feet"),
  48334. name: "Feet",
  48335. image: {
  48336. source: "./media/characters/poppy/feet.svg",
  48337. extra: 1083/1083,
  48338. bottom: 87/1170
  48339. }
  48340. },
  48341. },
  48342. [
  48343. {
  48344. name: "Human",
  48345. height: math.unit(6.5, "feet")
  48346. },
  48347. {
  48348. name: "Default",
  48349. height: math.unit(300, "feet"),
  48350. default: true
  48351. },
  48352. {
  48353. name: "Huge",
  48354. height: math.unit(850, "feet")
  48355. },
  48356. {
  48357. name: "Mega",
  48358. height: math.unit(8000, "feet")
  48359. },
  48360. {
  48361. name: "Giga",
  48362. height: math.unit(300, "miles")
  48363. },
  48364. ]
  48365. ))
  48366. characterMakers.push(() => makeCharacter(
  48367. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48368. {
  48369. bipedal: {
  48370. height: math.unit(7, "feet"),
  48371. name: "Bipedal",
  48372. image: {
  48373. source: "./media/characters/zener/bipedal.svg",
  48374. extra: 874/805,
  48375. bottom: 109/983
  48376. }
  48377. },
  48378. quadrupedal: {
  48379. height: math.unit(4.64, "feet"),
  48380. name: "Quadrupedal",
  48381. image: {
  48382. source: "./media/characters/zener/quadrupedal.svg",
  48383. extra: 638/507,
  48384. bottom: 190/828
  48385. }
  48386. },
  48387. cock: {
  48388. height: math.unit(18, "inches"),
  48389. name: "Cock",
  48390. image: {
  48391. source: "./media/characters/zener/cock.svg"
  48392. }
  48393. },
  48394. },
  48395. [
  48396. {
  48397. name: "Normal",
  48398. height: math.unit(7, "feet"),
  48399. default: true
  48400. },
  48401. ]
  48402. ))
  48403. characterMakers.push(() => makeCharacter(
  48404. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48405. {
  48406. nude: {
  48407. height: math.unit(5 + 6/12, "feet"),
  48408. name: "Nude",
  48409. image: {
  48410. source: "./media/characters/charlie-dog/nude.svg",
  48411. extra: 768/734,
  48412. bottom: 26/794
  48413. }
  48414. },
  48415. dressed: {
  48416. height: math.unit(5 + 6/12, "feet"),
  48417. name: "Dressed",
  48418. image: {
  48419. source: "./media/characters/charlie-dog/dressed.svg",
  48420. extra: 768/734,
  48421. bottom: 26/794
  48422. }
  48423. },
  48424. },
  48425. [
  48426. {
  48427. name: "Normal",
  48428. height: math.unit(5 + 6/12, "feet"),
  48429. default: true
  48430. },
  48431. ]
  48432. ))
  48433. characterMakers.push(() => makeCharacter(
  48434. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48435. {
  48436. front: {
  48437. height: math.unit(6 + 4/12, "feet"),
  48438. name: "Front",
  48439. image: {
  48440. source: "./media/characters/ir'istrasz/front.svg",
  48441. extra: 1014/977,
  48442. bottom: 65/1079
  48443. }
  48444. },
  48445. back: {
  48446. height: math.unit(6 + 4/12, "feet"),
  48447. name: "Back",
  48448. image: {
  48449. source: "./media/characters/ir'istrasz/back.svg",
  48450. extra: 1024/992,
  48451. bottom: 34/1058
  48452. }
  48453. },
  48454. },
  48455. [
  48456. {
  48457. name: "Normal",
  48458. height: math.unit(6 + 4/12, "feet"),
  48459. default: true
  48460. },
  48461. ]
  48462. ))
  48463. characterMakers.push(() => makeCharacter(
  48464. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48465. {
  48466. front: {
  48467. height: math.unit(5 + 8/12, "feet"),
  48468. name: "Front",
  48469. image: {
  48470. source: "./media/characters/dee-ditto/front.svg",
  48471. extra: 1874/1785,
  48472. bottom: 68/1942
  48473. }
  48474. },
  48475. back: {
  48476. height: math.unit(5 + 8/12, "feet"),
  48477. name: "Back",
  48478. image: {
  48479. source: "./media/characters/dee-ditto/back.svg",
  48480. extra: 1870/1783,
  48481. bottom: 77/1947
  48482. }
  48483. },
  48484. },
  48485. [
  48486. {
  48487. name: "Normal",
  48488. height: math.unit(5 + 8/12, "feet"),
  48489. default: true
  48490. },
  48491. ]
  48492. ))
  48493. characterMakers.push(() => makeCharacter(
  48494. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48495. {
  48496. front: {
  48497. height: math.unit(7 + 6/12, "feet"),
  48498. name: "Front",
  48499. image: {
  48500. source: "./media/characters/fey/front.svg",
  48501. extra: 995/979,
  48502. bottom: 30/1025
  48503. }
  48504. },
  48505. back: {
  48506. height: math.unit(7 + 6/12, "feet"),
  48507. name: "Back",
  48508. image: {
  48509. source: "./media/characters/fey/back.svg",
  48510. extra: 1079/1008,
  48511. bottom: 5/1084
  48512. }
  48513. },
  48514. dressed: {
  48515. height: math.unit(7 + 6/12, "feet"),
  48516. name: "Dressed",
  48517. image: {
  48518. source: "./media/characters/fey/dressed.svg",
  48519. extra: 995/979,
  48520. bottom: 30/1025
  48521. }
  48522. },
  48523. },
  48524. [
  48525. {
  48526. name: "Normal",
  48527. height: math.unit(7 + 6/12, "feet"),
  48528. default: true
  48529. },
  48530. ]
  48531. ))
  48532. characterMakers.push(() => makeCharacter(
  48533. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48534. {
  48535. standing: {
  48536. height: math.unit(17, "feet"),
  48537. name: "Standing",
  48538. image: {
  48539. source: "./media/characters/aster/standing.svg",
  48540. extra: 1798/1598,
  48541. bottom: 117/1915
  48542. }
  48543. },
  48544. },
  48545. [
  48546. {
  48547. name: "Normal",
  48548. height: math.unit(17, "feet"),
  48549. default: true
  48550. },
  48551. {
  48552. name: "Homewrecker",
  48553. height: math.unit(95, "feet")
  48554. },
  48555. {
  48556. name: "Planet Devourer",
  48557. height: math.unit(1008000, "miles")
  48558. },
  48559. ]
  48560. ))
  48561. characterMakers.push(() => makeCharacter(
  48562. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48563. {
  48564. front: {
  48565. height: math.unit(6 + 5/12, "feet"),
  48566. weight: math.unit(265, "lb"),
  48567. name: "Front",
  48568. image: {
  48569. source: "./media/characters/devon-childs/front.svg",
  48570. extra: 1795/1721,
  48571. bottom: 41/1836
  48572. }
  48573. },
  48574. side: {
  48575. height: math.unit(6 + 5/12, "feet"),
  48576. weight: math.unit(265, "lb"),
  48577. name: "Side",
  48578. image: {
  48579. source: "./media/characters/devon-childs/side.svg",
  48580. extra: 1812/1738,
  48581. bottom: 30/1842
  48582. }
  48583. },
  48584. back: {
  48585. height: math.unit(6 + 5/12, "feet"),
  48586. weight: math.unit(265, "lb"),
  48587. name: "Back",
  48588. image: {
  48589. source: "./media/characters/devon-childs/back.svg",
  48590. extra: 1808/1735,
  48591. bottom: 23/1831
  48592. }
  48593. },
  48594. hand: {
  48595. height: math.unit(1.464, "feet"),
  48596. name: "Hand",
  48597. image: {
  48598. source: "./media/characters/devon-childs/hand.svg"
  48599. }
  48600. },
  48601. foot: {
  48602. height: math.unit(1.6, "feet"),
  48603. name: "Foot",
  48604. image: {
  48605. source: "./media/characters/devon-childs/foot.svg"
  48606. }
  48607. },
  48608. },
  48609. [
  48610. {
  48611. name: "Micro",
  48612. height: math.unit(7, "cm")
  48613. },
  48614. {
  48615. name: "Normal",
  48616. height: math.unit(6 + 5/12, "feet"),
  48617. default: true
  48618. },
  48619. {
  48620. name: "Macro",
  48621. height: math.unit(154, "feet")
  48622. },
  48623. ]
  48624. ))
  48625. characterMakers.push(() => makeCharacter(
  48626. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48627. {
  48628. front: {
  48629. height: math.unit(6, "feet"),
  48630. weight: math.unit(180, "lb"),
  48631. name: "Front",
  48632. image: {
  48633. source: "./media/characters/lydemox-vir/front.svg",
  48634. extra: 1632/1435,
  48635. bottom: 58/1690
  48636. }
  48637. },
  48638. frontSFW: {
  48639. height: math.unit(6, "feet"),
  48640. weight: math.unit(180, "lb"),
  48641. name: "Front (SFW)",
  48642. image: {
  48643. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48644. extra: 1632/1435,
  48645. bottom: 58/1690
  48646. }
  48647. },
  48648. back: {
  48649. height: math.unit(6, "feet"),
  48650. weight: math.unit(180, "lb"),
  48651. name: "Back",
  48652. image: {
  48653. source: "./media/characters/lydemox-vir/back.svg",
  48654. extra: 1593/1408,
  48655. bottom: 31/1624
  48656. }
  48657. },
  48658. paw: {
  48659. height: math.unit(1.85, "feet"),
  48660. name: "Paw",
  48661. image: {
  48662. source: "./media/characters/lydemox-vir/paw.svg"
  48663. }
  48664. },
  48665. dick: {
  48666. height: math.unit(1.8, "feet"),
  48667. name: "Dick",
  48668. image: {
  48669. source: "./media/characters/lydemox-vir/dick.svg"
  48670. }
  48671. },
  48672. },
  48673. [
  48674. {
  48675. name: "Macro",
  48676. height: math.unit(100, "feet"),
  48677. default: true
  48678. },
  48679. {
  48680. name: "Teramacro",
  48681. height: math.unit(1, "earth")
  48682. },
  48683. {
  48684. name: "Planetary",
  48685. height: math.unit(20, "earths")
  48686. },
  48687. ]
  48688. ))
  48689. characterMakers.push(() => makeCharacter(
  48690. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48691. {
  48692. front: {
  48693. height: math.unit(15 + 8/12, "feet"),
  48694. weight: math.unit(1237, "kg"),
  48695. name: "Front",
  48696. image: {
  48697. source: "./media/characters/mia/front.svg",
  48698. extra: 1573/1446,
  48699. bottom: 58/1631
  48700. }
  48701. },
  48702. },
  48703. [
  48704. {
  48705. name: "Small",
  48706. height: math.unit(9 + 5/12, "feet")
  48707. },
  48708. {
  48709. name: "Normal",
  48710. height: math.unit(15 + 8/12, "feet"),
  48711. default: true
  48712. },
  48713. ]
  48714. ))
  48715. characterMakers.push(() => makeCharacter(
  48716. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48717. {
  48718. front: {
  48719. height: math.unit(10 + 6/12, "feet"),
  48720. weight: math.unit(1.3, "tons"),
  48721. name: "Front",
  48722. image: {
  48723. source: "./media/characters/mr-graves/front.svg",
  48724. extra: 1779/1695,
  48725. bottom: 198/1977
  48726. }
  48727. },
  48728. },
  48729. [
  48730. {
  48731. name: "Normal",
  48732. height: math.unit(10 + 6 /12, "feet"),
  48733. default: true
  48734. },
  48735. ]
  48736. ))
  48737. characterMakers.push(() => makeCharacter(
  48738. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48739. {
  48740. dressedFront: {
  48741. height: math.unit(5 + 8/12, "feet"),
  48742. weight: math.unit(125, "lb"),
  48743. name: "Dressed (Front)",
  48744. image: {
  48745. source: "./media/characters/jess/dressed-front.svg",
  48746. extra: 1176/1152,
  48747. bottom: 42/1218
  48748. }
  48749. },
  48750. dressedSide: {
  48751. height: math.unit(5 + 8/12, "feet"),
  48752. weight: math.unit(125, "lb"),
  48753. name: "Dressed (Side)",
  48754. image: {
  48755. source: "./media/characters/jess/dressed-side.svg",
  48756. extra: 1204/1190,
  48757. bottom: 6/1210
  48758. }
  48759. },
  48760. nudeFront: {
  48761. height: math.unit(5 + 8/12, "feet"),
  48762. weight: math.unit(125, "lb"),
  48763. name: "Nude (Front)",
  48764. image: {
  48765. source: "./media/characters/jess/nude-front.svg",
  48766. extra: 1176/1152,
  48767. bottom: 42/1218
  48768. }
  48769. },
  48770. nudeSide: {
  48771. height: math.unit(5 + 8/12, "feet"),
  48772. weight: math.unit(125, "lb"),
  48773. name: "Nude (Side)",
  48774. image: {
  48775. source: "./media/characters/jess/nude-side.svg",
  48776. extra: 1204/1190,
  48777. bottom: 6/1210
  48778. }
  48779. },
  48780. organsFront: {
  48781. height: math.unit(2.83799342105, "feet"),
  48782. name: "Organs (Front)",
  48783. image: {
  48784. source: "./media/characters/jess/organs-front.svg"
  48785. }
  48786. },
  48787. organsSide: {
  48788. height: math.unit(2.64225290474, "feet"),
  48789. name: "Organs (Side)",
  48790. image: {
  48791. source: "./media/characters/jess/organs-side.svg"
  48792. }
  48793. },
  48794. digestiveTractFront: {
  48795. height: math.unit(2.8106580871, "feet"),
  48796. name: "Digestive Tract (Front)",
  48797. image: {
  48798. source: "./media/characters/jess/digestive-tract-front.svg"
  48799. }
  48800. },
  48801. digestiveTractSide: {
  48802. height: math.unit(2.54365045014, "feet"),
  48803. name: "Digestive Tract (Side)",
  48804. image: {
  48805. source: "./media/characters/jess/digestive-tract-side.svg"
  48806. }
  48807. },
  48808. respiratorySystemFront: {
  48809. height: math.unit(1.11196233456, "feet"),
  48810. name: "Respiratory System (Front)",
  48811. image: {
  48812. source: "./media/characters/jess/respiratory-system-front.svg"
  48813. }
  48814. },
  48815. respiratorySystemSide: {
  48816. height: math.unit(0.89327966297, "feet"),
  48817. name: "Respiratory System (Side)",
  48818. image: {
  48819. source: "./media/characters/jess/respiratory-system-side.svg"
  48820. }
  48821. },
  48822. urinaryTractFront: {
  48823. height: math.unit(1.16126356186, "feet"),
  48824. name: "Urinary Tract (Front)",
  48825. image: {
  48826. source: "./media/characters/jess/urinary-tract-front.svg"
  48827. }
  48828. },
  48829. urinaryTractSide: {
  48830. height: math.unit(1.20910039627, "feet"),
  48831. name: "Urinary Tract (Side)",
  48832. image: {
  48833. source: "./media/characters/jess/urinary-tract-side.svg"
  48834. }
  48835. },
  48836. reproductiveOrgansFront: {
  48837. height: math.unit(0.48422591566, "feet"),
  48838. name: "Reproductive Organs (Front)",
  48839. image: {
  48840. source: "./media/characters/jess/reproductive-organs-front.svg"
  48841. }
  48842. },
  48843. reproductiveOrgansSide: {
  48844. height: math.unit(0.61553314481, "feet"),
  48845. name: "Reproductive Organs (Side)",
  48846. image: {
  48847. source: "./media/characters/jess/reproductive-organs-side.svg"
  48848. }
  48849. },
  48850. breastsFront: {
  48851. height: math.unit(0.47690395121, "feet"),
  48852. name: "Breasts (Front)",
  48853. image: {
  48854. source: "./media/characters/jess/breasts-front.svg"
  48855. }
  48856. },
  48857. breastsSide: {
  48858. height: math.unit(0.30556998307, "feet"),
  48859. name: "Breasts (Side)",
  48860. image: {
  48861. source: "./media/characters/jess/breasts-side.svg"
  48862. }
  48863. },
  48864. heartFront: {
  48865. height: math.unit(0.53011022622, "feet"),
  48866. name: "Heart (Front)",
  48867. image: {
  48868. source: "./media/characters/jess/heart-front.svg"
  48869. }
  48870. },
  48871. heartSide: {
  48872. height: math.unit(0.51790695213, "feet"),
  48873. name: "Heart (Side)",
  48874. image: {
  48875. source: "./media/characters/jess/heart-side.svg"
  48876. }
  48877. },
  48878. earsAndNoseFront: {
  48879. height: math.unit(0.29385483995, "feet"),
  48880. name: "Ears and Nose (Front)",
  48881. image: {
  48882. source: "./media/characters/jess/ears-and-nose-front.svg"
  48883. }
  48884. },
  48885. earsAndNoseSide: {
  48886. height: math.unit(0.18109658741, "feet"),
  48887. name: "Ears and Nose (Side)",
  48888. image: {
  48889. source: "./media/characters/jess/ears-and-nose-side.svg"
  48890. }
  48891. },
  48892. },
  48893. [
  48894. {
  48895. name: "Normal",
  48896. height: math.unit(5 + 8/12, "feet"),
  48897. default: true
  48898. },
  48899. ]
  48900. ))
  48901. characterMakers.push(() => makeCharacter(
  48902. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48903. {
  48904. front: {
  48905. height: math.unit(6, "feet"),
  48906. weight: math.unit(6.64467e-7, "grams"),
  48907. name: "Front",
  48908. image: {
  48909. source: "./media/characters/wimpering/front.svg",
  48910. extra: 597/587,
  48911. bottom: 34/631
  48912. }
  48913. },
  48914. },
  48915. [
  48916. {
  48917. name: "Micro",
  48918. height: math.unit(0.4, "mm"),
  48919. default: true
  48920. },
  48921. ]
  48922. ))
  48923. characterMakers.push(() => makeCharacter(
  48924. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48925. {
  48926. front: {
  48927. height: math.unit(5 + 2/12, "feet"),
  48928. weight: math.unit(110, "lb"),
  48929. name: "Front",
  48930. image: {
  48931. source: "./media/characters/keltre/front.svg",
  48932. extra: 1099/1057,
  48933. bottom: 22/1121
  48934. }
  48935. },
  48936. back: {
  48937. height: math.unit(5 + 2/12, "feet"),
  48938. weight: math.unit(110, "lb"),
  48939. name: "Back",
  48940. image: {
  48941. source: "./media/characters/keltre/back.svg",
  48942. extra: 1095/1053,
  48943. bottom: 17/1112
  48944. }
  48945. },
  48946. dressed: {
  48947. height: math.unit(5 + 2/12, "feet"),
  48948. weight: math.unit(110, "lb"),
  48949. name: "Dressed",
  48950. image: {
  48951. source: "./media/characters/keltre/dressed.svg",
  48952. extra: 1099/1057,
  48953. bottom: 22/1121
  48954. }
  48955. },
  48956. winter: {
  48957. height: math.unit(5 + 2/12, "feet"),
  48958. weight: math.unit(110, "lb"),
  48959. name: "Winter",
  48960. image: {
  48961. source: "./media/characters/keltre/winter.svg",
  48962. extra: 1099/1057,
  48963. bottom: 22/1121
  48964. }
  48965. },
  48966. head: {
  48967. height: math.unit(1.61 * 0.86, "feet"),
  48968. name: "Head",
  48969. image: {
  48970. source: "./media/characters/keltre/head.svg",
  48971. extra: 534/421,
  48972. bottom: 0/534
  48973. }
  48974. },
  48975. hand: {
  48976. height: math.unit(1.3 * 0.86, "feet"),
  48977. name: "Hand",
  48978. image: {
  48979. source: "./media/characters/keltre/hand.svg"
  48980. }
  48981. },
  48982. foot: {
  48983. height: math.unit(1.8 * 0.86, "feet"),
  48984. name: "Foot",
  48985. image: {
  48986. source: "./media/characters/keltre/foot.svg"
  48987. }
  48988. },
  48989. },
  48990. [
  48991. {
  48992. name: "Fine",
  48993. height: math.unit(1, "inch")
  48994. },
  48995. {
  48996. name: "Dimnutive",
  48997. height: math.unit(4, "inches")
  48998. },
  48999. {
  49000. name: "Tiny",
  49001. height: math.unit(1, "foot")
  49002. },
  49003. {
  49004. name: "Small",
  49005. height: math.unit(3, "feet")
  49006. },
  49007. {
  49008. name: "Normal",
  49009. height: math.unit(5 + 2/12, "feet"),
  49010. default: true
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49016. {
  49017. front: {
  49018. height: math.unit(6 + 2/12, "feet"),
  49019. name: "Front",
  49020. image: {
  49021. source: "./media/characters/nox/front.svg",
  49022. extra: 1917/1830,
  49023. bottom: 74/1991
  49024. }
  49025. },
  49026. back: {
  49027. height: math.unit(6 + 2/12, "feet"),
  49028. name: "Back",
  49029. image: {
  49030. source: "./media/characters/nox/back.svg",
  49031. extra: 1896/1815,
  49032. bottom: 21/1917
  49033. }
  49034. },
  49035. head: {
  49036. height: math.unit(1.1, "feet"),
  49037. name: "Head",
  49038. image: {
  49039. source: "./media/characters/nox/head.svg",
  49040. extra: 874/704,
  49041. bottom: 0/874
  49042. }
  49043. },
  49044. tattoo: {
  49045. height: math.unit(0.729, "feet"),
  49046. name: "Tattoo",
  49047. image: {
  49048. source: "./media/characters/nox/tattoo.svg"
  49049. }
  49050. },
  49051. },
  49052. [
  49053. {
  49054. name: "Normal",
  49055. height: math.unit(6 + 2/12, "feet")
  49056. },
  49057. {
  49058. name: "Gigamacro",
  49059. height: math.unit(2, "earths"),
  49060. default: true
  49061. },
  49062. {
  49063. name: "Cosmic",
  49064. height: math.unit(867, "yottameters")
  49065. },
  49066. ]
  49067. ))
  49068. characterMakers.push(() => makeCharacter(
  49069. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49070. {
  49071. front: {
  49072. height: math.unit(6, "feet"),
  49073. weight: math.unit(150, "lb"),
  49074. name: "Front",
  49075. image: {
  49076. source: "./media/characters/caspian/front.svg",
  49077. extra: 1443/1359,
  49078. bottom: 0/1443
  49079. }
  49080. },
  49081. back: {
  49082. height: math.unit(6, "feet"),
  49083. weight: math.unit(150, "lb"),
  49084. name: "Back",
  49085. image: {
  49086. source: "./media/characters/caspian/back.svg",
  49087. extra: 1379/1309,
  49088. bottom: 0/1379
  49089. }
  49090. },
  49091. head: {
  49092. height: math.unit(0.9, "feet"),
  49093. name: "Head",
  49094. image: {
  49095. source: "./media/characters/caspian/head.svg",
  49096. extra: 692/492,
  49097. bottom: 0/692
  49098. }
  49099. },
  49100. headAlt: {
  49101. height: math.unit(0.95, "feet"),
  49102. name: "Head (Alt)",
  49103. image: {
  49104. source: "./media/characters/caspian/head-alt.svg",
  49105. extra: 668/508,
  49106. bottom: 0/668
  49107. }
  49108. },
  49109. hand: {
  49110. height: math.unit(0.8, "feet"),
  49111. name: "Hand",
  49112. image: {
  49113. source: "./media/characters/caspian/hand.svg"
  49114. }
  49115. },
  49116. paw: {
  49117. height: math.unit(0.95, "feet"),
  49118. name: "Paw",
  49119. image: {
  49120. source: "./media/characters/caspian/paw.svg"
  49121. }
  49122. },
  49123. },
  49124. [
  49125. {
  49126. name: "Normal",
  49127. height: math.unit(162, "feet"),
  49128. default: true
  49129. },
  49130. ]
  49131. ))
  49132. characterMakers.push(() => makeCharacter(
  49133. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49134. {
  49135. front: {
  49136. height: math.unit(6, "feet"),
  49137. name: "Front",
  49138. image: {
  49139. source: "./media/characters/myra-aisling/front.svg",
  49140. extra: 1268/1166,
  49141. bottom: 73/1341
  49142. }
  49143. },
  49144. back: {
  49145. height: math.unit(6, "feet"),
  49146. name: "Back",
  49147. image: {
  49148. source: "./media/characters/myra-aisling/back.svg",
  49149. extra: 1249/1149,
  49150. bottom: 79/1328
  49151. }
  49152. },
  49153. dressed: {
  49154. height: math.unit(6, "feet"),
  49155. name: "Dressed",
  49156. image: {
  49157. source: "./media/characters/myra-aisling/dressed.svg",
  49158. extra: 1290/1189,
  49159. bottom: 47/1337
  49160. }
  49161. },
  49162. hand: {
  49163. height: math.unit(1.1, "feet"),
  49164. name: "Hand",
  49165. image: {
  49166. source: "./media/characters/myra-aisling/hand.svg"
  49167. }
  49168. },
  49169. paw: {
  49170. height: math.unit(1.23, "feet"),
  49171. name: "Paw",
  49172. image: {
  49173. source: "./media/characters/myra-aisling/paw.svg"
  49174. }
  49175. },
  49176. },
  49177. [
  49178. {
  49179. name: "Normal",
  49180. height: math.unit(160, "feet"),
  49181. default: true
  49182. },
  49183. ]
  49184. ))
  49185. characterMakers.push(() => makeCharacter(
  49186. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49187. {
  49188. front: {
  49189. height: math.unit(6, "feet"),
  49190. name: "Front",
  49191. image: {
  49192. source: "./media/characters/tenley-sidero/front.svg",
  49193. extra: 1365/1276,
  49194. bottom: 47/1412
  49195. }
  49196. },
  49197. back: {
  49198. height: math.unit(6, "feet"),
  49199. name: "Back",
  49200. image: {
  49201. source: "./media/characters/tenley-sidero/back.svg",
  49202. extra: 1383/1283,
  49203. bottom: 35/1418
  49204. }
  49205. },
  49206. dressed: {
  49207. height: math.unit(6, "feet"),
  49208. name: "Dressed",
  49209. image: {
  49210. source: "./media/characters/tenley-sidero/dressed.svg",
  49211. extra: 1364/1275,
  49212. bottom: 42/1406
  49213. }
  49214. },
  49215. head: {
  49216. height: math.unit(1.47, "feet"),
  49217. name: "Head",
  49218. image: {
  49219. source: "./media/characters/tenley-sidero/head.svg",
  49220. extra: 610/490,
  49221. bottom: 0/610
  49222. }
  49223. },
  49224. },
  49225. [
  49226. {
  49227. name: "Normal",
  49228. height: math.unit(154, "feet"),
  49229. default: true
  49230. },
  49231. ]
  49232. ))
  49233. characterMakers.push(() => makeCharacter(
  49234. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49235. {
  49236. front: {
  49237. height: math.unit(5, "inches"),
  49238. name: "Front",
  49239. image: {
  49240. source: "./media/characters/mallory/front.svg",
  49241. extra: 1919/1678,
  49242. bottom: 29/1948
  49243. }
  49244. },
  49245. hand: {
  49246. height: math.unit(0.73, "inches"),
  49247. name: "Hand",
  49248. image: {
  49249. source: "./media/characters/mallory/hand.svg"
  49250. }
  49251. },
  49252. paw: {
  49253. height: math.unit(0.68, "inches"),
  49254. name: "Paw",
  49255. image: {
  49256. source: "./media/characters/mallory/paw.svg"
  49257. }
  49258. },
  49259. },
  49260. [
  49261. {
  49262. name: "Small",
  49263. height: math.unit(5, "inches"),
  49264. default: true
  49265. },
  49266. ]
  49267. ))
  49268. characterMakers.push(() => makeCharacter(
  49269. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49270. {
  49271. naked: {
  49272. height: math.unit(6, "feet"),
  49273. name: "Naked",
  49274. image: {
  49275. source: "./media/characters/mab/naked.svg",
  49276. extra: 1855/1757,
  49277. bottom: 208/2063
  49278. }
  49279. },
  49280. outside: {
  49281. height: math.unit(6, "feet"),
  49282. name: "Outside",
  49283. image: {
  49284. source: "./media/characters/mab/outside.svg",
  49285. extra: 1855/1757,
  49286. bottom: 208/2063
  49287. }
  49288. },
  49289. party: {
  49290. height: math.unit(6, "feet"),
  49291. name: "Party",
  49292. image: {
  49293. source: "./media/characters/mab/party.svg",
  49294. extra: 1855/1757,
  49295. bottom: 208/2063
  49296. }
  49297. },
  49298. },
  49299. [
  49300. {
  49301. name: "Normal",
  49302. height: math.unit(165, "feet"),
  49303. default: true
  49304. },
  49305. ]
  49306. ))
  49307. characterMakers.push(() => makeCharacter(
  49308. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49309. {
  49310. front: {
  49311. height: math.unit(12, "feet"),
  49312. weight: math.unit(4000, "lb"),
  49313. name: "Front",
  49314. image: {
  49315. source: "./media/characters/winter/front.svg",
  49316. extra: 1286/943,
  49317. bottom: 112/1398
  49318. }
  49319. },
  49320. frontNsfw: {
  49321. height: math.unit(12, "feet"),
  49322. weight: math.unit(4000, "lb"),
  49323. name: "Front (NSFW)",
  49324. image: {
  49325. source: "./media/characters/winter/front-nsfw.svg",
  49326. extra: 1286/943,
  49327. bottom: 112/1398
  49328. }
  49329. },
  49330. dick: {
  49331. height: math.unit(3.79, "feet"),
  49332. name: "Dick",
  49333. image: {
  49334. source: "./media/characters/winter/dick.svg"
  49335. }
  49336. },
  49337. },
  49338. [
  49339. {
  49340. name: "Big",
  49341. height: math.unit(12, "feet"),
  49342. default: true
  49343. },
  49344. ]
  49345. ))
  49346. characterMakers.push(() => makeCharacter(
  49347. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49348. {
  49349. front: {
  49350. height: math.unit(4.1, "inches"),
  49351. name: "Front",
  49352. image: {
  49353. source: "./media/characters/alto/front.svg",
  49354. extra: 736/627,
  49355. bottom: 90/826
  49356. }
  49357. },
  49358. },
  49359. [
  49360. {
  49361. name: "Normal",
  49362. height: math.unit(4.1, "inches"),
  49363. default: true
  49364. },
  49365. ]
  49366. ))
  49367. characterMakers.push(() => makeCharacter(
  49368. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49369. {
  49370. sitting: {
  49371. height: math.unit(3, "feet"),
  49372. name: "Sitting",
  49373. image: {
  49374. source: "./media/characters/ratstrid-v/sitting.svg",
  49375. extra: 355/310,
  49376. bottom: 136/491
  49377. }
  49378. },
  49379. },
  49380. [
  49381. {
  49382. name: "Normal",
  49383. height: math.unit(3, "feet"),
  49384. default: true
  49385. },
  49386. ]
  49387. ))
  49388. characterMakers.push(() => makeCharacter(
  49389. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49390. {
  49391. back: {
  49392. height: math.unit(6, "feet"),
  49393. weight: math.unit(350, "lb"),
  49394. name: "Back",
  49395. image: {
  49396. source: "./media/characters/siz/back.svg",
  49397. extra: 1449/1274,
  49398. bottom: 13/1462
  49399. }
  49400. },
  49401. },
  49402. [
  49403. {
  49404. name: "Over-Overcompressed",
  49405. height: math.unit(8, "feet")
  49406. },
  49407. {
  49408. name: "Overcompressed",
  49409. height: math.unit(32, "feet")
  49410. },
  49411. {
  49412. name: "Compressed",
  49413. height: math.unit(128, "feet"),
  49414. default: true
  49415. },
  49416. {
  49417. name: "Half-Compressed",
  49418. height: math.unit(512, "feet")
  49419. },
  49420. {
  49421. name: "Quarter-Compressed",
  49422. height: math.unit(2048, "feet")
  49423. },
  49424. {
  49425. name: "Uncompressed?",
  49426. height: math.unit(8192, "feet")
  49427. },
  49428. ]
  49429. ))
  49430. characterMakers.push(() => makeCharacter(
  49431. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49432. {
  49433. front: {
  49434. height: math.unit(5 + 9/12, "feet"),
  49435. weight: math.unit(150, "lb"),
  49436. name: "Front",
  49437. image: {
  49438. source: "./media/characters/ven/front.svg",
  49439. extra: 1372/1320,
  49440. bottom: 73/1445
  49441. }
  49442. },
  49443. side: {
  49444. height: math.unit(5 + 9/12, "feet"),
  49445. weight: math.unit(1150, "lb"),
  49446. name: "Side",
  49447. image: {
  49448. source: "./media/characters/ven/side.svg",
  49449. extra: 1119/1070,
  49450. bottom: 42/1161
  49451. },
  49452. default: true
  49453. },
  49454. },
  49455. [
  49456. {
  49457. name: "Normal",
  49458. height: math.unit(5 + 9/12, "feet"),
  49459. default: true
  49460. },
  49461. ]
  49462. ))
  49463. characterMakers.push(() => makeCharacter(
  49464. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49465. {
  49466. front: {
  49467. height: math.unit(12, "feet"),
  49468. weight: math.unit(1000, "kg"),
  49469. name: "Front",
  49470. image: {
  49471. source: "./media/characters/maple/front.svg",
  49472. extra: 1193/1081,
  49473. bottom: 22/1215
  49474. }
  49475. },
  49476. },
  49477. [
  49478. {
  49479. name: "Compressed",
  49480. height: math.unit(7, "feet")
  49481. },
  49482. {
  49483. name: "Normal",
  49484. height: math.unit(12, "feet"),
  49485. default: true
  49486. },
  49487. ]
  49488. ))
  49489. characterMakers.push(() => makeCharacter(
  49490. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49491. {
  49492. front: {
  49493. height: math.unit(9, "feet"),
  49494. weight: math.unit(1500, "lb"),
  49495. name: "Front",
  49496. image: {
  49497. source: "./media/characters/nora/front.svg",
  49498. extra: 1348/1286,
  49499. bottom: 218/1566
  49500. }
  49501. },
  49502. erect: {
  49503. height: math.unit(9, "feet"),
  49504. weight: math.unit(11500, "lb"),
  49505. name: "Erect",
  49506. image: {
  49507. source: "./media/characters/nora/erect.svg",
  49508. extra: 1488/1433,
  49509. bottom: 133/1621
  49510. }
  49511. },
  49512. },
  49513. [
  49514. {
  49515. name: "Normal",
  49516. height: math.unit(9, "feet"),
  49517. default: true
  49518. },
  49519. ]
  49520. ))
  49521. characterMakers.push(() => makeCharacter(
  49522. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49523. {
  49524. front: {
  49525. height: math.unit(25, "feet"),
  49526. weight: math.unit(27500, "lb"),
  49527. name: "Front",
  49528. image: {
  49529. source: "./media/characters/north-caudin/front.svg",
  49530. extra: 1184/1082,
  49531. bottom: 23/1207
  49532. }
  49533. },
  49534. },
  49535. [
  49536. {
  49537. name: "Compressed",
  49538. height: math.unit(10, "feet")
  49539. },
  49540. {
  49541. name: "Normal",
  49542. height: math.unit(25, "feet"),
  49543. default: true
  49544. },
  49545. ]
  49546. ))
  49547. characterMakers.push(() => makeCharacter(
  49548. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49549. {
  49550. front: {
  49551. height: math.unit(9, "feet"),
  49552. weight: math.unit(1250, "lb"),
  49553. name: "Front",
  49554. image: {
  49555. source: "./media/characters/merrian/front.svg",
  49556. extra: 2393/2304,
  49557. bottom: 40/2433
  49558. }
  49559. },
  49560. },
  49561. [
  49562. {
  49563. name: "Normal",
  49564. height: math.unit(9, "feet"),
  49565. default: true
  49566. },
  49567. ]
  49568. ))
  49569. characterMakers.push(() => makeCharacter(
  49570. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49571. {
  49572. front: {
  49573. height: math.unit(9, "feet"),
  49574. weight: math.unit(1000, "lb"),
  49575. name: "Front",
  49576. image: {
  49577. source: "./media/characters/hazel/front.svg",
  49578. extra: 2351/2298,
  49579. bottom: 38/2389
  49580. }
  49581. },
  49582. },
  49583. [
  49584. {
  49585. name: "Normal",
  49586. height: math.unit(9, "feet"),
  49587. default: true
  49588. },
  49589. ]
  49590. ))
  49591. characterMakers.push(() => makeCharacter(
  49592. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49593. {
  49594. front: {
  49595. height: math.unit(13, "feet"),
  49596. weight: math.unit(3200, "lb"),
  49597. name: "Front",
  49598. image: {
  49599. source: "./media/characters/emma/front.svg",
  49600. extra: 2263/2029,
  49601. bottom: 68/2331
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Normal",
  49608. height: math.unit(13, "feet"),
  49609. default: true
  49610. },
  49611. ]
  49612. ))
  49613. characterMakers.push(() => makeCharacter(
  49614. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49615. {
  49616. front: {
  49617. height: math.unit(11 + 9/12, "feet"),
  49618. weight: math.unit(2500, "lb"),
  49619. name: "Front",
  49620. image: {
  49621. source: "./media/characters/ilumina/front.svg",
  49622. extra: 2248/2209,
  49623. bottom: 164/2412
  49624. }
  49625. },
  49626. },
  49627. [
  49628. {
  49629. name: "Normal",
  49630. height: math.unit(11 + 9/12, "feet"),
  49631. default: true
  49632. },
  49633. ]
  49634. ))
  49635. characterMakers.push(() => makeCharacter(
  49636. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49637. {
  49638. front: {
  49639. height: math.unit(8 + 10/12, "feet"),
  49640. weight: math.unit(1350, "lb"),
  49641. name: "Front",
  49642. image: {
  49643. source: "./media/characters/moonshine/front.svg",
  49644. extra: 2395/2288,
  49645. bottom: 40/2435
  49646. }
  49647. },
  49648. },
  49649. [
  49650. {
  49651. name: "Normal",
  49652. height: math.unit(8 + 10/12, "feet"),
  49653. default: true
  49654. },
  49655. ]
  49656. ))
  49657. characterMakers.push(() => makeCharacter(
  49658. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49659. {
  49660. front: {
  49661. height: math.unit(14, "feet"),
  49662. weight: math.unit(3400, "lb"),
  49663. name: "Front",
  49664. image: {
  49665. source: "./media/characters/aletia/front.svg",
  49666. extra: 1185/1052,
  49667. bottom: 21/1206
  49668. }
  49669. },
  49670. },
  49671. [
  49672. {
  49673. name: "Compressed",
  49674. height: math.unit(8, "feet")
  49675. },
  49676. {
  49677. name: "Normal",
  49678. height: math.unit(14, "feet"),
  49679. default: true
  49680. },
  49681. ]
  49682. ))
  49683. characterMakers.push(() => makeCharacter(
  49684. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49685. {
  49686. front: {
  49687. height: math.unit(17, "feet"),
  49688. weight: math.unit(6500, "lb"),
  49689. name: "Front",
  49690. image: {
  49691. source: "./media/characters/deidra/front.svg",
  49692. extra: 1201/1081,
  49693. bottom: 16/1217
  49694. }
  49695. },
  49696. },
  49697. [
  49698. {
  49699. name: "Compressed",
  49700. height: math.unit(9 + 6/12, "feet")
  49701. },
  49702. {
  49703. name: "Normal",
  49704. height: math.unit(17, "feet"),
  49705. default: true
  49706. },
  49707. ]
  49708. ))
  49709. characterMakers.push(() => makeCharacter(
  49710. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49711. {
  49712. front: {
  49713. height: math.unit(7 + 4/12, "feet"),
  49714. weight: math.unit(280, "lb"),
  49715. name: "Front",
  49716. image: {
  49717. source: "./media/characters/freki-yrmori/front.svg",
  49718. extra: 1286/1182,
  49719. bottom: 29/1315
  49720. }
  49721. },
  49722. maw: {
  49723. height: math.unit(0.9, "feet"),
  49724. name: "Maw",
  49725. image: {
  49726. source: "./media/characters/freki-yrmori/maw.svg"
  49727. }
  49728. },
  49729. },
  49730. [
  49731. {
  49732. name: "Normal",
  49733. height: math.unit(7 + 4/12, "feet"),
  49734. default: true
  49735. },
  49736. {
  49737. name: "Macro",
  49738. height: math.unit(38.5, "meters")
  49739. },
  49740. ]
  49741. ))
  49742. characterMakers.push(() => makeCharacter(
  49743. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49744. {
  49745. side: {
  49746. height: math.unit(47.2, "meters"),
  49747. weight: math.unit(10000, "tons"),
  49748. name: "Side",
  49749. image: {
  49750. source: "./media/characters/aetherios/side.svg",
  49751. extra: 2363/642,
  49752. bottom: 221/2584
  49753. }
  49754. },
  49755. top: {
  49756. height: math.unit(240, "meters"),
  49757. weight: math.unit(10000, "tons"),
  49758. name: "Top",
  49759. image: {
  49760. source: "./media/characters/aetherios/top.svg"
  49761. }
  49762. },
  49763. bottom: {
  49764. height: math.unit(240, "meters"),
  49765. weight: math.unit(10000, "tons"),
  49766. name: "Bottom",
  49767. image: {
  49768. source: "./media/characters/aetherios/bottom.svg"
  49769. }
  49770. },
  49771. head: {
  49772. height: math.unit(38.6, "meters"),
  49773. name: "Head",
  49774. image: {
  49775. source: "./media/characters/aetherios/head.svg",
  49776. extra: 1335/1112,
  49777. bottom: 0/1335
  49778. }
  49779. },
  49780. front: {
  49781. height: math.unit(29, "meters"),
  49782. name: "Front",
  49783. image: {
  49784. source: "./media/characters/aetherios/front.svg",
  49785. extra: 1266/953,
  49786. bottom: 158/1424
  49787. }
  49788. },
  49789. maw: {
  49790. height: math.unit(16.37, "meters"),
  49791. name: "Maw",
  49792. image: {
  49793. source: "./media/characters/aetherios/maw.svg",
  49794. extra: 748/637,
  49795. bottom: 0/748
  49796. },
  49797. extraAttributes: {
  49798. preyCapacity: {
  49799. name: "Capacity",
  49800. power: 3,
  49801. type: "volume",
  49802. base: math.unit(1000, "people")
  49803. },
  49804. tongueSize: {
  49805. name: "Tongue Size",
  49806. power: 2,
  49807. type: "area",
  49808. base: math.unit(21, "m^2")
  49809. }
  49810. }
  49811. },
  49812. forepaw: {
  49813. height: math.unit(18, "meters"),
  49814. name: "Forepaw",
  49815. image: {
  49816. source: "./media/characters/aetherios/forepaw.svg"
  49817. }
  49818. },
  49819. hindpaw: {
  49820. height: math.unit(23, "meters"),
  49821. name: "Hindpaw",
  49822. image: {
  49823. source: "./media/characters/aetherios/hindpaw.svg"
  49824. }
  49825. },
  49826. genitals: {
  49827. height: math.unit(42, "meters"),
  49828. name: "Genitals",
  49829. image: {
  49830. source: "./media/characters/aetherios/genitals.svg"
  49831. }
  49832. },
  49833. },
  49834. [
  49835. {
  49836. name: "Normal",
  49837. height: math.unit(47.2, "meters"),
  49838. default: true
  49839. },
  49840. {
  49841. name: "Macro",
  49842. height: math.unit(160, "meters")
  49843. },
  49844. {
  49845. name: "Mega",
  49846. height: math.unit(1.87, "km")
  49847. },
  49848. {
  49849. name: "Giga",
  49850. height: math.unit(40000, "km")
  49851. },
  49852. {
  49853. name: "Stellar",
  49854. height: math.unit(158000000, "km")
  49855. },
  49856. {
  49857. name: "Cosmic",
  49858. height: math.unit(9.46e12, "km")
  49859. },
  49860. ]
  49861. ))
  49862. characterMakers.push(() => makeCharacter(
  49863. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49864. {
  49865. front: {
  49866. height: math.unit(5 + 4/12, "feet"),
  49867. weight: math.unit(80, "lb"),
  49868. name: "Front",
  49869. image: {
  49870. source: "./media/characters/mizu-gieeg/front.svg",
  49871. extra: 850/709,
  49872. bottom: 52/902
  49873. }
  49874. },
  49875. back: {
  49876. height: math.unit(5 + 4/12, "feet"),
  49877. weight: math.unit(80, "lb"),
  49878. name: "Back",
  49879. image: {
  49880. source: "./media/characters/mizu-gieeg/back.svg",
  49881. extra: 882/745,
  49882. bottom: 25/907
  49883. }
  49884. },
  49885. },
  49886. [
  49887. {
  49888. name: "Normal",
  49889. height: math.unit(5 + 4/12, "feet"),
  49890. default: true
  49891. },
  49892. ]
  49893. ))
  49894. characterMakers.push(() => makeCharacter(
  49895. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49896. {
  49897. front: {
  49898. height: math.unit(6, "feet"),
  49899. name: "Front",
  49900. image: {
  49901. source: "./media/characters/roselle-st-papier/front.svg",
  49902. extra: 1430/1280,
  49903. bottom: 37/1467
  49904. }
  49905. },
  49906. back: {
  49907. height: math.unit(6, "feet"),
  49908. name: "Back",
  49909. image: {
  49910. source: "./media/characters/roselle-st-papier/back.svg",
  49911. extra: 1491/1296,
  49912. bottom: 23/1514
  49913. }
  49914. },
  49915. ear: {
  49916. height: math.unit(1.26, "feet"),
  49917. name: "Ear",
  49918. image: {
  49919. source: "./media/characters/roselle-st-papier/ear.svg"
  49920. }
  49921. },
  49922. },
  49923. [
  49924. {
  49925. name: "Normal",
  49926. height: math.unit(150, "feet"),
  49927. default: true
  49928. },
  49929. ]
  49930. ))
  49931. characterMakers.push(() => makeCharacter(
  49932. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49933. {
  49934. front: {
  49935. height: math.unit(1, "inches"),
  49936. name: "Front",
  49937. image: {
  49938. source: "./media/characters/valargent/front.svg",
  49939. extra: 1825/1694,
  49940. bottom: 62/1887
  49941. }
  49942. },
  49943. back: {
  49944. height: math.unit(1, "inches"),
  49945. name: "Back",
  49946. image: {
  49947. source: "./media/characters/valargent/back.svg",
  49948. extra: 1775/1682,
  49949. bottom: 88/1863
  49950. }
  49951. },
  49952. },
  49953. [
  49954. {
  49955. name: "Micro",
  49956. height: math.unit(1, "inch"),
  49957. default: true
  49958. },
  49959. ]
  49960. ))
  49961. characterMakers.push(() => makeCharacter(
  49962. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49963. {
  49964. front: {
  49965. height: math.unit(3.4, "meters"),
  49966. name: "Front",
  49967. image: {
  49968. source: "./media/characters/zarina/front.svg",
  49969. extra: 1733/1425,
  49970. bottom: 93/1826
  49971. }
  49972. },
  49973. squatting: {
  49974. height: math.unit(2.14, "meters"),
  49975. name: "Squatting",
  49976. image: {
  49977. source: "./media/characters/zarina/squatting.svg",
  49978. extra: 1073/788,
  49979. bottom: 63/1136
  49980. }
  49981. },
  49982. back: {
  49983. height: math.unit(2.14, "meters"),
  49984. name: "Back",
  49985. image: {
  49986. source: "./media/characters/zarina/back.svg",
  49987. extra: 1128/885,
  49988. bottom: 0/1128
  49989. }
  49990. },
  49991. },
  49992. [
  49993. {
  49994. name: "Normal",
  49995. height: math.unit(3.4, "meters"),
  49996. default: true
  49997. },
  49998. {
  49999. name: "Big",
  50000. height: math.unit(5, "meters")
  50001. },
  50002. {
  50003. name: "Macro",
  50004. height: math.unit(110, "meters")
  50005. },
  50006. ]
  50007. ))
  50008. characterMakers.push(() => makeCharacter(
  50009. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50010. {
  50011. front: {
  50012. height: math.unit(7, "feet"),
  50013. name: "Front",
  50014. image: {
  50015. source: "./media/characters/ventus-astro-fox/front.svg",
  50016. extra: 1792/1623,
  50017. bottom: 28/1820
  50018. }
  50019. },
  50020. back: {
  50021. height: math.unit(7, "feet"),
  50022. name: "Back",
  50023. image: {
  50024. source: "./media/characters/ventus-astro-fox/back.svg",
  50025. extra: 1789/1620,
  50026. bottom: 31/1820
  50027. }
  50028. },
  50029. outfit: {
  50030. height: math.unit(7, "feet"),
  50031. name: "Outfit",
  50032. image: {
  50033. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50034. extra: 1054/925,
  50035. bottom: 15/1069
  50036. }
  50037. },
  50038. head: {
  50039. height: math.unit(1.12, "feet"),
  50040. name: "Head",
  50041. image: {
  50042. source: "./media/characters/ventus-astro-fox/head.svg",
  50043. extra: 866/504,
  50044. bottom: 0/866
  50045. }
  50046. },
  50047. hand: {
  50048. height: math.unit(1, "feet"),
  50049. name: "Hand",
  50050. image: {
  50051. source: "./media/characters/ventus-astro-fox/hand.svg"
  50052. }
  50053. },
  50054. paw: {
  50055. height: math.unit(1.5, "feet"),
  50056. name: "Paw",
  50057. image: {
  50058. source: "./media/characters/ventus-astro-fox/paw.svg"
  50059. }
  50060. },
  50061. },
  50062. [
  50063. {
  50064. name: "Normal",
  50065. height: math.unit(7, "feet"),
  50066. default: true
  50067. },
  50068. {
  50069. name: "Macro",
  50070. height: math.unit(200, "feet")
  50071. },
  50072. {
  50073. name: "Cosmic",
  50074. height: math.unit(3, "universes")
  50075. },
  50076. ]
  50077. ))
  50078. characterMakers.push(() => makeCharacter(
  50079. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50080. {
  50081. front: {
  50082. height: math.unit(3, "meters"),
  50083. weight: math.unit(7000, "lb"),
  50084. name: "Front",
  50085. image: {
  50086. source: "./media/characters/core-t/front.svg",
  50087. extra: 5729/4941,
  50088. bottom: 1129/6858
  50089. }
  50090. },
  50091. },
  50092. [
  50093. {
  50094. name: "Big",
  50095. height: math.unit(3, "meters"),
  50096. default: true
  50097. },
  50098. ]
  50099. ))
  50100. characterMakers.push(() => makeCharacter(
  50101. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50102. {
  50103. normal: {
  50104. height: math.unit(6 + 6/12, "feet"),
  50105. weight: math.unit(275, "lb"),
  50106. name: "Front",
  50107. image: {
  50108. source: "./media/characters/cadbunny/normal.svg",
  50109. extra: 1129/947,
  50110. bottom: 93/1222
  50111. },
  50112. default: true,
  50113. form: "normal"
  50114. },
  50115. gigantamax: {
  50116. height: math.unit(26, "feet"),
  50117. weight: math.unit(16000, "lb"),
  50118. name: "Front",
  50119. image: {
  50120. source: "./media/characters/cadbunny/gigantamax.svg",
  50121. extra: 1133/944,
  50122. bottom: 90/1223
  50123. },
  50124. default: true,
  50125. form: "gigantamax"
  50126. },
  50127. },
  50128. [
  50129. {
  50130. name: "Normal",
  50131. height: math.unit(6 + 6/12, "feet"),
  50132. default: true,
  50133. form: "normal"
  50134. },
  50135. {
  50136. name: "Small",
  50137. height: math.unit(26, "feet"),
  50138. default: true,
  50139. form: "gigantamax"
  50140. },
  50141. {
  50142. name: "Large",
  50143. height: math.unit(78, "feet"),
  50144. form: "gigantamax"
  50145. },
  50146. ],
  50147. {
  50148. "normal": {
  50149. name: "Normal",
  50150. default: true
  50151. },
  50152. "gigantamax": {
  50153. name: "Gigantamax"
  50154. }
  50155. }
  50156. ))
  50157. characterMakers.push(() => makeCharacter(
  50158. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50159. {
  50160. anthroFront: {
  50161. height: math.unit(8, "feet"),
  50162. weight: math.unit(300, "lb"),
  50163. name: "Front",
  50164. image: {
  50165. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50166. extra: 1272/1176,
  50167. bottom: 53/1325
  50168. },
  50169. form: "anthro",
  50170. default: true
  50171. },
  50172. feralSide: {
  50173. height: math.unit(4, "feet"),
  50174. weight: math.unit(250, "lb"),
  50175. name: "Side",
  50176. image: {
  50177. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50178. extra: 731/621,
  50179. bottom: 0/731
  50180. },
  50181. form: "feral",
  50182. default: true
  50183. },
  50184. },
  50185. [
  50186. {
  50187. name: "Regular",
  50188. height: math.unit(8, "feet"),
  50189. form: "anthro"
  50190. },
  50191. {
  50192. name: "Macro",
  50193. height: math.unit(250, "feet"),
  50194. form: "anthro",
  50195. default: true
  50196. },
  50197. {
  50198. name: "Regular",
  50199. height: math.unit(4, "feet"),
  50200. form: "feral"
  50201. },
  50202. {
  50203. name: "Macro",
  50204. height: math.unit(125, "feet"),
  50205. form: "feral",
  50206. default: true
  50207. },
  50208. ],
  50209. {
  50210. "anthro": {
  50211. name: "Anthro",
  50212. default: true
  50213. },
  50214. "feral": {
  50215. name: "Feral",
  50216. },
  50217. }
  50218. ))
  50219. characterMakers.push(() => makeCharacter(
  50220. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50221. {
  50222. front: {
  50223. height: math.unit(11 + 10/12, "feet"),
  50224. weight: math.unit(1587, "kg"),
  50225. name: "Front",
  50226. image: {
  50227. source: "./media/characters/maple-javira-dragon/front.svg",
  50228. extra: 1136/744,
  50229. bottom: 73/1209
  50230. }
  50231. },
  50232. side: {
  50233. height: math.unit(11 + 10/12, "feet"),
  50234. weight: math.unit(1587, "kg"),
  50235. name: "Side",
  50236. image: {
  50237. source: "./media/characters/maple-javira-dragon/side.svg",
  50238. extra: 712/505,
  50239. bottom: 17/729
  50240. }
  50241. },
  50242. head: {
  50243. height: math.unit(8.05, "feet"),
  50244. name: "Head",
  50245. image: {
  50246. source: "./media/characters/maple-javira-dragon/head.svg",
  50247. extra: 1420/1344,
  50248. bottom: 0/1420
  50249. }
  50250. },
  50251. },
  50252. [
  50253. {
  50254. name: "Normal",
  50255. height: math.unit(11 + 10/12, "feet"),
  50256. default: true
  50257. },
  50258. ]
  50259. ))
  50260. characterMakers.push(() => makeCharacter(
  50261. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50262. {
  50263. front: {
  50264. height: math.unit(117, "cm"),
  50265. weight: math.unit(50, "kg"),
  50266. name: "Front",
  50267. image: {
  50268. source: "./media/characters/sonia-wyverntail/front.svg",
  50269. extra: 708/592,
  50270. bottom: 25/733
  50271. }
  50272. },
  50273. },
  50274. [
  50275. {
  50276. name: "Normal",
  50277. height: math.unit(117, "cm"),
  50278. default: true
  50279. },
  50280. ]
  50281. ))
  50282. characterMakers.push(() => makeCharacter(
  50283. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50284. {
  50285. front: {
  50286. height: math.unit(6 + 5/12, "feet"),
  50287. name: "Front",
  50288. image: {
  50289. source: "./media/characters/micah/front.svg",
  50290. extra: 1758/1546,
  50291. bottom: 214/1972
  50292. }
  50293. },
  50294. },
  50295. [
  50296. {
  50297. name: "Normal",
  50298. height: math.unit(6 + 5/12, "feet"),
  50299. default: true
  50300. },
  50301. ]
  50302. ))
  50303. characterMakers.push(() => makeCharacter(
  50304. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50305. {
  50306. front: {
  50307. height: math.unit(5 + 10/12, "feet"),
  50308. weight: math.unit(220, "lb"),
  50309. name: "Front",
  50310. image: {
  50311. source: "./media/characters/zarya/front.svg",
  50312. extra: 593/572,
  50313. bottom: 50/643
  50314. }
  50315. },
  50316. back: {
  50317. height: math.unit(5 + 10/12, "feet"),
  50318. weight: math.unit(220, "lb"),
  50319. name: "Back",
  50320. image: {
  50321. source: "./media/characters/zarya/back.svg",
  50322. extra: 603/582,
  50323. bottom: 38/641
  50324. }
  50325. },
  50326. },
  50327. [
  50328. {
  50329. name: "Normal",
  50330. height: math.unit(5 + 10/12, "feet"),
  50331. default: true
  50332. },
  50333. ]
  50334. ))
  50335. characterMakers.push(() => makeCharacter(
  50336. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50337. {
  50338. front: {
  50339. height: math.unit(7.5, "feet"),
  50340. name: "Front",
  50341. image: {
  50342. source: "./media/characters/sven-hatisson/front.svg",
  50343. extra: 917/857,
  50344. bottom: 42/959
  50345. }
  50346. },
  50347. back: {
  50348. height: math.unit(7.5, "feet"),
  50349. name: "Back",
  50350. image: {
  50351. source: "./media/characters/sven-hatisson/back.svg",
  50352. extra: 903/856,
  50353. bottom: 15/918
  50354. }
  50355. },
  50356. },
  50357. [
  50358. {
  50359. name: "Base Height",
  50360. height: math.unit(7.5, "feet")
  50361. },
  50362. {
  50363. name: "Usual Height",
  50364. height: math.unit(13.5, "feet"),
  50365. default: true
  50366. },
  50367. {
  50368. name: "Smaller Macro",
  50369. height: math.unit(85, "feet")
  50370. },
  50371. {
  50372. name: "Moderate Macro",
  50373. height: math.unit(320, "feet")
  50374. },
  50375. {
  50376. name: "Large Macro",
  50377. height: math.unit(1000, "feet")
  50378. },
  50379. {
  50380. name: "Largest Size",
  50381. height: math.unit(2, "miles")
  50382. },
  50383. ]
  50384. ))
  50385. characterMakers.push(() => makeCharacter(
  50386. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50387. {
  50388. side: {
  50389. height: math.unit(1.8, "meters"),
  50390. weight: math.unit(275, "kg"),
  50391. name: "Side",
  50392. image: {
  50393. source: "./media/characters/terra/side.svg",
  50394. extra: 1273/1147,
  50395. bottom: 0/1273
  50396. }
  50397. },
  50398. },
  50399. [
  50400. {
  50401. name: "Normal",
  50402. height: math.unit(16.2, "meters"),
  50403. default: true
  50404. },
  50405. ]
  50406. ))
  50407. characterMakers.push(() => makeCharacter(
  50408. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50409. {
  50410. borzoiFront: {
  50411. height: math.unit(6 + 9/12, "feet"),
  50412. name: "Front",
  50413. image: {
  50414. source: "./media/characters/rae/borzoi-front.svg",
  50415. extra: 1161/1098,
  50416. bottom: 31/1192
  50417. },
  50418. form: "borzoi",
  50419. default: true
  50420. },
  50421. werewolfFront: {
  50422. height: math.unit(8 + 7/12, "feet"),
  50423. name: "Front",
  50424. image: {
  50425. source: "./media/characters/rae/werewolf-front.svg",
  50426. extra: 1411/1334,
  50427. bottom: 127/1538
  50428. },
  50429. form: "werewolf",
  50430. default: true
  50431. },
  50432. },
  50433. [
  50434. {
  50435. name: "Normal",
  50436. height: math.unit(6 + 9/12, "feet"),
  50437. default: true,
  50438. form: "borzoi"
  50439. },
  50440. {
  50441. name: "Normal",
  50442. height: math.unit(8 + 7/12, "feet"),
  50443. default: true,
  50444. form: "werewolf"
  50445. },
  50446. ],
  50447. {
  50448. "borzoi": {
  50449. name: "Borzoi",
  50450. default: true
  50451. },
  50452. "werewolf": {
  50453. name: "Werewolf",
  50454. },
  50455. }
  50456. ))
  50457. characterMakers.push(() => makeCharacter(
  50458. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50459. {
  50460. front: {
  50461. height: math.unit(8 + 7/12, "feet"),
  50462. weight: math.unit(482, "lb"),
  50463. name: "Front",
  50464. image: {
  50465. source: "./media/characters/kit/front.svg",
  50466. extra: 1247/1103,
  50467. bottom: 41/1288
  50468. }
  50469. },
  50470. back: {
  50471. height: math.unit(8 + 7/12, "feet"),
  50472. weight: math.unit(482, "lb"),
  50473. name: "Back",
  50474. image: {
  50475. source: "./media/characters/kit/back.svg",
  50476. extra: 1252/1123,
  50477. bottom: 21/1273
  50478. }
  50479. },
  50480. paw: {
  50481. height: math.unit(1.46, "feet"),
  50482. name: "Paw",
  50483. image: {
  50484. source: "./media/characters/kit/paw.svg"
  50485. }
  50486. },
  50487. },
  50488. [
  50489. {
  50490. name: "Normal",
  50491. height: math.unit(2.61, "meters"),
  50492. default: true
  50493. },
  50494. {
  50495. name: "\"Tall\"",
  50496. height: math.unit(8.21, "meters")
  50497. },
  50498. {
  50499. name: "Tall",
  50500. height: math.unit(19.6, "meters")
  50501. },
  50502. {
  50503. name: "Very Tall",
  50504. height: math.unit(57.91, "meters")
  50505. },
  50506. {
  50507. name: "Semi-Macro",
  50508. height: math.unit(138.64, "meters")
  50509. },
  50510. {
  50511. name: "Macro",
  50512. height: math.unit(831.99, "meters")
  50513. },
  50514. {
  50515. name: "EX-Macro",
  50516. height: math.unit(96451121, "meters")
  50517. },
  50518. {
  50519. name: "S1-Omnipotent",
  50520. height: math.unit(4.42074e+9, "meters")
  50521. },
  50522. {
  50523. name: "S2-Omnipotent",
  50524. height: math.unit(9.42074e+17, "meters")
  50525. },
  50526. {
  50527. name: "Omnipotent",
  50528. height: math.unit(4.23112e+24, "meters")
  50529. },
  50530. {
  50531. name: "Hypergod",
  50532. height: math.unit(5.05176e+27, "meters")
  50533. },
  50534. {
  50535. name: "Hypergod-EX",
  50536. height: math.unit(9.45532e+49, "meters")
  50537. },
  50538. {
  50539. name: "Hypergod-SP",
  50540. height: math.unit(9.45532e+195, "meters")
  50541. },
  50542. ]
  50543. ))
  50544. characterMakers.push(() => makeCharacter(
  50545. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50546. {
  50547. side: {
  50548. height: math.unit(0.6, "meters"),
  50549. weight: math.unit(24, "kg"),
  50550. name: "Side",
  50551. image: {
  50552. source: "./media/characters/celeste/side.svg",
  50553. extra: 810/517,
  50554. bottom: 53/863
  50555. }
  50556. },
  50557. },
  50558. [
  50559. {
  50560. name: "Velociraptor",
  50561. height: math.unit(0.6, "meters"),
  50562. default: true
  50563. },
  50564. {
  50565. name: "Utahraptor",
  50566. height: math.unit(1.8, "meters")
  50567. },
  50568. {
  50569. name: "Gallimimus",
  50570. height: math.unit(4.0, "meters")
  50571. },
  50572. {
  50573. name: "Large",
  50574. height: math.unit(20, "meters")
  50575. },
  50576. {
  50577. name: "Planetary",
  50578. height: math.unit(50, "megameters")
  50579. },
  50580. {
  50581. name: "Stellar",
  50582. height: math.unit(1.5, "gigameters")
  50583. },
  50584. {
  50585. name: "Galactic",
  50586. height: math.unit(100, "exameters")
  50587. },
  50588. ]
  50589. ))
  50590. characterMakers.push(() => makeCharacter(
  50591. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50592. {
  50593. front: {
  50594. height: math.unit(6, "feet"),
  50595. weight: math.unit(210, "lb"),
  50596. name: "Front",
  50597. image: {
  50598. source: "./media/characters/glacia/front.svg",
  50599. extra: 958/901,
  50600. bottom: 45/1003
  50601. }
  50602. },
  50603. },
  50604. [
  50605. {
  50606. name: "Macro",
  50607. height: math.unit(1000, "meters"),
  50608. default: true
  50609. },
  50610. ]
  50611. ))
  50612. characterMakers.push(() => makeCharacter(
  50613. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50614. {
  50615. front: {
  50616. height: math.unit(4, "meters"),
  50617. name: "Front",
  50618. image: {
  50619. source: "./media/characters/giri/front.svg",
  50620. extra: 966/894,
  50621. bottom: 21/987
  50622. }
  50623. },
  50624. },
  50625. [
  50626. {
  50627. name: "Normal",
  50628. height: math.unit(4, "meters"),
  50629. default: true
  50630. },
  50631. ]
  50632. ))
  50633. characterMakers.push(() => makeCharacter(
  50634. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50635. {
  50636. back: {
  50637. height: math.unit(4, "feet"),
  50638. weight: math.unit(37, "lb"),
  50639. name: "Back",
  50640. image: {
  50641. source: "./media/characters/tin/back.svg",
  50642. extra: 845/780,
  50643. bottom: 28/873
  50644. }
  50645. },
  50646. },
  50647. [
  50648. {
  50649. name: "Normal",
  50650. height: math.unit(4, "feet"),
  50651. default: true
  50652. },
  50653. ]
  50654. ))
  50655. characterMakers.push(() => makeCharacter(
  50656. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50657. {
  50658. front: {
  50659. height: math.unit(25, "feet"),
  50660. name: "Front",
  50661. image: {
  50662. source: "./media/characters/cadenza-vivace/front.svg",
  50663. extra: 1842/1578,
  50664. bottom: 30/1872
  50665. }
  50666. },
  50667. },
  50668. [
  50669. {
  50670. name: "Macro",
  50671. height: math.unit(25, "feet"),
  50672. default: true
  50673. },
  50674. ]
  50675. ))
  50676. characterMakers.push(() => makeCharacter(
  50677. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50678. {
  50679. front: {
  50680. height: math.unit(10, "feet"),
  50681. weight: math.unit(625, "kg"),
  50682. name: "Front",
  50683. image: {
  50684. source: "./media/characters/zain/front.svg",
  50685. extra: 1682/1498,
  50686. bottom: 223/1905
  50687. }
  50688. },
  50689. back: {
  50690. height: math.unit(10, "feet"),
  50691. weight: math.unit(625, "kg"),
  50692. name: "Back",
  50693. image: {
  50694. source: "./media/characters/zain/back.svg",
  50695. extra: 1814/1657,
  50696. bottom: 152/1966
  50697. }
  50698. },
  50699. head: {
  50700. height: math.unit(10, "feet"),
  50701. weight: math.unit(625, "kg"),
  50702. name: "Head",
  50703. image: {
  50704. source: "./media/characters/zain/head.svg",
  50705. extra: 1059/762,
  50706. bottom: 0/1059
  50707. }
  50708. },
  50709. },
  50710. [
  50711. {
  50712. name: "Normal",
  50713. height: math.unit(10, "feet"),
  50714. default: true
  50715. },
  50716. ]
  50717. ))
  50718. characterMakers.push(() => makeCharacter(
  50719. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50720. {
  50721. front: {
  50722. height: math.unit(6 + 5/12, "feet"),
  50723. weight: math.unit(750, "lb"),
  50724. name: "Front",
  50725. image: {
  50726. source: "./media/characters/ruchex/front.svg",
  50727. extra: 877/820,
  50728. bottom: 17/894
  50729. },
  50730. extraAttributes: {
  50731. "width": {
  50732. name: "Width",
  50733. power: 1,
  50734. type: "length",
  50735. base: math.unit(4.757, "feet")
  50736. },
  50737. }
  50738. },
  50739. },
  50740. [
  50741. {
  50742. name: "Normal",
  50743. height: math.unit(6 + 5/12, "feet"),
  50744. default: true
  50745. },
  50746. ]
  50747. ))
  50748. characterMakers.push(() => makeCharacter(
  50749. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50750. {
  50751. dressedFront: {
  50752. height: math.unit(191, "cm"),
  50753. weight: math.unit(80, "kg"),
  50754. name: "Front",
  50755. image: {
  50756. source: "./media/characters/buster/dressed-front.svg",
  50757. extra: 1022/973,
  50758. bottom: 69/1091
  50759. }
  50760. },
  50761. dressedBack: {
  50762. height: math.unit(191, "cm"),
  50763. weight: math.unit(80, "kg"),
  50764. name: "Back",
  50765. image: {
  50766. source: "./media/characters/buster/dressed-back.svg",
  50767. extra: 1018/970,
  50768. bottom: 55/1073
  50769. }
  50770. },
  50771. nudeFront: {
  50772. height: math.unit(191, "cm"),
  50773. weight: math.unit(80, "kg"),
  50774. name: "Front (Nude)",
  50775. image: {
  50776. source: "./media/characters/buster/nude-front.svg",
  50777. extra: 1022/973,
  50778. bottom: 69/1091
  50779. }
  50780. },
  50781. nudeBack: {
  50782. height: math.unit(191, "cm"),
  50783. weight: math.unit(80, "kg"),
  50784. name: "Back (Nude)",
  50785. image: {
  50786. source: "./media/characters/buster/nude-back.svg",
  50787. extra: 1018/970,
  50788. bottom: 55/1073
  50789. }
  50790. },
  50791. dick: {
  50792. height: math.unit(2.59, "feet"),
  50793. name: "Dick",
  50794. image: {
  50795. source: "./media/characters/buster/dick.svg"
  50796. }
  50797. },
  50798. ass: {
  50799. height: math.unit(1.2, "feet"),
  50800. name: "Ass",
  50801. image: {
  50802. source: "./media/characters/buster/ass.svg"
  50803. }
  50804. },
  50805. },
  50806. [
  50807. {
  50808. name: "Normal",
  50809. height: math.unit(191, "cm"),
  50810. default: true
  50811. },
  50812. ]
  50813. ))
  50814. characterMakers.push(() => makeCharacter(
  50815. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50816. {
  50817. side: {
  50818. height: math.unit(8.1, "feet"),
  50819. weight: math.unit(3500, "lb"),
  50820. name: "Side",
  50821. image: {
  50822. source: "./media/characters/sonya/side.svg",
  50823. extra: 1730/1317,
  50824. bottom: 86/1816
  50825. }
  50826. },
  50827. },
  50828. [
  50829. {
  50830. name: "Normal",
  50831. height: math.unit(8.1, "feet"),
  50832. default: true
  50833. },
  50834. ]
  50835. ))
  50836. //characters
  50837. function makeCharacters() {
  50838. const results = [];
  50839. characterMakers.forEach(character => {
  50840. results.push(character());
  50841. });
  50842. return results;
  50843. }