less copy protection, more size visualization
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

56304 linhas
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. "shapeshifter": {
  2103. name: "shapeshifter",
  2104. parents: []
  2105. },
  2106. "obstagoon": {
  2107. name: "Obstagoon",
  2108. parents: ["zigzagoon"]
  2109. },
  2110. "thomsons-gazelle": {
  2111. name: "Thomsons Gazelle",
  2112. parents: ["gazelle"]
  2113. },
  2114. "gazelle": {
  2115. name: "Gazelle",
  2116. parents: ["antelope"]
  2117. },
  2118. }
  2119. //species
  2120. function getSpeciesInfo(speciesList) {
  2121. let result = new Set();
  2122. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2123. result.add(entry)
  2124. });
  2125. return Array.from(result);
  2126. };
  2127. function getSpeciesInfoHelper(species) {
  2128. if (!speciesData[species]) {
  2129. console.warn(species + " doesn't exist");
  2130. return [];
  2131. }
  2132. if (speciesData[species].parents) {
  2133. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2134. } else {
  2135. return [species];
  2136. }
  2137. }
  2138. characterMakers.push(() => makeCharacter(
  2139. {
  2140. name: "Fen",
  2141. species: ["crux"],
  2142. description: {
  2143. title: "Bio",
  2144. text: "Very furry. Sheds on everything."
  2145. },
  2146. tags: [
  2147. "anthro",
  2148. "goo"
  2149. ]
  2150. },
  2151. {
  2152. front: {
  2153. height: math.unit(12, "feet"),
  2154. weight: math.unit(2400, "lb"),
  2155. preyCapacity: math.unit(1, "people"),
  2156. name: "Front",
  2157. image: {
  2158. source: "./media/characters/fen/front.svg",
  2159. extra: 1804/1562,
  2160. bottom: 205/2009
  2161. },
  2162. extraAttributes: {
  2163. pawSize: {
  2164. name: "Paw Size",
  2165. power: 2,
  2166. type: "area",
  2167. base: math.unit(0.35, "m^2")
  2168. }
  2169. }
  2170. },
  2171. diving: {
  2172. height: math.unit(4.9, "meters"),
  2173. weight: math.unit(2400, "lb"),
  2174. name: "Diving",
  2175. image: {
  2176. source: "./media/characters/fen/diving.svg"
  2177. }
  2178. },
  2179. sleeby: {
  2180. height: math.unit(3.45, "meters"),
  2181. weight: math.unit(2400, "lb"),
  2182. name: "Sleeby",
  2183. image: {
  2184. source: "./media/characters/fen/sleeby.svg"
  2185. }
  2186. },
  2187. goo: {
  2188. height: math.unit(12, "feet"),
  2189. weight: math.unit(3600, "lb"),
  2190. volume: math.unit(1000, "liters"),
  2191. preyCapacity: math.unit(6, "people"),
  2192. name: "Goo",
  2193. image: {
  2194. source: "./media/characters/fen/goo.svg",
  2195. extra: 1307/1071,
  2196. bottom: 134/1441
  2197. }
  2198. },
  2199. gooNsfw: {
  2200. height: math.unit(12, "feet"),
  2201. weight: math.unit(3750, "lb"),
  2202. volume: math.unit(1000, "liters"),
  2203. preyCapacity: math.unit(6, "people"),
  2204. name: "Goo (NSFW)",
  2205. image: {
  2206. source: "./media/characters/fen/goo-nsfw.svg",
  2207. extra: 1875/1734,
  2208. bottom: 122/1997
  2209. }
  2210. },
  2211. maw: {
  2212. height: math.unit(5.03, "feet"),
  2213. name: "Maw",
  2214. image: {
  2215. source: "./media/characters/fen/maw.svg"
  2216. }
  2217. },
  2218. gooCeiling: {
  2219. height: math.unit(6.6, "feet"),
  2220. weight: math.unit(3000, "lb"),
  2221. volume: math.unit(1000, "liters"),
  2222. preyCapacity: math.unit(6, "people"),
  2223. name: "Goo (Ceiling)",
  2224. image: {
  2225. source: "./media/characters/fen/goo-ceiling.svg"
  2226. }
  2227. },
  2228. paw: {
  2229. height: math.unit(3.77, "feet"),
  2230. name: "Paw",
  2231. image: {
  2232. source: "./media/characters/fen/paw.svg"
  2233. },
  2234. extraAttributes: {
  2235. "toeSize": {
  2236. name: "Toe Size",
  2237. power: 2,
  2238. type: "area",
  2239. base: math.unit(0.02875, "m^2")
  2240. },
  2241. "pawSize": {
  2242. name: "Paw Size",
  2243. power: 2,
  2244. type: "area",
  2245. base: math.unit(0.378, "m^2")
  2246. },
  2247. }
  2248. },
  2249. tail: {
  2250. height: math.unit(12.1, "feet"),
  2251. name: "Tail",
  2252. image: {
  2253. source: "./media/characters/fen/tail.svg"
  2254. }
  2255. },
  2256. tailFull: {
  2257. height: math.unit(12.1, "feet"),
  2258. name: "Full Tail",
  2259. image: {
  2260. source: "./media/characters/fen/tail-full.svg"
  2261. }
  2262. },
  2263. back: {
  2264. height: math.unit(12, "feet"),
  2265. weight: math.unit(2400, "lb"),
  2266. name: "Back",
  2267. image: {
  2268. source: "./media/characters/fen/back.svg",
  2269. },
  2270. info: {
  2271. description: {
  2272. mode: "append",
  2273. text: "\n\nHe is not currently looking at you."
  2274. }
  2275. }
  2276. },
  2277. full: {
  2278. height: math.unit(1.85, "meter"),
  2279. weight: math.unit(3200, "lb"),
  2280. name: "Full",
  2281. image: {
  2282. source: "./media/characters/fen/full.svg",
  2283. extra: 1133/859,
  2284. bottom: 145/1278
  2285. },
  2286. info: {
  2287. description: {
  2288. mode: "append",
  2289. text: "\n\nMunch."
  2290. }
  2291. }
  2292. },
  2293. gooLounging: {
  2294. height: math.unit(4.53, "feet"),
  2295. weight: math.unit(3000, "lb"),
  2296. preyCapacity: math.unit(6, "people"),
  2297. name: "Goo (Lounging)",
  2298. image: {
  2299. source: "./media/characters/fen/goo-lounging.svg",
  2300. bottom: 116 / 613
  2301. }
  2302. },
  2303. lounging: {
  2304. height: math.unit(10.52, "feet"),
  2305. weight: math.unit(2400, "lb"),
  2306. name: "Lounging",
  2307. image: {
  2308. source: "./media/characters/fen/lounging.svg"
  2309. }
  2310. },
  2311. },
  2312. [
  2313. {
  2314. name: "Small",
  2315. height: math.unit(2.2428, "meter")
  2316. },
  2317. {
  2318. name: "Normal",
  2319. height: math.unit(12, "feet"),
  2320. default: true,
  2321. },
  2322. {
  2323. name: "Big",
  2324. height: math.unit(20, "feet")
  2325. },
  2326. {
  2327. name: "Minimacro",
  2328. height: math.unit(40, "feet"),
  2329. info: {
  2330. description: {
  2331. mode: "append",
  2332. text: "\n\nTOO DAMN BIG"
  2333. }
  2334. }
  2335. },
  2336. {
  2337. name: "Macro",
  2338. height: math.unit(100, "feet"),
  2339. info: {
  2340. description: {
  2341. mode: "append",
  2342. text: "\n\nTOO DAMN BIG"
  2343. }
  2344. }
  2345. },
  2346. {
  2347. name: "Megamacro",
  2348. height: math.unit(2, "miles")
  2349. },
  2350. {
  2351. name: "Gigamacro",
  2352. height: math.unit(10, "earths")
  2353. },
  2354. ]
  2355. ))
  2356. characterMakers.push(() => makeCharacter(
  2357. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2358. {
  2359. front: {
  2360. height: math.unit(183, "cm"),
  2361. weight: math.unit(80, "kg"),
  2362. name: "Front",
  2363. image: {
  2364. source: "./media/characters/sofia-fluttertail/front.svg",
  2365. bottom: 0.01,
  2366. extra: 2154 / 2081
  2367. }
  2368. },
  2369. frontAlt: {
  2370. height: math.unit(183, "cm"),
  2371. weight: math.unit(80, "kg"),
  2372. name: "Front (alt)",
  2373. image: {
  2374. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2375. }
  2376. },
  2377. back: {
  2378. height: math.unit(183, "cm"),
  2379. weight: math.unit(80, "kg"),
  2380. name: "Back",
  2381. image: {
  2382. source: "./media/characters/sofia-fluttertail/back.svg"
  2383. }
  2384. },
  2385. kneeling: {
  2386. height: math.unit(125, "cm"),
  2387. weight: math.unit(80, "kg"),
  2388. name: "Kneeling",
  2389. image: {
  2390. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2391. extra: 1033 / 977,
  2392. bottom: 23.7 / 1057
  2393. }
  2394. },
  2395. maw: {
  2396. height: math.unit(183 / 5, "cm"),
  2397. name: "Maw",
  2398. image: {
  2399. source: "./media/characters/sofia-fluttertail/maw.svg"
  2400. }
  2401. },
  2402. mawcloseup: {
  2403. height: math.unit(183 / 5 * 0.41, "cm"),
  2404. name: "Maw (Closeup)",
  2405. image: {
  2406. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2407. }
  2408. },
  2409. paws: {
  2410. height: math.unit(1.17, "feet"),
  2411. name: "Paws",
  2412. image: {
  2413. source: "./media/characters/sofia-fluttertail/paws.svg",
  2414. extra: 851 / 851,
  2415. bottom: 17 / 868
  2416. }
  2417. },
  2418. },
  2419. [
  2420. {
  2421. name: "Normal",
  2422. height: math.unit(1.83, "meter")
  2423. },
  2424. {
  2425. name: "Size Thief",
  2426. height: math.unit(18, "feet")
  2427. },
  2428. {
  2429. name: "50 Foot Collie",
  2430. height: math.unit(50, "feet")
  2431. },
  2432. {
  2433. name: "Macro",
  2434. height: math.unit(96, "feet"),
  2435. default: true
  2436. },
  2437. {
  2438. name: "Megamerger",
  2439. height: math.unit(650, "feet")
  2440. },
  2441. ]
  2442. ))
  2443. characterMakers.push(() => makeCharacter(
  2444. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2445. {
  2446. front: {
  2447. height: math.unit(7, "feet"),
  2448. weight: math.unit(100, "kg"),
  2449. name: "Front",
  2450. image: {
  2451. source: "./media/characters/march/front.svg",
  2452. extra: 1992/1851,
  2453. bottom: 39/2031
  2454. }
  2455. },
  2456. foot: {
  2457. height: math.unit(0.9, "feet"),
  2458. name: "Foot",
  2459. image: {
  2460. source: "./media/characters/march/foot.svg"
  2461. }
  2462. },
  2463. },
  2464. [
  2465. {
  2466. name: "Normal",
  2467. height: math.unit(7.9, "feet")
  2468. },
  2469. {
  2470. name: "Macro",
  2471. height: math.unit(220, "meters")
  2472. },
  2473. {
  2474. name: "Megamacro",
  2475. height: math.unit(2.98, "km"),
  2476. default: true
  2477. },
  2478. {
  2479. name: "Gigamacro",
  2480. height: math.unit(15963, "km")
  2481. },
  2482. {
  2483. name: "Teramacro",
  2484. height: math.unit(2980000000, "km")
  2485. },
  2486. {
  2487. name: "Examacro",
  2488. height: math.unit(250, "parsecs")
  2489. },
  2490. ]
  2491. ))
  2492. characterMakers.push(() => makeCharacter(
  2493. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2494. {
  2495. front: {
  2496. height: math.unit(6, "feet"),
  2497. weight: math.unit(60, "kg"),
  2498. name: "Front",
  2499. image: {
  2500. source: "./media/characters/noir/front.svg",
  2501. extra: 1,
  2502. bottom: 0.032
  2503. }
  2504. },
  2505. },
  2506. [
  2507. {
  2508. name: "Normal",
  2509. height: math.unit(6.6, "feet")
  2510. },
  2511. {
  2512. name: "Macro",
  2513. height: math.unit(500, "feet")
  2514. },
  2515. {
  2516. name: "Megamacro",
  2517. height: math.unit(2.5, "km"),
  2518. default: true
  2519. },
  2520. {
  2521. name: "Gigamacro",
  2522. height: math.unit(22500, "km")
  2523. },
  2524. {
  2525. name: "Teramacro",
  2526. height: math.unit(2500000000, "km")
  2527. },
  2528. {
  2529. name: "Examacro",
  2530. height: math.unit(200, "parsecs")
  2531. },
  2532. ]
  2533. ))
  2534. characterMakers.push(() => makeCharacter(
  2535. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2536. {
  2537. front: {
  2538. height: math.unit(7, "feet"),
  2539. weight: math.unit(100, "kg"),
  2540. name: "Front",
  2541. image: {
  2542. source: "./media/characters/okuri/front.svg",
  2543. extra: 739/665,
  2544. bottom: 39/778
  2545. }
  2546. },
  2547. back: {
  2548. height: math.unit(7, "feet"),
  2549. weight: math.unit(100, "kg"),
  2550. name: "Back",
  2551. image: {
  2552. source: "./media/characters/okuri/back.svg",
  2553. extra: 734/653,
  2554. bottom: 13/747
  2555. }
  2556. },
  2557. sitting: {
  2558. height: math.unit(2.95, "feet"),
  2559. weight: math.unit(100, "kg"),
  2560. name: "Sitting",
  2561. image: {
  2562. source: "./media/characters/okuri/sitting.svg",
  2563. extra: 370/318,
  2564. bottom: 99/469
  2565. }
  2566. },
  2567. },
  2568. [
  2569. {
  2570. name: "Smallest",
  2571. height: math.unit(5 + 2/12, "feet")
  2572. },
  2573. {
  2574. name: "Smaller",
  2575. height: math.unit(300, "feet")
  2576. },
  2577. {
  2578. name: "Small",
  2579. height: math.unit(1000, "feet")
  2580. },
  2581. {
  2582. name: "Macro",
  2583. height: math.unit(1, "mile")
  2584. },
  2585. {
  2586. name: "Mega Macro (Small)",
  2587. height: math.unit(20, "km")
  2588. },
  2589. {
  2590. name: "Mega Macro (Large)",
  2591. height: math.unit(600, "km")
  2592. },
  2593. {
  2594. name: "Giga Macro",
  2595. height: math.unit(10000, "km")
  2596. },
  2597. {
  2598. name: "Normal",
  2599. height: math.unit(577560, "km"),
  2600. default: true
  2601. },
  2602. {
  2603. name: "Large",
  2604. height: math.unit(4, "galaxies")
  2605. },
  2606. {
  2607. name: "Largest",
  2608. height: math.unit(15, "multiverses")
  2609. },
  2610. ]
  2611. ))
  2612. characterMakers.push(() => makeCharacter(
  2613. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2614. {
  2615. front: {
  2616. height: math.unit(7, "feet"),
  2617. weight: math.unit(100, "kg"),
  2618. name: "Front",
  2619. image: {
  2620. source: "./media/characters/manny/front.svg",
  2621. extra: 1,
  2622. bottom: 0.06
  2623. }
  2624. },
  2625. back: {
  2626. height: math.unit(7, "feet"),
  2627. weight: math.unit(100, "kg"),
  2628. name: "Back",
  2629. image: {
  2630. source: "./media/characters/manny/back.svg",
  2631. extra: 1,
  2632. bottom: 0.014
  2633. }
  2634. },
  2635. },
  2636. [
  2637. {
  2638. name: "Normal",
  2639. height: math.unit(7, "feet"),
  2640. },
  2641. {
  2642. name: "Macro",
  2643. height: math.unit(78, "feet"),
  2644. default: true
  2645. },
  2646. {
  2647. name: "Macro+",
  2648. height: math.unit(300, "meters")
  2649. },
  2650. {
  2651. name: "Macro++",
  2652. height: math.unit(2400, "meters")
  2653. },
  2654. {
  2655. name: "Megamacro",
  2656. height: math.unit(5167, "meters")
  2657. },
  2658. {
  2659. name: "Gigamacro",
  2660. height: math.unit(41769, "miles")
  2661. },
  2662. ]
  2663. ))
  2664. characterMakers.push(() => makeCharacter(
  2665. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2666. {
  2667. front: {
  2668. height: math.unit(7, "feet"),
  2669. weight: math.unit(100, "kg"),
  2670. name: "Front",
  2671. image: {
  2672. source: "./media/characters/adake/front-1.svg"
  2673. }
  2674. },
  2675. frontAlt: {
  2676. height: math.unit(7, "feet"),
  2677. weight: math.unit(100, "kg"),
  2678. name: "Front (Alt)",
  2679. image: {
  2680. source: "./media/characters/adake/front-2.svg",
  2681. extra: 1,
  2682. bottom: 0.01
  2683. }
  2684. },
  2685. back: {
  2686. height: math.unit(7, "feet"),
  2687. weight: math.unit(100, "kg"),
  2688. name: "Back",
  2689. image: {
  2690. source: "./media/characters/adake/back.svg",
  2691. }
  2692. },
  2693. kneel: {
  2694. height: math.unit(5.385, "feet"),
  2695. weight: math.unit(100, "kg"),
  2696. name: "Kneeling",
  2697. image: {
  2698. source: "./media/characters/adake/kneel.svg",
  2699. bottom: 0.052
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(7, "feet"),
  2707. },
  2708. {
  2709. name: "Macro",
  2710. height: math.unit(78, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro+",
  2715. height: math.unit(300, "meters")
  2716. },
  2717. {
  2718. name: "Macro++",
  2719. height: math.unit(2400, "meters")
  2720. },
  2721. {
  2722. name: "Megamacro",
  2723. height: math.unit(5167, "meters")
  2724. },
  2725. {
  2726. name: "Gigamacro",
  2727. height: math.unit(41769, "miles")
  2728. },
  2729. ]
  2730. ))
  2731. characterMakers.push(() => makeCharacter(
  2732. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2733. {
  2734. front: {
  2735. height: math.unit(1.65, "meters"),
  2736. weight: math.unit(50, "kg"),
  2737. name: "Front",
  2738. image: {
  2739. source: "./media/characters/elijah/front.svg",
  2740. extra: 858 / 830,
  2741. bottom: 95.5 / 953.8559
  2742. }
  2743. },
  2744. back: {
  2745. height: math.unit(1.65, "meters"),
  2746. weight: math.unit(50, "kg"),
  2747. name: "Back",
  2748. image: {
  2749. source: "./media/characters/elijah/back.svg",
  2750. extra: 895 / 850,
  2751. bottom: 5.3 / 897.956
  2752. }
  2753. },
  2754. frontNsfw: {
  2755. height: math.unit(1.65, "meters"),
  2756. weight: math.unit(50, "kg"),
  2757. name: "Front (NSFW)",
  2758. image: {
  2759. source: "./media/characters/elijah/front-nsfw.svg",
  2760. extra: 858 / 830,
  2761. bottom: 95.5 / 953.8559
  2762. }
  2763. },
  2764. backNsfw: {
  2765. height: math.unit(1.65, "meters"),
  2766. weight: math.unit(50, "kg"),
  2767. name: "Back (NSFW)",
  2768. image: {
  2769. source: "./media/characters/elijah/back-nsfw.svg",
  2770. extra: 895 / 850,
  2771. bottom: 5.3 / 897.956
  2772. }
  2773. },
  2774. dick: {
  2775. height: math.unit(1, "feet"),
  2776. name: "Dick",
  2777. image: {
  2778. source: "./media/characters/elijah/dick.svg"
  2779. }
  2780. },
  2781. beakOpen: {
  2782. height: math.unit(1.25, "feet"),
  2783. name: "Beak (Open)",
  2784. image: {
  2785. source: "./media/characters/elijah/beak-open.svg"
  2786. }
  2787. },
  2788. beakShut: {
  2789. height: math.unit(1.25, "feet"),
  2790. name: "Beak (Shut)",
  2791. image: {
  2792. source: "./media/characters/elijah/beak-shut.svg"
  2793. }
  2794. },
  2795. footFlexing: {
  2796. height: math.unit(1.61, "feet"),
  2797. name: "Foot (Flexing)",
  2798. image: {
  2799. source: "./media/characters/elijah/foot-flexing.svg"
  2800. }
  2801. },
  2802. footStepping: {
  2803. height: math.unit(1.44, "feet"),
  2804. name: "Foot (Stepping)",
  2805. image: {
  2806. source: "./media/characters/elijah/foot-stepping.svg"
  2807. }
  2808. },
  2809. plantigradeLeg: {
  2810. height: math.unit(2.34, "feet"),
  2811. name: "Plantigrade Leg",
  2812. image: {
  2813. source: "./media/characters/elijah/plantigrade-leg.svg"
  2814. }
  2815. },
  2816. plantigradeFootLeft: {
  2817. height: math.unit(0.9, "feet"),
  2818. name: "Plantigrade Foot (Left)",
  2819. image: {
  2820. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2821. }
  2822. },
  2823. plantigradeFootRight: {
  2824. height: math.unit(0.9, "feet"),
  2825. name: "Plantigrade Foot (Right)",
  2826. image: {
  2827. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2828. }
  2829. },
  2830. },
  2831. [
  2832. {
  2833. name: "Normal",
  2834. height: math.unit(1.65, "meters")
  2835. },
  2836. {
  2837. name: "Macro",
  2838. height: math.unit(55, "meters"),
  2839. default: true
  2840. },
  2841. {
  2842. name: "Macro+",
  2843. height: math.unit(105, "meters")
  2844. },
  2845. ]
  2846. ))
  2847. characterMakers.push(() => makeCharacter(
  2848. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2849. {
  2850. front: {
  2851. height: math.unit(7 + 2/12, "feet"),
  2852. weight: math.unit(320, "kg"),
  2853. preyCapacity: math.unit(0.276549935, "people"),
  2854. name: "Front",
  2855. image: {
  2856. source: "./media/characters/rai/front.svg",
  2857. extra: 1802/1696,
  2858. bottom: 68/1870
  2859. },
  2860. form: "anthro",
  2861. default: true
  2862. },
  2863. frontDressed: {
  2864. height: math.unit(7 + 2/12, "feet"),
  2865. weight: math.unit(320, "kg"),
  2866. preyCapacity: math.unit(0.276549935, "people"),
  2867. name: "Front (Dressed)",
  2868. image: {
  2869. source: "./media/characters/rai/front-dressed.svg",
  2870. extra: 1802/1696,
  2871. bottom: 68/1870
  2872. },
  2873. form: "anthro"
  2874. },
  2875. side: {
  2876. height: math.unit(7 + 2/12, "feet"),
  2877. weight: math.unit(320, "kg"),
  2878. preyCapacity: math.unit(0.276549935, "people"),
  2879. name: "Side",
  2880. image: {
  2881. source: "./media/characters/rai/side.svg",
  2882. extra: 1789/1710,
  2883. bottom: 115/1904
  2884. },
  2885. form: "anthro"
  2886. },
  2887. back: {
  2888. height: math.unit(7 + 2/12, "feet"),
  2889. weight: math.unit(320, "kg"),
  2890. preyCapacity: math.unit(0.276549935, "people"),
  2891. name: "Back",
  2892. image: {
  2893. source: "./media/characters/rai/back.svg",
  2894. extra: 1770/1707,
  2895. bottom: 28/1798
  2896. },
  2897. form: "anthro"
  2898. },
  2899. feral: {
  2900. height: math.unit(9.5, "feet"),
  2901. weight: math.unit(640, "kg"),
  2902. preyCapacity: math.unit(4, "people"),
  2903. name: "Feral",
  2904. image: {
  2905. source: "./media/characters/rai/feral.svg",
  2906. extra: 945/553,
  2907. bottom: 176/1121
  2908. },
  2909. form: "feral",
  2910. default: true
  2911. },
  2912. dragon: {
  2913. height: math.unit(23, "feet"),
  2914. weight: math.unit(50000, "lb"),
  2915. name: "Dragon",
  2916. image: {
  2917. source: "./media/characters/rai/dragon.svg",
  2918. extra: 2498 / 2030,
  2919. bottom: 85.2 / 2584
  2920. },
  2921. form: "dragon",
  2922. default: true
  2923. },
  2924. maw: {
  2925. height: math.unit(1.69, "feet"),
  2926. name: "Maw",
  2927. image: {
  2928. source: "./media/characters/rai/maw.svg"
  2929. },
  2930. form: "anthro"
  2931. },
  2932. },
  2933. [
  2934. {
  2935. name: "Normal",
  2936. height: math.unit(7 + 2/12, "feet"),
  2937. form: "anthro"
  2938. },
  2939. {
  2940. name: "Big",
  2941. height: math.unit(11, "feet"),
  2942. form: "anthro"
  2943. },
  2944. {
  2945. name: "Minimacro",
  2946. height: math.unit(77, "feet"),
  2947. form: "anthro"
  2948. },
  2949. {
  2950. name: "Macro",
  2951. height: math.unit(302, "feet"),
  2952. default: true,
  2953. form: "anthro"
  2954. },
  2955. {
  2956. name: "Normal",
  2957. height: math.unit(9.5, "feet"),
  2958. form: "feral",
  2959. default: true
  2960. },
  2961. {
  2962. name: "Normal",
  2963. height: math.unit(23, "feet"),
  2964. form: "dragon",
  2965. default: true
  2966. }
  2967. ],
  2968. {
  2969. "anthro": {
  2970. name: "Anthro",
  2971. default: true
  2972. },
  2973. "feral": {
  2974. name: "Feral",
  2975. },
  2976. "dragon": {
  2977. name: "Dragon",
  2978. },
  2979. }
  2980. ))
  2981. characterMakers.push(() => makeCharacter(
  2982. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2983. {
  2984. frontDressed: {
  2985. height: math.unit(216, "feet"),
  2986. weight: math.unit(7000000, "lb"),
  2987. preyCapacity: math.unit(1321, "people"),
  2988. name: "Front (Dressed)",
  2989. image: {
  2990. source: "./media/characters/jazzy/front-dressed.svg",
  2991. extra: 2738 / 2651,
  2992. bottom: 41.8 / 2786
  2993. }
  2994. },
  2995. backDressed: {
  2996. height: math.unit(216, "feet"),
  2997. weight: math.unit(7000000, "lb"),
  2998. preyCapacity: math.unit(1321, "people"),
  2999. name: "Back (Dressed)",
  3000. image: {
  3001. source: "./media/characters/jazzy/back-dressed.svg",
  3002. extra: 2775 / 2673,
  3003. bottom: 36.8 / 2817
  3004. }
  3005. },
  3006. front: {
  3007. height: math.unit(216, "feet"),
  3008. weight: math.unit(7000000, "lb"),
  3009. preyCapacity: math.unit(1321, "people"),
  3010. name: "Front",
  3011. image: {
  3012. source: "./media/characters/jazzy/front.svg",
  3013. extra: 2738 / 2651,
  3014. bottom: 41.8 / 2786
  3015. }
  3016. },
  3017. back: {
  3018. height: math.unit(216, "feet"),
  3019. weight: math.unit(7000000, "lb"),
  3020. preyCapacity: math.unit(1321, "people"),
  3021. name: "Back",
  3022. image: {
  3023. source: "./media/characters/jazzy/back.svg",
  3024. extra: 2775 / 2673,
  3025. bottom: 36.8 / 2817
  3026. }
  3027. },
  3028. maw: {
  3029. height: math.unit(20, "feet"),
  3030. name: "Maw",
  3031. image: {
  3032. source: "./media/characters/jazzy/maw.svg"
  3033. }
  3034. },
  3035. paws: {
  3036. height: math.unit(27.5, "feet"),
  3037. name: "Paws",
  3038. image: {
  3039. source: "./media/characters/jazzy/paws.svg"
  3040. }
  3041. },
  3042. eye: {
  3043. height: math.unit(4.4, "feet"),
  3044. name: "Eye",
  3045. image: {
  3046. source: "./media/characters/jazzy/eye.svg"
  3047. }
  3048. },
  3049. droneOffense: {
  3050. height: math.unit(9.5, "inches"),
  3051. name: "Drone (Offense)",
  3052. image: {
  3053. source: "./media/characters/jazzy/drone-offense.svg"
  3054. }
  3055. },
  3056. droneRecon: {
  3057. height: math.unit(9.5, "inches"),
  3058. name: "Drone (Recon)",
  3059. image: {
  3060. source: "./media/characters/jazzy/drone-recon.svg"
  3061. }
  3062. },
  3063. droneDefense: {
  3064. height: math.unit(9.5, "inches"),
  3065. name: "Drone (Defense)",
  3066. image: {
  3067. source: "./media/characters/jazzy/drone-defense.svg"
  3068. }
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Macro",
  3074. height: math.unit(216, "feet"),
  3075. default: true
  3076. },
  3077. ]
  3078. ))
  3079. characterMakers.push(() => makeCharacter(
  3080. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3081. {
  3082. front: {
  3083. height: math.unit(9 + 6/12, "feet"),
  3084. weight: math.unit(700, "lb"),
  3085. name: "Front",
  3086. image: {
  3087. source: "./media/characters/flamm/front.svg",
  3088. extra: 1751/1632,
  3089. bottom: 46/1797
  3090. }
  3091. },
  3092. buff: {
  3093. height: math.unit(9 + 6/12, "feet"),
  3094. weight: math.unit(950, "lb"),
  3095. name: "Buff",
  3096. image: {
  3097. source: "./media/characters/flamm/buff.svg",
  3098. extra: 3018/2874,
  3099. bottom: 221/3239
  3100. }
  3101. },
  3102. },
  3103. [
  3104. {
  3105. name: "Normal",
  3106. height: math.unit(9.5, "feet")
  3107. },
  3108. {
  3109. name: "Macro",
  3110. height: math.unit(200, "feet"),
  3111. default: true
  3112. },
  3113. ]
  3114. ))
  3115. characterMakers.push(() => makeCharacter(
  3116. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3117. {
  3118. front: {
  3119. height: math.unit(5 + 3/12, "feet"),
  3120. weight: math.unit(60, "kg"),
  3121. name: "Front",
  3122. image: {
  3123. source: "./media/characters/zephiro/front.svg",
  3124. extra: 1873/1761,
  3125. bottom: 147/2020
  3126. }
  3127. },
  3128. side: {
  3129. height: math.unit(5 + 3/12, "feet"),
  3130. weight: math.unit(60, "kg"),
  3131. name: "Side",
  3132. image: {
  3133. source: "./media/characters/zephiro/side.svg",
  3134. extra: 1929/1827,
  3135. bottom: 65/1994
  3136. }
  3137. },
  3138. back: {
  3139. height: math.unit(5 + 3/12, "feet"),
  3140. weight: math.unit(60, "kg"),
  3141. name: "Back",
  3142. image: {
  3143. source: "./media/characters/zephiro/back.svg",
  3144. extra: 1926/1816,
  3145. bottom: 41/1967
  3146. }
  3147. },
  3148. hand: {
  3149. height: math.unit(0.68, "feet"),
  3150. name: "Hand",
  3151. image: {
  3152. source: "./media/characters/zephiro/hand.svg"
  3153. }
  3154. },
  3155. paw: {
  3156. height: math.unit(1, "feet"),
  3157. name: "Paw",
  3158. image: {
  3159. source: "./media/characters/zephiro/paw.svg"
  3160. }
  3161. },
  3162. beans: {
  3163. height: math.unit(0.93, "feet"),
  3164. name: "Beans",
  3165. image: {
  3166. source: "./media/characters/zephiro/beans.svg"
  3167. }
  3168. },
  3169. },
  3170. [
  3171. {
  3172. name: "Micro",
  3173. height: math.unit(3, "inches")
  3174. },
  3175. {
  3176. name: "Normal",
  3177. height: math.unit(5 + 3 / 12, "feet"),
  3178. default: true
  3179. },
  3180. {
  3181. name: "Macro",
  3182. height: math.unit(118, "feet")
  3183. },
  3184. ]
  3185. ))
  3186. characterMakers.push(() => makeCharacter(
  3187. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3188. {
  3189. front: {
  3190. height: math.unit(5, "feet"),
  3191. weight: math.unit(90, "kg"),
  3192. preyCapacity: math.unit(14, "people"),
  3193. name: "Front",
  3194. image: {
  3195. source: "./media/characters/fory/front.svg",
  3196. extra: 2862 / 2674,
  3197. bottom: 180 / 3043.8
  3198. },
  3199. form: "weaselbun",
  3200. default: true,
  3201. extraAttributes: {
  3202. "pawSize": {
  3203. name: "Paw Size",
  3204. power: 2,
  3205. type: "area",
  3206. base: math.unit(0.1596, "m^2")
  3207. },
  3208. "pawLength": {
  3209. name: "Paw Length",
  3210. power: 1,
  3211. type: "length",
  3212. base: math.unit(0.7, "m")
  3213. }
  3214. }
  3215. },
  3216. back: {
  3217. height: math.unit(5, "feet"),
  3218. weight: math.unit(90, "kg"),
  3219. preyCapacity: math.unit(14, "people"),
  3220. name: "Back",
  3221. image: {
  3222. source: "./media/characters/fory/back.svg",
  3223. extra: 1790/1672,
  3224. bottom: 84/1874
  3225. },
  3226. form: "weaselbun",
  3227. extraAttributes: {
  3228. "pawSize": {
  3229. name: "Paw Size",
  3230. power: 2,
  3231. type: "area",
  3232. base: math.unit(0.1596, "m^2")
  3233. },
  3234. "pawLength": {
  3235. name: "Paw Length",
  3236. power: 1,
  3237. type: "length",
  3238. base: math.unit(0.7, "m")
  3239. }
  3240. }
  3241. },
  3242. paw: {
  3243. height: math.unit(2.14, "feet"),
  3244. name: "Paw",
  3245. image: {
  3246. source: "./media/characters/fory/paw.svg"
  3247. },
  3248. form: "weaselbun",
  3249. extraAttributes: {
  3250. "pawSize": {
  3251. name: "Paw Size",
  3252. power: 2,
  3253. type: "area",
  3254. base: math.unit(0.1596, "m^2")
  3255. },
  3256. "pawLength": {
  3257. name: "Paw Length",
  3258. power: 1,
  3259. type: "length",
  3260. base: math.unit(0.48, "m")
  3261. }
  3262. }
  3263. },
  3264. bunBack: {
  3265. height: math.unit(3, "feet"),
  3266. weight: math.unit(20, "kg"),
  3267. preyCapacity: math.unit(3, "people"),
  3268. name: "Back",
  3269. image: {
  3270. source: "./media/characters/fory/bun-back.svg",
  3271. extra: 1749/1564,
  3272. bottom: 246/1995
  3273. },
  3274. form: "bun",
  3275. default: true,
  3276. extraAttributes: {
  3277. "pawSize": {
  3278. name: "Paw Size",
  3279. power: 2,
  3280. type: "area",
  3281. base: math.unit(0.072, "m^2")
  3282. },
  3283. "pawLength": {
  3284. name: "Paw Length",
  3285. power: 1,
  3286. type: "length",
  3287. base: math.unit(0.45, "m")
  3288. }
  3289. }
  3290. },
  3291. },
  3292. [
  3293. {
  3294. name: "Normal",
  3295. height: math.unit(5, "feet"),
  3296. form: "weaselbun"
  3297. },
  3298. {
  3299. name: "Macro",
  3300. height: math.unit(50, "feet"),
  3301. default: true,
  3302. form: "weaselbun"
  3303. },
  3304. {
  3305. name: "Megamacro",
  3306. height: math.unit(10, "miles"),
  3307. form: "weaselbun"
  3308. },
  3309. {
  3310. name: "Gigamacro",
  3311. height: math.unit(5, "earths"),
  3312. form: "weaselbun"
  3313. },
  3314. {
  3315. name: "Normal",
  3316. height: math.unit(3, "feet"),
  3317. default: true,
  3318. form: "bun"
  3319. },
  3320. {
  3321. name: "Fun-Size",
  3322. height: math.unit(12, "feet"),
  3323. form: "bun"
  3324. },
  3325. {
  3326. name: "Macro",
  3327. height: math.unit(100, "feet"),
  3328. form: "bun"
  3329. },
  3330. {
  3331. name: "Planetary",
  3332. height: math.unit(3, "earths"),
  3333. form: "bun"
  3334. },
  3335. ],
  3336. {
  3337. "weaselbun": {
  3338. name: "Weaselbun",
  3339. default: true
  3340. },
  3341. "bun": {
  3342. name: "Bun",
  3343. },
  3344. }
  3345. ))
  3346. characterMakers.push(() => makeCharacter(
  3347. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3348. {
  3349. front: {
  3350. height: math.unit(7, "feet"),
  3351. weight: math.unit(90, "kg"),
  3352. name: "Front",
  3353. image: {
  3354. source: "./media/characters/kurrikage/front.svg",
  3355. extra: 1845/1733,
  3356. bottom: 119/1964
  3357. }
  3358. },
  3359. back: {
  3360. height: math.unit(7, "feet"),
  3361. weight: math.unit(90, "kg"),
  3362. name: "Back",
  3363. image: {
  3364. source: "./media/characters/kurrikage/back.svg",
  3365. extra: 1790/1677,
  3366. bottom: 61/1851
  3367. }
  3368. },
  3369. dressed: {
  3370. height: math.unit(7, "feet"),
  3371. weight: math.unit(90, "kg"),
  3372. name: "Dressed",
  3373. image: {
  3374. source: "./media/characters/kurrikage/dressed.svg",
  3375. extra: 1845/1733,
  3376. bottom: 119/1964
  3377. }
  3378. },
  3379. foot: {
  3380. height: math.unit(1.5, "feet"),
  3381. name: "Foot",
  3382. image: {
  3383. source: "./media/characters/kurrikage/foot.svg"
  3384. }
  3385. },
  3386. staff: {
  3387. height: math.unit(6.7, "feet"),
  3388. name: "Staff",
  3389. image: {
  3390. source: "./media/characters/kurrikage/staff.svg"
  3391. }
  3392. },
  3393. peek: {
  3394. height: math.unit(1.05, "feet"),
  3395. name: "Peeking",
  3396. image: {
  3397. source: "./media/characters/kurrikage/peek.svg",
  3398. bottom: 0.08
  3399. }
  3400. },
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(12, "feet"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Big",
  3410. height: math.unit(20, "feet")
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(500, "feet")
  3415. },
  3416. {
  3417. name: "Megamacro",
  3418. height: math.unit(20, "miles")
  3419. },
  3420. ]
  3421. ))
  3422. characterMakers.push(() => makeCharacter(
  3423. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3424. {
  3425. front: {
  3426. height: math.unit(6, "feet"),
  3427. weight: math.unit(75, "kg"),
  3428. name: "Front",
  3429. image: {
  3430. source: "./media/characters/shingo/front.svg",
  3431. extra: 1900/1825,
  3432. bottom: 82/1982
  3433. }
  3434. },
  3435. side: {
  3436. height: math.unit(6, "feet"),
  3437. weight: math.unit(75, "kg"),
  3438. name: "Side",
  3439. image: {
  3440. source: "./media/characters/shingo/side.svg",
  3441. extra: 1930/1865,
  3442. bottom: 16/1946
  3443. }
  3444. },
  3445. back: {
  3446. height: math.unit(6, "feet"),
  3447. weight: math.unit(75, "kg"),
  3448. name: "Back",
  3449. image: {
  3450. source: "./media/characters/shingo/back.svg",
  3451. extra: 1922/1852,
  3452. bottom: 16/1938
  3453. }
  3454. },
  3455. frontDressed: {
  3456. height: math.unit(6, "feet"),
  3457. weight: math.unit(150, "lb"),
  3458. name: "Front-dressed",
  3459. image: {
  3460. source: "./media/characters/shingo/front-dressed.svg",
  3461. extra: 1900/1825,
  3462. bottom: 82/1982
  3463. }
  3464. },
  3465. paw: {
  3466. height: math.unit(1.29, "feet"),
  3467. name: "Paw",
  3468. image: {
  3469. source: "./media/characters/shingo/paw.svg"
  3470. }
  3471. },
  3472. hand: {
  3473. height: math.unit(1.07, "feet"),
  3474. name: "Hand",
  3475. image: {
  3476. source: "./media/characters/shingo/hand.svg"
  3477. }
  3478. },
  3479. frontAlt: {
  3480. height: math.unit(6, "feet"),
  3481. weight: math.unit(75, "kg"),
  3482. name: "Front (Alt)",
  3483. image: {
  3484. source: "./media/characters/shingo/front-alt.svg",
  3485. extra: 3511 / 3338,
  3486. bottom: 0.005
  3487. }
  3488. },
  3489. frontAlt2: {
  3490. height: math.unit(6, "feet"),
  3491. weight: math.unit(75, "kg"),
  3492. name: "Front (Alt 2)",
  3493. image: {
  3494. source: "./media/characters/shingo/front-alt-2.svg",
  3495. extra: 706/681,
  3496. bottom: 11/717
  3497. }
  3498. },
  3499. pawAlt: {
  3500. height: math.unit(1, "feet"),
  3501. name: "Paw (Alt)",
  3502. image: {
  3503. source: "./media/characters/shingo/paw-alt.svg"
  3504. }
  3505. },
  3506. },
  3507. [
  3508. {
  3509. name: "Micro",
  3510. height: math.unit(4, "inches")
  3511. },
  3512. {
  3513. name: "Normal",
  3514. height: math.unit(6, "feet"),
  3515. default: true
  3516. },
  3517. {
  3518. name: "Macro",
  3519. height: math.unit(108, "feet")
  3520. },
  3521. {
  3522. name: "Macro+",
  3523. height: math.unit(1500, "feet")
  3524. },
  3525. ]
  3526. ))
  3527. characterMakers.push(() => makeCharacter(
  3528. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3529. {
  3530. side: {
  3531. height: math.unit(6, "feet"),
  3532. weight: math.unit(75, "kg"),
  3533. name: "Side",
  3534. image: {
  3535. source: "./media/characters/aigey/side.svg"
  3536. }
  3537. },
  3538. },
  3539. [
  3540. {
  3541. name: "Macro",
  3542. height: math.unit(200, "feet"),
  3543. default: true
  3544. },
  3545. {
  3546. name: "Megamacro",
  3547. height: math.unit(100, "miles")
  3548. },
  3549. ]
  3550. )
  3551. )
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(5 + 5 / 12, "feet"),
  3557. weight: math.unit(75, "kg"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/natasha/front.svg",
  3561. extra: 859 / 824,
  3562. bottom: 23 / 879.6
  3563. }
  3564. },
  3565. frontNsfw: {
  3566. height: math.unit(5 + 5 / 12, "feet"),
  3567. weight: math.unit(75, "kg"),
  3568. name: "Front (NSFW)",
  3569. image: {
  3570. source: "./media/characters/natasha/front-nsfw.svg",
  3571. extra: 859 / 824,
  3572. bottom: 23 / 879.6
  3573. }
  3574. },
  3575. frontErect: {
  3576. height: math.unit(5 + 5 / 12, "feet"),
  3577. weight: math.unit(75, "kg"),
  3578. name: "Front (Erect)",
  3579. image: {
  3580. source: "./media/characters/natasha/front-erect.svg",
  3581. extra: 859 / 824,
  3582. bottom: 23 / 879.6
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(5 + 5 / 12, "feet"),
  3587. weight: math.unit(75, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/natasha/back.svg",
  3591. extra: 887.9 / 852.6,
  3592. bottom: 9.7 / 896.4
  3593. }
  3594. },
  3595. backAlt: {
  3596. height: math.unit(5 + 5 / 12, "feet"),
  3597. weight: math.unit(75, "kg"),
  3598. name: "Back (Alt)",
  3599. image: {
  3600. source: "./media/characters/natasha/back-alt.svg",
  3601. extra: 1236.7 / 1192,
  3602. bottom: 22.3 / 1258.2
  3603. }
  3604. },
  3605. dick: {
  3606. height: math.unit(1.772, "feet"),
  3607. name: "Dick",
  3608. image: {
  3609. source: "./media/characters/natasha/dick.svg"
  3610. }
  3611. },
  3612. paw: {
  3613. height: math.unit(0.250, "meters"),
  3614. name: "Paw",
  3615. image: {
  3616. source: "./media/characters/natasha/paw.svg"
  3617. },
  3618. extraAttributes: {
  3619. "toeSize": {
  3620. name: "Toe Size",
  3621. power: 2,
  3622. type: "area",
  3623. base: math.unit(0.0024, "m^2")
  3624. },
  3625. "padSize": {
  3626. name: "Pad Size",
  3627. power: 2,
  3628. type: "area",
  3629. base: math.unit(0.00889, "m^2")
  3630. },
  3631. "pawSize": {
  3632. name: "Paw Size",
  3633. power: 2,
  3634. type: "area",
  3635. base: math.unit(0.023667, "m^2")
  3636. },
  3637. }
  3638. },
  3639. },
  3640. [
  3641. {
  3642. name: "Shortstack",
  3643. height: math.unit(3, "feet"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(5 + 5 / 12, "feet")
  3649. },
  3650. {
  3651. name: "Large",
  3652. height: math.unit(12, "feet")
  3653. },
  3654. {
  3655. name: "Macro",
  3656. height: math.unit(100, "feet")
  3657. },
  3658. {
  3659. name: "Macro+",
  3660. height: math.unit(260, "feet")
  3661. },
  3662. {
  3663. name: "Macro++",
  3664. height: math.unit(1, "mile")
  3665. },
  3666. ]
  3667. ))
  3668. characterMakers.push(() => makeCharacter(
  3669. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3670. {
  3671. front: {
  3672. height: math.unit(6, "feet"),
  3673. weight: math.unit(75, "kg"),
  3674. name: "Front",
  3675. image: {
  3676. source: "./media/characters/malik/front.svg",
  3677. extra: 1750/1561,
  3678. bottom: 80/1830
  3679. },
  3680. extraAttributes: {
  3681. "toeSize": {
  3682. name: "Toe Size",
  3683. power: 2,
  3684. type: "area",
  3685. base: math.unit(0.0159, "m^2")
  3686. },
  3687. "pawSize": {
  3688. name: "Paw Size",
  3689. power: 2,
  3690. type: "area",
  3691. base: math.unit(0.09834, "m^2")
  3692. },
  3693. }
  3694. },
  3695. side: {
  3696. height: math.unit(6, "feet"),
  3697. weight: math.unit(75, "kg"),
  3698. name: "Side",
  3699. image: {
  3700. source: "./media/characters/malik/side.svg",
  3701. extra: 1802/1685,
  3702. bottom: 42/1844
  3703. },
  3704. extraAttributes: {
  3705. "toeSize": {
  3706. name: "Toe Size",
  3707. power: 2,
  3708. type: "area",
  3709. base: math.unit(0.0159, "m^2")
  3710. },
  3711. "pawSize": {
  3712. name: "Paw Size",
  3713. power: 2,
  3714. type: "area",
  3715. base: math.unit(0.09834, "m^2")
  3716. },
  3717. }
  3718. },
  3719. back: {
  3720. height: math.unit(6, "feet"),
  3721. weight: math.unit(75, "kg"),
  3722. name: "Back",
  3723. image: {
  3724. source: "./media/characters/malik/back.svg",
  3725. extra: 1803/1607,
  3726. bottom: 33/1836
  3727. },
  3728. extraAttributes: {
  3729. "toeSize": {
  3730. name: "Toe Size",
  3731. power: 2,
  3732. type: "area",
  3733. base: math.unit(0.0159, "m^2")
  3734. },
  3735. "pawSize": {
  3736. name: "Paw Size",
  3737. power: 2,
  3738. type: "area",
  3739. base: math.unit(0.09834, "m^2")
  3740. },
  3741. }
  3742. },
  3743. },
  3744. [
  3745. {
  3746. name: "Macro",
  3747. height: math.unit(156, "feet"),
  3748. default: true
  3749. },
  3750. {
  3751. name: "Macro+",
  3752. height: math.unit(1188, "feet")
  3753. },
  3754. ]
  3755. ))
  3756. characterMakers.push(() => makeCharacter(
  3757. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3758. {
  3759. front: {
  3760. height: math.unit(6, "feet"),
  3761. weight: math.unit(75, "kg"),
  3762. name: "Front",
  3763. image: {
  3764. source: "./media/characters/sefer/front.svg",
  3765. extra: 848 / 659,
  3766. bottom: 28.3 / 876.442
  3767. }
  3768. },
  3769. back: {
  3770. height: math.unit(6, "feet"),
  3771. weight: math.unit(75, "kg"),
  3772. name: "Back",
  3773. image: {
  3774. source: "./media/characters/sefer/back.svg",
  3775. extra: 864 / 695,
  3776. bottom: 10 / 871
  3777. }
  3778. },
  3779. frontDressed: {
  3780. height: math.unit(6, "feet"),
  3781. weight: math.unit(75, "kg"),
  3782. name: "Dressed",
  3783. image: {
  3784. source: "./media/characters/sefer/dressed.svg",
  3785. extra: 839 / 653,
  3786. bottom: 37.6 / 878
  3787. }
  3788. },
  3789. },
  3790. [
  3791. {
  3792. name: "Normal",
  3793. height: math.unit(6, "feet"),
  3794. default: true
  3795. },
  3796. {
  3797. name: "Big",
  3798. height: math.unit(8, "meters")
  3799. },
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3804. {
  3805. body: {
  3806. height: math.unit(2.2428, "meter"),
  3807. weight: math.unit(124.738, "kg"),
  3808. name: "Body",
  3809. image: {
  3810. extra: 1225 / 1050,
  3811. source: "./media/characters/north/front.svg"
  3812. }
  3813. }
  3814. },
  3815. [
  3816. {
  3817. name: "Micro",
  3818. height: math.unit(4, "inches")
  3819. },
  3820. {
  3821. name: "Macro",
  3822. height: math.unit(63, "meters")
  3823. },
  3824. {
  3825. name: "Megamacro",
  3826. height: math.unit(101, "miles"),
  3827. default: true
  3828. }
  3829. ]
  3830. ))
  3831. characterMakers.push(() => makeCharacter(
  3832. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3833. {
  3834. angled: {
  3835. height: math.unit(4, "meter"),
  3836. weight: math.unit(150, "kg"),
  3837. name: "Angled",
  3838. image: {
  3839. source: "./media/characters/talan/angled-sfw.svg",
  3840. bottom: 29 / 3734
  3841. }
  3842. },
  3843. angledNsfw: {
  3844. height: math.unit(4, "meter"),
  3845. weight: math.unit(150, "kg"),
  3846. name: "Angled (NSFW)",
  3847. image: {
  3848. source: "./media/characters/talan/angled-nsfw.svg",
  3849. bottom: 29 / 3734
  3850. }
  3851. },
  3852. frontNsfw: {
  3853. height: math.unit(4, "meter"),
  3854. weight: math.unit(150, "kg"),
  3855. name: "Front (NSFW)",
  3856. image: {
  3857. source: "./media/characters/talan/front-nsfw.svg",
  3858. bottom: 29 / 3734
  3859. }
  3860. },
  3861. sideNsfw: {
  3862. height: math.unit(4, "meter"),
  3863. weight: math.unit(150, "kg"),
  3864. name: "Side (NSFW)",
  3865. image: {
  3866. source: "./media/characters/talan/side-nsfw.svg",
  3867. bottom: 29 / 3734
  3868. }
  3869. },
  3870. back: {
  3871. height: math.unit(4, "meter"),
  3872. weight: math.unit(150, "kg"),
  3873. name: "Back",
  3874. image: {
  3875. source: "./media/characters/talan/back.svg"
  3876. }
  3877. },
  3878. dickBottom: {
  3879. height: math.unit(0.621, "meter"),
  3880. name: "Dick (Bottom)",
  3881. image: {
  3882. source: "./media/characters/talan/dick-bottom.svg"
  3883. }
  3884. },
  3885. dickTop: {
  3886. height: math.unit(0.621, "meter"),
  3887. name: "Dick (Top)",
  3888. image: {
  3889. source: "./media/characters/talan/dick-top.svg"
  3890. }
  3891. },
  3892. dickSide: {
  3893. height: math.unit(0.305, "meter"),
  3894. name: "Dick (Side)",
  3895. image: {
  3896. source: "./media/characters/talan/dick-side.svg"
  3897. }
  3898. },
  3899. dickFront: {
  3900. height: math.unit(0.305, "meter"),
  3901. name: "Dick (Front)",
  3902. image: {
  3903. source: "./media/characters/talan/dick-front.svg"
  3904. }
  3905. },
  3906. },
  3907. [
  3908. {
  3909. name: "Normal",
  3910. height: math.unit(4, "meters")
  3911. },
  3912. {
  3913. name: "Macro",
  3914. height: math.unit(100, "meters")
  3915. },
  3916. {
  3917. name: "Megamacro",
  3918. height: math.unit(2, "miles"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Gigamacro",
  3923. height: math.unit(5000, "miles")
  3924. },
  3925. {
  3926. name: "Teramacro",
  3927. height: math.unit(100, "parsecs")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3933. {
  3934. front: {
  3935. height: math.unit(2, "meter"),
  3936. weight: math.unit(90, "kg"),
  3937. name: "Front",
  3938. image: {
  3939. source: "./media/characters/gael'rathus/front.svg"
  3940. }
  3941. },
  3942. frontAlt: {
  3943. height: math.unit(2, "meter"),
  3944. weight: math.unit(90, "kg"),
  3945. name: "Front (alt)",
  3946. image: {
  3947. source: "./media/characters/gael'rathus/front-alt.svg"
  3948. }
  3949. },
  3950. frontAlt2: {
  3951. height: math.unit(2, "meter"),
  3952. weight: math.unit(90, "kg"),
  3953. name: "Front (alt 2)",
  3954. image: {
  3955. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3956. }
  3957. }
  3958. },
  3959. [
  3960. {
  3961. name: "Normal",
  3962. height: math.unit(9, "feet"),
  3963. default: true
  3964. },
  3965. {
  3966. name: "Large",
  3967. height: math.unit(25, "feet")
  3968. },
  3969. {
  3970. name: "Macro",
  3971. height: math.unit(0.25, "miles")
  3972. },
  3973. {
  3974. name: "Megamacro",
  3975. height: math.unit(10, "miles")
  3976. }
  3977. ]
  3978. ))
  3979. characterMakers.push(() => makeCharacter(
  3980. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3981. {
  3982. side: {
  3983. height: math.unit(2, "meter"),
  3984. weight: math.unit(140, "kg"),
  3985. name: "Side",
  3986. image: {
  3987. source: "./media/characters/sosha/side.svg",
  3988. extra: 1170/1006,
  3989. bottom: 94/1264
  3990. }
  3991. },
  3992. maw: {
  3993. height: math.unit(2.87, "feet"),
  3994. name: "Maw",
  3995. image: {
  3996. source: "./media/characters/sosha/maw.svg",
  3997. extra: 966/865,
  3998. bottom: 0/966
  3999. }
  4000. },
  4001. cooch: {
  4002. height: math.unit(5.6, "feet"),
  4003. name: "Cooch",
  4004. image: {
  4005. source: "./media/characters/sosha/cooch.svg"
  4006. }
  4007. },
  4008. },
  4009. [
  4010. {
  4011. name: "Normal",
  4012. height: math.unit(12, "feet"),
  4013. default: true
  4014. }
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4019. {
  4020. side: {
  4021. height: math.unit(5 + 5 / 12, "feet"),
  4022. weight: math.unit(170, "kg"),
  4023. name: "Side",
  4024. image: {
  4025. source: "./media/characters/runnola/side.svg",
  4026. extra: 741 / 448,
  4027. bottom: 0.05
  4028. }
  4029. },
  4030. },
  4031. [
  4032. {
  4033. name: "Small",
  4034. height: math.unit(3, "feet")
  4035. },
  4036. {
  4037. name: "Normal",
  4038. height: math.unit(5 + 5 / 12, "feet"),
  4039. default: true
  4040. },
  4041. {
  4042. name: "Big",
  4043. height: math.unit(10, "feet")
  4044. },
  4045. ]
  4046. ))
  4047. characterMakers.push(() => makeCharacter(
  4048. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4049. {
  4050. front: {
  4051. height: math.unit(2, "meter"),
  4052. weight: math.unit(50, "kg"),
  4053. name: "Front",
  4054. image: {
  4055. source: "./media/characters/kurribird/front.svg",
  4056. bottom: 0.015
  4057. }
  4058. },
  4059. frontAlt: {
  4060. height: math.unit(1.5, "meter"),
  4061. weight: math.unit(50, "kg"),
  4062. name: "Front (Alt)",
  4063. image: {
  4064. source: "./media/characters/kurribird/front-alt.svg",
  4065. extra: 1.45
  4066. }
  4067. },
  4068. },
  4069. [
  4070. {
  4071. name: "Normal",
  4072. height: math.unit(7, "feet")
  4073. },
  4074. {
  4075. name: "Big",
  4076. height: math.unit(12, "feet"),
  4077. default: true
  4078. },
  4079. {
  4080. name: "Macro",
  4081. height: math.unit(1500, "feet")
  4082. },
  4083. {
  4084. name: "Megamacro",
  4085. height: math.unit(2, "miles")
  4086. }
  4087. ]
  4088. ))
  4089. characterMakers.push(() => makeCharacter(
  4090. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4091. {
  4092. front: {
  4093. height: math.unit(2, "meter"),
  4094. weight: math.unit(80, "kg"),
  4095. name: "Front",
  4096. image: {
  4097. source: "./media/characters/elbial/front.svg",
  4098. extra: 1643 / 1556,
  4099. bottom: 60.2 / 1696
  4100. }
  4101. },
  4102. side: {
  4103. height: math.unit(2, "meter"),
  4104. weight: math.unit(80, "kg"),
  4105. name: "Side",
  4106. image: {
  4107. source: "./media/characters/elbial/side.svg",
  4108. extra: 1601/1528,
  4109. bottom: 97/1698
  4110. }
  4111. },
  4112. back: {
  4113. height: math.unit(2, "meter"),
  4114. weight: math.unit(80, "kg"),
  4115. name: "Back",
  4116. image: {
  4117. source: "./media/characters/elbial/back.svg",
  4118. extra: 1653/1569,
  4119. bottom: 20/1673
  4120. }
  4121. },
  4122. frontDressed: {
  4123. height: math.unit(2, "meter"),
  4124. weight: math.unit(80, "kg"),
  4125. name: "Front (Dressed)",
  4126. image: {
  4127. source: "./media/characters/elbial/front-dressed.svg",
  4128. extra: 1638/1569,
  4129. bottom: 70/1708
  4130. }
  4131. },
  4132. genitals: {
  4133. height: math.unit(2 / 3.367, "meter"),
  4134. name: "Genitals",
  4135. image: {
  4136. source: "./media/characters/elbial/genitals.svg"
  4137. }
  4138. },
  4139. },
  4140. [
  4141. {
  4142. name: "Large",
  4143. height: math.unit(100, "feet")
  4144. },
  4145. {
  4146. name: "Macro",
  4147. height: math.unit(500, "feet"),
  4148. default: true
  4149. },
  4150. {
  4151. name: "Megamacro",
  4152. height: math.unit(10, "miles")
  4153. },
  4154. {
  4155. name: "Gigamacro",
  4156. height: math.unit(25000, "miles")
  4157. },
  4158. {
  4159. name: "Full-Size",
  4160. height: math.unit(8000000, "gigaparsecs")
  4161. }
  4162. ]
  4163. ))
  4164. characterMakers.push(() => makeCharacter(
  4165. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4166. {
  4167. front: {
  4168. height: math.unit(2, "meter"),
  4169. weight: math.unit(60, "kg"),
  4170. name: "Front",
  4171. image: {
  4172. source: "./media/characters/noah/front.svg"
  4173. }
  4174. },
  4175. talons: {
  4176. height: math.unit(0.315, "meter"),
  4177. name: "Talons",
  4178. image: {
  4179. source: "./media/characters/noah/talons.svg"
  4180. }
  4181. }
  4182. },
  4183. [
  4184. {
  4185. name: "Large",
  4186. height: math.unit(50, "feet")
  4187. },
  4188. {
  4189. name: "Macro",
  4190. height: math.unit(750, "feet"),
  4191. default: true
  4192. },
  4193. {
  4194. name: "Megamacro",
  4195. height: math.unit(50, "miles")
  4196. },
  4197. {
  4198. name: "Gigamacro",
  4199. height: math.unit(100000, "miles")
  4200. },
  4201. {
  4202. name: "Full-Size",
  4203. height: math.unit(3000000000, "miles")
  4204. }
  4205. ]
  4206. ))
  4207. characterMakers.push(() => makeCharacter(
  4208. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4209. {
  4210. front: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(80, "kg"),
  4213. name: "Front",
  4214. image: {
  4215. source: "./media/characters/natalya/front.svg"
  4216. }
  4217. },
  4218. back: {
  4219. height: math.unit(2, "meter"),
  4220. weight: math.unit(80, "kg"),
  4221. name: "Back",
  4222. image: {
  4223. source: "./media/characters/natalya/back.svg"
  4224. }
  4225. }
  4226. },
  4227. [
  4228. {
  4229. name: "Normal",
  4230. height: math.unit(150, "feet"),
  4231. default: true
  4232. },
  4233. {
  4234. name: "Megamacro",
  4235. height: math.unit(5, "miles")
  4236. },
  4237. {
  4238. name: "Full-Size",
  4239. height: math.unit(600, "kiloparsecs")
  4240. }
  4241. ]
  4242. ))
  4243. characterMakers.push(() => makeCharacter(
  4244. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4245. {
  4246. front: {
  4247. height: math.unit(2, "meter"),
  4248. weight: math.unit(50, "kg"),
  4249. name: "Front",
  4250. image: {
  4251. source: "./media/characters/erestrebah/front.svg",
  4252. extra: 1262/1162,
  4253. bottom: 96/1358
  4254. }
  4255. },
  4256. back: {
  4257. height: math.unit(2, "meter"),
  4258. weight: math.unit(50, "kg"),
  4259. name: "Back",
  4260. image: {
  4261. source: "./media/characters/erestrebah/back.svg",
  4262. extra: 1257/1139,
  4263. bottom: 13/1270
  4264. }
  4265. },
  4266. wing: {
  4267. height: math.unit(2, "meter"),
  4268. weight: math.unit(50, "kg"),
  4269. name: "Wing",
  4270. image: {
  4271. source: "./media/characters/erestrebah/wing.svg",
  4272. extra: 1262/1162,
  4273. bottom: 96/1358
  4274. }
  4275. },
  4276. mouth: {
  4277. height: math.unit(0.39, "feet"),
  4278. name: "Mouth",
  4279. image: {
  4280. source: "./media/characters/erestrebah/mouth.svg"
  4281. }
  4282. }
  4283. },
  4284. [
  4285. {
  4286. name: "Normal",
  4287. height: math.unit(10, "feet")
  4288. },
  4289. {
  4290. name: "Large",
  4291. height: math.unit(50, "feet"),
  4292. default: true
  4293. },
  4294. {
  4295. name: "Macro",
  4296. height: math.unit(300, "feet")
  4297. },
  4298. {
  4299. name: "Macro+",
  4300. height: math.unit(750, "feet")
  4301. },
  4302. {
  4303. name: "Megamacro",
  4304. height: math.unit(3, "miles")
  4305. }
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4310. {
  4311. front: {
  4312. height: math.unit(2, "meter"),
  4313. weight: math.unit(80, "kg"),
  4314. name: "Front",
  4315. image: {
  4316. source: "./media/characters/jennifer/front.svg",
  4317. bottom: 0.11,
  4318. extra: 1.16
  4319. }
  4320. },
  4321. frontAlt: {
  4322. height: math.unit(2, "meter"),
  4323. weight: math.unit(80, "kg"),
  4324. name: "Front (Alt)",
  4325. image: {
  4326. source: "./media/characters/jennifer/front-alt.svg"
  4327. }
  4328. }
  4329. },
  4330. [
  4331. {
  4332. name: "Canon Height",
  4333. height: math.unit(120, "feet"),
  4334. default: true
  4335. },
  4336. {
  4337. name: "Macro+",
  4338. height: math.unit(300, "feet")
  4339. },
  4340. {
  4341. name: "Megamacro",
  4342. height: math.unit(20000, "feet")
  4343. }
  4344. ]
  4345. ))
  4346. characterMakers.push(() => makeCharacter(
  4347. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4348. {
  4349. front: {
  4350. height: math.unit(2, "meter"),
  4351. weight: math.unit(50, "kg"),
  4352. name: "Front",
  4353. image: {
  4354. source: "./media/characters/kalista/front.svg",
  4355. extra: 1314/1145,
  4356. bottom: 101/1415
  4357. }
  4358. },
  4359. back: {
  4360. height: math.unit(2, "meter"),
  4361. weight: math.unit(50, "kg"),
  4362. name: "Back",
  4363. image: {
  4364. source: "./media/characters/kalista/back.svg",
  4365. extra: 1366 / 1156,
  4366. bottom: 33.9 / 1362.78
  4367. }
  4368. }
  4369. },
  4370. [
  4371. {
  4372. name: "Uncomfortably Small",
  4373. height: math.unit(10, "feet")
  4374. },
  4375. {
  4376. name: "Small",
  4377. height: math.unit(30, "feet")
  4378. },
  4379. {
  4380. name: "Macro",
  4381. height: math.unit(100, "feet"),
  4382. default: true
  4383. },
  4384. {
  4385. name: "Macro+",
  4386. height: math.unit(2000, "feet")
  4387. },
  4388. {
  4389. name: "True Form",
  4390. height: math.unit(8924, "miles")
  4391. }
  4392. ]
  4393. ))
  4394. characterMakers.push(() => makeCharacter(
  4395. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4396. {
  4397. front: {
  4398. height: math.unit(2, "meter"),
  4399. weight: math.unit(120, "kg"),
  4400. name: "Front",
  4401. image: {
  4402. source: "./media/characters/ggv/front.svg"
  4403. }
  4404. },
  4405. side: {
  4406. height: math.unit(2, "meter"),
  4407. weight: math.unit(120, "kg"),
  4408. name: "Side",
  4409. image: {
  4410. source: "./media/characters/ggv/side.svg"
  4411. }
  4412. }
  4413. },
  4414. [
  4415. {
  4416. name: "Extremely Puny",
  4417. height: math.unit(9 + 5 / 12, "feet")
  4418. },
  4419. {
  4420. name: "Horribly Small",
  4421. height: math.unit(47.7, "miles"),
  4422. default: true
  4423. },
  4424. {
  4425. name: "Reasonably Sized",
  4426. height: math.unit(25000, "parsecs")
  4427. },
  4428. {
  4429. name: "Slightly Uncompressed",
  4430. height: math.unit(7.77e31, "parsecs")
  4431. },
  4432. {
  4433. name: "Omniversal",
  4434. height: math.unit(1e300, "meters")
  4435. },
  4436. ]
  4437. ))
  4438. characterMakers.push(() => makeCharacter(
  4439. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4440. {
  4441. front: {
  4442. height: math.unit(2, "meter"),
  4443. weight: math.unit(75, "lb"),
  4444. name: "Front",
  4445. image: {
  4446. source: "./media/characters/napalm/front.svg"
  4447. }
  4448. },
  4449. back: {
  4450. height: math.unit(2, "meter"),
  4451. weight: math.unit(75, "lb"),
  4452. name: "Back",
  4453. image: {
  4454. source: "./media/characters/napalm/back.svg"
  4455. }
  4456. }
  4457. },
  4458. [
  4459. {
  4460. name: "Standard",
  4461. height: math.unit(55, "feet"),
  4462. default: true
  4463. }
  4464. ]
  4465. ))
  4466. characterMakers.push(() => makeCharacter(
  4467. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4468. {
  4469. front: {
  4470. height: math.unit(7 + 5 / 6, "feet"),
  4471. weight: math.unit(325, "lb"),
  4472. name: "Front",
  4473. image: {
  4474. source: "./media/characters/asana/front.svg",
  4475. extra: 1133 / 1060,
  4476. bottom: 15.2 / 1148.6
  4477. }
  4478. },
  4479. back: {
  4480. height: math.unit(7 + 5 / 6, "feet"),
  4481. weight: math.unit(325, "lb"),
  4482. name: "Back",
  4483. image: {
  4484. source: "./media/characters/asana/back.svg",
  4485. extra: 1114 / 1043,
  4486. bottom: 5 / 1120
  4487. }
  4488. },
  4489. dressedDark: {
  4490. height: math.unit(7 + 5 / 6, "feet"),
  4491. weight: math.unit(325, "lb"),
  4492. name: "Dressed (Dark)",
  4493. image: {
  4494. source: "./media/characters/asana/dressed-dark.svg",
  4495. extra: 1133 / 1060,
  4496. bottom: 15.2 / 1148.6
  4497. }
  4498. },
  4499. dressedLight: {
  4500. height: math.unit(7 + 5 / 6, "feet"),
  4501. weight: math.unit(325, "lb"),
  4502. name: "Dressed (Light)",
  4503. image: {
  4504. source: "./media/characters/asana/dressed-light.svg",
  4505. extra: 1133 / 1060,
  4506. bottom: 15.2 / 1148.6
  4507. }
  4508. },
  4509. },
  4510. [
  4511. {
  4512. name: "Standard",
  4513. height: math.unit(7 + 5 / 6, "feet"),
  4514. default: true
  4515. },
  4516. {
  4517. name: "Large",
  4518. height: math.unit(10, "meters")
  4519. },
  4520. {
  4521. name: "Macro",
  4522. height: math.unit(2500, "meters")
  4523. },
  4524. {
  4525. name: "Megamacro",
  4526. height: math.unit(5e6, "meters")
  4527. },
  4528. {
  4529. name: "Examacro",
  4530. height: math.unit(5e12, "lightyears")
  4531. },
  4532. {
  4533. name: "Max Size",
  4534. height: math.unit(1e31, "lightyears")
  4535. }
  4536. ]
  4537. ))
  4538. characterMakers.push(() => makeCharacter(
  4539. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4540. {
  4541. front: {
  4542. height: math.unit(2, "meter"),
  4543. weight: math.unit(60, "kg"),
  4544. name: "Front",
  4545. image: {
  4546. source: "./media/characters/ebony/front.svg",
  4547. bottom: 0.03,
  4548. extra: 1045 / 810 + 0.03
  4549. }
  4550. },
  4551. side: {
  4552. height: math.unit(2, "meter"),
  4553. weight: math.unit(60, "kg"),
  4554. name: "Side",
  4555. image: {
  4556. source: "./media/characters/ebony/side.svg",
  4557. bottom: 0.03,
  4558. extra: 1045 / 810 + 0.03
  4559. }
  4560. },
  4561. back: {
  4562. height: math.unit(2, "meter"),
  4563. weight: math.unit(60, "kg"),
  4564. name: "Back",
  4565. image: {
  4566. source: "./media/characters/ebony/back.svg",
  4567. bottom: 0.01,
  4568. extra: 1045 / 810 + 0.01
  4569. }
  4570. },
  4571. },
  4572. [
  4573. // TODO check why I did this lol
  4574. {
  4575. name: "Standard",
  4576. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Macro",
  4581. height: math.unit(200, "feet")
  4582. },
  4583. {
  4584. name: "Gigamacro",
  4585. height: math.unit(13000, "km")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(175, "lb"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/mountain/front.svg",
  4598. extra: 972 / 955,
  4599. bottom: 64 / 1036.6
  4600. }
  4601. },
  4602. back: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(175, "lb"),
  4605. name: "Back",
  4606. image: {
  4607. source: "./media/characters/mountain/back.svg",
  4608. extra: 970 / 950,
  4609. bottom: 28.25 / 999
  4610. }
  4611. },
  4612. },
  4613. [
  4614. {
  4615. name: "Large",
  4616. height: math.unit(20, "meters")
  4617. },
  4618. {
  4619. name: "Macro",
  4620. height: math.unit(300, "meters")
  4621. },
  4622. {
  4623. name: "Gigamacro",
  4624. height: math.unit(10000, "km"),
  4625. default: true
  4626. },
  4627. {
  4628. name: "Examacro",
  4629. height: math.unit(10e9, "lightyears")
  4630. }
  4631. ]
  4632. ))
  4633. characterMakers.push(() => makeCharacter(
  4634. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4635. {
  4636. front: {
  4637. height: math.unit(8, "feet"),
  4638. weight: math.unit(500, "lb"),
  4639. name: "Front",
  4640. image: {
  4641. source: "./media/characters/rick/front.svg"
  4642. }
  4643. }
  4644. },
  4645. [
  4646. {
  4647. name: "Normal",
  4648. height: math.unit(8, "feet"),
  4649. default: true
  4650. },
  4651. {
  4652. name: "Macro",
  4653. height: math.unit(5, "km")
  4654. }
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(8, "feet"),
  4662. weight: math.unit(120, "lb"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/ona/front.svg"
  4666. }
  4667. },
  4668. frontAlt: {
  4669. height: math.unit(8, "feet"),
  4670. weight: math.unit(120, "lb"),
  4671. name: "Front (Alt)",
  4672. image: {
  4673. source: "./media/characters/ona/front-alt.svg"
  4674. }
  4675. },
  4676. back: {
  4677. height: math.unit(8, "feet"),
  4678. weight: math.unit(120, "lb"),
  4679. name: "Back",
  4680. image: {
  4681. source: "./media/characters/ona/back.svg"
  4682. }
  4683. },
  4684. foot: {
  4685. height: math.unit(1.1, "feet"),
  4686. name: "Foot",
  4687. image: {
  4688. source: "./media/characters/ona/foot.svg"
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Megamacro",
  4695. height: math.unit(70, "km"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Gigamacro",
  4700. height: math.unit(681818, "miles")
  4701. },
  4702. {
  4703. name: "Examacro",
  4704. height: math.unit(3800000, "lightyears")
  4705. },
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(12, "feet"),
  4713. weight: math.unit(3000, "lb"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/mech/front.svg",
  4717. extra: 2900 / 2770,
  4718. bottom: 110 / 3010
  4719. }
  4720. },
  4721. back: {
  4722. height: math.unit(12, "feet"),
  4723. weight: math.unit(3000, "lb"),
  4724. name: "Back",
  4725. image: {
  4726. source: "./media/characters/mech/back.svg",
  4727. extra: 3011 / 2890,
  4728. bottom: 94 / 3105
  4729. }
  4730. },
  4731. maw: {
  4732. height: math.unit(3.07, "feet"),
  4733. name: "Maw",
  4734. image: {
  4735. source: "./media/characters/mech/maw.svg"
  4736. }
  4737. },
  4738. head: {
  4739. height: math.unit(3.07, "feet"),
  4740. name: "Head",
  4741. image: {
  4742. source: "./media/characters/mech/head.svg"
  4743. }
  4744. },
  4745. dick: {
  4746. height: math.unit(1.43, "feet"),
  4747. name: "Dick",
  4748. image: {
  4749. source: "./media/characters/mech/dick.svg"
  4750. }
  4751. },
  4752. },
  4753. [
  4754. {
  4755. name: "Normal",
  4756. height: math.unit(12, "feet")
  4757. },
  4758. {
  4759. name: "Macro",
  4760. height: math.unit(300, "feet"),
  4761. default: true
  4762. },
  4763. {
  4764. name: "Macro+",
  4765. height: math.unit(1500, "feet")
  4766. },
  4767. ]
  4768. ))
  4769. characterMakers.push(() => makeCharacter(
  4770. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4771. {
  4772. front: {
  4773. height: math.unit(1.3, "meter"),
  4774. weight: math.unit(30, "kg"),
  4775. name: "Front",
  4776. image: {
  4777. source: "./media/characters/gregory/front.svg",
  4778. }
  4779. }
  4780. },
  4781. [
  4782. {
  4783. name: "Normal",
  4784. height: math.unit(1.3, "meter"),
  4785. default: true
  4786. },
  4787. {
  4788. name: "Macro",
  4789. height: math.unit(20, "meter")
  4790. }
  4791. ]
  4792. ))
  4793. characterMakers.push(() => makeCharacter(
  4794. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4795. {
  4796. front: {
  4797. height: math.unit(2.8, "meter"),
  4798. weight: math.unit(200, "kg"),
  4799. name: "Front",
  4800. image: {
  4801. source: "./media/characters/elory/front.svg",
  4802. }
  4803. }
  4804. },
  4805. [
  4806. {
  4807. name: "Normal",
  4808. height: math.unit(2.8, "meter"),
  4809. default: true
  4810. },
  4811. {
  4812. name: "Macro",
  4813. height: math.unit(38, "meter")
  4814. }
  4815. ]
  4816. ))
  4817. characterMakers.push(() => makeCharacter(
  4818. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4819. {
  4820. front: {
  4821. height: math.unit(470, "feet"),
  4822. weight: math.unit(924, "tons"),
  4823. name: "Front",
  4824. image: {
  4825. source: "./media/characters/angelpatamon/front.svg",
  4826. }
  4827. }
  4828. },
  4829. [
  4830. {
  4831. name: "Normal",
  4832. height: math.unit(470, "feet"),
  4833. default: true
  4834. },
  4835. {
  4836. name: "Deity Size I",
  4837. height: math.unit(28651.2, "km")
  4838. },
  4839. {
  4840. name: "Deity Size II",
  4841. height: math.unit(171907.2, "km")
  4842. }
  4843. ]
  4844. ))
  4845. characterMakers.push(() => makeCharacter(
  4846. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4847. {
  4848. side: {
  4849. height: math.unit(7.2, "meter"),
  4850. weight: math.unit(8.2, "tons"),
  4851. name: "Side",
  4852. image: {
  4853. source: "./media/characters/cryae/side.svg",
  4854. extra: 3500 / 1500
  4855. }
  4856. }
  4857. },
  4858. [
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(7.2, "meter"),
  4862. default: true
  4863. }
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4868. {
  4869. front: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(175, "lb"),
  4872. name: "Front",
  4873. image: {
  4874. source: "./media/characters/xera/front.svg",
  4875. extra: 2377 / 1972,
  4876. bottom: 75.5 / 2452
  4877. }
  4878. },
  4879. side: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(175, "lb"),
  4882. name: "Side",
  4883. image: {
  4884. source: "./media/characters/xera/side.svg",
  4885. extra: 2345 / 2019,
  4886. bottom: 39.7 / 2384
  4887. }
  4888. },
  4889. back: {
  4890. height: math.unit(6, "feet"),
  4891. weight: math.unit(175, "lb"),
  4892. name: "Back",
  4893. image: {
  4894. source: "./media/characters/xera/back.svg",
  4895. extra: 2095 / 1984,
  4896. bottom: 67 / 2166
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Small",
  4903. height: math.unit(10, "feet")
  4904. },
  4905. {
  4906. name: "Macro",
  4907. height: math.unit(500, "meters"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Macro+",
  4912. height: math.unit(10, "km")
  4913. },
  4914. {
  4915. name: "Gigamacro",
  4916. height: math.unit(25000, "km")
  4917. },
  4918. {
  4919. name: "Teramacro",
  4920. height: math.unit(3e6, "km")
  4921. }
  4922. ]
  4923. ))
  4924. characterMakers.push(() => makeCharacter(
  4925. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4926. {
  4927. front: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(175, "lb"),
  4930. name: "Front",
  4931. image: {
  4932. source: "./media/characters/nebula/front.svg",
  4933. extra: 2566 / 2362,
  4934. bottom: 81 / 2644
  4935. }
  4936. }
  4937. },
  4938. [
  4939. {
  4940. name: "Small",
  4941. height: math.unit(4.5, "meters")
  4942. },
  4943. {
  4944. name: "Macro",
  4945. height: math.unit(1500, "meters"),
  4946. default: true
  4947. },
  4948. {
  4949. name: "Megamacro",
  4950. height: math.unit(150, "km")
  4951. },
  4952. {
  4953. name: "Gigamacro",
  4954. height: math.unit(27000, "km")
  4955. }
  4956. ]
  4957. ))
  4958. characterMakers.push(() => makeCharacter(
  4959. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4960. {
  4961. front: {
  4962. height: math.unit(6, "feet"),
  4963. weight: math.unit(225, "lb"),
  4964. name: "Front",
  4965. image: {
  4966. source: "./media/characters/abysgar/front.svg",
  4967. extra: 1739/1614,
  4968. bottom: 71/1810
  4969. }
  4970. },
  4971. frontNsfw: {
  4972. height: math.unit(6, "feet"),
  4973. weight: math.unit(225, "lb"),
  4974. name: "Front (NSFW)",
  4975. image: {
  4976. source: "./media/characters/abysgar/front-nsfw.svg",
  4977. extra: 1739/1614,
  4978. bottom: 71/1810
  4979. }
  4980. },
  4981. back: {
  4982. height: math.unit(4.6, "feet"),
  4983. weight: math.unit(225, "lb"),
  4984. name: "Back",
  4985. image: {
  4986. source: "./media/characters/abysgar/back.svg",
  4987. extra: 1384/1327,
  4988. bottom: 0/1384
  4989. }
  4990. },
  4991. head: {
  4992. height: math.unit(1.25, "feet"),
  4993. name: "Head",
  4994. image: {
  4995. source: "./media/characters/abysgar/head.svg",
  4996. extra: 669/569,
  4997. bottom: 0/669
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Small",
  5004. height: math.unit(4.5, "meters")
  5005. },
  5006. {
  5007. name: "Macro",
  5008. height: math.unit(1250, "meters"),
  5009. default: true
  5010. },
  5011. {
  5012. name: "Megamacro",
  5013. height: math.unit(125, "km")
  5014. },
  5015. {
  5016. name: "Gigamacro",
  5017. height: math.unit(26000, "km")
  5018. }
  5019. ]
  5020. ))
  5021. characterMakers.push(() => makeCharacter(
  5022. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5023. {
  5024. front: {
  5025. height: math.unit(6, "feet"),
  5026. weight: math.unit(180, "lb"),
  5027. name: "Front",
  5028. image: {
  5029. source: "./media/characters/yakuz/front.svg"
  5030. }
  5031. }
  5032. },
  5033. [
  5034. {
  5035. name: "Small",
  5036. height: math.unit(5, "meters")
  5037. },
  5038. {
  5039. name: "Macro",
  5040. height: math.unit(1500, "meters"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Megamacro",
  5045. height: math.unit(200, "km")
  5046. },
  5047. {
  5048. name: "Gigamacro",
  5049. height: math.unit(100000, "km")
  5050. }
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5055. {
  5056. front: {
  5057. height: math.unit(6, "feet"),
  5058. weight: math.unit(175, "lb"),
  5059. name: "Front",
  5060. image: {
  5061. source: "./media/characters/mirova/front.svg",
  5062. extra: 3334 / 3071,
  5063. bottom: 42 / 3375.6
  5064. }
  5065. }
  5066. },
  5067. [
  5068. {
  5069. name: "Small",
  5070. height: math.unit(5, "meters")
  5071. },
  5072. {
  5073. name: "Macro",
  5074. height: math.unit(900, "meters"),
  5075. default: true
  5076. },
  5077. {
  5078. name: "Megamacro",
  5079. height: math.unit(135, "km")
  5080. },
  5081. {
  5082. name: "Gigamacro",
  5083. height: math.unit(20000, "km")
  5084. }
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5089. {
  5090. side: {
  5091. height: math.unit(28.35, "feet"),
  5092. weight: math.unit(99.75, "tons"),
  5093. name: "Side",
  5094. image: {
  5095. source: "./media/characters/asana-mech/side.svg",
  5096. extra: 923 / 699,
  5097. bottom: 50 / 975
  5098. }
  5099. },
  5100. chaingun: {
  5101. height: math.unit(7, "feet"),
  5102. weight: math.unit(2400, "lb"),
  5103. name: "Chaingun",
  5104. image: {
  5105. source: "./media/characters/asana-mech/chaingun.svg"
  5106. }
  5107. },
  5108. laser: {
  5109. height: math.unit(7.12, "feet"),
  5110. weight: math.unit(2000, "lb"),
  5111. name: "Laser",
  5112. image: {
  5113. source: "./media/characters/asana-mech/laser.svg"
  5114. }
  5115. },
  5116. },
  5117. [
  5118. {
  5119. name: "Normal",
  5120. height: math.unit(28.35, "feet"),
  5121. default: true
  5122. },
  5123. {
  5124. name: "Macro",
  5125. height: math.unit(2500, "feet")
  5126. },
  5127. {
  5128. name: "Megamacro",
  5129. height: math.unit(25, "miles")
  5130. },
  5131. {
  5132. name: "Examacro",
  5133. height: math.unit(6e8, "lightyears")
  5134. },
  5135. ]
  5136. ))
  5137. characterMakers.push(() => makeCharacter(
  5138. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5139. {
  5140. front: {
  5141. height: math.unit(5, "meters"),
  5142. weight: math.unit(1000, "kg"),
  5143. name: "Front",
  5144. image: {
  5145. source: "./media/characters/asche/front.svg",
  5146. extra: 1258 / 1190,
  5147. bottom: 47 / 1305
  5148. }
  5149. },
  5150. frontUnderwear: {
  5151. height: math.unit(5, "meters"),
  5152. weight: math.unit(1000, "kg"),
  5153. name: "Front (Underwear)",
  5154. image: {
  5155. source: "./media/characters/asche/front-underwear.svg",
  5156. extra: 1258 / 1190,
  5157. bottom: 47 / 1305
  5158. }
  5159. },
  5160. frontDressed: {
  5161. height: math.unit(5, "meters"),
  5162. weight: math.unit(1000, "kg"),
  5163. name: "Front (Dressed)",
  5164. image: {
  5165. source: "./media/characters/asche/front-dressed.svg",
  5166. extra: 1258 / 1190,
  5167. bottom: 47 / 1305
  5168. }
  5169. },
  5170. frontArmor: {
  5171. height: math.unit(5, "meters"),
  5172. weight: math.unit(1000, "kg"),
  5173. name: "Front (Armored)",
  5174. image: {
  5175. source: "./media/characters/asche/front-armored.svg",
  5176. extra: 1374 / 1308,
  5177. bottom: 23 / 1397
  5178. }
  5179. },
  5180. mp724: {
  5181. height: math.unit(0.96, "meters"),
  5182. weight: math.unit(38, "kg"),
  5183. name: "H&K MP724",
  5184. image: {
  5185. source: "./media/characters/asche/h&k-mp724.svg"
  5186. }
  5187. },
  5188. side: {
  5189. height: math.unit(5, "meters"),
  5190. weight: math.unit(1000, "kg"),
  5191. name: "Side",
  5192. image: {
  5193. source: "./media/characters/asche/side.svg",
  5194. extra: 1717 / 1609,
  5195. bottom: 0.005
  5196. }
  5197. },
  5198. back: {
  5199. height: math.unit(5, "meters"),
  5200. weight: math.unit(1000, "kg"),
  5201. name: "Back",
  5202. image: {
  5203. source: "./media/characters/asche/back.svg",
  5204. extra: 1570 / 1501
  5205. }
  5206. },
  5207. },
  5208. [
  5209. {
  5210. name: "DEFCON 5",
  5211. height: math.unit(5, "meters")
  5212. },
  5213. {
  5214. name: "DEFCON 4",
  5215. height: math.unit(500, "meters"),
  5216. default: true
  5217. },
  5218. {
  5219. name: "DEFCON 3",
  5220. height: math.unit(5, "km")
  5221. },
  5222. {
  5223. name: "DEFCON 2",
  5224. height: math.unit(500, "km")
  5225. },
  5226. {
  5227. name: "DEFCON 1",
  5228. height: math.unit(500000, "km")
  5229. },
  5230. {
  5231. name: "DEFCON 0",
  5232. height: math.unit(3, "gigaparsecs")
  5233. },
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5238. {
  5239. front: {
  5240. height: math.unit(2, "meters"),
  5241. weight: math.unit(76, "kg"),
  5242. name: "Front",
  5243. image: {
  5244. source: "./media/characters/gale/front.svg"
  5245. }
  5246. },
  5247. frontAlt1: {
  5248. height: math.unit(2, "meters"),
  5249. weight: math.unit(76, "kg"),
  5250. name: "Front (Alt 1)",
  5251. image: {
  5252. source: "./media/characters/gale/front-alt-1.svg"
  5253. }
  5254. },
  5255. frontAlt2: {
  5256. height: math.unit(2, "meters"),
  5257. weight: math.unit(76, "kg"),
  5258. name: "Front (Alt 2)",
  5259. image: {
  5260. source: "./media/characters/gale/front-alt-2.svg"
  5261. }
  5262. },
  5263. },
  5264. [
  5265. {
  5266. name: "Normal",
  5267. height: math.unit(7, "feet")
  5268. },
  5269. {
  5270. name: "Macro",
  5271. height: math.unit(150, "feet"),
  5272. default: true
  5273. },
  5274. {
  5275. name: "Macro+",
  5276. height: math.unit(300, "feet")
  5277. },
  5278. ]
  5279. ))
  5280. characterMakers.push(() => makeCharacter(
  5281. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5282. {
  5283. front: {
  5284. height: math.unit(5 + 10/12, "feet"),
  5285. weight: math.unit(67, "kg"),
  5286. name: "Front",
  5287. image: {
  5288. source: "./media/characters/draylen/front.svg",
  5289. extra: 832/777,
  5290. bottom: 85/917
  5291. }
  5292. }
  5293. },
  5294. [
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(5 + 10/12, "feet")
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(150, "feet"),
  5302. default: true
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(7 + 9 / 12, "feet"),
  5311. weight: math.unit(379, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/chez/front.svg"
  5315. }
  5316. },
  5317. side: {
  5318. height: math.unit(7 + 9 / 12, "feet"),
  5319. weight: math.unit(379, "lbs"),
  5320. name: "Side",
  5321. image: {
  5322. source: "./media/characters/chez/side.svg"
  5323. }
  5324. }
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(7 + 9 / 12, "feet"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "God King",
  5334. height: math.unit(9750000, "meters")
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(275, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/kaylum/front.svg",
  5347. bottom: 0.01,
  5348. extra: 1166 / 1031
  5349. }
  5350. },
  5351. frontWingless: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(275, "lbs"),
  5354. name: "Front (Wingless)",
  5355. image: {
  5356. source: "./media/characters/kaylum/front-wingless.svg",
  5357. bottom: 0.01,
  5358. extra: 1117 / 1031
  5359. }
  5360. }
  5361. },
  5362. [
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(3.05, "meters")
  5366. },
  5367. {
  5368. name: "Master",
  5369. height: math.unit(5.5, "meters")
  5370. },
  5371. {
  5372. name: "Rampage",
  5373. height: math.unit(19, "meters")
  5374. },
  5375. {
  5376. name: "Macro Lite",
  5377. height: math.unit(37, "meters")
  5378. },
  5379. {
  5380. name: "Hyper Predator",
  5381. height: math.unit(61, "meters")
  5382. },
  5383. {
  5384. name: "Macro",
  5385. height: math.unit(138, "meters"),
  5386. default: true
  5387. }
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(5 + 5 / 12, "feet"),
  5395. weight: math.unit(120, "lbs"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/geta/front.svg",
  5399. extra: 1003/933,
  5400. bottom: 21/1024
  5401. }
  5402. },
  5403. paw: {
  5404. height: math.unit(0.35, "feet"),
  5405. name: "Paw",
  5406. image: {
  5407. source: "./media/characters/geta/paw.svg"
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Micro",
  5414. height: math.unit(3, "inches"),
  5415. default: true
  5416. },
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(5 + 5 / 12, "feet")
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(300, "lbs"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/tyrnn/front.svg"
  5432. }
  5433. }
  5434. },
  5435. [
  5436. {
  5437. name: "Main Height",
  5438. height: math.unit(355, "feet"),
  5439. default: true
  5440. },
  5441. {
  5442. name: "Fave. Height",
  5443. height: math.unit(2400, "feet")
  5444. }
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5449. {
  5450. front: {
  5451. height: math.unit(6, "feet"),
  5452. weight: math.unit(300, "lbs"),
  5453. name: "Front",
  5454. image: {
  5455. source: "./media/characters/appledectomy/front.svg"
  5456. }
  5457. }
  5458. },
  5459. [
  5460. {
  5461. name: "Macro",
  5462. height: math.unit(2500, "feet")
  5463. },
  5464. {
  5465. name: "Megamacro",
  5466. height: math.unit(50, "miles"),
  5467. default: true
  5468. },
  5469. {
  5470. name: "Gigamacro",
  5471. height: math.unit(5000, "miles")
  5472. },
  5473. {
  5474. name: "Teramacro",
  5475. height: math.unit(250000, "miles")
  5476. },
  5477. ]
  5478. ))
  5479. characterMakers.push(() => makeCharacter(
  5480. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5481. {
  5482. front: {
  5483. height: math.unit(6, "feet"),
  5484. weight: math.unit(200, "lbs"),
  5485. name: "Front",
  5486. image: {
  5487. source: "./media/characters/vulpes/front.svg",
  5488. extra: 573 / 543,
  5489. bottom: 0.033
  5490. }
  5491. },
  5492. side: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(200, "lbs"),
  5495. name: "Side",
  5496. image: {
  5497. source: "./media/characters/vulpes/side.svg",
  5498. extra: 577 / 549,
  5499. bottom: 11 / 588
  5500. }
  5501. },
  5502. back: {
  5503. height: math.unit(6, "feet"),
  5504. weight: math.unit(200, "lbs"),
  5505. name: "Back",
  5506. image: {
  5507. source: "./media/characters/vulpes/back.svg",
  5508. extra: 573 / 549,
  5509. bottom: 20 / 593
  5510. }
  5511. },
  5512. feet: {
  5513. height: math.unit(1.276, "feet"),
  5514. name: "Feet",
  5515. image: {
  5516. source: "./media/characters/vulpes/feet.svg"
  5517. }
  5518. },
  5519. maw: {
  5520. height: math.unit(1.18, "feet"),
  5521. name: "Maw",
  5522. image: {
  5523. source: "./media/characters/vulpes/maw.svg"
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "Micro",
  5530. height: math.unit(2, "inches")
  5531. },
  5532. {
  5533. name: "Normal",
  5534. height: math.unit(6.3, "feet")
  5535. },
  5536. {
  5537. name: "Macro",
  5538. height: math.unit(850, "feet")
  5539. },
  5540. {
  5541. name: "Megamacro",
  5542. height: math.unit(7500, "feet"),
  5543. default: true
  5544. },
  5545. {
  5546. name: "Gigamacro",
  5547. height: math.unit(570000, "miles")
  5548. }
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5553. {
  5554. front: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(210, "lbs"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/rain-fallen/front.svg"
  5560. }
  5561. },
  5562. side: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(210, "lbs"),
  5565. name: "Side",
  5566. image: {
  5567. source: "./media/characters/rain-fallen/side.svg"
  5568. }
  5569. },
  5570. back: {
  5571. height: math.unit(6, "feet"),
  5572. weight: math.unit(210, "lbs"),
  5573. name: "Back",
  5574. image: {
  5575. source: "./media/characters/rain-fallen/back.svg"
  5576. }
  5577. },
  5578. feral: {
  5579. height: math.unit(9, "feet"),
  5580. weight: math.unit(700, "lbs"),
  5581. name: "Feral",
  5582. image: {
  5583. source: "./media/characters/rain-fallen/feral.svg"
  5584. }
  5585. },
  5586. },
  5587. [
  5588. {
  5589. name: "Meddling with Mortals",
  5590. height: math.unit(8 + 8/12, "feet")
  5591. },
  5592. {
  5593. name: "Normal",
  5594. height: math.unit(5, "meter")
  5595. },
  5596. {
  5597. name: "Macro",
  5598. height: math.unit(150, "meter"),
  5599. default: true
  5600. },
  5601. {
  5602. name: "Megamacro",
  5603. height: math.unit(278e6, "meter")
  5604. },
  5605. {
  5606. name: "Gigamacro",
  5607. height: math.unit(2e9, "meter")
  5608. },
  5609. {
  5610. name: "Teramacro",
  5611. height: math.unit(8e12, "meter")
  5612. },
  5613. {
  5614. name: "Devourer",
  5615. height: math.unit(14, "zettameters")
  5616. },
  5617. {
  5618. name: "Scarlet King",
  5619. height: math.unit(18, "yottameters")
  5620. },
  5621. {
  5622. name: "Void",
  5623. height: math.unit(1e88, "yottameters")
  5624. }
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5629. {
  5630. standing: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(180, "lbs"),
  5633. name: "Standing",
  5634. image: {
  5635. source: "./media/characters/zaakira/standing.svg",
  5636. extra: 1599/1504,
  5637. bottom: 39/1638
  5638. }
  5639. },
  5640. laying: {
  5641. height: math.unit(3.3, "feet"),
  5642. weight: math.unit(180, "lbs"),
  5643. name: "Laying",
  5644. image: {
  5645. source: "./media/characters/zaakira/laying.svg"
  5646. }
  5647. },
  5648. },
  5649. [
  5650. {
  5651. name: "Normal",
  5652. height: math.unit(12, "feet")
  5653. },
  5654. {
  5655. name: "Macro",
  5656. height: math.unit(279, "feet"),
  5657. default: true
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5663. {
  5664. femSfw: {
  5665. height: math.unit(8, "feet"),
  5666. weight: math.unit(350, "lb"),
  5667. name: "Fem",
  5668. image: {
  5669. source: "./media/characters/sigvald/fem-sfw.svg",
  5670. extra: 182 / 164,
  5671. bottom: 8.7 / 190.5
  5672. }
  5673. },
  5674. femNsfw: {
  5675. height: math.unit(8, "feet"),
  5676. weight: math.unit(350, "lb"),
  5677. name: "Fem (NSFW)",
  5678. image: {
  5679. source: "./media/characters/sigvald/fem-nsfw.svg",
  5680. extra: 182 / 164,
  5681. bottom: 8.7 / 190.5
  5682. }
  5683. },
  5684. maleNsfw: {
  5685. height: math.unit(8, "feet"),
  5686. weight: math.unit(350, "lb"),
  5687. name: "Male (NSFW)",
  5688. image: {
  5689. source: "./media/characters/sigvald/male-nsfw.svg",
  5690. extra: 182 / 164,
  5691. bottom: 8.7 / 190.5
  5692. }
  5693. },
  5694. hermNsfw: {
  5695. height: math.unit(8, "feet"),
  5696. weight: math.unit(350, "lb"),
  5697. name: "Herm (NSFW)",
  5698. image: {
  5699. source: "./media/characters/sigvald/herm-nsfw.svg",
  5700. extra: 182 / 164,
  5701. bottom: 8.7 / 190.5
  5702. }
  5703. },
  5704. dick: {
  5705. height: math.unit(2.36, "feet"),
  5706. name: "Dick",
  5707. image: {
  5708. source: "./media/characters/sigvald/dick.svg"
  5709. }
  5710. },
  5711. eye: {
  5712. height: math.unit(0.31, "feet"),
  5713. name: "Eye",
  5714. image: {
  5715. source: "./media/characters/sigvald/eye.svg"
  5716. }
  5717. },
  5718. mouth: {
  5719. height: math.unit(0.92, "feet"),
  5720. name: "Mouth",
  5721. image: {
  5722. source: "./media/characters/sigvald/mouth.svg"
  5723. }
  5724. },
  5725. paws: {
  5726. height: math.unit(2.2, "feet"),
  5727. name: "Paws",
  5728. image: {
  5729. source: "./media/characters/sigvald/paws.svg"
  5730. }
  5731. }
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(8, "feet")
  5737. },
  5738. {
  5739. name: "Large",
  5740. height: math.unit(12, "feet")
  5741. },
  5742. {
  5743. name: "Larger",
  5744. height: math.unit(20, "feet")
  5745. },
  5746. {
  5747. name: "Macro",
  5748. height: math.unit(150, "feet")
  5749. },
  5750. {
  5751. name: "Macro+",
  5752. height: math.unit(200, "feet"),
  5753. default: true
  5754. },
  5755. ]
  5756. ))
  5757. characterMakers.push(() => makeCharacter(
  5758. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5759. {
  5760. side: {
  5761. height: math.unit(12, "feet"),
  5762. weight: math.unit(2000, "kg"),
  5763. name: "Side",
  5764. image: {
  5765. source: "./media/characters/scott/side.svg",
  5766. extra: 754 / 724,
  5767. bottom: 0.069
  5768. }
  5769. },
  5770. upright: {
  5771. height: math.unit(12, "feet"),
  5772. weight: math.unit(2000, "kg"),
  5773. name: "Upright",
  5774. image: {
  5775. source: "./media/characters/scott/upright.svg",
  5776. extra: 3881 / 3722,
  5777. bottom: 0.05
  5778. }
  5779. },
  5780. },
  5781. [
  5782. {
  5783. name: "Normal",
  5784. height: math.unit(12, "feet"),
  5785. default: true
  5786. },
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5791. {
  5792. side: {
  5793. height: math.unit(8, "meters"),
  5794. weight: math.unit(84755, "lbs"),
  5795. name: "Side",
  5796. image: {
  5797. source: "./media/characters/tobias/side.svg",
  5798. extra: 1474 / 1096,
  5799. bottom: 38.9 / 1513.1235
  5800. }
  5801. },
  5802. },
  5803. [
  5804. {
  5805. name: "Normal",
  5806. height: math.unit(8, "meters"),
  5807. default: true
  5808. },
  5809. ]
  5810. ))
  5811. characterMakers.push(() => makeCharacter(
  5812. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5813. {
  5814. front: {
  5815. height: math.unit(5.5, "feet"),
  5816. weight: math.unit(400, "lbs"),
  5817. name: "Front",
  5818. image: {
  5819. source: "./media/characters/kieran/front.svg",
  5820. extra: 2694 / 2364,
  5821. bottom: 217 / 2908
  5822. }
  5823. },
  5824. side: {
  5825. height: math.unit(5.5, "feet"),
  5826. weight: math.unit(400, "lbs"),
  5827. name: "Side",
  5828. image: {
  5829. source: "./media/characters/kieran/side.svg",
  5830. extra: 875 / 777,
  5831. bottom: 84.6 / 959
  5832. }
  5833. },
  5834. },
  5835. [
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(5.5, "feet"),
  5839. default: true
  5840. },
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5845. {
  5846. side: {
  5847. height: math.unit(2, "meters"),
  5848. weight: math.unit(70, "kg"),
  5849. name: "Side",
  5850. image: {
  5851. source: "./media/characters/sanya/side.svg",
  5852. bottom: 0.02,
  5853. extra: 1.02
  5854. }
  5855. },
  5856. },
  5857. [
  5858. {
  5859. name: "Small",
  5860. height: math.unit(2, "meters")
  5861. },
  5862. {
  5863. name: "Normal",
  5864. height: math.unit(3, "meters")
  5865. },
  5866. {
  5867. name: "Macro",
  5868. height: math.unit(16, "meters"),
  5869. default: true
  5870. },
  5871. ]
  5872. ))
  5873. characterMakers.push(() => makeCharacter(
  5874. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5875. {
  5876. front: {
  5877. height: math.unit(2, "meters"),
  5878. weight: math.unit(120, "kg"),
  5879. name: "Front",
  5880. image: {
  5881. source: "./media/characters/miranda/front.svg",
  5882. extra: 195 / 185,
  5883. bottom: 10.9 / 206.5
  5884. }
  5885. },
  5886. back: {
  5887. height: math.unit(2, "meters"),
  5888. weight: math.unit(120, "kg"),
  5889. name: "Back",
  5890. image: {
  5891. source: "./media/characters/miranda/back.svg",
  5892. extra: 201 / 193,
  5893. bottom: 2.3 / 203.7
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Normal",
  5900. height: math.unit(10, "feet"),
  5901. default: true
  5902. }
  5903. ]
  5904. ))
  5905. characterMakers.push(() => makeCharacter(
  5906. { name: "James", species: ["deer"], tags: ["anthro"] },
  5907. {
  5908. side: {
  5909. height: math.unit(2, "meters"),
  5910. weight: math.unit(100, "kg"),
  5911. name: "Front",
  5912. image: {
  5913. source: "./media/characters/james/front.svg",
  5914. extra: 10 / 8.5
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(8.5, "feet"),
  5922. default: true
  5923. }
  5924. ]
  5925. ))
  5926. characterMakers.push(() => makeCharacter(
  5927. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5928. {
  5929. side: {
  5930. height: math.unit(9.5, "feet"),
  5931. weight: math.unit(2500, "lbs"),
  5932. name: "Side",
  5933. image: {
  5934. source: "./media/characters/heather/side.svg"
  5935. }
  5936. },
  5937. },
  5938. [
  5939. {
  5940. name: "Normal",
  5941. height: math.unit(9.5, "feet"),
  5942. default: true
  5943. }
  5944. ]
  5945. ))
  5946. characterMakers.push(() => makeCharacter(
  5947. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5948. {
  5949. side: {
  5950. height: math.unit(6.5, "feet"),
  5951. weight: math.unit(400, "lbs"),
  5952. name: "Side",
  5953. image: {
  5954. source: "./media/characters/lukas/side.svg",
  5955. extra: 7.25 / 6.5
  5956. }
  5957. },
  5958. },
  5959. [
  5960. {
  5961. name: "Normal",
  5962. height: math.unit(6.5, "feet"),
  5963. default: true
  5964. }
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5969. {
  5970. side: {
  5971. height: math.unit(5, "feet"),
  5972. weight: math.unit(3000, "lbs"),
  5973. name: "Side",
  5974. image: {
  5975. source: "./media/characters/louise/side.svg"
  5976. }
  5977. },
  5978. },
  5979. [
  5980. {
  5981. name: "Normal",
  5982. height: math.unit(5, "feet"),
  5983. default: true
  5984. }
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5989. {
  5990. side: {
  5991. height: math.unit(6, "feet"),
  5992. weight: math.unit(150, "lbs"),
  5993. name: "Side",
  5994. image: {
  5995. source: "./media/characters/ramona/side.svg",
  5996. extra: 871/854,
  5997. bottom: 41/912
  5998. }
  5999. },
  6000. },
  6001. [
  6002. {
  6003. name: "Normal",
  6004. height: math.unit(6 + 4/12, "feet")
  6005. },
  6006. {
  6007. name: "Minimacro",
  6008. height: math.unit(5.3, "meters"),
  6009. default: true
  6010. },
  6011. {
  6012. name: "Macro",
  6013. height: math.unit(20, "stories")
  6014. },
  6015. {
  6016. name: "Macro+",
  6017. height: math.unit(50, "stories")
  6018. },
  6019. ]
  6020. ))
  6021. characterMakers.push(() => makeCharacter(
  6022. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6023. {
  6024. standing: {
  6025. height: math.unit(5.75, "feet"),
  6026. weight: math.unit(160, "lbs"),
  6027. name: "Standing",
  6028. image: {
  6029. source: "./media/characters/deerpuff/standing.svg",
  6030. extra: 682 / 624
  6031. }
  6032. },
  6033. sitting: {
  6034. height: math.unit(5.75 / 1.79, "feet"),
  6035. weight: math.unit(160, "lbs"),
  6036. name: "Sitting",
  6037. image: {
  6038. source: "./media/characters/deerpuff/sitting.svg",
  6039. bottom: 44 / 400,
  6040. extra: 1
  6041. }
  6042. },
  6043. taurLaying: {
  6044. height: math.unit(6, "feet"),
  6045. weight: math.unit(400, "lbs"),
  6046. name: "Taur (Laying)",
  6047. image: {
  6048. source: "./media/characters/deerpuff/taur-laying.svg"
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Puffball",
  6055. height: math.unit(6, "inches")
  6056. },
  6057. {
  6058. name: "Normalpuff",
  6059. height: math.unit(5.75, "feet")
  6060. },
  6061. {
  6062. name: "Macropuff",
  6063. height: math.unit(1500, "feet"),
  6064. default: true
  6065. },
  6066. {
  6067. name: "Megapuff",
  6068. height: math.unit(500, "miles")
  6069. },
  6070. {
  6071. name: "Gigapuff",
  6072. height: math.unit(250000, "miles")
  6073. },
  6074. {
  6075. name: "Omegapuff",
  6076. height: math.unit(1000, "lightyears")
  6077. },
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6082. {
  6083. stomping: {
  6084. height: math.unit(6, "feet"),
  6085. weight: math.unit(170, "lbs"),
  6086. name: "Stomping",
  6087. image: {
  6088. source: "./media/characters/vivian/stomping.svg"
  6089. }
  6090. },
  6091. sitting: {
  6092. height: math.unit(6 / 1.75, "feet"),
  6093. weight: math.unit(170, "lbs"),
  6094. name: "Sitting",
  6095. image: {
  6096. source: "./media/characters/vivian/sitting.svg",
  6097. bottom: 1 / 6.4,
  6098. extra: 1,
  6099. }
  6100. },
  6101. },
  6102. [
  6103. {
  6104. name: "Normal",
  6105. height: math.unit(7, "feet"),
  6106. default: true
  6107. },
  6108. {
  6109. name: "Macro",
  6110. height: math.unit(10, "stories")
  6111. },
  6112. {
  6113. name: "Macro+",
  6114. height: math.unit(30, "stories")
  6115. },
  6116. {
  6117. name: "Megamacro",
  6118. height: math.unit(10, "miles")
  6119. },
  6120. {
  6121. name: "Megamacro+",
  6122. height: math.unit(2750000, "meters")
  6123. },
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6128. {
  6129. front: {
  6130. height: math.unit(6, "feet"),
  6131. weight: math.unit(160, "lbs"),
  6132. name: "Front",
  6133. image: {
  6134. source: "./media/characters/prince/front.svg",
  6135. extra: 1938/1682,
  6136. bottom: 45/1983
  6137. }
  6138. },
  6139. back: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(160, "lbs"),
  6142. name: "Back",
  6143. image: {
  6144. source: "./media/characters/prince/back.svg",
  6145. extra: 1955/1726,
  6146. bottom: 6/1961
  6147. }
  6148. },
  6149. },
  6150. [
  6151. {
  6152. name: "Normal",
  6153. height: math.unit(7.75, "feet"),
  6154. default: true
  6155. },
  6156. {
  6157. name: "Not cute",
  6158. height: math.unit(17, "feet")
  6159. },
  6160. {
  6161. name: "I said NOT",
  6162. height: math.unit(91, "feet")
  6163. },
  6164. {
  6165. name: "Please stop",
  6166. height: math.unit(560, "feet")
  6167. },
  6168. {
  6169. name: "What have you done",
  6170. height: math.unit(2200, "feet")
  6171. },
  6172. {
  6173. name: "Deer God",
  6174. height: math.unit(3.6, "miles")
  6175. },
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6180. {
  6181. standing: {
  6182. height: math.unit(6, "feet"),
  6183. weight: math.unit(300, "lbs"),
  6184. name: "Standing",
  6185. image: {
  6186. source: "./media/characters/psymon/standing.svg",
  6187. extra: 1888 / 1810,
  6188. bottom: 0.05
  6189. }
  6190. },
  6191. slithering: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(300, "lbs"),
  6194. name: "Slithering",
  6195. image: {
  6196. source: "./media/characters/psymon/slithering.svg",
  6197. extra: 1330 / 1224
  6198. }
  6199. },
  6200. slitheringAlt: {
  6201. height: math.unit(6, "feet"),
  6202. weight: math.unit(300, "lbs"),
  6203. name: "Slithering (Alt)",
  6204. image: {
  6205. source: "./media/characters/psymon/slithering-alt.svg",
  6206. extra: 1330 / 1224
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Normal",
  6213. height: math.unit(11.25, "feet"),
  6214. default: true
  6215. },
  6216. {
  6217. name: "Large",
  6218. height: math.unit(27, "feet")
  6219. },
  6220. {
  6221. name: "Giant",
  6222. height: math.unit(87, "feet")
  6223. },
  6224. {
  6225. name: "Macro",
  6226. height: math.unit(365, "feet")
  6227. },
  6228. {
  6229. name: "Megamacro",
  6230. height: math.unit(3, "miles")
  6231. },
  6232. {
  6233. name: "World Serpent",
  6234. height: math.unit(8000, "miles")
  6235. },
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6240. {
  6241. front: {
  6242. height: math.unit(6, "feet"),
  6243. weight: math.unit(180, "lbs"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/daimos/front.svg",
  6247. extra: 4160 / 3897,
  6248. bottom: 0.021
  6249. }
  6250. }
  6251. },
  6252. [
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(8, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Big Dog",
  6260. height: math.unit(22, "feet")
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(127, "feet")
  6265. },
  6266. {
  6267. name: "Megamacro",
  6268. height: math.unit(3600, "feet")
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6274. {
  6275. side: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(180, "lbs"),
  6278. name: "Side",
  6279. image: {
  6280. source: "./media/characters/blake/side.svg",
  6281. extra: 1212 / 1120,
  6282. bottom: 0.05
  6283. }
  6284. },
  6285. crouched: {
  6286. height: math.unit(6 * 0.57, "feet"),
  6287. weight: math.unit(180, "lbs"),
  6288. name: "Crouched",
  6289. image: {
  6290. source: "./media/characters/blake/crouched.svg",
  6291. extra: 840 / 587,
  6292. bottom: 0.04
  6293. }
  6294. },
  6295. bent: {
  6296. height: math.unit(6 * 0.75, "feet"),
  6297. weight: math.unit(180, "lbs"),
  6298. name: "Bent",
  6299. image: {
  6300. source: "./media/characters/blake/bent.svg",
  6301. extra: 592 / 544,
  6302. bottom: 0.035
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(8 + 1 / 6, "feet"),
  6310. default: true
  6311. },
  6312. {
  6313. name: "Big Backside",
  6314. height: math.unit(37, "feet")
  6315. },
  6316. {
  6317. name: "Subway Shredder",
  6318. height: math.unit(72, "feet")
  6319. },
  6320. {
  6321. name: "City Carver",
  6322. height: math.unit(1675, "feet")
  6323. },
  6324. {
  6325. name: "Tectonic Tweaker",
  6326. height: math.unit(2300, "miles")
  6327. },
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6332. {
  6333. front: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(180, "lbs"),
  6336. name: "Front",
  6337. image: {
  6338. source: "./media/characters/guisetto/front.svg",
  6339. extra: 856 / 817,
  6340. bottom: 0.06
  6341. }
  6342. },
  6343. airborne: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(180, "lbs"),
  6346. name: "Airborne",
  6347. image: {
  6348. source: "./media/characters/guisetto/airborne.svg",
  6349. extra: 584 / 525
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(10 + 11 / 12, "feet"),
  6357. default: true
  6358. },
  6359. {
  6360. name: "Large",
  6361. height: math.unit(35, "feet")
  6362. },
  6363. {
  6364. name: "Macro",
  6365. height: math.unit(475, "feet")
  6366. },
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6371. {
  6372. front: {
  6373. height: math.unit(6, "feet"),
  6374. weight: math.unit(180, "lbs"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/luxor/front.svg",
  6378. extra: 2940 / 2152
  6379. }
  6380. },
  6381. back: {
  6382. height: math.unit(6, "feet"),
  6383. weight: math.unit(180, "lbs"),
  6384. name: "Back",
  6385. image: {
  6386. source: "./media/characters/luxor/back.svg",
  6387. extra: 1083 / 960
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Normal",
  6394. height: math.unit(5 + 5 / 6, "feet"),
  6395. default: true
  6396. },
  6397. {
  6398. name: "Lamp",
  6399. height: math.unit(50, "feet")
  6400. },
  6401. {
  6402. name: "Lämp",
  6403. height: math.unit(300, "feet")
  6404. },
  6405. {
  6406. name: "The sun is a lamp",
  6407. height: math.unit(250000, "miles")
  6408. },
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6413. {
  6414. front: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(50, "lbs"),
  6417. name: "Front",
  6418. image: {
  6419. source: "./media/characters/huoyan/front.svg"
  6420. }
  6421. },
  6422. side: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(180, "lbs"),
  6425. name: "Side",
  6426. image: {
  6427. source: "./media/characters/huoyan/side.svg"
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Chef",
  6434. height: math.unit(9, "feet")
  6435. },
  6436. {
  6437. name: "Normal",
  6438. height: math.unit(65, "feet"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Macro",
  6443. height: math.unit(780, "feet")
  6444. },
  6445. {
  6446. name: "Flaming Mountain",
  6447. height: math.unit(4.8, "miles")
  6448. },
  6449. {
  6450. name: "Celestial",
  6451. height: math.unit(765000, "miles")
  6452. },
  6453. ]
  6454. ))
  6455. characterMakers.push(() => makeCharacter(
  6456. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6457. {
  6458. front: {
  6459. height: math.unit(5 + 3 / 4, "feet"),
  6460. weight: math.unit(120, "lbs"),
  6461. name: "Front",
  6462. image: {
  6463. source: "./media/characters/tails/front.svg"
  6464. }
  6465. }
  6466. },
  6467. [
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(5 + 3 / 4, "feet"),
  6471. default: true
  6472. }
  6473. ]
  6474. ))
  6475. characterMakers.push(() => makeCharacter(
  6476. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6477. {
  6478. front: {
  6479. height: math.unit(4, "feet"),
  6480. weight: math.unit(50, "lbs"),
  6481. name: "Front",
  6482. image: {
  6483. source: "./media/characters/rainy/front.svg"
  6484. }
  6485. }
  6486. },
  6487. [
  6488. {
  6489. name: "Macro",
  6490. height: math.unit(800, "feet"),
  6491. default: true
  6492. }
  6493. ]
  6494. ))
  6495. characterMakers.push(() => makeCharacter(
  6496. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6497. {
  6498. front: {
  6499. height: math.unit(6, "feet"),
  6500. weight: math.unit(150, "lbs"),
  6501. name: "Front",
  6502. image: {
  6503. source: "./media/characters/rainier/front.svg"
  6504. }
  6505. }
  6506. },
  6507. [
  6508. {
  6509. name: "Micro",
  6510. height: math.unit(2, "mm"),
  6511. default: true
  6512. }
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(8 + 4/12, "feet"),
  6520. weight: math.unit(450, "kilograms"),
  6521. volume: math.unit(5, "cups"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/andy-renard/front.svg",
  6525. extra: 1839/1726,
  6526. bottom: 134/1973
  6527. }
  6528. },
  6529. back: {
  6530. height: math.unit(8 + 4/12, "feet"),
  6531. weight: math.unit(450, "kilograms"),
  6532. volume: math.unit(5, "cups"),
  6533. name: "Back",
  6534. image: {
  6535. source: "./media/characters/andy-renard/back.svg",
  6536. extra: 1838/1710,
  6537. bottom: 105/1943
  6538. }
  6539. },
  6540. },
  6541. [
  6542. {
  6543. name: "Tall",
  6544. height: math.unit(8 + 4/12, "feet")
  6545. },
  6546. {
  6547. name: "Mini Macro",
  6548. height: math.unit(15, "feet"),
  6549. default: true
  6550. },
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(100, "feet")
  6554. },
  6555. {
  6556. name: "Mega Macro",
  6557. height: math.unit(1000, "feet")
  6558. },
  6559. {
  6560. name: "Giga Macro",
  6561. height: math.unit(10, "miles")
  6562. },
  6563. {
  6564. name: "God Macro",
  6565. height: math.unit(1, "multiverse")
  6566. },
  6567. ]
  6568. ))
  6569. characterMakers.push(() => makeCharacter(
  6570. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6571. {
  6572. front: {
  6573. height: math.unit(6, "feet"),
  6574. weight: math.unit(210, "lbs"),
  6575. name: "Front",
  6576. image: {
  6577. source: "./media/characters/cimmaron/front-sfw.svg",
  6578. extra: 701 / 676,
  6579. bottom: 0.046
  6580. }
  6581. },
  6582. back: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(210, "lbs"),
  6585. name: "Back",
  6586. image: {
  6587. source: "./media/characters/cimmaron/back-sfw.svg",
  6588. extra: 701 / 676,
  6589. bottom: 0.046
  6590. }
  6591. },
  6592. frontNsfw: {
  6593. height: math.unit(6, "feet"),
  6594. weight: math.unit(210, "lbs"),
  6595. name: "Front (NSFW)",
  6596. image: {
  6597. source: "./media/characters/cimmaron/front-nsfw.svg",
  6598. extra: 701 / 676,
  6599. bottom: 0.046
  6600. }
  6601. },
  6602. backNsfw: {
  6603. height: math.unit(6, "feet"),
  6604. weight: math.unit(210, "lbs"),
  6605. name: "Back (NSFW)",
  6606. image: {
  6607. source: "./media/characters/cimmaron/back-nsfw.svg",
  6608. extra: 701 / 676,
  6609. bottom: 0.046
  6610. }
  6611. },
  6612. dick: {
  6613. height: math.unit(1.714, "feet"),
  6614. name: "Dick",
  6615. image: {
  6616. source: "./media/characters/cimmaron/dick.svg"
  6617. }
  6618. },
  6619. },
  6620. [
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(6, "feet"),
  6624. default: true
  6625. },
  6626. {
  6627. name: "Macro Mayor",
  6628. height: math.unit(350, "meters")
  6629. },
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6634. {
  6635. front: {
  6636. height: math.unit(6, "feet"),
  6637. weight: math.unit(200, "lbs"),
  6638. name: "Front",
  6639. image: {
  6640. source: "./media/characters/akari/front.svg",
  6641. extra: 962 / 901,
  6642. bottom: 0.04
  6643. }
  6644. }
  6645. },
  6646. [
  6647. {
  6648. name: "Micro",
  6649. height: math.unit(5, "inches"),
  6650. default: true
  6651. },
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(7, "feet")
  6655. },
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6660. {
  6661. front: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(140, "lbs"),
  6664. name: "Front",
  6665. image: {
  6666. source: "./media/characters/cynosura/front.svg",
  6667. extra: 437/410,
  6668. bottom: 9/446
  6669. }
  6670. },
  6671. back: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(140, "lbs"),
  6674. name: "Back",
  6675. image: {
  6676. source: "./media/characters/cynosura/back.svg",
  6677. extra: 1304/1160,
  6678. bottom: 71/1375
  6679. }
  6680. },
  6681. },
  6682. [
  6683. {
  6684. name: "Micro",
  6685. height: math.unit(4, "inches")
  6686. },
  6687. {
  6688. name: "Normal",
  6689. height: math.unit(5.75, "feet"),
  6690. default: true
  6691. },
  6692. {
  6693. name: "Tall",
  6694. height: math.unit(10, "feet")
  6695. },
  6696. {
  6697. name: "Big",
  6698. height: math.unit(20, "feet")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(50, "feet")
  6703. },
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(13 + 2/12, "feet"),
  6711. weight: math.unit(800, "kg"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/gin/front.svg",
  6715. extra: 1312/1191,
  6716. bottom: 45/1357
  6717. }
  6718. },
  6719. mouth: {
  6720. height: math.unit(2.39 * 1.8, "feet"),
  6721. name: "Mouth",
  6722. image: {
  6723. source: "./media/characters/gin/mouth.svg"
  6724. }
  6725. },
  6726. hand: {
  6727. height: math.unit(1.57 * 2.19, "feet"),
  6728. name: "Hand",
  6729. image: {
  6730. source: "./media/characters/gin/hand.svg"
  6731. }
  6732. },
  6733. foot: {
  6734. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6735. name: "Foot",
  6736. image: {
  6737. source: "./media/characters/gin/foot.svg"
  6738. }
  6739. },
  6740. sole: {
  6741. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6742. name: "Sole",
  6743. image: {
  6744. source: "./media/characters/gin/sole.svg"
  6745. }
  6746. },
  6747. },
  6748. [
  6749. {
  6750. name: "Very Small",
  6751. height: math.unit(13 + 2 / 12, "feet")
  6752. },
  6753. {
  6754. name: "Micro",
  6755. height: math.unit(600, "miles")
  6756. },
  6757. {
  6758. name: "Regular",
  6759. height: math.unit(20, "earths"),
  6760. default: true
  6761. },
  6762. {
  6763. name: "Macro",
  6764. height: math.unit(2.2, "solarradii")
  6765. },
  6766. {
  6767. name: "Teramacro",
  6768. height: math.unit(1.2, "galaxies")
  6769. },
  6770. {
  6771. name: "Omegamacro",
  6772. height: math.unit(200, "universes")
  6773. },
  6774. ]
  6775. ))
  6776. characterMakers.push(() => makeCharacter(
  6777. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6778. {
  6779. front: {
  6780. height: math.unit(6 + 1 / 6, "feet"),
  6781. weight: math.unit(178, "lbs"),
  6782. name: "Front",
  6783. image: {
  6784. source: "./media/characters/guy/front.svg"
  6785. }
  6786. }
  6787. },
  6788. [
  6789. {
  6790. name: "Normal",
  6791. height: math.unit(6 + 1 / 6, "feet"),
  6792. default: true
  6793. },
  6794. {
  6795. name: "Large",
  6796. height: math.unit(25 + 7 / 12, "feet")
  6797. },
  6798. {
  6799. name: "Macro",
  6800. height: math.unit(60 + 9 / 12, "feet")
  6801. },
  6802. {
  6803. name: "Macro+",
  6804. height: math.unit(246, "feet")
  6805. },
  6806. {
  6807. name: "Macro++",
  6808. height: math.unit(878, "feet")
  6809. }
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(9, "feet"),
  6817. weight: math.unit(800, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/tiberius/front.svg",
  6821. extra: 2295 / 2071
  6822. }
  6823. },
  6824. back: {
  6825. height: math.unit(9, "feet"),
  6826. weight: math.unit(800, "lbs"),
  6827. name: "Back",
  6828. image: {
  6829. source: "./media/characters/tiberius/back.svg",
  6830. extra: 2373 / 2160
  6831. }
  6832. },
  6833. },
  6834. [
  6835. {
  6836. name: "Normal",
  6837. height: math.unit(9, "feet"),
  6838. default: true
  6839. }
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6844. {
  6845. front: {
  6846. height: math.unit(6, "feet"),
  6847. weight: math.unit(600, "lbs"),
  6848. name: "Front",
  6849. image: {
  6850. source: "./media/characters/surgo/front.svg",
  6851. extra: 3591 / 2227
  6852. }
  6853. },
  6854. back: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(600, "lbs"),
  6857. name: "Back",
  6858. image: {
  6859. source: "./media/characters/surgo/back.svg",
  6860. extra: 3557 / 2228
  6861. }
  6862. },
  6863. laying: {
  6864. height: math.unit(6 * 0.85, "feet"),
  6865. weight: math.unit(600, "lbs"),
  6866. name: "Laying",
  6867. image: {
  6868. source: "./media/characters/surgo/laying.svg"
  6869. }
  6870. },
  6871. },
  6872. [
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(6, "feet"),
  6876. default: true
  6877. }
  6878. ]
  6879. ))
  6880. characterMakers.push(() => makeCharacter(
  6881. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6882. {
  6883. side: {
  6884. height: math.unit(6, "feet"),
  6885. weight: math.unit(150, "lbs"),
  6886. name: "Side",
  6887. image: {
  6888. source: "./media/characters/cibus/side.svg",
  6889. extra: 800 / 400
  6890. }
  6891. },
  6892. },
  6893. [
  6894. {
  6895. name: "Normal",
  6896. height: math.unit(6, "feet"),
  6897. default: true
  6898. }
  6899. ]
  6900. ))
  6901. characterMakers.push(() => makeCharacter(
  6902. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6903. {
  6904. front: {
  6905. height: math.unit(6, "feet"),
  6906. weight: math.unit(240, "lbs"),
  6907. name: "Front",
  6908. image: {
  6909. source: "./media/characters/nibbles/front.svg"
  6910. }
  6911. },
  6912. side: {
  6913. height: math.unit(6, "feet"),
  6914. weight: math.unit(240, "lbs"),
  6915. name: "Side",
  6916. image: {
  6917. source: "./media/characters/nibbles/side.svg"
  6918. }
  6919. },
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(9, "feet"),
  6925. default: true
  6926. }
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6931. {
  6932. side: {
  6933. height: math.unit(5 + 1 / 6, "feet"),
  6934. weight: math.unit(130, "lbs"),
  6935. name: "Side",
  6936. image: {
  6937. source: "./media/characters/rikky/side.svg",
  6938. extra: 851 / 801
  6939. }
  6940. },
  6941. },
  6942. [
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(5 + 1 / 6, "feet")
  6946. },
  6947. {
  6948. name: "Macro",
  6949. height: math.unit(152, "feet"),
  6950. default: true
  6951. },
  6952. {
  6953. name: "Megamacro",
  6954. height: math.unit(7, "miles")
  6955. }
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6960. {
  6961. side: {
  6962. height: math.unit(370, "cm"),
  6963. weight: math.unit(350, "lbs"),
  6964. name: "Side",
  6965. image: {
  6966. source: "./media/characters/malfressa/side.svg"
  6967. }
  6968. },
  6969. walking: {
  6970. height: math.unit(370, "cm"),
  6971. weight: math.unit(350, "lbs"),
  6972. name: "Walking",
  6973. image: {
  6974. source: "./media/characters/malfressa/walking.svg"
  6975. }
  6976. },
  6977. feral: {
  6978. height: math.unit(2500, "cm"),
  6979. weight: math.unit(100000, "lbs"),
  6980. name: "Feral",
  6981. image: {
  6982. source: "./media/characters/malfressa/feral.svg",
  6983. extra: 2108 / 837,
  6984. bottom: 0.02
  6985. }
  6986. },
  6987. },
  6988. [
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(370, "cm")
  6992. },
  6993. {
  6994. name: "Macro",
  6995. height: math.unit(300, "meters"),
  6996. default: true
  6997. }
  6998. ]
  6999. ))
  7000. characterMakers.push(() => makeCharacter(
  7001. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7002. {
  7003. front: {
  7004. height: math.unit(6, "feet"),
  7005. weight: math.unit(60, "kg"),
  7006. name: "Front",
  7007. image: {
  7008. source: "./media/characters/jaro/front.svg",
  7009. extra: 845/817,
  7010. bottom: 45/890
  7011. }
  7012. },
  7013. back: {
  7014. height: math.unit(6, "feet"),
  7015. weight: math.unit(60, "kg"),
  7016. name: "Back",
  7017. image: {
  7018. source: "./media/characters/jaro/back.svg",
  7019. extra: 847/817,
  7020. bottom: 34/881
  7021. }
  7022. },
  7023. },
  7024. [
  7025. {
  7026. name: "Micro",
  7027. height: math.unit(7, "inches")
  7028. },
  7029. {
  7030. name: "Normal",
  7031. height: math.unit(5.5, "feet"),
  7032. default: true
  7033. },
  7034. {
  7035. name: "Minimacro",
  7036. height: math.unit(20, "feet")
  7037. },
  7038. {
  7039. name: "Macro",
  7040. height: math.unit(200, "meters")
  7041. }
  7042. ]
  7043. ))
  7044. characterMakers.push(() => makeCharacter(
  7045. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7046. {
  7047. front: {
  7048. height: math.unit(6, "feet"),
  7049. weight: math.unit(195, "lb"),
  7050. name: "Front",
  7051. image: {
  7052. source: "./media/characters/rogue/front.svg"
  7053. }
  7054. },
  7055. },
  7056. [
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(90, "feet"),
  7060. default: true
  7061. },
  7062. ]
  7063. ))
  7064. characterMakers.push(() => makeCharacter(
  7065. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7066. {
  7067. standing: {
  7068. height: math.unit(5 + 8 / 12, "feet"),
  7069. weight: math.unit(140, "lb"),
  7070. name: "Standing",
  7071. image: {
  7072. source: "./media/characters/piper/standing.svg",
  7073. extra: 1440/1284,
  7074. bottom: 66/1506
  7075. }
  7076. },
  7077. running: {
  7078. height: math.unit(5 + 8 / 12, "feet"),
  7079. weight: math.unit(140, "lb"),
  7080. name: "Running",
  7081. image: {
  7082. source: "./media/characters/piper/running.svg",
  7083. extra: 3948/3655,
  7084. bottom: 0/3948
  7085. }
  7086. },
  7087. sole: {
  7088. height: math.unit(0.81, "feet"),
  7089. weight: math.unit(2, "kg"),
  7090. name: "Sole",
  7091. image: {
  7092. source: "./media/characters/piper/sole.svg"
  7093. }
  7094. },
  7095. nipple: {
  7096. height: math.unit(0.25, "feet"),
  7097. weight: math.unit(1.5, "lb"),
  7098. name: "Nipple",
  7099. image: {
  7100. source: "./media/characters/piper/nipple.svg"
  7101. }
  7102. },
  7103. head: {
  7104. height: math.unit(1.1, "feet"),
  7105. name: "Head",
  7106. image: {
  7107. source: "./media/characters/piper/head.svg"
  7108. }
  7109. },
  7110. },
  7111. [
  7112. {
  7113. name: "Micro",
  7114. height: math.unit(2, "inches")
  7115. },
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(5 + 8 / 12, "feet")
  7119. },
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(250, "feet"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Megamacro",
  7127. height: math.unit(7, "miles")
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(220, "lb"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/gemini/front.svg"
  7140. }
  7141. },
  7142. back: {
  7143. height: math.unit(6, "feet"),
  7144. weight: math.unit(220, "lb"),
  7145. name: "Back",
  7146. image: {
  7147. source: "./media/characters/gemini/back.svg"
  7148. }
  7149. },
  7150. kneeling: {
  7151. height: math.unit(6 / 1.5, "feet"),
  7152. weight: math.unit(220, "lb"),
  7153. name: "Kneeling",
  7154. image: {
  7155. source: "./media/characters/gemini/kneeling.svg",
  7156. bottom: 0.02
  7157. }
  7158. },
  7159. },
  7160. [
  7161. {
  7162. name: "Macro",
  7163. height: math.unit(300, "meters"),
  7164. default: true
  7165. },
  7166. {
  7167. name: "Megamacro",
  7168. height: math.unit(6900, "meters")
  7169. },
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7174. {
  7175. anthro: {
  7176. height: math.unit(2.35, "meters"),
  7177. weight: math.unit(73, "kg"),
  7178. name: "Anthro",
  7179. image: {
  7180. source: "./media/characters/alicia/anthro.svg",
  7181. extra: 2571 / 2385,
  7182. bottom: 75 / 2648
  7183. }
  7184. },
  7185. paw: {
  7186. height: math.unit(1.32, "feet"),
  7187. name: "Paw",
  7188. image: {
  7189. source: "./media/characters/alicia/paw.svg"
  7190. }
  7191. },
  7192. feral: {
  7193. height: math.unit(1.69, "meters"),
  7194. weight: math.unit(73, "kg"),
  7195. name: "Feral",
  7196. image: {
  7197. source: "./media/characters/alicia/feral.svg",
  7198. extra: 2123 / 1715,
  7199. bottom: 222 / 2349
  7200. }
  7201. },
  7202. },
  7203. [
  7204. {
  7205. name: "Normal",
  7206. height: math.unit(2.35, "meters")
  7207. },
  7208. {
  7209. name: "Macro",
  7210. height: math.unit(60, "meters"),
  7211. default: true
  7212. },
  7213. {
  7214. name: "Megamacro",
  7215. height: math.unit(10000, "kilometers")
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(7, "feet"),
  7224. weight: math.unit(250, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/archy/front.svg"
  7228. }
  7229. }
  7230. },
  7231. [
  7232. {
  7233. name: "Micro",
  7234. height: math.unit(1, "inch")
  7235. },
  7236. {
  7237. name: "Shorty",
  7238. height: math.unit(5, "feet")
  7239. },
  7240. {
  7241. name: "Normal",
  7242. height: math.unit(7, "feet")
  7243. },
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(600, "meters"),
  7247. default: true
  7248. },
  7249. {
  7250. name: "Megamacro",
  7251. height: math.unit(1, "mile")
  7252. },
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(1.65, "meters"),
  7260. weight: math.unit(74, "kg"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/berri/front.svg",
  7264. extra: 857 / 837,
  7265. bottom: 18 / 877
  7266. }
  7267. },
  7268. bum: {
  7269. height: math.unit(1.46, "feet"),
  7270. name: "Bum",
  7271. image: {
  7272. source: "./media/characters/berri/bum.svg"
  7273. }
  7274. },
  7275. mouth: {
  7276. height: math.unit(0.44, "feet"),
  7277. name: "Mouth",
  7278. image: {
  7279. source: "./media/characters/berri/mouth.svg"
  7280. }
  7281. },
  7282. paw: {
  7283. height: math.unit(0.826, "feet"),
  7284. name: "Paw",
  7285. image: {
  7286. source: "./media/characters/berri/paw.svg"
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(1.65, "meters")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(60, "m"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(9.213, "km")
  7303. },
  7304. {
  7305. name: "Planet Eater",
  7306. height: math.unit(489, "megameters")
  7307. },
  7308. {
  7309. name: "Teramacro",
  7310. height: math.unit(2471635000000, "meters")
  7311. },
  7312. {
  7313. name: "Examacro",
  7314. height: math.unit(8.0624e+26, "meters")
  7315. }
  7316. ]
  7317. ))
  7318. characterMakers.push(() => makeCharacter(
  7319. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7320. {
  7321. front: {
  7322. height: math.unit(1.72, "meters"),
  7323. weight: math.unit(68, "kg"),
  7324. name: "Front",
  7325. image: {
  7326. source: "./media/characters/lexi/front.svg"
  7327. }
  7328. }
  7329. },
  7330. [
  7331. {
  7332. name: "Very Smol",
  7333. height: math.unit(10, "mm")
  7334. },
  7335. {
  7336. name: "Micro",
  7337. height: math.unit(6.8, "cm"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Normal",
  7342. height: math.unit(1.72, "m")
  7343. }
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7348. {
  7349. front: {
  7350. height: math.unit(1.69, "meters"),
  7351. weight: math.unit(68, "kg"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/martin/front.svg",
  7355. extra: 596 / 581
  7356. }
  7357. }
  7358. },
  7359. [
  7360. {
  7361. name: "Micro",
  7362. height: math.unit(6.85, "cm"),
  7363. default: true
  7364. },
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(1.69, "m")
  7368. }
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7373. {
  7374. front: {
  7375. height: math.unit(1.69, "meters"),
  7376. weight: math.unit(68, "kg"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/juno/front.svg"
  7380. }
  7381. }
  7382. },
  7383. [
  7384. {
  7385. name: "Micro",
  7386. height: math.unit(7, "cm")
  7387. },
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(1.89, "m")
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(353, "meters"),
  7395. default: true
  7396. }
  7397. ]
  7398. ))
  7399. characterMakers.push(() => makeCharacter(
  7400. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7401. {
  7402. front: {
  7403. height: math.unit(1.93, "meters"),
  7404. weight: math.unit(83, "kg"),
  7405. name: "Front",
  7406. image: {
  7407. source: "./media/characters/samantha/front.svg"
  7408. }
  7409. },
  7410. frontClothed: {
  7411. height: math.unit(1.93, "meters"),
  7412. weight: math.unit(83, "kg"),
  7413. name: "Front (Clothed)",
  7414. image: {
  7415. source: "./media/characters/samantha/front-clothed.svg"
  7416. }
  7417. },
  7418. back: {
  7419. height: math.unit(1.93, "meters"),
  7420. weight: math.unit(83, "kg"),
  7421. name: "Back",
  7422. image: {
  7423. source: "./media/characters/samantha/back.svg"
  7424. }
  7425. },
  7426. },
  7427. [
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(1.93, "m")
  7431. },
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(74, "meters"),
  7435. default: true
  7436. },
  7437. {
  7438. name: "Macro+",
  7439. height: math.unit(223, "meters"),
  7440. },
  7441. {
  7442. name: "Megamacro",
  7443. height: math.unit(8381, "meters"),
  7444. },
  7445. {
  7446. name: "Megamacro+",
  7447. height: math.unit(12000, "kilometers")
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(1.92, "meters"),
  7456. weight: math.unit(80, "kg"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/dr-clay/front.svg"
  7460. }
  7461. },
  7462. frontClothed: {
  7463. height: math.unit(1.92, "meters"),
  7464. weight: math.unit(80, "kg"),
  7465. name: "Front (Clothed)",
  7466. image: {
  7467. source: "./media/characters/dr-clay/front-clothed.svg"
  7468. }
  7469. }
  7470. },
  7471. [
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(1.92, "m")
  7475. },
  7476. {
  7477. name: "Macro",
  7478. height: math.unit(214, "meters"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Macro+",
  7483. height: math.unit(12.237, "meters"),
  7484. },
  7485. {
  7486. name: "Megamacro",
  7487. height: math.unit(557, "megameters"),
  7488. },
  7489. {
  7490. name: "Unimaginable",
  7491. height: math.unit(120e9, "lightyears")
  7492. },
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7497. {
  7498. front: {
  7499. height: math.unit(2, "meters"),
  7500. weight: math.unit(80, "kg"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7504. }
  7505. }
  7506. },
  7507. [
  7508. {
  7509. name: "Teramacro",
  7510. height: math.unit(500000, "lightyears"),
  7511. default: true
  7512. },
  7513. ]
  7514. ))
  7515. characterMakers.push(() => makeCharacter(
  7516. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7517. {
  7518. crux: {
  7519. height: math.unit(2, "meters"),
  7520. weight: math.unit(150, "kg"),
  7521. name: "Crux",
  7522. image: {
  7523. source: "./media/characters/vemus/crux.svg",
  7524. extra: 1074/936,
  7525. bottom: 23/1097
  7526. }
  7527. },
  7528. skunkTanuki: {
  7529. height: math.unit(2, "meters"),
  7530. weight: math.unit(150, "kg"),
  7531. name: "Skunk-Tanuki",
  7532. image: {
  7533. source: "./media/characters/vemus/skunk-tanuki.svg",
  7534. extra: 926/893,
  7535. bottom: 20/946
  7536. }
  7537. },
  7538. },
  7539. [
  7540. {
  7541. name: "Normal",
  7542. height: math.unit(4, "meters"),
  7543. default: true
  7544. },
  7545. {
  7546. name: "Big",
  7547. height: math.unit(8, "meters")
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(100, "meters")
  7552. },
  7553. {
  7554. name: "Macro+",
  7555. height: math.unit(1500, "meters")
  7556. },
  7557. {
  7558. name: "Stellar",
  7559. height: math.unit(14e8, "meters")
  7560. },
  7561. ]
  7562. ))
  7563. characterMakers.push(() => makeCharacter(
  7564. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7565. {
  7566. front: {
  7567. height: math.unit(2, "meters"),
  7568. weight: math.unit(70, "kg"),
  7569. name: "Front",
  7570. image: {
  7571. source: "./media/characters/beherit/front.svg",
  7572. extra: 1234/1109,
  7573. bottom: 55/1289
  7574. }
  7575. }
  7576. },
  7577. [
  7578. {
  7579. name: "Normal",
  7580. height: math.unit(6, "feet")
  7581. },
  7582. {
  7583. name: "Lorg",
  7584. height: math.unit(25, "feet"),
  7585. default: true
  7586. },
  7587. {
  7588. name: "Lorger",
  7589. height: math.unit(75, "feet")
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(200, "meters")
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(2, "meters"),
  7602. weight: math.unit(150, "kg"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/everett/front.svg",
  7606. extra: 1017/866,
  7607. bottom: 86/1103
  7608. }
  7609. },
  7610. paw: {
  7611. height: math.unit(2 / 3.6, "meters"),
  7612. name: "Paw",
  7613. image: {
  7614. source: "./media/characters/everett/paw.svg"
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(15, "feet"),
  7622. default: true
  7623. },
  7624. {
  7625. name: "Lorg",
  7626. height: math.unit(70, "feet"),
  7627. default: true
  7628. },
  7629. {
  7630. name: "Lorger",
  7631. height: math.unit(250, "feet")
  7632. },
  7633. {
  7634. name: "Macro",
  7635. height: math.unit(500, "meters")
  7636. },
  7637. ]
  7638. ))
  7639. characterMakers.push(() => makeCharacter(
  7640. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7641. {
  7642. front: {
  7643. height: math.unit(2, "meters"),
  7644. weight: math.unit(86, "kg"),
  7645. name: "Front",
  7646. image: {
  7647. source: "./media/characters/rose/front.svg",
  7648. extra: 1785/1636,
  7649. bottom: 30/1815
  7650. },
  7651. form: "liom",
  7652. default: true
  7653. },
  7654. frontSporty: {
  7655. height: math.unit(2, "meters"),
  7656. weight: math.unit(86, "kg"),
  7657. name: "Front (Sporty)",
  7658. image: {
  7659. source: "./media/characters/rose/front-sporty.svg",
  7660. extra: 350/335,
  7661. bottom: 10/360
  7662. },
  7663. form: "liom"
  7664. },
  7665. frontAlt: {
  7666. height: math.unit(1.6, "meters"),
  7667. weight: math.unit(86, "kg"),
  7668. name: "Front (Alt)",
  7669. image: {
  7670. source: "./media/characters/rose/front-alt.svg",
  7671. extra: 299/283,
  7672. bottom: 3/302
  7673. },
  7674. form: "liom"
  7675. },
  7676. plush: {
  7677. height: math.unit(2, "meters"),
  7678. weight: math.unit(86/3, "kg"),
  7679. name: "Plush",
  7680. image: {
  7681. source: "./media/characters/rose/plush.svg",
  7682. extra: 361/337,
  7683. bottom: 11/372
  7684. },
  7685. form: "plush",
  7686. default: true
  7687. },
  7688. faeStanding: {
  7689. height: math.unit(10, "cm"),
  7690. weight: math.unit(10, "grams"),
  7691. name: "Standing",
  7692. image: {
  7693. source: "./media/characters/rose/fae-standing.svg",
  7694. extra: 1189/1060,
  7695. bottom: 27/1216
  7696. },
  7697. form: "fae",
  7698. default: true
  7699. },
  7700. faeSitting: {
  7701. height: math.unit(5, "cm"),
  7702. weight: math.unit(10, "grams"),
  7703. name: "Sitting",
  7704. image: {
  7705. source: "./media/characters/rose/fae-sitting.svg",
  7706. extra: 737/577,
  7707. bottom: 356/1093
  7708. },
  7709. form: "fae"
  7710. },
  7711. faePaw: {
  7712. height: math.unit(1.35, "cm"),
  7713. name: "Paw",
  7714. image: {
  7715. source: "./media/characters/rose/fae-paw.svg"
  7716. },
  7717. form: "fae"
  7718. },
  7719. },
  7720. [
  7721. {
  7722. name: "True Micro",
  7723. height: math.unit(9, "cm"),
  7724. form: "liom"
  7725. },
  7726. {
  7727. name: "Micro",
  7728. height: math.unit(16, "cm"),
  7729. form: "liom"
  7730. },
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(1.85, "meters"),
  7734. default: true,
  7735. form: "liom"
  7736. },
  7737. {
  7738. name: "Mini-Macro",
  7739. height: math.unit(5, "meters"),
  7740. form: "liom"
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(15, "meters"),
  7745. form: "liom"
  7746. },
  7747. {
  7748. name: "True Macro",
  7749. height: math.unit(40, "meters"),
  7750. form: "liom"
  7751. },
  7752. {
  7753. name: "City Scale",
  7754. height: math.unit(1, "km"),
  7755. form: "liom"
  7756. },
  7757. {
  7758. name: "Plushie",
  7759. height: math.unit(9, "cm"),
  7760. form: "plush",
  7761. default: true
  7762. },
  7763. {
  7764. name: "Fae",
  7765. height: math.unit(10, "cm"),
  7766. form: "fae",
  7767. default: true
  7768. },
  7769. ],
  7770. {
  7771. "liom": {
  7772. name: "Liom"
  7773. },
  7774. "plush": {
  7775. name: "Plush"
  7776. },
  7777. "fae": {
  7778. name: "Fae Fox",
  7779. default: true
  7780. }
  7781. }
  7782. ))
  7783. characterMakers.push(() => makeCharacter(
  7784. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7785. {
  7786. front: {
  7787. height: math.unit(2, "meters"),
  7788. weight: math.unit(350, "lbs"),
  7789. name: "Front",
  7790. image: {
  7791. source: "./media/characters/regal/front.svg"
  7792. }
  7793. },
  7794. back: {
  7795. height: math.unit(2, "meters"),
  7796. weight: math.unit(350, "lbs"),
  7797. name: "Back",
  7798. image: {
  7799. source: "./media/characters/regal/back.svg"
  7800. }
  7801. },
  7802. },
  7803. [
  7804. {
  7805. name: "Macro",
  7806. height: math.unit(350, "feet"),
  7807. default: true
  7808. }
  7809. ]
  7810. ))
  7811. characterMakers.push(() => makeCharacter(
  7812. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7813. {
  7814. front: {
  7815. height: math.unit(4 + 11 / 12, "feet"),
  7816. weight: math.unit(100, "lbs"),
  7817. name: "Front",
  7818. image: {
  7819. source: "./media/characters/opal/front.svg"
  7820. }
  7821. },
  7822. frontAlt: {
  7823. height: math.unit(4 + 11 / 12, "feet"),
  7824. weight: math.unit(100, "lbs"),
  7825. name: "Front (Alt)",
  7826. image: {
  7827. source: "./media/characters/opal/front-alt.svg"
  7828. }
  7829. },
  7830. },
  7831. [
  7832. {
  7833. name: "Small",
  7834. height: math.unit(4 + 11 / 12, "feet")
  7835. },
  7836. {
  7837. name: "Normal",
  7838. height: math.unit(20, "feet"),
  7839. default: true
  7840. },
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(120, "feet")
  7844. },
  7845. {
  7846. name: "Megamacro",
  7847. height: math.unit(80, "miles")
  7848. },
  7849. {
  7850. name: "True Size",
  7851. height: math.unit(100000, "lightyears")
  7852. },
  7853. ]
  7854. ))
  7855. characterMakers.push(() => makeCharacter(
  7856. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7857. {
  7858. front: {
  7859. height: math.unit(6, "feet"),
  7860. weight: math.unit(200, "lbs"),
  7861. name: "Front",
  7862. image: {
  7863. source: "./media/characters/vector-wuff/front.svg"
  7864. }
  7865. }
  7866. },
  7867. [
  7868. {
  7869. name: "Normal",
  7870. height: math.unit(2.8, "meters")
  7871. },
  7872. {
  7873. name: "Macro",
  7874. height: math.unit(450, "meters"),
  7875. default: true
  7876. },
  7877. {
  7878. name: "Megamacro",
  7879. height: math.unit(15, "kilometers")
  7880. }
  7881. ]
  7882. ))
  7883. characterMakers.push(() => makeCharacter(
  7884. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7885. {
  7886. front: {
  7887. height: math.unit(6, "feet"),
  7888. weight: math.unit(256, "lbs"),
  7889. name: "Front",
  7890. image: {
  7891. source: "./media/characters/dannik/front.svg"
  7892. }
  7893. }
  7894. },
  7895. [
  7896. {
  7897. name: "Macro",
  7898. height: math.unit(69.57, "meters"),
  7899. default: true
  7900. },
  7901. ]
  7902. ))
  7903. characterMakers.push(() => makeCharacter(
  7904. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7905. {
  7906. front: {
  7907. height: math.unit(6, "feet"),
  7908. weight: math.unit(120, "lbs"),
  7909. name: "Front",
  7910. image: {
  7911. source: "./media/characters/azura-saharah/front.svg"
  7912. }
  7913. },
  7914. back: {
  7915. height: math.unit(6, "feet"),
  7916. weight: math.unit(120, "lbs"),
  7917. name: "Back",
  7918. image: {
  7919. source: "./media/characters/azura-saharah/back.svg"
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Macro",
  7926. height: math.unit(100, "feet"),
  7927. default: true
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7933. {
  7934. side: {
  7935. height: math.unit(5 + 4 / 12, "feet"),
  7936. weight: math.unit(163, "lbs"),
  7937. name: "Side",
  7938. image: {
  7939. source: "./media/characters/kennedy/side.svg"
  7940. }
  7941. }
  7942. },
  7943. [
  7944. {
  7945. name: "Standard Doggo",
  7946. height: math.unit(5 + 4 / 12, "feet")
  7947. },
  7948. {
  7949. name: "Big Doggo",
  7950. height: math.unit(25 + 3 / 12, "feet"),
  7951. default: true
  7952. },
  7953. ]
  7954. ))
  7955. characterMakers.push(() => makeCharacter(
  7956. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7957. {
  7958. front: {
  7959. height: math.unit(5 + 5/12, "feet"),
  7960. weight: math.unit(100, "lbs"),
  7961. name: "Front",
  7962. image: {
  7963. source: "./media/characters/odios-de-lunar/front.svg",
  7964. extra: 1468/1323,
  7965. bottom: 22/1490
  7966. }
  7967. }
  7968. },
  7969. [
  7970. {
  7971. name: "Micro",
  7972. height: math.unit(3, "inches")
  7973. },
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(5.5, "feet"),
  7977. default: true
  7978. },
  7979. {
  7980. name: "Macro",
  7981. height: math.unit(100, "feet")
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7987. {
  7988. back: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(220, "lbs"),
  7991. name: "Back",
  7992. image: {
  7993. source: "./media/characters/mandake/back.svg"
  7994. }
  7995. }
  7996. },
  7997. [
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(7, "feet"),
  8001. default: true
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(78, "feet")
  8006. },
  8007. {
  8008. name: "Macro+",
  8009. height: math.unit(300, "meters")
  8010. },
  8011. {
  8012. name: "Macro++",
  8013. height: math.unit(2400, "feet")
  8014. },
  8015. {
  8016. name: "Megamacro",
  8017. height: math.unit(5167, "meters")
  8018. },
  8019. {
  8020. name: "Gigamacro",
  8021. height: math.unit(41769, "miles")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(6, "feet"),
  8030. weight: math.unit(120, "lbs"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/yozey/front.svg"
  8034. }
  8035. },
  8036. frontAlt: {
  8037. height: math.unit(6, "feet"),
  8038. weight: math.unit(120, "lbs"),
  8039. name: "Front (Alt)",
  8040. image: {
  8041. source: "./media/characters/yozey/front-alt.svg"
  8042. }
  8043. },
  8044. side: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(120, "lbs"),
  8047. name: "Side",
  8048. image: {
  8049. source: "./media/characters/yozey/side.svg"
  8050. }
  8051. },
  8052. },
  8053. [
  8054. {
  8055. name: "Micro",
  8056. height: math.unit(3, "inches"),
  8057. default: true
  8058. },
  8059. {
  8060. name: "Normal",
  8061. height: math.unit(6, "feet")
  8062. }
  8063. ]
  8064. ))
  8065. characterMakers.push(() => makeCharacter(
  8066. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8067. {
  8068. front: {
  8069. height: math.unit(6, "feet"),
  8070. weight: math.unit(103, "lbs"),
  8071. name: "Front",
  8072. image: {
  8073. source: "./media/characters/valeska-voss/front.svg"
  8074. }
  8075. }
  8076. },
  8077. [
  8078. {
  8079. name: "Mini-Sized Sub",
  8080. height: math.unit(3.1, "inches")
  8081. },
  8082. {
  8083. name: "Mid-Sized Sub",
  8084. height: math.unit(6.2, "inches")
  8085. },
  8086. {
  8087. name: "Full-Sized Sub",
  8088. height: math.unit(9.3, "inches")
  8089. },
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(5 + 2 / 12, "foot"),
  8093. default: true
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(6, "feet"),
  8102. weight: math.unit(160, "lbs"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/gene-zeta/front.svg",
  8106. extra: 3006 / 2826,
  8107. bottom: 182 / 3188
  8108. }
  8109. }
  8110. },
  8111. [
  8112. {
  8113. name: "Micro",
  8114. height: math.unit(6, "inches")
  8115. },
  8116. {
  8117. name: "Normal",
  8118. height: math.unit(5 + 11 / 12, "foot"),
  8119. default: true
  8120. },
  8121. {
  8122. name: "Macro",
  8123. height: math.unit(140, "feet")
  8124. },
  8125. {
  8126. name: "Supercharged",
  8127. height: math.unit(2500, "feet")
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(6, "feet"),
  8136. weight: math.unit(350, "lbs"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/razinox/front.svg",
  8140. extra: 1686 / 1548,
  8141. bottom: 28.2 / 1868
  8142. }
  8143. },
  8144. back: {
  8145. height: math.unit(6, "feet"),
  8146. weight: math.unit(350, "lbs"),
  8147. name: "Back",
  8148. image: {
  8149. source: "./media/characters/razinox/back.svg",
  8150. extra: 1660 / 1590,
  8151. bottom: 15 / 1665
  8152. }
  8153. },
  8154. },
  8155. [
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(10 + 8 / 12, "foot")
  8159. },
  8160. {
  8161. name: "Minimacro",
  8162. height: math.unit(15, "foot")
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(60, "foot"),
  8167. default: true
  8168. },
  8169. {
  8170. name: "Megamacro",
  8171. height: math.unit(5, "miles")
  8172. },
  8173. {
  8174. name: "Gigamacro",
  8175. height: math.unit(6000, "miles")
  8176. },
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8181. {
  8182. front: {
  8183. height: math.unit(6, "feet"),
  8184. weight: math.unit(150, "lbs"),
  8185. name: "Front",
  8186. image: {
  8187. source: "./media/characters/cobalt/front.svg"
  8188. }
  8189. }
  8190. },
  8191. [
  8192. {
  8193. name: "Normal",
  8194. height: math.unit(8 + 1 / 12, "foot")
  8195. },
  8196. {
  8197. name: "Macro",
  8198. height: math.unit(111, "foot"),
  8199. default: true
  8200. },
  8201. {
  8202. name: "Supracosmic",
  8203. height: math.unit(1e42, "feet")
  8204. },
  8205. ]
  8206. ))
  8207. characterMakers.push(() => makeCharacter(
  8208. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8209. {
  8210. front: {
  8211. height: math.unit(5, "inches"),
  8212. name: "Front",
  8213. image: {
  8214. source: "./media/characters/amanda/front.svg",
  8215. extra: 926/791,
  8216. bottom: 38/964
  8217. }
  8218. },
  8219. back: {
  8220. height: math.unit(5, "inches"),
  8221. name: "Back",
  8222. image: {
  8223. source: "./media/characters/amanda/back.svg",
  8224. extra: 909/805,
  8225. bottom: 43/952
  8226. }
  8227. },
  8228. },
  8229. [
  8230. {
  8231. name: "Micro",
  8232. height: math.unit(5, "inches"),
  8233. default: true
  8234. },
  8235. ]
  8236. ))
  8237. characterMakers.push(() => makeCharacter(
  8238. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8239. {
  8240. front: {
  8241. height: math.unit(2.75, "meters"),
  8242. weight: math.unit(1200, "lb"),
  8243. name: "Front",
  8244. image: {
  8245. source: "./media/characters/teal/front.svg",
  8246. extra: 2463 / 2320,
  8247. bottom: 166 / 2629
  8248. }
  8249. },
  8250. back: {
  8251. height: math.unit(2.75, "meters"),
  8252. weight: math.unit(1200, "lb"),
  8253. name: "Back",
  8254. image: {
  8255. source: "./media/characters/teal/back.svg",
  8256. extra: 2580 / 2489,
  8257. bottom: 151 / 2731
  8258. }
  8259. },
  8260. sitting: {
  8261. height: math.unit(1.9, "meters"),
  8262. weight: math.unit(1200, "lb"),
  8263. name: "Sitting",
  8264. image: {
  8265. source: "./media/characters/teal/sitting.svg",
  8266. extra: 623 / 590,
  8267. bottom: 121 / 744
  8268. }
  8269. },
  8270. standing: {
  8271. height: math.unit(2.75, "meters"),
  8272. weight: math.unit(1200, "lb"),
  8273. name: "Standing",
  8274. image: {
  8275. source: "./media/characters/teal/standing.svg",
  8276. extra: 923 / 893,
  8277. bottom: 60 / 983
  8278. }
  8279. },
  8280. stretching: {
  8281. height: math.unit(3.65, "meters"),
  8282. weight: math.unit(1200, "lb"),
  8283. name: "Stretching",
  8284. image: {
  8285. source: "./media/characters/teal/stretching.svg",
  8286. extra: 1276 / 1244,
  8287. bottom: 0 / 1276
  8288. }
  8289. },
  8290. legged: {
  8291. height: math.unit(1.3, "meters"),
  8292. weight: math.unit(100, "lb"),
  8293. name: "Legged",
  8294. image: {
  8295. source: "./media/characters/teal/legged.svg",
  8296. extra: 462 / 437,
  8297. bottom: 24 / 486
  8298. }
  8299. },
  8300. naga: {
  8301. height: math.unit(5.4, "meters"),
  8302. weight: math.unit(4000, "lb"),
  8303. name: "Naga",
  8304. image: {
  8305. source: "./media/characters/teal/naga.svg",
  8306. extra: 1902 / 1858,
  8307. bottom: 0 / 1902
  8308. }
  8309. },
  8310. hand: {
  8311. height: math.unit(0.52, "meters"),
  8312. name: "Hand",
  8313. image: {
  8314. source: "./media/characters/teal/hand.svg"
  8315. }
  8316. },
  8317. maw: {
  8318. height: math.unit(0.43, "meters"),
  8319. name: "Maw",
  8320. image: {
  8321. source: "./media/characters/teal/maw.svg"
  8322. }
  8323. },
  8324. slit: {
  8325. height: math.unit(0.25, "meters"),
  8326. name: "Slit",
  8327. image: {
  8328. source: "./media/characters/teal/slit.svg"
  8329. }
  8330. },
  8331. },
  8332. [
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(2.75, "meters"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(300, "feet")
  8341. },
  8342. {
  8343. name: "Macro+",
  8344. height: math.unit(2000, "feet")
  8345. },
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8350. {
  8351. frontCat: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(180, "lbs"),
  8354. name: "Front (Cat)",
  8355. image: {
  8356. source: "./media/characters/ravin-amulet/front-cat.svg"
  8357. }
  8358. },
  8359. frontCatAlt: {
  8360. height: math.unit(6, "feet"),
  8361. weight: math.unit(180, "lbs"),
  8362. name: "Front (Alt, Cat)",
  8363. image: {
  8364. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8365. }
  8366. },
  8367. frontWerewolf: {
  8368. height: math.unit(6 * 1.2, "feet"),
  8369. weight: math.unit(225, "lbs"),
  8370. name: "Front (Werewolf)",
  8371. image: {
  8372. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8373. }
  8374. },
  8375. backWerewolf: {
  8376. height: math.unit(6 * 1.2, "feet"),
  8377. weight: math.unit(225, "lbs"),
  8378. name: "Back (Werewolf)",
  8379. image: {
  8380. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8381. }
  8382. },
  8383. },
  8384. [
  8385. {
  8386. name: "Nano",
  8387. height: math.unit(1, "micrometer")
  8388. },
  8389. {
  8390. name: "Micro",
  8391. height: math.unit(1, "inch")
  8392. },
  8393. {
  8394. name: "Normal",
  8395. height: math.unit(6, "feet"),
  8396. default: true
  8397. },
  8398. {
  8399. name: "Macro",
  8400. height: math.unit(60, "feet")
  8401. }
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(165, "lbs"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/fluoresce/front.svg"
  8413. }
  8414. }
  8415. },
  8416. [
  8417. {
  8418. name: "Micro",
  8419. height: math.unit(6, "cm")
  8420. },
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(5 + 7 / 12, "feet"),
  8424. default: true
  8425. },
  8426. {
  8427. name: "Macro",
  8428. height: math.unit(56, "feet")
  8429. },
  8430. {
  8431. name: "Megamacro",
  8432. height: math.unit(1.9, "miles")
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(9 + 6 / 12, "feet"),
  8441. weight: math.unit(523, "lbs"),
  8442. name: "Side",
  8443. image: {
  8444. source: "./media/characters/aurora/side.svg",
  8445. extra: 474/393,
  8446. bottom: 5/479
  8447. }
  8448. }
  8449. },
  8450. [
  8451. {
  8452. name: "Normal",
  8453. height: math.unit(9 + 6 / 12, "feet")
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(96, "feet"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Macro+",
  8462. height: math.unit(243, "feet")
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(194, "cm"),
  8471. weight: math.unit(90, "kg"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/ranek/front.svg",
  8475. extra: 1862/1791,
  8476. bottom: 80/1942
  8477. }
  8478. },
  8479. back: {
  8480. height: math.unit(194, "cm"),
  8481. weight: math.unit(90, "kg"),
  8482. name: "Back",
  8483. image: {
  8484. source: "./media/characters/ranek/back.svg",
  8485. extra: 1853/1787,
  8486. bottom: 74/1927
  8487. }
  8488. },
  8489. feral: {
  8490. height: math.unit(30, "cm"),
  8491. weight: math.unit(1.6, "lbs"),
  8492. name: "Feral",
  8493. image: {
  8494. source: "./media/characters/ranek/feral.svg",
  8495. extra: 990/631,
  8496. bottom: 29/1019
  8497. }
  8498. },
  8499. },
  8500. [
  8501. {
  8502. name: "Normal",
  8503. height: math.unit(194, "cm"),
  8504. default: true
  8505. },
  8506. {
  8507. name: "Macro",
  8508. height: math.unit(100, "meters")
  8509. },
  8510. ]
  8511. ))
  8512. characterMakers.push(() => makeCharacter(
  8513. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8514. {
  8515. front: {
  8516. height: math.unit(5 + 6 / 12, "feet"),
  8517. weight: math.unit(153, "lbs"),
  8518. name: "Front",
  8519. image: {
  8520. source: "./media/characters/andrew-cooper/front.svg"
  8521. }
  8522. },
  8523. },
  8524. [
  8525. {
  8526. name: "Nano",
  8527. height: math.unit(1, "mm")
  8528. },
  8529. {
  8530. name: "Micro",
  8531. height: math.unit(2, "inches")
  8532. },
  8533. {
  8534. name: "Normal",
  8535. height: math.unit(5 + 6 / 12, "feet"),
  8536. default: true
  8537. }
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(6, "feet"),
  8545. weight: math.unit(180, "lbs"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/akane-sato/front.svg",
  8549. extra: 1219 / 1140
  8550. }
  8551. },
  8552. back: {
  8553. height: math.unit(6, "feet"),
  8554. weight: math.unit(180, "lbs"),
  8555. name: "Back",
  8556. image: {
  8557. source: "./media/characters/akane-sato/back.svg",
  8558. extra: 1219 / 1170
  8559. }
  8560. },
  8561. },
  8562. [
  8563. {
  8564. name: "Normal",
  8565. height: math.unit(2.5, "meters")
  8566. },
  8567. {
  8568. name: "Macro",
  8569. height: math.unit(250, "meters"),
  8570. default: true
  8571. },
  8572. {
  8573. name: "Megamacro",
  8574. height: math.unit(25, "km")
  8575. },
  8576. ]
  8577. ))
  8578. characterMakers.push(() => makeCharacter(
  8579. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8580. {
  8581. front: {
  8582. height: math.unit(6, "feet"),
  8583. weight: math.unit(65, "kg"),
  8584. name: "Front",
  8585. image: {
  8586. source: "./media/characters/rook/front.svg",
  8587. extra: 960 / 950
  8588. }
  8589. }
  8590. },
  8591. [
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(8.8, "feet")
  8595. },
  8596. {
  8597. name: "Macro",
  8598. height: math.unit(88, "feet"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Megamacro",
  8603. height: math.unit(8, "miles")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(12 + 2 / 12, "feet"),
  8612. weight: math.unit(808, "lbs"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/prodigy/front.svg"
  8616. }
  8617. }
  8618. },
  8619. [
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(12 + 2 / 12, "feet"),
  8623. default: true
  8624. },
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(143, "feet")
  8628. },
  8629. {
  8630. name: "Macro+",
  8631. height: math.unit(400, "feet")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(6, "feet"),
  8640. weight: math.unit(225, "lbs"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/daniel/front.svg"
  8644. }
  8645. },
  8646. leaning: {
  8647. height: math.unit(6, "feet"),
  8648. weight: math.unit(225, "lbs"),
  8649. name: "Leaning",
  8650. image: {
  8651. source: "./media/characters/daniel/leaning.svg"
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Macro",
  8658. height: math.unit(1000, "feet"),
  8659. default: true
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(6, "feet"),
  8668. weight: math.unit(88, "lbs"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/chiros/front.svg",
  8672. extra: 306 / 226
  8673. }
  8674. },
  8675. side: {
  8676. height: math.unit(6, "feet"),
  8677. weight: math.unit(88, "lbs"),
  8678. name: "Side",
  8679. image: {
  8680. source: "./media/characters/chiros/side.svg",
  8681. extra: 306 / 226
  8682. }
  8683. },
  8684. },
  8685. [
  8686. {
  8687. name: "Normal",
  8688. height: math.unit(6, "cm"),
  8689. default: true
  8690. },
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8695. {
  8696. front: {
  8697. height: math.unit(6, "feet"),
  8698. weight: math.unit(100, "lbs"),
  8699. name: "Front",
  8700. image: {
  8701. source: "./media/characters/selka/front.svg",
  8702. extra: 947 / 887
  8703. }
  8704. }
  8705. },
  8706. [
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(5, "cm"),
  8710. default: true
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(8 + 3 / 12, "feet"),
  8719. weight: math.unit(424, "lbs"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/verin/front.svg",
  8723. extra: 1845 / 1550
  8724. }
  8725. },
  8726. frontArmored: {
  8727. height: math.unit(8 + 3 / 12, "feet"),
  8728. weight: math.unit(424, "lbs"),
  8729. name: "Front (Armored)",
  8730. image: {
  8731. source: "./media/characters/verin/front-armor.svg",
  8732. extra: 1845 / 1550,
  8733. bottom: 0.01
  8734. }
  8735. },
  8736. back: {
  8737. height: math.unit(8 + 3 / 12, "feet"),
  8738. weight: math.unit(424, "lbs"),
  8739. name: "Back",
  8740. image: {
  8741. source: "./media/characters/verin/back.svg",
  8742. bottom: 0.1,
  8743. extra: 1
  8744. }
  8745. },
  8746. foot: {
  8747. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8748. name: "Foot",
  8749. image: {
  8750. source: "./media/characters/verin/foot.svg"
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(8 + 3 / 12, "feet")
  8758. },
  8759. {
  8760. name: "Minimacro",
  8761. height: math.unit(21, "feet"),
  8762. default: true
  8763. },
  8764. {
  8765. name: "Macro",
  8766. height: math.unit(626, "feet")
  8767. },
  8768. ]
  8769. ))
  8770. characterMakers.push(() => makeCharacter(
  8771. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8772. {
  8773. front: {
  8774. height: math.unit(2.718, "meters"),
  8775. weight: math.unit(150, "lbs"),
  8776. name: "Front",
  8777. image: {
  8778. source: "./media/characters/sovrim-terraquian/front.svg",
  8779. extra: 1752/1689,
  8780. bottom: 36/1788
  8781. }
  8782. },
  8783. back: {
  8784. height: math.unit(2.718, "meters"),
  8785. weight: math.unit(150, "lbs"),
  8786. name: "Back",
  8787. image: {
  8788. source: "./media/characters/sovrim-terraquian/back.svg",
  8789. extra: 1698/1657,
  8790. bottom: 58/1756
  8791. }
  8792. },
  8793. tongue: {
  8794. height: math.unit(2.865, "feet"),
  8795. name: "Tongue",
  8796. image: {
  8797. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8798. }
  8799. },
  8800. hand: {
  8801. height: math.unit(1.61, "feet"),
  8802. name: "Hand",
  8803. image: {
  8804. source: "./media/characters/sovrim-terraquian/hand.svg"
  8805. }
  8806. },
  8807. foot: {
  8808. height: math.unit(1.05, "feet"),
  8809. name: "Foot",
  8810. image: {
  8811. source: "./media/characters/sovrim-terraquian/foot.svg"
  8812. }
  8813. },
  8814. footAlt: {
  8815. height: math.unit(0.88, "feet"),
  8816. name: "Foot (Alt)",
  8817. image: {
  8818. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Micro",
  8825. height: math.unit(2, "inches")
  8826. },
  8827. {
  8828. name: "Small",
  8829. height: math.unit(1, "meter")
  8830. },
  8831. {
  8832. name: "Normal",
  8833. height: math.unit(Math.E, "meters"),
  8834. default: true
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(20, "meters")
  8839. },
  8840. {
  8841. name: "Macro+",
  8842. height: math.unit(400, "meters")
  8843. },
  8844. ]
  8845. ))
  8846. characterMakers.push(() => makeCharacter(
  8847. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8848. {
  8849. front: {
  8850. height: math.unit(7, "feet"),
  8851. weight: math.unit(489, "lbs"),
  8852. name: "Front",
  8853. image: {
  8854. source: "./media/characters/reece-silvermane/front.svg",
  8855. bottom: 0.02,
  8856. extra: 1
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Macro",
  8863. height: math.unit(1.5, "miles"),
  8864. default: true
  8865. },
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(6, "feet"),
  8873. weight: math.unit(78, "kg"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/kane/front.svg",
  8877. extra: 978 / 899
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(2.1, "m"),
  8885. },
  8886. {
  8887. name: "Macro",
  8888. height: math.unit(1, "km"),
  8889. default: true
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8895. {
  8896. front: {
  8897. height: math.unit(6, "feet"),
  8898. weight: math.unit(200, "kg"),
  8899. name: "Front",
  8900. image: {
  8901. source: "./media/characters/tegon/front.svg",
  8902. bottom: 0.01,
  8903. extra: 1
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Micro",
  8910. height: math.unit(1, "inch")
  8911. },
  8912. {
  8913. name: "Normal",
  8914. height: math.unit(6 + 3 / 12, "feet"),
  8915. default: true
  8916. },
  8917. {
  8918. name: "Macro",
  8919. height: math.unit(300, "feet")
  8920. },
  8921. {
  8922. name: "Megamacro",
  8923. height: math.unit(69, "miles")
  8924. },
  8925. ]
  8926. ))
  8927. characterMakers.push(() => makeCharacter(
  8928. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8929. {
  8930. side: {
  8931. height: math.unit(6, "feet"),
  8932. weight: math.unit(2304, "lbs"),
  8933. name: "Side",
  8934. image: {
  8935. source: "./media/characters/arcturax/side.svg",
  8936. extra: 790 / 376,
  8937. bottom: 0.01
  8938. }
  8939. },
  8940. },
  8941. [
  8942. {
  8943. name: "Micro",
  8944. height: math.unit(2, "inch")
  8945. },
  8946. {
  8947. name: "Normal",
  8948. height: math.unit(6, "feet")
  8949. },
  8950. {
  8951. name: "Macro",
  8952. height: math.unit(39, "feet"),
  8953. default: true
  8954. },
  8955. {
  8956. name: "Megamacro",
  8957. height: math.unit(7, "miles")
  8958. },
  8959. ]
  8960. ))
  8961. characterMakers.push(() => makeCharacter(
  8962. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8963. {
  8964. front: {
  8965. height: math.unit(6, "feet"),
  8966. weight: math.unit(50, "lbs"),
  8967. name: "Front",
  8968. image: {
  8969. source: "./media/characters/sentri/front.svg",
  8970. extra: 1750 / 1570,
  8971. bottom: 0.025
  8972. }
  8973. },
  8974. frontAlt: {
  8975. height: math.unit(6, "feet"),
  8976. weight: math.unit(50, "lbs"),
  8977. name: "Front (Alt)",
  8978. image: {
  8979. source: "./media/characters/sentri/front-alt.svg",
  8980. extra: 1750 / 1570,
  8981. bottom: 0.025
  8982. }
  8983. },
  8984. },
  8985. [
  8986. {
  8987. name: "Normal",
  8988. height: math.unit(15, "feet"),
  8989. default: true
  8990. },
  8991. {
  8992. name: "Macro",
  8993. height: math.unit(2500, "feet")
  8994. }
  8995. ]
  8996. ))
  8997. characterMakers.push(() => makeCharacter(
  8998. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8999. {
  9000. front: {
  9001. height: math.unit(5 + 8 / 12, "feet"),
  9002. weight: math.unit(130, "lbs"),
  9003. name: "Front",
  9004. image: {
  9005. source: "./media/characters/corvin/front.svg",
  9006. extra: 1803 / 1629
  9007. }
  9008. },
  9009. frontShirt: {
  9010. height: math.unit(5 + 8 / 12, "feet"),
  9011. weight: math.unit(130, "lbs"),
  9012. name: "Front (Shirt)",
  9013. image: {
  9014. source: "./media/characters/corvin/front-shirt.svg",
  9015. extra: 1803 / 1629
  9016. }
  9017. },
  9018. frontPoncho: {
  9019. height: math.unit(5 + 8 / 12, "feet"),
  9020. weight: math.unit(130, "lbs"),
  9021. name: "Front (Poncho)",
  9022. image: {
  9023. source: "./media/characters/corvin/front-poncho.svg",
  9024. extra: 1803 / 1629
  9025. }
  9026. },
  9027. side: {
  9028. height: math.unit(5 + 8 / 12, "feet"),
  9029. weight: math.unit(130, "lbs"),
  9030. name: "Side",
  9031. image: {
  9032. source: "./media/characters/corvin/side.svg",
  9033. extra: 1012 / 945
  9034. }
  9035. },
  9036. back: {
  9037. height: math.unit(5 + 8 / 12, "feet"),
  9038. weight: math.unit(130, "lbs"),
  9039. name: "Back",
  9040. image: {
  9041. source: "./media/characters/corvin/back.svg",
  9042. extra: 1803 / 1629
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Micro",
  9049. height: math.unit(3, "inches")
  9050. },
  9051. {
  9052. name: "Normal",
  9053. height: math.unit(5 + 8 / 12, "feet")
  9054. },
  9055. {
  9056. name: "Macro",
  9057. height: math.unit(300, "feet"),
  9058. default: true
  9059. },
  9060. {
  9061. name: "Megamacro",
  9062. height: math.unit(500, "miles")
  9063. }
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9068. {
  9069. front: {
  9070. height: math.unit(6, "feet"),
  9071. weight: math.unit(135, "lbs"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/q/front.svg",
  9075. extra: 854 / 752,
  9076. bottom: 0.005
  9077. }
  9078. },
  9079. back: {
  9080. height: math.unit(6, "feet"),
  9081. weight: math.unit(130, "lbs"),
  9082. name: "Back",
  9083. image: {
  9084. source: "./media/characters/q/back.svg",
  9085. extra: 854 / 752
  9086. }
  9087. },
  9088. },
  9089. [
  9090. {
  9091. name: "Macro",
  9092. height: math.unit(90, "feet"),
  9093. default: true
  9094. },
  9095. {
  9096. name: "Extra Macro",
  9097. height: math.unit(300, "feet"),
  9098. },
  9099. {
  9100. name: "BIG WALF",
  9101. height: math.unit(750, "feet"),
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(3, "feet"),
  9110. weight: math.unit(28, "lbs"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/citrine/front.svg"
  9114. }
  9115. }
  9116. },
  9117. [
  9118. {
  9119. name: "Normal",
  9120. height: math.unit(3, "feet"),
  9121. default: true
  9122. }
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9127. {
  9128. front: {
  9129. height: math.unit(14, "feet"),
  9130. weight: math.unit(1450, "kg"),
  9131. preyCapacity: math.unit(15, "people"),
  9132. name: "Front",
  9133. image: {
  9134. source: "./media/characters/aura-starwind/front.svg",
  9135. extra: 1440/1327,
  9136. bottom: 11/1451
  9137. }
  9138. },
  9139. side: {
  9140. height: math.unit(14, "feet"),
  9141. weight: math.unit(1450, "kg"),
  9142. preyCapacity: math.unit(15, "people"),
  9143. name: "Side",
  9144. image: {
  9145. source: "./media/characters/aura-starwind/side.svg",
  9146. extra: 1654 / 1497
  9147. }
  9148. },
  9149. taur: {
  9150. height: math.unit(18, "feet"),
  9151. weight: math.unit(5500, "kg"),
  9152. preyCapacity: math.unit(50, "people"),
  9153. name: "Taur",
  9154. image: {
  9155. source: "./media/characters/aura-starwind/taur.svg",
  9156. extra: 1760 / 1650
  9157. }
  9158. },
  9159. feral: {
  9160. height: math.unit(46, "feet"),
  9161. weight: math.unit(25000, "kg"),
  9162. preyCapacity: math.unit(120, "people"),
  9163. name: "Feral",
  9164. image: {
  9165. source: "./media/characters/aura-starwind/feral.svg"
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(14, "feet"),
  9173. default: true
  9174. },
  9175. {
  9176. name: "Macro",
  9177. height: math.unit(50, "meters")
  9178. },
  9179. {
  9180. name: "Megamacro",
  9181. height: math.unit(5000, "meters")
  9182. },
  9183. {
  9184. name: "Gigamacro",
  9185. height: math.unit(100000, "kilometers")
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9191. {
  9192. front: {
  9193. height: math.unit(2 + 7 / 12, "feet"),
  9194. weight: math.unit(32, "lbs"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/rivet/front.svg",
  9198. extra: 1716 / 1658,
  9199. bottom: 0.03
  9200. }
  9201. },
  9202. foot: {
  9203. height: math.unit(0.551, "feet"),
  9204. name: "Rivet's Foot",
  9205. image: {
  9206. source: "./media/characters/rivet/foot.svg"
  9207. },
  9208. rename: true
  9209. }
  9210. },
  9211. [
  9212. {
  9213. name: "Micro",
  9214. height: math.unit(1.5, "inches"),
  9215. },
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(2 + 7 / 12, "feet"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(85, "feet")
  9224. },
  9225. {
  9226. name: "Megamacro",
  9227. height: math.unit(2.2, "km")
  9228. }
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9233. {
  9234. front: {
  9235. height: math.unit(5 + 9 / 12, "feet"),
  9236. weight: math.unit(150, "lbs"),
  9237. name: "Front",
  9238. image: {
  9239. source: "./media/characters/coffee/front.svg",
  9240. extra: 946/880,
  9241. bottom: 66/1012
  9242. }
  9243. },
  9244. foot: {
  9245. height: math.unit(1.29, "feet"),
  9246. name: "Foot",
  9247. image: {
  9248. source: "./media/characters/coffee/foot.svg"
  9249. }
  9250. },
  9251. },
  9252. [
  9253. {
  9254. name: "Micro",
  9255. height: math.unit(2, "inches"),
  9256. },
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(5 + 9 / 12, "feet"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(800, "feet")
  9265. },
  9266. {
  9267. name: "Megamacro",
  9268. height: math.unit(25, "miles")
  9269. }
  9270. ]
  9271. ))
  9272. characterMakers.push(() => makeCharacter(
  9273. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9274. {
  9275. front: {
  9276. height: math.unit(6, "feet"),
  9277. weight: math.unit(200, "lbs"),
  9278. name: "Front",
  9279. image: {
  9280. source: "./media/characters/chari-gal/front.svg",
  9281. extra: 1568 / 1385,
  9282. bottom: 0.047
  9283. }
  9284. },
  9285. gigantamax: {
  9286. height: math.unit(6 * 16, "feet"),
  9287. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9288. name: "Gigantamax",
  9289. image: {
  9290. source: "./media/characters/chari-gal/gigantamax.svg",
  9291. extra: 1124 / 888,
  9292. bottom: 0.03
  9293. }
  9294. },
  9295. },
  9296. [
  9297. {
  9298. name: "Normal",
  9299. height: math.unit(5 + 7 / 12, "feet")
  9300. },
  9301. {
  9302. name: "Macro",
  9303. height: math.unit(200, "feet"),
  9304. default: true
  9305. }
  9306. ]
  9307. ))
  9308. characterMakers.push(() => makeCharacter(
  9309. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9310. {
  9311. front: {
  9312. height: math.unit(6, "feet"),
  9313. weight: math.unit(150, "lbs"),
  9314. name: "Front",
  9315. image: {
  9316. source: "./media/characters/nova/front.svg",
  9317. extra: 5000 / 4722,
  9318. bottom: 0.02
  9319. }
  9320. }
  9321. },
  9322. [
  9323. {
  9324. name: "Micro-",
  9325. height: math.unit(0.8, "inches")
  9326. },
  9327. {
  9328. name: "Micro",
  9329. height: math.unit(2, "inches"),
  9330. default: true
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9336. {
  9337. koboldFront: {
  9338. height: math.unit(3 + 1 / 12, "feet"),
  9339. weight: math.unit(21.7, "lbs"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/argent/kobold-front.svg",
  9343. extra: 1471 / 1331,
  9344. bottom: 100.8 / 1575.5
  9345. },
  9346. form: "kobold",
  9347. default: true
  9348. },
  9349. dragonFront: {
  9350. height: math.unit(75, "inches"),
  9351. name: "Front",
  9352. image: {
  9353. source: "./media/characters/argent/dragon-front.svg",
  9354. extra: 1389/1248,
  9355. bottom: 54/1443
  9356. },
  9357. form: "dragon",
  9358. },
  9359. dragonBack: {
  9360. height: math.unit(75, "inches"),
  9361. name: "Back",
  9362. image: {
  9363. source: "./media/characters/argent/dragon-back.svg",
  9364. extra: 1399/1271,
  9365. bottom: 23/1422
  9366. },
  9367. form: "dragon",
  9368. },
  9369. dragonDressed: {
  9370. height: math.unit(75, "inches"),
  9371. name: "Dressed",
  9372. image: {
  9373. source: "./media/characters/argent/dragon-dressed.svg",
  9374. extra: 1350/1215,
  9375. bottom: 26/1376
  9376. },
  9377. form: "dragon"
  9378. },
  9379. dragonHead: {
  9380. height: math.unit(23.5, "inches"),
  9381. name: "Head",
  9382. image: {
  9383. source: "./media/characters/argent/dragon-head.svg"
  9384. },
  9385. form: "dragon",
  9386. },
  9387. },
  9388. [
  9389. {
  9390. name: "Micro",
  9391. height: math.unit(2, "inches"),
  9392. form: "kobold",
  9393. },
  9394. {
  9395. name: "Normal",
  9396. height: math.unit(3 + 1 / 12, "feet"),
  9397. form: "kobold",
  9398. default: true
  9399. },
  9400. {
  9401. name: "Macro",
  9402. height: math.unit(120, "feet"),
  9403. form: "kobold",
  9404. },
  9405. {
  9406. name: "Speck",
  9407. height: math.unit(1, "mm"),
  9408. form: "dragon",
  9409. },
  9410. {
  9411. name: "Tiny",
  9412. height: math.unit(1, "cm"),
  9413. form: "dragon",
  9414. },
  9415. {
  9416. name: "Micro",
  9417. height: math.unit(5, "cm"),
  9418. form: "dragon",
  9419. },
  9420. {
  9421. name: "Normal",
  9422. height: math.unit(75, "inches"),
  9423. form: "dragon",
  9424. default: true
  9425. },
  9426. {
  9427. name: "Extra Tall",
  9428. height: math.unit(9, "feet"),
  9429. form: "dragon",
  9430. },
  9431. {
  9432. name: "Inconvenient",
  9433. height: math.unit(5, "meters"),
  9434. form: "dragon",
  9435. },
  9436. {
  9437. name: "Macro",
  9438. height: math.unit(70, "meters"),
  9439. form: "dragon",
  9440. },
  9441. {
  9442. name: "Macro+",
  9443. height: math.unit(250, "meters"),
  9444. form: "dragon",
  9445. },
  9446. {
  9447. name: "Megamacro",
  9448. height: math.unit(20, "km"),
  9449. form: "dragon",
  9450. },
  9451. {
  9452. name: "Mountainous",
  9453. height: math.unit(100, "km"),
  9454. form: "dragon",
  9455. },
  9456. {
  9457. name: "Continental",
  9458. height: math.unit(2, "megameters"),
  9459. form: "dragon",
  9460. },
  9461. {
  9462. name: "Too Big",
  9463. height: math.unit(900, "megameters"),
  9464. form: "dragon",
  9465. },
  9466. ],
  9467. {
  9468. "kobold": {
  9469. name: "Kobold",
  9470. default: true
  9471. },
  9472. "dragon": {
  9473. name: "Dragon",
  9474. },
  9475. }
  9476. ))
  9477. characterMakers.push(() => makeCharacter(
  9478. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9479. {
  9480. lamp: {
  9481. height: math.unit(7 * 1559 / 989, "feet"),
  9482. name: "Magic Lamp",
  9483. image: {
  9484. source: "./media/characters/mira-al-cul/lamp.svg",
  9485. extra: 1617 / 1559
  9486. }
  9487. },
  9488. front: {
  9489. height: math.unit(7, "feet"),
  9490. name: "Front",
  9491. image: {
  9492. source: "./media/characters/mira-al-cul/front.svg",
  9493. extra: 1044 / 990
  9494. }
  9495. },
  9496. },
  9497. [
  9498. {
  9499. name: "Heavily Restricted",
  9500. height: math.unit(7 * 1559 / 989, "feet")
  9501. },
  9502. {
  9503. name: "Freshly Freed",
  9504. height: math.unit(50 * 1559 / 989, "feet")
  9505. },
  9506. {
  9507. name: "World Encompassing",
  9508. height: math.unit(10000 * 1559 / 989, "miles")
  9509. },
  9510. {
  9511. name: "Galactic",
  9512. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9513. },
  9514. {
  9515. name: "Palmed Universe",
  9516. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9517. default: true
  9518. },
  9519. {
  9520. name: "Multiversal Matriarch",
  9521. height: math.unit(8.87e10, "yottameters")
  9522. },
  9523. {
  9524. name: "Void Mother",
  9525. height: math.unit(3.14e110, "yottaparsecs")
  9526. },
  9527. {
  9528. name: "Toying with Transcendence",
  9529. height: math.unit(1e307, "meters")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9535. {
  9536. front: {
  9537. height: math.unit(17 + 1 / 12, "feet"),
  9538. weight: math.unit(476.2 * 5, "lbs"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/kuro-shi-uchū/front.svg",
  9542. extra: 2329 / 1835,
  9543. bottom: 0.02
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Micro",
  9550. height: math.unit(2, "inches")
  9551. },
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(12, "meters")
  9555. },
  9556. {
  9557. name: "Planetary",
  9558. height: math.unit(0.00929, "AU"),
  9559. default: true
  9560. },
  9561. {
  9562. name: "Universal",
  9563. height: math.unit(20, "gigaparsecs")
  9564. },
  9565. ]
  9566. ))
  9567. characterMakers.push(() => makeCharacter(
  9568. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9569. {
  9570. front: {
  9571. height: math.unit(5 + 2 / 12, "feet"),
  9572. weight: math.unit(120, "lbs"),
  9573. name: "Front",
  9574. image: {
  9575. source: "./media/characters/katherine/front.svg",
  9576. extra: 2075 / 1969
  9577. }
  9578. },
  9579. dress: {
  9580. height: math.unit(5 + 2 / 12, "feet"),
  9581. weight: math.unit(120, "lbs"),
  9582. name: "Dress",
  9583. image: {
  9584. source: "./media/characters/katherine/dress.svg",
  9585. extra: 2258 / 2064
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Micro",
  9592. height: math.unit(1, "inches"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Normal",
  9597. height: math.unit(5 + 2 / 12, "feet")
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(100, "meters")
  9602. },
  9603. {
  9604. name: "Megamacro",
  9605. height: math.unit(80, "miles")
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(7 + 8 / 12, "feet"),
  9614. weight: math.unit(250, "lbs"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/yevis/front.svg",
  9618. extra: 1938 / 1755
  9619. }
  9620. }
  9621. },
  9622. [
  9623. {
  9624. name: "Mortal",
  9625. height: math.unit(7 + 8 / 12, "feet")
  9626. },
  9627. {
  9628. name: "Battle",
  9629. height: math.unit(25 + 11 / 12, "feet")
  9630. },
  9631. {
  9632. name: "Wrath",
  9633. height: math.unit(1654 + 11 / 12, "feet")
  9634. },
  9635. {
  9636. name: "Planet Destroyer",
  9637. height: math.unit(12000, "miles")
  9638. },
  9639. {
  9640. name: "Galaxy Conqueror",
  9641. height: math.unit(1.45, "zettameters"),
  9642. default: true
  9643. },
  9644. {
  9645. name: "Universal War",
  9646. height: math.unit(184, "gigaparsecs")
  9647. },
  9648. {
  9649. name: "Eternity War",
  9650. height: math.unit(1.98e55, "yottaparsecs")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(5 + 8 / 12, "feet"),
  9659. weight: math.unit(63, "kg"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/xavier/front.svg",
  9663. extra: 944 / 883
  9664. }
  9665. },
  9666. frontStretch: {
  9667. height: math.unit(5 + 8 / 12, "feet"),
  9668. weight: math.unit(63, "kg"),
  9669. name: "Stretching",
  9670. image: {
  9671. source: "./media/characters/xavier/front-stretch.svg",
  9672. extra: 962 / 820
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Normal",
  9679. height: math.unit(5 + 8 / 12, "feet")
  9680. },
  9681. {
  9682. name: "Macro",
  9683. height: math.unit(100, "meters"),
  9684. default: true
  9685. },
  9686. {
  9687. name: "McLargeHuge",
  9688. height: math.unit(10, "miles")
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9694. {
  9695. front: {
  9696. height: math.unit(5 + 5 / 12, "feet"),
  9697. weight: math.unit(150, "lb"),
  9698. name: "Front",
  9699. image: {
  9700. source: "./media/characters/joshii/front.svg",
  9701. extra: 765 / 653,
  9702. bottom: 51 / 816
  9703. }
  9704. },
  9705. foot: {
  9706. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9707. name: "Foot",
  9708. image: {
  9709. source: "./media/characters/joshii/foot.svg"
  9710. }
  9711. },
  9712. },
  9713. [
  9714. {
  9715. name: "Micro",
  9716. height: math.unit(2, "inches")
  9717. },
  9718. {
  9719. name: "Normal",
  9720. height: math.unit(5 + 5 / 12, "feet")
  9721. },
  9722. {
  9723. name: "Macro",
  9724. height: math.unit(785, "feet"),
  9725. default: true
  9726. },
  9727. {
  9728. name: "Megamacro",
  9729. height: math.unit(24.5, "miles")
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9735. {
  9736. front: {
  9737. height: math.unit(6, "feet"),
  9738. weight: math.unit(150, "lb"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/goddess-elizabeth/front.svg",
  9742. extra: 1800 / 1525,
  9743. bottom: 0.005
  9744. }
  9745. },
  9746. foot: {
  9747. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9748. name: "Foot",
  9749. image: {
  9750. source: "./media/characters/goddess-elizabeth/foot.svg"
  9751. }
  9752. },
  9753. mouth: {
  9754. height: math.unit(6, "feet"),
  9755. name: "Mouth",
  9756. image: {
  9757. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(12, "feet")
  9765. },
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(80, "miles"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(15000, "parsecs")
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(5 + 9 / 12, "feet"),
  9782. weight: math.unit(144, "lb"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/kara/front.svg"
  9786. }
  9787. },
  9788. feet: {
  9789. height: math.unit(6 / 6.765, "feet"),
  9790. name: "Kara's Feet",
  9791. rename: true,
  9792. image: {
  9793. source: "./media/characters/kara/feet.svg"
  9794. }
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Normal",
  9800. height: math.unit(5 + 9 / 12, "feet")
  9801. },
  9802. {
  9803. name: "Macro",
  9804. height: math.unit(174, "feet"),
  9805. default: true
  9806. },
  9807. ]
  9808. ))
  9809. characterMakers.push(() => makeCharacter(
  9810. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9811. {
  9812. front: {
  9813. height: math.unit(18, "feet"),
  9814. weight: math.unit(4050, "lb"),
  9815. name: "Front",
  9816. image: {
  9817. source: "./media/characters/tyrone/front.svg",
  9818. extra: 2405 / 2270,
  9819. bottom: 182 / 2587
  9820. }
  9821. },
  9822. },
  9823. [
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(18, "feet"),
  9827. default: true
  9828. },
  9829. {
  9830. name: "Macro",
  9831. height: math.unit(300, "feet")
  9832. },
  9833. {
  9834. name: "Megamacro",
  9835. height: math.unit(15, "km")
  9836. },
  9837. {
  9838. name: "Gigamacro",
  9839. height: math.unit(500, "km")
  9840. },
  9841. {
  9842. name: "Teramacro",
  9843. height: math.unit(0.5, "gigameters")
  9844. },
  9845. {
  9846. name: "Omnimacro",
  9847. height: math.unit(1e252, "yottauniverse")
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9853. {
  9854. front: {
  9855. height: math.unit(7 + 8 / 12, "feet"),
  9856. weight: math.unit(120, "lb"),
  9857. name: "Front",
  9858. image: {
  9859. source: "./media/characters/danny/front.svg",
  9860. extra: 1490 / 1350
  9861. }
  9862. },
  9863. back: {
  9864. height: math.unit(7 + 8 / 12, "feet"),
  9865. weight: math.unit(120, "lb"),
  9866. name: "Back",
  9867. image: {
  9868. source: "./media/characters/danny/back.svg",
  9869. extra: 1490 / 1350
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Normal",
  9876. height: math.unit(7 + 8 / 12, "feet"),
  9877. default: true
  9878. },
  9879. ]
  9880. ))
  9881. characterMakers.push(() => makeCharacter(
  9882. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9883. {
  9884. front: {
  9885. height: math.unit(3.5, "inches"),
  9886. weight: math.unit(19, "grams"),
  9887. name: "Front",
  9888. image: {
  9889. source: "./media/characters/mallow/front.svg",
  9890. extra: 471 / 431
  9891. }
  9892. },
  9893. back: {
  9894. height: math.unit(3.5, "inches"),
  9895. weight: math.unit(19, "grams"),
  9896. name: "Back",
  9897. image: {
  9898. source: "./media/characters/mallow/back.svg",
  9899. extra: 471 / 431
  9900. }
  9901. },
  9902. },
  9903. [
  9904. {
  9905. name: "Normal",
  9906. height: math.unit(3.5, "inches"),
  9907. default: true
  9908. },
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9913. {
  9914. front: {
  9915. height: math.unit(9, "feet"),
  9916. weight: math.unit(230, "kg"),
  9917. name: "Front",
  9918. image: {
  9919. source: "./media/characters/starry-aqua/front.svg"
  9920. }
  9921. },
  9922. back: {
  9923. height: math.unit(9, "feet"),
  9924. weight: math.unit(230, "kg"),
  9925. name: "Back",
  9926. image: {
  9927. source: "./media/characters/starry-aqua/back.svg"
  9928. }
  9929. },
  9930. hand: {
  9931. height: math.unit(9 * 0.1168, "feet"),
  9932. name: "Hand",
  9933. image: {
  9934. source: "./media/characters/starry-aqua/hand.svg"
  9935. }
  9936. },
  9937. foot: {
  9938. height: math.unit(9 * 0.18, "feet"),
  9939. name: "Foot",
  9940. image: {
  9941. source: "./media/characters/starry-aqua/foot.svg"
  9942. }
  9943. }
  9944. },
  9945. [
  9946. {
  9947. name: "Micro",
  9948. height: math.unit(3, "inches")
  9949. },
  9950. {
  9951. name: "Normal",
  9952. height: math.unit(9, "feet")
  9953. },
  9954. {
  9955. name: "Macro",
  9956. height: math.unit(300, "feet"),
  9957. default: true
  9958. },
  9959. {
  9960. name: "Megamacro",
  9961. height: math.unit(3200, "feet")
  9962. }
  9963. ]
  9964. ))
  9965. characterMakers.push(() => makeCharacter(
  9966. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9967. {
  9968. front: {
  9969. height: math.unit(15, "feet"),
  9970. weight: math.unit(5026, "lb"),
  9971. name: "Front",
  9972. image: {
  9973. source: "./media/characters/luka-towers/front.svg",
  9974. extra: 1269/1133,
  9975. bottom: 51/1320
  9976. }
  9977. },
  9978. },
  9979. [
  9980. {
  9981. name: "Normal",
  9982. height: math.unit(15, "feet"),
  9983. default: true
  9984. },
  9985. {
  9986. name: "Minimacro",
  9987. height: math.unit(25, "feet")
  9988. },
  9989. {
  9990. name: "Macro",
  9991. height: math.unit(320, "feet")
  9992. },
  9993. {
  9994. name: "Megamacro",
  9995. height: math.unit(35000, "feet")
  9996. },
  9997. {
  9998. name: "Gigamacro",
  9999. height: math.unit(4000, "miles")
  10000. },
  10001. {
  10002. name: "Teramacro",
  10003. height: math.unit(15000, "miles")
  10004. },
  10005. ]
  10006. ))
  10007. characterMakers.push(() => makeCharacter(
  10008. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10009. {
  10010. front: {
  10011. height: math.unit(6, "feet"),
  10012. weight: math.unit(150, "lb"),
  10013. name: "Front",
  10014. image: {
  10015. source: "./media/characters/natalie-nightring/front.svg",
  10016. extra: 1,
  10017. bottom: 0.06
  10018. }
  10019. },
  10020. },
  10021. [
  10022. {
  10023. name: "Uh Oh",
  10024. height: math.unit(0.1, "mm")
  10025. },
  10026. {
  10027. name: "Small",
  10028. height: math.unit(3, "inches")
  10029. },
  10030. {
  10031. name: "Human Scale",
  10032. height: math.unit(6, "feet")
  10033. },
  10034. {
  10035. name: "Librarian",
  10036. height: math.unit(50, "feet"),
  10037. default: true
  10038. },
  10039. {
  10040. name: "Immense",
  10041. height: math.unit(200, "miles")
  10042. },
  10043. ]
  10044. ))
  10045. characterMakers.push(() => makeCharacter(
  10046. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10047. {
  10048. front: {
  10049. height: math.unit(6, "feet"),
  10050. weight: math.unit(180, "lbs"),
  10051. name: "Front",
  10052. image: {
  10053. source: "./media/characters/danni-rosie/front.svg",
  10054. extra: 1260 / 1128,
  10055. bottom: 0.022
  10056. }
  10057. },
  10058. },
  10059. [
  10060. {
  10061. name: "Micro",
  10062. height: math.unit(2, "inches"),
  10063. default: true
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10069. {
  10070. front: {
  10071. height: math.unit(5 + 9 / 12, "feet"),
  10072. weight: math.unit(220, "lb"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/samantha-kruse/front.svg",
  10076. extra: (985 / 935),
  10077. bottom: 0.03
  10078. }
  10079. },
  10080. frontUndressed: {
  10081. height: math.unit(5 + 9 / 12, "feet"),
  10082. weight: math.unit(220, "lb"),
  10083. name: "Front (Undressed)",
  10084. image: {
  10085. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10086. extra: (973 / 923),
  10087. bottom: 0.025
  10088. }
  10089. },
  10090. fat: {
  10091. height: math.unit(5 + 9 / 12, "feet"),
  10092. weight: math.unit(900, "lb"),
  10093. name: "Front (Fat)",
  10094. image: {
  10095. source: "./media/characters/samantha-kruse/fat.svg",
  10096. extra: 2688 / 2561
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Normal",
  10103. height: math.unit(5 + 9 / 12, "feet"),
  10104. default: true
  10105. }
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10110. {
  10111. back: {
  10112. height: math.unit(5 + 4 / 12, "feet"),
  10113. weight: math.unit(4963, "lb"),
  10114. name: "Back",
  10115. image: {
  10116. source: "./media/characters/amelia-rosie/back.svg",
  10117. extra: 1113 / 963,
  10118. bottom: 0.01
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Level 0",
  10125. height: math.unit(5 + 4 / 12, "feet")
  10126. },
  10127. {
  10128. name: "Level 1",
  10129. height: math.unit(164597, "feet"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Level 2",
  10134. height: math.unit(956243, "miles")
  10135. },
  10136. {
  10137. name: "Level 3",
  10138. height: math.unit(29421709423, "miles")
  10139. },
  10140. {
  10141. name: "Level 4",
  10142. height: math.unit(154, "lightyears")
  10143. },
  10144. {
  10145. name: "Level 5",
  10146. height: math.unit(4738272, "lightyears")
  10147. },
  10148. {
  10149. name: "Level 6",
  10150. height: math.unit(145787152896, "lightyears")
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(5 + 11 / 12, "feet"),
  10159. weight: math.unit(65, "kg"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/rook-kitara/front.svg",
  10163. extra: 1347 / 1274,
  10164. bottom: 0.005
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Totally Unfair",
  10171. height: math.unit(1.8, "mm")
  10172. },
  10173. {
  10174. name: "Lap Rookie",
  10175. height: math.unit(1.4, "feet")
  10176. },
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(5 + 11 / 12, "feet"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "How Did This Happen",
  10184. height: math.unit(80, "miles")
  10185. }
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(7, "feet"),
  10193. weight: math.unit(300, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/pisces/front.svg",
  10197. extra: 2255 / 2115,
  10198. bottom: 0.03
  10199. }
  10200. },
  10201. back: {
  10202. height: math.unit(7, "feet"),
  10203. weight: math.unit(300, "lb"),
  10204. name: "Back",
  10205. image: {
  10206. source: "./media/characters/pisces/back.svg",
  10207. extra: 2146 / 2055,
  10208. bottom: 0.04
  10209. }
  10210. },
  10211. },
  10212. [
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(7, "feet"),
  10216. default: true
  10217. },
  10218. {
  10219. name: "Swimming Pool",
  10220. height: math.unit(12.2, "meters")
  10221. },
  10222. {
  10223. name: "Olympic Swimming Pool",
  10224. height: math.unit(56.3, "meters")
  10225. },
  10226. {
  10227. name: "Lake Superior",
  10228. height: math.unit(93900, "meters")
  10229. },
  10230. {
  10231. name: "Mediterranean Sea",
  10232. height: math.unit(644457, "meters")
  10233. },
  10234. {
  10235. name: "World's Oceans",
  10236. height: math.unit(4567491, "meters")
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10242. {
  10243. front: {
  10244. height: math.unit(2.3, "meters"),
  10245. weight: math.unit(120, "kg"),
  10246. name: "Front",
  10247. image: {
  10248. source: "./media/characters/zelas/front.svg"
  10249. }
  10250. },
  10251. side: {
  10252. height: math.unit(2.3, "meters"),
  10253. weight: math.unit(120, "kg"),
  10254. name: "Side",
  10255. image: {
  10256. source: "./media/characters/zelas/side.svg"
  10257. }
  10258. },
  10259. back: {
  10260. height: math.unit(2.3, "meters"),
  10261. weight: math.unit(120, "kg"),
  10262. name: "Back",
  10263. image: {
  10264. source: "./media/characters/zelas/back.svg"
  10265. }
  10266. },
  10267. foot: {
  10268. height: math.unit(1.116, "feet"),
  10269. name: "Foot",
  10270. image: {
  10271. source: "./media/characters/zelas/foot.svg"
  10272. }
  10273. },
  10274. },
  10275. [
  10276. {
  10277. name: "Normal",
  10278. height: math.unit(2.3, "meters")
  10279. },
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(30, "meters"),
  10283. default: true
  10284. },
  10285. ]
  10286. ))
  10287. characterMakers.push(() => makeCharacter(
  10288. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10289. {
  10290. front: {
  10291. height: math.unit(1, "inch"),
  10292. weight: math.unit(0.21, "grams"),
  10293. name: "Front",
  10294. image: {
  10295. source: "./media/characters/talbot/front.svg",
  10296. extra: 594 / 544
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Micro",
  10303. height: math.unit(1, "inch"),
  10304. default: true
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10310. {
  10311. front: {
  10312. height: math.unit(3 + 3 / 12, "feet"),
  10313. weight: math.unit(51.8, "lb"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/fliss/front.svg",
  10317. extra: 840 / 640
  10318. }
  10319. },
  10320. },
  10321. [
  10322. {
  10323. name: "Teeny Tiny",
  10324. height: math.unit(1, "mm")
  10325. },
  10326. {
  10327. name: "Small",
  10328. height: math.unit(1, "inch"),
  10329. default: true
  10330. },
  10331. {
  10332. name: "Standard Sylveon",
  10333. height: math.unit(3 + 3 / 12, "feet")
  10334. },
  10335. {
  10336. name: "Large Nuisance",
  10337. height: math.unit(33, "feet")
  10338. },
  10339. {
  10340. name: "City Filler",
  10341. height: math.unit(3000, "feet")
  10342. },
  10343. {
  10344. name: "New Horizon",
  10345. height: math.unit(6000, "miles")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(5, "cm"),
  10354. weight: math.unit(1.94, "g"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/fleta/front.svg",
  10358. extra: 835 / 803
  10359. }
  10360. },
  10361. back: {
  10362. height: math.unit(5, "cm"),
  10363. weight: math.unit(1.94, "g"),
  10364. name: "Back",
  10365. image: {
  10366. source: "./media/characters/fleta/back.svg",
  10367. extra: 835 / 803
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Micro",
  10374. height: math.unit(5, "cm"),
  10375. default: true
  10376. },
  10377. ]
  10378. ))
  10379. characterMakers.push(() => makeCharacter(
  10380. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10381. {
  10382. front: {
  10383. height: math.unit(6, "feet"),
  10384. weight: math.unit(225, "lb"),
  10385. name: "Front",
  10386. image: {
  10387. source: "./media/characters/dominic/front.svg",
  10388. extra: 1770 / 1620,
  10389. bottom: 0.025
  10390. }
  10391. },
  10392. back: {
  10393. height: math.unit(6, "feet"),
  10394. weight: math.unit(225, "lb"),
  10395. name: "Back",
  10396. image: {
  10397. source: "./media/characters/dominic/back.svg",
  10398. extra: 1745 / 1620,
  10399. bottom: 0.065
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Nano",
  10406. height: math.unit(0.1, "mm")
  10407. },
  10408. {
  10409. name: "Micro-",
  10410. height: math.unit(1, "mm")
  10411. },
  10412. {
  10413. name: "Micro",
  10414. height: math.unit(4, "inches")
  10415. },
  10416. {
  10417. name: "Normal",
  10418. height: math.unit(6 + 4 / 12, "feet"),
  10419. default: true
  10420. },
  10421. {
  10422. name: "Macro",
  10423. height: math.unit(115, "feet")
  10424. },
  10425. {
  10426. name: "Macro+",
  10427. height: math.unit(955, "feet")
  10428. },
  10429. {
  10430. name: "Megamacro",
  10431. height: math.unit(8990, "feet")
  10432. },
  10433. {
  10434. name: "Gigmacro",
  10435. height: math.unit(9310, "miles")
  10436. },
  10437. {
  10438. name: "Teramacro",
  10439. height: math.unit(1567005010, "miles")
  10440. },
  10441. {
  10442. name: "Examacro",
  10443. height: math.unit(1425, "parsecs")
  10444. },
  10445. ]
  10446. ))
  10447. characterMakers.push(() => makeCharacter(
  10448. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10449. {
  10450. front: {
  10451. height: math.unit(400, "feet"),
  10452. weight: math.unit(44444444, "lb"),
  10453. name: "Front",
  10454. image: {
  10455. source: "./media/characters/major-colonel/front.svg"
  10456. }
  10457. },
  10458. back: {
  10459. height: math.unit(400, "feet"),
  10460. weight: math.unit(44444444, "lb"),
  10461. name: "Back",
  10462. image: {
  10463. source: "./media/characters/major-colonel/back.svg"
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Macro",
  10470. height: math.unit(400, "feet"),
  10471. default: true
  10472. },
  10473. ]
  10474. ))
  10475. characterMakers.push(() => makeCharacter(
  10476. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10477. {
  10478. catFront: {
  10479. height: math.unit(6, "feet"),
  10480. weight: math.unit(120, "lb"),
  10481. name: "Front (Cat Side)",
  10482. image: {
  10483. source: "./media/characters/axel-lycan/cat-front.svg",
  10484. extra: 430 / 402,
  10485. bottom: 43 / 472.35
  10486. }
  10487. },
  10488. catBack: {
  10489. height: math.unit(6, "feet"),
  10490. weight: math.unit(120, "lb"),
  10491. name: "Back (Cat Side)",
  10492. image: {
  10493. source: "./media/characters/axel-lycan/cat-back.svg",
  10494. extra: 447 / 419,
  10495. bottom: 23.3 / 469
  10496. }
  10497. },
  10498. wolfFront: {
  10499. height: math.unit(6, "feet"),
  10500. weight: math.unit(120, "lb"),
  10501. name: "Front (Wolf Side)",
  10502. image: {
  10503. source: "./media/characters/axel-lycan/wolf-front.svg",
  10504. extra: 485 / 456,
  10505. bottom: 19 / 504
  10506. }
  10507. },
  10508. wolfBack: {
  10509. height: math.unit(6, "feet"),
  10510. weight: math.unit(120, "lb"),
  10511. name: "Back (Wolf Side)",
  10512. image: {
  10513. source: "./media/characters/axel-lycan/wolf-back.svg",
  10514. extra: 475 / 438,
  10515. bottom: 39.2 / 514
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Macro",
  10522. height: math.unit(1, "km"),
  10523. default: true
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10529. {
  10530. front: {
  10531. height: math.unit(5 + 9 / 12, "feet"),
  10532. weight: math.unit(175, "lb"),
  10533. name: "Front",
  10534. image: {
  10535. source: "./media/characters/vanrel-hyena/front.svg",
  10536. extra: 1086 / 1010,
  10537. bottom: 0.04
  10538. }
  10539. },
  10540. },
  10541. [
  10542. {
  10543. name: "Normal",
  10544. height: math.unit(5 + 9 / 12, "feet"),
  10545. default: true
  10546. },
  10547. ]
  10548. ))
  10549. characterMakers.push(() => makeCharacter(
  10550. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10551. {
  10552. front: {
  10553. height: math.unit(6, "feet"),
  10554. weight: math.unit(103, "lb"),
  10555. name: "Front",
  10556. image: {
  10557. source: "./media/characters/abbott-absol/front.svg",
  10558. extra: 2010 / 1842
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Megamicro",
  10565. height: math.unit(0.1, "mm")
  10566. },
  10567. {
  10568. name: "Micro",
  10569. height: math.unit(1, "inch")
  10570. },
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(6, "feet"),
  10574. default: true
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10580. {
  10581. front: {
  10582. height: math.unit(6, "feet"),
  10583. weight: math.unit(264, "lb"),
  10584. name: "Front",
  10585. image: {
  10586. source: "./media/characters/hector/front.svg",
  10587. extra: 2280 / 2130,
  10588. bottom: 0.07
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(12.25, "foot"),
  10596. default: true
  10597. },
  10598. {
  10599. name: "Macro",
  10600. height: math.unit(160, "feet")
  10601. },
  10602. ]
  10603. ))
  10604. characterMakers.push(() => makeCharacter(
  10605. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10606. {
  10607. front: {
  10608. height: math.unit(6, "feet"),
  10609. weight: math.unit(150, "lb"),
  10610. name: "Front",
  10611. image: {
  10612. source: "./media/characters/sal/front.svg",
  10613. extra: 1846 / 1699,
  10614. bottom: 0.04
  10615. }
  10616. },
  10617. },
  10618. [
  10619. {
  10620. name: "Megamacro",
  10621. height: math.unit(10, "miles"),
  10622. default: true
  10623. },
  10624. ]
  10625. ))
  10626. characterMakers.push(() => makeCharacter(
  10627. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10628. {
  10629. front: {
  10630. height: math.unit(3, "meters"),
  10631. weight: math.unit(450, "kg"),
  10632. name: "front",
  10633. image: {
  10634. source: "./media/characters/ranger/front.svg",
  10635. extra: 2401 / 2243,
  10636. bottom: 0.05
  10637. }
  10638. },
  10639. },
  10640. [
  10641. {
  10642. name: "Normal",
  10643. height: math.unit(3, "meters"),
  10644. default: true
  10645. },
  10646. ]
  10647. ))
  10648. characterMakers.push(() => makeCharacter(
  10649. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10650. {
  10651. front: {
  10652. height: math.unit(14, "feet"),
  10653. weight: math.unit(800, "kg"),
  10654. name: "Front",
  10655. image: {
  10656. source: "./media/characters/theresa/front.svg",
  10657. extra: 3575 / 3346,
  10658. bottom: 0.03
  10659. }
  10660. },
  10661. },
  10662. [
  10663. {
  10664. name: "Normal",
  10665. height: math.unit(14, "feet"),
  10666. default: true
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10672. {
  10673. front: {
  10674. height: math.unit(6, "feet"),
  10675. weight: math.unit(3, "kg"),
  10676. name: "Front",
  10677. image: {
  10678. source: "./media/characters/ine/front.svg",
  10679. extra: 678 / 539,
  10680. bottom: 0.023
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Normal",
  10687. height: math.unit(2.265, "feet"),
  10688. default: true
  10689. },
  10690. ]
  10691. ))
  10692. characterMakers.push(() => makeCharacter(
  10693. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10694. {
  10695. front: {
  10696. height: math.unit(5, "feet"),
  10697. weight: math.unit(30, "kg"),
  10698. name: "Front",
  10699. image: {
  10700. source: "./media/characters/vial/front.svg",
  10701. extra: 1365 / 1277,
  10702. bottom: 0.04
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(5, "feet"),
  10710. default: true
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10716. {
  10717. side: {
  10718. height: math.unit(3.4, "meters"),
  10719. weight: math.unit(1000, "lb"),
  10720. name: "Side",
  10721. image: {
  10722. source: "./media/characters/rovoska/side.svg",
  10723. extra: 4403 / 1515
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(3.4, "meters"),
  10731. default: true
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(8, "feet"),
  10740. weight: math.unit(315, "lb"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/gunner-rotthbauer/front.svg"
  10744. }
  10745. },
  10746. back: {
  10747. height: math.unit(8, "feet"),
  10748. weight: math.unit(315, "lb"),
  10749. name: "Back",
  10750. image: {
  10751. source: "./media/characters/gunner-rotthbauer/back.svg"
  10752. }
  10753. },
  10754. },
  10755. [
  10756. {
  10757. name: "Micro",
  10758. height: math.unit(3.5, "inches")
  10759. },
  10760. {
  10761. name: "Normal",
  10762. height: math.unit(8, "feet"),
  10763. default: true
  10764. },
  10765. {
  10766. name: "Macro",
  10767. height: math.unit(250, "feet")
  10768. },
  10769. {
  10770. name: "Megamacro",
  10771. height: math.unit(1, "AU")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(5 + 5 / 12, "feet"),
  10780. weight: math.unit(140, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/allatia/front.svg",
  10784. extra: 1227 / 1180,
  10785. bottom: 0.027
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(5 + 5 / 12, "feet")
  10793. },
  10794. {
  10795. name: "Macro",
  10796. height: math.unit(250, "feet"),
  10797. default: true
  10798. },
  10799. {
  10800. name: "Megamacro",
  10801. height: math.unit(8, "miles")
  10802. }
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10807. {
  10808. front: {
  10809. height: math.unit(6, "feet"),
  10810. weight: math.unit(120, "lb"),
  10811. name: "Front",
  10812. image: {
  10813. source: "./media/characters/tene/front.svg",
  10814. extra: 814/750,
  10815. bottom: 36/850
  10816. }
  10817. },
  10818. stomping: {
  10819. height: math.unit(2.025, "meters"),
  10820. weight: math.unit(120, "lb"),
  10821. name: "Stomping",
  10822. image: {
  10823. source: "./media/characters/tene/stomping.svg",
  10824. extra: 885/821,
  10825. bottom: 15/900
  10826. }
  10827. },
  10828. sitting: {
  10829. height: math.unit(1, "meter"),
  10830. weight: math.unit(120, "lb"),
  10831. name: "Sitting",
  10832. image: {
  10833. source: "./media/characters/tene/sitting.svg",
  10834. extra: 396/366,
  10835. bottom: 79/475
  10836. }
  10837. },
  10838. smiling: {
  10839. height: math.unit(1.2, "feet"),
  10840. name: "Smiling",
  10841. image: {
  10842. source: "./media/characters/tene/smiling.svg",
  10843. extra: 1364/1071,
  10844. bottom: 0/1364
  10845. }
  10846. },
  10847. smug: {
  10848. height: math.unit(1.3, "feet"),
  10849. name: "Smug",
  10850. image: {
  10851. source: "./media/characters/tene/smug.svg",
  10852. extra: 1323/1082,
  10853. bottom: 0/1323
  10854. }
  10855. },
  10856. feral: {
  10857. height: math.unit(3.9, "feet"),
  10858. weight: math.unit(250, "lb"),
  10859. name: "Feral",
  10860. image: {
  10861. source: "./media/characters/tene/feral.svg",
  10862. extra: 717 / 458,
  10863. bottom: 0.179
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Normal",
  10870. height: math.unit(6, "feet")
  10871. },
  10872. {
  10873. name: "Macro",
  10874. height: math.unit(300, "feet"),
  10875. default: true
  10876. },
  10877. {
  10878. name: "Megamacro",
  10879. height: math.unit(5, "miles")
  10880. },
  10881. ]
  10882. ))
  10883. characterMakers.push(() => makeCharacter(
  10884. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10885. {
  10886. side: {
  10887. height: math.unit(6, "feet"),
  10888. name: "Side",
  10889. image: {
  10890. source: "./media/characters/evander/side.svg",
  10891. extra: 877 / 477
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(0.83, "meters"),
  10899. default: true
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(12, "feet"),
  10908. weight: math.unit(1000, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10912. extra: 1762 / 1611
  10913. }
  10914. },
  10915. back: {
  10916. height: math.unit(12, "feet"),
  10917. weight: math.unit(1000, "lb"),
  10918. name: "Back",
  10919. image: {
  10920. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10921. extra: 1762 / 1611
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Normal",
  10928. height: math.unit(12, "feet"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Kaiju",
  10933. height: math.unit(150, "feet")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/zero-alurus/front.svg"
  10946. }
  10947. },
  10948. back: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Back",
  10952. image: {
  10953. source: "./media/characters/zero-alurus/back.svg"
  10954. }
  10955. },
  10956. },
  10957. [
  10958. {
  10959. name: "Normal",
  10960. height: math.unit(5 + 10 / 12, "feet")
  10961. },
  10962. {
  10963. name: "Macro",
  10964. height: math.unit(60, "feet"),
  10965. default: true
  10966. },
  10967. {
  10968. name: "Macro+",
  10969. height: math.unit(450, "feet")
  10970. },
  10971. ]
  10972. ))
  10973. characterMakers.push(() => makeCharacter(
  10974. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10975. {
  10976. front: {
  10977. height: math.unit(6, "feet"),
  10978. weight: math.unit(200, "lb"),
  10979. name: "Front",
  10980. image: {
  10981. source: "./media/characters/mega-shi/front.svg",
  10982. extra: 1279 / 1250,
  10983. bottom: 0.02
  10984. }
  10985. },
  10986. back: {
  10987. height: math.unit(6, "feet"),
  10988. weight: math.unit(200, "lb"),
  10989. name: "Back",
  10990. image: {
  10991. source: "./media/characters/mega-shi/back.svg",
  10992. extra: 1279 / 1250,
  10993. bottom: 0.02
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Micro",
  11000. height: math.unit(16 + 6 / 12, "feet")
  11001. },
  11002. {
  11003. name: "Third Dimension",
  11004. height: math.unit(40, "meters")
  11005. },
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(660, "feet"),
  11009. default: true
  11010. },
  11011. {
  11012. name: "Megamacro",
  11013. height: math.unit(10, "miles")
  11014. },
  11015. {
  11016. name: "Planetary Launch",
  11017. height: math.unit(500, "miles")
  11018. },
  11019. {
  11020. name: "Interstellar",
  11021. height: math.unit(1e9, "miles")
  11022. },
  11023. {
  11024. name: "Leaving the Universe",
  11025. height: math.unit(1, "gigaparsec")
  11026. },
  11027. {
  11028. name: "Travelling Universes",
  11029. height: math.unit(30e15, "parsecs")
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11035. {
  11036. front: {
  11037. height: math.unit(5 + 4/12, "feet"),
  11038. weight: math.unit(120, "lb"),
  11039. name: "Front",
  11040. image: {
  11041. source: "./media/characters/odyssey/front.svg",
  11042. extra: 1747/1571,
  11043. bottom: 47/1794
  11044. }
  11045. },
  11046. side: {
  11047. height: math.unit(5.1, "feet"),
  11048. weight: math.unit(120, "lb"),
  11049. name: "Side",
  11050. image: {
  11051. source: "./media/characters/odyssey/side.svg",
  11052. extra: 1847/1619,
  11053. bottom: 47/1894
  11054. }
  11055. },
  11056. lounging: {
  11057. height: math.unit(1.464, "feet"),
  11058. weight: math.unit(120, "lb"),
  11059. name: "Lounging",
  11060. image: {
  11061. source: "./media/characters/odyssey/lounging.svg",
  11062. extra: 1235/837,
  11063. bottom: 551/1786
  11064. }
  11065. },
  11066. },
  11067. [
  11068. {
  11069. name: "Normal",
  11070. height: math.unit(5 + 4 / 12, "feet")
  11071. },
  11072. {
  11073. name: "Macro",
  11074. height: math.unit(1, "km")
  11075. },
  11076. {
  11077. name: "Megamacro",
  11078. height: math.unit(3000, "km")
  11079. },
  11080. {
  11081. name: "Gigamacro",
  11082. height: math.unit(1, "AU"),
  11083. default: true
  11084. },
  11085. {
  11086. name: "Omniversal",
  11087. height: math.unit(100e14, "lightyears")
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11093. {
  11094. front: {
  11095. height: math.unit(6, "feet"),
  11096. weight: math.unit(300, "lb"),
  11097. name: "Front",
  11098. image: {
  11099. source: "./media/characters/mekuto/front.svg",
  11100. extra: 921 / 832,
  11101. bottom: 0.03
  11102. }
  11103. },
  11104. hand: {
  11105. height: math.unit(6 / 10.24, "feet"),
  11106. name: "Hand",
  11107. image: {
  11108. source: "./media/characters/mekuto/hand.svg"
  11109. }
  11110. },
  11111. foot: {
  11112. height: math.unit(6 / 5.05, "feet"),
  11113. name: "Foot",
  11114. image: {
  11115. source: "./media/characters/mekuto/foot.svg"
  11116. }
  11117. },
  11118. },
  11119. [
  11120. {
  11121. name: "Minimicro",
  11122. height: math.unit(0.2, "inches")
  11123. },
  11124. {
  11125. name: "Micro",
  11126. height: math.unit(1.5, "inches")
  11127. },
  11128. {
  11129. name: "Normal",
  11130. height: math.unit(5 + 11 / 12, "feet"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Minimacro",
  11135. height: math.unit(17 + 9 / 12, "feet")
  11136. },
  11137. {
  11138. name: "Macro",
  11139. height: math.unit(177.5, "feet")
  11140. },
  11141. {
  11142. name: "Megamacro",
  11143. height: math.unit(152, "miles")
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11149. {
  11150. front: {
  11151. height: math.unit(6.5, "inches"),
  11152. weight: math.unit(13, "oz"),
  11153. name: "Front",
  11154. image: {
  11155. source: "./media/characters/dafydd-tomos/front.svg",
  11156. extra: 2990 / 2603,
  11157. bottom: 0.03
  11158. }
  11159. },
  11160. },
  11161. [
  11162. {
  11163. name: "Micro",
  11164. height: math.unit(6.5, "inches"),
  11165. default: true
  11166. },
  11167. ]
  11168. ))
  11169. characterMakers.push(() => makeCharacter(
  11170. { name: "Splinter", species: ["thylacine"], 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/splinter/front.svg",
  11178. extra: 2990 / 2882,
  11179. bottom: 0.04
  11180. }
  11181. },
  11182. back: {
  11183. height: math.unit(6, "feet"),
  11184. weight: math.unit(150, "lb"),
  11185. name: "Back",
  11186. image: {
  11187. source: "./media/characters/splinter/back.svg",
  11188. extra: 2990 / 2882,
  11189. bottom: 0.04
  11190. }
  11191. },
  11192. },
  11193. [
  11194. {
  11195. name: "Normal",
  11196. height: math.unit(6, "feet")
  11197. },
  11198. {
  11199. name: "Macro",
  11200. height: math.unit(230, "meters"),
  11201. default: true
  11202. },
  11203. ]
  11204. ))
  11205. characterMakers.push(() => makeCharacter(
  11206. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11207. {
  11208. front: {
  11209. height: math.unit(4 + 10 / 12, "feet"),
  11210. weight: math.unit(480, "lb"),
  11211. name: "Front",
  11212. image: {
  11213. source: "./media/characters/snow-gabumon/front.svg",
  11214. extra: 1140 / 963,
  11215. bottom: 0.058
  11216. }
  11217. },
  11218. back: {
  11219. height: math.unit(4 + 10 / 12, "feet"),
  11220. weight: math.unit(480, "lb"),
  11221. name: "Back",
  11222. image: {
  11223. source: "./media/characters/snow-gabumon/back.svg",
  11224. extra: 1115 / 962,
  11225. bottom: 0.041
  11226. }
  11227. },
  11228. frontUndresed: {
  11229. height: math.unit(4 + 10 / 12, "feet"),
  11230. weight: math.unit(480, "lb"),
  11231. name: "Front (Undressed)",
  11232. image: {
  11233. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11234. extra: 1061 / 960,
  11235. bottom: 0.045
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Micro",
  11242. height: math.unit(1, "inch")
  11243. },
  11244. {
  11245. name: "Normal",
  11246. height: math.unit(4 + 10 / 12, "feet"),
  11247. default: true
  11248. },
  11249. {
  11250. name: "Macro",
  11251. height: math.unit(200, "feet")
  11252. },
  11253. {
  11254. name: "Megamacro",
  11255. height: math.unit(120, "miles")
  11256. },
  11257. {
  11258. name: "Gigamacro",
  11259. height: math.unit(9800, "miles")
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11265. {
  11266. front: {
  11267. height: math.unit(1.7, "meters"),
  11268. weight: math.unit(140, "lb"),
  11269. name: "Front",
  11270. image: {
  11271. source: "./media/characters/moody/front.svg",
  11272. extra: 3226 / 3007,
  11273. bottom: 0.087
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Micro",
  11280. height: math.unit(1, "mm")
  11281. },
  11282. {
  11283. name: "Normal",
  11284. height: math.unit(1.7, "meters"),
  11285. default: true
  11286. },
  11287. {
  11288. name: "Macro",
  11289. height: math.unit(80, "meters")
  11290. },
  11291. {
  11292. name: "Macro+",
  11293. height: math.unit(500, "meters")
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11299. {
  11300. front: {
  11301. height: math.unit(6, "feet"),
  11302. weight: math.unit(150, "lb"),
  11303. name: "Front",
  11304. image: {
  11305. source: "./media/characters/zyas/front.svg",
  11306. extra: 1180 / 1120,
  11307. bottom: 0.045
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Normal",
  11314. height: math.unit(10, "feet"),
  11315. default: true
  11316. },
  11317. {
  11318. name: "Macro",
  11319. height: math.unit(500, "feet")
  11320. },
  11321. {
  11322. name: "Megamacro",
  11323. height: math.unit(5, "miles")
  11324. },
  11325. {
  11326. name: "Teramacro",
  11327. height: math.unit(150000, "miles")
  11328. },
  11329. ]
  11330. ))
  11331. characterMakers.push(() => makeCharacter(
  11332. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11333. {
  11334. front: {
  11335. height: math.unit(6, "feet"),
  11336. weight: math.unit(150, "lb"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/cuon/front.svg",
  11340. extra: 1390 / 1320,
  11341. bottom: 0.008
  11342. }
  11343. },
  11344. },
  11345. [
  11346. {
  11347. name: "Micro",
  11348. height: math.unit(3, "inches")
  11349. },
  11350. {
  11351. name: "Normal",
  11352. height: math.unit(18 + 9 / 12, "feet"),
  11353. default: true
  11354. },
  11355. {
  11356. name: "Macro",
  11357. height: math.unit(360, "feet")
  11358. },
  11359. {
  11360. name: "Megamacro",
  11361. height: math.unit(360, "miles")
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(2.4, "meters"),
  11370. weight: math.unit(70, "kg"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/nyanuxk/front.svg",
  11374. extra: 1172 / 1084,
  11375. bottom: 0.065
  11376. }
  11377. },
  11378. side: {
  11379. height: math.unit(2.4, "meters"),
  11380. weight: math.unit(70, "kg"),
  11381. name: "Side",
  11382. image: {
  11383. source: "./media/characters/nyanuxk/side.svg",
  11384. extra: 1190 / 1132,
  11385. bottom: 0.007
  11386. }
  11387. },
  11388. back: {
  11389. height: math.unit(2.4, "meters"),
  11390. weight: math.unit(70, "kg"),
  11391. name: "Back",
  11392. image: {
  11393. source: "./media/characters/nyanuxk/back.svg",
  11394. extra: 1200 / 1141,
  11395. bottom: 0.015
  11396. }
  11397. },
  11398. foot: {
  11399. height: math.unit(0.52, "meters"),
  11400. name: "Foot",
  11401. image: {
  11402. source: "./media/characters/nyanuxk/foot.svg"
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Micro",
  11409. height: math.unit(2, "cm")
  11410. },
  11411. {
  11412. name: "Normal",
  11413. height: math.unit(2.4, "meters"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Smaller Macro",
  11418. height: math.unit(120, "meters")
  11419. },
  11420. {
  11421. name: "Bigger Macro",
  11422. height: math.unit(1.2, "km")
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(15, "kilometers")
  11427. },
  11428. {
  11429. name: "Gigamacro",
  11430. height: math.unit(2000, "km")
  11431. },
  11432. {
  11433. name: "Teramacro",
  11434. height: math.unit(500000, "km")
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11440. {
  11441. side: {
  11442. height: math.unit(6, "feet"),
  11443. name: "Side",
  11444. image: {
  11445. source: "./media/characters/ailbhe/side.svg",
  11446. extra: 757 / 464,
  11447. bottom: 0.041
  11448. }
  11449. },
  11450. },
  11451. [
  11452. {
  11453. name: "Normal",
  11454. height: math.unit(1.07, "meters"),
  11455. default: true
  11456. },
  11457. ]
  11458. ))
  11459. characterMakers.push(() => makeCharacter(
  11460. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11461. {
  11462. front: {
  11463. height: math.unit(6, "feet"),
  11464. weight: math.unit(120, "kg"),
  11465. name: "Front",
  11466. image: {
  11467. source: "./media/characters/zevulfius/front.svg",
  11468. extra: 965 / 903
  11469. }
  11470. },
  11471. side: {
  11472. height: math.unit(6, "feet"),
  11473. weight: math.unit(120, "kg"),
  11474. name: "Side",
  11475. image: {
  11476. source: "./media/characters/zevulfius/side.svg",
  11477. extra: 939 / 900
  11478. }
  11479. },
  11480. back: {
  11481. height: math.unit(6, "feet"),
  11482. weight: math.unit(120, "kg"),
  11483. name: "Back",
  11484. image: {
  11485. source: "./media/characters/zevulfius/back.svg",
  11486. extra: 918 / 854,
  11487. bottom: 0.005
  11488. }
  11489. },
  11490. foot: {
  11491. height: math.unit(6 / 3.72, "feet"),
  11492. name: "Foot",
  11493. image: {
  11494. source: "./media/characters/zevulfius/foot.svg"
  11495. }
  11496. },
  11497. },
  11498. [
  11499. {
  11500. name: "Macro",
  11501. height: math.unit(750, "meters")
  11502. },
  11503. {
  11504. name: "Megamacro",
  11505. height: math.unit(20, "km"),
  11506. default: true
  11507. },
  11508. {
  11509. name: "Gigamacro",
  11510. height: math.unit(2000, "km")
  11511. },
  11512. {
  11513. name: "Teramacro",
  11514. height: math.unit(250000, "km")
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(100, "feet"),
  11523. weight: math.unit(350, "kg"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/rikes/front.svg",
  11527. extra: 1565 / 1483,
  11528. bottom: 0.017
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Macro",
  11535. height: math.unit(100, "feet"),
  11536. default: true
  11537. },
  11538. ]
  11539. ))
  11540. characterMakers.push(() => makeCharacter(
  11541. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11542. {
  11543. front: {
  11544. height: math.unit(8, "feet"),
  11545. weight: math.unit(356, "lb"),
  11546. name: "Front",
  11547. image: {
  11548. source: "./media/characters/adam-silver-mane/front.svg",
  11549. extra: 1036/937,
  11550. bottom: 63/1099
  11551. }
  11552. },
  11553. side: {
  11554. height: math.unit(8, "feet"),
  11555. weight: math.unit(356, "lb"),
  11556. name: "Side",
  11557. image: {
  11558. source: "./media/characters/adam-silver-mane/side.svg",
  11559. extra: 997/901,
  11560. bottom: 59/1056
  11561. }
  11562. },
  11563. frontNsfw: {
  11564. height: math.unit(8, "feet"),
  11565. weight: math.unit(356, "lb"),
  11566. name: "Front (NSFW)",
  11567. image: {
  11568. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11569. extra: 1036/937,
  11570. bottom: 63/1099
  11571. }
  11572. },
  11573. sideNsfw: {
  11574. height: math.unit(8, "feet"),
  11575. weight: math.unit(356, "lb"),
  11576. name: "Side (NSFW)",
  11577. image: {
  11578. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11579. extra: 997/901,
  11580. bottom: 59/1056
  11581. }
  11582. },
  11583. dick: {
  11584. height: math.unit(2.1, "feet"),
  11585. name: "Dick",
  11586. image: {
  11587. source: "./media/characters/adam-silver-mane/dick.svg"
  11588. }
  11589. },
  11590. taur: {
  11591. height: math.unit(16, "feet"),
  11592. weight: math.unit(1500, "kg"),
  11593. name: "Taur",
  11594. image: {
  11595. source: "./media/characters/adam-silver-mane/taur.svg",
  11596. extra: 1713 / 1571,
  11597. bottom: 0.01
  11598. }
  11599. },
  11600. },
  11601. [
  11602. {
  11603. name: "Normal",
  11604. height: math.unit(8, "feet")
  11605. },
  11606. {
  11607. name: "Minimacro",
  11608. height: math.unit(80, "feet")
  11609. },
  11610. {
  11611. name: "MDA",
  11612. height: math.unit(80, "meters")
  11613. },
  11614. {
  11615. name: "Macro",
  11616. height: math.unit(800, "feet"),
  11617. default: true
  11618. },
  11619. {
  11620. name: "Megamacro",
  11621. height: math.unit(8000, "feet")
  11622. },
  11623. {
  11624. name: "Gigamacro",
  11625. height: math.unit(800, "miles")
  11626. },
  11627. {
  11628. name: "Teramacro",
  11629. height: math.unit(80000, "miles")
  11630. },
  11631. {
  11632. name: "Celestial",
  11633. height: math.unit(8e6, "miles")
  11634. },
  11635. {
  11636. name: "Star Dragon",
  11637. height: math.unit(800000, "parsecs")
  11638. },
  11639. {
  11640. name: "Godly",
  11641. height: math.unit(800, "teraparsecs")
  11642. },
  11643. ]
  11644. ))
  11645. characterMakers.push(() => makeCharacter(
  11646. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11647. {
  11648. front: {
  11649. height: math.unit(6, "feet"),
  11650. weight: math.unit(150, "lb"),
  11651. name: "Front",
  11652. image: {
  11653. source: "./media/characters/ky'owin/front.svg",
  11654. extra: 3862/3053,
  11655. bottom: 74/3936
  11656. }
  11657. },
  11658. },
  11659. [
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(6 + 8 / 12, "feet")
  11663. },
  11664. {
  11665. name: "Large",
  11666. height: math.unit(68, "feet")
  11667. },
  11668. {
  11669. name: "Macro",
  11670. height: math.unit(132, "feet")
  11671. },
  11672. {
  11673. name: "Macro+",
  11674. height: math.unit(340, "feet")
  11675. },
  11676. {
  11677. name: "Macro++",
  11678. height: math.unit(680, "feet"),
  11679. default: true
  11680. },
  11681. {
  11682. name: "Megamacro",
  11683. height: math.unit(1, "mile")
  11684. },
  11685. {
  11686. name: "Megamacro+",
  11687. height: math.unit(10, "miles")
  11688. },
  11689. ]
  11690. ))
  11691. characterMakers.push(() => makeCharacter(
  11692. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11693. {
  11694. front: {
  11695. height: math.unit(4, "feet"),
  11696. weight: math.unit(50, "lb"),
  11697. name: "Front",
  11698. image: {
  11699. source: "./media/characters/mal/front.svg",
  11700. extra: 785 / 724,
  11701. bottom: 0.07
  11702. }
  11703. },
  11704. },
  11705. [
  11706. {
  11707. name: "Micro",
  11708. height: math.unit(4, "inches")
  11709. },
  11710. {
  11711. name: "Normal",
  11712. height: math.unit(4, "feet"),
  11713. default: true
  11714. },
  11715. {
  11716. name: "Macro",
  11717. height: math.unit(200, "feet")
  11718. },
  11719. ]
  11720. ))
  11721. characterMakers.push(() => makeCharacter(
  11722. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11723. {
  11724. front: {
  11725. height: math.unit(6, "feet"),
  11726. weight: math.unit(150, "lb"),
  11727. name: "Front",
  11728. image: {
  11729. source: "./media/characters/jordan-deware/front.svg",
  11730. extra: 1191 / 1012
  11731. }
  11732. },
  11733. },
  11734. [
  11735. {
  11736. name: "Nano",
  11737. height: math.unit(0.01, "mm")
  11738. },
  11739. {
  11740. name: "Minimicro",
  11741. height: math.unit(1, "mm")
  11742. },
  11743. {
  11744. name: "Micro",
  11745. height: math.unit(0.5, "inches")
  11746. },
  11747. {
  11748. name: "Normal",
  11749. height: math.unit(4, "feet"),
  11750. default: true
  11751. },
  11752. {
  11753. name: "Minimacro",
  11754. height: math.unit(40, "meters")
  11755. },
  11756. {
  11757. name: "Small Macro",
  11758. height: math.unit(400, "meters")
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(4, "miles")
  11763. },
  11764. {
  11765. name: "Megamacro",
  11766. height: math.unit(40, "miles")
  11767. },
  11768. {
  11769. name: "Megamacro+",
  11770. height: math.unit(400, "miles")
  11771. },
  11772. {
  11773. name: "Gigamacro",
  11774. height: math.unit(400000, "miles")
  11775. },
  11776. ]
  11777. ))
  11778. characterMakers.push(() => makeCharacter(
  11779. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11780. {
  11781. side: {
  11782. height: math.unit(6, "feet"),
  11783. weight: math.unit(150, "lb"),
  11784. name: "Side",
  11785. image: {
  11786. source: "./media/characters/kimiko/side.svg",
  11787. extra: 600 / 358
  11788. }
  11789. },
  11790. },
  11791. [
  11792. {
  11793. name: "Normal",
  11794. height: math.unit(15, "feet"),
  11795. default: true
  11796. },
  11797. {
  11798. name: "Macro",
  11799. height: math.unit(220, "feet")
  11800. },
  11801. {
  11802. name: "Macro+",
  11803. height: math.unit(1450, "feet")
  11804. },
  11805. {
  11806. name: "Megamacro",
  11807. height: math.unit(11500, "feet")
  11808. },
  11809. {
  11810. name: "Gigamacro",
  11811. height: math.unit(9500, "miles")
  11812. },
  11813. {
  11814. name: "Teramacro",
  11815. height: math.unit(2208005005, "miles")
  11816. },
  11817. {
  11818. name: "Examacro",
  11819. height: math.unit(2750, "parsecs")
  11820. },
  11821. {
  11822. name: "Zettamacro",
  11823. height: math.unit(101500, "parsecs")
  11824. },
  11825. ]
  11826. ))
  11827. characterMakers.push(() => makeCharacter(
  11828. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11829. {
  11830. front: {
  11831. height: math.unit(6, "feet"),
  11832. weight: math.unit(70, "kg"),
  11833. name: "Front",
  11834. image: {
  11835. source: "./media/characters/andrew-sleepy/front.svg"
  11836. }
  11837. },
  11838. side: {
  11839. height: math.unit(6, "feet"),
  11840. weight: math.unit(70, "kg"),
  11841. name: "Side",
  11842. image: {
  11843. source: "./media/characters/andrew-sleepy/side.svg"
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Micro",
  11850. height: math.unit(1, "mm"),
  11851. default: true
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(150, "lb"),
  11861. name: "Front",
  11862. image: {
  11863. source: "./media/characters/judio/front.svg",
  11864. extra: 1258 / 1110
  11865. }
  11866. },
  11867. },
  11868. [
  11869. {
  11870. name: "Normal",
  11871. height: math.unit(5 + 6 / 12, "feet")
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(1000, "feet"),
  11876. default: true
  11877. },
  11878. {
  11879. name: "Megamacro",
  11880. height: math.unit(10, "miles")
  11881. },
  11882. ]
  11883. ))
  11884. characterMakers.push(() => makeCharacter(
  11885. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11886. {
  11887. frontDressed: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(68, "kg"),
  11890. name: "Front (Dressed)",
  11891. image: {
  11892. source: "./media/characters/nomaxice/front-dressed.svg",
  11893. extra: 1137/824,
  11894. bottom: 74/1211
  11895. }
  11896. },
  11897. frontShorts: {
  11898. height: math.unit(6, "feet"),
  11899. weight: math.unit(68, "kg"),
  11900. name: "Front (Shorts)",
  11901. image: {
  11902. source: "./media/characters/nomaxice/front-shorts.svg",
  11903. extra: 1137/824,
  11904. bottom: 74/1211
  11905. }
  11906. },
  11907. back: {
  11908. height: math.unit(6, "feet"),
  11909. weight: math.unit(68, "kg"),
  11910. name: "Back",
  11911. image: {
  11912. source: "./media/characters/nomaxice/back.svg",
  11913. extra: 822/786,
  11914. bottom: 39/861
  11915. }
  11916. },
  11917. hand: {
  11918. height: math.unit(0.565, "feet"),
  11919. name: "Hand",
  11920. image: {
  11921. source: "./media/characters/nomaxice/hand.svg"
  11922. }
  11923. },
  11924. foot: {
  11925. height: math.unit(1, "feet"),
  11926. name: "Foot",
  11927. image: {
  11928. source: "./media/characters/nomaxice/foot.svg"
  11929. }
  11930. },
  11931. },
  11932. [
  11933. {
  11934. name: "Micro",
  11935. height: math.unit(8, "cm")
  11936. },
  11937. {
  11938. name: "Norm",
  11939. height: math.unit(1.82, "m")
  11940. },
  11941. {
  11942. name: "Norm+",
  11943. height: math.unit(8.8, "feet"),
  11944. default: true
  11945. },
  11946. {
  11947. name: "Big",
  11948. height: math.unit(8, "meters")
  11949. },
  11950. {
  11951. name: "Macro",
  11952. height: math.unit(18, "meters")
  11953. },
  11954. {
  11955. name: "Macro+",
  11956. height: math.unit(88, "meters")
  11957. },
  11958. ]
  11959. ))
  11960. characterMakers.push(() => makeCharacter(
  11961. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11962. {
  11963. front: {
  11964. height: math.unit(12, "feet"),
  11965. weight: math.unit(1.5, "tons"),
  11966. name: "Front",
  11967. image: {
  11968. source: "./media/characters/dydros/front.svg",
  11969. extra: 863 / 800,
  11970. bottom: 0.015
  11971. }
  11972. },
  11973. back: {
  11974. height: math.unit(12, "feet"),
  11975. weight: math.unit(1.5, "tons"),
  11976. name: "Back",
  11977. image: {
  11978. source: "./media/characters/dydros/back.svg",
  11979. extra: 900 / 843,
  11980. bottom: 0.005
  11981. }
  11982. },
  11983. },
  11984. [
  11985. {
  11986. name: "Normal",
  11987. height: math.unit(12, "feet"),
  11988. default: true
  11989. },
  11990. ]
  11991. ))
  11992. characterMakers.push(() => makeCharacter(
  11993. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11994. {
  11995. front: {
  11996. height: math.unit(6, "feet"),
  11997. weight: math.unit(100, "kg"),
  11998. name: "Front",
  11999. image: {
  12000. source: "./media/characters/riggi/front.svg",
  12001. extra: 5787 / 5303
  12002. }
  12003. },
  12004. hyper: {
  12005. height: math.unit(6 * 5 / 3, "feet"),
  12006. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12007. name: "Hyper",
  12008. image: {
  12009. source: "./media/characters/riggi/hyper.svg",
  12010. extra: 3595 / 3485
  12011. }
  12012. },
  12013. },
  12014. [
  12015. {
  12016. name: "Small Macro",
  12017. height: math.unit(50, "feet")
  12018. },
  12019. {
  12020. name: "Default",
  12021. height: math.unit(200, "feet"),
  12022. default: true
  12023. },
  12024. {
  12025. name: "Loom",
  12026. height: math.unit(10000, "feet")
  12027. },
  12028. {
  12029. name: "Cruising Altitude",
  12030. height: math.unit(30000, "feet")
  12031. },
  12032. {
  12033. name: "Megamacro",
  12034. height: math.unit(100, "miles")
  12035. },
  12036. {
  12037. name: "Continent Sized",
  12038. height: math.unit(2800, "miles")
  12039. },
  12040. {
  12041. name: "Earth Sized",
  12042. height: math.unit(8000, "miles")
  12043. },
  12044. ]
  12045. ))
  12046. characterMakers.push(() => makeCharacter(
  12047. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12048. {
  12049. front: {
  12050. height: math.unit(6, "feet"),
  12051. weight: math.unit(250, "lb"),
  12052. name: "Front",
  12053. image: {
  12054. source: "./media/characters/alexi/front.svg",
  12055. extra: 3483 / 3291,
  12056. bottom: 0.04
  12057. }
  12058. },
  12059. back: {
  12060. height: math.unit(6, "feet"),
  12061. weight: math.unit(250, "lb"),
  12062. name: "Back",
  12063. image: {
  12064. source: "./media/characters/alexi/back.svg",
  12065. extra: 3533 / 3356,
  12066. bottom: 0.021
  12067. }
  12068. },
  12069. frontTransforming: {
  12070. height: math.unit(8.58, "feet"),
  12071. weight: math.unit(1300, "lb"),
  12072. name: "Transforming",
  12073. image: {
  12074. source: "./media/characters/alexi/front-transforming.svg",
  12075. extra: 437 / 409,
  12076. bottom: 19 / 458.66
  12077. }
  12078. },
  12079. frontTransformed: {
  12080. height: math.unit(12.5, "feet"),
  12081. weight: math.unit(4000, "lb"),
  12082. name: "Transformed",
  12083. image: {
  12084. source: "./media/characters/alexi/front-transformed.svg",
  12085. extra: 639 / 614,
  12086. bottom: 30.55 / 671
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(14, "feet"),
  12094. default: true
  12095. },
  12096. {
  12097. name: "Minimacro",
  12098. height: math.unit(30, "meters")
  12099. },
  12100. {
  12101. name: "Macro",
  12102. height: math.unit(500, "meters")
  12103. },
  12104. {
  12105. name: "Megamacro",
  12106. height: math.unit(9000, "km")
  12107. },
  12108. {
  12109. name: "Teramacro",
  12110. height: math.unit(384000, "km")
  12111. },
  12112. ]
  12113. ))
  12114. characterMakers.push(() => makeCharacter(
  12115. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12116. {
  12117. front: {
  12118. height: math.unit(6, "feet"),
  12119. weight: math.unit(150, "lb"),
  12120. name: "Front",
  12121. image: {
  12122. source: "./media/characters/kayroo/front.svg",
  12123. extra: 1153 / 1038,
  12124. bottom: 0.06
  12125. }
  12126. },
  12127. foot: {
  12128. height: math.unit(6, "feet"),
  12129. weight: math.unit(150, "lb"),
  12130. name: "Foot",
  12131. image: {
  12132. source: "./media/characters/kayroo/foot.svg"
  12133. }
  12134. },
  12135. },
  12136. [
  12137. {
  12138. name: "Normal",
  12139. height: math.unit(8, "feet"),
  12140. default: true
  12141. },
  12142. {
  12143. name: "Minimacro",
  12144. height: math.unit(250, "feet")
  12145. },
  12146. {
  12147. name: "Macro",
  12148. height: math.unit(2800, "feet")
  12149. },
  12150. {
  12151. name: "Megamacro",
  12152. height: math.unit(5200, "feet")
  12153. },
  12154. {
  12155. name: "Gigamacro",
  12156. height: math.unit(27000, "feet")
  12157. },
  12158. {
  12159. name: "Omega",
  12160. height: math.unit(45000, "feet")
  12161. },
  12162. ]
  12163. ))
  12164. characterMakers.push(() => makeCharacter(
  12165. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12166. {
  12167. front: {
  12168. height: math.unit(18, "feet"),
  12169. weight: math.unit(5800, "lb"),
  12170. name: "Front",
  12171. image: {
  12172. source: "./media/characters/rhys/front.svg",
  12173. extra: 3386 / 3090,
  12174. bottom: 0.07
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(18, "feet"),
  12182. default: true
  12183. },
  12184. {
  12185. name: "Working Size",
  12186. height: math.unit(200, "feet")
  12187. },
  12188. {
  12189. name: "Demolition Size",
  12190. height: math.unit(2000, "feet")
  12191. },
  12192. {
  12193. name: "Maximum Licensed Size",
  12194. height: math.unit(5, "miles")
  12195. },
  12196. {
  12197. name: "Maximum Observed Size",
  12198. height: math.unit(10, "yottameters")
  12199. },
  12200. ]
  12201. ))
  12202. characterMakers.push(() => makeCharacter(
  12203. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12204. {
  12205. front: {
  12206. height: math.unit(6, "feet"),
  12207. weight: math.unit(250, "lb"),
  12208. name: "Front",
  12209. image: {
  12210. source: "./media/characters/toto/front.svg",
  12211. extra: 527 / 479,
  12212. bottom: 0.05
  12213. }
  12214. },
  12215. },
  12216. [
  12217. {
  12218. name: "Micro",
  12219. height: math.unit(3, "feet")
  12220. },
  12221. {
  12222. name: "Normal",
  12223. height: math.unit(10, "feet")
  12224. },
  12225. {
  12226. name: "Macro",
  12227. height: math.unit(150, "feet"),
  12228. default: true
  12229. },
  12230. {
  12231. name: "Megamacro",
  12232. height: math.unit(1200, "feet")
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "King", species: ["lion"], tags: ["anthro"] },
  12238. {
  12239. back: {
  12240. height: math.unit(6, "feet"),
  12241. weight: math.unit(150, "lb"),
  12242. name: "Back",
  12243. image: {
  12244. source: "./media/characters/king/back.svg"
  12245. }
  12246. },
  12247. },
  12248. [
  12249. {
  12250. name: "Micro",
  12251. height: math.unit(2, "inches")
  12252. },
  12253. {
  12254. name: "Normal",
  12255. height: math.unit(8, "feet")
  12256. },
  12257. {
  12258. name: "Macro",
  12259. height: math.unit(200, "feet"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Megamacro",
  12264. height: math.unit(50, "miles")
  12265. },
  12266. ]
  12267. ))
  12268. characterMakers.push(() => makeCharacter(
  12269. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12270. {
  12271. front: {
  12272. height: math.unit(11, "feet"),
  12273. weight: math.unit(1400, "lb"),
  12274. name: "Front",
  12275. image: {
  12276. source: "./media/characters/cordite/front.svg",
  12277. extra: 1919/1827,
  12278. bottom: 40/1959
  12279. }
  12280. },
  12281. side: {
  12282. height: math.unit(11, "feet"),
  12283. weight: math.unit(1400, "lb"),
  12284. name: "Side",
  12285. image: {
  12286. source: "./media/characters/cordite/side.svg",
  12287. extra: 1908/1793,
  12288. bottom: 38/1946
  12289. }
  12290. },
  12291. back: {
  12292. height: math.unit(11, "feet"),
  12293. weight: math.unit(1400, "lb"),
  12294. name: "Back",
  12295. image: {
  12296. source: "./media/characters/cordite/back.svg",
  12297. extra: 1938/1837,
  12298. bottom: 10/1948
  12299. }
  12300. },
  12301. feral: {
  12302. height: math.unit(2, "feet"),
  12303. weight: math.unit(90, "lb"),
  12304. name: "Feral",
  12305. image: {
  12306. source: "./media/characters/cordite/feral.svg",
  12307. extra: 1260 / 755,
  12308. bottom: 0.05
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(11, "feet"),
  12316. default: true
  12317. },
  12318. ]
  12319. ))
  12320. characterMakers.push(() => makeCharacter(
  12321. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12322. {
  12323. front: {
  12324. height: math.unit(6, "feet"),
  12325. weight: math.unit(150, "lb"),
  12326. name: "Front",
  12327. image: {
  12328. source: "./media/characters/pianostrong/front.svg",
  12329. extra: 6577 / 6254,
  12330. bottom: 0.02
  12331. }
  12332. },
  12333. side: {
  12334. height: math.unit(6, "feet"),
  12335. weight: math.unit(150, "lb"),
  12336. name: "Side",
  12337. image: {
  12338. source: "./media/characters/pianostrong/side.svg",
  12339. extra: 6106 / 5730
  12340. }
  12341. },
  12342. back: {
  12343. height: math.unit(6, "feet"),
  12344. weight: math.unit(150, "lb"),
  12345. name: "Back",
  12346. image: {
  12347. source: "./media/characters/pianostrong/back.svg",
  12348. extra: 6085 / 5733,
  12349. bottom: 0.01
  12350. }
  12351. },
  12352. },
  12353. [
  12354. {
  12355. name: "Macro",
  12356. height: math.unit(100, "feet")
  12357. },
  12358. {
  12359. name: "Macro+",
  12360. height: math.unit(300, "feet"),
  12361. default: true
  12362. },
  12363. {
  12364. name: "Macro++",
  12365. height: math.unit(1000, "feet")
  12366. },
  12367. ]
  12368. ))
  12369. characterMakers.push(() => makeCharacter(
  12370. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12371. {
  12372. front: {
  12373. height: math.unit(6, "feet"),
  12374. weight: math.unit(150, "lb"),
  12375. name: "Front",
  12376. image: {
  12377. source: "./media/characters/kona/front.svg",
  12378. extra: 2960 / 2629,
  12379. bottom: 0.005
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Normal",
  12386. height: math.unit(11 + 8 / 12, "feet")
  12387. },
  12388. {
  12389. name: "Macro",
  12390. height: math.unit(850, "feet"),
  12391. default: true
  12392. },
  12393. {
  12394. name: "Macro+",
  12395. height: math.unit(1.5, "km"),
  12396. default: true
  12397. },
  12398. {
  12399. name: "Megamacro",
  12400. height: math.unit(80, "miles")
  12401. },
  12402. {
  12403. name: "Gigamacro",
  12404. height: math.unit(3500, "miles")
  12405. },
  12406. ]
  12407. ))
  12408. characterMakers.push(() => makeCharacter(
  12409. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12410. {
  12411. side: {
  12412. height: math.unit(1.9, "meters"),
  12413. weight: math.unit(326, "kg"),
  12414. name: "Side",
  12415. image: {
  12416. source: "./media/characters/levi/side.svg",
  12417. extra: 1704 / 1334,
  12418. bottom: 0.02
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(1.9, "meters"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Macro",
  12430. height: math.unit(20, "meters")
  12431. },
  12432. {
  12433. name: "Macro+",
  12434. height: math.unit(200, "meters")
  12435. },
  12436. {
  12437. name: "Megamacro",
  12438. height: math.unit(2, "km")
  12439. },
  12440. {
  12441. name: "Megamacro+",
  12442. height: math.unit(20, "km")
  12443. },
  12444. {
  12445. name: "Gigamacro",
  12446. height: math.unit(2500, "km")
  12447. },
  12448. {
  12449. name: "Gigamacro+",
  12450. height: math.unit(120000, "km")
  12451. },
  12452. {
  12453. name: "Teramacro",
  12454. height: math.unit(7.77e6, "km")
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12460. {
  12461. front: {
  12462. height: math.unit(6 + 4/12, "feet"),
  12463. weight: math.unit(190, "lb"),
  12464. name: "Front",
  12465. image: {
  12466. source: "./media/characters/bmc/front.svg",
  12467. extra: 1626/1472,
  12468. bottom: 79/1705
  12469. }
  12470. },
  12471. back: {
  12472. height: math.unit(6 + 4/12, "feet"),
  12473. weight: math.unit(190, "lb"),
  12474. name: "Back",
  12475. image: {
  12476. source: "./media/characters/bmc/back.svg",
  12477. extra: 1640/1479,
  12478. bottom: 45/1685
  12479. }
  12480. },
  12481. frontArmor: {
  12482. height: math.unit(6 + 4/12, "feet"),
  12483. weight: math.unit(190, "lb"),
  12484. name: "Front-armor",
  12485. image: {
  12486. source: "./media/characters/bmc/front-armor.svg",
  12487. extra: 1538/1468,
  12488. bottom: 79/1617
  12489. }
  12490. },
  12491. },
  12492. [
  12493. {
  12494. name: "Human-sized",
  12495. height: math.unit(6 + 4 / 12, "feet")
  12496. },
  12497. {
  12498. name: "Interactive Size",
  12499. height: math.unit(25, "feet")
  12500. },
  12501. {
  12502. name: "Small",
  12503. height: math.unit(250, "feet")
  12504. },
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(1250, "feet"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Good Day",
  12512. height: math.unit(88, "miles")
  12513. },
  12514. {
  12515. name: "Largest Measured Size",
  12516. height: math.unit(105.960, "galaxies")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(20, "feet"),
  12525. weight: math.unit(2016, "kg"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/sven-the-kaiju/front.svg",
  12529. extra: 1277/1250,
  12530. bottom: 35/1312
  12531. }
  12532. },
  12533. mouth: {
  12534. height: math.unit(1.85, "feet"),
  12535. name: "Mouth",
  12536. image: {
  12537. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Fairy",
  12544. height: math.unit(6, "inches")
  12545. },
  12546. {
  12547. name: "Normal",
  12548. height: math.unit(20, "feet"),
  12549. default: true
  12550. },
  12551. {
  12552. name: "Rampage",
  12553. height: math.unit(200, "feet")
  12554. },
  12555. {
  12556. name: "Archfey Forest Guardian",
  12557. height: math.unit(1, "mile")
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12563. {
  12564. front: {
  12565. height: math.unit(4, "meters"),
  12566. weight: math.unit(2, "tons"),
  12567. name: "Front",
  12568. image: {
  12569. source: "./media/characters/marik/front.svg",
  12570. extra: 1057 / 1003,
  12571. bottom: 0.08
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(4, "meters"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Macro",
  12583. height: math.unit(20, "meters")
  12584. },
  12585. {
  12586. name: "Megamacro",
  12587. height: math.unit(50, "km")
  12588. },
  12589. {
  12590. name: "Gigamacro",
  12591. height: math.unit(100, "km")
  12592. },
  12593. {
  12594. name: "Alpha Macro",
  12595. height: math.unit(7.88e7, "yottameters")
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12601. {
  12602. front: {
  12603. height: math.unit(6, "feet"),
  12604. weight: math.unit(110, "lb"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/mel/front.svg",
  12608. extra: 736 / 617,
  12609. bottom: 0.017
  12610. }
  12611. },
  12612. },
  12613. [
  12614. {
  12615. name: "Pico",
  12616. height: math.unit(3, "pm")
  12617. },
  12618. {
  12619. name: "Nano",
  12620. height: math.unit(3, "nm")
  12621. },
  12622. {
  12623. name: "Micro",
  12624. height: math.unit(0.3, "mm"),
  12625. default: true
  12626. },
  12627. {
  12628. name: "Micro+",
  12629. height: math.unit(3, "mm")
  12630. },
  12631. {
  12632. name: "Normal",
  12633. height: math.unit(5 + 10.5 / 12, "feet")
  12634. },
  12635. ]
  12636. ))
  12637. characterMakers.push(() => makeCharacter(
  12638. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12639. {
  12640. kaiju: {
  12641. height: math.unit(1.75, "meters"),
  12642. weight: math.unit(55, "kg"),
  12643. name: "Kaiju",
  12644. image: {
  12645. source: "./media/characters/lykonous/kaiju.svg",
  12646. extra: 1055 / 946,
  12647. bottom: 0.135
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(2.5, "meters"),
  12655. default: true
  12656. },
  12657. {
  12658. name: "Kaiju Dragon",
  12659. height: math.unit(60, "meters")
  12660. },
  12661. {
  12662. name: "Mega Kaiju",
  12663. height: math.unit(120, "km")
  12664. },
  12665. {
  12666. name: "Giga Kaiju",
  12667. height: math.unit(200, "megameters")
  12668. },
  12669. {
  12670. name: "Terra Kaiju",
  12671. height: math.unit(400, "gigameters")
  12672. },
  12673. {
  12674. name: "Kaiju Dragon God",
  12675. height: math.unit(13000, "exaparsecs")
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12681. {
  12682. front: {
  12683. height: math.unit(6, "feet"),
  12684. weight: math.unit(150, "lb"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/blü/front.svg",
  12688. extra: 1883 / 1564,
  12689. bottom: 0.031
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Normal",
  12696. height: math.unit(13, "feet"),
  12697. default: true
  12698. },
  12699. {
  12700. name: "Big Boi",
  12701. height: math.unit(150, "meters")
  12702. },
  12703. {
  12704. name: "Mini Stomper",
  12705. height: math.unit(300, "meters")
  12706. },
  12707. {
  12708. name: "Macro",
  12709. height: math.unit(1000, "meters")
  12710. },
  12711. {
  12712. name: "Megamacro",
  12713. height: math.unit(11000, "meters")
  12714. },
  12715. {
  12716. name: "Gigamacro",
  12717. height: math.unit(11000, "km")
  12718. },
  12719. {
  12720. name: "Teramacro",
  12721. height: math.unit(420000, "km")
  12722. },
  12723. {
  12724. name: "Examacro",
  12725. height: math.unit(120, "parsecs")
  12726. },
  12727. {
  12728. name: "God Tho",
  12729. height: math.unit(98000000000, "parsecs")
  12730. },
  12731. ]
  12732. ))
  12733. characterMakers.push(() => makeCharacter(
  12734. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12735. {
  12736. taurFront: {
  12737. height: math.unit(6, "feet"),
  12738. weight: math.unit(200, "lb"),
  12739. name: "Taur (Front)",
  12740. image: {
  12741. source: "./media/characters/scales/taur-front.svg",
  12742. extra: 1,
  12743. bottom: 0.05
  12744. }
  12745. },
  12746. taurBack: {
  12747. height: math.unit(6, "feet"),
  12748. weight: math.unit(200, "lb"),
  12749. name: "Taur (Back)",
  12750. image: {
  12751. source: "./media/characters/scales/taur-back.svg",
  12752. extra: 1,
  12753. bottom: 0.08
  12754. }
  12755. },
  12756. anthro: {
  12757. height: math.unit(6 * 7 / 12, "feet"),
  12758. weight: math.unit(100, "lb"),
  12759. name: "Anthro",
  12760. image: {
  12761. source: "./media/characters/scales/anthro.svg",
  12762. extra: 1,
  12763. bottom: 0.06
  12764. }
  12765. },
  12766. },
  12767. [
  12768. {
  12769. name: "Normal",
  12770. height: math.unit(12, "feet"),
  12771. default: true
  12772. },
  12773. ]
  12774. ))
  12775. characterMakers.push(() => makeCharacter(
  12776. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12777. {
  12778. front: {
  12779. height: math.unit(6, "feet"),
  12780. weight: math.unit(150, "lb"),
  12781. name: "Front",
  12782. image: {
  12783. source: "./media/characters/koragos/front.svg",
  12784. extra: 841 / 794,
  12785. bottom: 0.035
  12786. }
  12787. },
  12788. back: {
  12789. height: math.unit(6, "feet"),
  12790. weight: math.unit(150, "lb"),
  12791. name: "Back",
  12792. image: {
  12793. source: "./media/characters/koragos/back.svg",
  12794. extra: 841 / 810,
  12795. bottom: 0.022
  12796. }
  12797. },
  12798. },
  12799. [
  12800. {
  12801. name: "Normal",
  12802. height: math.unit(6 + 11 / 12, "feet"),
  12803. default: true
  12804. },
  12805. {
  12806. name: "Macro",
  12807. height: math.unit(490, "feet")
  12808. },
  12809. {
  12810. name: "Megamacro",
  12811. height: math.unit(10, "miles")
  12812. },
  12813. {
  12814. name: "Gigamacro",
  12815. height: math.unit(50, "miles")
  12816. },
  12817. ]
  12818. ))
  12819. characterMakers.push(() => makeCharacter(
  12820. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12821. {
  12822. front: {
  12823. height: math.unit(6, "feet"),
  12824. weight: math.unit(250, "lb"),
  12825. name: "Front",
  12826. image: {
  12827. source: "./media/characters/xylrem/front.svg",
  12828. extra: 3323 / 3050,
  12829. bottom: 0.065
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Micro",
  12836. height: math.unit(4, "feet")
  12837. },
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(16, "feet"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Macro",
  12845. height: math.unit(2720, "feet")
  12846. },
  12847. {
  12848. name: "Megamacro",
  12849. height: math.unit(25000, "miles")
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12855. {
  12856. front: {
  12857. height: math.unit(8, "feet"),
  12858. weight: math.unit(250, "kg"),
  12859. name: "Front",
  12860. image: {
  12861. source: "./media/characters/ikideru/front.svg",
  12862. extra: 930 / 870,
  12863. bottom: 0.087
  12864. }
  12865. },
  12866. back: {
  12867. height: math.unit(8, "feet"),
  12868. weight: math.unit(250, "kg"),
  12869. name: "Back",
  12870. image: {
  12871. source: "./media/characters/ikideru/back.svg",
  12872. extra: 919 / 852,
  12873. bottom: 0.055
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Rare",
  12880. height: math.unit(8, "feet"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Playful Loom",
  12885. height: math.unit(80, "feet")
  12886. },
  12887. {
  12888. name: "City Leaner",
  12889. height: math.unit(230, "feet")
  12890. },
  12891. {
  12892. name: "Megamacro",
  12893. height: math.unit(2500, "feet")
  12894. },
  12895. {
  12896. name: "Gigamacro",
  12897. height: math.unit(26400, "feet")
  12898. },
  12899. {
  12900. name: "Tectonic Shifter",
  12901. height: math.unit(1.7, "megameters")
  12902. },
  12903. {
  12904. name: "Planet Carer",
  12905. height: math.unit(21, "megameters")
  12906. },
  12907. {
  12908. name: "God",
  12909. height: math.unit(11157.22, "parsecs")
  12910. },
  12911. ]
  12912. ))
  12913. characterMakers.push(() => makeCharacter(
  12914. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12915. {
  12916. front: {
  12917. height: math.unit(6, "feet"),
  12918. weight: math.unit(120, "lb"),
  12919. name: "Front",
  12920. image: {
  12921. source: "./media/characters/neo/front.svg"
  12922. }
  12923. },
  12924. },
  12925. [
  12926. {
  12927. name: "Micro",
  12928. height: math.unit(2, "inches"),
  12929. default: true
  12930. },
  12931. {
  12932. name: "Human Size",
  12933. height: math.unit(5 + 8 / 12, "feet")
  12934. },
  12935. ]
  12936. ))
  12937. characterMakers.push(() => makeCharacter(
  12938. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12939. {
  12940. front: {
  12941. height: math.unit(13 + 10 / 12, "feet"),
  12942. weight: math.unit(5320, "lb"),
  12943. name: "Front",
  12944. image: {
  12945. source: "./media/characters/chauncey-chantz/front.svg",
  12946. extra: 1587 / 1435,
  12947. bottom: 0.02
  12948. }
  12949. },
  12950. },
  12951. [
  12952. {
  12953. name: "Normal",
  12954. height: math.unit(13 + 10 / 12, "feet"),
  12955. default: true
  12956. },
  12957. {
  12958. name: "Macro",
  12959. height: math.unit(45, "feet")
  12960. },
  12961. {
  12962. name: "Megamacro",
  12963. height: math.unit(250, "miles")
  12964. },
  12965. {
  12966. name: "Planetary",
  12967. height: math.unit(10000, "miles")
  12968. },
  12969. {
  12970. name: "Galactic",
  12971. height: math.unit(40000, "parsecs")
  12972. },
  12973. {
  12974. name: "Universal",
  12975. height: math.unit(1, "yottameter")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12981. {
  12982. front: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Front",
  12986. image: {
  12987. source: "./media/characters/epifox/front.svg",
  12988. extra: 1,
  12989. bottom: 0.075
  12990. }
  12991. },
  12992. },
  12993. [
  12994. {
  12995. name: "Micro",
  12996. height: math.unit(6, "inches")
  12997. },
  12998. {
  12999. name: "Normal",
  13000. height: math.unit(12, "feet"),
  13001. default: true
  13002. },
  13003. {
  13004. name: "Macro",
  13005. height: math.unit(3810, "feet")
  13006. },
  13007. {
  13008. name: "Megamacro",
  13009. height: math.unit(500, "miles")
  13010. },
  13011. ]
  13012. ))
  13013. characterMakers.push(() => makeCharacter(
  13014. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13015. {
  13016. front: {
  13017. height: math.unit(1.8796, "m"),
  13018. weight: math.unit(230, "lb"),
  13019. name: "Front",
  13020. image: {
  13021. source: "./media/characters/colin-t/front.svg",
  13022. extra: 1272 / 1193,
  13023. bottom: 0.07
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Micro",
  13030. height: math.unit(0.571, "meters")
  13031. },
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(1.8796, "meters"),
  13035. default: true
  13036. },
  13037. {
  13038. name: "Tall",
  13039. height: math.unit(4, "meters")
  13040. },
  13041. {
  13042. name: "Macro",
  13043. height: math.unit(67.241, "meters")
  13044. },
  13045. {
  13046. name: "Megamacro",
  13047. height: math.unit(371.856, "meters")
  13048. },
  13049. {
  13050. name: "Planetary",
  13051. height: math.unit(12631.5689, "km")
  13052. },
  13053. ]
  13054. ))
  13055. characterMakers.push(() => makeCharacter(
  13056. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13057. {
  13058. front: {
  13059. height: math.unit(1.85, "meters"),
  13060. weight: math.unit(80, "kg"),
  13061. name: "Front",
  13062. image: {
  13063. source: "./media/characters/matvei/front.svg",
  13064. extra: 456/447,
  13065. bottom: 8/464
  13066. }
  13067. },
  13068. back: {
  13069. height: math.unit(1.85, "meters"),
  13070. weight: math.unit(80, "kg"),
  13071. name: "Back",
  13072. image: {
  13073. source: "./media/characters/matvei/back.svg",
  13074. extra: 434/427,
  13075. bottom: 11/445
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Normal",
  13082. height: math.unit(1.85, "meters"),
  13083. default: true
  13084. },
  13085. ]
  13086. ))
  13087. characterMakers.push(() => makeCharacter(
  13088. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13089. {
  13090. front: {
  13091. height: math.unit(5 + 9 / 12, "feet"),
  13092. weight: math.unit(70, "lb"),
  13093. name: "Front",
  13094. image: {
  13095. source: "./media/characters/quincy/front.svg",
  13096. extra: 3041 / 2751
  13097. }
  13098. },
  13099. back: {
  13100. height: math.unit(5 + 9 / 12, "feet"),
  13101. weight: math.unit(70, "lb"),
  13102. name: "Back",
  13103. image: {
  13104. source: "./media/characters/quincy/back.svg",
  13105. extra: 3041 / 2751
  13106. }
  13107. },
  13108. flying: {
  13109. height: math.unit(5 + 4 / 12, "feet"),
  13110. weight: math.unit(70, "lb"),
  13111. name: "Flying",
  13112. image: {
  13113. source: "./media/characters/quincy/flying.svg",
  13114. extra: 1044 / 930
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Micro",
  13121. height: math.unit(3, "cm")
  13122. },
  13123. {
  13124. name: "Normal",
  13125. height: math.unit(5 + 9 / 12, "feet")
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(200, "meters"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Megamacro",
  13134. height: math.unit(1000, "meters")
  13135. },
  13136. ]
  13137. ))
  13138. characterMakers.push(() => makeCharacter(
  13139. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13140. {
  13141. front: {
  13142. height: math.unit(3 + 11/12, "feet"),
  13143. weight: math.unit(50, "lb"),
  13144. name: "Front",
  13145. image: {
  13146. source: "./media/characters/vanrel/front.svg",
  13147. extra: 1104/949,
  13148. bottom: 52/1156
  13149. }
  13150. },
  13151. back: {
  13152. height: math.unit(3 + 11/12, "feet"),
  13153. weight: math.unit(50, "lb"),
  13154. name: "Back",
  13155. image: {
  13156. source: "./media/characters/vanrel/back.svg",
  13157. extra: 1119/976,
  13158. bottom: 37/1156
  13159. }
  13160. },
  13161. tome: {
  13162. height: math.unit(1.35, "feet"),
  13163. weight: math.unit(10, "lb"),
  13164. name: "Vanrel's Tome",
  13165. rename: true,
  13166. image: {
  13167. source: "./media/characters/vanrel/tome.svg"
  13168. }
  13169. },
  13170. beans: {
  13171. height: math.unit(0.89, "feet"),
  13172. name: "Beans",
  13173. image: {
  13174. source: "./media/characters/vanrel/beans.svg"
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(3 + 11/12, "feet"),
  13182. default: true
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13188. {
  13189. front: {
  13190. height: math.unit(7 + 5 / 12, "feet"),
  13191. name: "Front",
  13192. image: {
  13193. source: "./media/characters/kuiper-vanrel/front.svg",
  13194. extra: 1219/1169,
  13195. bottom: 69/1288
  13196. }
  13197. },
  13198. back: {
  13199. height: math.unit(7 + 5 / 12, "feet"),
  13200. name: "Back",
  13201. image: {
  13202. source: "./media/characters/kuiper-vanrel/back.svg",
  13203. extra: 1236/1193,
  13204. bottom: 27/1263
  13205. }
  13206. },
  13207. foot: {
  13208. height: math.unit(0.55, "meters"),
  13209. name: "Foot",
  13210. image: {
  13211. source: "./media/characters/kuiper-vanrel/foot.svg",
  13212. }
  13213. },
  13214. battle: {
  13215. height: math.unit(6.824, "feet"),
  13216. name: "Battle",
  13217. image: {
  13218. source: "./media/characters/kuiper-vanrel/battle.svg",
  13219. extra: 1466 / 1327,
  13220. bottom: 29 / 1492.5
  13221. }
  13222. },
  13223. meerkui: {
  13224. height: math.unit(18, "inches"),
  13225. name: "Meerkui",
  13226. image: {
  13227. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13228. extra: 1354/1289,
  13229. bottom: 69/1423
  13230. }
  13231. },
  13232. },
  13233. [
  13234. {
  13235. name: "Normal",
  13236. height: math.unit(7 + 5 / 12, "feet"),
  13237. default: true
  13238. },
  13239. ]
  13240. ))
  13241. characterMakers.push(() => makeCharacter(
  13242. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13243. {
  13244. front: {
  13245. height: math.unit(8 + 5 / 12, "feet"),
  13246. name: "Front",
  13247. image: {
  13248. source: "./media/characters/keset-vanrel/front.svg",
  13249. extra: 1231/1148,
  13250. bottom: 82/1313
  13251. }
  13252. },
  13253. back: {
  13254. height: math.unit(8 + 5 / 12, "feet"),
  13255. name: "Back",
  13256. image: {
  13257. source: "./media/characters/keset-vanrel/back.svg",
  13258. extra: 1240/1174,
  13259. bottom: 33/1273
  13260. }
  13261. },
  13262. hand: {
  13263. height: math.unit(0.6, "meters"),
  13264. name: "Hand",
  13265. image: {
  13266. source: "./media/characters/keset-vanrel/hand.svg"
  13267. }
  13268. },
  13269. foot: {
  13270. height: math.unit(0.94978, "meters"),
  13271. name: "Foot",
  13272. image: {
  13273. source: "./media/characters/keset-vanrel/foot.svg"
  13274. }
  13275. },
  13276. battle: {
  13277. height: math.unit(7.408, "feet"),
  13278. name: "Battle",
  13279. image: {
  13280. source: "./media/characters/keset-vanrel/battle.svg",
  13281. extra: 1890 / 1386,
  13282. bottom: 73.28 / 1970
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Normal",
  13289. height: math.unit(8 + 5 / 12, "feet"),
  13290. default: true
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13296. {
  13297. front: {
  13298. height: math.unit(6, "feet"),
  13299. weight: math.unit(150, "lb"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/neos/front.svg",
  13303. extra: 1696 / 992,
  13304. bottom: 0.14
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(54, "cm"),
  13312. default: true
  13313. },
  13314. {
  13315. name: "Macro",
  13316. height: math.unit(100, "m")
  13317. },
  13318. {
  13319. name: "Megamacro",
  13320. height: math.unit(10, "km")
  13321. },
  13322. {
  13323. name: "Megamacro+",
  13324. height: math.unit(100, "km")
  13325. },
  13326. {
  13327. name: "Gigamacro",
  13328. height: math.unit(100, "Mm")
  13329. },
  13330. {
  13331. name: "Teramacro",
  13332. height: math.unit(100, "Gm")
  13333. },
  13334. {
  13335. name: "Examacro",
  13336. height: math.unit(100, "Em")
  13337. },
  13338. {
  13339. name: "Godly",
  13340. height: math.unit(10000, "Ym")
  13341. },
  13342. {
  13343. name: "Beyond Godly",
  13344. height: math.unit(25, "multiverses")
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13350. {
  13351. feminine: {
  13352. height: math.unit(5, "feet"),
  13353. weight: math.unit(100, "lb"),
  13354. name: "Feminine",
  13355. image: {
  13356. source: "./media/characters/sammy-mouse/feminine.svg",
  13357. extra: 2526 / 2425,
  13358. bottom: 0.123
  13359. }
  13360. },
  13361. masculine: {
  13362. height: math.unit(5, "feet"),
  13363. weight: math.unit(100, "lb"),
  13364. name: "Masculine",
  13365. image: {
  13366. source: "./media/characters/sammy-mouse/masculine.svg",
  13367. extra: 2526 / 2425,
  13368. bottom: 0.123
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Micro",
  13375. height: math.unit(5, "inches")
  13376. },
  13377. {
  13378. name: "Normal",
  13379. height: math.unit(5, "feet"),
  13380. default: true
  13381. },
  13382. {
  13383. name: "Macro",
  13384. height: math.unit(60, "feet")
  13385. },
  13386. ]
  13387. ))
  13388. characterMakers.push(() => makeCharacter(
  13389. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13390. {
  13391. front: {
  13392. height: math.unit(4, "feet"),
  13393. weight: math.unit(50, "lb"),
  13394. name: "Front",
  13395. image: {
  13396. source: "./media/characters/kole/front.svg",
  13397. extra: 1423 / 1303,
  13398. bottom: 0.025
  13399. }
  13400. },
  13401. back: {
  13402. height: math.unit(4, "feet"),
  13403. weight: math.unit(50, "lb"),
  13404. name: "Back",
  13405. image: {
  13406. source: "./media/characters/kole/back.svg",
  13407. extra: 1426 / 1280,
  13408. bottom: 0.02
  13409. }
  13410. },
  13411. },
  13412. [
  13413. {
  13414. name: "Normal",
  13415. height: math.unit(4, "feet"),
  13416. default: true
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13422. {
  13423. front: {
  13424. height: math.unit(2.5, "feet"),
  13425. weight: math.unit(32, "lb"),
  13426. name: "Front",
  13427. image: {
  13428. source: "./media/characters/rufran/front.svg",
  13429. extra: 1313/885,
  13430. bottom: 94/1407
  13431. }
  13432. },
  13433. side: {
  13434. height: math.unit(2.5, "feet"),
  13435. weight: math.unit(32, "lb"),
  13436. name: "Side",
  13437. image: {
  13438. source: "./media/characters/rufran/side.svg",
  13439. extra: 1109/852,
  13440. bottom: 118/1227
  13441. }
  13442. },
  13443. back: {
  13444. height: math.unit(2.5, "feet"),
  13445. weight: math.unit(32, "lb"),
  13446. name: "Back",
  13447. image: {
  13448. source: "./media/characters/rufran/back.svg",
  13449. extra: 1280/878,
  13450. bottom: 131/1411
  13451. }
  13452. },
  13453. mouth: {
  13454. height: math.unit(1.13, "feet"),
  13455. name: "Mouth",
  13456. image: {
  13457. source: "./media/characters/rufran/mouth.svg"
  13458. }
  13459. },
  13460. foot: {
  13461. height: math.unit(1.33, "feet"),
  13462. name: "Foot",
  13463. image: {
  13464. source: "./media/characters/rufran/foot.svg"
  13465. }
  13466. },
  13467. koboldFront: {
  13468. height: math.unit(2 + 6 / 12, "feet"),
  13469. weight: math.unit(20, "lb"),
  13470. name: "Front (Kobold)",
  13471. image: {
  13472. source: "./media/characters/rufran/kobold-front.svg",
  13473. extra: 2041 / 1839,
  13474. bottom: 0.055
  13475. }
  13476. },
  13477. koboldBack: {
  13478. height: math.unit(2 + 6 / 12, "feet"),
  13479. weight: math.unit(20, "lb"),
  13480. name: "Back (Kobold)",
  13481. image: {
  13482. source: "./media/characters/rufran/kobold-back.svg",
  13483. extra: 2054 / 1839,
  13484. bottom: 0.01
  13485. }
  13486. },
  13487. koboldHand: {
  13488. height: math.unit(0.2166, "meters"),
  13489. name: "Hand (Kobold)",
  13490. image: {
  13491. source: "./media/characters/rufran/kobold-hand.svg"
  13492. }
  13493. },
  13494. koboldFoot: {
  13495. height: math.unit(0.185, "meters"),
  13496. name: "Foot (Kobold)",
  13497. image: {
  13498. source: "./media/characters/rufran/kobold-foot.svg"
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Micro",
  13505. height: math.unit(1, "inch")
  13506. },
  13507. {
  13508. name: "Normal",
  13509. height: math.unit(2 + 6 / 12, "feet"),
  13510. default: true
  13511. },
  13512. {
  13513. name: "Big",
  13514. height: math.unit(60, "feet")
  13515. },
  13516. {
  13517. name: "Macro",
  13518. height: math.unit(325, "feet")
  13519. },
  13520. ]
  13521. ))
  13522. characterMakers.push(() => makeCharacter(
  13523. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13524. {
  13525. front: {
  13526. height: math.unit(0.3, "meters"),
  13527. weight: math.unit(3.5, "kg"),
  13528. name: "Front",
  13529. image: {
  13530. source: "./media/characters/chip/front.svg",
  13531. extra: 748 / 674
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Micro",
  13538. height: math.unit(1, "inch"),
  13539. default: true
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13545. {
  13546. side: {
  13547. height: math.unit(2.3, "meters"),
  13548. weight: math.unit(3500, "lb"),
  13549. name: "Side",
  13550. image: {
  13551. source: "./media/characters/torvid/side.svg",
  13552. extra: 1972 / 722,
  13553. bottom: 0.035
  13554. }
  13555. },
  13556. },
  13557. [
  13558. {
  13559. name: "Normal",
  13560. height: math.unit(2.3, "meters"),
  13561. default: true
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(2, "meters"),
  13570. weight: math.unit(150.5, "kg"),
  13571. name: "Front",
  13572. image: {
  13573. source: "./media/characters/susan/front.svg",
  13574. extra: 693 / 635,
  13575. bottom: 0.05
  13576. }
  13577. },
  13578. },
  13579. [
  13580. {
  13581. name: "Megamacro",
  13582. height: math.unit(505, "miles"),
  13583. default: true
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13589. {
  13590. front: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(150, "lb"),
  13593. name: "Front",
  13594. image: {
  13595. source: "./media/characters/raindrops/front.svg",
  13596. extra: 2655 / 2461,
  13597. bottom: 49 / 2705
  13598. }
  13599. },
  13600. back: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(150, "lb"),
  13603. name: "Back",
  13604. image: {
  13605. source: "./media/characters/raindrops/back.svg",
  13606. extra: 2574 / 2400,
  13607. bottom: 65 / 2634
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Micro",
  13614. height: math.unit(6, "inches")
  13615. },
  13616. {
  13617. name: "Normal",
  13618. height: math.unit(6 + 2 / 12, "feet")
  13619. },
  13620. {
  13621. name: "Macro",
  13622. height: math.unit(131, "feet"),
  13623. default: true
  13624. },
  13625. {
  13626. name: "Megamacro",
  13627. height: math.unit(15, "miles")
  13628. },
  13629. {
  13630. name: "Gigamacro",
  13631. height: math.unit(4000, "miles")
  13632. },
  13633. {
  13634. name: "Teramacro",
  13635. height: math.unit(315000, "miles")
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13641. {
  13642. front: {
  13643. height: math.unit(2.794, "meters"),
  13644. weight: math.unit(325, "kg"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/tezwa/front.svg",
  13648. extra: 2083 / 1906,
  13649. bottom: 0.031
  13650. }
  13651. },
  13652. foot: {
  13653. height: math.unit(0.687, "meters"),
  13654. name: "Foot",
  13655. image: {
  13656. source: "./media/characters/tezwa/foot.svg"
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Normal",
  13663. height: math.unit(9 + 2 / 12, "feet"),
  13664. default: true
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(58, "feet"),
  13673. weight: math.unit(89000, "lb"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/typhus/front.svg",
  13677. extra: 816 / 800,
  13678. bottom: 0.065
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Macro",
  13685. height: math.unit(58, "feet"),
  13686. default: true
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13692. {
  13693. front: {
  13694. height: math.unit(12, "feet"),
  13695. weight: math.unit(6, "tonnes"),
  13696. name: "Front",
  13697. image: {
  13698. source: "./media/characters/lyra-von-wulf/front.svg",
  13699. extra: 1,
  13700. bottom: 0.10
  13701. }
  13702. },
  13703. frontMecha: {
  13704. height: math.unit(12, "feet"),
  13705. weight: math.unit(12, "tonnes"),
  13706. name: "Front (Mecha)",
  13707. image: {
  13708. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13709. extra: 1,
  13710. bottom: 0.042
  13711. }
  13712. },
  13713. maw: {
  13714. height: math.unit(2.2, "feet"),
  13715. name: "Maw",
  13716. image: {
  13717. source: "./media/characters/lyra-von-wulf/maw.svg"
  13718. }
  13719. },
  13720. },
  13721. [
  13722. {
  13723. name: "Normal",
  13724. height: math.unit(12, "feet"),
  13725. default: true
  13726. },
  13727. {
  13728. name: "Classic",
  13729. height: math.unit(50, "feet")
  13730. },
  13731. {
  13732. name: "Macro",
  13733. height: math.unit(500, "feet")
  13734. },
  13735. {
  13736. name: "Megamacro",
  13737. height: math.unit(1, "mile")
  13738. },
  13739. {
  13740. name: "Gigamacro",
  13741. height: math.unit(400, "miles")
  13742. },
  13743. {
  13744. name: "Teramacro",
  13745. height: math.unit(22000, "miles")
  13746. },
  13747. {
  13748. name: "Solarmacro",
  13749. height: math.unit(8600000, "miles")
  13750. },
  13751. {
  13752. name: "Galactic",
  13753. height: math.unit(1057000, "lightyears")
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(6 + 10 / 12, "feet"),
  13762. weight: math.unit(150, "lb"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/dixon/front.svg",
  13766. extra: 3361 / 3209,
  13767. bottom: 0.01
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Normal",
  13774. height: math.unit(6 + 10 / 12, "feet"),
  13775. default: true
  13776. },
  13777. {
  13778. name: "Big",
  13779. height: math.unit(12, "meters")
  13780. },
  13781. {
  13782. name: "Macro",
  13783. height: math.unit(500, "meters")
  13784. },
  13785. {
  13786. name: "Megamacro",
  13787. height: math.unit(2, "km")
  13788. },
  13789. ]
  13790. ))
  13791. characterMakers.push(() => makeCharacter(
  13792. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13793. {
  13794. front: {
  13795. height: math.unit(185, "cm"),
  13796. weight: math.unit(68, "kg"),
  13797. name: "Front",
  13798. image: {
  13799. source: "./media/characters/kauko/front.svg",
  13800. extra: 1455 / 1421,
  13801. bottom: 0.03
  13802. }
  13803. },
  13804. back: {
  13805. height: math.unit(185, "cm"),
  13806. weight: math.unit(68, "kg"),
  13807. name: "Back",
  13808. image: {
  13809. source: "./media/characters/kauko/back.svg",
  13810. extra: 1455 / 1421,
  13811. bottom: 0.004
  13812. }
  13813. },
  13814. },
  13815. [
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(185, "cm"),
  13819. default: true
  13820. },
  13821. ]
  13822. ))
  13823. characterMakers.push(() => makeCharacter(
  13824. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13825. {
  13826. frontSfw: {
  13827. height: math.unit(5, "meters"),
  13828. weight: math.unit(4250, "lb"),
  13829. name: "Front",
  13830. image: {
  13831. source: "./media/characters/varg/front-sfw.svg",
  13832. extra: 1103/1010,
  13833. bottom: 50/1153
  13834. },
  13835. form: "anthro",
  13836. default: true
  13837. },
  13838. backSfw: {
  13839. height: math.unit(5, "meters"),
  13840. weight: math.unit(4250, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/varg/back-sfw.svg",
  13844. extra: 1038/1022,
  13845. bottom: 36/1074
  13846. },
  13847. form: "anthro"
  13848. },
  13849. frontNsfw: {
  13850. height: math.unit(5, "meters"),
  13851. weight: math.unit(4250, "lb"),
  13852. name: "Front (NSFW)",
  13853. image: {
  13854. source: "./media/characters/varg/front-nsfw.svg",
  13855. extra: 1103/1010,
  13856. bottom: 50/1153
  13857. },
  13858. form: "anthro"
  13859. },
  13860. sheath: {
  13861. height: math.unit(3.8, "feet"),
  13862. weight: math.unit(90, "kilograms"),
  13863. name: "Sheath",
  13864. image: {
  13865. source: "./media/characters/varg/sheath.svg"
  13866. },
  13867. form: "anthro"
  13868. },
  13869. dick: {
  13870. height: math.unit(4.6, "feet"),
  13871. weight: math.unit(451, "kilograms"),
  13872. name: "Dick",
  13873. image: {
  13874. source: "./media/characters/varg/dick.svg"
  13875. },
  13876. form: "anthro"
  13877. },
  13878. feralSfw: {
  13879. height: math.unit(5, "meters"),
  13880. weight: math.unit(100000, "lb"),
  13881. name: "Side",
  13882. image: {
  13883. source: "./media/characters/varg/feral-sfw.svg",
  13884. extra: 1065/511,
  13885. bottom: 211/1276
  13886. },
  13887. form: "feral",
  13888. default: true
  13889. },
  13890. feralNsfw: {
  13891. height: math.unit(5, "meters"),
  13892. weight: math.unit(100000, "lb"),
  13893. name: "Side (NSFW)",
  13894. image: {
  13895. source: "./media/characters/varg/feral-nsfw.svg",
  13896. extra: 1065/511,
  13897. bottom: 211/1276
  13898. },
  13899. form: "feral",
  13900. },
  13901. feralSheath: {
  13902. height: math.unit(9.8, "feet"),
  13903. weight: math.unit(2000, "kilograms"),
  13904. name: "Sheath",
  13905. image: {
  13906. source: "./media/characters/varg/sheath.svg"
  13907. },
  13908. form: "feral"
  13909. },
  13910. feralDick: {
  13911. height: math.unit(13.11, "feet"),
  13912. weight: math.unit(10440, "kilograms"),
  13913. name: "Dick",
  13914. image: {
  13915. source: "./media/characters/varg/dick.svg"
  13916. },
  13917. form: "feral"
  13918. },
  13919. },
  13920. [
  13921. {
  13922. name: "Normal",
  13923. height: math.unit(5, "meters"),
  13924. form: "anthro"
  13925. },
  13926. {
  13927. name: "Macro",
  13928. height: math.unit(200, "meters"),
  13929. form: "anthro"
  13930. },
  13931. {
  13932. name: "Megamacro",
  13933. height: math.unit(20, "kilometers"),
  13934. form: "anthro"
  13935. },
  13936. {
  13937. name: "True Size",
  13938. height: math.unit(211, "km"),
  13939. form: "anthro",
  13940. default: true
  13941. },
  13942. {
  13943. name: "Gigamacro",
  13944. height: math.unit(1000, "km"),
  13945. form: "anthro"
  13946. },
  13947. {
  13948. name: "Gigamacro+",
  13949. height: math.unit(8000, "km"),
  13950. form: "anthro"
  13951. },
  13952. {
  13953. name: "Teramacro",
  13954. height: math.unit(1000000, "km"),
  13955. form: "anthro"
  13956. },
  13957. {
  13958. name: "Normal",
  13959. height: math.unit(5, "meters"),
  13960. form: "feral"
  13961. },
  13962. {
  13963. name: "Macro",
  13964. height: math.unit(200, "meters"),
  13965. form: "feral"
  13966. },
  13967. {
  13968. name: "Megamacro",
  13969. height: math.unit(20, "kilometers"),
  13970. form: "feral"
  13971. },
  13972. {
  13973. name: "True Size",
  13974. height: math.unit(211, "km"),
  13975. form: "feral",
  13976. default: true
  13977. },
  13978. {
  13979. name: "Gigamacro",
  13980. height: math.unit(1000, "km"),
  13981. form: "feral"
  13982. },
  13983. {
  13984. name: "Gigamacro+",
  13985. height: math.unit(8000, "km"),
  13986. form: "feral"
  13987. },
  13988. {
  13989. name: "Teramacro",
  13990. height: math.unit(1000000, "km"),
  13991. form: "feral"
  13992. },
  13993. ],
  13994. {
  13995. "anthro": {
  13996. name: "Anthro",
  13997. default: true
  13998. },
  13999. "feral": {
  14000. name: "Feral",
  14001. },
  14002. }
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(7 + 7 / 12, "feet"),
  14009. weight: math.unit(267, "lb"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/dayza/front.svg",
  14013. extra: 1262 / 1200,
  14014. bottom: 0.035
  14015. }
  14016. },
  14017. side: {
  14018. height: math.unit(7 + 7 / 12, "feet"),
  14019. weight: math.unit(267, "lb"),
  14020. name: "Side",
  14021. image: {
  14022. source: "./media/characters/dayza/side.svg",
  14023. extra: 1295 / 1245,
  14024. bottom: 0.05
  14025. }
  14026. },
  14027. back: {
  14028. height: math.unit(7 + 7 / 12, "feet"),
  14029. weight: math.unit(267, "lb"),
  14030. name: "Back",
  14031. image: {
  14032. source: "./media/characters/dayza/back.svg",
  14033. extra: 1241 / 1170
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Normal",
  14040. height: math.unit(7 + 7 / 12, "feet"),
  14041. default: true
  14042. },
  14043. {
  14044. name: "Macro",
  14045. height: math.unit(155, "feet")
  14046. },
  14047. ]
  14048. ))
  14049. characterMakers.push(() => makeCharacter(
  14050. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14051. {
  14052. front: {
  14053. height: math.unit(6 + 5 / 12, "feet"),
  14054. weight: math.unit(160, "lb"),
  14055. name: "Front",
  14056. image: {
  14057. source: "./media/characters/xanthos/front.svg",
  14058. extra: 1,
  14059. bottom: 0.04
  14060. }
  14061. },
  14062. back: {
  14063. height: math.unit(6 + 5 / 12, "feet"),
  14064. weight: math.unit(160, "lb"),
  14065. name: "Back",
  14066. image: {
  14067. source: "./media/characters/xanthos/back.svg",
  14068. extra: 1,
  14069. bottom: 0.03
  14070. }
  14071. },
  14072. hand: {
  14073. height: math.unit(0.928, "feet"),
  14074. name: "Hand",
  14075. image: {
  14076. source: "./media/characters/xanthos/hand.svg"
  14077. }
  14078. },
  14079. foot: {
  14080. height: math.unit(1.286, "feet"),
  14081. name: "Foot",
  14082. image: {
  14083. source: "./media/characters/xanthos/foot.svg"
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Normal",
  14090. height: math.unit(6 + 5 / 12, "feet"),
  14091. default: true
  14092. },
  14093. {
  14094. name: "Normal+",
  14095. height: math.unit(6, "meters")
  14096. },
  14097. {
  14098. name: "Macro",
  14099. height: math.unit(40, "feet")
  14100. },
  14101. {
  14102. name: "Macro+",
  14103. height: math.unit(200, "meters")
  14104. },
  14105. {
  14106. name: "Megamacro",
  14107. height: math.unit(20, "km")
  14108. },
  14109. {
  14110. name: "Megamacro+",
  14111. height: math.unit(100, "km")
  14112. },
  14113. {
  14114. name: "Gigamacro",
  14115. height: math.unit(200, "megameters")
  14116. },
  14117. {
  14118. name: "Gigamacro+",
  14119. height: math.unit(1.5, "gigameters")
  14120. },
  14121. ]
  14122. ))
  14123. characterMakers.push(() => makeCharacter(
  14124. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14125. {
  14126. front: {
  14127. height: math.unit(6 + 3 / 12, "feet"),
  14128. weight: math.unit(215, "lb"),
  14129. name: "Front",
  14130. image: {
  14131. source: "./media/characters/grynn/front.svg",
  14132. extra: 4627 / 4209,
  14133. bottom: 0.047
  14134. }
  14135. },
  14136. },
  14137. [
  14138. {
  14139. name: "Micro",
  14140. height: math.unit(6, "inches")
  14141. },
  14142. {
  14143. name: "Normal",
  14144. height: math.unit(6 + 3 / 12, "feet"),
  14145. default: true
  14146. },
  14147. {
  14148. name: "Big",
  14149. height: math.unit(104, "feet")
  14150. },
  14151. {
  14152. name: "Macro",
  14153. height: math.unit(944, "feet")
  14154. },
  14155. {
  14156. name: "Macro+",
  14157. height: math.unit(9480, "feet")
  14158. },
  14159. {
  14160. name: "Megamacro",
  14161. height: math.unit(78752, "feet")
  14162. },
  14163. {
  14164. name: "Megamacro+",
  14165. height: math.unit(630128, "feet")
  14166. },
  14167. {
  14168. name: "Megamacro++",
  14169. height: math.unit(3150695, "feet")
  14170. },
  14171. ]
  14172. ))
  14173. characterMakers.push(() => makeCharacter(
  14174. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14175. {
  14176. front: {
  14177. height: math.unit(7 + 5 / 12, "feet"),
  14178. weight: math.unit(450, "lb"),
  14179. name: "Front",
  14180. image: {
  14181. source: "./media/characters/mocha-aura/front.svg",
  14182. extra: 1907 / 1817,
  14183. bottom: 0.04
  14184. }
  14185. },
  14186. back: {
  14187. height: math.unit(7 + 5 / 12, "feet"),
  14188. weight: math.unit(450, "lb"),
  14189. name: "Back",
  14190. image: {
  14191. source: "./media/characters/mocha-aura/back.svg",
  14192. extra: 1900 / 1825,
  14193. bottom: 0.045
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Nano",
  14200. height: math.unit(1, "nm")
  14201. },
  14202. {
  14203. name: "Megamicro",
  14204. height: math.unit(1, "mm")
  14205. },
  14206. {
  14207. name: "Micro",
  14208. height: math.unit(3, "inches")
  14209. },
  14210. {
  14211. name: "Normal",
  14212. height: math.unit(7 + 5 / 12, "feet"),
  14213. default: true
  14214. },
  14215. {
  14216. name: "Macro",
  14217. height: math.unit(30, "feet")
  14218. },
  14219. {
  14220. name: "Megamacro",
  14221. height: math.unit(3500, "feet")
  14222. },
  14223. {
  14224. name: "Teramacro",
  14225. height: math.unit(500000, "miles")
  14226. },
  14227. {
  14228. name: "Petamacro",
  14229. height: math.unit(50000000000000000, "parsecs")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(6, "feet"),
  14238. weight: math.unit(150, "lb"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/ilisha-devya/front.svg",
  14242. extra: 1053/1049,
  14243. bottom: 270/1323
  14244. }
  14245. },
  14246. back: {
  14247. height: math.unit(6, "feet"),
  14248. weight: math.unit(150, "lb"),
  14249. name: "Back",
  14250. image: {
  14251. source: "./media/characters/ilisha-devya/back.svg",
  14252. extra: 1131/1128,
  14253. bottom: 39/1170
  14254. }
  14255. },
  14256. },
  14257. [
  14258. {
  14259. name: "Macro",
  14260. height: math.unit(500, "feet"),
  14261. default: true
  14262. },
  14263. {
  14264. name: "Megamacro",
  14265. height: math.unit(10, "miles")
  14266. },
  14267. {
  14268. name: "Gigamacro",
  14269. height: math.unit(100000, "miles")
  14270. },
  14271. {
  14272. name: "Examacro",
  14273. height: math.unit(1e9, "lightyears")
  14274. },
  14275. {
  14276. name: "Omniversal",
  14277. height: math.unit(1e33, "lightyears")
  14278. },
  14279. {
  14280. name: "Beyond Infinite",
  14281. height: math.unit(1e100, "lightyears")
  14282. },
  14283. ]
  14284. ))
  14285. characterMakers.push(() => makeCharacter(
  14286. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14287. {
  14288. Side: {
  14289. height: math.unit(6, "feet"),
  14290. weight: math.unit(150, "lb"),
  14291. name: "Side",
  14292. image: {
  14293. source: "./media/characters/mira/side.svg",
  14294. extra: 900 / 799,
  14295. bottom: 0.02
  14296. }
  14297. },
  14298. },
  14299. [
  14300. {
  14301. name: "Human Size",
  14302. height: math.unit(6, "feet")
  14303. },
  14304. {
  14305. name: "Macro",
  14306. height: math.unit(100, "feet"),
  14307. default: true
  14308. },
  14309. {
  14310. name: "Megamacro",
  14311. height: math.unit(10, "miles")
  14312. },
  14313. {
  14314. name: "Gigamacro",
  14315. height: math.unit(25000, "miles")
  14316. },
  14317. {
  14318. name: "Teramacro",
  14319. height: math.unit(300, "AU")
  14320. },
  14321. {
  14322. name: "Full Size",
  14323. height: math.unit(4.5e10, "lightyears")
  14324. },
  14325. ]
  14326. ))
  14327. characterMakers.push(() => makeCharacter(
  14328. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14329. {
  14330. front: {
  14331. height: math.unit(6, "feet"),
  14332. weight: math.unit(150, "lb"),
  14333. name: "Front",
  14334. image: {
  14335. source: "./media/characters/holly/front.svg",
  14336. extra: 639 / 606
  14337. }
  14338. },
  14339. back: {
  14340. height: math.unit(6, "feet"),
  14341. weight: math.unit(150, "lb"),
  14342. name: "Back",
  14343. image: {
  14344. source: "./media/characters/holly/back.svg",
  14345. extra: 623 / 598
  14346. }
  14347. },
  14348. frontWorking: {
  14349. height: math.unit(6, "feet"),
  14350. weight: math.unit(150, "lb"),
  14351. name: "Front (Working)",
  14352. image: {
  14353. source: "./media/characters/holly/front-working.svg",
  14354. extra: 607 / 577,
  14355. bottom: 0.048
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(12 + 3 / 12, "feet"),
  14363. default: true
  14364. },
  14365. ]
  14366. ))
  14367. characterMakers.push(() => makeCharacter(
  14368. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14369. {
  14370. front: {
  14371. height: math.unit(6, "feet"),
  14372. weight: math.unit(150, "lb"),
  14373. name: "Front",
  14374. image: {
  14375. source: "./media/characters/porter/front.svg",
  14376. extra: 1,
  14377. bottom: 0.01
  14378. }
  14379. },
  14380. frontRobes: {
  14381. height: math.unit(6, "feet"),
  14382. weight: math.unit(150, "lb"),
  14383. name: "Front (Robes)",
  14384. image: {
  14385. source: "./media/characters/porter/front-robes.svg",
  14386. extra: 1.01,
  14387. bottom: 0.01
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Normal",
  14394. height: math.unit(11 + 9 / 12, "feet"),
  14395. default: true
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14401. {
  14402. legendary: {
  14403. height: math.unit(6, "feet"),
  14404. weight: math.unit(150, "lb"),
  14405. name: "Legendary",
  14406. image: {
  14407. source: "./media/characters/lucy/legendary.svg",
  14408. extra: 1355 / 1100,
  14409. bottom: 0.045
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Legendary",
  14416. height: math.unit(86882 * 2, "miles"),
  14417. default: true
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/drusilla/front.svg",
  14430. extra: 678 / 635,
  14431. bottom: 0.03
  14432. }
  14433. },
  14434. back: {
  14435. height: math.unit(6, "feet"),
  14436. weight: math.unit(150, "lb"),
  14437. name: "Back",
  14438. image: {
  14439. source: "./media/characters/drusilla/back.svg",
  14440. extra: 678 / 635,
  14441. bottom: 0.005
  14442. }
  14443. },
  14444. },
  14445. [
  14446. {
  14447. name: "Macro",
  14448. height: math.unit(100, "feet")
  14449. },
  14450. {
  14451. name: "Canon Height",
  14452. height: math.unit(2000, "feet"),
  14453. default: true
  14454. },
  14455. ]
  14456. ))
  14457. characterMakers.push(() => makeCharacter(
  14458. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14459. {
  14460. front: {
  14461. height: math.unit(6, "feet"),
  14462. weight: math.unit(180, "lb"),
  14463. name: "Front",
  14464. image: {
  14465. source: "./media/characters/renard-thatch/front.svg",
  14466. extra: 2411 / 2275,
  14467. bottom: 0.01
  14468. }
  14469. },
  14470. frontPosing: {
  14471. height: math.unit(6, "feet"),
  14472. weight: math.unit(180, "lb"),
  14473. name: "Front (Posing)",
  14474. image: {
  14475. source: "./media/characters/renard-thatch/front-posing.svg",
  14476. extra: 2381 / 2261,
  14477. bottom: 0.01
  14478. }
  14479. },
  14480. back: {
  14481. height: math.unit(6, "feet"),
  14482. weight: math.unit(180, "lb"),
  14483. name: "Back",
  14484. image: {
  14485. source: "./media/characters/renard-thatch/back.svg",
  14486. extra: 2428 / 2288
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Micro",
  14493. height: math.unit(3, "inches")
  14494. },
  14495. {
  14496. name: "Default",
  14497. height: math.unit(6, "feet"),
  14498. default: true
  14499. },
  14500. {
  14501. name: "Macro",
  14502. height: math.unit(75, "feet")
  14503. },
  14504. ]
  14505. ))
  14506. characterMakers.push(() => makeCharacter(
  14507. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14508. {
  14509. front: {
  14510. height: math.unit(1450, "feet"),
  14511. weight: math.unit(1.21e6, "tons"),
  14512. name: "Front",
  14513. image: {
  14514. source: "./media/characters/sekvra/front.svg",
  14515. extra: 1193/1190,
  14516. bottom: 78/1271
  14517. }
  14518. },
  14519. side: {
  14520. height: math.unit(1450, "feet"),
  14521. weight: math.unit(1.21e6, "tons"),
  14522. name: "Side",
  14523. image: {
  14524. source: "./media/characters/sekvra/side.svg",
  14525. extra: 1193/1190,
  14526. bottom: 52/1245
  14527. }
  14528. },
  14529. back: {
  14530. height: math.unit(1450, "feet"),
  14531. weight: math.unit(1.21e6, "tons"),
  14532. name: "Back",
  14533. image: {
  14534. source: "./media/characters/sekvra/back.svg",
  14535. extra: 1219/1216,
  14536. bottom: 21/1240
  14537. }
  14538. },
  14539. frontClothed: {
  14540. height: math.unit(1450, "feet"),
  14541. weight: math.unit(1.21e6, "tons"),
  14542. name: "Front (Clothed)",
  14543. image: {
  14544. source: "./media/characters/sekvra/front-clothed.svg",
  14545. extra: 1192/1189,
  14546. bottom: 79/1271
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Macro",
  14553. height: math.unit(1450, "feet"),
  14554. default: true
  14555. },
  14556. {
  14557. name: "Megamacro",
  14558. height: math.unit(15000, "feet")
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14564. {
  14565. front: {
  14566. height: math.unit(6, "feet"),
  14567. weight: math.unit(150, "lb"),
  14568. name: "Front",
  14569. image: {
  14570. source: "./media/characters/carmine/front.svg",
  14571. extra: 1,
  14572. bottom: 0.035
  14573. }
  14574. },
  14575. frontArmor: {
  14576. height: math.unit(6, "feet"),
  14577. weight: math.unit(150, "lb"),
  14578. name: "Front (Armor)",
  14579. image: {
  14580. source: "./media/characters/carmine/front-armor.svg",
  14581. extra: 1,
  14582. bottom: 0.035
  14583. }
  14584. },
  14585. },
  14586. [
  14587. {
  14588. name: "Large",
  14589. height: math.unit(1, "mile")
  14590. },
  14591. {
  14592. name: "Huge",
  14593. height: math.unit(40, "miles"),
  14594. default: true
  14595. },
  14596. {
  14597. name: "Colossal",
  14598. height: math.unit(2500, "miles")
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14604. {
  14605. front: {
  14606. height: math.unit(6, "feet"),
  14607. weight: math.unit(150, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/elyssia/front.svg",
  14611. extra: 2201 / 2035,
  14612. bottom: 0.05
  14613. }
  14614. },
  14615. frontClothed: {
  14616. height: math.unit(6, "feet"),
  14617. weight: math.unit(150, "lb"),
  14618. name: "Front (Clothed)",
  14619. image: {
  14620. source: "./media/characters/elyssia/front-clothed.svg",
  14621. extra: 2201 / 2035,
  14622. bottom: 0.05
  14623. }
  14624. },
  14625. back: {
  14626. height: math.unit(6, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Back",
  14629. image: {
  14630. source: "./media/characters/elyssia/back.svg",
  14631. extra: 2201 / 2035,
  14632. bottom: 0.013
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Smaller",
  14639. height: math.unit(150, "feet")
  14640. },
  14641. {
  14642. name: "Standard",
  14643. height: math.unit(1400, "feet"),
  14644. default: true
  14645. },
  14646. {
  14647. name: "Distracted",
  14648. height: math.unit(15000, "feet")
  14649. },
  14650. ]
  14651. ))
  14652. characterMakers.push(() => makeCharacter(
  14653. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14654. {
  14655. front: {
  14656. height: math.unit(7 + 4/12, "feet"),
  14657. weight: math.unit(690, "lb"),
  14658. name: "Front",
  14659. image: {
  14660. source: "./media/characters/geno-maxwell/front.svg",
  14661. extra: 984/856,
  14662. bottom: 87/1071
  14663. }
  14664. },
  14665. back: {
  14666. height: math.unit(7 + 4/12, "feet"),
  14667. weight: math.unit(690, "lb"),
  14668. name: "Back",
  14669. image: {
  14670. source: "./media/characters/geno-maxwell/back.svg",
  14671. extra: 981/854,
  14672. bottom: 57/1038
  14673. }
  14674. },
  14675. frontCostume: {
  14676. height: math.unit(7 + 4/12, "feet"),
  14677. weight: math.unit(690, "lb"),
  14678. name: "Front (Costume)",
  14679. image: {
  14680. source: "./media/characters/geno-maxwell/front-costume.svg",
  14681. extra: 984/856,
  14682. bottom: 87/1071
  14683. }
  14684. },
  14685. backcostume: {
  14686. height: math.unit(7 + 4/12, "feet"),
  14687. weight: math.unit(690, "lb"),
  14688. name: "Back (Costume)",
  14689. image: {
  14690. source: "./media/characters/geno-maxwell/back-costume.svg",
  14691. extra: 981/854,
  14692. bottom: 57/1038
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Micro",
  14699. height: math.unit(3, "inches")
  14700. },
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(7 + 4 / 12, "feet"),
  14704. default: true
  14705. },
  14706. {
  14707. name: "Macro",
  14708. height: math.unit(220, "feet")
  14709. },
  14710. {
  14711. name: "Megamacro",
  14712. height: math.unit(11, "miles")
  14713. },
  14714. ]
  14715. ))
  14716. characterMakers.push(() => makeCharacter(
  14717. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14718. {
  14719. front: {
  14720. height: math.unit(7 + 4/12, "feet"),
  14721. weight: math.unit(750, "lb"),
  14722. name: "Front",
  14723. image: {
  14724. source: "./media/characters/regena-maxwell/front.svg",
  14725. extra: 984/856,
  14726. bottom: 87/1071
  14727. }
  14728. },
  14729. back: {
  14730. height: math.unit(7 + 4/12, "feet"),
  14731. weight: math.unit(750, "lb"),
  14732. name: "Back",
  14733. image: {
  14734. source: "./media/characters/regena-maxwell/back.svg",
  14735. extra: 981/854,
  14736. bottom: 57/1038
  14737. }
  14738. },
  14739. frontCostume: {
  14740. height: math.unit(7 + 4/12, "feet"),
  14741. weight: math.unit(750, "lb"),
  14742. name: "Front (Costume)",
  14743. image: {
  14744. source: "./media/characters/regena-maxwell/front-costume.svg",
  14745. extra: 984/856,
  14746. bottom: 87/1071
  14747. }
  14748. },
  14749. backcostume: {
  14750. height: math.unit(7 + 4/12, "feet"),
  14751. weight: math.unit(750, "lb"),
  14752. name: "Back (Costume)",
  14753. image: {
  14754. source: "./media/characters/regena-maxwell/back-costume.svg",
  14755. extra: 981/854,
  14756. bottom: 57/1038
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(7 + 4 / 12, "feet"),
  14764. default: true
  14765. },
  14766. {
  14767. name: "Macro",
  14768. height: math.unit(220, "feet")
  14769. },
  14770. {
  14771. name: "Megamacro",
  14772. height: math.unit(11, "miles")
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(6, "feet"),
  14781. weight: math.unit(150, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14785. extra: 860 / 690,
  14786. bottom: 0.03
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(1.7, "meters"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(6, "feet"),
  14803. weight: math.unit(150, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/quilly/front.svg",
  14807. extra: 890 / 776
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Gigamacro",
  14814. height: math.unit(404090, "miles"),
  14815. default: true
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(7 + 8 / 12, "feet"),
  14824. weight: math.unit(350, "lb"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/tempest/front.svg",
  14828. extra: 1175 / 1086,
  14829. bottom: 0.02
  14830. }
  14831. },
  14832. },
  14833. [
  14834. {
  14835. name: "Normal",
  14836. height: math.unit(7 + 8 / 12, "feet"),
  14837. default: true
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14843. {
  14844. side: {
  14845. height: math.unit(4 + 5 / 12, "feet"),
  14846. weight: math.unit(80, "lb"),
  14847. name: "Side",
  14848. image: {
  14849. source: "./media/characters/rodger/side.svg",
  14850. extra: 1235 / 1118
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Micro",
  14857. height: math.unit(1, "inch")
  14858. },
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(4 + 5 / 12, "feet"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Macro",
  14866. height: math.unit(120, "feet")
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(150, "lb"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/danyel/front.svg",
  14879. extra: 1185 / 1123,
  14880. bottom: 0.05
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Shrunken",
  14887. height: math.unit(0.5, "mm")
  14888. },
  14889. {
  14890. name: "Micro",
  14891. height: math.unit(1, "mm"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Upsized",
  14896. height: math.unit(5 + 5 / 12, "feet")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(5 + 6 / 12, "feet"),
  14905. weight: math.unit(200, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/vivian-bijoux/front.svg",
  14909. extra: 1217/1209,
  14910. bottom: 76/1293
  14911. }
  14912. },
  14913. back: {
  14914. height: math.unit(5 + 6 / 12, "feet"),
  14915. weight: math.unit(200, "lb"),
  14916. name: "Back",
  14917. image: {
  14918. source: "./media/characters/vivian-bijoux/back.svg",
  14919. extra: 1214/1208,
  14920. bottom: 51/1265
  14921. }
  14922. },
  14923. dressed: {
  14924. height: math.unit(5 + 6 / 12, "feet"),
  14925. weight: math.unit(200, "lb"),
  14926. name: "Dressed",
  14927. image: {
  14928. source: "./media/characters/vivian-bijoux/dressed.svg",
  14929. extra: 1217/1209,
  14930. bottom: 76/1293
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(5 + 6 / 12, "feet"),
  14938. default: true
  14939. },
  14940. {
  14941. name: "Bad Dream",
  14942. height: math.unit(500, "feet")
  14943. },
  14944. {
  14945. name: "Nightmare",
  14946. height: math.unit(500, "miles")
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(6 + 1 / 12, "feet"),
  14955. weight: math.unit(260, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/zeta/front.svg",
  14959. extra: 1968 / 1889,
  14960. bottom: 0.06
  14961. }
  14962. },
  14963. back: {
  14964. height: math.unit(6 + 1 / 12, "feet"),
  14965. weight: math.unit(260, "lb"),
  14966. name: "Back",
  14967. image: {
  14968. source: "./media/characters/zeta/back.svg",
  14969. extra: 1944 / 1858,
  14970. bottom: 0.03
  14971. }
  14972. },
  14973. hand: {
  14974. height: math.unit(1.112, "feet"),
  14975. name: "Hand",
  14976. image: {
  14977. source: "./media/characters/zeta/hand.svg"
  14978. }
  14979. },
  14980. foot: {
  14981. height: math.unit(1.48, "feet"),
  14982. name: "Foot",
  14983. image: {
  14984. source: "./media/characters/zeta/foot.svg"
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Micro",
  14991. height: math.unit(6, "inches")
  14992. },
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(6 + 1 / 12, "feet"),
  14996. default: true
  14997. },
  14998. {
  14999. name: "Macro",
  15000. height: math.unit(20, "feet")
  15001. },
  15002. ]
  15003. ))
  15004. characterMakers.push(() => makeCharacter(
  15005. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15006. {
  15007. front: {
  15008. height: math.unit(6, "feet"),
  15009. weight: math.unit(150, "lb"),
  15010. name: "Front",
  15011. image: {
  15012. source: "./media/characters/jamie-larsen/front.svg",
  15013. extra: 962 / 933,
  15014. bottom: 0.02
  15015. }
  15016. },
  15017. back: {
  15018. height: math.unit(6, "feet"),
  15019. weight: math.unit(150, "lb"),
  15020. name: "Back",
  15021. image: {
  15022. source: "./media/characters/jamie-larsen/back.svg",
  15023. extra: 997 / 946
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Macro",
  15030. height: math.unit(28 + 7 / 12, "feet"),
  15031. default: true
  15032. },
  15033. {
  15034. name: "Macro+",
  15035. height: math.unit(180, "feet")
  15036. },
  15037. {
  15038. name: "Megamacro",
  15039. height: math.unit(10, "miles")
  15040. },
  15041. {
  15042. name: "Gigamacro",
  15043. height: math.unit(200000, "miles")
  15044. },
  15045. ]
  15046. ))
  15047. characterMakers.push(() => makeCharacter(
  15048. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15049. {
  15050. front: {
  15051. height: math.unit(6, "feet"),
  15052. weight: math.unit(120, "lb"),
  15053. name: "Front",
  15054. image: {
  15055. source: "./media/characters/vance/front.svg",
  15056. extra: 1980 / 1890,
  15057. bottom: 0.09
  15058. }
  15059. },
  15060. back: {
  15061. height: math.unit(6, "feet"),
  15062. weight: math.unit(120, "lb"),
  15063. name: "Back",
  15064. image: {
  15065. source: "./media/characters/vance/back.svg",
  15066. extra: 2081 / 1994,
  15067. bottom: 0.014
  15068. }
  15069. },
  15070. hand: {
  15071. height: math.unit(0.88, "feet"),
  15072. name: "Hand",
  15073. image: {
  15074. source: "./media/characters/vance/hand.svg"
  15075. }
  15076. },
  15077. foot: {
  15078. height: math.unit(0.64, "feet"),
  15079. name: "Foot",
  15080. image: {
  15081. source: "./media/characters/vance/foot.svg"
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Small",
  15088. height: math.unit(90, "feet"),
  15089. default: true
  15090. },
  15091. {
  15092. name: "Macro",
  15093. height: math.unit(100, "meters")
  15094. },
  15095. {
  15096. name: "Megamacro",
  15097. height: math.unit(15, "miles")
  15098. },
  15099. ]
  15100. ))
  15101. characterMakers.push(() => makeCharacter(
  15102. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15103. {
  15104. front: {
  15105. height: math.unit(6, "feet"),
  15106. weight: math.unit(180, "lb"),
  15107. name: "Front",
  15108. image: {
  15109. source: "./media/characters/xochitl/front.svg",
  15110. extra: 2297 / 2261,
  15111. bottom: 0.065
  15112. }
  15113. },
  15114. back: {
  15115. height: math.unit(6, "feet"),
  15116. weight: math.unit(180, "lb"),
  15117. name: "Back",
  15118. image: {
  15119. source: "./media/characters/xochitl/back.svg",
  15120. extra: 2386 / 2354,
  15121. bottom: 0.01
  15122. }
  15123. },
  15124. foot: {
  15125. height: math.unit(6 / 5 * 1.15, "feet"),
  15126. weight: math.unit(150, "lb"),
  15127. name: "Foot",
  15128. image: {
  15129. source: "./media/characters/xochitl/foot.svg"
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Macro",
  15136. height: math.unit(80, "feet")
  15137. },
  15138. {
  15139. name: "Macro+",
  15140. height: math.unit(400, "feet"),
  15141. default: true
  15142. },
  15143. {
  15144. name: "Gigamacro",
  15145. height: math.unit(80000, "miles")
  15146. },
  15147. {
  15148. name: "Gigamacro+",
  15149. height: math.unit(400000, "miles")
  15150. },
  15151. {
  15152. name: "Teramacro",
  15153. height: math.unit(300, "AU")
  15154. },
  15155. ]
  15156. ))
  15157. characterMakers.push(() => makeCharacter(
  15158. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15159. {
  15160. front: {
  15161. height: math.unit(6, "feet"),
  15162. weight: math.unit(150, "lb"),
  15163. name: "Front",
  15164. image: {
  15165. source: "./media/characters/vincent/front.svg",
  15166. extra: 1130 / 1080,
  15167. bottom: 0.055
  15168. }
  15169. },
  15170. beak: {
  15171. height: math.unit(6 * 0.1, "feet"),
  15172. name: "Beak",
  15173. image: {
  15174. source: "./media/characters/vincent/beak.svg"
  15175. }
  15176. },
  15177. hand: {
  15178. height: math.unit(6 * 0.85, "feet"),
  15179. weight: math.unit(150, "lb"),
  15180. name: "Hand",
  15181. image: {
  15182. source: "./media/characters/vincent/hand.svg"
  15183. }
  15184. },
  15185. foot: {
  15186. height: math.unit(6 * 0.19, "feet"),
  15187. weight: math.unit(150, "lb"),
  15188. name: "Foot",
  15189. image: {
  15190. source: "./media/characters/vincent/foot.svg"
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Base",
  15197. height: math.unit(6 + 5 / 12, "feet"),
  15198. default: true
  15199. },
  15200. {
  15201. name: "Macro",
  15202. height: math.unit(300, "feet")
  15203. },
  15204. {
  15205. name: "Megamacro",
  15206. height: math.unit(2, "miles")
  15207. },
  15208. {
  15209. name: "Gigamacro",
  15210. height: math.unit(1000, "miles")
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(2, "meters"),
  15219. weight: math.unit(500, "kg"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/coatl/front.svg",
  15223. extra: 3948 / 3500,
  15224. bottom: 0.082
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(4, "meters")
  15232. },
  15233. {
  15234. name: "Macro",
  15235. height: math.unit(100, "meters"),
  15236. default: true
  15237. },
  15238. {
  15239. name: "Macro+",
  15240. height: math.unit(300, "meters")
  15241. },
  15242. {
  15243. name: "Megamacro",
  15244. height: math.unit(3, "gigameters")
  15245. },
  15246. {
  15247. name: "Megamacro+",
  15248. height: math.unit(300, "terameters")
  15249. },
  15250. {
  15251. name: "Megamacro++",
  15252. height: math.unit(3, "lightyears")
  15253. },
  15254. ]
  15255. ))
  15256. characterMakers.push(() => makeCharacter(
  15257. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15258. {
  15259. front: {
  15260. height: math.unit(6, "feet"),
  15261. weight: math.unit(50, "kg"),
  15262. name: "front",
  15263. image: {
  15264. source: "./media/characters/shiroryu/front.svg",
  15265. extra: 1990 / 1935
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Mortal Mingling",
  15272. height: math.unit(3, "meters")
  15273. },
  15274. {
  15275. name: "Kaiju-ish",
  15276. height: math.unit(250, "meters")
  15277. },
  15278. {
  15279. name: "Somewhat Godly",
  15280. height: math.unit(400, "km"),
  15281. default: true
  15282. },
  15283. {
  15284. name: "Planetary",
  15285. height: math.unit(300, "megameters")
  15286. },
  15287. {
  15288. name: "Galaxy-dwarfing",
  15289. height: math.unit(450, "kiloparsecs")
  15290. },
  15291. {
  15292. name: "Universe Eater",
  15293. height: math.unit(150, "gigaparsecs")
  15294. },
  15295. {
  15296. name: "Almost Immeasurable",
  15297. height: math.unit(1.3e266, "yottaparsecs")
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(6, "feet"),
  15306. weight: math.unit(150, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/umeko/front.svg",
  15310. extra: 1,
  15311. bottom: 0.019
  15312. }
  15313. },
  15314. frontArmored: {
  15315. height: math.unit(6, "feet"),
  15316. weight: math.unit(150, "lb"),
  15317. name: "Front (Armored)",
  15318. image: {
  15319. source: "./media/characters/umeko/front-armored.svg",
  15320. extra: 1,
  15321. bottom: 0.021
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Macro",
  15328. height: math.unit(220, "feet"),
  15329. default: true
  15330. },
  15331. {
  15332. name: "Guardian Dragon",
  15333. height: math.unit(50, "miles")
  15334. },
  15335. {
  15336. name: "Cosmic",
  15337. height: math.unit(800000, "miles")
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(6, "feet"),
  15346. weight: math.unit(150, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/cassidy/front.svg",
  15350. extra: 810/808,
  15351. bottom: 41/851
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Canon Height",
  15358. height: math.unit(120, "feet"),
  15359. default: true
  15360. },
  15361. {
  15362. name: "Macro+",
  15363. height: math.unit(400, "feet")
  15364. },
  15365. {
  15366. name: "Macro++",
  15367. height: math.unit(4000, "feet")
  15368. },
  15369. {
  15370. name: "Megamacro",
  15371. height: math.unit(3, "miles")
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15377. {
  15378. front: {
  15379. height: math.unit(6, "feet"),
  15380. weight: math.unit(150, "lb"),
  15381. name: "Front",
  15382. image: {
  15383. source: "./media/characters/isaac/front.svg",
  15384. extra: 896 / 815,
  15385. bottom: 0.11
  15386. }
  15387. },
  15388. },
  15389. [
  15390. {
  15391. name: "Human Size",
  15392. height: math.unit(8, "feet"),
  15393. default: true
  15394. },
  15395. {
  15396. name: "Macro",
  15397. height: math.unit(400, "feet")
  15398. },
  15399. {
  15400. name: "Megamacro",
  15401. height: math.unit(50, "miles")
  15402. },
  15403. {
  15404. name: "Canon Height",
  15405. height: math.unit(200, "AU")
  15406. },
  15407. ]
  15408. ))
  15409. characterMakers.push(() => makeCharacter(
  15410. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15411. {
  15412. front: {
  15413. height: math.unit(6, "feet"),
  15414. weight: math.unit(72, "kg"),
  15415. name: "Front",
  15416. image: {
  15417. source: "./media/characters/sleekit/front.svg",
  15418. extra: 4693 / 4487,
  15419. bottom: 0.012
  15420. }
  15421. },
  15422. },
  15423. [
  15424. {
  15425. name: "Minimum Height",
  15426. height: math.unit(10, "meters")
  15427. },
  15428. {
  15429. name: "Smaller",
  15430. height: math.unit(25, "meters")
  15431. },
  15432. {
  15433. name: "Larger",
  15434. height: math.unit(38, "meters"),
  15435. default: true
  15436. },
  15437. {
  15438. name: "Maximum height",
  15439. height: math.unit(100, "meters")
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15445. {
  15446. front: {
  15447. height: math.unit(6, "feet"),
  15448. weight: math.unit(150, "lb"),
  15449. name: "Front",
  15450. image: {
  15451. source: "./media/characters/nillia/front.svg",
  15452. extra: 2195 / 2037,
  15453. bottom: 0.005
  15454. }
  15455. },
  15456. back: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Back",
  15460. image: {
  15461. source: "./media/characters/nillia/back.svg",
  15462. extra: 2195 / 2037,
  15463. bottom: 0.005
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Canon Height",
  15470. height: math.unit(489, "feet"),
  15471. default: true
  15472. }
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(6, "feet"),
  15480. weight: math.unit(150, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/mesmyriza/front.svg",
  15484. extra: 2067 / 1784,
  15485. bottom: 0.035
  15486. }
  15487. },
  15488. foot: {
  15489. height: math.unit(6 / (250 / 35), "feet"),
  15490. name: "Foot",
  15491. image: {
  15492. source: "./media/characters/mesmyriza/foot.svg"
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Macro",
  15499. height: math.unit(457, "meters"),
  15500. default: true
  15501. },
  15502. {
  15503. name: "Megamacro",
  15504. height: math.unit(8, "megameters")
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(6, "feet"),
  15513. weight: math.unit(250, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/saudade/front.svg",
  15517. extra: 1172 / 1139,
  15518. bottom: 0.035
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Micro",
  15525. height: math.unit(3, "inches")
  15526. },
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(6, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(50, "feet")
  15535. },
  15536. {
  15537. name: "Megamacro",
  15538. height: math.unit(2800, "feet")
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(5 + 4 / 12, "feet"),
  15547. weight: math.unit(100, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/keireer/front.svg",
  15551. extra: 716 / 666,
  15552. bottom: 0.05
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(5 + 4 / 12, "feet"),
  15560. default: true
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15566. {
  15567. front: {
  15568. height: math.unit(5.5, "feet"),
  15569. weight: math.unit(90, "kg"),
  15570. name: "Front",
  15571. image: {
  15572. source: "./media/characters/mirja/front.svg",
  15573. extra: 1452/1262,
  15574. bottom: 67/1519
  15575. }
  15576. },
  15577. frontDressed: {
  15578. height: math.unit(5.5, "feet"),
  15579. weight: math.unit(90, "lb"),
  15580. name: "Front (Dressed)",
  15581. image: {
  15582. source: "./media/characters/mirja/dressed.svg",
  15583. extra: 1452/1262,
  15584. bottom: 67/1519
  15585. }
  15586. },
  15587. back: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(90, "lb"),
  15590. name: "Back",
  15591. image: {
  15592. source: "./media/characters/mirja/back.svg",
  15593. extra: 1892/1795,
  15594. bottom: 48/1940
  15595. }
  15596. },
  15597. maw: {
  15598. height: math.unit(1.312, "feet"),
  15599. name: "Maw",
  15600. image: {
  15601. source: "./media/characters/mirja/maw.svg"
  15602. }
  15603. },
  15604. paw: {
  15605. height: math.unit(1.15, "feet"),
  15606. name: "Paw",
  15607. image: {
  15608. source: "./media/characters/mirja/paw.svg"
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "\"Incognito\"",
  15615. height: math.unit(3, "meters")
  15616. },
  15617. {
  15618. name: "Strolling Size",
  15619. height: math.unit(15, "km")
  15620. },
  15621. {
  15622. name: "Larger Strolling Size",
  15623. height: math.unit(400, "km")
  15624. },
  15625. {
  15626. name: "Preferred Size",
  15627. height: math.unit(5000, "km"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "True Size",
  15632. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(15, "feet"),
  15641. weight: math.unit(880, "kg"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/nightraver/front.svg",
  15645. extra: 2444 / 2160,
  15646. bottom: 0.027
  15647. }
  15648. },
  15649. back: {
  15650. height: math.unit(15, "feet"),
  15651. weight: math.unit(880, "kg"),
  15652. name: "Back",
  15653. image: {
  15654. source: "./media/characters/nightraver/back.svg",
  15655. extra: 2309 / 2180,
  15656. bottom: 0.005
  15657. }
  15658. },
  15659. sole: {
  15660. height: math.unit(2.878, "feet"),
  15661. name: "Sole",
  15662. image: {
  15663. source: "./media/characters/nightraver/sole.svg"
  15664. }
  15665. },
  15666. foot: {
  15667. height: math.unit(2.285, "feet"),
  15668. name: "Foot",
  15669. image: {
  15670. source: "./media/characters/nightraver/foot.svg"
  15671. }
  15672. },
  15673. maw: {
  15674. height: math.unit(2.67, "feet"),
  15675. name: "Maw",
  15676. image: {
  15677. source: "./media/characters/nightraver/maw.svg"
  15678. }
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Micro",
  15684. height: math.unit(1, "cm")
  15685. },
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(15, "feet"),
  15689. default: true
  15690. },
  15691. {
  15692. name: "Macro",
  15693. height: math.unit(300, "feet")
  15694. },
  15695. {
  15696. name: "Megamacro",
  15697. height: math.unit(300, "miles")
  15698. },
  15699. {
  15700. name: "Gigamacro",
  15701. height: math.unit(10000, "miles")
  15702. },
  15703. ]
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15707. {
  15708. side: {
  15709. height: math.unit(2, "inches"),
  15710. weight: math.unit(5, "grams"),
  15711. name: "Side",
  15712. image: {
  15713. source: "./media/characters/arc/side.svg"
  15714. }
  15715. },
  15716. },
  15717. [
  15718. {
  15719. name: "Micro",
  15720. height: math.unit(2, "inches"),
  15721. default: true
  15722. },
  15723. ]
  15724. ))
  15725. characterMakers.push(() => makeCharacter(
  15726. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15727. {
  15728. front: {
  15729. height: math.unit(1.1938, "meters"),
  15730. weight: math.unit(54, "kg"),
  15731. name: "Front",
  15732. image: {
  15733. source: "./media/characters/nebula-shahar/front.svg",
  15734. extra: 1642 / 1436,
  15735. bottom: 0.06
  15736. }
  15737. },
  15738. },
  15739. [
  15740. {
  15741. name: "Megamicro",
  15742. height: math.unit(0.3, "mm")
  15743. },
  15744. {
  15745. name: "Micro",
  15746. height: math.unit(3, "cm")
  15747. },
  15748. {
  15749. name: "Normal",
  15750. height: math.unit(138, "cm"),
  15751. default: true
  15752. },
  15753. {
  15754. name: "Macro",
  15755. height: math.unit(30, "m")
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15761. {
  15762. front: {
  15763. height: math.unit(5.24, "feet"),
  15764. weight: math.unit(150, "lb"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/shayla/front.svg",
  15768. extra: 1512 / 1414,
  15769. bottom: 0.01
  15770. }
  15771. },
  15772. back: {
  15773. height: math.unit(5.24, "feet"),
  15774. weight: math.unit(150, "lb"),
  15775. name: "Back",
  15776. image: {
  15777. source: "./media/characters/shayla/back.svg",
  15778. extra: 1512 / 1414
  15779. }
  15780. },
  15781. hand: {
  15782. height: math.unit(0.7781496062992126, "feet"),
  15783. name: "Hand",
  15784. image: {
  15785. source: "./media/characters/shayla/hand.svg"
  15786. }
  15787. },
  15788. foot: {
  15789. height: math.unit(1.4206036745406823, "feet"),
  15790. name: "Foot",
  15791. image: {
  15792. source: "./media/characters/shayla/foot.svg"
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Micro",
  15799. height: math.unit(0.32, "feet")
  15800. },
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(5.24, "feet"),
  15804. default: true
  15805. },
  15806. {
  15807. name: "Macro",
  15808. height: math.unit(492.12, "feet")
  15809. },
  15810. {
  15811. name: "Megamacro",
  15812. height: math.unit(186.41, "miles")
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15818. {
  15819. front: {
  15820. height: math.unit(2.2, "m"),
  15821. weight: math.unit(120, "kg"),
  15822. name: "Front",
  15823. image: {
  15824. source: "./media/characters/pia-jr/front.svg",
  15825. extra: 1000 / 970,
  15826. bottom: 0.035
  15827. }
  15828. },
  15829. hand: {
  15830. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15831. name: "Hand",
  15832. image: {
  15833. source: "./media/characters/pia-jr/hand.svg"
  15834. }
  15835. },
  15836. paw: {
  15837. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15838. name: "Paw",
  15839. image: {
  15840. source: "./media/characters/pia-jr/paw.svg"
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Micro",
  15847. height: math.unit(1.2, "cm")
  15848. },
  15849. {
  15850. name: "Normal",
  15851. height: math.unit(2.2, "m"),
  15852. default: true
  15853. },
  15854. {
  15855. name: "Macro",
  15856. height: math.unit(180, "m")
  15857. },
  15858. {
  15859. name: "Megamacro",
  15860. height: math.unit(420, "km")
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(2, "m"),
  15869. weight: math.unit(115, "kg"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/pia-sr/front.svg",
  15873. extra: 760 / 730,
  15874. bottom: 0.015
  15875. }
  15876. },
  15877. back: {
  15878. height: math.unit(2, "m"),
  15879. weight: math.unit(115, "kg"),
  15880. name: "Back",
  15881. image: {
  15882. source: "./media/characters/pia-sr/back.svg",
  15883. extra: 760 / 730,
  15884. bottom: 0.01
  15885. }
  15886. },
  15887. hand: {
  15888. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15889. name: "Hand",
  15890. image: {
  15891. source: "./media/characters/pia-sr/hand.svg"
  15892. }
  15893. },
  15894. foot: {
  15895. height: math.unit(1.83, "feet"),
  15896. name: "Foot",
  15897. image: {
  15898. source: "./media/characters/pia-sr/foot.svg"
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Micro",
  15905. height: math.unit(88, "mm")
  15906. },
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(2, "m"),
  15910. default: true
  15911. },
  15912. {
  15913. name: "Macro",
  15914. height: math.unit(200, "m")
  15915. },
  15916. {
  15917. name: "Megamacro",
  15918. height: math.unit(420, "km")
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15924. {
  15925. front: {
  15926. height: math.unit(8 + 2 / 12, "feet"),
  15927. weight: math.unit(300, "lb"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/kibibyte/front.svg",
  15931. extra: 2221 / 2098,
  15932. bottom: 0.04
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(8 + 2 / 12, "feet"),
  15940. default: true
  15941. },
  15942. {
  15943. name: "Socialable Macro",
  15944. height: math.unit(50, "feet")
  15945. },
  15946. {
  15947. name: "Macro",
  15948. height: math.unit(300, "feet")
  15949. },
  15950. {
  15951. name: "Megamacro",
  15952. height: math.unit(500, "miles")
  15953. },
  15954. ]
  15955. ))
  15956. characterMakers.push(() => makeCharacter(
  15957. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15958. {
  15959. front: {
  15960. height: math.unit(6, "feet"),
  15961. weight: math.unit(150, "lb"),
  15962. name: "Front",
  15963. image: {
  15964. source: "./media/characters/felix/front.svg",
  15965. extra: 762 / 722,
  15966. bottom: 0.02
  15967. }
  15968. },
  15969. frontClothed: {
  15970. height: math.unit(6, "feet"),
  15971. weight: math.unit(150, "lb"),
  15972. name: "Front (Clothed)",
  15973. image: {
  15974. source: "./media/characters/felix/front-clothed.svg",
  15975. extra: 762 / 722,
  15976. bottom: 0.02
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Normal",
  15983. height: math.unit(6 + 8 / 12, "feet"),
  15984. default: true
  15985. },
  15986. {
  15987. name: "Macro",
  15988. height: math.unit(2600, "feet")
  15989. },
  15990. {
  15991. name: "Megamacro",
  15992. height: math.unit(450, "miles")
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(6 + 1 / 12, "feet"),
  16001. weight: math.unit(250, "lb"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/tobo/front.svg",
  16005. extra: 608 / 586,
  16006. bottom: 0.023
  16007. }
  16008. },
  16009. back: {
  16010. height: math.unit(6 + 1 / 12, "feet"),
  16011. weight: math.unit(250, "lb"),
  16012. name: "Back",
  16013. image: {
  16014. source: "./media/characters/tobo/back.svg",
  16015. extra: 608 / 586
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Nano",
  16022. height: math.unit(2, "nm")
  16023. },
  16024. {
  16025. name: "Megamicro",
  16026. height: math.unit(0.1, "mm")
  16027. },
  16028. {
  16029. name: "Micro",
  16030. height: math.unit(1, "inch"),
  16031. default: true
  16032. },
  16033. {
  16034. name: "Human-sized",
  16035. height: math.unit(6 + 1 / 12, "feet")
  16036. },
  16037. {
  16038. name: "Macro",
  16039. height: math.unit(250, "feet")
  16040. },
  16041. {
  16042. name: "Megamacro",
  16043. height: math.unit(75, "miles")
  16044. },
  16045. {
  16046. name: "Texas-sized",
  16047. height: math.unit(750, "miles")
  16048. },
  16049. {
  16050. name: "Teramacro",
  16051. height: math.unit(50000, "miles")
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16057. {
  16058. front: {
  16059. height: math.unit(6, "feet"),
  16060. weight: math.unit(269, "lb"),
  16061. name: "Front",
  16062. image: {
  16063. source: "./media/characters/danny-kapowsky/front.svg",
  16064. extra: 766 / 736,
  16065. bottom: 0.044
  16066. }
  16067. },
  16068. back: {
  16069. height: math.unit(6, "feet"),
  16070. weight: math.unit(269, "lb"),
  16071. name: "Back",
  16072. image: {
  16073. source: "./media/characters/danny-kapowsky/back.svg",
  16074. extra: 797 / 760,
  16075. bottom: 0.025
  16076. }
  16077. },
  16078. },
  16079. [
  16080. {
  16081. name: "Macro",
  16082. height: math.unit(150, "feet"),
  16083. default: true
  16084. },
  16085. {
  16086. name: "Macro+",
  16087. height: math.unit(200, "feet")
  16088. },
  16089. {
  16090. name: "Macro++",
  16091. height: math.unit(300, "feet")
  16092. },
  16093. {
  16094. name: "Macro+++",
  16095. height: math.unit(400, "feet")
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16101. {
  16102. side: {
  16103. height: math.unit(6, "feet"),
  16104. weight: math.unit(170, "lb"),
  16105. name: "Side",
  16106. image: {
  16107. source: "./media/characters/finn/side.svg",
  16108. extra: 1953 / 1807,
  16109. bottom: 0.057
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Megamacro",
  16116. height: math.unit(14445, "feet"),
  16117. default: true
  16118. },
  16119. ]
  16120. ))
  16121. characterMakers.push(() => makeCharacter(
  16122. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16123. {
  16124. front: {
  16125. height: math.unit(5 + 6 / 12, "feet"),
  16126. weight: math.unit(125, "lb"),
  16127. name: "Front",
  16128. image: {
  16129. source: "./media/characters/roy/front.svg",
  16130. extra: 1,
  16131. bottom: 0.11
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Micro",
  16138. height: math.unit(3, "inches"),
  16139. default: true
  16140. },
  16141. {
  16142. name: "Normal",
  16143. height: math.unit(5 + 6 / 12, "feet")
  16144. },
  16145. {
  16146. name: "Lesser Macro",
  16147. height: math.unit(60, "feet")
  16148. },
  16149. {
  16150. name: "Greater Macro",
  16151. height: math.unit(120, "feet")
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16157. {
  16158. front: {
  16159. height: math.unit(6, "feet"),
  16160. weight: math.unit(100, "lb"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/aevsivs/front.svg",
  16164. extra: 1,
  16165. bottom: 0.03
  16166. }
  16167. },
  16168. back: {
  16169. height: math.unit(6, "feet"),
  16170. weight: math.unit(100, "lb"),
  16171. name: "Back",
  16172. image: {
  16173. source: "./media/characters/aevsivs/back.svg"
  16174. }
  16175. },
  16176. },
  16177. [
  16178. {
  16179. name: "Micro",
  16180. height: math.unit(2, "inches"),
  16181. default: true
  16182. },
  16183. {
  16184. name: "Normal",
  16185. height: math.unit(5, "feet")
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16191. {
  16192. front: {
  16193. height: math.unit(5 + 7 / 12, "feet"),
  16194. weight: math.unit(159, "lb"),
  16195. name: "Front",
  16196. image: {
  16197. source: "./media/characters/hildegard/front.svg",
  16198. extra: 289 / 269,
  16199. bottom: 7.63 / 297.8
  16200. }
  16201. },
  16202. back: {
  16203. height: math.unit(5 + 7 / 12, "feet"),
  16204. weight: math.unit(159, "lb"),
  16205. name: "Back",
  16206. image: {
  16207. source: "./media/characters/hildegard/back.svg",
  16208. extra: 280 / 260,
  16209. bottom: 2.3 / 282
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Normal",
  16216. height: math.unit(5 + 7 / 12, "feet"),
  16217. default: true
  16218. },
  16219. ]
  16220. ))
  16221. characterMakers.push(() => makeCharacter(
  16222. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16223. {
  16224. bernard: {
  16225. height: math.unit(2 + 7 / 12, "feet"),
  16226. weight: math.unit(66, "lb"),
  16227. name: "Bernard",
  16228. rename: true,
  16229. image: {
  16230. source: "./media/characters/bernard-wilder/bernard.svg",
  16231. extra: 192 / 128,
  16232. bottom: 0.05
  16233. }
  16234. },
  16235. wilder: {
  16236. height: math.unit(5 + 8 / 12, "feet"),
  16237. weight: math.unit(143, "lb"),
  16238. name: "Wilder",
  16239. rename: true,
  16240. image: {
  16241. source: "./media/characters/bernard-wilder/wilder.svg",
  16242. extra: 361 / 312,
  16243. bottom: 0.02
  16244. }
  16245. },
  16246. },
  16247. [
  16248. {
  16249. name: "Normal",
  16250. height: math.unit(2 + 7 / 12, "feet"),
  16251. default: true
  16252. },
  16253. ]
  16254. ))
  16255. characterMakers.push(() => makeCharacter(
  16256. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16257. {
  16258. anthro: {
  16259. height: math.unit(6 + 1 / 12, "feet"),
  16260. weight: math.unit(155, "lb"),
  16261. name: "Anthro",
  16262. image: {
  16263. source: "./media/characters/hearth/anthro.svg",
  16264. extra: 1178/1136,
  16265. bottom: 28/1206
  16266. }
  16267. },
  16268. feral: {
  16269. height: math.unit(3.78, "feet"),
  16270. weight: math.unit(35, "kg"),
  16271. name: "Feral",
  16272. image: {
  16273. source: "./media/characters/hearth/feral.svg",
  16274. extra: 153 / 135,
  16275. bottom: 0.03
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(6 + 1 / 12, "feet"),
  16283. default: true
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16289. {
  16290. front: {
  16291. height: math.unit(6, "feet"),
  16292. weight: math.unit(182, "lb"),
  16293. name: "Front",
  16294. image: {
  16295. source: "./media/characters/ingrid/front.svg",
  16296. extra: 294 / 268,
  16297. bottom: 0.027
  16298. }
  16299. },
  16300. },
  16301. [
  16302. {
  16303. name: "Normal",
  16304. height: math.unit(6, "feet"),
  16305. default: true
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16311. {
  16312. eevee: {
  16313. height: math.unit(2 + 10 / 12, "feet"),
  16314. weight: math.unit(86, "lb"),
  16315. name: "Malgam",
  16316. image: {
  16317. source: "./media/characters/malgam/eevee.svg",
  16318. extra: 952/784,
  16319. bottom: 38/990
  16320. }
  16321. },
  16322. sylveon: {
  16323. height: math.unit(4, "feet"),
  16324. weight: math.unit(101, "lb"),
  16325. name: "Future Malgam",
  16326. rename: true,
  16327. image: {
  16328. source: "./media/characters/malgam/sylveon.svg",
  16329. extra: 371 / 325,
  16330. bottom: 0.015
  16331. }
  16332. },
  16333. gigantamax: {
  16334. height: math.unit(50, "feet"),
  16335. name: "Gigantamax Malgam",
  16336. rename: true,
  16337. image: {
  16338. source: "./media/characters/malgam/gigantamax.svg"
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(2 + 10 / 12, "feet"),
  16346. default: true
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(5 + 11 / 12, "feet"),
  16355. weight: math.unit(188, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/fleur/front.svg",
  16359. extra: 309 / 283,
  16360. bottom: 0.007
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(5 + 11 / 12, "feet"),
  16368. default: true
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(5 + 4 / 12, "feet"),
  16377. weight: math.unit(122, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/jude/front.svg",
  16381. extra: 288 / 273,
  16382. bottom: 0.03
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(5 + 4 / 12, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(5 + 11 / 12, "feet"),
  16399. weight: math.unit(190, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/seara/front.svg",
  16403. extra: 1,
  16404. bottom: 0.05
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(5 + 11 / 12, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(16 + 5 / 12, "feet"),
  16421. weight: math.unit(524, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/caspian-lugia/front.svg",
  16425. extra: 1,
  16426. bottom: 0.04
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(16 + 5 / 12, "feet"),
  16434. default: true
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(5 + 7 / 12, "feet"),
  16443. weight: math.unit(170, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/mika/front.svg",
  16447. extra: 1,
  16448. bottom: 0.016
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(5 + 7 / 12, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(6 + 2 / 12, "feet"),
  16465. weight: math.unit(268, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/sol/front.svg",
  16469. extra: 247 / 231,
  16470. bottom: 0.05
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(6 + 2 / 12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16484. {
  16485. buizel: {
  16486. height: math.unit(2 + 5 / 12, "feet"),
  16487. weight: math.unit(87, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/umiko/buizel.svg",
  16491. extra: 172 / 157,
  16492. bottom: 0.01
  16493. },
  16494. form: "buizel",
  16495. default: true
  16496. },
  16497. floatzel: {
  16498. height: math.unit(5 + 9 / 12, "feet"),
  16499. weight: math.unit(250, "lb"),
  16500. name: "Front",
  16501. image: {
  16502. source: "./media/characters/umiko/floatzel.svg",
  16503. extra: 1076/1006,
  16504. bottom: 15/1091
  16505. },
  16506. form: "floatzel",
  16507. default: true
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(2 + 5 / 12, "feet"),
  16514. form: "buizel",
  16515. default: true
  16516. },
  16517. {
  16518. name: "Normal",
  16519. height: math.unit(5 + 9 / 12, "feet"),
  16520. form: "floatzel",
  16521. default: true
  16522. },
  16523. ],
  16524. {
  16525. "buizel": {
  16526. name: "Buizel"
  16527. },
  16528. "floatzel": {
  16529. name: "Floatzel",
  16530. default: true
  16531. }
  16532. }
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16536. {
  16537. front: {
  16538. height: math.unit(6 + 2 / 12, "feet"),
  16539. weight: math.unit(146, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/iliac/front.svg",
  16543. extra: 389 / 365,
  16544. bottom: 0.035
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(6 + 2 / 12, "feet"),
  16552. default: true
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16558. {
  16559. front: {
  16560. height: math.unit(6, "feet"),
  16561. weight: math.unit(170, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/topaz/front.svg",
  16565. extra: 317 / 303,
  16566. bottom: 0.055
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(6, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16580. {
  16581. front: {
  16582. height: math.unit(5 + 11 / 12, "feet"),
  16583. weight: math.unit(144, "lb"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/gabriel/front.svg",
  16587. extra: 285 / 262,
  16588. bottom: 0.004
  16589. }
  16590. },
  16591. },
  16592. [
  16593. {
  16594. name: "Normal",
  16595. height: math.unit(5 + 11 / 12, "feet"),
  16596. default: true
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16602. {
  16603. side: {
  16604. height: math.unit(6 + 5 / 12, "feet"),
  16605. weight: math.unit(300, "lb"),
  16606. name: "Side",
  16607. image: {
  16608. source: "./media/characters/tempest-suicune/side.svg",
  16609. extra: 195 / 154,
  16610. bottom: 0.04
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(6 + 5 / 12, "feet"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16624. {
  16625. front: {
  16626. height: math.unit(7 + 2 / 12, "feet"),
  16627. weight: math.unit(322, "lb"),
  16628. name: "Front",
  16629. image: {
  16630. source: "./media/characters/vulcan/front.svg",
  16631. extra: 154 / 147,
  16632. bottom: 0.04
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(7 + 2 / 12, "feet"),
  16640. default: true
  16641. },
  16642. ]
  16643. ))
  16644. characterMakers.push(() => makeCharacter(
  16645. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16646. {
  16647. front: {
  16648. height: math.unit(5 + 10 / 12, "feet"),
  16649. weight: math.unit(264, "lb"),
  16650. name: "Front",
  16651. image: {
  16652. source: "./media/characters/gault/front.svg",
  16653. extra: 161 / 140,
  16654. bottom: 0.028
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(5 + 10 / 12, "feet"),
  16662. default: true
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16668. {
  16669. front: {
  16670. height: math.unit(6, "feet"),
  16671. weight: math.unit(150, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/shard/front.svg",
  16675. extra: 273 / 238,
  16676. bottom: 0.02
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Normal",
  16683. height: math.unit(3 + 6 / 12, "feet"),
  16684. default: true
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16690. {
  16691. front: {
  16692. height: math.unit(5 + 11 / 12, "feet"),
  16693. weight: math.unit(146, "lb"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/ashe/front.svg",
  16697. extra: 400 / 373,
  16698. bottom: 0.01
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(5 + 11 / 12, "feet"),
  16706. default: true
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16712. {
  16713. front: {
  16714. height: math.unit(5 + 5 / 12, "feet"),
  16715. weight: math.unit(135, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/beatrix/front.svg",
  16719. extra: 392 / 379,
  16720. bottom: 0.01
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(6, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(6 + 2/12, "feet"),
  16737. weight: math.unit(135, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/ignatius/front.svg",
  16741. extra: 1380/1259,
  16742. bottom: 27/1407
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Normal",
  16749. height: math.unit(6 + 2/12, "feet"),
  16750. default: true
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16756. {
  16757. front: {
  16758. height: math.unit(6 + 2 / 12, "feet"),
  16759. weight: math.unit(138, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/mei-li/front.svg",
  16763. extra: 237 / 229,
  16764. bottom: 0.03
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(6 + 2 / 12, "feet"),
  16772. default: true
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16778. {
  16779. front: {
  16780. height: math.unit(2 + 4 / 12, "feet"),
  16781. weight: math.unit(62, "lb"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/puru/front.svg",
  16785. extra: 206 / 149,
  16786. bottom: 0.06
  16787. }
  16788. },
  16789. },
  16790. [
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(2 + 4 / 12, "feet"),
  16794. default: true
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16800. {
  16801. anthro: {
  16802. height: math.unit(5 + 8/12, "feet"),
  16803. weight: math.unit(200, "lb"),
  16804. energyNeed: math.unit(2000, "kcal"),
  16805. name: "Anthro",
  16806. image: {
  16807. source: "./media/characters/kee/anthro.svg",
  16808. extra: 3251/3184,
  16809. bottom: 250/3501
  16810. }
  16811. },
  16812. taur: {
  16813. height: math.unit(11, "feet"),
  16814. weight: math.unit(500, "lb"),
  16815. energyNeed: math.unit(5000, "kcal"),
  16816. name: "Taur",
  16817. image: {
  16818. source: "./media/characters/kee/taur.svg",
  16819. extra: 1362/1320,
  16820. bottom: 83/1445
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(5 + 8/12, "feet"),
  16828. default: true
  16829. },
  16830. {
  16831. name: "Macro",
  16832. height: math.unit(35, "feet")
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16838. {
  16839. anthro: {
  16840. height: math.unit(7, "feet"),
  16841. weight: math.unit(190, "lb"),
  16842. name: "Anthro",
  16843. image: {
  16844. source: "./media/characters/cobalt-dracha/anthro.svg",
  16845. extra: 231 / 225,
  16846. bottom: 0.04
  16847. }
  16848. },
  16849. feral: {
  16850. height: math.unit(9 + 7 / 12, "feet"),
  16851. weight: math.unit(294, "lb"),
  16852. name: "Feral",
  16853. image: {
  16854. source: "./media/characters/cobalt-dracha/feral.svg",
  16855. extra: 692 / 633,
  16856. bottom: 0.05
  16857. }
  16858. },
  16859. },
  16860. [
  16861. {
  16862. name: "Normal",
  16863. height: math.unit(7, "feet"),
  16864. default: true
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16870. {
  16871. fallen: {
  16872. height: math.unit(11 + 8 / 12, "feet"),
  16873. weight: math.unit(485, "lb"),
  16874. name: "Java (Fallen)",
  16875. rename: true,
  16876. image: {
  16877. source: "./media/characters/java/fallen.svg",
  16878. extra: 226 / 208,
  16879. bottom: 0.005
  16880. }
  16881. },
  16882. godkin: {
  16883. height: math.unit(10 + 6 / 12, "feet"),
  16884. weight: math.unit(328, "lb"),
  16885. name: "Java (Godkin)",
  16886. rename: true,
  16887. image: {
  16888. source: "./media/characters/java/godkin.svg",
  16889. extra: 1104/1068,
  16890. bottom: 36/1140
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(11 + 8 / 12, "feet"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16904. {
  16905. front: {
  16906. height: math.unit(5 + 9 / 12, "feet"),
  16907. weight: math.unit(170, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/purna/front.svg",
  16911. extra: 239 / 229,
  16912. bottom: 0.01
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(5 + 9 / 12, "feet"),
  16920. default: true
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16926. {
  16927. front: {
  16928. height: math.unit(5 + 9 / 12, "feet"),
  16929. weight: math.unit(142, "lb"),
  16930. name: "Front",
  16931. image: {
  16932. source: "./media/characters/kuva/front.svg",
  16933. extra: 281 / 271,
  16934. bottom: 0.006
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Normal",
  16941. height: math.unit(5 + 9 / 12, "feet"),
  16942. default: true
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16948. {
  16949. anthro: {
  16950. height: math.unit(9 + 2 / 12, "feet"),
  16951. weight: math.unit(270, "lb"),
  16952. name: "Anthro",
  16953. image: {
  16954. source: "./media/characters/embra/anthro.svg",
  16955. extra: 200 / 187,
  16956. bottom: 0.02
  16957. }
  16958. },
  16959. feral: {
  16960. height: math.unit(18 + 8 / 12, "feet"),
  16961. weight: math.unit(576, "lb"),
  16962. name: "Feral",
  16963. image: {
  16964. source: "./media/characters/embra/feral.svg",
  16965. extra: 152 / 137,
  16966. bottom: 0.037
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Normal",
  16973. height: math.unit(9 + 2 / 12, "feet"),
  16974. default: true
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16980. {
  16981. anthro: {
  16982. height: math.unit(10 + 9 / 12, "feet"),
  16983. weight: math.unit(224, "lb"),
  16984. name: "Anthro",
  16985. image: {
  16986. source: "./media/characters/grottos/anthro.svg",
  16987. extra: 350 / 332,
  16988. bottom: 0.045
  16989. }
  16990. },
  16991. feral: {
  16992. height: math.unit(20 + 7 / 12, "feet"),
  16993. weight: math.unit(629, "lb"),
  16994. name: "Feral",
  16995. image: {
  16996. source: "./media/characters/grottos/feral.svg",
  16997. extra: 207 / 190,
  16998. bottom: 0.05
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(10 + 9 / 12, "feet"),
  17006. default: true
  17007. },
  17008. ]
  17009. ))
  17010. characterMakers.push(() => makeCharacter(
  17011. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17012. {
  17013. anthro: {
  17014. height: math.unit(9 + 6 / 12, "feet"),
  17015. weight: math.unit(298, "lb"),
  17016. name: "Anthro",
  17017. image: {
  17018. source: "./media/characters/frifna/anthro.svg",
  17019. extra: 282 / 269,
  17020. bottom: 0.015
  17021. }
  17022. },
  17023. feral: {
  17024. height: math.unit(16 + 2 / 12, "feet"),
  17025. weight: math.unit(624, "lb"),
  17026. name: "Feral",
  17027. image: {
  17028. source: "./media/characters/frifna/feral.svg"
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(9 + 6 / 12, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(6 + 2 / 12, "feet"),
  17045. weight: math.unit(168, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/elise/front.svg",
  17049. extra: 276 / 271
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(6 + 2 / 12, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(5 + 10 / 12, "feet"),
  17066. weight: math.unit(210, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/glade/front.svg",
  17070. extra: 258 / 247,
  17071. bottom: 0.008
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(5 + 10 / 12, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(5 + 10 / 12, "feet"),
  17088. weight: math.unit(129, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/rina/front.svg",
  17092. extra: 266 / 255,
  17093. bottom: 0.005
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(5 + 10 / 12, "feet"),
  17101. default: true
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17107. {
  17108. front: {
  17109. height: math.unit(6 + 1 / 12, "feet"),
  17110. weight: math.unit(192, "lb"),
  17111. name: "Front",
  17112. image: {
  17113. source: "./media/characters/veronica/front.svg",
  17114. extra: 319 / 309,
  17115. bottom: 0.005
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(6 + 1 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17129. {
  17130. front: {
  17131. height: math.unit(9 + 3 / 12, "feet"),
  17132. weight: math.unit(1100, "lb"),
  17133. name: "Front",
  17134. image: {
  17135. source: "./media/characters/braxton/front.svg",
  17136. extra: 1057 / 984,
  17137. bottom: 0.05
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(9 + 3 / 12, "feet")
  17145. },
  17146. {
  17147. name: "Giant",
  17148. height: math.unit(300, "feet"),
  17149. default: true
  17150. },
  17151. {
  17152. name: "Macro",
  17153. height: math.unit(700, "feet")
  17154. },
  17155. {
  17156. name: "Megamacro",
  17157. height: math.unit(6000, "feet")
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(6 + 7 / 12, "feet"),
  17166. weight: math.unit(150, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/blue-feyonics/front.svg",
  17170. extra: 1403 / 1306,
  17171. bottom: 0.047
  17172. }
  17173. },
  17174. },
  17175. [
  17176. {
  17177. name: "Normal",
  17178. height: math.unit(6 + 7 / 12, "feet"),
  17179. default: true
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(1.8, "meters"),
  17188. weight: math.unit(60, "kg"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/maxwell/front.svg",
  17192. extra: 2060 / 1873
  17193. }
  17194. },
  17195. },
  17196. [
  17197. {
  17198. name: "Micro",
  17199. height: math.unit(1, "mm")
  17200. },
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(1.8, "meter"),
  17204. default: true
  17205. },
  17206. {
  17207. name: "Macro",
  17208. height: math.unit(30, "meters")
  17209. },
  17210. {
  17211. name: "Megamacro",
  17212. height: math.unit(10, "km")
  17213. },
  17214. ]
  17215. ))
  17216. characterMakers.push(() => makeCharacter(
  17217. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17218. {
  17219. front: {
  17220. height: math.unit(6, "feet"),
  17221. weight: math.unit(150, "lb"),
  17222. name: "Front",
  17223. image: {
  17224. source: "./media/characters/jack/front.svg",
  17225. extra: 1754 / 1640,
  17226. bottom: 0.01
  17227. }
  17228. },
  17229. },
  17230. [
  17231. {
  17232. name: "Normal",
  17233. height: math.unit(80000, "feet"),
  17234. default: true
  17235. },
  17236. {
  17237. name: "Max size",
  17238. height: math.unit(10, "lightyears")
  17239. },
  17240. ]
  17241. ))
  17242. characterMakers.push(() => makeCharacter(
  17243. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17244. {
  17245. urban: {
  17246. height: math.unit(5, "feet"),
  17247. weight: math.unit(240, "lb"),
  17248. name: "Urban",
  17249. image: {
  17250. source: "./media/characters/cafat/urban.svg",
  17251. extra: 1223/1126,
  17252. bottom: 205/1428
  17253. }
  17254. },
  17255. summer: {
  17256. height: math.unit(5, "feet"),
  17257. weight: math.unit(240, "lb"),
  17258. name: "Summer",
  17259. image: {
  17260. source: "./media/characters/cafat/summer.svg",
  17261. extra: 1223/1126,
  17262. bottom: 205/1428
  17263. }
  17264. },
  17265. winter: {
  17266. height: math.unit(5, "feet"),
  17267. weight: math.unit(240, "lb"),
  17268. name: "Winter",
  17269. image: {
  17270. source: "./media/characters/cafat/winter.svg",
  17271. extra: 1223/1126,
  17272. bottom: 205/1428
  17273. }
  17274. },
  17275. lingerie: {
  17276. height: math.unit(5, "feet"),
  17277. weight: math.unit(240, "lb"),
  17278. name: "Lingerie",
  17279. image: {
  17280. source: "./media/characters/cafat/lingerie.svg",
  17281. extra: 1223/1126,
  17282. bottom: 205/1428
  17283. }
  17284. },
  17285. upright: {
  17286. height: math.unit(6.3, "feet"),
  17287. weight: math.unit(240, "lb"),
  17288. name: "Upright",
  17289. image: {
  17290. source: "./media/characters/cafat/upright.svg",
  17291. bottom: 0.01
  17292. }
  17293. },
  17294. uprightFull: {
  17295. height: math.unit(6.3, "feet"),
  17296. weight: math.unit(240, "lb"),
  17297. name: "Upright (Full)",
  17298. image: {
  17299. source: "./media/characters/cafat/upright-full.svg",
  17300. bottom: 0.01
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Small",
  17307. height: math.unit(5, "feet"),
  17308. default: true
  17309. },
  17310. {
  17311. name: "Large",
  17312. height: math.unit(13, "feet")
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Verin Raharra", species: ["sergal"], 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/verin-raharra/front.svg",
  17325. extra: 5019 / 4835,
  17326. bottom: 0.023
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(7 + 5 / 12, "feet"),
  17334. default: true
  17335. },
  17336. {
  17337. name: "Upsized",
  17338. height: math.unit(20, "feet")
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17344. {
  17345. front: {
  17346. height: math.unit(7, "feet"),
  17347. weight: math.unit(230, "lb"),
  17348. name: "Front",
  17349. image: {
  17350. source: "./media/characters/nakata/front.svg",
  17351. extra: 1.005,
  17352. bottom: 0.01
  17353. }
  17354. },
  17355. },
  17356. [
  17357. {
  17358. name: "Normal",
  17359. height: math.unit(7, "feet"),
  17360. default: true
  17361. },
  17362. {
  17363. name: "Big",
  17364. height: math.unit(14, "feet")
  17365. },
  17366. {
  17367. name: "Macro",
  17368. height: math.unit(400, "feet")
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17374. {
  17375. front: {
  17376. height: math.unit(4.91, "feet"),
  17377. weight: math.unit(100, "lb"),
  17378. name: "Front",
  17379. image: {
  17380. source: "./media/characters/lily/front.svg",
  17381. extra: 1585 / 1415,
  17382. bottom: 0.02
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(4.91, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17396. {
  17397. laying: {
  17398. height: math.unit(4 + 4 / 12, "feet"),
  17399. weight: math.unit(600, "lb"),
  17400. name: "Laying",
  17401. image: {
  17402. source: "./media/characters/sheila/laying.svg",
  17403. extra: 1333 / 1265,
  17404. bottom: 0.16
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(4 + 4 / 12, "feet"),
  17412. default: true
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(6, "feet"),
  17421. weight: math.unit(190, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/sax/front.svg",
  17425. extra: 1187 / 973,
  17426. bottom: 0.042
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Micro",
  17433. height: math.unit(4, "inches"),
  17434. default: true
  17435. },
  17436. ]
  17437. ))
  17438. characterMakers.push(() => makeCharacter(
  17439. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17440. {
  17441. front: {
  17442. height: math.unit(6, "feet"),
  17443. weight: math.unit(150, "lb"),
  17444. name: "Front",
  17445. image: {
  17446. source: "./media/characters/pandora/front.svg",
  17447. extra: 2720 / 2556,
  17448. bottom: 0.015
  17449. }
  17450. },
  17451. back: {
  17452. height: math.unit(6, "feet"),
  17453. weight: math.unit(150, "lb"),
  17454. name: "Back",
  17455. image: {
  17456. source: "./media/characters/pandora/back.svg",
  17457. extra: 2720 / 2556,
  17458. bottom: 0.01
  17459. }
  17460. },
  17461. beans: {
  17462. height: math.unit(6 / 8, "feet"),
  17463. name: "Beans",
  17464. image: {
  17465. source: "./media/characters/pandora/beans.svg"
  17466. }
  17467. },
  17468. collar: {
  17469. height: math.unit(0.31, "feet"),
  17470. name: "Collar",
  17471. image: {
  17472. source: "./media/characters/pandora/collar.svg"
  17473. }
  17474. },
  17475. skirt: {
  17476. height: math.unit(6, "feet"),
  17477. weight: math.unit(150, "lb"),
  17478. name: "Skirt",
  17479. image: {
  17480. source: "./media/characters/pandora/skirt.svg",
  17481. extra: 1622 / 1525,
  17482. bottom: 0.015
  17483. }
  17484. },
  17485. hoodie: {
  17486. height: math.unit(6, "feet"),
  17487. weight: math.unit(150, "lb"),
  17488. name: "Hoodie",
  17489. image: {
  17490. source: "./media/characters/pandora/hoodie.svg",
  17491. extra: 1622 / 1525,
  17492. bottom: 0.015
  17493. }
  17494. },
  17495. casual: {
  17496. height: math.unit(6, "feet"),
  17497. weight: math.unit(150, "lb"),
  17498. name: "Casual",
  17499. image: {
  17500. source: "./media/characters/pandora/casual.svg",
  17501. extra: 1622 / 1525,
  17502. bottom: 0.015
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(6, "feet")
  17510. },
  17511. {
  17512. name: "Big Steppy",
  17513. height: math.unit(1, "km"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Galactic Steppy",
  17518. height: math.unit(2, "gigameters")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17524. {
  17525. side: {
  17526. height: math.unit(10, "feet"),
  17527. weight: math.unit(800, "kg"),
  17528. name: "Side",
  17529. image: {
  17530. source: "./media/characters/venio-darcony/side.svg",
  17531. extra: 1373 / 1003,
  17532. bottom: 0.037
  17533. }
  17534. },
  17535. front: {
  17536. height: math.unit(19, "feet"),
  17537. weight: math.unit(800, "kg"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/venio-darcony/front.svg"
  17541. }
  17542. },
  17543. back: {
  17544. height: math.unit(19, "feet"),
  17545. weight: math.unit(800, "kg"),
  17546. name: "Back",
  17547. image: {
  17548. source: "./media/characters/venio-darcony/back.svg"
  17549. }
  17550. },
  17551. sideNsfw: {
  17552. height: math.unit(10, "feet"),
  17553. weight: math.unit(800, "kg"),
  17554. name: "Side (NSFW)",
  17555. image: {
  17556. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17557. extra: 1373 / 1003,
  17558. bottom: 0.037
  17559. }
  17560. },
  17561. frontNsfw: {
  17562. height: math.unit(19, "feet"),
  17563. weight: math.unit(800, "kg"),
  17564. name: "Front (NSFW)",
  17565. image: {
  17566. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17567. }
  17568. },
  17569. backNsfw: {
  17570. height: math.unit(19, "feet"),
  17571. weight: math.unit(800, "kg"),
  17572. name: "Back (NSFW)",
  17573. image: {
  17574. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17575. }
  17576. },
  17577. sideArmored: {
  17578. height: math.unit(10, "feet"),
  17579. weight: math.unit(800, "kg"),
  17580. name: "Side (Armored)",
  17581. image: {
  17582. source: "./media/characters/venio-darcony/side-armored.svg",
  17583. extra: 1373 / 1003,
  17584. bottom: 0.037
  17585. }
  17586. },
  17587. frontArmored: {
  17588. height: math.unit(19, "feet"),
  17589. weight: math.unit(900, "kg"),
  17590. name: "Front (Armored)",
  17591. image: {
  17592. source: "./media/characters/venio-darcony/front-armored.svg"
  17593. }
  17594. },
  17595. backArmored: {
  17596. height: math.unit(19, "feet"),
  17597. weight: math.unit(900, "kg"),
  17598. name: "Back (Armored)",
  17599. image: {
  17600. source: "./media/characters/venio-darcony/back-armored.svg"
  17601. }
  17602. },
  17603. sword: {
  17604. height: math.unit(10, "feet"),
  17605. weight: math.unit(50, "lb"),
  17606. name: "Sword",
  17607. image: {
  17608. source: "./media/characters/venio-darcony/sword.svg"
  17609. }
  17610. },
  17611. },
  17612. [
  17613. {
  17614. name: "Normal",
  17615. height: math.unit(10, "feet")
  17616. },
  17617. {
  17618. name: "Macro",
  17619. height: math.unit(130, "feet"),
  17620. default: true
  17621. },
  17622. {
  17623. name: "Macro+",
  17624. height: math.unit(240, "feet")
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17630. {
  17631. front: {
  17632. height: math.unit(6, "feet"),
  17633. weight: math.unit(150, "lb"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/veski/front.svg",
  17637. extra: 1299 / 1225,
  17638. bottom: 0.04
  17639. }
  17640. },
  17641. back: {
  17642. height: math.unit(6, "feet"),
  17643. weight: math.unit(150, "lb"),
  17644. name: "Back",
  17645. image: {
  17646. source: "./media/characters/veski/back.svg",
  17647. extra: 1299 / 1225,
  17648. bottom: 0.008
  17649. }
  17650. },
  17651. maw: {
  17652. height: math.unit(1.5 * 1.21, "feet"),
  17653. name: "Maw",
  17654. image: {
  17655. source: "./media/characters/veski/maw.svg"
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Macro",
  17662. height: math.unit(2, "km"),
  17663. default: true
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(5 + 7 / 12, "feet"),
  17672. name: "Front",
  17673. image: {
  17674. source: "./media/characters/isabelle/front.svg",
  17675. extra: 2130 / 1976,
  17676. bottom: 0.05
  17677. }
  17678. },
  17679. },
  17680. [
  17681. {
  17682. name: "Supermicro",
  17683. height: math.unit(10, "micrometers")
  17684. },
  17685. {
  17686. name: "Micro",
  17687. height: math.unit(1, "inch")
  17688. },
  17689. {
  17690. name: "Tiny",
  17691. height: math.unit(5, "inches")
  17692. },
  17693. {
  17694. name: "Standard",
  17695. height: math.unit(5 + 7 / 12, "inches")
  17696. },
  17697. {
  17698. name: "Macro",
  17699. height: math.unit(80, "meters"),
  17700. default: true
  17701. },
  17702. {
  17703. name: "Megamacro",
  17704. height: math.unit(250, "meters")
  17705. },
  17706. {
  17707. name: "Gigamacro",
  17708. height: math.unit(5, "km")
  17709. },
  17710. {
  17711. name: "Cosmic",
  17712. height: math.unit(2.5e6, "miles")
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(6, "feet"),
  17721. weight: math.unit(150, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/hanzo/front.svg",
  17725. extra: 374 / 344,
  17726. bottom: 0.02
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Normal",
  17733. height: math.unit(8, "feet"),
  17734. default: true
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17740. {
  17741. front: {
  17742. height: math.unit(7, "feet"),
  17743. weight: math.unit(130, "lb"),
  17744. name: "Front",
  17745. image: {
  17746. source: "./media/characters/anna/front.svg",
  17747. extra: 169 / 145,
  17748. bottom: 0.06
  17749. }
  17750. },
  17751. full: {
  17752. height: math.unit(4.96, "feet"),
  17753. weight: math.unit(220, "lb"),
  17754. name: "Full",
  17755. image: {
  17756. source: "./media/characters/anna/full.svg",
  17757. extra: 138 / 114,
  17758. bottom: 0.15
  17759. }
  17760. },
  17761. tongue: {
  17762. height: math.unit(2.53, "feet"),
  17763. name: "Tongue",
  17764. image: {
  17765. source: "./media/characters/anna/tongue.svg"
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Normal",
  17772. height: math.unit(7, "feet"),
  17773. default: true
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(7, "feet"),
  17782. weight: math.unit(150, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/ian-corvid/front.svg",
  17786. extra: 150 / 142,
  17787. bottom: 0.02
  17788. }
  17789. },
  17790. back: {
  17791. height: math.unit(7, "feet"),
  17792. weight: math.unit(150, "lb"),
  17793. name: "Back",
  17794. image: {
  17795. source: "./media/characters/ian-corvid/back.svg",
  17796. extra: 150 / 143,
  17797. bottom: 0.01
  17798. }
  17799. },
  17800. stomping: {
  17801. height: math.unit(7, "feet"),
  17802. weight: math.unit(150, "lb"),
  17803. name: "Stomping",
  17804. image: {
  17805. source: "./media/characters/ian-corvid/stomping.svg",
  17806. extra: 76 / 72
  17807. }
  17808. },
  17809. sitting: {
  17810. height: math.unit(7 / 1.8, "feet"),
  17811. weight: math.unit(150, "lb"),
  17812. name: "Sitting",
  17813. image: {
  17814. source: "./media/characters/ian-corvid/sitting.svg",
  17815. extra: 1400 / 1269,
  17816. bottom: 0.15
  17817. }
  17818. },
  17819. },
  17820. [
  17821. {
  17822. name: "Tiny Microw",
  17823. height: math.unit(1, "inch")
  17824. },
  17825. {
  17826. name: "Microw",
  17827. height: math.unit(6, "inches")
  17828. },
  17829. {
  17830. name: "Crow",
  17831. height: math.unit(7 + 1 / 12, "feet"),
  17832. default: true
  17833. },
  17834. {
  17835. name: "Macrow",
  17836. height: math.unit(176, "feet")
  17837. },
  17838. ]
  17839. ))
  17840. characterMakers.push(() => makeCharacter(
  17841. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17842. {
  17843. front: {
  17844. height: math.unit(5 + 7 / 12, "feet"),
  17845. weight: math.unit(147, "lb"),
  17846. name: "Front",
  17847. image: {
  17848. source: "./media/characters/natalie-kellon/front.svg",
  17849. extra: 1214 / 1141,
  17850. bottom: 0.02
  17851. }
  17852. },
  17853. },
  17854. [
  17855. {
  17856. name: "Micro",
  17857. height: math.unit(1 / 16, "inch")
  17858. },
  17859. {
  17860. name: "Tiny",
  17861. height: math.unit(4, "inches")
  17862. },
  17863. {
  17864. name: "Normal",
  17865. height: math.unit(5 + 7 / 12, "feet"),
  17866. default: true
  17867. },
  17868. {
  17869. name: "Amazon",
  17870. height: math.unit(12, "feet")
  17871. },
  17872. {
  17873. name: "Giantess",
  17874. height: math.unit(160, "meters")
  17875. },
  17876. {
  17877. name: "Titaness",
  17878. height: math.unit(800, "meters")
  17879. },
  17880. ]
  17881. ))
  17882. characterMakers.push(() => makeCharacter(
  17883. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17884. {
  17885. front: {
  17886. height: math.unit(6, "feet"),
  17887. weight: math.unit(150, "lb"),
  17888. name: "Front",
  17889. image: {
  17890. source: "./media/characters/alluria/front.svg",
  17891. extra: 806 / 738,
  17892. bottom: 0.01
  17893. }
  17894. },
  17895. side: {
  17896. height: math.unit(6, "feet"),
  17897. weight: math.unit(150, "lb"),
  17898. name: "Side",
  17899. image: {
  17900. source: "./media/characters/alluria/side.svg",
  17901. extra: 800 / 750,
  17902. }
  17903. },
  17904. back: {
  17905. height: math.unit(6, "feet"),
  17906. weight: math.unit(150, "lb"),
  17907. name: "Back",
  17908. image: {
  17909. source: "./media/characters/alluria/back.svg",
  17910. extra: 806 / 738,
  17911. }
  17912. },
  17913. frontMaid: {
  17914. height: math.unit(6, "feet"),
  17915. weight: math.unit(150, "lb"),
  17916. name: "Front (Maid)",
  17917. image: {
  17918. source: "./media/characters/alluria/front-maid.svg",
  17919. extra: 806 / 738,
  17920. bottom: 0.01
  17921. }
  17922. },
  17923. sideMaid: {
  17924. height: math.unit(6, "feet"),
  17925. weight: math.unit(150, "lb"),
  17926. name: "Side (Maid)",
  17927. image: {
  17928. source: "./media/characters/alluria/side-maid.svg",
  17929. extra: 800 / 750,
  17930. bottom: 0.005
  17931. }
  17932. },
  17933. backMaid: {
  17934. height: math.unit(6, "feet"),
  17935. weight: math.unit(150, "lb"),
  17936. name: "Back (Maid)",
  17937. image: {
  17938. source: "./media/characters/alluria/back-maid.svg",
  17939. extra: 806 / 738,
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Micro",
  17946. height: math.unit(6, "inches"),
  17947. default: true
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(6, "feet"),
  17956. weight: math.unit(150, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/kyle/front.svg",
  17960. extra: 1069 / 962,
  17961. bottom: 77.228 / 1727.45
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Macro",
  17968. height: math.unit(150, "feet"),
  17969. default: true
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17975. {
  17976. front: {
  17977. height: math.unit(6, "feet"),
  17978. weight: math.unit(300, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/duncan/front.svg",
  17982. extra: 1650 / 1482,
  17983. bottom: 0.05
  17984. }
  17985. },
  17986. },
  17987. [
  17988. {
  17989. name: "Macro",
  17990. height: math.unit(100, "feet"),
  17991. default: true
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17997. {
  17998. front: {
  17999. height: math.unit(5 + 4 / 12, "feet"),
  18000. weight: math.unit(220, "lb"),
  18001. name: "Front",
  18002. image: {
  18003. source: "./media/characters/memory/front.svg",
  18004. extra: 3641 / 3545,
  18005. bottom: 0.03
  18006. }
  18007. },
  18008. back: {
  18009. height: math.unit(5 + 4 / 12, "feet"),
  18010. weight: math.unit(220, "lb"),
  18011. name: "Back",
  18012. image: {
  18013. source: "./media/characters/memory/back.svg",
  18014. extra: 3641 / 3545,
  18015. bottom: 0.025
  18016. }
  18017. },
  18018. frontSkirt: {
  18019. height: math.unit(5 + 4 / 12, "feet"),
  18020. weight: math.unit(220, "lb"),
  18021. name: "Front (Skirt)",
  18022. image: {
  18023. source: "./media/characters/memory/front-skirt.svg",
  18024. extra: 3641 / 3545,
  18025. bottom: 0.03
  18026. }
  18027. },
  18028. frontDress: {
  18029. height: math.unit(5 + 4 / 12, "feet"),
  18030. weight: math.unit(220, "lb"),
  18031. name: "Front (Dress)",
  18032. image: {
  18033. source: "./media/characters/memory/front-dress.svg",
  18034. extra: 3641 / 3545,
  18035. bottom: 0.03
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Micro",
  18042. height: math.unit(6, "inches"),
  18043. default: true
  18044. },
  18045. {
  18046. name: "Normal",
  18047. height: math.unit(5 + 4 / 12, "feet")
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18053. {
  18054. front: {
  18055. height: math.unit(4 + 11 / 12, "feet"),
  18056. weight: math.unit(100, "lb"),
  18057. name: "Front",
  18058. image: {
  18059. source: "./media/characters/luno/front.svg",
  18060. extra: 1535 / 1487,
  18061. bottom: 0.03
  18062. }
  18063. },
  18064. },
  18065. [
  18066. {
  18067. name: "Micro",
  18068. height: math.unit(3, "inches")
  18069. },
  18070. {
  18071. name: "Normal",
  18072. height: math.unit(4 + 11 / 12, "feet"),
  18073. default: true
  18074. },
  18075. {
  18076. name: "Macro",
  18077. height: math.unit(300, "feet")
  18078. },
  18079. {
  18080. name: "Megamacro",
  18081. height: math.unit(700, "miles")
  18082. },
  18083. ]
  18084. ))
  18085. characterMakers.push(() => makeCharacter(
  18086. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18087. {
  18088. front: {
  18089. height: math.unit(6 + 2 / 12, "feet"),
  18090. weight: math.unit(170, "lb"),
  18091. name: "Front",
  18092. image: {
  18093. source: "./media/characters/jamesy/front.svg",
  18094. extra: 440 / 382,
  18095. bottom: 0.005
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Micro",
  18102. height: math.unit(3, "inches")
  18103. },
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(6 + 2 / 12, "feet"),
  18107. default: true
  18108. },
  18109. {
  18110. name: "Macro",
  18111. height: math.unit(300, "feet")
  18112. },
  18113. {
  18114. name: "Megamacro",
  18115. height: math.unit(700, "miles")
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18121. {
  18122. front: {
  18123. height: math.unit(6, "feet"),
  18124. weight: math.unit(160, "lb"),
  18125. name: "Front",
  18126. image: {
  18127. source: "./media/characters/mark/front.svg",
  18128. extra: 3300 / 3100,
  18129. bottom: 136.42 / 3440.47
  18130. }
  18131. },
  18132. },
  18133. [
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(120, "meters")
  18137. },
  18138. {
  18139. name: "Bigger Macro",
  18140. height: math.unit(350, "meters")
  18141. },
  18142. {
  18143. name: "Megamacro",
  18144. height: math.unit(8, "km"),
  18145. default: true
  18146. },
  18147. {
  18148. name: "Continental",
  18149. height: math.unit(4550, "km")
  18150. },
  18151. {
  18152. name: "Planetary",
  18153. height: math.unit(65000, "km")
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(6, "feet"),
  18162. weight: math.unit(400, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/mac/front.svg",
  18166. extra: 1048 / 987.7,
  18167. bottom: 60 / 1107.6,
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Macro",
  18174. height: math.unit(500, "feet"),
  18175. default: true
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18181. {
  18182. front: {
  18183. height: math.unit(5 + 2 / 12, "feet"),
  18184. weight: math.unit(190, "lb"),
  18185. name: "Front",
  18186. image: {
  18187. source: "./media/characters/bari/front.svg",
  18188. extra: 3156 / 2880,
  18189. bottom: 0.03
  18190. }
  18191. },
  18192. back: {
  18193. height: math.unit(5 + 2 / 12, "feet"),
  18194. weight: math.unit(190, "lb"),
  18195. name: "Back",
  18196. image: {
  18197. source: "./media/characters/bari/back.svg",
  18198. extra: 3260 / 2834,
  18199. bottom: 0.025
  18200. }
  18201. },
  18202. frontPlush: {
  18203. height: math.unit(5 + 2 / 12, "feet"),
  18204. weight: math.unit(190, "lb"),
  18205. name: "Front (Plush)",
  18206. image: {
  18207. source: "./media/characters/bari/front-plush.svg",
  18208. extra: 1112 / 1061,
  18209. bottom: 0.002
  18210. }
  18211. },
  18212. },
  18213. [
  18214. {
  18215. name: "Micro",
  18216. height: math.unit(3, "inches")
  18217. },
  18218. {
  18219. name: "Normal",
  18220. height: math.unit(5 + 2 / 12, "feet"),
  18221. default: true
  18222. },
  18223. {
  18224. name: "Macro",
  18225. height: math.unit(20, "feet")
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18231. {
  18232. front: {
  18233. height: math.unit(6 + 1 / 12, "feet"),
  18234. weight: math.unit(275, "lb"),
  18235. name: "Front",
  18236. image: {
  18237. source: "./media/characters/hunter-misha-raven/front.svg"
  18238. }
  18239. },
  18240. },
  18241. [
  18242. {
  18243. name: "Mortal",
  18244. height: math.unit(6 + 1 / 12, "feet")
  18245. },
  18246. {
  18247. name: "Divine",
  18248. height: math.unit(1.12134e34, "parsecs"),
  18249. default: true
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18255. {
  18256. front: {
  18257. height: math.unit(6 + 3 / 12, "feet"),
  18258. weight: math.unit(220, "lb"),
  18259. name: "Front",
  18260. image: {
  18261. source: "./media/characters/max-calore/front.svg",
  18262. extra: 1700 / 1648,
  18263. bottom: 0.01
  18264. }
  18265. },
  18266. back: {
  18267. height: math.unit(6 + 3 / 12, "feet"),
  18268. weight: math.unit(220, "lb"),
  18269. name: "Back",
  18270. image: {
  18271. source: "./media/characters/max-calore/back.svg",
  18272. extra: 1700 / 1648,
  18273. bottom: 0.01
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Normal",
  18280. height: math.unit(6 + 3 / 12, "feet"),
  18281. default: true
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18287. {
  18288. side: {
  18289. height: math.unit(2 + 8 / 12, "feet"),
  18290. weight: math.unit(99, "lb"),
  18291. name: "Side",
  18292. image: {
  18293. source: "./media/characters/aspen/side.svg",
  18294. extra: 152 / 138,
  18295. bottom: 0.032
  18296. }
  18297. },
  18298. },
  18299. [
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(2 + 8 / 12, "feet"),
  18303. default: true
  18304. },
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18309. {
  18310. side: {
  18311. height: math.unit(3 + 2 / 12, "feet"),
  18312. weight: math.unit(224, "lb"),
  18313. name: "Side",
  18314. image: {
  18315. source: "./media/characters/sheila-feral-wolf/side.svg",
  18316. extra: 179 / 166,
  18317. bottom: 0.03
  18318. }
  18319. },
  18320. },
  18321. [
  18322. {
  18323. name: "Normal",
  18324. height: math.unit(3 + 2 / 12, "feet"),
  18325. default: true
  18326. },
  18327. ]
  18328. ))
  18329. characterMakers.push(() => makeCharacter(
  18330. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18331. {
  18332. side: {
  18333. height: math.unit(1 + 9 / 12, "feet"),
  18334. weight: math.unit(38, "lb"),
  18335. name: "Side",
  18336. image: {
  18337. source: "./media/characters/michelle/side.svg",
  18338. extra: 147 / 136.7,
  18339. bottom: 0.03
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(1 + 9 / 12, "feet"),
  18347. default: true
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18353. {
  18354. front: {
  18355. height: math.unit(1.54, "feet"),
  18356. weight: math.unit(50, "lb"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/nino/front.svg"
  18360. }
  18361. },
  18362. },
  18363. [
  18364. {
  18365. name: "Normal",
  18366. height: math.unit(1.54, "feet"),
  18367. default: true
  18368. },
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18373. {
  18374. front: {
  18375. height: math.unit(1.49, "feet"),
  18376. weight: math.unit(45, "lb"),
  18377. name: "Front",
  18378. image: {
  18379. source: "./media/characters/viola/front.svg"
  18380. }
  18381. },
  18382. },
  18383. [
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(1.49, "feet"),
  18387. default: true
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(6 + 5 / 12, "feet"),
  18396. weight: math.unit(580, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/atlas/front.svg",
  18400. extra: 298.5 / 290,
  18401. bottom: 0.015
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Normal",
  18408. height: math.unit(6 + 5 / 12, "feet"),
  18409. default: true
  18410. },
  18411. ]
  18412. ))
  18413. characterMakers.push(() => makeCharacter(
  18414. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18415. {
  18416. side: {
  18417. height: math.unit(15.6, "inches"),
  18418. weight: math.unit(10, "lb"),
  18419. name: "Side",
  18420. image: {
  18421. source: "./media/characters/davy/side.svg",
  18422. extra: 200 / 170,
  18423. bottom: 0.01
  18424. }
  18425. },
  18426. },
  18427. [
  18428. {
  18429. name: "Normal",
  18430. height: math.unit(15.6, "inches"),
  18431. default: true
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18437. {
  18438. side: {
  18439. height: math.unit(4 + 8 / 12, "feet"),
  18440. weight: math.unit(166, "lb"),
  18441. name: "Side",
  18442. image: {
  18443. source: "./media/characters/fiona/side.svg",
  18444. extra: 232 / 220,
  18445. bottom: 0.03
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(4 + 8 / 12, "feet"),
  18453. default: true
  18454. },
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18459. {
  18460. front: {
  18461. height: math.unit(26, "inches"),
  18462. weight: math.unit(35, "lb"),
  18463. name: "Front",
  18464. image: {
  18465. source: "./media/characters/lyla/front.svg",
  18466. bottom: 0.1
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(3, "feet"),
  18474. default: true
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18480. {
  18481. side: {
  18482. height: math.unit(1.8, "feet"),
  18483. weight: math.unit(44, "lb"),
  18484. name: "Side",
  18485. image: {
  18486. source: "./media/characters/perseus/side.svg",
  18487. bottom: 0.21
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Normal",
  18494. height: math.unit(1.8, "feet"),
  18495. default: true
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18501. {
  18502. side: {
  18503. height: math.unit(4 + 2 / 12, "feet"),
  18504. weight: math.unit(20, "lb"),
  18505. name: "Side",
  18506. image: {
  18507. source: "./media/characters/remus/side.svg"
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Normal",
  18514. height: math.unit(4 + 2 / 12, "feet"),
  18515. default: true
  18516. },
  18517. ]
  18518. ))
  18519. characterMakers.push(() => makeCharacter(
  18520. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18521. {
  18522. front: {
  18523. height: math.unit(4 + 11 / 12, "feet"),
  18524. weight: math.unit(114, "lb"),
  18525. name: "Front",
  18526. image: {
  18527. source: "./media/characters/raf/front.svg",
  18528. extra: 1504/1339,
  18529. bottom: 26/1530
  18530. }
  18531. },
  18532. side: {
  18533. height: math.unit(4 + 11 / 12, "feet"),
  18534. weight: math.unit(114, "lb"),
  18535. name: "Side",
  18536. image: {
  18537. source: "./media/characters/raf/side.svg",
  18538. extra: 1466/1316,
  18539. bottom: 29/1495
  18540. }
  18541. },
  18542. paw: {
  18543. height: math.unit(1.45, "feet"),
  18544. name: "Paw",
  18545. image: {
  18546. source: "./media/characters/raf/paw.svg"
  18547. },
  18548. extraAttributes: {
  18549. "toeSize": {
  18550. name: "Toe Size",
  18551. power: 2,
  18552. type: "area",
  18553. base: math.unit(0.004, "m^2")
  18554. },
  18555. "padSize": {
  18556. name: "Pad Size",
  18557. power: 2,
  18558. type: "area",
  18559. base: math.unit(0.04, "m^2")
  18560. },
  18561. "footSize": {
  18562. name: "Foot Size",
  18563. power: 2,
  18564. type: "area",
  18565. base: math.unit(0.08, "m^2")
  18566. },
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Micro",
  18573. height: math.unit(2, "inches")
  18574. },
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(4 + 11 / 12, "feet"),
  18578. default: true
  18579. },
  18580. {
  18581. name: "Macro",
  18582. height: math.unit(70, "feet")
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18588. {
  18589. front: {
  18590. height: math.unit(1.5, "meters"),
  18591. weight: math.unit(68, "kg"),
  18592. name: "Front",
  18593. image: {
  18594. source: "./media/characters/liam-einarr/front.svg",
  18595. extra: 2822 / 2666
  18596. }
  18597. },
  18598. back: {
  18599. height: math.unit(1.5, "meters"),
  18600. weight: math.unit(68, "kg"),
  18601. name: "Back",
  18602. image: {
  18603. source: "./media/characters/liam-einarr/back.svg",
  18604. extra: 2822 / 2666,
  18605. bottom: 0.015
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(1.5, "meters"),
  18613. default: true
  18614. },
  18615. {
  18616. name: "Macro",
  18617. height: math.unit(150, "meters")
  18618. },
  18619. {
  18620. name: "Megamacro",
  18621. height: math.unit(35, "km")
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(6, "feet"),
  18630. weight: math.unit(75, "kg"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/linda/front.svg",
  18634. extra: 930 / 874,
  18635. bottom: 0.004
  18636. }
  18637. },
  18638. },
  18639. [
  18640. {
  18641. name: "Normal",
  18642. height: math.unit(6, "feet"),
  18643. default: true
  18644. },
  18645. ]
  18646. ))
  18647. characterMakers.push(() => makeCharacter(
  18648. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18649. {
  18650. front: {
  18651. height: math.unit(6 + 8 / 12, "feet"),
  18652. weight: math.unit(220, "lb"),
  18653. name: "Front",
  18654. image: {
  18655. source: "./media/characters/caylex/front.svg",
  18656. extra: 821 / 772,
  18657. bottom: 0.07
  18658. }
  18659. },
  18660. back: {
  18661. height: math.unit(6 + 8 / 12, "feet"),
  18662. weight: math.unit(220, "lb"),
  18663. name: "Back",
  18664. image: {
  18665. source: "./media/characters/caylex/back.svg",
  18666. extra: 821 / 772,
  18667. bottom: 0.022
  18668. }
  18669. },
  18670. hand: {
  18671. height: math.unit(1.25, "feet"),
  18672. name: "Hand",
  18673. image: {
  18674. source: "./media/characters/caylex/hand.svg"
  18675. }
  18676. },
  18677. foot: {
  18678. height: math.unit(1.6, "feet"),
  18679. name: "Foot",
  18680. image: {
  18681. source: "./media/characters/caylex/foot.svg"
  18682. }
  18683. },
  18684. armored: {
  18685. height: math.unit(6 + 8 / 12, "feet"),
  18686. weight: math.unit(250, "lb"),
  18687. name: "Armored",
  18688. image: {
  18689. source: "./media/characters/caylex/armored.svg",
  18690. extra: 1420 / 1310,
  18691. bottom: 0.045
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(6 + 8 / 12, "feet"),
  18699. default: true
  18700. },
  18701. {
  18702. name: "Normal+",
  18703. height: math.unit(12, "feet")
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18709. {
  18710. front: {
  18711. height: math.unit(7 + 6 / 12, "feet"),
  18712. weight: math.unit(288, "lb"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/alana/front.svg",
  18716. extra: 679 / 653,
  18717. bottom: 22.5 / 701
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(7 + 6 / 12, "feet")
  18725. },
  18726. {
  18727. name: "Large",
  18728. height: math.unit(50, "feet")
  18729. },
  18730. {
  18731. name: "Macro",
  18732. height: math.unit(100, "feet"),
  18733. default: true
  18734. },
  18735. {
  18736. name: "Macro+",
  18737. height: math.unit(200, "feet")
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18743. {
  18744. front: {
  18745. height: math.unit(6 + 1 / 12, "feet"),
  18746. weight: math.unit(210, "lb"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/hasani/front.svg",
  18750. extra: 244 / 232,
  18751. bottom: 0.01
  18752. }
  18753. },
  18754. back: {
  18755. height: math.unit(6 + 1 / 12, "feet"),
  18756. weight: math.unit(210, "lb"),
  18757. name: "Back",
  18758. image: {
  18759. source: "./media/characters/hasani/back.svg",
  18760. extra: 244 / 232,
  18761. bottom: 0.01
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(6 + 1 / 12, "feet")
  18769. },
  18770. {
  18771. name: "Macro",
  18772. height: math.unit(175, "feet"),
  18773. default: true
  18774. },
  18775. ]
  18776. ))
  18777. characterMakers.push(() => makeCharacter(
  18778. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18779. {
  18780. front: {
  18781. height: math.unit(1.82, "meters"),
  18782. weight: math.unit(140, "lb"),
  18783. name: "Front",
  18784. image: {
  18785. source: "./media/characters/nita/front.svg",
  18786. extra: 2473 / 2363,
  18787. bottom: 0.01
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Normal",
  18794. height: math.unit(1.82, "m")
  18795. },
  18796. {
  18797. name: "Macro",
  18798. height: math.unit(300, "m")
  18799. },
  18800. {
  18801. name: "Mistake Canon",
  18802. height: math.unit(0.5, "miles"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Big Mistake",
  18807. height: math.unit(13, "miles")
  18808. },
  18809. {
  18810. name: "Playing God",
  18811. height: math.unit(2450, "miles")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(4, "feet"),
  18820. weight: math.unit(120, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/shiriko/front.svg",
  18824. extra: 970/934,
  18825. bottom: 5/975
  18826. }
  18827. },
  18828. },
  18829. [
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(4, "feet"),
  18833. default: true
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18839. {
  18840. front: {
  18841. height: math.unit(6, "feet"),
  18842. name: "front",
  18843. image: {
  18844. source: "./media/characters/deja/front.svg",
  18845. extra: 926 / 840,
  18846. bottom: 0.07
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Planck Length",
  18853. height: math.unit(1.6e-35, "meters")
  18854. },
  18855. {
  18856. name: "Normal",
  18857. height: math.unit(30.48, "meters"),
  18858. default: true
  18859. },
  18860. {
  18861. name: "Universal",
  18862. height: math.unit(8.8e26, "meters")
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18868. {
  18869. side: {
  18870. height: math.unit(8, "feet"),
  18871. weight: math.unit(6300, "lb"),
  18872. name: "Side",
  18873. image: {
  18874. source: "./media/characters/anima/side.svg",
  18875. bottom: 0.035
  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: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(8, "feet"),
  18892. weight: math.unit(350, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/bianca/front.svg",
  18896. extra: 234 / 225,
  18897. bottom: 0.03
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(8, "feet"),
  18905. default: true
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18911. {
  18912. front: {
  18913. height: math.unit(11 + 5/12, "feet"),
  18914. weight: math.unit(1200, "lb"),
  18915. name: "Front",
  18916. image: {
  18917. source: "./media/characters/adinia/front.svg",
  18918. extra: 1767/1641,
  18919. bottom: 44/1811
  18920. },
  18921. extraAttributes: {
  18922. "energyIntake": {
  18923. name: "Energy Intake",
  18924. power: 3,
  18925. type: "energy",
  18926. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18927. },
  18928. }
  18929. },
  18930. back: {
  18931. height: math.unit(11 + 5/12, "feet"),
  18932. weight: math.unit(1200, "lb"),
  18933. name: "Back",
  18934. image: {
  18935. source: "./media/characters/adinia/back.svg",
  18936. extra: 1834/1684,
  18937. bottom: 14/1848
  18938. },
  18939. extraAttributes: {
  18940. "energyIntake": {
  18941. name: "Energy Intake",
  18942. power: 3,
  18943. type: "energy",
  18944. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18945. },
  18946. }
  18947. },
  18948. maw: {
  18949. height: math.unit(3.79, "feet"),
  18950. name: "Maw",
  18951. image: {
  18952. source: "./media/characters/adinia/maw.svg"
  18953. }
  18954. },
  18955. rump: {
  18956. height: math.unit(4.6, "feet"),
  18957. name: "Rump",
  18958. image: {
  18959. source: "./media/characters/adinia/rump.svg"
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(11 + 5 / 12, "feet"),
  18967. default: true
  18968. },
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18973. {
  18974. front: {
  18975. height: math.unit(3, "meters"),
  18976. weight: math.unit(200, "kg"),
  18977. name: "Front",
  18978. image: {
  18979. source: "./media/characters/lykasa/front.svg",
  18980. extra: 1076 / 976,
  18981. bottom: 0.06
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Normal",
  18988. height: math.unit(3, "meters")
  18989. },
  18990. {
  18991. name: "Kaiju",
  18992. height: math.unit(120, "meters"),
  18993. default: true
  18994. },
  18995. {
  18996. name: "Mega Kaiju",
  18997. height: math.unit(240, "km")
  18998. },
  18999. {
  19000. name: "Giga Kaiju",
  19001. height: math.unit(400, "megameters")
  19002. },
  19003. {
  19004. name: "Tera Kaiju",
  19005. height: math.unit(800, "gigameters")
  19006. },
  19007. {
  19008. name: "Kaiju Dragon Goddess",
  19009. height: math.unit(26, "zettaparsecs")
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19015. {
  19016. side: {
  19017. height: math.unit(283 / 124 * 6, "feet"),
  19018. weight: math.unit(35000, "lb"),
  19019. name: "Side",
  19020. image: {
  19021. source: "./media/characters/malfaren/side.svg",
  19022. extra: 1310/529,
  19023. bottom: 24/1334
  19024. }
  19025. },
  19026. front: {
  19027. height: math.unit(22.36, "feet"),
  19028. weight: math.unit(35000, "lb"),
  19029. name: "Front",
  19030. image: {
  19031. source: "./media/characters/malfaren/front.svg",
  19032. extra: 1237/1115,
  19033. bottom: 32/1269
  19034. }
  19035. },
  19036. maw: {
  19037. height: math.unit(6.9, "feet"),
  19038. name: "Maw",
  19039. image: {
  19040. source: "./media/characters/malfaren/maw.svg"
  19041. }
  19042. },
  19043. dick: {
  19044. height: math.unit(6.19, "feet"),
  19045. name: "Dick",
  19046. image: {
  19047. source: "./media/characters/malfaren/dick.svg"
  19048. }
  19049. },
  19050. eye: {
  19051. height: math.unit(0.69, "feet"),
  19052. name: "Eye",
  19053. image: {
  19054. source: "./media/characters/malfaren/eye.svg"
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Big",
  19061. height: math.unit(283 / 162 * 6, "feet"),
  19062. },
  19063. {
  19064. name: "Bigger",
  19065. height: math.unit(283 / 124 * 6, "feet")
  19066. },
  19067. {
  19068. name: "Massive",
  19069. height: math.unit(283 / 92 * 6, "feet"),
  19070. default: true
  19071. },
  19072. {
  19073. name: "👀💦",
  19074. height: math.unit(283 / 73 * 6, "feet"),
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(1.7, "m"),
  19083. weight: math.unit(70, "kg"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/kernel/front.svg",
  19087. extra: 222 / 210,
  19088. bottom: 0.007
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Nano",
  19095. height: math.unit(17, "micrometers")
  19096. },
  19097. {
  19098. name: "Micro",
  19099. height: math.unit(1.7, "mm")
  19100. },
  19101. {
  19102. name: "Small",
  19103. height: math.unit(1.7, "cm")
  19104. },
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(1.7, "m"),
  19108. default: true
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(1.75, "meters"),
  19117. weight: math.unit(65, "kg"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/jayne-folest/front.svg",
  19121. extra: 2115 / 2007,
  19122. bottom: 0.02
  19123. }
  19124. },
  19125. back: {
  19126. height: math.unit(1.75, "meters"),
  19127. weight: math.unit(65, "kg"),
  19128. name: "Back",
  19129. image: {
  19130. source: "./media/characters/jayne-folest/back.svg",
  19131. extra: 2115 / 2007,
  19132. bottom: 0.005
  19133. }
  19134. },
  19135. frontClothed: {
  19136. height: math.unit(1.75, "meters"),
  19137. weight: math.unit(65, "kg"),
  19138. name: "Front (Clothed)",
  19139. image: {
  19140. source: "./media/characters/jayne-folest/front-clothed.svg",
  19141. extra: 2115 / 2007,
  19142. bottom: 0.035
  19143. }
  19144. },
  19145. hand: {
  19146. height: math.unit(1 / 1.260, "feet"),
  19147. name: "Hand",
  19148. image: {
  19149. source: "./media/characters/jayne-folest/hand.svg"
  19150. }
  19151. },
  19152. foot: {
  19153. height: math.unit(1 / 0.918, "feet"),
  19154. name: "Foot",
  19155. image: {
  19156. source: "./media/characters/jayne-folest/foot.svg"
  19157. }
  19158. },
  19159. },
  19160. [
  19161. {
  19162. name: "Micro",
  19163. height: math.unit(4, "cm")
  19164. },
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(1.75, "meters")
  19168. },
  19169. {
  19170. name: "Macro",
  19171. height: math.unit(47.5, "meters"),
  19172. default: true
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19178. {
  19179. front: {
  19180. height: math.unit(180, "cm"),
  19181. weight: math.unit(70, "kg"),
  19182. name: "Front",
  19183. image: {
  19184. source: "./media/characters/algier/front.svg",
  19185. extra: 596 / 572,
  19186. bottom: 0.04
  19187. }
  19188. },
  19189. back: {
  19190. height: math.unit(180, "cm"),
  19191. weight: math.unit(70, "kg"),
  19192. name: "Back",
  19193. image: {
  19194. source: "./media/characters/algier/back.svg",
  19195. extra: 596 / 572,
  19196. bottom: 0.025
  19197. }
  19198. },
  19199. frontdressed: {
  19200. height: math.unit(180, "cm"),
  19201. weight: math.unit(150, "kg"),
  19202. name: "Front-dressed",
  19203. image: {
  19204. source: "./media/characters/algier/front-dressed.svg",
  19205. extra: 596 / 572,
  19206. bottom: 0.038
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Micro",
  19213. height: math.unit(5, "cm")
  19214. },
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(180, "cm"),
  19218. default: true
  19219. },
  19220. {
  19221. name: "Macro",
  19222. height: math.unit(64, "m")
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19228. {
  19229. upright: {
  19230. height: math.unit(7, "feet"),
  19231. weight: math.unit(300, "lb"),
  19232. name: "Upright",
  19233. image: {
  19234. source: "./media/characters/pretzel/upright.svg",
  19235. extra: 534 / 522,
  19236. bottom: 0.065
  19237. }
  19238. },
  19239. sprawling: {
  19240. height: math.unit(3.75, "feet"),
  19241. weight: math.unit(300, "lb"),
  19242. name: "Sprawling",
  19243. image: {
  19244. source: "./media/characters/pretzel/sprawling.svg",
  19245. extra: 314 / 281,
  19246. bottom: 0.1
  19247. }
  19248. },
  19249. tongue: {
  19250. height: math.unit(2, "feet"),
  19251. name: "Tongue",
  19252. image: {
  19253. source: "./media/characters/pretzel/tongue.svg"
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(7, "feet"),
  19261. default: true
  19262. },
  19263. {
  19264. name: "Oversized",
  19265. height: math.unit(15, "feet")
  19266. },
  19267. {
  19268. name: "Huge",
  19269. height: math.unit(30, "feet")
  19270. },
  19271. {
  19272. name: "Macro",
  19273. height: math.unit(250, "feet")
  19274. },
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19279. {
  19280. sideFront: {
  19281. height: math.unit(5 + 2 / 12, "feet"),
  19282. weight: math.unit(120, "lb"),
  19283. name: "Front Side",
  19284. image: {
  19285. source: "./media/characters/roxi/side-front.svg",
  19286. extra: 2924 / 2717,
  19287. bottom: 0.08
  19288. }
  19289. },
  19290. sideBack: {
  19291. height: math.unit(5 + 2 / 12, "feet"),
  19292. weight: math.unit(120, "lb"),
  19293. name: "Back Side",
  19294. image: {
  19295. source: "./media/characters/roxi/side-back.svg",
  19296. extra: 2904 / 2693,
  19297. bottom: 0.06
  19298. }
  19299. },
  19300. front: {
  19301. height: math.unit(5 + 2 / 12, "feet"),
  19302. weight: math.unit(120, "lb"),
  19303. name: "Front",
  19304. image: {
  19305. source: "./media/characters/roxi/front.svg",
  19306. extra: 2028 / 1907,
  19307. bottom: 0.01
  19308. }
  19309. },
  19310. frontAlt: {
  19311. height: math.unit(5 + 2 / 12, "feet"),
  19312. weight: math.unit(120, "lb"),
  19313. name: "Front (Alt)",
  19314. image: {
  19315. source: "./media/characters/roxi/front-alt.svg",
  19316. extra: 1828 / 1798,
  19317. bottom: 0.01
  19318. }
  19319. },
  19320. sitting: {
  19321. height: math.unit(2.8, "feet"),
  19322. weight: math.unit(120, "lb"),
  19323. name: "Sitting",
  19324. image: {
  19325. source: "./media/characters/roxi/sitting.svg",
  19326. extra: 2660 / 2462,
  19327. bottom: 0.1
  19328. }
  19329. },
  19330. },
  19331. [
  19332. {
  19333. name: "Normal",
  19334. height: math.unit(5 + 2 / 12, "feet"),
  19335. default: true
  19336. },
  19337. ]
  19338. ))
  19339. characterMakers.push(() => makeCharacter(
  19340. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19341. {
  19342. side: {
  19343. height: math.unit(55, "feet"),
  19344. weight: math.unit(153, "tons"),
  19345. name: "Side",
  19346. image: {
  19347. source: "./media/characters/shadow/side.svg",
  19348. extra: 701 / 628,
  19349. bottom: 0.02
  19350. }
  19351. },
  19352. flying: {
  19353. height: math.unit(145, "feet"),
  19354. weight: math.unit(153, "tons"),
  19355. name: "Flying",
  19356. image: {
  19357. source: "./media/characters/shadow/flying.svg"
  19358. }
  19359. },
  19360. },
  19361. [
  19362. {
  19363. name: "Normal",
  19364. height: math.unit(55, "feet"),
  19365. default: true
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(6, "feet"),
  19374. weight: math.unit(200, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/marcie/front.svg",
  19378. extra: 960 / 876,
  19379. bottom: 58 / 1017.87
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Macro",
  19386. height: math.unit(1, "mile"),
  19387. default: true
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19393. {
  19394. front: {
  19395. height: math.unit(7, "feet"),
  19396. weight: math.unit(200, "lb"),
  19397. name: "Front",
  19398. image: {
  19399. source: "./media/characters/kachina/front.svg",
  19400. extra: 1290.68 / 1119,
  19401. bottom: 36.5 / 1327.18
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(7, "feet"),
  19409. default: true
  19410. },
  19411. ]
  19412. ))
  19413. characterMakers.push(() => makeCharacter(
  19414. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19415. {
  19416. looking: {
  19417. height: math.unit(2, "meters"),
  19418. weight: math.unit(300, "kg"),
  19419. name: "Looking",
  19420. image: {
  19421. source: "./media/characters/kash/looking.svg",
  19422. extra: 474 / 344,
  19423. bottom: 0.03
  19424. }
  19425. },
  19426. side: {
  19427. height: math.unit(2, "meters"),
  19428. weight: math.unit(300, "kg"),
  19429. name: "Side",
  19430. image: {
  19431. source: "./media/characters/kash/side.svg",
  19432. extra: 302 / 251,
  19433. bottom: 0.03
  19434. }
  19435. },
  19436. front: {
  19437. height: math.unit(2, "meters"),
  19438. weight: math.unit(300, "kg"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/kash/front.svg",
  19442. extra: 495 / 360,
  19443. bottom: 0.015
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(2, "meters"),
  19451. default: true
  19452. },
  19453. {
  19454. name: "Big",
  19455. height: math.unit(3, "meters")
  19456. },
  19457. {
  19458. name: "Large",
  19459. height: math.unit(5, "meters")
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19465. {
  19466. feeding: {
  19467. height: math.unit(6.7, "feet"),
  19468. weight: math.unit(350, "lb"),
  19469. name: "Feeding",
  19470. image: {
  19471. source: "./media/characters/lalim/feeding.svg",
  19472. }
  19473. },
  19474. },
  19475. [
  19476. {
  19477. name: "Normal",
  19478. height: math.unit(6.7, "feet"),
  19479. default: true
  19480. },
  19481. ]
  19482. ))
  19483. characterMakers.push(() => makeCharacter(
  19484. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19485. {
  19486. front: {
  19487. height: math.unit(9.5, "feet"),
  19488. weight: math.unit(600, "lb"),
  19489. name: "Front",
  19490. image: {
  19491. source: "./media/characters/de'vout/front.svg",
  19492. extra: 1443 / 1328,
  19493. bottom: 0.025
  19494. }
  19495. },
  19496. back: {
  19497. height: math.unit(9.5, "feet"),
  19498. weight: math.unit(600, "lb"),
  19499. name: "Back",
  19500. image: {
  19501. source: "./media/characters/de'vout/back.svg",
  19502. extra: 1443 / 1328
  19503. }
  19504. },
  19505. frontDressed: {
  19506. height: math.unit(9.5, "feet"),
  19507. weight: math.unit(600, "lb"),
  19508. name: "Front (Dressed",
  19509. image: {
  19510. source: "./media/characters/de'vout/front-dressed.svg",
  19511. extra: 1443 / 1328,
  19512. bottom: 0.025
  19513. }
  19514. },
  19515. backDressed: {
  19516. height: math.unit(9.5, "feet"),
  19517. weight: math.unit(600, "lb"),
  19518. name: "Back (Dressed",
  19519. image: {
  19520. source: "./media/characters/de'vout/back-dressed.svg",
  19521. extra: 1443 / 1328
  19522. }
  19523. },
  19524. },
  19525. [
  19526. {
  19527. name: "Normal",
  19528. height: math.unit(9.5, "feet"),
  19529. default: true
  19530. },
  19531. ]
  19532. ))
  19533. characterMakers.push(() => makeCharacter(
  19534. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19535. {
  19536. front: {
  19537. height: math.unit(8, "feet"),
  19538. weight: math.unit(225, "lb"),
  19539. name: "Front",
  19540. image: {
  19541. source: "./media/characters/talana/front.svg",
  19542. extra: 1410 / 1300,
  19543. bottom: 0.015
  19544. }
  19545. },
  19546. frontDressed: {
  19547. height: math.unit(8, "feet"),
  19548. weight: math.unit(225, "lb"),
  19549. name: "Front (Dressed",
  19550. image: {
  19551. source: "./media/characters/talana/front-dressed.svg",
  19552. extra: 1410 / 1300,
  19553. bottom: 0.015
  19554. }
  19555. },
  19556. },
  19557. [
  19558. {
  19559. name: "Normal",
  19560. height: math.unit(8, "feet"),
  19561. default: true
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19567. {
  19568. side: {
  19569. height: math.unit(7.2, "feet"),
  19570. weight: math.unit(150, "lb"),
  19571. name: "Side",
  19572. image: {
  19573. source: "./media/characters/xeauvok/side.svg",
  19574. extra: 1975 / 1523,
  19575. bottom: 0.07
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Normal",
  19582. height: math.unit(7.2, "feet"),
  19583. default: true
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19589. {
  19590. side: {
  19591. height: math.unit(4, "meters"),
  19592. weight: math.unit(2200, "kg"),
  19593. name: "Side",
  19594. image: {
  19595. source: "./media/characters/zara/side.svg",
  19596. extra: 765/744,
  19597. bottom: 156/921
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(4, "meters"),
  19605. default: true
  19606. },
  19607. ]
  19608. ))
  19609. characterMakers.push(() => makeCharacter(
  19610. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19611. {
  19612. side: {
  19613. height: math.unit(6, "feet"),
  19614. weight: math.unit(150, "lb"),
  19615. name: "Side",
  19616. image: {
  19617. source: "./media/characters/richard-dragon/side.svg",
  19618. extra: 845 / 340,
  19619. bottom: 0.017
  19620. }
  19621. },
  19622. maw: {
  19623. height: math.unit(2.97, "feet"),
  19624. name: "Maw",
  19625. image: {
  19626. source: "./media/characters/richard-dragon/maw.svg"
  19627. }
  19628. },
  19629. },
  19630. [
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19635. {
  19636. front: {
  19637. height: math.unit(4, "feet"),
  19638. weight: math.unit(100, "lb"),
  19639. name: "Front",
  19640. image: {
  19641. source: "./media/characters/richard-smeargle/front.svg",
  19642. extra: 2952 / 2820,
  19643. bottom: 0.028
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(4, "feet"),
  19651. default: true
  19652. },
  19653. {
  19654. name: "Dynamax",
  19655. height: math.unit(20, "meters")
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19661. {
  19662. front: {
  19663. height: math.unit(6, "feet"),
  19664. weight: math.unit(110, "lb"),
  19665. name: "Front",
  19666. image: {
  19667. source: "./media/characters/klay/front.svg",
  19668. extra: 962 / 883,
  19669. bottom: 0.04
  19670. }
  19671. },
  19672. back: {
  19673. height: math.unit(6, "feet"),
  19674. weight: math.unit(110, "lb"),
  19675. name: "Back",
  19676. image: {
  19677. source: "./media/characters/klay/back.svg",
  19678. extra: 962 / 883
  19679. }
  19680. },
  19681. beans: {
  19682. height: math.unit(1.15, "feet"),
  19683. name: "Beans",
  19684. image: {
  19685. source: "./media/characters/klay/beans.svg"
  19686. }
  19687. },
  19688. },
  19689. [
  19690. {
  19691. name: "Micro",
  19692. height: math.unit(6, "inches")
  19693. },
  19694. {
  19695. name: "Mini",
  19696. height: math.unit(3, "feet")
  19697. },
  19698. {
  19699. name: "Normal",
  19700. height: math.unit(6, "feet"),
  19701. default: true
  19702. },
  19703. {
  19704. name: "Big",
  19705. height: math.unit(25, "feet")
  19706. },
  19707. {
  19708. name: "Macro",
  19709. height: math.unit(100, "feet")
  19710. },
  19711. {
  19712. name: "Megamacro",
  19713. height: math.unit(400, "feet")
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(6, "feet"),
  19722. weight: math.unit(160, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/marcus/front.svg",
  19726. extra: 734 / 676,
  19727. bottom: 0.03
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Little",
  19734. height: math.unit(6, "feet")
  19735. },
  19736. {
  19737. name: "Normal",
  19738. height: math.unit(110, "feet"),
  19739. default: true
  19740. },
  19741. {
  19742. name: "Macro",
  19743. height: math.unit(250, "feet")
  19744. },
  19745. {
  19746. name: "Megamacro",
  19747. height: math.unit(1000, "feet")
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19753. {
  19754. front: {
  19755. height: math.unit(7, "feet"),
  19756. weight: math.unit(275, "lb"),
  19757. name: "Front",
  19758. image: {
  19759. source: "./media/characters/claude-delroute/front.svg",
  19760. extra: 902/827,
  19761. bottom: 26/928
  19762. }
  19763. },
  19764. side: {
  19765. height: math.unit(7, "feet"),
  19766. weight: math.unit(275, "lb"),
  19767. name: "Side",
  19768. image: {
  19769. source: "./media/characters/claude-delroute/side.svg",
  19770. extra: 908/853,
  19771. bottom: 16/924
  19772. }
  19773. },
  19774. back: {
  19775. height: math.unit(7, "feet"),
  19776. weight: math.unit(275, "lb"),
  19777. name: "Back",
  19778. image: {
  19779. source: "./media/characters/claude-delroute/back.svg",
  19780. extra: 911/829,
  19781. bottom: 18/929
  19782. }
  19783. },
  19784. maw: {
  19785. height: math.unit(0.6407, "meters"),
  19786. name: "Maw",
  19787. image: {
  19788. source: "./media/characters/claude-delroute/maw.svg"
  19789. }
  19790. },
  19791. },
  19792. [
  19793. {
  19794. name: "Normal",
  19795. height: math.unit(7, "feet"),
  19796. default: true
  19797. },
  19798. {
  19799. name: "Lorge",
  19800. height: math.unit(20, "feet")
  19801. },
  19802. ]
  19803. ))
  19804. characterMakers.push(() => makeCharacter(
  19805. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19806. {
  19807. front: {
  19808. height: math.unit(8 + 4 / 12, "feet"),
  19809. weight: math.unit(600, "lb"),
  19810. name: "Front",
  19811. image: {
  19812. source: "./media/characters/dragonien/front.svg",
  19813. extra: 100 / 94,
  19814. bottom: 3.3 / 103.3445
  19815. }
  19816. },
  19817. back: {
  19818. height: math.unit(8 + 4 / 12, "feet"),
  19819. weight: math.unit(600, "lb"),
  19820. name: "Back",
  19821. image: {
  19822. source: "./media/characters/dragonien/back.svg",
  19823. extra: 776 / 746,
  19824. bottom: 6.4 / 782.0616
  19825. }
  19826. },
  19827. foot: {
  19828. height: math.unit(1.54, "feet"),
  19829. name: "Foot",
  19830. image: {
  19831. source: "./media/characters/dragonien/foot.svg",
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(8 + 4 / 12, "feet"),
  19839. default: true
  19840. },
  19841. {
  19842. name: "Macro",
  19843. height: math.unit(200, "feet")
  19844. },
  19845. {
  19846. name: "Megamacro",
  19847. height: math.unit(1, "mile")
  19848. },
  19849. {
  19850. name: "Gigamacro",
  19851. height: math.unit(1000, "miles")
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19857. {
  19858. front: {
  19859. height: math.unit(5 + 2 / 12, "feet"),
  19860. weight: math.unit(110, "lb"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/desta/front.svg",
  19864. extra: 767 / 726,
  19865. bottom: 11.7 / 779
  19866. }
  19867. },
  19868. back: {
  19869. height: math.unit(5 + 2 / 12, "feet"),
  19870. weight: math.unit(110, "lb"),
  19871. name: "Back",
  19872. image: {
  19873. source: "./media/characters/desta/back.svg",
  19874. extra: 777 / 728,
  19875. bottom: 6 / 784
  19876. }
  19877. },
  19878. frontAlt: {
  19879. height: math.unit(5 + 2 / 12, "feet"),
  19880. weight: math.unit(110, "lb"),
  19881. name: "Front",
  19882. image: {
  19883. source: "./media/characters/desta/front-alt.svg",
  19884. extra: 1482 / 1417
  19885. }
  19886. },
  19887. side: {
  19888. height: math.unit(5 + 2 / 12, "feet"),
  19889. weight: math.unit(110, "lb"),
  19890. name: "Side",
  19891. image: {
  19892. source: "./media/characters/desta/side.svg",
  19893. extra: 2579 / 2491,
  19894. bottom: 0.053
  19895. }
  19896. },
  19897. },
  19898. [
  19899. {
  19900. name: "Micro",
  19901. height: math.unit(6, "inches")
  19902. },
  19903. {
  19904. name: "Normal",
  19905. height: math.unit(5 + 2 / 12, "feet"),
  19906. default: true
  19907. },
  19908. {
  19909. name: "Macro",
  19910. height: math.unit(62, "feet")
  19911. },
  19912. {
  19913. name: "Megamacro",
  19914. height: math.unit(1800, "feet")
  19915. },
  19916. ]
  19917. ))
  19918. characterMakers.push(() => makeCharacter(
  19919. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19920. {
  19921. front: {
  19922. height: math.unit(10, "feet"),
  19923. weight: math.unit(700, "lb"),
  19924. name: "Front",
  19925. image: {
  19926. source: "./media/characters/storm-alystar/front.svg",
  19927. extra: 2112 / 1898,
  19928. bottom: 0.034
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Micro",
  19935. height: math.unit(3.5, "inches")
  19936. },
  19937. {
  19938. name: "Normal",
  19939. height: math.unit(10, "feet"),
  19940. default: true
  19941. },
  19942. {
  19943. name: "Macro",
  19944. height: math.unit(400, "feet")
  19945. },
  19946. {
  19947. name: "Deific",
  19948. height: math.unit(60, "miles")
  19949. },
  19950. ]
  19951. ))
  19952. characterMakers.push(() => makeCharacter(
  19953. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19954. {
  19955. front: {
  19956. height: math.unit(2.35, "meters"),
  19957. weight: math.unit(119, "kg"),
  19958. name: "Front",
  19959. image: {
  19960. source: "./media/characters/ilia/front.svg",
  19961. extra: 1285 / 1255,
  19962. bottom: 0.06
  19963. }
  19964. },
  19965. },
  19966. [
  19967. {
  19968. name: "Normal",
  19969. height: math.unit(2.35, "meters")
  19970. },
  19971. {
  19972. name: "Macro",
  19973. height: math.unit(140, "meters"),
  19974. default: true
  19975. },
  19976. {
  19977. name: "Megamacro",
  19978. height: math.unit(100, "miles")
  19979. },
  19980. ]
  19981. ))
  19982. characterMakers.push(() => makeCharacter(
  19983. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19984. {
  19985. front: {
  19986. height: math.unit(6 + 5 / 12, "feet"),
  19987. weight: math.unit(190, "lb"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/kingdead/front.svg",
  19991. extra: 1228 / 1177
  19992. }
  19993. },
  19994. },
  19995. [
  19996. {
  19997. name: "Micro",
  19998. height: math.unit(7, "inches")
  19999. },
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(6 + 5 / 12, "feet")
  20003. },
  20004. {
  20005. name: "Macro",
  20006. height: math.unit(150, "feet"),
  20007. default: true
  20008. },
  20009. {
  20010. name: "Megamacro",
  20011. height: math.unit(200, "miles")
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(8, "feet"),
  20020. weight: math.unit(600, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/kyrehx/front.svg",
  20024. extra: 1195 / 1095,
  20025. bottom: 0.034
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Micro",
  20032. height: math.unit(2, "inches")
  20033. },
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(8, "feet"),
  20037. default: true
  20038. },
  20039. {
  20040. name: "Macro",
  20041. height: math.unit(255, "feet")
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20050. weight: math.unit(184, "lb"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/xang/front.svg",
  20054. extra: 845 / 755
  20055. }
  20056. },
  20057. },
  20058. [
  20059. {
  20060. name: "Normal",
  20061. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20062. default: true
  20063. },
  20064. {
  20065. name: "Macro",
  20066. height: math.unit(0.935 * 146, "feet")
  20067. },
  20068. {
  20069. name: "Megamacro",
  20070. height: math.unit(0.935 * 3, "miles")
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20076. {
  20077. frontDressed: {
  20078. height: math.unit(5 + 7 / 12, "feet"),
  20079. weight: math.unit(140, "lb"),
  20080. name: "Front (Dressed)",
  20081. image: {
  20082. source: "./media/characters/doc-weardno/front-dressed.svg",
  20083. extra: 263 / 234
  20084. }
  20085. },
  20086. backDressed: {
  20087. height: math.unit(5 + 7 / 12, "feet"),
  20088. weight: math.unit(140, "lb"),
  20089. name: "Back (Dressed)",
  20090. image: {
  20091. source: "./media/characters/doc-weardno/back-dressed.svg",
  20092. extra: 266 / 238
  20093. }
  20094. },
  20095. front: {
  20096. height: math.unit(5 + 7 / 12, "feet"),
  20097. weight: math.unit(140, "lb"),
  20098. name: "Front",
  20099. image: {
  20100. source: "./media/characters/doc-weardno/front.svg",
  20101. extra: 254 / 233
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Micro",
  20108. height: math.unit(3, "inches")
  20109. },
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(5 + 7 / 12, "feet"),
  20113. default: true
  20114. },
  20115. {
  20116. name: "Macro",
  20117. height: math.unit(25, "feet")
  20118. },
  20119. {
  20120. name: "Megamacro",
  20121. height: math.unit(2, "miles")
  20122. },
  20123. ]
  20124. ))
  20125. characterMakers.push(() => makeCharacter(
  20126. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20127. {
  20128. front: {
  20129. height: math.unit(6 + 2 / 12, "feet"),
  20130. weight: math.unit(153, "lb"),
  20131. name: "Front",
  20132. image: {
  20133. source: "./media/characters/seth-whilst/front.svg",
  20134. bottom: 0.07
  20135. }
  20136. },
  20137. },
  20138. [
  20139. {
  20140. name: "Micro",
  20141. height: math.unit(5, "inches")
  20142. },
  20143. {
  20144. name: "Normal",
  20145. height: math.unit(6 + 2 / 12, "feet"),
  20146. default: true
  20147. },
  20148. ]
  20149. ))
  20150. characterMakers.push(() => makeCharacter(
  20151. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20152. {
  20153. front: {
  20154. height: math.unit(3, "inches"),
  20155. weight: math.unit(8, "grams"),
  20156. name: "Front",
  20157. image: {
  20158. source: "./media/characters/pocket-jabari/front.svg",
  20159. extra: 1024 / 974,
  20160. bottom: 0.039
  20161. }
  20162. },
  20163. },
  20164. [
  20165. {
  20166. name: "Minimicro",
  20167. height: math.unit(8, "mm")
  20168. },
  20169. {
  20170. name: "Micro",
  20171. height: math.unit(3, "inches"),
  20172. default: true
  20173. },
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(3, "feet")
  20177. },
  20178. ]
  20179. ))
  20180. characterMakers.push(() => makeCharacter(
  20181. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20182. {
  20183. frontDressed: {
  20184. height: math.unit(15, "feet"),
  20185. weight: math.unit(3280, "lb"),
  20186. name: "Front (Dressed)",
  20187. image: {
  20188. source: "./media/characters/sapphy/front-dressed.svg",
  20189. extra: 1951/1654,
  20190. bottom: 194/2145
  20191. },
  20192. form: "anthro",
  20193. default: true
  20194. },
  20195. backDressed: {
  20196. height: math.unit(15, "feet"),
  20197. weight: math.unit(3280, "lb"),
  20198. name: "Back (Dressed)",
  20199. image: {
  20200. source: "./media/characters/sapphy/back-dressed.svg",
  20201. extra: 2058/1918,
  20202. bottom: 125/2183
  20203. },
  20204. form: "anthro"
  20205. },
  20206. frontNude: {
  20207. height: math.unit(15, "feet"),
  20208. weight: math.unit(3280, "lb"),
  20209. name: "Front (Nude)",
  20210. image: {
  20211. source: "./media/characters/sapphy/front-nude.svg",
  20212. extra: 1951/1654,
  20213. bottom: 194/2145
  20214. },
  20215. form: "anthro"
  20216. },
  20217. backNude: {
  20218. height: math.unit(15, "feet"),
  20219. weight: math.unit(3280, "lb"),
  20220. name: "Back (Nude)",
  20221. image: {
  20222. source: "./media/characters/sapphy/back-nude.svg",
  20223. extra: 2058/1918,
  20224. bottom: 125/2183
  20225. },
  20226. form: "anthro"
  20227. },
  20228. full: {
  20229. height: math.unit(15, "feet"),
  20230. weight: math.unit(3280, "lb"),
  20231. name: "Full",
  20232. image: {
  20233. source: "./media/characters/sapphy/full.svg",
  20234. extra: 1396/1317,
  20235. bottom: 44/1440
  20236. },
  20237. form: "anthro"
  20238. },
  20239. dick: {
  20240. height: math.unit(3.8, "feet"),
  20241. name: "Dick",
  20242. image: {
  20243. source: "./media/characters/sapphy/dick.svg"
  20244. },
  20245. form: "anthro"
  20246. },
  20247. feral: {
  20248. height: math.unit(35, "feet"),
  20249. weight: math.unit(160, "tons"),
  20250. name: "Feral",
  20251. image: {
  20252. source: "./media/characters/sapphy/feral.svg",
  20253. extra: 1050/573,
  20254. bottom: 60/1110
  20255. },
  20256. form: "feral",
  20257. default: true
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(15, "feet"),
  20264. form: "anthro"
  20265. },
  20266. {
  20267. name: "Casual Macro",
  20268. height: math.unit(120, "feet"),
  20269. form: "anthro"
  20270. },
  20271. {
  20272. name: "Macro",
  20273. height: math.unit(2150, "feet"),
  20274. default: true,
  20275. form: "anthro"
  20276. },
  20277. {
  20278. name: "Megamacro",
  20279. height: math.unit(8, "miles"),
  20280. form: "anthro"
  20281. },
  20282. {
  20283. name: "Galaxy Mom",
  20284. height: math.unit(6, "megalightyears"),
  20285. form: "anthro"
  20286. },
  20287. {
  20288. name: "Normal",
  20289. height: math.unit(35, "feet"),
  20290. form: "feral",
  20291. default: true
  20292. },
  20293. {
  20294. name: "Macro",
  20295. height: math.unit(300, "feet"),
  20296. form: "feral"
  20297. },
  20298. {
  20299. name: "Galaxy Mom",
  20300. height: math.unit(10, "megalightyears"),
  20301. form: "feral"
  20302. },
  20303. ],
  20304. {
  20305. "anthro": {
  20306. name: "Anthro",
  20307. default: true
  20308. },
  20309. "feral": {
  20310. name: "Feral"
  20311. }
  20312. }
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20316. {
  20317. hyenaFront: {
  20318. height: math.unit(6, "feet"),
  20319. weight: math.unit(190, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/kiro/hyena-front.svg",
  20323. extra: 927/839,
  20324. bottom: 91/1018
  20325. },
  20326. form: "hyena",
  20327. default: true
  20328. },
  20329. front: {
  20330. height: math.unit(6, "feet"),
  20331. weight: math.unit(170, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/kiro/front.svg",
  20335. extra: 1064 / 1012,
  20336. bottom: 0.052
  20337. },
  20338. form: "folf",
  20339. default: true
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Micro",
  20345. height: math.unit(6, "inches"),
  20346. form: "folf"
  20347. },
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(6, "feet"),
  20351. form: "folf",
  20352. default: true
  20353. },
  20354. {
  20355. name: "Macro",
  20356. height: math.unit(72, "feet"),
  20357. form: "folf"
  20358. },
  20359. {
  20360. name: "Micro",
  20361. height: math.unit(6, "inches"),
  20362. form: "hyena"
  20363. },
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(6, "feet"),
  20367. form: "hyena",
  20368. default: true
  20369. },
  20370. {
  20371. name: "Macro",
  20372. height: math.unit(72, "feet"),
  20373. form: "hyena"
  20374. },
  20375. ],
  20376. {
  20377. "hyena": {
  20378. name: "Hyena",
  20379. default: true
  20380. },
  20381. "folf": {
  20382. name: "Folf",
  20383. },
  20384. }
  20385. ))
  20386. characterMakers.push(() => makeCharacter(
  20387. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20388. {
  20389. front: {
  20390. height: math.unit(5 + 9 / 12, "feet"),
  20391. weight: math.unit(175, "lb"),
  20392. name: "Front",
  20393. image: {
  20394. source: "./media/characters/irishfox/front.svg",
  20395. extra: 1912 / 1680,
  20396. bottom: 0.02
  20397. }
  20398. },
  20399. },
  20400. [
  20401. {
  20402. name: "Nano",
  20403. height: math.unit(1, "mm")
  20404. },
  20405. {
  20406. name: "Micro",
  20407. height: math.unit(2, "inches")
  20408. },
  20409. {
  20410. name: "Normal",
  20411. height: math.unit(5 + 9 / 12, "feet"),
  20412. default: true
  20413. },
  20414. {
  20415. name: "Macro",
  20416. height: math.unit(45, "feet")
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20422. {
  20423. front: {
  20424. height: math.unit(6 + 1 / 12, "feet"),
  20425. weight: math.unit(75, "lb"),
  20426. name: "Front",
  20427. image: {
  20428. source: "./media/characters/aronai-sieyes/front.svg",
  20429. extra: 1532/1450,
  20430. bottom: 42/1574
  20431. }
  20432. },
  20433. side: {
  20434. height: math.unit(6 + 1 / 12, "feet"),
  20435. weight: math.unit(75, "lb"),
  20436. name: "Side",
  20437. image: {
  20438. source: "./media/characters/aronai-sieyes/side.svg",
  20439. extra: 1422/1365,
  20440. bottom: 148/1570
  20441. }
  20442. },
  20443. back: {
  20444. height: math.unit(6 + 1 / 12, "feet"),
  20445. weight: math.unit(75, "lb"),
  20446. name: "Back",
  20447. image: {
  20448. source: "./media/characters/aronai-sieyes/back.svg",
  20449. extra: 1526/1464,
  20450. bottom: 51/1577
  20451. }
  20452. },
  20453. dressed: {
  20454. height: math.unit(6 + 1 / 12, "feet"),
  20455. weight: math.unit(75, "lb"),
  20456. name: "Dressed",
  20457. image: {
  20458. source: "./media/characters/aronai-sieyes/dressed.svg",
  20459. extra: 1559/1483,
  20460. bottom: 39/1598
  20461. }
  20462. },
  20463. slit: {
  20464. height: math.unit(1.3, "feet"),
  20465. name: "Slit",
  20466. image: {
  20467. source: "./media/characters/aronai-sieyes/slit.svg"
  20468. }
  20469. },
  20470. slitSpread: {
  20471. height: math.unit(0.9, "feet"),
  20472. name: "Slit (Spread)",
  20473. image: {
  20474. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20475. }
  20476. },
  20477. rump: {
  20478. height: math.unit(1.3, "feet"),
  20479. name: "Rump",
  20480. image: {
  20481. source: "./media/characters/aronai-sieyes/rump.svg"
  20482. }
  20483. },
  20484. maw: {
  20485. height: math.unit(1.25, "feet"),
  20486. name: "Maw",
  20487. image: {
  20488. source: "./media/characters/aronai-sieyes/maw.svg"
  20489. }
  20490. },
  20491. feral: {
  20492. height: math.unit(18, "feet"),
  20493. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20494. name: "Feral",
  20495. image: {
  20496. source: "./media/characters/aronai-sieyes/feral.svg",
  20497. extra: 1530 / 1240,
  20498. bottom: 0.035
  20499. }
  20500. },
  20501. },
  20502. [
  20503. {
  20504. name: "Micro",
  20505. height: math.unit(2, "inches")
  20506. },
  20507. {
  20508. name: "Normal",
  20509. height: math.unit(6 + 1 / 12, "feet"),
  20510. default: true
  20511. }
  20512. ]
  20513. ))
  20514. characterMakers.push(() => makeCharacter(
  20515. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20516. {
  20517. front: {
  20518. height: math.unit(12, "feet"),
  20519. weight: math.unit(410, "kg"),
  20520. name: "Front",
  20521. image: {
  20522. source: "./media/characters/xuna/front.svg",
  20523. extra: 2184 / 1980
  20524. }
  20525. },
  20526. side: {
  20527. height: math.unit(12, "feet"),
  20528. weight: math.unit(410, "kg"),
  20529. name: "Side",
  20530. image: {
  20531. source: "./media/characters/xuna/side.svg",
  20532. extra: 2184 / 1980
  20533. }
  20534. },
  20535. back: {
  20536. height: math.unit(12, "feet"),
  20537. weight: math.unit(410, "kg"),
  20538. name: "Back",
  20539. image: {
  20540. source: "./media/characters/xuna/back.svg",
  20541. extra: 2184 / 1980
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Nano glow",
  20548. height: math.unit(10, "nm")
  20549. },
  20550. {
  20551. name: "Micro floof",
  20552. height: math.unit(0.3, "m")
  20553. },
  20554. {
  20555. name: "Huggable softy boi",
  20556. height: math.unit(3.6576, "m"),
  20557. default: true
  20558. },
  20559. {
  20560. name: "Admirable floof",
  20561. height: math.unit(80, "meters")
  20562. },
  20563. {
  20564. name: "Gentle macro",
  20565. height: math.unit(300, "meters")
  20566. },
  20567. {
  20568. name: "Very careful floof",
  20569. height: math.unit(3200, "meters")
  20570. },
  20571. {
  20572. name: "The mega floof",
  20573. height: math.unit(36000, "meters")
  20574. },
  20575. {
  20576. name: "Giga-fur-Wicker",
  20577. height: math.unit(4800000, "meters")
  20578. },
  20579. {
  20580. name: "Licky world",
  20581. height: math.unit(20000000, "meters")
  20582. },
  20583. {
  20584. name: "Floofy cyan sun",
  20585. height: math.unit(1500000000, "meters")
  20586. },
  20587. {
  20588. name: "Milky Wicker",
  20589. height: math.unit(1000000000000000000000, "meters")
  20590. },
  20591. {
  20592. name: "The observing Wicker",
  20593. height: math.unit(999999999999999999999999999, "meters")
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20599. {
  20600. front: {
  20601. height: math.unit(5 + 9 / 12, "feet"),
  20602. weight: math.unit(150, "lb"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/arokha-sieyes/front.svg",
  20606. extra: 1425 / 1284,
  20607. bottom: 0.05
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(5 + 9 / 12, "feet")
  20615. },
  20616. {
  20617. name: "Macro",
  20618. height: math.unit(30, "meters"),
  20619. default: true
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20625. {
  20626. front: {
  20627. height: math.unit(6, "feet"),
  20628. weight: math.unit(180, "lb"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/arokh-sieyes/front.svg",
  20632. extra: 1830 / 1769,
  20633. bottom: 0.01
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(6, "feet")
  20641. },
  20642. {
  20643. name: "Macro",
  20644. height: math.unit(30, "meters"),
  20645. default: true
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20651. {
  20652. side: {
  20653. height: math.unit(13 + 1 / 12, "feet"),
  20654. weight: math.unit(8.5, "tonnes"),
  20655. preyCapacity: math.unit(36, "people"),
  20656. name: "Side",
  20657. image: {
  20658. source: "./media/characters/goldeneye/side.svg",
  20659. extra: 1139/741,
  20660. bottom: 98/1237
  20661. }
  20662. },
  20663. front: {
  20664. height: math.unit(5.1, "feet"),
  20665. weight: math.unit(8.5, "tonnes"),
  20666. preyCapacity: math.unit(36, "people"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/goldeneye/front.svg",
  20670. extra: 635/365,
  20671. bottom: 598/1233
  20672. }
  20673. },
  20674. maw: {
  20675. height: math.unit(6.6, "feet"),
  20676. name: "Maw",
  20677. image: {
  20678. source: "./media/characters/goldeneye/maw.svg"
  20679. }
  20680. },
  20681. headFront: {
  20682. height: math.unit(8, "feet"),
  20683. name: "Head (Front)",
  20684. image: {
  20685. source: "./media/characters/goldeneye/head-front.svg"
  20686. }
  20687. },
  20688. headSide: {
  20689. height: math.unit(6, "feet"),
  20690. name: "Head (Side)",
  20691. image: {
  20692. source: "./media/characters/goldeneye/head-side.svg"
  20693. }
  20694. },
  20695. headBack: {
  20696. height: math.unit(8, "feet"),
  20697. name: "Head (Back)",
  20698. image: {
  20699. source: "./media/characters/goldeneye/head-back.svg"
  20700. }
  20701. },
  20702. paw: {
  20703. height: math.unit(3.4, "feet"),
  20704. name: "Paw",
  20705. image: {
  20706. source: "./media/characters/goldeneye/paw.svg"
  20707. }
  20708. },
  20709. toering: {
  20710. height: math.unit(0.45, "feet"),
  20711. name: "Toering",
  20712. image: {
  20713. source: "./media/characters/goldeneye/toering.svg"
  20714. }
  20715. },
  20716. eyes: {
  20717. height: math.unit(0.5, "feet"),
  20718. name: "Eyes",
  20719. image: {
  20720. source: "./media/characters/goldeneye/eyes.svg"
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Normal",
  20727. height: math.unit(13 + 1 / 12, "feet"),
  20728. default: true
  20729. },
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20734. {
  20735. front: {
  20736. height: math.unit(6 + 1 / 12, "feet"),
  20737. weight: math.unit(210, "lb"),
  20738. name: "Front",
  20739. image: {
  20740. source: "./media/characters/leonardo-lycheborne/front.svg",
  20741. extra: 776/723,
  20742. bottom: 34/810
  20743. }
  20744. },
  20745. side: {
  20746. height: math.unit(6 + 1 / 12, "feet"),
  20747. weight: math.unit(210, "lb"),
  20748. name: "Side",
  20749. image: {
  20750. source: "./media/characters/leonardo-lycheborne/side.svg",
  20751. extra: 780/728,
  20752. bottom: 12/792
  20753. }
  20754. },
  20755. back: {
  20756. height: math.unit(6 + 1 / 12, "feet"),
  20757. weight: math.unit(210, "lb"),
  20758. name: "Back",
  20759. image: {
  20760. source: "./media/characters/leonardo-lycheborne/back.svg",
  20761. extra: 775/721,
  20762. bottom: 17/792
  20763. }
  20764. },
  20765. hand: {
  20766. height: math.unit(1.08, "feet"),
  20767. name: "Hand",
  20768. image: {
  20769. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20770. }
  20771. },
  20772. foot: {
  20773. height: math.unit(1.32, "feet"),
  20774. name: "Foot",
  20775. image: {
  20776. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20777. }
  20778. },
  20779. maw: {
  20780. height: math.unit(1, "feet"),
  20781. name: "Maw",
  20782. image: {
  20783. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20784. }
  20785. },
  20786. were: {
  20787. height: math.unit(20, "feet"),
  20788. weight: math.unit(7800, "lb"),
  20789. name: "Were",
  20790. image: {
  20791. source: "./media/characters/leonardo-lycheborne/were.svg",
  20792. extra: 1224/1165,
  20793. bottom: 72/1296
  20794. }
  20795. },
  20796. feral: {
  20797. height: math.unit(7.5, "feet"),
  20798. weight: math.unit(600, "lb"),
  20799. name: "Feral",
  20800. image: {
  20801. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20802. extra: 797/702,
  20803. bottom: 139/936
  20804. }
  20805. },
  20806. taur: {
  20807. height: math.unit(11, "feet"),
  20808. weight: math.unit(3300, "lb"),
  20809. name: "Taur",
  20810. image: {
  20811. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20812. extra: 1271/1197,
  20813. bottom: 47/1318
  20814. }
  20815. },
  20816. barghest: {
  20817. height: math.unit(11, "feet"),
  20818. weight: math.unit(1300, "lb"),
  20819. name: "Barghest",
  20820. image: {
  20821. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20822. extra: 1291/1204,
  20823. bottom: 37/1328
  20824. }
  20825. },
  20826. dick: {
  20827. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20828. name: "Dick",
  20829. image: {
  20830. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20831. }
  20832. },
  20833. dickWere: {
  20834. height: math.unit((20) / 3.8, "feet"),
  20835. name: "Dick (Were)",
  20836. image: {
  20837. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Normal",
  20844. height: math.unit(6 + 1 / 12, "feet"),
  20845. default: true
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(10, "feet"),
  20854. weight: math.unit(350, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/jet/front.svg",
  20858. extra: 2050 / 1980,
  20859. bottom: 0.013
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(10, "feet"),
  20864. weight: math.unit(350, "lb"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/jet/back.svg",
  20868. extra: 2050 / 1980,
  20869. bottom: 0.013
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Micro",
  20876. height: math.unit(6, "inches")
  20877. },
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(10, "feet"),
  20881. default: true
  20882. },
  20883. {
  20884. name: "Macro",
  20885. height: math.unit(100, "feet")
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20891. {
  20892. front: {
  20893. height: math.unit(15, "feet"),
  20894. weight: math.unit(2800, "lb"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/tanarath/front.svg",
  20898. extra: 2392 / 2220,
  20899. bottom: 0.03
  20900. }
  20901. },
  20902. back: {
  20903. height: math.unit(15, "feet"),
  20904. weight: math.unit(2800, "lb"),
  20905. name: "Back",
  20906. image: {
  20907. source: "./media/characters/tanarath/back.svg",
  20908. extra: 2392 / 2220,
  20909. bottom: 0.03
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Normal",
  20916. height: math.unit(15, "feet"),
  20917. default: true
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20923. {
  20924. front: {
  20925. height: math.unit(7 + 1 / 12, "feet"),
  20926. weight: math.unit(175, "lb"),
  20927. name: "Front",
  20928. image: {
  20929. source: "./media/characters/patty-cattybatty/front.svg",
  20930. extra: 908 / 874,
  20931. bottom: 0.025
  20932. }
  20933. },
  20934. },
  20935. [
  20936. {
  20937. name: "Micro",
  20938. height: math.unit(1, "inch")
  20939. },
  20940. {
  20941. name: "Normal",
  20942. height: math.unit(7 + 1 / 12, "feet")
  20943. },
  20944. {
  20945. name: "Mini Macro",
  20946. height: math.unit(155, "feet")
  20947. },
  20948. {
  20949. name: "Macro",
  20950. height: math.unit(1077, "feet")
  20951. },
  20952. {
  20953. name: "Mega Macro",
  20954. height: math.unit(47650, "feet"),
  20955. default: true
  20956. },
  20957. {
  20958. name: "Giga Macro",
  20959. height: math.unit(440, "miles")
  20960. },
  20961. {
  20962. name: "Tera Macro",
  20963. height: math.unit(8700, "miles")
  20964. },
  20965. {
  20966. name: "Planetary Macro",
  20967. height: math.unit(32700, "miles")
  20968. },
  20969. {
  20970. name: "Solar Macro",
  20971. height: math.unit(550000, "miles")
  20972. },
  20973. {
  20974. name: "Celestial Macro",
  20975. height: math.unit(2.5, "AU")
  20976. },
  20977. ]
  20978. ))
  20979. characterMakers.push(() => makeCharacter(
  20980. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20981. {
  20982. front: {
  20983. height: math.unit(4 + 5 / 12, "feet"),
  20984. weight: math.unit(90, "lb"),
  20985. name: "Front",
  20986. image: {
  20987. source: "./media/characters/cappu/front.svg",
  20988. extra: 1247 / 1152,
  20989. bottom: 0.012
  20990. }
  20991. },
  20992. },
  20993. [
  20994. {
  20995. name: "Normal",
  20996. height: math.unit(4 + 5 / 12, "feet"),
  20997. default: true
  20998. },
  20999. ]
  21000. ))
  21001. characterMakers.push(() => makeCharacter(
  21002. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21003. {
  21004. frontDressed: {
  21005. height: math.unit(70, "cm"),
  21006. weight: math.unit(6, "kg"),
  21007. name: "Front (Dressed)",
  21008. image: {
  21009. source: "./media/characters/sebi/front-dressed.svg",
  21010. extra: 713.5 / 686.5,
  21011. bottom: 0.003
  21012. }
  21013. },
  21014. front: {
  21015. height: math.unit(70, "cm"),
  21016. weight: math.unit(5, "kg"),
  21017. name: "Front",
  21018. image: {
  21019. source: "./media/characters/sebi/front.svg",
  21020. extra: 713.5 / 686.5,
  21021. bottom: 0.003
  21022. }
  21023. }
  21024. },
  21025. [
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(70, "cm"),
  21029. default: true
  21030. },
  21031. {
  21032. name: "Macro",
  21033. height: math.unit(8, "meters")
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21039. {
  21040. front: {
  21041. height: math.unit(6, "feet"),
  21042. weight: math.unit(150, "lb"),
  21043. name: "Front",
  21044. image: {
  21045. source: "./media/characters/typhek/front.svg",
  21046. extra: 1948 / 1929,
  21047. bottom: 0.025
  21048. }
  21049. },
  21050. side: {
  21051. height: math.unit(6, "feet"),
  21052. weight: math.unit(150, "lb"),
  21053. name: "Side",
  21054. image: {
  21055. source: "./media/characters/typhek/side.svg",
  21056. extra: 2034 / 2010,
  21057. bottom: 0.003
  21058. }
  21059. },
  21060. back: {
  21061. height: math.unit(6, "feet"),
  21062. weight: math.unit(150, "lb"),
  21063. name: "Back",
  21064. image: {
  21065. source: "./media/characters/typhek/back.svg",
  21066. extra: 2005 / 1978,
  21067. bottom: 0.004
  21068. }
  21069. },
  21070. palm: {
  21071. height: math.unit(1.2, "feet"),
  21072. name: "Palm",
  21073. image: {
  21074. source: "./media/characters/typhek/palm.svg"
  21075. }
  21076. },
  21077. fist: {
  21078. height: math.unit(1.1, "feet"),
  21079. name: "Fist",
  21080. image: {
  21081. source: "./media/characters/typhek/fist.svg"
  21082. }
  21083. },
  21084. foot: {
  21085. height: math.unit(1.57, "feet"),
  21086. name: "Foot",
  21087. image: {
  21088. source: "./media/characters/typhek/foot.svg"
  21089. }
  21090. },
  21091. sole: {
  21092. height: math.unit(2.05, "feet"),
  21093. name: "Sole",
  21094. image: {
  21095. source: "./media/characters/typhek/sole.svg"
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Macro",
  21102. height: math.unit(40, "stories"),
  21103. default: true
  21104. },
  21105. {
  21106. name: "Megamacro",
  21107. height: math.unit(1, "mile")
  21108. },
  21109. {
  21110. name: "Gigamacro",
  21111. height: math.unit(4000, "solarradii")
  21112. },
  21113. {
  21114. name: "Universal",
  21115. height: math.unit(1.1, "universes")
  21116. }
  21117. ]
  21118. ))
  21119. characterMakers.push(() => makeCharacter(
  21120. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21121. {
  21122. side: {
  21123. height: math.unit(5 + 7 / 12, "feet"),
  21124. weight: math.unit(150, "lb"),
  21125. name: "Side",
  21126. image: {
  21127. source: "./media/characters/kassy/side.svg",
  21128. extra: 1280 / 1225,
  21129. bottom: 0.002
  21130. }
  21131. },
  21132. front: {
  21133. height: math.unit(5 + 7 / 12, "feet"),
  21134. weight: math.unit(150, "lb"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/kassy/front.svg",
  21138. extra: 1280 / 1225,
  21139. bottom: 0.025
  21140. }
  21141. },
  21142. back: {
  21143. height: math.unit(5 + 7 / 12, "feet"),
  21144. weight: math.unit(150, "lb"),
  21145. name: "Back",
  21146. image: {
  21147. source: "./media/characters/kassy/back.svg",
  21148. extra: 1280 / 1225,
  21149. bottom: 0.002
  21150. }
  21151. },
  21152. foot: {
  21153. height: math.unit(1.266, "feet"),
  21154. name: "Foot",
  21155. image: {
  21156. source: "./media/characters/kassy/foot.svg"
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(5 + 7 / 12, "feet")
  21164. },
  21165. {
  21166. name: "Macro",
  21167. height: math.unit(137, "feet"),
  21168. default: true
  21169. },
  21170. {
  21171. name: "Megamacro",
  21172. height: math.unit(1, "mile")
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(6 + 1 / 12, "feet"),
  21181. weight: math.unit(200, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/neil/front.svg",
  21185. extra: 1326 / 1250,
  21186. bottom: 0.023
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Normal",
  21193. height: math.unit(6 + 1 / 12, "feet"),
  21194. default: true
  21195. },
  21196. {
  21197. name: "Macro",
  21198. height: math.unit(200, "feet")
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21204. {
  21205. front: {
  21206. height: math.unit(5 + 9 / 12, "feet"),
  21207. weight: math.unit(190, "lb"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/atticus/front.svg",
  21211. extra: 2934 / 2785,
  21212. bottom: 0.025
  21213. }
  21214. },
  21215. },
  21216. [
  21217. {
  21218. name: "Normal",
  21219. height: math.unit(5 + 9 / 12, "feet"),
  21220. default: true
  21221. },
  21222. {
  21223. name: "Macro",
  21224. height: math.unit(180, "feet")
  21225. },
  21226. ]
  21227. ))
  21228. characterMakers.push(() => makeCharacter(
  21229. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21230. {
  21231. side: {
  21232. height: math.unit(9, "feet"),
  21233. weight: math.unit(650, "lb"),
  21234. name: "Side",
  21235. image: {
  21236. source: "./media/characters/milo/side.svg",
  21237. extra: 2644 / 2310,
  21238. bottom: 0.032
  21239. }
  21240. },
  21241. },
  21242. [
  21243. {
  21244. name: "Normal",
  21245. height: math.unit(9, "feet"),
  21246. default: true
  21247. },
  21248. {
  21249. name: "Macro",
  21250. height: math.unit(300, "feet")
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21256. {
  21257. side: {
  21258. height: math.unit(8, "meters"),
  21259. weight: math.unit(90000, "kg"),
  21260. name: "Side",
  21261. image: {
  21262. source: "./media/characters/ijzer/side.svg",
  21263. extra: 2756 / 1600,
  21264. bottom: 0.01
  21265. }
  21266. },
  21267. },
  21268. [
  21269. {
  21270. name: "Small",
  21271. height: math.unit(3, "meters")
  21272. },
  21273. {
  21274. name: "Normal",
  21275. height: math.unit(8, "meters"),
  21276. default: true
  21277. },
  21278. {
  21279. name: "Normal+",
  21280. height: math.unit(10, "meters")
  21281. },
  21282. {
  21283. name: "Bigger",
  21284. height: math.unit(24, "meters")
  21285. },
  21286. {
  21287. name: "Huge",
  21288. height: math.unit(80, "meters")
  21289. },
  21290. ]
  21291. ))
  21292. characterMakers.push(() => makeCharacter(
  21293. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21294. {
  21295. front: {
  21296. height: math.unit(6 + 2 / 12, "feet"),
  21297. weight: math.unit(153, "lb"),
  21298. name: "Front",
  21299. image: {
  21300. source: "./media/characters/luca-cervicum/front.svg",
  21301. extra: 370 / 327,
  21302. bottom: 0.015
  21303. }
  21304. },
  21305. back: {
  21306. height: math.unit(6 + 2 / 12, "feet"),
  21307. weight: math.unit(153, "lb"),
  21308. name: "Back",
  21309. image: {
  21310. source: "./media/characters/luca-cervicum/back.svg",
  21311. extra: 367 / 333,
  21312. bottom: 0.005
  21313. }
  21314. },
  21315. frontGear: {
  21316. height: math.unit(6 + 2 / 12, "feet"),
  21317. weight: math.unit(173, "lb"),
  21318. name: "Front (Gear)",
  21319. image: {
  21320. source: "./media/characters/luca-cervicum/front-gear.svg",
  21321. extra: 377 / 333,
  21322. bottom: 0.006
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Normal",
  21329. height: math.unit(6 + 2 / 12, "feet"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21336. {
  21337. front: {
  21338. height: math.unit(6 + 1 / 12, "feet"),
  21339. weight: math.unit(304, "lb"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/oliver/front.svg",
  21343. extra: 157 / 143,
  21344. bottom: 0.08
  21345. }
  21346. },
  21347. },
  21348. [
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(6 + 1 / 12, "feet"),
  21352. default: true
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21358. {
  21359. front: {
  21360. height: math.unit(5 + 7 / 12, "feet"),
  21361. weight: math.unit(140, "lb"),
  21362. name: "Front",
  21363. image: {
  21364. source: "./media/characters/shane/front.svg",
  21365. extra: 304 / 289,
  21366. bottom: 0.005
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Normal",
  21373. height: math.unit(5 + 7 / 12, "feet"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(5 + 9 / 12, "feet"),
  21383. weight: math.unit(178, "lb"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/shin/front.svg",
  21387. extra: 159 / 151,
  21388. bottom: 0.015
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Normal",
  21395. height: math.unit(5 + 9 / 12, "feet"),
  21396. default: true
  21397. },
  21398. ]
  21399. ))
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21402. {
  21403. front: {
  21404. height: math.unit(5 + 10 / 12, "feet"),
  21405. weight: math.unit(168, "lb"),
  21406. name: "Front",
  21407. image: {
  21408. source: "./media/characters/xerxes/front.svg",
  21409. extra: 282 / 260,
  21410. bottom: 0.045
  21411. }
  21412. },
  21413. },
  21414. [
  21415. {
  21416. name: "Normal",
  21417. height: math.unit(5 + 10 / 12, "feet"),
  21418. default: true
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21424. {
  21425. front: {
  21426. height: math.unit(6 + 7 / 12, "feet"),
  21427. weight: math.unit(208, "lb"),
  21428. name: "Front",
  21429. image: {
  21430. source: "./media/characters/chaska/front.svg",
  21431. extra: 332 / 319,
  21432. bottom: 0.015
  21433. }
  21434. },
  21435. },
  21436. [
  21437. {
  21438. name: "Normal",
  21439. height: math.unit(6 + 7 / 12, "feet"),
  21440. default: true
  21441. },
  21442. ]
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21446. {
  21447. front: {
  21448. height: math.unit(5 + 8 / 12, "feet"),
  21449. weight: math.unit(208, "lb"),
  21450. name: "Front",
  21451. image: {
  21452. source: "./media/characters/enuk/front.svg",
  21453. extra: 437 / 406,
  21454. bottom: 0.02
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Normal",
  21461. height: math.unit(5 + 8 / 12, "feet"),
  21462. default: true
  21463. },
  21464. ]
  21465. ))
  21466. characterMakers.push(() => makeCharacter(
  21467. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21468. {
  21469. front: {
  21470. height: math.unit(5 + 10 / 12, "feet"),
  21471. weight: math.unit(252, "lb"),
  21472. name: "Front",
  21473. image: {
  21474. source: "./media/characters/bruun/front.svg",
  21475. extra: 197 / 187,
  21476. bottom: 0.012
  21477. }
  21478. },
  21479. },
  21480. [
  21481. {
  21482. name: "Normal",
  21483. height: math.unit(5 + 10 / 12, "feet"),
  21484. default: true
  21485. },
  21486. ]
  21487. ))
  21488. characterMakers.push(() => makeCharacter(
  21489. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21490. {
  21491. front: {
  21492. height: math.unit(6 + 10 / 12, "feet"),
  21493. weight: math.unit(255, "lb"),
  21494. name: "Front",
  21495. image: {
  21496. source: "./media/characters/alexeev/front.svg",
  21497. extra: 213 / 200,
  21498. bottom: 0.05
  21499. }
  21500. },
  21501. },
  21502. [
  21503. {
  21504. name: "Normal",
  21505. height: math.unit(6 + 10 / 12, "feet"),
  21506. default: true
  21507. },
  21508. ]
  21509. ))
  21510. characterMakers.push(() => makeCharacter(
  21511. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21512. {
  21513. front: {
  21514. height: math.unit(2 + 8 / 12, "feet"),
  21515. weight: math.unit(22, "lb"),
  21516. name: "Front",
  21517. image: {
  21518. source: "./media/characters/evelyn/front.svg",
  21519. extra: 208 / 180
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(2 + 8 / 12, "feet"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(5 + 9 / 12, "feet"),
  21536. weight: math.unit(139, "lb"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/inca/front.svg",
  21540. extra: 294 / 291,
  21541. bottom: 0.03
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(5 + 9 / 12, "feet"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(6 + 3 / 12, "feet"),
  21558. weight: math.unit(185, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/mera/front.svg",
  21562. extra: 291 / 277,
  21563. bottom: 0.03
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Normal",
  21570. height: math.unit(6 + 3 / 12, "feet"),
  21571. default: true
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21577. {
  21578. front: {
  21579. height: math.unit(6 + 7 / 12, "feet"),
  21580. weight: math.unit(160, "lb"),
  21581. name: "Front",
  21582. image: {
  21583. source: "./media/characters/ceres/front.svg",
  21584. extra: 1023 / 950,
  21585. bottom: 0.027
  21586. }
  21587. },
  21588. back: {
  21589. height: math.unit(6 + 7 / 12, "feet"),
  21590. weight: math.unit(160, "lb"),
  21591. name: "Back",
  21592. image: {
  21593. source: "./media/characters/ceres/back.svg",
  21594. extra: 1023 / 950
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(6 + 7 / 12, "feet"),
  21602. default: true
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(5 + 10 / 12, "feet"),
  21611. weight: math.unit(150, "lb"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/kris/front.svg",
  21615. extra: 885 / 803,
  21616. bottom: 0.03
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(5 + 10 / 12, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(7, "feet"),
  21633. weight: math.unit(120, "kg"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/taluthus/front.svg",
  21637. extra: 903 / 833,
  21638. bottom: 0.015
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(7, "feet"),
  21646. default: true
  21647. },
  21648. {
  21649. name: "Macro",
  21650. height: math.unit(300, "feet")
  21651. },
  21652. ]
  21653. ))
  21654. characterMakers.push(() => makeCharacter(
  21655. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21656. {
  21657. front: {
  21658. height: math.unit(5 + 9 / 12, "feet"),
  21659. weight: math.unit(145, "lb"),
  21660. name: "Front",
  21661. image: {
  21662. source: "./media/characters/dawn/front.svg",
  21663. extra: 2094 / 2016,
  21664. bottom: 0.025
  21665. }
  21666. },
  21667. back: {
  21668. height: math.unit(5 + 9 / 12, "feet"),
  21669. weight: math.unit(160, "lb"),
  21670. name: "Back",
  21671. image: {
  21672. source: "./media/characters/dawn/back.svg",
  21673. extra: 2112 / 2080,
  21674. bottom: 0.005
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(6 + 7 / 12, "feet"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21688. {
  21689. anthro: {
  21690. height: math.unit(8 + 3 / 12, "feet"),
  21691. weight: math.unit(450, "lb"),
  21692. name: "Anthro",
  21693. image: {
  21694. source: "./media/characters/arador/anthro.svg",
  21695. extra: 1835 / 1718,
  21696. bottom: 0.025
  21697. }
  21698. },
  21699. feral: {
  21700. height: math.unit(4, "feet"),
  21701. weight: math.unit(200, "lb"),
  21702. name: "Feral",
  21703. image: {
  21704. source: "./media/characters/arador/feral.svg",
  21705. extra: 1683 / 1514,
  21706. bottom: 0.07
  21707. }
  21708. },
  21709. },
  21710. [
  21711. {
  21712. name: "Normal",
  21713. height: math.unit(8 + 3 / 12, "feet")
  21714. },
  21715. {
  21716. name: "Macro",
  21717. height: math.unit(82.5, "feet"),
  21718. default: true
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21724. {
  21725. front: {
  21726. height: math.unit(5 + 10 / 12, "feet"),
  21727. weight: math.unit(125, "lb"),
  21728. name: "Front",
  21729. image: {
  21730. source: "./media/characters/dharsi/front.svg",
  21731. extra: 716 / 630,
  21732. bottom: 0.035
  21733. }
  21734. },
  21735. },
  21736. [
  21737. {
  21738. name: "Nano",
  21739. height: math.unit(100, "nm")
  21740. },
  21741. {
  21742. name: "Micro",
  21743. height: math.unit(2, "inches")
  21744. },
  21745. {
  21746. name: "Normal",
  21747. height: math.unit(5 + 10 / 12, "feet"),
  21748. default: true
  21749. },
  21750. {
  21751. name: "Macro",
  21752. height: math.unit(1000, "feet")
  21753. },
  21754. {
  21755. name: "Megamacro",
  21756. height: math.unit(10, "miles")
  21757. },
  21758. {
  21759. name: "Gigamacro",
  21760. height: math.unit(3000, "miles")
  21761. },
  21762. {
  21763. name: "Teramacro",
  21764. height: math.unit(500000, "miles")
  21765. },
  21766. {
  21767. name: "Teramacro+",
  21768. height: math.unit(30, "galaxies")
  21769. },
  21770. ]
  21771. ))
  21772. characterMakers.push(() => makeCharacter(
  21773. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21774. {
  21775. front: {
  21776. height: math.unit(6, "feet"),
  21777. weight: math.unit(150, "lb"),
  21778. name: "Front",
  21779. image: {
  21780. source: "./media/characters/deathy/front.svg",
  21781. extra: 1552 / 1463,
  21782. bottom: 0.025
  21783. }
  21784. },
  21785. side: {
  21786. height: math.unit(6, "feet"),
  21787. weight: math.unit(150, "lb"),
  21788. name: "Side",
  21789. image: {
  21790. source: "./media/characters/deathy/side.svg",
  21791. extra: 1604 / 1455,
  21792. bottom: 0.025
  21793. }
  21794. },
  21795. back: {
  21796. height: math.unit(6, "feet"),
  21797. weight: math.unit(150, "lb"),
  21798. name: "Back",
  21799. image: {
  21800. source: "./media/characters/deathy/back.svg",
  21801. extra: 1580 / 1463,
  21802. bottom: 0.005
  21803. }
  21804. },
  21805. },
  21806. [
  21807. {
  21808. name: "Micro",
  21809. height: math.unit(5, "millimeters")
  21810. },
  21811. {
  21812. name: "Normal",
  21813. height: math.unit(6 + 5 / 12, "feet"),
  21814. default: true
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21820. {
  21821. front: {
  21822. height: math.unit(16, "feet"),
  21823. weight: math.unit(4000, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/juniper/front.svg",
  21827. bottom: 0.04
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(16, "feet"),
  21835. default: true
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21841. {
  21842. front: {
  21843. height: math.unit(6, "feet"),
  21844. weight: math.unit(150, "lb"),
  21845. name: "Front",
  21846. image: {
  21847. source: "./media/characters/hipster/front.svg",
  21848. extra: 1312 / 1209,
  21849. bottom: 0.025
  21850. }
  21851. },
  21852. back: {
  21853. height: math.unit(6, "feet"),
  21854. weight: math.unit(150, "lb"),
  21855. name: "Back",
  21856. image: {
  21857. source: "./media/characters/hipster/back.svg",
  21858. extra: 1281 / 1196,
  21859. bottom: 0.01
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Micro",
  21866. height: math.unit(1, "mm")
  21867. },
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(4, "inches"),
  21871. default: true
  21872. },
  21873. {
  21874. name: "Macro",
  21875. height: math.unit(500, "feet")
  21876. },
  21877. {
  21878. name: "Megamacro",
  21879. height: math.unit(1000, "miles")
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21885. {
  21886. front: {
  21887. height: math.unit(6, "feet"),
  21888. weight: math.unit(150, "lb"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/tendirmuldr/front.svg",
  21892. extra: 1878 / 1772,
  21893. bottom: 0.015
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Megamacro",
  21900. height: math.unit(1500, "miles"),
  21901. default: true
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21907. {
  21908. front: {
  21909. height: math.unit(14, "feet"),
  21910. weight: math.unit(12000, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/mort/front.svg",
  21914. extra: 365 / 318,
  21915. bottom: 0.01
  21916. }
  21917. },
  21918. side: {
  21919. height: math.unit(14, "feet"),
  21920. weight: math.unit(12000, "lb"),
  21921. name: "Side",
  21922. image: {
  21923. source: "./media/characters/mort/side.svg",
  21924. extra: 365 / 318,
  21925. bottom: 0.052
  21926. },
  21927. default: true
  21928. },
  21929. back: {
  21930. height: math.unit(14, "feet"),
  21931. weight: math.unit(12000, "lb"),
  21932. name: "Back",
  21933. image: {
  21934. source: "./media/characters/mort/back.svg",
  21935. extra: 371 / 332,
  21936. bottom: 0.18
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Normal",
  21943. height: math.unit(14, "feet"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21950. {
  21951. front: {
  21952. height: math.unit(8, "feet"),
  21953. weight: math.unit(1, "ton"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/lycoa/front.svg",
  21957. extra: 1836/1728,
  21958. bottom: 81/1917
  21959. }
  21960. },
  21961. back: {
  21962. height: math.unit(8, "feet"),
  21963. weight: math.unit(1, "ton"),
  21964. name: "Back",
  21965. image: {
  21966. source: "./media/characters/lycoa/back.svg",
  21967. extra: 1785/1720,
  21968. bottom: 91/1876
  21969. }
  21970. },
  21971. head: {
  21972. height: math.unit(1.6243, "feet"),
  21973. name: "Head",
  21974. image: {
  21975. source: "./media/characters/lycoa/head.svg",
  21976. extra: 1011/782,
  21977. bottom: 0/1011
  21978. }
  21979. },
  21980. tailmaw: {
  21981. height: math.unit(1.9, "feet"),
  21982. name: "Tailmaw",
  21983. image: {
  21984. source: "./media/characters/lycoa/tailmaw.svg"
  21985. }
  21986. },
  21987. tentacles: {
  21988. height: math.unit(2.1, "feet"),
  21989. name: "Tentacles",
  21990. image: {
  21991. source: "./media/characters/lycoa/tentacles.svg"
  21992. }
  21993. },
  21994. dick: {
  21995. height: math.unit(1.73, "feet"),
  21996. name: "Dick",
  21997. image: {
  21998. source: "./media/characters/lycoa/dick.svg"
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Normal",
  22005. height: math.unit(8, "feet"),
  22006. default: true
  22007. },
  22008. {
  22009. name: "Macro",
  22010. height: math.unit(30, "feet")
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22016. {
  22017. front: {
  22018. height: math.unit(4 + 2 / 12, "feet"),
  22019. weight: math.unit(70, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/naldara/front.svg",
  22023. extra: 1664/1387,
  22024. bottom: 81/1745
  22025. },
  22026. form: "anthro",
  22027. default: true
  22028. },
  22029. naga: {
  22030. height: math.unit(20, "feet"),
  22031. weight: math.unit(15000, "kg"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/naldara/naga.svg",
  22035. extra: 1590/1396,
  22036. bottom: 285/1875
  22037. },
  22038. form: "naga",
  22039. default: true
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(4 + 2 / 12, "feet"),
  22046. form: "anthro",
  22047. default: true
  22048. },
  22049. {
  22050. name: "Normal",
  22051. height: math.unit(20, "feet"),
  22052. form: "naga",
  22053. default: true
  22054. },
  22055. ],
  22056. {
  22057. "anthro": {
  22058. name: "Anthro",
  22059. default: true
  22060. },
  22061. "naga": {
  22062. name: "Naga"
  22063. }
  22064. }
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22068. {
  22069. front: {
  22070. height: math.unit(13 + 7 / 12, "feet"),
  22071. weight: math.unit(1500, "lb"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/briar/front.svg",
  22075. extra: 1223/1157,
  22076. bottom: 123/1346
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(13 + 7 / 12, "feet"),
  22084. default: true
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22090. {
  22091. side: {
  22092. height: math.unit(16, "feet"),
  22093. weight: math.unit(500, "lb"),
  22094. name: "Side",
  22095. image: {
  22096. source: "./media/characters/vanguard/side.svg",
  22097. extra: 1022/914,
  22098. bottom: 30/1052
  22099. }
  22100. },
  22101. sideAlt: {
  22102. height: math.unit(10, "feet"),
  22103. weight: math.unit(500, "lb"),
  22104. name: "Side (Alt)",
  22105. image: {
  22106. source: "./media/characters/vanguard/side-alt.svg",
  22107. extra: 502 / 425,
  22108. bottom: 0.087
  22109. }
  22110. },
  22111. },
  22112. [
  22113. {
  22114. name: "Normal",
  22115. height: math.unit(17.71, "feet"),
  22116. default: true
  22117. },
  22118. ]
  22119. ))
  22120. characterMakers.push(() => makeCharacter(
  22121. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22122. {
  22123. front: {
  22124. height: math.unit(7.5, "feet"),
  22125. weight: math.unit(2, "lb"),
  22126. name: "Front",
  22127. image: {
  22128. source: "./media/characters/artemis/work-safe-front.svg",
  22129. extra: 1192 / 1075,
  22130. bottom: 0.07
  22131. },
  22132. form: "work-safe",
  22133. default: true
  22134. },
  22135. frontNsfw: {
  22136. height: math.unit(7.5, "feet"),
  22137. weight: math.unit(2, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/artemis/calibrating-front.svg",
  22141. extra: 1192 / 1075,
  22142. bottom: 0.07
  22143. },
  22144. form: "calibrating",
  22145. default: true
  22146. },
  22147. frontNsfwer: {
  22148. height: math.unit(7.5, "feet"),
  22149. weight: math.unit(2, "lb"),
  22150. name: "Front",
  22151. image: {
  22152. source: "./media/characters/artemis/oversize-load-front.svg",
  22153. extra: 1192 / 1075,
  22154. bottom: 0.07
  22155. },
  22156. form: "oversize-load",
  22157. default: true
  22158. },
  22159. side: {
  22160. height: math.unit(7.5, "feet"),
  22161. weight: math.unit(2, "lb"),
  22162. name: "Side",
  22163. image: {
  22164. source: "./media/characters/artemis/work-safe-side.svg",
  22165. extra: 1192 / 1075,
  22166. bottom: 0.07
  22167. },
  22168. form: "work-safe"
  22169. },
  22170. sideNsfw: {
  22171. height: math.unit(7.5, "feet"),
  22172. weight: math.unit(2, "lb"),
  22173. name: "Side",
  22174. image: {
  22175. source: "./media/characters/artemis/calibrating-side.svg",
  22176. extra: 1192 / 1075,
  22177. bottom: 0.07
  22178. },
  22179. form: "calibrating"
  22180. },
  22181. sideNsfwer: {
  22182. height: math.unit(7.5, "feet"),
  22183. weight: math.unit(2, "lb"),
  22184. name: "Side",
  22185. image: {
  22186. source: "./media/characters/artemis/oversize-load-side.svg",
  22187. extra: 1192 / 1075,
  22188. bottom: 0.07
  22189. },
  22190. form: "oversize-load"
  22191. },
  22192. maw: {
  22193. height: math.unit(1.1, "feet"),
  22194. name: "Maw",
  22195. image: {
  22196. source: "./media/characters/artemis/maw.svg"
  22197. },
  22198. form: "work-safe"
  22199. },
  22200. stomach: {
  22201. height: math.unit(0.95, "feet"),
  22202. name: "Stomach",
  22203. image: {
  22204. source: "./media/characters/artemis/stomach.svg"
  22205. },
  22206. form: "work-safe"
  22207. },
  22208. dickCanine: {
  22209. height: math.unit(1, "feet"),
  22210. name: "Dick (Canine)",
  22211. image: {
  22212. source: "./media/characters/artemis/dick-canine.svg"
  22213. },
  22214. form: "calibrating"
  22215. },
  22216. dickEquine: {
  22217. height: math.unit(0.85, "feet"),
  22218. name: "Dick (Equine)",
  22219. image: {
  22220. source: "./media/characters/artemis/dick-equine.svg"
  22221. },
  22222. form: "calibrating"
  22223. },
  22224. dickExotic: {
  22225. height: math.unit(0.85, "feet"),
  22226. name: "Dick (Exotic)",
  22227. image: {
  22228. source: "./media/characters/artemis/dick-exotic.svg"
  22229. },
  22230. form: "calibrating"
  22231. },
  22232. dickCanineBigger: {
  22233. height: math.unit(1 * 1.33, "feet"),
  22234. name: "Dick (Canine)",
  22235. image: {
  22236. source: "./media/characters/artemis/dick-canine.svg"
  22237. },
  22238. form: "oversize-load"
  22239. },
  22240. dickEquineBigger: {
  22241. height: math.unit(0.85 * 1.33, "feet"),
  22242. name: "Dick (Equine)",
  22243. image: {
  22244. source: "./media/characters/artemis/dick-equine.svg"
  22245. },
  22246. form: "oversize-load"
  22247. },
  22248. dickExoticBigger: {
  22249. height: math.unit(0.85 * 1.33, "feet"),
  22250. name: "Dick (Exotic)",
  22251. image: {
  22252. source: "./media/characters/artemis/dick-exotic.svg"
  22253. },
  22254. form: "oversize-load"
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Normal",
  22260. height: math.unit(7.5, "feet"),
  22261. form: "work-safe",
  22262. default: true
  22263. },
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(7.5, "feet"),
  22267. form: "calibrating",
  22268. default: true
  22269. },
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(7.5, "feet"),
  22273. form: "oversize-load",
  22274. default: true
  22275. },
  22276. {
  22277. name: "Enlarged",
  22278. height: math.unit(12, "feet"),
  22279. form: "work-safe",
  22280. },
  22281. {
  22282. name: "Enlarged",
  22283. height: math.unit(12, "feet"),
  22284. form: "calibrating",
  22285. },
  22286. {
  22287. name: "Enlarged",
  22288. height: math.unit(12, "feet"),
  22289. form: "oversize-load",
  22290. },
  22291. ],
  22292. {
  22293. "work-safe": {
  22294. name: "Work-Safe",
  22295. default: true
  22296. },
  22297. "calibrating": {
  22298. name: "Calibrating"
  22299. },
  22300. "oversize-load": {
  22301. name: "Oversize Load"
  22302. }
  22303. }
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22307. {
  22308. front: {
  22309. height: math.unit(5 + 3 / 12, "feet"),
  22310. weight: math.unit(160, "lb"),
  22311. name: "Front",
  22312. image: {
  22313. source: "./media/characters/kira/front.svg",
  22314. extra: 906 / 786,
  22315. bottom: 0.01
  22316. }
  22317. },
  22318. back: {
  22319. height: math.unit(5 + 3 / 12, "feet"),
  22320. weight: math.unit(160, "lb"),
  22321. name: "Back",
  22322. image: {
  22323. source: "./media/characters/kira/back.svg",
  22324. extra: 882 / 757,
  22325. bottom: 0.005
  22326. }
  22327. },
  22328. frontDressed: {
  22329. height: math.unit(5 + 3 / 12, "feet"),
  22330. weight: math.unit(160, "lb"),
  22331. name: "Front (Dressed)",
  22332. image: {
  22333. source: "./media/characters/kira/front-dressed.svg",
  22334. extra: 906 / 786,
  22335. bottom: 0.01
  22336. }
  22337. },
  22338. beans: {
  22339. height: math.unit(0.92, "feet"),
  22340. name: "Beans",
  22341. image: {
  22342. source: "./media/characters/kira/beans.svg"
  22343. }
  22344. },
  22345. },
  22346. [
  22347. {
  22348. name: "Normal",
  22349. height: math.unit(5 + 3 / 12, "feet"),
  22350. default: true
  22351. },
  22352. ]
  22353. ))
  22354. characterMakers.push(() => makeCharacter(
  22355. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22356. {
  22357. front: {
  22358. height: math.unit(5 + 4 / 12, "feet"),
  22359. weight: math.unit(145, "lb"),
  22360. name: "Front",
  22361. image: {
  22362. source: "./media/characters/scramble/front.svg",
  22363. extra: 763 / 727,
  22364. bottom: 0.05
  22365. }
  22366. },
  22367. back: {
  22368. height: math.unit(5 + 4 / 12, "feet"),
  22369. weight: math.unit(145, "lb"),
  22370. name: "Back",
  22371. image: {
  22372. source: "./media/characters/scramble/back.svg",
  22373. extra: 826 / 737,
  22374. bottom: 0.002
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(5 + 4 / 12, "feet"),
  22382. default: true
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22388. {
  22389. side: {
  22390. height: math.unit(6 + 2 / 12, "feet"),
  22391. weight: math.unit(190, "lb"),
  22392. name: "Side",
  22393. image: {
  22394. source: "./media/characters/biscuit/side.svg",
  22395. extra: 858 / 791,
  22396. bottom: 0.044
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Normal",
  22403. height: math.unit(6 + 2 / 12, "feet"),
  22404. default: true
  22405. },
  22406. ]
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22410. {
  22411. front: {
  22412. height: math.unit(5 + 2 / 12, "feet"),
  22413. weight: math.unit(120, "lb"),
  22414. name: "Front",
  22415. image: {
  22416. source: "./media/characters/poffin/front.svg",
  22417. extra: 786 / 680,
  22418. bottom: 0.005
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Normal",
  22425. height: math.unit(5 + 2 / 12, "feet"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(6 + 3 / 12, "feet"),
  22435. weight: math.unit(519, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/dhari/front.svg",
  22439. extra: 1048 / 946,
  22440. bottom: 0.015
  22441. }
  22442. },
  22443. back: {
  22444. height: math.unit(6 + 3 / 12, "feet"),
  22445. weight: math.unit(519, "lb"),
  22446. name: "Back",
  22447. image: {
  22448. source: "./media/characters/dhari/back.svg",
  22449. extra: 1048 / 931,
  22450. bottom: 0.005
  22451. }
  22452. },
  22453. frontDressed: {
  22454. height: math.unit(6 + 3 / 12, "feet"),
  22455. weight: math.unit(519, "lb"),
  22456. name: "Front (Dressed)",
  22457. image: {
  22458. source: "./media/characters/dhari/front-dressed.svg",
  22459. extra: 1713 / 1546,
  22460. bottom: 0.02
  22461. }
  22462. },
  22463. backDressed: {
  22464. height: math.unit(6 + 3 / 12, "feet"),
  22465. weight: math.unit(519, "lb"),
  22466. name: "Back (Dressed)",
  22467. image: {
  22468. source: "./media/characters/dhari/back-dressed.svg",
  22469. extra: 1699 / 1537,
  22470. bottom: 0.01
  22471. }
  22472. },
  22473. maw: {
  22474. height: math.unit(0.95, "feet"),
  22475. name: "Maw",
  22476. image: {
  22477. source: "./media/characters/dhari/maw.svg"
  22478. }
  22479. },
  22480. wereFront: {
  22481. height: math.unit(12 + 8 / 12, "feet"),
  22482. weight: math.unit(4000, "lb"),
  22483. name: "Front (Were)",
  22484. image: {
  22485. source: "./media/characters/dhari/were-front.svg",
  22486. extra: 1065 / 969,
  22487. bottom: 0.015
  22488. }
  22489. },
  22490. wereBack: {
  22491. height: math.unit(12 + 8 / 12, "feet"),
  22492. weight: math.unit(4000, "lb"),
  22493. name: "Back (Were)",
  22494. image: {
  22495. source: "./media/characters/dhari/were-back.svg",
  22496. extra: 1065 / 969,
  22497. bottom: 0.012
  22498. }
  22499. },
  22500. wereMaw: {
  22501. height: math.unit(0.625, "meters"),
  22502. name: "Maw (Were)",
  22503. image: {
  22504. source: "./media/characters/dhari/were-maw.svg"
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Normal",
  22511. height: math.unit(6 + 3 / 12, "feet"),
  22512. default: true
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22518. {
  22519. anthro: {
  22520. height: math.unit(5 + 7 / 12, "feet"),
  22521. weight: math.unit(175, "lb"),
  22522. name: "Anthro",
  22523. image: {
  22524. source: "./media/characters/rena-dyne/anthro.svg",
  22525. extra: 1849 / 1785,
  22526. bottom: 0.005
  22527. }
  22528. },
  22529. taur: {
  22530. height: math.unit(15 + 6 / 12, "feet"),
  22531. weight: math.unit(8000, "lb"),
  22532. name: "Taur",
  22533. image: {
  22534. source: "./media/characters/rena-dyne/taur.svg",
  22535. extra: 2315 / 2234,
  22536. bottom: 0.033
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Normal",
  22543. height: math.unit(5 + 7 / 12, "feet"),
  22544. default: true
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(8, "feet"),
  22553. weight: math.unit(600, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/weremeep/front.svg",
  22557. extra: 970/849,
  22558. bottom: 7/977
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(8, "feet"),
  22566. default: true
  22567. },
  22568. {
  22569. name: "Lorg",
  22570. height: math.unit(12, "feet")
  22571. },
  22572. {
  22573. name: "Oh Lawd She Comin'",
  22574. height: math.unit(20, "feet")
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22580. {
  22581. front: {
  22582. height: math.unit(4, "feet"),
  22583. weight: math.unit(90, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/reza/front.svg",
  22587. extra: 1183 / 1111,
  22588. bottom: 0.017
  22589. }
  22590. },
  22591. back: {
  22592. height: math.unit(4, "feet"),
  22593. weight: math.unit(90, "lb"),
  22594. name: "Back",
  22595. image: {
  22596. source: "./media/characters/reza/back.svg",
  22597. extra: 1183 / 1111,
  22598. bottom: 0.01
  22599. }
  22600. },
  22601. drake: {
  22602. height: math.unit(30, "feet"),
  22603. weight: math.unit(246960, "lb"),
  22604. name: "Drake",
  22605. image: {
  22606. source: "./media/characters/reza/drake.svg",
  22607. extra: 2350 / 2024,
  22608. bottom: 60.7 / 2403
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(4, "feet"),
  22616. default: true
  22617. },
  22618. ]
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22622. {
  22623. side: {
  22624. height: math.unit(15, "feet"),
  22625. weight: math.unit(14, "tons"),
  22626. name: "Side",
  22627. image: {
  22628. source: "./media/characters/athea/side.svg",
  22629. extra: 960 / 540,
  22630. bottom: 0.003
  22631. }
  22632. },
  22633. sitting: {
  22634. height: math.unit(6 * 2.85, "feet"),
  22635. weight: math.unit(14, "tons"),
  22636. name: "Sitting",
  22637. image: {
  22638. source: "./media/characters/athea/sitting.svg",
  22639. extra: 621 / 581,
  22640. bottom: 0.075
  22641. }
  22642. },
  22643. maw: {
  22644. height: math.unit(7.59498031496063, "feet"),
  22645. name: "Maw",
  22646. image: {
  22647. source: "./media/characters/athea/maw.svg"
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Lap Cat",
  22654. height: math.unit(2.5, "feet")
  22655. },
  22656. {
  22657. name: "Minimacro",
  22658. height: math.unit(15, "feet"),
  22659. default: true
  22660. },
  22661. {
  22662. name: "Macro",
  22663. height: math.unit(120, "feet")
  22664. },
  22665. {
  22666. name: "Macro+",
  22667. height: math.unit(640, "feet")
  22668. },
  22669. {
  22670. name: "Colossus",
  22671. height: math.unit(2.2, "miles")
  22672. },
  22673. ]
  22674. ))
  22675. characterMakers.push(() => makeCharacter(
  22676. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22677. {
  22678. front: {
  22679. height: math.unit(8 + 8 / 12, "feet"),
  22680. weight: math.unit(130, "kg"),
  22681. name: "Front",
  22682. image: {
  22683. source: "./media/characters/seroko/front.svg",
  22684. extra: 1385 / 1280,
  22685. bottom: 0.025
  22686. }
  22687. },
  22688. back: {
  22689. height: math.unit(8 + 8 / 12, "feet"),
  22690. weight: math.unit(130, "kg"),
  22691. name: "Back",
  22692. image: {
  22693. source: "./media/characters/seroko/back.svg",
  22694. extra: 1369 / 1238,
  22695. bottom: 0.018
  22696. }
  22697. },
  22698. frontDressed: {
  22699. height: math.unit(8 + 8 / 12, "feet"),
  22700. weight: math.unit(130, "kg"),
  22701. name: "Front (Dressed)",
  22702. image: {
  22703. source: "./media/characters/seroko/front-dressed.svg",
  22704. extra: 1366 / 1275,
  22705. bottom: 0.03
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(8 + 8 / 12, "feet"),
  22713. default: true
  22714. },
  22715. ]
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22719. {
  22720. front: {
  22721. height: math.unit(5.5, "feet"),
  22722. weight: math.unit(160, "lb"),
  22723. name: "Front",
  22724. image: {
  22725. source: "./media/characters/quatzi/front.svg",
  22726. extra: 2346 / 2242,
  22727. bottom: 0.015
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Normal",
  22734. height: math.unit(5.5, "feet"),
  22735. default: true
  22736. },
  22737. {
  22738. name: "Big",
  22739. height: math.unit(7.7, "feet")
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22745. {
  22746. front: {
  22747. height: math.unit(5 + 11 / 12, "feet"),
  22748. weight: math.unit(180, "lb"),
  22749. name: "Front",
  22750. image: {
  22751. source: "./media/characters/sen/front.svg",
  22752. extra: 1321 / 1254,
  22753. bottom: 0.015
  22754. }
  22755. },
  22756. side: {
  22757. height: math.unit(5 + 11 / 12, "feet"),
  22758. weight: math.unit(180, "lb"),
  22759. name: "Side",
  22760. image: {
  22761. source: "./media/characters/sen/side.svg",
  22762. extra: 1321 / 1254,
  22763. bottom: 0.007
  22764. }
  22765. },
  22766. back: {
  22767. height: math.unit(5 + 11 / 12, "feet"),
  22768. weight: math.unit(180, "lb"),
  22769. name: "Back",
  22770. image: {
  22771. source: "./media/characters/sen/back.svg",
  22772. extra: 1321 / 1254
  22773. }
  22774. },
  22775. },
  22776. [
  22777. {
  22778. name: "Normal",
  22779. height: math.unit(5 + 11 / 12, "feet"),
  22780. default: true
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22786. {
  22787. front: {
  22788. height: math.unit(166.6, "cm"),
  22789. weight: math.unit(66.6, "kg"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/fruity/front.svg",
  22793. extra: 1510 / 1386,
  22794. bottom: 0.04
  22795. }
  22796. },
  22797. back: {
  22798. height: math.unit(166.6, "cm"),
  22799. weight: math.unit(66.6, "lb"),
  22800. name: "Back",
  22801. image: {
  22802. source: "./media/characters/fruity/back.svg",
  22803. extra: 1563 / 1435,
  22804. bottom: 0.005
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Normal",
  22811. height: math.unit(166.6, "cm"),
  22812. default: true
  22813. },
  22814. {
  22815. name: "Demonic",
  22816. height: math.unit(166.6, "feet")
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22822. {
  22823. side: {
  22824. height: math.unit(10, "feet"),
  22825. weight: math.unit(500, "lb"),
  22826. name: "Side",
  22827. image: {
  22828. source: "./media/characters/zost/side.svg",
  22829. extra: 2870/2533,
  22830. bottom: 252/3122
  22831. }
  22832. },
  22833. mawFront: {
  22834. height: math.unit(1.08, "meters"),
  22835. name: "Maw (Front)",
  22836. image: {
  22837. source: "./media/characters/zost/maw-front.svg"
  22838. }
  22839. },
  22840. mawSide: {
  22841. height: math.unit(2.66, "feet"),
  22842. name: "Maw (Side)",
  22843. image: {
  22844. source: "./media/characters/zost/maw-side.svg"
  22845. }
  22846. },
  22847. wingspan: {
  22848. height: math.unit(7.4, "feet"),
  22849. name: "Wingspan",
  22850. image: {
  22851. source: "./media/characters/zost/wingspan.svg"
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(10, "feet"),
  22859. default: true
  22860. },
  22861. ]
  22862. ))
  22863. characterMakers.push(() => makeCharacter(
  22864. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22865. {
  22866. front: {
  22867. height: math.unit(5 + 4 / 12, "feet"),
  22868. weight: math.unit(120, "lb"),
  22869. name: "Front",
  22870. image: {
  22871. source: "./media/characters/luci/front.svg",
  22872. extra: 1985 / 1884,
  22873. bottom: 0.04
  22874. }
  22875. },
  22876. back: {
  22877. height: math.unit(5 + 4 / 12, "feet"),
  22878. weight: math.unit(120, "lb"),
  22879. name: "Back",
  22880. image: {
  22881. source: "./media/characters/luci/back.svg",
  22882. extra: 1892 / 1791,
  22883. bottom: 0.002
  22884. }
  22885. },
  22886. },
  22887. [
  22888. {
  22889. name: "Normal",
  22890. height: math.unit(5 + 4 / 12, "feet"),
  22891. default: true
  22892. },
  22893. ]
  22894. ))
  22895. characterMakers.push(() => makeCharacter(
  22896. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22897. {
  22898. front: {
  22899. height: math.unit(1500, "feet"),
  22900. weight: math.unit(3.8e6, "tons"),
  22901. name: "Front",
  22902. image: {
  22903. source: "./media/characters/2th/front.svg",
  22904. extra: 3489 / 3350,
  22905. bottom: 0.1
  22906. }
  22907. },
  22908. foot: {
  22909. height: math.unit(461, "feet"),
  22910. name: "Foot",
  22911. image: {
  22912. source: "./media/characters/2th/foot.svg"
  22913. }
  22914. },
  22915. },
  22916. [
  22917. {
  22918. name: "\"Micro\"",
  22919. height: math.unit(15 + 7 / 12, "feet")
  22920. },
  22921. {
  22922. name: "Normal",
  22923. height: math.unit(1500, "feet"),
  22924. default: true
  22925. },
  22926. {
  22927. name: "Macro",
  22928. height: math.unit(5000, "feet")
  22929. },
  22930. {
  22931. name: "Megamacro",
  22932. height: math.unit(15, "miles")
  22933. },
  22934. {
  22935. name: "Gigamacro",
  22936. height: math.unit(4000, "miles")
  22937. },
  22938. {
  22939. name: "Galactic",
  22940. height: math.unit(50, "AU")
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22946. {
  22947. front: {
  22948. height: math.unit(5 + 6 / 12, "feet"),
  22949. weight: math.unit(220, "lb"),
  22950. name: "Front",
  22951. image: {
  22952. source: "./media/characters/amethyst/front.svg",
  22953. extra: 2078 / 2040,
  22954. bottom: 0.045
  22955. }
  22956. },
  22957. back: {
  22958. height: math.unit(5 + 6 / 12, "feet"),
  22959. weight: math.unit(220, "lb"),
  22960. name: "Back",
  22961. image: {
  22962. source: "./media/characters/amethyst/back.svg",
  22963. extra: 2021 / 1989,
  22964. bottom: 0.02
  22965. }
  22966. },
  22967. },
  22968. [
  22969. {
  22970. name: "Normal",
  22971. height: math.unit(5 + 6 / 12, "feet"),
  22972. default: true
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22978. {
  22979. front: {
  22980. height: math.unit(4 + 11 / 12, "feet"),
  22981. weight: math.unit(120, "lb"),
  22982. name: "Front",
  22983. image: {
  22984. source: "./media/characters/yumi-akiyama/front.svg",
  22985. extra: 1327 / 1235,
  22986. bottom: 0.02
  22987. }
  22988. },
  22989. back: {
  22990. height: math.unit(4 + 11 / 12, "feet"),
  22991. weight: math.unit(120, "lb"),
  22992. name: "Back",
  22993. image: {
  22994. source: "./media/characters/yumi-akiyama/back.svg",
  22995. extra: 1287 / 1245,
  22996. bottom: 0.002
  22997. }
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Galactic",
  23003. height: math.unit(50, "galaxies"),
  23004. default: true
  23005. },
  23006. {
  23007. name: "Universal",
  23008. height: math.unit(100, "universes")
  23009. },
  23010. ]
  23011. ))
  23012. characterMakers.push(() => makeCharacter(
  23013. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23014. {
  23015. front: {
  23016. height: math.unit(8, "feet"),
  23017. weight: math.unit(500, "lb"),
  23018. name: "Front",
  23019. image: {
  23020. source: "./media/characters/rifter-yrmori/front.svg",
  23021. extra: 1180 / 1125,
  23022. bottom: 0.02
  23023. }
  23024. },
  23025. back: {
  23026. height: math.unit(8, "feet"),
  23027. weight: math.unit(500, "lb"),
  23028. name: "Back",
  23029. image: {
  23030. source: "./media/characters/rifter-yrmori/back.svg",
  23031. extra: 1190 / 1145,
  23032. bottom: 0.001
  23033. }
  23034. },
  23035. wings: {
  23036. height: math.unit(7.75, "feet"),
  23037. weight: math.unit(500, "lb"),
  23038. name: "Wings",
  23039. image: {
  23040. source: "./media/characters/rifter-yrmori/wings.svg",
  23041. extra: 1357 / 1285
  23042. }
  23043. },
  23044. maw: {
  23045. height: math.unit(0.8, "feet"),
  23046. name: "Maw",
  23047. image: {
  23048. source: "./media/characters/rifter-yrmori/maw.svg"
  23049. }
  23050. },
  23051. mawfront: {
  23052. height: math.unit(1.45, "feet"),
  23053. name: "Maw (Front)",
  23054. image: {
  23055. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23056. }
  23057. },
  23058. },
  23059. [
  23060. {
  23061. name: "Normal",
  23062. height: math.unit(8, "feet"),
  23063. default: true
  23064. },
  23065. {
  23066. name: "Macro",
  23067. height: math.unit(42, "meters")
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23073. {
  23074. were: {
  23075. height: math.unit(25 + 6 / 12, "feet"),
  23076. weight: math.unit(10000, "lb"),
  23077. name: "Were",
  23078. image: {
  23079. source: "./media/characters/tahajin/were.svg",
  23080. extra: 801 / 770,
  23081. bottom: 0.042
  23082. }
  23083. },
  23084. aquatic: {
  23085. height: math.unit(6 + 4 / 12, "feet"),
  23086. weight: math.unit(160, "lb"),
  23087. name: "Aquatic",
  23088. image: {
  23089. source: "./media/characters/tahajin/aquatic.svg",
  23090. extra: 572 / 542,
  23091. bottom: 0.04
  23092. }
  23093. },
  23094. chow: {
  23095. height: math.unit(8 + 11 / 12, "feet"),
  23096. weight: math.unit(450, "lb"),
  23097. name: "Chow",
  23098. image: {
  23099. source: "./media/characters/tahajin/chow.svg",
  23100. extra: 660 / 640,
  23101. bottom: 0.015
  23102. }
  23103. },
  23104. demiNaga: {
  23105. height: math.unit(6 + 8 / 12, "feet"),
  23106. weight: math.unit(300, "lb"),
  23107. name: "Demi Naga",
  23108. image: {
  23109. source: "./media/characters/tahajin/demi-naga.svg",
  23110. extra: 643 / 615,
  23111. bottom: 0.1
  23112. }
  23113. },
  23114. data: {
  23115. height: math.unit(5, "inches"),
  23116. weight: math.unit(0.1, "lb"),
  23117. name: "Data",
  23118. image: {
  23119. source: "./media/characters/tahajin/data.svg"
  23120. }
  23121. },
  23122. fluu: {
  23123. height: math.unit(5 + 7 / 12, "feet"),
  23124. weight: math.unit(140, "lb"),
  23125. name: "Fluu",
  23126. image: {
  23127. source: "./media/characters/tahajin/fluu.svg",
  23128. extra: 628 / 592,
  23129. bottom: 0.02
  23130. }
  23131. },
  23132. starWarrior: {
  23133. height: math.unit(4 + 5 / 12, "feet"),
  23134. weight: math.unit(50, "lb"),
  23135. name: "Star Warrior",
  23136. image: {
  23137. source: "./media/characters/tahajin/star-warrior.svg"
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(25 + 6 / 12, "feet"),
  23145. default: true
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23151. {
  23152. front: {
  23153. height: math.unit(8, "feet"),
  23154. weight: math.unit(350, "lb"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/gabira/front.svg",
  23158. extra: 1261/1154,
  23159. bottom: 51/1312
  23160. }
  23161. },
  23162. back: {
  23163. height: math.unit(8, "feet"),
  23164. weight: math.unit(350, "lb"),
  23165. name: "Back",
  23166. image: {
  23167. source: "./media/characters/gabira/back.svg",
  23168. extra: 1265/1163,
  23169. bottom: 46/1311
  23170. }
  23171. },
  23172. head: {
  23173. height: math.unit(2.85, "feet"),
  23174. name: "Head",
  23175. image: {
  23176. source: "./media/characters/gabira/head.svg"
  23177. }
  23178. },
  23179. },
  23180. [
  23181. {
  23182. name: "Normal",
  23183. height: math.unit(8, "feet"),
  23184. default: true
  23185. },
  23186. ]
  23187. ))
  23188. characterMakers.push(() => makeCharacter(
  23189. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23190. {
  23191. front: {
  23192. height: math.unit(5 + 3 / 12, "feet"),
  23193. weight: math.unit(137, "lb"),
  23194. name: "Front",
  23195. image: {
  23196. source: "./media/characters/sasha-katraine/front.svg",
  23197. extra: 1745/1694,
  23198. bottom: 37/1782
  23199. }
  23200. },
  23201. back: {
  23202. height: math.unit(5 + 3 / 12, "feet"),
  23203. weight: math.unit(137, "lb"),
  23204. name: "Back",
  23205. image: {
  23206. source: "./media/characters/sasha-katraine/back.svg",
  23207. extra: 1776/1699,
  23208. bottom: 26/1802
  23209. }
  23210. },
  23211. },
  23212. [
  23213. {
  23214. name: "Micro",
  23215. height: math.unit(5, "inches")
  23216. },
  23217. {
  23218. name: "Normal",
  23219. height: math.unit(5 + 3 / 12, "feet"),
  23220. default: true
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23226. {
  23227. side: {
  23228. height: math.unit(4, "inches"),
  23229. weight: math.unit(200, "grams"),
  23230. name: "Side",
  23231. image: {
  23232. source: "./media/characters/der/side.svg",
  23233. extra: 719 / 400,
  23234. bottom: 30.6 / 749.9187
  23235. }
  23236. },
  23237. },
  23238. [
  23239. {
  23240. name: "Micro",
  23241. height: math.unit(4, "inches"),
  23242. default: true
  23243. },
  23244. ]
  23245. ))
  23246. characterMakers.push(() => makeCharacter(
  23247. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23248. {
  23249. side: {
  23250. height: math.unit(30, "meters"),
  23251. weight: math.unit(700, "tonnes"),
  23252. name: "Side",
  23253. image: {
  23254. source: "./media/characters/fixerdragon/side.svg",
  23255. extra: (1293.0514 - 116.03) / 1106.86,
  23256. bottom: 116.03 / 1293.0514
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Planck",
  23263. height: math.unit(1.6e-35, "meters")
  23264. },
  23265. {
  23266. name: "Micro",
  23267. height: math.unit(0.4, "meters")
  23268. },
  23269. {
  23270. name: "Normal",
  23271. height: math.unit(30, "meters"),
  23272. default: true
  23273. },
  23274. {
  23275. name: "Megamacro",
  23276. height: math.unit(1.2, "megameters")
  23277. },
  23278. {
  23279. name: "Teramacro",
  23280. height: math.unit(130, "terameters")
  23281. },
  23282. {
  23283. name: "Yottamacro",
  23284. height: math.unit(6200, "yottameters")
  23285. },
  23286. ]
  23287. ));
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23290. {
  23291. front: {
  23292. height: math.unit(8, "feet"),
  23293. weight: math.unit(250, "lb"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/kite/front.svg",
  23297. extra: 2796 / 2659,
  23298. bottom: 0.002
  23299. }
  23300. },
  23301. },
  23302. [
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(8, "feet"),
  23306. default: true
  23307. },
  23308. {
  23309. name: "Macro",
  23310. height: math.unit(360, "feet")
  23311. },
  23312. {
  23313. name: "Megamacro",
  23314. height: math.unit(1500, "feet")
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23320. {
  23321. front: {
  23322. height: math.unit(5 + 11/12, "feet"),
  23323. weight: math.unit(170, "lb"),
  23324. name: "Front",
  23325. image: {
  23326. source: "./media/characters/poojawa-vynar/front.svg",
  23327. extra: 1735/1585,
  23328. bottom: 96/1831
  23329. }
  23330. },
  23331. back: {
  23332. height: math.unit(5 + 11/12, "feet"),
  23333. weight: math.unit(170, "lb"),
  23334. name: "Back",
  23335. image: {
  23336. source: "./media/characters/poojawa-vynar/back.svg",
  23337. extra: 1749/1607,
  23338. bottom: 28/1777
  23339. }
  23340. },
  23341. male: {
  23342. height: math.unit(5 + 11/12, "feet"),
  23343. weight: math.unit(170, "lb"),
  23344. name: "Male",
  23345. image: {
  23346. source: "./media/characters/poojawa-vynar/male.svg",
  23347. extra: 1855/1713,
  23348. bottom: 63/1918
  23349. }
  23350. },
  23351. taur: {
  23352. height: math.unit(5 + 11/12, "feet"),
  23353. weight: math.unit(170, "lb"),
  23354. name: "Taur",
  23355. image: {
  23356. source: "./media/characters/poojawa-vynar/taur.svg",
  23357. extra: 1151/1059,
  23358. bottom: 356/1507
  23359. }
  23360. },
  23361. frontDressed: {
  23362. height: math.unit(5 + 11/12, "feet"),
  23363. weight: math.unit(170, "lb"),
  23364. name: "Front (Dressed)",
  23365. image: {
  23366. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23367. extra: 1735/1585,
  23368. bottom: 96/1831
  23369. }
  23370. },
  23371. backDressed: {
  23372. height: math.unit(5 + 11/12, "feet"),
  23373. weight: math.unit(170, "lb"),
  23374. name: "Back (Dressed)",
  23375. image: {
  23376. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23377. extra: 1749/1607,
  23378. bottom: 28/1777
  23379. }
  23380. },
  23381. maleDressed: {
  23382. height: math.unit(5 + 11/12, "feet"),
  23383. weight: math.unit(170, "lb"),
  23384. name: "Male (Dressed)",
  23385. image: {
  23386. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23387. extra: 1855/1713,
  23388. bottom: 63/1918
  23389. }
  23390. },
  23391. taurDressed: {
  23392. height: math.unit(5 + 11/12, "feet"),
  23393. weight: math.unit(170, "lb"),
  23394. name: "Taur (Dressed)",
  23395. image: {
  23396. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23397. extra: 1151/1059,
  23398. bottom: 356/1507
  23399. }
  23400. },
  23401. maw: {
  23402. height: math.unit(1.46, "feet"),
  23403. name: "Maw",
  23404. image: {
  23405. source: "./media/characters/poojawa-vynar/maw.svg"
  23406. }
  23407. },
  23408. head: {
  23409. height: math.unit(2.34, "feet"),
  23410. name: "Head",
  23411. image: {
  23412. source: "./media/characters/poojawa-vynar/head.svg"
  23413. }
  23414. },
  23415. paw: {
  23416. height: math.unit(1.61, "feet"),
  23417. name: "Paw",
  23418. image: {
  23419. source: "./media/characters/poojawa-vynar/paw.svg"
  23420. }
  23421. },
  23422. pawToering: {
  23423. height: math.unit(1.72, "feet"),
  23424. name: "Paw (Toering)",
  23425. image: {
  23426. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23427. }
  23428. },
  23429. toering: {
  23430. height: math.unit(2.9, "inches"),
  23431. name: "Toering",
  23432. image: {
  23433. source: "./media/characters/poojawa-vynar/toering.svg"
  23434. }
  23435. },
  23436. shaft: {
  23437. height: math.unit(0.625, "feet"),
  23438. name: "Shaft",
  23439. image: {
  23440. source: "./media/characters/poojawa-vynar/shaft.svg"
  23441. }
  23442. },
  23443. spade: {
  23444. height: math.unit(0.42, "feet"),
  23445. name: "Spade",
  23446. image: {
  23447. source: "./media/characters/poojawa-vynar/spade.svg"
  23448. }
  23449. },
  23450. },
  23451. [
  23452. {
  23453. name: "Shortstack",
  23454. height: math.unit(4, "feet")
  23455. },
  23456. {
  23457. name: "Normal",
  23458. height: math.unit(5 + 11 / 12, "feet"),
  23459. default: true
  23460. },
  23461. {
  23462. name: "Tauric",
  23463. height: math.unit(4, "meters")
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23469. {
  23470. front: {
  23471. height: math.unit(293, "meters"),
  23472. weight: math.unit(70400, "tons"),
  23473. name: "Front",
  23474. image: {
  23475. source: "./media/characters/violette/front.svg",
  23476. extra: 1227 / 1180,
  23477. bottom: 0.005
  23478. }
  23479. },
  23480. back: {
  23481. height: math.unit(293, "meters"),
  23482. weight: math.unit(70400, "tons"),
  23483. name: "Back",
  23484. image: {
  23485. source: "./media/characters/violette/back.svg",
  23486. extra: 1227 / 1180,
  23487. bottom: 0.005
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Macro",
  23494. height: math.unit(293, "meters"),
  23495. default: true
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23501. {
  23502. front: {
  23503. height: math.unit(1050, "feet"),
  23504. weight: math.unit(200000, "tons"),
  23505. name: "Front",
  23506. image: {
  23507. source: "./media/characters/alessandra/front.svg",
  23508. extra: 960 / 912,
  23509. bottom: 0.06
  23510. }
  23511. },
  23512. },
  23513. [
  23514. {
  23515. name: "Macro",
  23516. height: math.unit(1050, "feet")
  23517. },
  23518. {
  23519. name: "Macro+",
  23520. height: math.unit(900, "meters"),
  23521. default: true
  23522. },
  23523. ]
  23524. ))
  23525. characterMakers.push(() => makeCharacter(
  23526. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23527. {
  23528. front: {
  23529. height: math.unit(5, "feet"),
  23530. weight: math.unit(187, "lb"),
  23531. name: "Front",
  23532. image: {
  23533. source: "./media/characters/person/front.svg",
  23534. extra: 3087 / 2945,
  23535. bottom: 91 / 3181
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Micro",
  23542. height: math.unit(3, "inches")
  23543. },
  23544. {
  23545. name: "Normal",
  23546. height: math.unit(5, "feet"),
  23547. default: true
  23548. },
  23549. {
  23550. name: "Macro",
  23551. height: math.unit(90, "feet")
  23552. },
  23553. {
  23554. name: "Max Size",
  23555. height: math.unit(280, "feet")
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23561. {
  23562. front: {
  23563. height: math.unit(4.5, "meters"),
  23564. weight: math.unit(3200, "lb"),
  23565. name: "Front",
  23566. image: {
  23567. source: "./media/characters/ty/front.svg",
  23568. extra: 1038 / 960,
  23569. bottom: 31.156 / 1068
  23570. }
  23571. },
  23572. back: {
  23573. height: math.unit(4.5, "meters"),
  23574. weight: math.unit(3200, "lb"),
  23575. name: "Back",
  23576. image: {
  23577. source: "./media/characters/ty/back.svg",
  23578. extra: 1044 / 966,
  23579. bottom: 7.48 / 1049
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Normal",
  23586. height: math.unit(4.5, "meters"),
  23587. default: true
  23588. },
  23589. ]
  23590. ))
  23591. characterMakers.push(() => makeCharacter(
  23592. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23593. {
  23594. front: {
  23595. height: math.unit(5 + 4 / 12, "feet"),
  23596. weight: math.unit(115, "lb"),
  23597. name: "Front",
  23598. image: {
  23599. source: "./media/characters/rocky/front.svg",
  23600. extra: 1012 / 975,
  23601. bottom: 54 / 1066
  23602. }
  23603. },
  23604. },
  23605. [
  23606. {
  23607. name: "Normal",
  23608. height: math.unit(5 + 4 / 12, "feet"),
  23609. default: true
  23610. },
  23611. ]
  23612. ))
  23613. characterMakers.push(() => makeCharacter(
  23614. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23615. {
  23616. upright: {
  23617. height: math.unit(6, "meters"),
  23618. weight: math.unit(4000, "kg"),
  23619. name: "Upright",
  23620. image: {
  23621. source: "./media/characters/ruin/upright.svg",
  23622. extra: 668 / 661,
  23623. bottom: 42 / 799.8396
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(6, "meters"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(5, "feet"),
  23640. weight: math.unit(106, "lb"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/robin/front.svg",
  23644. extra: 862 / 799,
  23645. bottom: 42.4 / 914.8856
  23646. }
  23647. },
  23648. },
  23649. [
  23650. {
  23651. name: "Normal",
  23652. height: math.unit(5, "feet"),
  23653. default: true
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23659. {
  23660. side: {
  23661. height: math.unit(3, "feet"),
  23662. weight: math.unit(225, "lb"),
  23663. name: "Side",
  23664. image: {
  23665. source: "./media/characters/saian/side.svg",
  23666. extra: 566 / 356,
  23667. bottom: 79.7 / 643
  23668. }
  23669. },
  23670. maw: {
  23671. height: math.unit(2.85, "feet"),
  23672. name: "Maw",
  23673. image: {
  23674. source: "./media/characters/saian/maw.svg"
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Normal",
  23681. height: math.unit(3, "feet"),
  23682. default: true
  23683. },
  23684. ]
  23685. ))
  23686. characterMakers.push(() => makeCharacter(
  23687. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23688. {
  23689. side: {
  23690. height: math.unit(8, "feet"),
  23691. weight: math.unit(300, "lb"),
  23692. name: "Side",
  23693. image: {
  23694. source: "./media/characters/equus-silvermane/side.svg",
  23695. extra: 2176 / 2050,
  23696. bottom: 65.7 / 2245
  23697. }
  23698. },
  23699. front: {
  23700. height: math.unit(8, "feet"),
  23701. weight: math.unit(300, "lb"),
  23702. name: "Front",
  23703. image: {
  23704. source: "./media/characters/equus-silvermane/front.svg",
  23705. extra: 4633 / 4400,
  23706. bottom: 71.3 / 4706.915
  23707. }
  23708. },
  23709. sideStepping: {
  23710. height: math.unit(8, "feet"),
  23711. weight: math.unit(300, "lb"),
  23712. name: "Side (Stepping)",
  23713. image: {
  23714. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23715. extra: 1968 / 1860,
  23716. bottom: 16.4 / 1989
  23717. }
  23718. },
  23719. },
  23720. [
  23721. {
  23722. name: "Normal",
  23723. height: math.unit(8, "feet")
  23724. },
  23725. {
  23726. name: "Minimacro",
  23727. height: math.unit(75, "feet"),
  23728. default: true
  23729. },
  23730. {
  23731. name: "Macro",
  23732. height: math.unit(150, "feet")
  23733. },
  23734. {
  23735. name: "Macro+",
  23736. height: math.unit(1000, "feet")
  23737. },
  23738. {
  23739. name: "Megamacro",
  23740. height: math.unit(1, "mile")
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23746. {
  23747. side: {
  23748. height: math.unit(20, "feet"),
  23749. weight: math.unit(30000, "kg"),
  23750. name: "Side",
  23751. image: {
  23752. source: "./media/characters/windar/side.svg",
  23753. extra: 1491 / 1248,
  23754. bottom: 82.56 / 1568
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Normal",
  23761. height: math.unit(20, "feet"),
  23762. default: true
  23763. },
  23764. ]
  23765. ))
  23766. characterMakers.push(() => makeCharacter(
  23767. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23768. {
  23769. side: {
  23770. height: math.unit(15.66, "feet"),
  23771. weight: math.unit(150, "lb"),
  23772. name: "Side",
  23773. image: {
  23774. source: "./media/characters/melody/side.svg",
  23775. extra: 1097 / 944,
  23776. bottom: 11.8 / 1109
  23777. }
  23778. },
  23779. sideOutfit: {
  23780. height: math.unit(15.66, "feet"),
  23781. weight: math.unit(150, "lb"),
  23782. name: "Side (Outfit)",
  23783. image: {
  23784. source: "./media/characters/melody/side-outfit.svg",
  23785. extra: 1097 / 944,
  23786. bottom: 11.8 / 1109
  23787. }
  23788. },
  23789. },
  23790. [
  23791. {
  23792. name: "Normal",
  23793. height: math.unit(15.66, "feet"),
  23794. default: true
  23795. },
  23796. ]
  23797. ))
  23798. characterMakers.push(() => makeCharacter(
  23799. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23800. {
  23801. armoredFront: {
  23802. height: math.unit(8, "feet"),
  23803. weight: math.unit(325, "lb"),
  23804. name: "Front",
  23805. image: {
  23806. source: "./media/characters/windera/armored-front.svg",
  23807. extra: 1830/1598,
  23808. bottom: 151/1981
  23809. },
  23810. form: "armored",
  23811. default: true
  23812. },
  23813. macroFront: {
  23814. height: math.unit(70, "feet"),
  23815. weight: math.unit(315453, "lb"),
  23816. name: "Front",
  23817. image: {
  23818. source: "./media/characters/windera/macro-front.svg",
  23819. extra: 963/883,
  23820. bottom: 23/986
  23821. },
  23822. form: "macro",
  23823. default: true
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Normal",
  23829. height: math.unit(8, "feet"),
  23830. default: true,
  23831. form: "armored"
  23832. },
  23833. {
  23834. name: "Normal",
  23835. height: math.unit(70, "feet"),
  23836. default: true,
  23837. form: "macro"
  23838. },
  23839. ],
  23840. {
  23841. "armored": {
  23842. name: "Armored",
  23843. default: true
  23844. },
  23845. "macro": {
  23846. name: "Macro",
  23847. },
  23848. }
  23849. ))
  23850. characterMakers.push(() => makeCharacter(
  23851. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23852. {
  23853. front: {
  23854. height: math.unit(28.75, "feet"),
  23855. weight: math.unit(2000, "kg"),
  23856. name: "Front",
  23857. image: {
  23858. source: "./media/characters/sonear/front.svg",
  23859. extra: 1041.1 / 964.9,
  23860. bottom: 53.7 / 1096.6
  23861. }
  23862. },
  23863. },
  23864. [
  23865. {
  23866. name: "Normal",
  23867. height: math.unit(28.75, "feet"),
  23868. default: true
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23874. {
  23875. side: {
  23876. height: math.unit(25.5, "feet"),
  23877. weight: math.unit(23000, "kg"),
  23878. name: "Side",
  23879. image: {
  23880. source: "./media/characters/kanara/side.svg"
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Normal",
  23887. height: math.unit(25.5, "feet"),
  23888. default: true
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23894. {
  23895. side: {
  23896. height: math.unit(10, "feet"),
  23897. weight: math.unit(1000, "kg"),
  23898. name: "Side",
  23899. image: {
  23900. source: "./media/characters/ereus/side.svg",
  23901. extra: 1157 / 959,
  23902. bottom: 153 / 1312.5
  23903. }
  23904. },
  23905. },
  23906. [
  23907. {
  23908. name: "Normal",
  23909. height: math.unit(10, "feet"),
  23910. default: true
  23911. },
  23912. ]
  23913. ))
  23914. characterMakers.push(() => makeCharacter(
  23915. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23916. {
  23917. side: {
  23918. height: math.unit(4.5, "feet"),
  23919. weight: math.unit(500, "lb"),
  23920. name: "Side",
  23921. image: {
  23922. source: "./media/characters/e-ter/side.svg",
  23923. extra: 1550 / 1248,
  23924. bottom: 146 / 1694
  23925. }
  23926. },
  23927. },
  23928. [
  23929. {
  23930. name: "Normal",
  23931. height: math.unit(4.5, "feet"),
  23932. default: true
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23938. {
  23939. side: {
  23940. height: math.unit(9.7, "feet"),
  23941. weight: math.unit(4000, "kg"),
  23942. name: "Side",
  23943. image: {
  23944. source: "./media/characters/yamie/side.svg"
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(9.7, "feet"),
  23952. default: true
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23958. {
  23959. front: {
  23960. height: math.unit(50, "feet"),
  23961. weight: math.unit(50000, "kg"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/anders/front.svg",
  23965. extra: 570 / 539,
  23966. bottom: 14.7 / 586.7
  23967. }
  23968. },
  23969. },
  23970. [
  23971. {
  23972. name: "Large",
  23973. height: math.unit(50, "feet")
  23974. },
  23975. {
  23976. name: "Macro",
  23977. height: math.unit(2000, "feet"),
  23978. default: true
  23979. },
  23980. {
  23981. name: "Megamacro",
  23982. height: math.unit(12, "miles")
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23988. {
  23989. front: {
  23990. height: math.unit(7 + 2 / 12, "feet"),
  23991. weight: math.unit(300, "lb"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/reban/front.svg",
  23995. extra: 1287/1212,
  23996. bottom: 148/1435
  23997. }
  23998. },
  23999. head: {
  24000. height: math.unit(1.95, "feet"),
  24001. name: "Head",
  24002. image: {
  24003. source: "./media/characters/reban/head.svg"
  24004. }
  24005. },
  24006. maw: {
  24007. height: math.unit(0.95, "feet"),
  24008. name: "Maw",
  24009. image: {
  24010. source: "./media/characters/reban/maw.svg"
  24011. }
  24012. },
  24013. foot: {
  24014. height: math.unit(1.65, "feet"),
  24015. name: "Foot",
  24016. image: {
  24017. source: "./media/characters/reban/foot.svg"
  24018. }
  24019. },
  24020. dick: {
  24021. height: math.unit(7 / 5, "feet"),
  24022. name: "Dick",
  24023. image: {
  24024. source: "./media/characters/reban/dick.svg"
  24025. }
  24026. },
  24027. },
  24028. [
  24029. {
  24030. name: "Natural Height",
  24031. height: math.unit(7 + 2 / 12, "feet")
  24032. },
  24033. {
  24034. name: "Macro",
  24035. height: math.unit(500, "feet"),
  24036. default: true
  24037. },
  24038. {
  24039. name: "Canon Height",
  24040. height: math.unit(50, "AU")
  24041. },
  24042. ]
  24043. ))
  24044. characterMakers.push(() => makeCharacter(
  24045. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24046. {
  24047. front: {
  24048. height: math.unit(6, "feet"),
  24049. weight: math.unit(150, "lb"),
  24050. name: "Front",
  24051. image: {
  24052. source: "./media/characters/terrance-keayes/front.svg",
  24053. extra: 1.005,
  24054. bottom: 151 / 1615
  24055. }
  24056. },
  24057. side: {
  24058. height: math.unit(6, "feet"),
  24059. weight: math.unit(150, "lb"),
  24060. name: "Side",
  24061. image: {
  24062. source: "./media/characters/terrance-keayes/side.svg",
  24063. extra: 1.005,
  24064. bottom: 129.4 / 1544
  24065. }
  24066. },
  24067. back: {
  24068. height: math.unit(6, "feet"),
  24069. weight: math.unit(150, "lb"),
  24070. name: "Back",
  24071. image: {
  24072. source: "./media/characters/terrance-keayes/back.svg",
  24073. extra: 1.005,
  24074. bottom: 58.4 / 1557.3
  24075. }
  24076. },
  24077. dick: {
  24078. height: math.unit(6 * 0.208, "feet"),
  24079. name: "Dick",
  24080. image: {
  24081. source: "./media/characters/terrance-keayes/dick.svg"
  24082. }
  24083. },
  24084. },
  24085. [
  24086. {
  24087. name: "Canon Height",
  24088. height: math.unit(35, "miles"),
  24089. default: true
  24090. },
  24091. ]
  24092. ))
  24093. characterMakers.push(() => makeCharacter(
  24094. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24095. {
  24096. front: {
  24097. height: math.unit(6, "feet"),
  24098. weight: math.unit(150, "lb"),
  24099. name: "Front",
  24100. image: {
  24101. source: "./media/characters/ofelia/front.svg",
  24102. extra: 1130/1117,
  24103. bottom: 91/1221
  24104. }
  24105. },
  24106. back: {
  24107. height: math.unit(6, "feet"),
  24108. weight: math.unit(150, "lb"),
  24109. name: "Back",
  24110. image: {
  24111. source: "./media/characters/ofelia/back.svg",
  24112. extra: 1172/1159,
  24113. bottom: 28/1200
  24114. }
  24115. },
  24116. maw: {
  24117. height: math.unit(1, "feet"),
  24118. name: "Maw",
  24119. image: {
  24120. source: "./media/characters/ofelia/maw.svg"
  24121. }
  24122. },
  24123. foot: {
  24124. height: math.unit(1.949, "feet"),
  24125. name: "Foot",
  24126. image: {
  24127. source: "./media/characters/ofelia/foot.svg"
  24128. }
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Canon Height",
  24134. height: math.unit(2000, "miles"),
  24135. default: true
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(6, "feet"),
  24144. weight: math.unit(150, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/samuel/front.svg",
  24148. extra: 265 / 258,
  24149. bottom: 2 / 266.1566
  24150. }
  24151. },
  24152. },
  24153. [
  24154. {
  24155. name: "Macro",
  24156. height: math.unit(100, "feet"),
  24157. default: true
  24158. },
  24159. {
  24160. name: "Full Size",
  24161. height: math.unit(1000, "miles")
  24162. },
  24163. ]
  24164. ))
  24165. characterMakers.push(() => makeCharacter(
  24166. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24167. {
  24168. front: {
  24169. height: math.unit(6, "feet"),
  24170. weight: math.unit(300, "lb"),
  24171. name: "Front",
  24172. image: {
  24173. source: "./media/characters/beishir-kiel/front.svg",
  24174. extra: 569 / 547,
  24175. bottom: 41.9 / 609
  24176. }
  24177. },
  24178. maw: {
  24179. height: math.unit(6 * 0.202, "feet"),
  24180. name: "Maw",
  24181. image: {
  24182. source: "./media/characters/beishir-kiel/maw.svg"
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Macro",
  24189. height: math.unit(300, "feet"),
  24190. default: true
  24191. },
  24192. ]
  24193. ))
  24194. characterMakers.push(() => makeCharacter(
  24195. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24196. {
  24197. front: {
  24198. height: math.unit(5 + 7/12, "feet"),
  24199. weight: math.unit(120, "lb"),
  24200. name: "Front",
  24201. image: {
  24202. source: "./media/characters/logan-grey/front.svg",
  24203. extra: 1836/1738,
  24204. bottom: 108/1944
  24205. }
  24206. },
  24207. back: {
  24208. height: math.unit(5 + 7/12, "feet"),
  24209. weight: math.unit(120, "lb"),
  24210. name: "Back",
  24211. image: {
  24212. source: "./media/characters/logan-grey/back.svg",
  24213. extra: 1880/1794,
  24214. bottom: 24/1904
  24215. }
  24216. },
  24217. frontSfw: {
  24218. height: math.unit(5 + 7/12, "feet"),
  24219. weight: math.unit(120, "lb"),
  24220. name: "Front (SFW)",
  24221. image: {
  24222. source: "./media/characters/logan-grey/front-sfw.svg",
  24223. extra: 1836/1738,
  24224. bottom: 108/1944
  24225. }
  24226. },
  24227. backSfw: {
  24228. height: math.unit(5 + 7/12, "feet"),
  24229. weight: math.unit(120, "lb"),
  24230. name: "Back (SFW)",
  24231. image: {
  24232. source: "./media/characters/logan-grey/back-sfw.svg",
  24233. extra: 1880/1794,
  24234. bottom: 24/1904
  24235. }
  24236. },
  24237. hands: {
  24238. height: math.unit(0.84, "feet"),
  24239. name: "Hands",
  24240. image: {
  24241. source: "./media/characters/logan-grey/hands.svg"
  24242. }
  24243. },
  24244. paws: {
  24245. height: math.unit(0.72, "feet"),
  24246. name: "Paws",
  24247. image: {
  24248. source: "./media/characters/logan-grey/paws.svg"
  24249. }
  24250. },
  24251. cock: {
  24252. height: math.unit(1.45, "feet"),
  24253. name: "Cock",
  24254. image: {
  24255. source: "./media/characters/logan-grey/cock.svg"
  24256. }
  24257. },
  24258. cockAlt: {
  24259. height: math.unit(1.437, "feet"),
  24260. name: "Cock (alt)",
  24261. image: {
  24262. source: "./media/characters/logan-grey/cock-alt.svg"
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Normal",
  24269. height: math.unit(5 + 8 / 12, "feet")
  24270. },
  24271. {
  24272. name: "The 500 Foot Femboy",
  24273. height: math.unit(500, "feet"),
  24274. default: true
  24275. },
  24276. {
  24277. name: "Megmacro",
  24278. height: math.unit(20, "miles")
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24284. {
  24285. front: {
  24286. height: math.unit(8 + 2 / 12, "feet"),
  24287. weight: math.unit(275, "lb"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/draganta/front.svg",
  24291. extra: 1177 / 1135,
  24292. bottom: 33.46 / 1212.1
  24293. }
  24294. },
  24295. },
  24296. [
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(8 + 6 / 12, "feet"),
  24300. default: true
  24301. },
  24302. {
  24303. name: "Macro",
  24304. height: math.unit(150, "feet")
  24305. },
  24306. {
  24307. name: "Megamacro",
  24308. height: math.unit(1000, "miles")
  24309. },
  24310. ]
  24311. ))
  24312. characterMakers.push(() => makeCharacter(
  24313. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24314. {
  24315. front: {
  24316. height: math.unit(1.72, "m"),
  24317. weight: math.unit(80, "lb"),
  24318. name: "Front",
  24319. image: {
  24320. source: "./media/characters/voski/front.svg",
  24321. extra: 2076.22 / 2022.4,
  24322. bottom: 102.7 / 2177.3866
  24323. }
  24324. },
  24325. frontFlaccid: {
  24326. height: math.unit(1.72, "m"),
  24327. weight: math.unit(80, "lb"),
  24328. name: "Front (Flaccid)",
  24329. image: {
  24330. source: "./media/characters/voski/front-flaccid.svg",
  24331. extra: 2076.22 / 2022.4,
  24332. bottom: 102.7 / 2177.3866
  24333. }
  24334. },
  24335. frontErect: {
  24336. height: math.unit(1.72, "m"),
  24337. weight: math.unit(80, "lb"),
  24338. name: "Front (Erect)",
  24339. image: {
  24340. source: "./media/characters/voski/front-erect.svg",
  24341. extra: 2076.22 / 2022.4,
  24342. bottom: 102.7 / 2177.3866
  24343. }
  24344. },
  24345. back: {
  24346. height: math.unit(1.72, "m"),
  24347. weight: math.unit(80, "lb"),
  24348. name: "Back",
  24349. image: {
  24350. source: "./media/characters/voski/back.svg",
  24351. extra: 2104 / 2051,
  24352. bottom: 10.45 / 2113.63
  24353. }
  24354. },
  24355. },
  24356. [
  24357. {
  24358. name: "Normal",
  24359. height: math.unit(1.72, "m")
  24360. },
  24361. {
  24362. name: "Macro",
  24363. height: math.unit(55, "m"),
  24364. default: true
  24365. },
  24366. {
  24367. name: "Macro+",
  24368. height: math.unit(300, "m")
  24369. },
  24370. {
  24371. name: "Macro++",
  24372. height: math.unit(700, "m")
  24373. },
  24374. {
  24375. name: "Macro+++",
  24376. height: math.unit(4500, "m")
  24377. },
  24378. {
  24379. name: "Macro++++",
  24380. height: math.unit(45, "km")
  24381. },
  24382. {
  24383. name: "Macro+++++",
  24384. height: math.unit(1220, "km")
  24385. },
  24386. ]
  24387. ))
  24388. characterMakers.push(() => makeCharacter(
  24389. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24390. {
  24391. front: {
  24392. height: math.unit(2.3, "m"),
  24393. weight: math.unit(304, "kg"),
  24394. name: "Front",
  24395. image: {
  24396. source: "./media/characters/icowom-lee/front.svg",
  24397. extra: 985 / 955,
  24398. bottom: 25.4 / 1012
  24399. }
  24400. },
  24401. fronttentacles: {
  24402. height: math.unit(2.3, "m"),
  24403. weight: math.unit(304, "kg"),
  24404. name: "Front-tentacles",
  24405. image: {
  24406. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24407. extra: 985 / 955,
  24408. bottom: 25.4 / 1012
  24409. }
  24410. },
  24411. back: {
  24412. height: math.unit(2.3, "m"),
  24413. weight: math.unit(304, "kg"),
  24414. name: "Back",
  24415. image: {
  24416. source: "./media/characters/icowom-lee/back.svg",
  24417. extra: 975 / 954,
  24418. bottom: 9.5 / 985
  24419. }
  24420. },
  24421. backtentacles: {
  24422. height: math.unit(2.3, "m"),
  24423. weight: math.unit(304, "kg"),
  24424. name: "Back-tentacles",
  24425. image: {
  24426. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24427. extra: 975 / 954,
  24428. bottom: 9.5 / 985
  24429. }
  24430. },
  24431. frontDressed: {
  24432. height: math.unit(2.3, "m"),
  24433. weight: math.unit(304, "kg"),
  24434. name: "Front (Dressed)",
  24435. image: {
  24436. source: "./media/characters/icowom-lee/front-dressed.svg",
  24437. extra: 3076 / 2933,
  24438. bottom: 51.4 / 3125.1889
  24439. }
  24440. },
  24441. rump: {
  24442. height: math.unit(0.776, "meters"),
  24443. name: "Rump",
  24444. image: {
  24445. source: "./media/characters/icowom-lee/rump.svg"
  24446. }
  24447. },
  24448. genitals: {
  24449. height: math.unit(0.78, "meters"),
  24450. name: "Genitals",
  24451. image: {
  24452. source: "./media/characters/icowom-lee/genitals.svg"
  24453. }
  24454. },
  24455. },
  24456. [
  24457. {
  24458. name: "Normal",
  24459. height: math.unit(2.3, "meters"),
  24460. default: true
  24461. },
  24462. {
  24463. name: "Macro",
  24464. height: math.unit(94, "meters"),
  24465. default: true
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24471. {
  24472. front: {
  24473. height: math.unit(22, "meters"),
  24474. weight: math.unit(21000, "kg"),
  24475. name: "Front",
  24476. image: {
  24477. source: "./media/characters/shock-diamond/front.svg",
  24478. extra: 2204 / 2053,
  24479. bottom: 65 / 2239.47
  24480. }
  24481. },
  24482. frontNude: {
  24483. height: math.unit(22, "meters"),
  24484. weight: math.unit(21000, "kg"),
  24485. name: "Front (Nude)",
  24486. image: {
  24487. source: "./media/characters/shock-diamond/front-nude.svg",
  24488. extra: 2514 / 2285,
  24489. bottom: 13 / 2527.56
  24490. }
  24491. },
  24492. },
  24493. [
  24494. {
  24495. name: "Normal",
  24496. height: math.unit(3, "meters")
  24497. },
  24498. {
  24499. name: "Macro",
  24500. height: math.unit(22, "meters"),
  24501. default: true
  24502. },
  24503. ]
  24504. ))
  24505. characterMakers.push(() => makeCharacter(
  24506. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24507. {
  24508. front: {
  24509. height: math.unit(5 + 4/12, "feet"),
  24510. weight: math.unit(125, "lb"),
  24511. name: "Front",
  24512. image: {
  24513. source: "./media/characters/rory/front.svg",
  24514. extra: 1790/1681,
  24515. bottom: 66/1856
  24516. }
  24517. },
  24518. back: {
  24519. height: math.unit(5 + 4/12, "feet"),
  24520. weight: math.unit(125, "lb"),
  24521. name: "Back",
  24522. image: {
  24523. source: "./media/characters/rory/back.svg",
  24524. extra: 1805/1690,
  24525. bottom: 56/1861
  24526. }
  24527. },
  24528. frontDressed: {
  24529. height: math.unit(5 + 4/12, "feet"),
  24530. weight: math.unit(125, "lb"),
  24531. name: "Front (Dressed)",
  24532. image: {
  24533. source: "./media/characters/rory/front-dressed.svg",
  24534. extra: 1790/1681,
  24535. bottom: 66/1856
  24536. }
  24537. },
  24538. backDressed: {
  24539. height: math.unit(5 + 4/12, "feet"),
  24540. weight: math.unit(125, "lb"),
  24541. name: "Back (Dressed)",
  24542. image: {
  24543. source: "./media/characters/rory/back-dressed.svg",
  24544. extra: 1805/1690,
  24545. bottom: 56/1861
  24546. }
  24547. },
  24548. frontNsfw: {
  24549. height: math.unit(5 + 4/12, "feet"),
  24550. weight: math.unit(125, "lb"),
  24551. name: "Front (NSFW)",
  24552. image: {
  24553. source: "./media/characters/rory/front-nsfw.svg",
  24554. extra: 1790/1681,
  24555. bottom: 66/1856
  24556. }
  24557. },
  24558. backNsfw: {
  24559. height: math.unit(5 + 4/12, "feet"),
  24560. weight: math.unit(125, "lb"),
  24561. name: "Back (NSFW)",
  24562. image: {
  24563. source: "./media/characters/rory/back-nsfw.svg",
  24564. extra: 1805/1690,
  24565. bottom: 56/1861
  24566. }
  24567. },
  24568. dick: {
  24569. height: math.unit(0.8, "feet"),
  24570. name: "Dick",
  24571. image: {
  24572. source: "./media/characters/rory/dick.svg"
  24573. }
  24574. },
  24575. },
  24576. [
  24577. {
  24578. name: "Micro",
  24579. height: math.unit(3, "inches")
  24580. },
  24581. {
  24582. name: "Normal",
  24583. height: math.unit(5 + 4/12, "feet"),
  24584. default: true
  24585. },
  24586. {
  24587. name: "Macro",
  24588. height: math.unit(90, "feet")
  24589. },
  24590. {
  24591. name: "Supercharged",
  24592. height: math.unit(270, "feet")
  24593. },
  24594. ]
  24595. ))
  24596. characterMakers.push(() => makeCharacter(
  24597. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24598. {
  24599. front: {
  24600. height: math.unit(5 + 9 / 12, "feet"),
  24601. weight: math.unit(190, "lb"),
  24602. name: "Front",
  24603. image: {
  24604. source: "./media/characters/sprisk/front.svg",
  24605. extra: 1225 / 1180,
  24606. bottom: 42.7 / 1266.4
  24607. }
  24608. },
  24609. frontNsfw: {
  24610. height: math.unit(5 + 9 / 12, "feet"),
  24611. weight: math.unit(190, "lb"),
  24612. name: "Front (NSFW)",
  24613. image: {
  24614. source: "./media/characters/sprisk/front-nsfw.svg",
  24615. extra: 1225 / 1180,
  24616. bottom: 42.7 / 1266.4
  24617. }
  24618. },
  24619. back: {
  24620. height: math.unit(5 + 9 / 12, "feet"),
  24621. weight: math.unit(190, "lb"),
  24622. name: "Back",
  24623. image: {
  24624. source: "./media/characters/sprisk/back.svg",
  24625. extra: 1247 / 1200,
  24626. bottom: 5.6 / 1253.04
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Tiny",
  24633. height: math.unit(2, "inches")
  24634. },
  24635. {
  24636. name: "Normal",
  24637. height: math.unit(5 + 9 / 12, "feet"),
  24638. default: true
  24639. },
  24640. {
  24641. name: "Mini Macro",
  24642. height: math.unit(18, "feet")
  24643. },
  24644. {
  24645. name: "Macro",
  24646. height: math.unit(100, "feet")
  24647. },
  24648. {
  24649. name: "MACRO",
  24650. height: math.unit(50, "miles")
  24651. },
  24652. {
  24653. name: "M A C R O",
  24654. height: math.unit(300, "miles")
  24655. },
  24656. ]
  24657. ))
  24658. characterMakers.push(() => makeCharacter(
  24659. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24660. {
  24661. side: {
  24662. height: math.unit(15.6, "meters"),
  24663. weight: math.unit(700000, "kg"),
  24664. name: "Side",
  24665. image: {
  24666. source: "./media/characters/bunsen/side.svg",
  24667. extra: 1644 / 358
  24668. }
  24669. },
  24670. foot: {
  24671. height: math.unit(1.611 * 1644 / 358, "meter"),
  24672. name: "Foot",
  24673. image: {
  24674. source: "./media/characters/bunsen/foot.svg"
  24675. }
  24676. },
  24677. },
  24678. [
  24679. {
  24680. name: "Small",
  24681. height: math.unit(10, "feet")
  24682. },
  24683. {
  24684. name: "Normal",
  24685. height: math.unit(15.6, "meters"),
  24686. default: true
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24692. {
  24693. front: {
  24694. height: math.unit(4 + 11 / 12, "feet"),
  24695. weight: math.unit(140, "lb"),
  24696. name: "Front",
  24697. image: {
  24698. source: "./media/characters/sesh/front.svg",
  24699. extra: 3420 / 3231,
  24700. bottom: 72 / 3949.5
  24701. }
  24702. },
  24703. },
  24704. [
  24705. {
  24706. name: "Normal",
  24707. height: math.unit(4 + 11 / 12, "feet")
  24708. },
  24709. {
  24710. name: "Grown",
  24711. height: math.unit(15, "feet"),
  24712. default: true
  24713. },
  24714. {
  24715. name: "Macro",
  24716. height: math.unit(1500, "feet")
  24717. },
  24718. {
  24719. name: "Megamacro",
  24720. height: math.unit(30, "miles")
  24721. },
  24722. {
  24723. name: "Continental",
  24724. height: math.unit(3000, "miles")
  24725. },
  24726. {
  24727. name: "Gravity Mass",
  24728. height: math.unit(300000, "miles")
  24729. },
  24730. {
  24731. name: "Planet Buster",
  24732. height: math.unit(30000000, "miles")
  24733. },
  24734. {
  24735. name: "Big",
  24736. height: math.unit(3000000000, "miles")
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(9, "feet"),
  24745. weight: math.unit(350, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/pepper/front.svg",
  24749. extra: 1448 / 1312,
  24750. bottom: 9.4 / 1457.88
  24751. }
  24752. },
  24753. back: {
  24754. height: math.unit(9, "feet"),
  24755. weight: math.unit(350, "lb"),
  24756. name: "Back",
  24757. image: {
  24758. source: "./media/characters/pepper/back.svg",
  24759. extra: 1423 / 1300,
  24760. bottom: 4.6 / 1429
  24761. }
  24762. },
  24763. maw: {
  24764. height: math.unit(0.932, "feet"),
  24765. name: "Maw",
  24766. image: {
  24767. source: "./media/characters/pepper/maw.svg"
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Normal",
  24774. height: math.unit(9, "feet"),
  24775. default: true
  24776. },
  24777. ]
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24781. {
  24782. front: {
  24783. height: math.unit(6, "feet"),
  24784. weight: math.unit(150, "lb"),
  24785. name: "Front",
  24786. image: {
  24787. source: "./media/characters/maelstrom/front.svg",
  24788. extra: 2100 / 1883,
  24789. bottom: 94 / 2196.7
  24790. }
  24791. },
  24792. },
  24793. [
  24794. {
  24795. name: "Less Kaiju",
  24796. height: math.unit(200, "feet")
  24797. },
  24798. {
  24799. name: "Kaiju",
  24800. height: math.unit(400, "feet"),
  24801. default: true
  24802. },
  24803. {
  24804. name: "Kaiju-er",
  24805. height: math.unit(600, "feet")
  24806. },
  24807. ]
  24808. ))
  24809. characterMakers.push(() => makeCharacter(
  24810. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24811. {
  24812. front: {
  24813. height: math.unit(6 + 5 / 12, "feet"),
  24814. weight: math.unit(180, "lb"),
  24815. name: "Front",
  24816. image: {
  24817. source: "./media/characters/lexir/front.svg",
  24818. extra: 180 / 172,
  24819. bottom: 12 / 192
  24820. }
  24821. },
  24822. back: {
  24823. height: math.unit(6 + 5 / 12, "feet"),
  24824. weight: math.unit(180, "lb"),
  24825. name: "Back",
  24826. image: {
  24827. source: "./media/characters/lexir/back.svg",
  24828. extra: 1273/1201,
  24829. bottom: 39/1312
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Very Smal",
  24836. height: math.unit(1, "nm")
  24837. },
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(6 + 5 / 12, "feet"),
  24841. default: true
  24842. },
  24843. {
  24844. name: "Macro",
  24845. height: math.unit(1, "mile")
  24846. },
  24847. {
  24848. name: "Megamacro",
  24849. height: math.unit(50, "miles")
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24855. {
  24856. front: {
  24857. height: math.unit(1.5, "meters"),
  24858. weight: math.unit(100, "lb"),
  24859. name: "Front",
  24860. image: {
  24861. source: "./media/characters/maksio/front.svg",
  24862. extra: 1549 / 1531,
  24863. bottom: 123.7 / 1674.5429
  24864. }
  24865. },
  24866. back: {
  24867. height: math.unit(1.5, "meters"),
  24868. weight: math.unit(100, "lb"),
  24869. name: "Back",
  24870. image: {
  24871. source: "./media/characters/maksio/back.svg",
  24872. extra: 1541 / 1509,
  24873. bottom: 97 / 1639
  24874. }
  24875. },
  24876. hand: {
  24877. height: math.unit(0.621, "feet"),
  24878. name: "Hand",
  24879. image: {
  24880. source: "./media/characters/maksio/hand.svg"
  24881. }
  24882. },
  24883. foot: {
  24884. height: math.unit(1.611, "feet"),
  24885. name: "Foot",
  24886. image: {
  24887. source: "./media/characters/maksio/foot.svg"
  24888. }
  24889. },
  24890. },
  24891. [
  24892. {
  24893. name: "Shrunken",
  24894. height: math.unit(10, "cm")
  24895. },
  24896. {
  24897. name: "Normal",
  24898. height: math.unit(150, "cm"),
  24899. default: true
  24900. },
  24901. ]
  24902. ))
  24903. characterMakers.push(() => makeCharacter(
  24904. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24905. {
  24906. front: {
  24907. height: math.unit(100, "feet"),
  24908. name: "Front",
  24909. image: {
  24910. source: "./media/characters/erza-bear/front.svg",
  24911. extra: 2449 / 2390,
  24912. bottom: 46 / 2494
  24913. }
  24914. },
  24915. back: {
  24916. height: math.unit(100, "feet"),
  24917. name: "Back",
  24918. image: {
  24919. source: "./media/characters/erza-bear/back.svg",
  24920. extra: 2489 / 2430,
  24921. bottom: 85.4 / 2480
  24922. }
  24923. },
  24924. tail: {
  24925. height: math.unit(42, "feet"),
  24926. name: "Tail",
  24927. image: {
  24928. source: "./media/characters/erza-bear/tail.svg"
  24929. }
  24930. },
  24931. tongue: {
  24932. height: math.unit(8, "feet"),
  24933. name: "Tongue",
  24934. image: {
  24935. source: "./media/characters/erza-bear/tongue.svg"
  24936. }
  24937. },
  24938. dick: {
  24939. height: math.unit(10.5, "feet"),
  24940. name: "Dick",
  24941. image: {
  24942. source: "./media/characters/erza-bear/dick.svg"
  24943. }
  24944. },
  24945. dickVertical: {
  24946. height: math.unit(16.9, "feet"),
  24947. name: "Dick (Vertical)",
  24948. image: {
  24949. source: "./media/characters/erza-bear/dick-vertical.svg"
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Macro",
  24956. height: math.unit(100, "feet"),
  24957. default: true
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24963. {
  24964. front: {
  24965. height: math.unit(172, "cm"),
  24966. weight: math.unit(73, "kg"),
  24967. name: "Front",
  24968. image: {
  24969. source: "./media/characters/violet-flor/front.svg",
  24970. extra: 1530 / 1442,
  24971. bottom: 61.9 / 1588.8
  24972. }
  24973. },
  24974. back: {
  24975. height: math.unit(180, "cm"),
  24976. weight: math.unit(73, "kg"),
  24977. name: "Back",
  24978. image: {
  24979. source: "./media/characters/violet-flor/back.svg",
  24980. extra: 1692 / 1630,
  24981. bottom: 20 / 1712
  24982. }
  24983. },
  24984. },
  24985. [
  24986. {
  24987. name: "Normal",
  24988. height: math.unit(172, "cm"),
  24989. default: true
  24990. },
  24991. ]
  24992. ))
  24993. characterMakers.push(() => makeCharacter(
  24994. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24995. {
  24996. front: {
  24997. height: math.unit(6, "feet"),
  24998. weight: math.unit(220, "lb"),
  24999. name: "Front",
  25000. image: {
  25001. source: "./media/characters/lynn-rhea/front.svg",
  25002. extra: 310 / 273
  25003. }
  25004. },
  25005. back: {
  25006. height: math.unit(6, "feet"),
  25007. weight: math.unit(220, "lb"),
  25008. name: "Back",
  25009. image: {
  25010. source: "./media/characters/lynn-rhea/back.svg",
  25011. extra: 310 / 273
  25012. }
  25013. },
  25014. dicks: {
  25015. height: math.unit(0.9, "feet"),
  25016. name: "Dicks",
  25017. image: {
  25018. source: "./media/characters/lynn-rhea/dicks.svg"
  25019. }
  25020. },
  25021. slit: {
  25022. height: math.unit(0.4, "feet"),
  25023. name: "Slit",
  25024. image: {
  25025. source: "./media/characters/lynn-rhea/slit.svg"
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Micro",
  25032. height: math.unit(1, "inch")
  25033. },
  25034. {
  25035. name: "Macro",
  25036. height: math.unit(60, "feet"),
  25037. default: true
  25038. },
  25039. {
  25040. name: "Megamacro",
  25041. height: math.unit(2, "miles")
  25042. },
  25043. {
  25044. name: "Gigamacro",
  25045. height: math.unit(3, "earths")
  25046. },
  25047. {
  25048. name: "Galactic",
  25049. height: math.unit(0.8, "galaxies")
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25055. {
  25056. front: {
  25057. height: math.unit(1600, "feet"),
  25058. weight: math.unit(85758785169, "kg"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/valathos/front.svg",
  25062. extra: 1451 / 1339
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Macro",
  25069. height: math.unit(1600, "feet"),
  25070. default: true
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25076. {
  25077. front: {
  25078. height: math.unit(7 + 5 / 12, "feet"),
  25079. weight: math.unit(300, "lb"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/azula/front.svg",
  25083. extra: 3208 / 2880,
  25084. bottom: 80.2 / 3277
  25085. }
  25086. },
  25087. back: {
  25088. height: math.unit(7 + 5 / 12, "feet"),
  25089. weight: math.unit(300, "lb"),
  25090. name: "Back",
  25091. image: {
  25092. source: "./media/characters/azula/back.svg",
  25093. extra: 3169 / 2822,
  25094. bottom: 150.6 / 3321
  25095. }
  25096. },
  25097. },
  25098. [
  25099. {
  25100. name: "Normal",
  25101. height: math.unit(7 + 5 / 12, "feet"),
  25102. default: true
  25103. },
  25104. {
  25105. name: "Big",
  25106. height: math.unit(20, "feet")
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25112. {
  25113. front: {
  25114. height: math.unit(5 + 1 / 12, "feet"),
  25115. weight: math.unit(110, "lb"),
  25116. name: "Front",
  25117. image: {
  25118. source: "./media/characters/rupert/front.svg",
  25119. extra: 1549 / 1495,
  25120. bottom: 54.2 / 1604.4
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(5 + 1 / 12, "feet"),
  25128. default: true
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25134. {
  25135. front: {
  25136. height: math.unit(8 + 4 / 12, "feet"),
  25137. weight: math.unit(350, "lb"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/sheera-castellar/front.svg",
  25141. extra: 1957 / 1894,
  25142. bottom: 26.97 / 1975.017
  25143. }
  25144. },
  25145. side: {
  25146. height: math.unit(8 + 4 / 12, "feet"),
  25147. weight: math.unit(350, "lb"),
  25148. name: "Side",
  25149. image: {
  25150. source: "./media/characters/sheera-castellar/side.svg",
  25151. extra: 1957 / 1894
  25152. }
  25153. },
  25154. back: {
  25155. height: math.unit(8 + 4 / 12, "feet"),
  25156. weight: math.unit(350, "lb"),
  25157. name: "Back",
  25158. image: {
  25159. source: "./media/characters/sheera-castellar/back.svg",
  25160. extra: 1957 / 1894
  25161. }
  25162. },
  25163. angled: {
  25164. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25165. weight: math.unit(350, "lb"),
  25166. name: "Angled",
  25167. image: {
  25168. source: "./media/characters/sheera-castellar/angled.svg",
  25169. extra: 1807 / 1707,
  25170. bottom: 68 / 1875
  25171. }
  25172. },
  25173. genitals: {
  25174. height: math.unit(2.2, "feet"),
  25175. name: "Genitals",
  25176. image: {
  25177. source: "./media/characters/sheera-castellar/genitals.svg"
  25178. }
  25179. },
  25180. taur: {
  25181. height: math.unit(10 + 6/12, "feet"),
  25182. name: "Taur",
  25183. image: {
  25184. source: "./media/characters/sheera-castellar/taur.svg",
  25185. extra: 2017/1909,
  25186. bottom: 185/2202
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(8 + 4 / 12, "feet")
  25194. },
  25195. {
  25196. name: "Macro",
  25197. height: math.unit(150, "feet"),
  25198. default: true
  25199. },
  25200. {
  25201. name: "Macro+",
  25202. height: math.unit(800, "feet")
  25203. },
  25204. ]
  25205. ))
  25206. characterMakers.push(() => makeCharacter(
  25207. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25208. {
  25209. front: {
  25210. height: math.unit(6, "feet"),
  25211. weight: math.unit(150, "lb"),
  25212. name: "Front",
  25213. image: {
  25214. source: "./media/characters/jaipur/front.svg",
  25215. extra: 3860 / 3731,
  25216. bottom: 287 / 4140
  25217. }
  25218. },
  25219. back: {
  25220. height: math.unit(6, "feet"),
  25221. weight: math.unit(150, "lb"),
  25222. name: "Back",
  25223. image: {
  25224. source: "./media/characters/jaipur/back.svg",
  25225. extra: 1637/1561,
  25226. bottom: 154/1791
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Normal",
  25233. height: math.unit(1.85, "meters"),
  25234. default: true
  25235. },
  25236. {
  25237. name: "Macro",
  25238. height: math.unit(150, "meters")
  25239. },
  25240. {
  25241. name: "Macro+",
  25242. height: math.unit(0.5, "miles")
  25243. },
  25244. {
  25245. name: "Macro++",
  25246. height: math.unit(2.5, "miles")
  25247. },
  25248. {
  25249. name: "Macro+++",
  25250. height: math.unit(12, "miles")
  25251. },
  25252. {
  25253. name: "Macro++++",
  25254. height: math.unit(120, "miles")
  25255. },
  25256. {
  25257. name: "Macro+++++",
  25258. height: math.unit(1200, "miles")
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(6, "feet"),
  25267. weight: math.unit(150, "lb"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/sheila-wolf/front.svg",
  25271. extra: 1931 / 1808,
  25272. bottom: 29.5 / 1960
  25273. }
  25274. },
  25275. dick: {
  25276. height: math.unit(1.464, "feet"),
  25277. name: "Dick",
  25278. image: {
  25279. source: "./media/characters/sheila-wolf/dick.svg"
  25280. }
  25281. },
  25282. muzzle: {
  25283. height: math.unit(0.513, "feet"),
  25284. name: "Muzzle",
  25285. image: {
  25286. source: "./media/characters/sheila-wolf/muzzle.svg"
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Macro",
  25293. height: math.unit(70, "feet"),
  25294. default: true
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(32, "meters"),
  25303. weight: math.unit(300000, "kg"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/almor/front.svg",
  25307. extra: 1408 / 1322,
  25308. bottom: 94.6 / 1506.5
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Macro",
  25315. height: math.unit(32, "meters"),
  25316. default: true
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(7, "feet"),
  25325. weight: math.unit(200, "lb"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/silver/front.svg",
  25329. extra: 472.1 / 450.5,
  25330. bottom: 26.5 / 499.424
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(7, "feet"),
  25338. default: true
  25339. },
  25340. {
  25341. name: "Macro",
  25342. height: math.unit(800, "feet")
  25343. },
  25344. {
  25345. name: "Megamacro",
  25346. height: math.unit(250, "miles")
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25352. {
  25353. front: {
  25354. height: math.unit(6, "feet"),
  25355. weight: math.unit(150, "lb"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/pliskin/front.svg",
  25359. extra: 1469 / 1359,
  25360. bottom: 70 / 1540
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Micro",
  25367. height: math.unit(3, "inches")
  25368. },
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(5 + 11 / 12, "feet"),
  25372. default: true
  25373. },
  25374. {
  25375. name: "Macro",
  25376. height: math.unit(120, "feet")
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(6, "feet"),
  25385. weight: math.unit(150, "lb"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/sammy/front.svg",
  25389. extra: 1193 / 1089,
  25390. bottom: 30.5 / 1226
  25391. }
  25392. },
  25393. },
  25394. [
  25395. {
  25396. name: "Macro",
  25397. height: math.unit(1700, "feet"),
  25398. default: true
  25399. },
  25400. {
  25401. name: "Examacro",
  25402. height: math.unit(2.5e9, "lightyears")
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(21, "meters"),
  25411. weight: math.unit(12, "tonnes"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/kuru/front.svg",
  25415. extra: 4301 / 3785,
  25416. bottom: 371.3 / 4691
  25417. }
  25418. },
  25419. },
  25420. [
  25421. {
  25422. name: "Macro",
  25423. height: math.unit(21, "meters"),
  25424. default: true
  25425. },
  25426. ]
  25427. ))
  25428. characterMakers.push(() => makeCharacter(
  25429. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25430. {
  25431. front: {
  25432. height: math.unit(23, "meters"),
  25433. weight: math.unit(12.2, "tonnes"),
  25434. name: "Front",
  25435. image: {
  25436. source: "./media/characters/rakka/front.svg",
  25437. extra: 4670 / 4169,
  25438. bottom: 301 / 4968.7
  25439. }
  25440. },
  25441. },
  25442. [
  25443. {
  25444. name: "Macro",
  25445. height: math.unit(23, "meters"),
  25446. default: true
  25447. },
  25448. ]
  25449. ))
  25450. characterMakers.push(() => makeCharacter(
  25451. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25452. {
  25453. front: {
  25454. height: math.unit(6, "feet"),
  25455. weight: math.unit(150, "lb"),
  25456. name: "Front",
  25457. image: {
  25458. source: "./media/characters/rhys-feline/front.svg",
  25459. extra: 2488 / 2308,
  25460. bottom: 35.67 / 2519.19
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Really Small",
  25467. height: math.unit(1, "nm")
  25468. },
  25469. {
  25470. name: "Micro",
  25471. height: math.unit(4, "inches")
  25472. },
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(4 + 10 / 12, "feet"),
  25476. default: true
  25477. },
  25478. {
  25479. name: "Macro",
  25480. height: math.unit(100, "feet")
  25481. },
  25482. {
  25483. name: "Megamacto",
  25484. height: math.unit(50, "miles")
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25490. {
  25491. side: {
  25492. height: math.unit(30, "feet"),
  25493. weight: math.unit(35000, "kg"),
  25494. name: "Side",
  25495. image: {
  25496. source: "./media/characters/alydar/side.svg",
  25497. extra: 234 / 222,
  25498. bottom: 6.5 / 241
  25499. }
  25500. },
  25501. front: {
  25502. height: math.unit(30, "feet"),
  25503. weight: math.unit(35000, "kg"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/alydar/front.svg",
  25507. extra: 223.37 / 210.2,
  25508. bottom: 22.3 / 246.76
  25509. }
  25510. },
  25511. top: {
  25512. height: math.unit(64.54, "feet"),
  25513. weight: math.unit(35000, "kg"),
  25514. name: "Top",
  25515. image: {
  25516. source: "./media/characters/alydar/top.svg"
  25517. }
  25518. },
  25519. anthro: {
  25520. height: math.unit(30, "feet"),
  25521. weight: math.unit(9000, "kg"),
  25522. name: "Anthro",
  25523. image: {
  25524. source: "./media/characters/alydar/anthro.svg",
  25525. extra: 432 / 421,
  25526. bottom: 7.18 / 440
  25527. }
  25528. },
  25529. maw: {
  25530. height: math.unit(11.693, "feet"),
  25531. name: "Maw",
  25532. image: {
  25533. source: "./media/characters/alydar/maw.svg"
  25534. }
  25535. },
  25536. head: {
  25537. height: math.unit(11.693, "feet"),
  25538. name: "Head",
  25539. image: {
  25540. source: "./media/characters/alydar/head.svg"
  25541. }
  25542. },
  25543. headAlt: {
  25544. height: math.unit(12.861, "feet"),
  25545. name: "Head (Alt)",
  25546. image: {
  25547. source: "./media/characters/alydar/head-alt.svg"
  25548. }
  25549. },
  25550. wing: {
  25551. height: math.unit(20.712, "feet"),
  25552. name: "Wing",
  25553. image: {
  25554. source: "./media/characters/alydar/wing.svg"
  25555. }
  25556. },
  25557. wingFeather: {
  25558. height: math.unit(9.662, "feet"),
  25559. name: "Wing Feather",
  25560. image: {
  25561. source: "./media/characters/alydar/wing-feather.svg"
  25562. }
  25563. },
  25564. countourFeather: {
  25565. height: math.unit(4.154, "feet"),
  25566. name: "Contour Feather",
  25567. image: {
  25568. source: "./media/characters/alydar/contour-feather.svg"
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Diplomatic",
  25575. height: math.unit(13, "feet"),
  25576. default: true
  25577. },
  25578. {
  25579. name: "Small",
  25580. height: math.unit(30, "feet")
  25581. },
  25582. {
  25583. name: "Normal",
  25584. height: math.unit(95, "feet"),
  25585. default: true
  25586. },
  25587. {
  25588. name: "Large",
  25589. height: math.unit(285, "feet")
  25590. },
  25591. {
  25592. name: "Incomprehensible",
  25593. height: math.unit(450, "megameters")
  25594. },
  25595. ]
  25596. ))
  25597. characterMakers.push(() => makeCharacter(
  25598. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25599. {
  25600. side: {
  25601. height: math.unit(11, "feet"),
  25602. weight: math.unit(1750, "kg"),
  25603. name: "Side",
  25604. image: {
  25605. source: "./media/characters/selicia/side.svg",
  25606. extra: 440 / 396,
  25607. bottom: 24.8 / 465.979
  25608. }
  25609. },
  25610. maw: {
  25611. height: math.unit(4.665, "feet"),
  25612. name: "Maw",
  25613. image: {
  25614. source: "./media/characters/selicia/maw.svg"
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(11, "feet"),
  25622. default: true
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25628. {
  25629. side: {
  25630. height: math.unit(2 + 6 / 12, "feet"),
  25631. weight: math.unit(30, "lb"),
  25632. name: "Side",
  25633. image: {
  25634. source: "./media/characters/layla/side.svg",
  25635. extra: 244 / 188,
  25636. bottom: 18.2 / 262.1
  25637. }
  25638. },
  25639. back: {
  25640. height: math.unit(2 + 6 / 12, "feet"),
  25641. weight: math.unit(30, "lb"),
  25642. name: "Back",
  25643. image: {
  25644. source: "./media/characters/layla/back.svg",
  25645. extra: 308 / 241.5,
  25646. bottom: 8.9 / 316.8
  25647. }
  25648. },
  25649. cumming: {
  25650. height: math.unit(2 + 6 / 12, "feet"),
  25651. weight: math.unit(30, "lb"),
  25652. name: "Cumming",
  25653. image: {
  25654. source: "./media/characters/layla/cumming.svg",
  25655. extra: 342 / 279,
  25656. bottom: 595 / 938
  25657. }
  25658. },
  25659. dickFlaccid: {
  25660. height: math.unit(2.595, "feet"),
  25661. name: "Flaccid Genitals",
  25662. image: {
  25663. source: "./media/characters/layla/dick-flaccid.svg"
  25664. }
  25665. },
  25666. dickErect: {
  25667. height: math.unit(2.359, "feet"),
  25668. name: "Erect Genitals",
  25669. image: {
  25670. source: "./media/characters/layla/dick-erect.svg"
  25671. }
  25672. },
  25673. dragon: {
  25674. height: math.unit(40, "feet"),
  25675. name: "Dragon",
  25676. image: {
  25677. source: "./media/characters/layla/dragon.svg",
  25678. extra: 610/535,
  25679. bottom: 367/977
  25680. }
  25681. },
  25682. taur: {
  25683. height: math.unit(30, "feet"),
  25684. name: "Taur",
  25685. image: {
  25686. source: "./media/characters/layla/taur.svg",
  25687. extra: 1268/1199,
  25688. bottom: 112/1380
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Micro",
  25695. height: math.unit(1, "inch")
  25696. },
  25697. {
  25698. name: "Small",
  25699. height: math.unit(1, "foot")
  25700. },
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(2 + 6 / 12, "feet"),
  25704. default: true
  25705. },
  25706. {
  25707. name: "Macro",
  25708. height: math.unit(200, "feet")
  25709. },
  25710. {
  25711. name: "Megamacro",
  25712. height: math.unit(1000, "miles")
  25713. },
  25714. {
  25715. name: "Planetary",
  25716. height: math.unit(8000, "miles")
  25717. },
  25718. {
  25719. name: "True Layla",
  25720. height: math.unit(200000 * 7, "multiverses")
  25721. },
  25722. ]
  25723. ))
  25724. characterMakers.push(() => makeCharacter(
  25725. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25726. {
  25727. back: {
  25728. height: math.unit(10.5, "feet"),
  25729. weight: math.unit(800, "lb"),
  25730. name: "Back",
  25731. image: {
  25732. source: "./media/characters/knox/back.svg",
  25733. extra: 1486 / 1089,
  25734. bottom: 107 / 1601.4
  25735. }
  25736. },
  25737. side: {
  25738. height: math.unit(10.5, "feet"),
  25739. weight: math.unit(800, "lb"),
  25740. name: "Side",
  25741. image: {
  25742. source: "./media/characters/knox/side.svg",
  25743. extra: 244 / 218,
  25744. bottom: 14 / 260
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Compact",
  25751. height: math.unit(10.5, "feet"),
  25752. default: true
  25753. },
  25754. {
  25755. name: "Dynamax",
  25756. height: math.unit(210, "feet")
  25757. },
  25758. {
  25759. name: "Full Macro",
  25760. height: math.unit(850, "feet")
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25766. {
  25767. front: {
  25768. height: math.unit(28, "feet"),
  25769. weight: math.unit(10500, "lb"),
  25770. name: "Front",
  25771. image: {
  25772. source: "./media/characters/kayda/front.svg",
  25773. extra: 1536 / 1428,
  25774. bottom: 68.7 / 1603
  25775. }
  25776. },
  25777. back: {
  25778. height: math.unit(28, "feet"),
  25779. weight: math.unit(10500, "lb"),
  25780. name: "Back",
  25781. image: {
  25782. source: "./media/characters/kayda/back.svg",
  25783. extra: 1557 / 1464,
  25784. bottom: 39.5 / 1597.49
  25785. }
  25786. },
  25787. dick: {
  25788. height: math.unit(3.858, "feet"),
  25789. name: "Dick",
  25790. image: {
  25791. source: "./media/characters/kayda/dick.svg"
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Macro",
  25798. height: math.unit(28, "feet"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25805. {
  25806. front: {
  25807. height: math.unit(10 + 11 / 12, "feet"),
  25808. weight: math.unit(1400, "lb"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/brian/front.svg",
  25812. extra: 737 / 692,
  25813. bottom: 55.4 / 785
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Normal",
  25820. height: math.unit(10 + 11 / 12, "feet"),
  25821. default: true
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25827. {
  25828. front: {
  25829. height: math.unit(5 + 8 / 12, "feet"),
  25830. weight: math.unit(140, "lb"),
  25831. name: "Front",
  25832. image: {
  25833. source: "./media/characters/khemri/front.svg",
  25834. extra: 4780 / 4059,
  25835. bottom: 80.1 / 4859.25
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Micro",
  25842. height: math.unit(6, "inches")
  25843. },
  25844. {
  25845. name: "Normal",
  25846. height: math.unit(5 + 8 / 12, "feet"),
  25847. default: true
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25853. {
  25854. front: {
  25855. height: math.unit(13, "feet"),
  25856. weight: math.unit(1700, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/felix-braveheart/front.svg",
  25860. extra: 1222 / 1157,
  25861. bottom: 53.2 / 1280
  25862. }
  25863. },
  25864. back: {
  25865. height: math.unit(13, "feet"),
  25866. weight: math.unit(1700, "lb"),
  25867. name: "Back",
  25868. image: {
  25869. source: "./media/characters/felix-braveheart/back.svg",
  25870. extra: 1277 / 1203,
  25871. bottom: 50.2 / 1327
  25872. }
  25873. },
  25874. feral: {
  25875. height: math.unit(6, "feet"),
  25876. weight: math.unit(400, "lb"),
  25877. name: "Feral",
  25878. image: {
  25879. source: "./media/characters/felix-braveheart/feral.svg",
  25880. extra: 682 / 625,
  25881. bottom: 6.9 / 688
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(13, "feet"),
  25889. default: true
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25895. {
  25896. side: {
  25897. height: math.unit(5 + 11 / 12, "feet"),
  25898. weight: math.unit(1400, "lb"),
  25899. name: "Side",
  25900. image: {
  25901. source: "./media/characters/shadow-blade/side.svg",
  25902. extra: 1726 / 1267,
  25903. bottom: 58.4 / 1785
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(5 + 11 / 12, "feet"),
  25911. default: true
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(1 + 6 / 12, "feet"),
  25920. weight: math.unit(25, "lb"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/karla-halldor/front.svg",
  25924. extra: 1459 / 1383,
  25925. bottom: 12 / 1472
  25926. }
  25927. },
  25928. },
  25929. [
  25930. {
  25931. name: "Normal",
  25932. height: math.unit(1 + 6 / 12, "feet"),
  25933. default: true
  25934. },
  25935. ]
  25936. ))
  25937. characterMakers.push(() => makeCharacter(
  25938. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25939. {
  25940. front: {
  25941. height: math.unit(6 + 2 / 12, "feet"),
  25942. weight: math.unit(160, "lb"),
  25943. name: "Front",
  25944. image: {
  25945. source: "./media/characters/ariam/front.svg",
  25946. extra: 1073/976,
  25947. bottom: 52/1125
  25948. }
  25949. },
  25950. back: {
  25951. height: math.unit(6 + 2/12, "feet"),
  25952. weight: math.unit(160, "lb"),
  25953. name: "Back",
  25954. image: {
  25955. source: "./media/characters/ariam/back.svg",
  25956. extra: 1103/1023,
  25957. bottom: 9/1112
  25958. }
  25959. },
  25960. dressed: {
  25961. height: math.unit(6 + 2/12, "feet"),
  25962. weight: math.unit(160, "lb"),
  25963. name: "Dressed",
  25964. image: {
  25965. source: "./media/characters/ariam/dressed.svg",
  25966. extra: 1099/1009,
  25967. bottom: 25/1124
  25968. }
  25969. },
  25970. squatting: {
  25971. height: math.unit(4.1, "feet"),
  25972. weight: math.unit(160, "lb"),
  25973. name: "Squatting",
  25974. image: {
  25975. source: "./media/characters/ariam/squatting.svg",
  25976. extra: 2617 / 2112,
  25977. bottom: 61.2 / 2681,
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Normal",
  25984. height: math.unit(6 + 2 / 12, "feet"),
  25985. default: true
  25986. },
  25987. {
  25988. name: "Normal+",
  25989. height: math.unit(4, "meters")
  25990. },
  25991. {
  25992. name: "Macro",
  25993. height: math.unit(50, "meters")
  25994. },
  25995. {
  25996. name: "Macro+",
  25997. height: math.unit(100, "meters")
  25998. },
  25999. {
  26000. name: "Megamacro",
  26001. height: math.unit(20, "km")
  26002. },
  26003. {
  26004. name: "Caretaker",
  26005. height: math.unit(444, "megameters")
  26006. },
  26007. ]
  26008. ))
  26009. characterMakers.push(() => makeCharacter(
  26010. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26011. {
  26012. front: {
  26013. height: math.unit(1.67, "meters"),
  26014. weight: math.unit(140, "lb"),
  26015. name: "Front",
  26016. image: {
  26017. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26018. extra: 438 / 410,
  26019. bottom: 0.75 / 439
  26020. }
  26021. },
  26022. },
  26023. [
  26024. {
  26025. name: "Shrunken",
  26026. height: math.unit(7.6, "cm")
  26027. },
  26028. {
  26029. name: "Human Scale",
  26030. height: math.unit(1.67, "meters")
  26031. },
  26032. {
  26033. name: "Wolxi Scale",
  26034. height: math.unit(36.7, "meters"),
  26035. default: true
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(1.73, "meters"),
  26044. weight: math.unit(240, "lb"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/izue-two-mothers/front.svg",
  26048. extra: 469 / 437,
  26049. bottom: 1.24 / 470.6
  26050. }
  26051. },
  26052. },
  26053. [
  26054. {
  26055. name: "Shrunken",
  26056. height: math.unit(7.86, "cm")
  26057. },
  26058. {
  26059. name: "Human Scale",
  26060. height: math.unit(1.73, "meters")
  26061. },
  26062. {
  26063. name: "Wolxi Scale",
  26064. height: math.unit(38, "meters"),
  26065. default: true
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26071. {
  26072. front: {
  26073. height: math.unit(1.55, "meters"),
  26074. weight: math.unit(120, "lb"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/teeku-love-shack/front.svg",
  26078. extra: 387 / 362,
  26079. bottom: 1.51 / 388
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Shrunken",
  26086. height: math.unit(7, "cm")
  26087. },
  26088. {
  26089. name: "Human Scale",
  26090. height: math.unit(1.55, "meters")
  26091. },
  26092. {
  26093. name: "Wolxi Scale",
  26094. height: math.unit(34.1, "meters"),
  26095. default: true
  26096. },
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26101. {
  26102. front: {
  26103. height: math.unit(1.83, "meters"),
  26104. weight: math.unit(135, "lb"),
  26105. name: "Front",
  26106. image: {
  26107. source: "./media/characters/dejma-the-red/front.svg",
  26108. extra: 480 / 458,
  26109. bottom: 1.8 / 482
  26110. }
  26111. },
  26112. },
  26113. [
  26114. {
  26115. name: "Shrunken",
  26116. height: math.unit(8.3, "cm")
  26117. },
  26118. {
  26119. name: "Human Scale",
  26120. height: math.unit(1.83, "meters")
  26121. },
  26122. {
  26123. name: "Wolxi Scale",
  26124. height: math.unit(40, "meters"),
  26125. default: true
  26126. },
  26127. ]
  26128. ))
  26129. characterMakers.push(() => makeCharacter(
  26130. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26131. {
  26132. front: {
  26133. height: math.unit(1.78, "meters"),
  26134. weight: math.unit(65, "kg"),
  26135. name: "Front",
  26136. image: {
  26137. source: "./media/characters/aki/front.svg",
  26138. extra: 452 / 415
  26139. }
  26140. },
  26141. frontNsfw: {
  26142. height: math.unit(1.78, "meters"),
  26143. weight: math.unit(65, "kg"),
  26144. name: "Front (NSFW)",
  26145. image: {
  26146. source: "./media/characters/aki/front-nsfw.svg",
  26147. extra: 452 / 415
  26148. }
  26149. },
  26150. back: {
  26151. height: math.unit(1.78, "meters"),
  26152. weight: math.unit(65, "kg"),
  26153. name: "Back",
  26154. image: {
  26155. source: "./media/characters/aki/back.svg",
  26156. extra: 452 / 415
  26157. }
  26158. },
  26159. rump: {
  26160. height: math.unit(2.05, "feet"),
  26161. name: "Rump",
  26162. image: {
  26163. source: "./media/characters/aki/rump.svg"
  26164. }
  26165. },
  26166. dick: {
  26167. height: math.unit(0.95, "feet"),
  26168. name: "Dick",
  26169. image: {
  26170. source: "./media/characters/aki/dick.svg"
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Micro",
  26177. height: math.unit(15, "cm")
  26178. },
  26179. {
  26180. name: "Normal",
  26181. height: math.unit(178, "cm"),
  26182. default: true
  26183. },
  26184. {
  26185. name: "Macro",
  26186. height: math.unit(214, "m")
  26187. },
  26188. {
  26189. name: "Macro+",
  26190. height: math.unit(534, "m")
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26196. {
  26197. front: {
  26198. height: math.unit(5 + 5 / 12, "feet"),
  26199. weight: math.unit(120, "lb"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/ari/front.svg",
  26203. extra: 1550/1471,
  26204. bottom: 39/1589
  26205. }
  26206. },
  26207. },
  26208. [
  26209. {
  26210. name: "Normal",
  26211. height: math.unit(5 + 5 / 12, "feet")
  26212. },
  26213. {
  26214. name: "Macro",
  26215. height: math.unit(100, "feet"),
  26216. default: true
  26217. },
  26218. {
  26219. name: "Megamacro",
  26220. height: math.unit(100, "miles")
  26221. },
  26222. {
  26223. name: "Gigamacro",
  26224. height: math.unit(80000, "miles")
  26225. },
  26226. ]
  26227. ))
  26228. characterMakers.push(() => makeCharacter(
  26229. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26230. {
  26231. side: {
  26232. height: math.unit(9, "feet"),
  26233. weight: math.unit(400, "kg"),
  26234. name: "Side",
  26235. image: {
  26236. source: "./media/characters/bolt/side.svg",
  26237. extra: 1126 / 896,
  26238. bottom: 60 / 1187.3,
  26239. }
  26240. },
  26241. },
  26242. [
  26243. {
  26244. name: "Micro",
  26245. height: math.unit(5, "inches")
  26246. },
  26247. {
  26248. name: "Normal",
  26249. height: math.unit(9, "feet"),
  26250. default: true
  26251. },
  26252. {
  26253. name: "Macro",
  26254. height: math.unit(700, "feet")
  26255. },
  26256. {
  26257. name: "Max Size",
  26258. height: math.unit(1.52e22, "yottameters")
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(4.3, "meters"),
  26267. weight: math.unit(3, "tons"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/draekon-sylviar/front.svg",
  26271. extra: 2072/1512,
  26272. bottom: 74/2146
  26273. }
  26274. },
  26275. back: {
  26276. height: math.unit(4.3, "meters"),
  26277. weight: math.unit(3, "tons"),
  26278. name: "Back",
  26279. image: {
  26280. source: "./media/characters/draekon-sylviar/back.svg",
  26281. extra: 1639/1483,
  26282. bottom: 41/1680
  26283. }
  26284. },
  26285. feral: {
  26286. height: math.unit(1.15, "meters"),
  26287. weight: math.unit(3, "tons"),
  26288. name: "Feral",
  26289. image: {
  26290. source: "./media/characters/draekon-sylviar/feral.svg",
  26291. extra: 1033/395,
  26292. bottom: 130/1163
  26293. }
  26294. },
  26295. maw: {
  26296. height: math.unit(1.3, "meters"),
  26297. name: "Maw",
  26298. image: {
  26299. source: "./media/characters/draekon-sylviar/maw.svg"
  26300. }
  26301. },
  26302. mawSeparated: {
  26303. height: math.unit(1.53, "meters"),
  26304. name: "Separated Maw",
  26305. image: {
  26306. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26307. }
  26308. },
  26309. tail: {
  26310. height: math.unit(1.15, "meters"),
  26311. name: "Tail",
  26312. image: {
  26313. source: "./media/characters/draekon-sylviar/tail.svg"
  26314. }
  26315. },
  26316. tailDick: {
  26317. height: math.unit(1.15, "meters"),
  26318. name: "Tail (Dick)",
  26319. image: {
  26320. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26321. }
  26322. },
  26323. tailDickSeparated: {
  26324. height: math.unit(1.19, "meters"),
  26325. name: "Tail (Separated Dick)",
  26326. image: {
  26327. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26328. }
  26329. },
  26330. slit: {
  26331. height: math.unit(1, "meters"),
  26332. name: "Slit",
  26333. image: {
  26334. source: "./media/characters/draekon-sylviar/slit.svg"
  26335. }
  26336. },
  26337. dick: {
  26338. height: math.unit(1.15, "meters"),
  26339. name: "Dick",
  26340. image: {
  26341. source: "./media/characters/draekon-sylviar/dick.svg"
  26342. }
  26343. },
  26344. dickSeparated: {
  26345. height: math.unit(1.1, "meters"),
  26346. name: "Separated Dick",
  26347. image: {
  26348. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26349. }
  26350. },
  26351. sheath: {
  26352. height: math.unit(1.15, "meters"),
  26353. name: "Sheath",
  26354. image: {
  26355. source: "./media/characters/draekon-sylviar/sheath.svg"
  26356. }
  26357. },
  26358. },
  26359. [
  26360. {
  26361. name: "Small",
  26362. height: math.unit(4.53 / 2, "meters"),
  26363. default: true
  26364. },
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(4.53, "meters"),
  26368. default: true
  26369. },
  26370. {
  26371. name: "Large",
  26372. height: math.unit(4.53 * 2, "meters"),
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(6 + 2 / 12, "feet"),
  26381. weight: math.unit(180, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/brawler/front.svg",
  26385. extra: 3301 / 3027,
  26386. bottom: 138 / 3439
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(6 + 2 / 12, "feet"),
  26394. default: true
  26395. },
  26396. ]
  26397. ))
  26398. characterMakers.push(() => makeCharacter(
  26399. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26400. {
  26401. front: {
  26402. height: math.unit(11, "feet"),
  26403. weight: math.unit(1000, "lb"),
  26404. name: "Front",
  26405. image: {
  26406. source: "./media/characters/alex/front.svg",
  26407. bottom: 44.5 / 620
  26408. }
  26409. },
  26410. },
  26411. [
  26412. {
  26413. name: "Micro",
  26414. height: math.unit(5, "inches")
  26415. },
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(11, "feet"),
  26419. default: true
  26420. },
  26421. {
  26422. name: "Macro",
  26423. height: math.unit(9.5e9, "feet")
  26424. },
  26425. {
  26426. name: "Max Size",
  26427. height: math.unit(1.4e283, "yottameters")
  26428. },
  26429. ]
  26430. ))
  26431. characterMakers.push(() => makeCharacter(
  26432. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26433. {
  26434. female: {
  26435. height: math.unit(29.9, "m"),
  26436. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26437. name: "Female",
  26438. image: {
  26439. source: "./media/characters/zenari/female.svg",
  26440. extra: 3281.6 / 3217,
  26441. bottom: 72.2 / 3353
  26442. }
  26443. },
  26444. male: {
  26445. height: math.unit(27.7, "m"),
  26446. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26447. name: "Male",
  26448. image: {
  26449. source: "./media/characters/zenari/male.svg",
  26450. extra: 3008 / 2991,
  26451. bottom: 54.6 / 3069
  26452. }
  26453. },
  26454. },
  26455. [
  26456. {
  26457. name: "Macro",
  26458. height: math.unit(29.7, "meters"),
  26459. default: true
  26460. },
  26461. ]
  26462. ))
  26463. characterMakers.push(() => makeCharacter(
  26464. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26465. {
  26466. female: {
  26467. height: math.unit(23.8, "m"),
  26468. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26469. name: "Female",
  26470. image: {
  26471. source: "./media/characters/mactarian/female.svg",
  26472. extra: 2662 / 2569,
  26473. bottom: 73 / 2736
  26474. }
  26475. },
  26476. male: {
  26477. height: math.unit(23.8, "m"),
  26478. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26479. name: "Male",
  26480. image: {
  26481. source: "./media/characters/mactarian/male.svg",
  26482. extra: 2673 / 2600,
  26483. bottom: 76 / 2750
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Macro",
  26490. height: math.unit(23.8, "meters"),
  26491. default: true
  26492. },
  26493. ]
  26494. ))
  26495. characterMakers.push(() => makeCharacter(
  26496. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26497. {
  26498. female: {
  26499. height: math.unit(19.3, "m"),
  26500. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26501. name: "Female",
  26502. image: {
  26503. source: "./media/characters/umok/female.svg",
  26504. extra: 2186 / 2078,
  26505. bottom: 87 / 2277
  26506. }
  26507. },
  26508. male: {
  26509. height: math.unit(19.5, "m"),
  26510. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26511. name: "Male",
  26512. image: {
  26513. source: "./media/characters/umok/male.svg",
  26514. extra: 2233 / 2140,
  26515. bottom: 24.4 / 2258
  26516. }
  26517. },
  26518. },
  26519. [
  26520. {
  26521. name: "Macro",
  26522. height: math.unit(19.3, "meters"),
  26523. default: true
  26524. },
  26525. ]
  26526. ))
  26527. characterMakers.push(() => makeCharacter(
  26528. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26529. {
  26530. female: {
  26531. height: math.unit(26.15, "m"),
  26532. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26533. name: "Female",
  26534. image: {
  26535. source: "./media/characters/joraxian/female.svg",
  26536. extra: 2912 / 2824,
  26537. bottom: 36 / 2956
  26538. }
  26539. },
  26540. male: {
  26541. height: math.unit(25.4, "m"),
  26542. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26543. name: "Male",
  26544. image: {
  26545. source: "./media/characters/joraxian/male.svg",
  26546. extra: 2877 / 2721,
  26547. bottom: 82 / 2967
  26548. }
  26549. },
  26550. },
  26551. [
  26552. {
  26553. name: "Macro",
  26554. height: math.unit(26.15, "meters"),
  26555. default: true
  26556. },
  26557. ]
  26558. ))
  26559. characterMakers.push(() => makeCharacter(
  26560. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26561. {
  26562. female: {
  26563. height: math.unit(21.6, "m"),
  26564. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26565. name: "Female",
  26566. image: {
  26567. source: "./media/characters/sthara/female.svg",
  26568. extra: 2516 / 2347,
  26569. bottom: 21.5 / 2537
  26570. }
  26571. },
  26572. male: {
  26573. height: math.unit(24, "m"),
  26574. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26575. name: "Male",
  26576. image: {
  26577. source: "./media/characters/sthara/male.svg",
  26578. extra: 2732 / 2607,
  26579. bottom: 23 / 2732
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Macro",
  26586. height: math.unit(21.6, "meters"),
  26587. default: true
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(6 + 4 / 12, "feet"),
  26596. weight: math.unit(175, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/luka-bryzant/front.svg",
  26600. extra: 311 / 289,
  26601. bottom: 4 / 315
  26602. }
  26603. },
  26604. back: {
  26605. height: math.unit(6 + 4 / 12, "feet"),
  26606. weight: math.unit(175, "lb"),
  26607. name: "Back",
  26608. image: {
  26609. source: "./media/characters/luka-bryzant/back.svg",
  26610. extra: 311 / 289,
  26611. bottom: 3.8 / 313.7
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Micro",
  26618. height: math.unit(10, "inches")
  26619. },
  26620. {
  26621. name: "Normal",
  26622. height: math.unit(6 + 4 / 12, "feet"),
  26623. default: true
  26624. },
  26625. {
  26626. name: "Large",
  26627. height: math.unit(12, "feet")
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(5 + 7 / 12, "feet"),
  26636. weight: math.unit(185, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/aman-aquila/front.svg",
  26640. extra: 1013 / 976,
  26641. bottom: 45.6 / 1057
  26642. }
  26643. },
  26644. side: {
  26645. height: math.unit(5 + 7 / 12, "feet"),
  26646. weight: math.unit(185, "lb"),
  26647. name: "Side",
  26648. image: {
  26649. source: "./media/characters/aman-aquila/side.svg",
  26650. extra: 1054 / 1011,
  26651. bottom: 15 / 1070
  26652. }
  26653. },
  26654. back: {
  26655. height: math.unit(5 + 7 / 12, "feet"),
  26656. weight: math.unit(185, "lb"),
  26657. name: "Back",
  26658. image: {
  26659. source: "./media/characters/aman-aquila/back.svg",
  26660. extra: 1026 / 970,
  26661. bottom: 12 / 1039
  26662. }
  26663. },
  26664. head: {
  26665. height: math.unit(1.211, "feet"),
  26666. name: "Head",
  26667. image: {
  26668. source: "./media/characters/aman-aquila/head.svg",
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "Minimicro",
  26675. height: math.unit(0.057, "inches")
  26676. },
  26677. {
  26678. name: "Micro",
  26679. height: math.unit(7, "inches")
  26680. },
  26681. {
  26682. name: "Mini",
  26683. height: math.unit(3 + 7 / 12, "feet")
  26684. },
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(5 + 7 / 12, "feet"),
  26688. default: true
  26689. },
  26690. {
  26691. name: "Macro",
  26692. height: math.unit(157 + 7 / 12, "feet")
  26693. },
  26694. {
  26695. name: "Megamacro",
  26696. height: math.unit(1557 + 7 / 12, "feet")
  26697. },
  26698. {
  26699. name: "Gigamacro",
  26700. height: math.unit(15557 + 7 / 12, "feet")
  26701. },
  26702. ]
  26703. ))
  26704. characterMakers.push(() => makeCharacter(
  26705. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26706. {
  26707. front: {
  26708. height: math.unit(3 + 2 / 12, "inches"),
  26709. weight: math.unit(0.3, "ounces"),
  26710. name: "Front",
  26711. image: {
  26712. source: "./media/characters/hiphae/front.svg",
  26713. extra: 1931 / 1683,
  26714. bottom: 24 / 1955
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Normal",
  26721. height: math.unit(3 + 1 / 2, "inches"),
  26722. default: true
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(5 + 10 / 12, "feet"),
  26731. weight: math.unit(165, "lb"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/nicky/front.svg",
  26735. extra: 3144 / 2886,
  26736. bottom: 45.6 / 3192
  26737. }
  26738. },
  26739. back: {
  26740. height: math.unit(5 + 10 / 12, "feet"),
  26741. weight: math.unit(165, "lb"),
  26742. name: "Back",
  26743. image: {
  26744. source: "./media/characters/nicky/back.svg",
  26745. extra: 3055 / 2804,
  26746. bottom: 28.4 / 3087
  26747. }
  26748. },
  26749. frontclothed: {
  26750. height: math.unit(5 + 10 / 12, "feet"),
  26751. weight: math.unit(165, "lb"),
  26752. name: "Front-clothed",
  26753. image: {
  26754. source: "./media/characters/nicky/front-clothed.svg",
  26755. extra: 3184.9 / 2926.9,
  26756. bottom: 86.5 / 3239.9
  26757. }
  26758. },
  26759. foot: {
  26760. height: math.unit(1.16, "feet"),
  26761. name: "Foot",
  26762. image: {
  26763. source: "./media/characters/nicky/foot.svg"
  26764. }
  26765. },
  26766. feet: {
  26767. height: math.unit(1.34, "feet"),
  26768. name: "Feet",
  26769. image: {
  26770. source: "./media/characters/nicky/feet.svg"
  26771. }
  26772. },
  26773. maw: {
  26774. height: math.unit(0.9, "feet"),
  26775. name: "Maw",
  26776. image: {
  26777. source: "./media/characters/nicky/maw.svg"
  26778. }
  26779. },
  26780. },
  26781. [
  26782. {
  26783. name: "Normal",
  26784. height: math.unit(5 + 10 / 12, "feet"),
  26785. default: true
  26786. },
  26787. {
  26788. name: "Macro",
  26789. height: math.unit(60, "feet")
  26790. },
  26791. {
  26792. name: "Megamacro",
  26793. height: math.unit(1, "mile")
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26799. {
  26800. side: {
  26801. height: math.unit(10, "feet"),
  26802. weight: math.unit(600, "lb"),
  26803. name: "Side",
  26804. image: {
  26805. source: "./media/characters/blair/side.svg",
  26806. bottom: 16.6 / 475,
  26807. extra: 458 / 431
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Micro",
  26814. height: math.unit(8, "inches")
  26815. },
  26816. {
  26817. name: "Normal",
  26818. height: math.unit(10, "feet"),
  26819. default: true
  26820. },
  26821. {
  26822. name: "Macro",
  26823. height: math.unit(180, "feet")
  26824. },
  26825. ]
  26826. ))
  26827. characterMakers.push(() => makeCharacter(
  26828. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26829. {
  26830. front: {
  26831. height: math.unit(5 + 4 / 12, "feet"),
  26832. weight: math.unit(125, "lb"),
  26833. name: "Front",
  26834. image: {
  26835. source: "./media/characters/fisher/front.svg",
  26836. extra: 444 / 390,
  26837. bottom: 2 / 444.8
  26838. }
  26839. },
  26840. },
  26841. [
  26842. {
  26843. name: "Micro",
  26844. height: math.unit(4, "inches")
  26845. },
  26846. {
  26847. name: "Normal",
  26848. height: math.unit(5 + 4 / 12, "feet"),
  26849. default: true
  26850. },
  26851. {
  26852. name: "Macro",
  26853. height: math.unit(100, "feet")
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(6.71, "feet"),
  26862. weight: math.unit(200, "lb"),
  26863. preyCapacity: math.unit(1000000, "people"),
  26864. name: "Front",
  26865. image: {
  26866. source: "./media/characters/gliss/front.svg",
  26867. extra: 2347 / 2231,
  26868. bottom: 113 / 2462
  26869. }
  26870. },
  26871. hammerspaceSize: {
  26872. height: math.unit(6.71 * 717, "feet"),
  26873. weight: math.unit(200, "lb"),
  26874. preyCapacity: math.unit(1000000, "people"),
  26875. name: "Hammerspace Size",
  26876. image: {
  26877. source: "./media/characters/gliss/front.svg",
  26878. extra: 2347 / 2231,
  26879. bottom: 113 / 2462
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Normal",
  26886. height: math.unit(6.71, "feet"),
  26887. default: true
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26893. {
  26894. side: {
  26895. height: math.unit(1.44, "m"),
  26896. weight: math.unit(80, "kg"),
  26897. name: "Side",
  26898. image: {
  26899. source: "./media/characters/dune-anderson/side.svg",
  26900. bottom: 49 / 1426
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Wolf-sized",
  26907. height: math.unit(1.44, "meters")
  26908. },
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(5.05, "meters"),
  26912. default: true
  26913. },
  26914. {
  26915. name: "Big",
  26916. height: math.unit(14.4, "meters")
  26917. },
  26918. {
  26919. name: "Huge",
  26920. height: math.unit(144, "meters")
  26921. },
  26922. ]
  26923. ))
  26924. characterMakers.push(() => makeCharacter(
  26925. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26926. {
  26927. front: {
  26928. height: math.unit(7, "feet"),
  26929. weight: math.unit(425, "lb"),
  26930. name: "Front",
  26931. image: {
  26932. source: "./media/characters/hind/front.svg",
  26933. extra: 2091 / 1860,
  26934. bottom: 129 / 2220
  26935. }
  26936. },
  26937. back: {
  26938. height: math.unit(7, "feet"),
  26939. weight: math.unit(425, "lb"),
  26940. name: "Back",
  26941. image: {
  26942. source: "./media/characters/hind/back.svg",
  26943. extra: 2091 / 1860,
  26944. bottom: 24.6 / 2309
  26945. }
  26946. },
  26947. tail: {
  26948. height: math.unit(2.8, "feet"),
  26949. name: "Tail",
  26950. image: {
  26951. source: "./media/characters/hind/tail.svg"
  26952. }
  26953. },
  26954. head: {
  26955. height: math.unit(2.55, "feet"),
  26956. name: "Head",
  26957. image: {
  26958. source: "./media/characters/hind/head.svg"
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "XS",
  26965. height: math.unit(0.7, "feet")
  26966. },
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(7, "feet"),
  26970. default: true
  26971. },
  26972. {
  26973. name: "XL",
  26974. height: math.unit(70, "feet")
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(2.1, "meters"),
  26983. weight: math.unit(150, "lb"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/tharquench-sizestealer/front.svg",
  26987. extra: 1605/1470,
  26988. bottom: 36/1641
  26989. }
  26990. },
  26991. frontAlt: {
  26992. height: math.unit(2.1, "meters"),
  26993. weight: math.unit(150, "lb"),
  26994. name: "Front (Alt)",
  26995. image: {
  26996. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26997. extra: 2318 / 2063,
  26998. bottom: 93.4 / 2410
  26999. }
  27000. },
  27001. },
  27002. [
  27003. {
  27004. name: "Nano",
  27005. height: math.unit(1, "mm")
  27006. },
  27007. {
  27008. name: "Micro",
  27009. height: math.unit(1, "cm")
  27010. },
  27011. {
  27012. name: "Normal",
  27013. height: math.unit(2.1, "meters"),
  27014. default: true
  27015. },
  27016. ]
  27017. ))
  27018. characterMakers.push(() => makeCharacter(
  27019. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27020. {
  27021. front: {
  27022. height: math.unit(7 + 5 / 12, "feet"),
  27023. weight: math.unit(357, "lb"),
  27024. name: "Front",
  27025. image: {
  27026. source: "./media/characters/solex-draconov/front.svg",
  27027. extra: 1993 / 1865,
  27028. bottom: 117 / 2111
  27029. }
  27030. },
  27031. },
  27032. [
  27033. {
  27034. name: "Natural Height",
  27035. height: math.unit(7 + 5 / 12, "feet"),
  27036. default: true
  27037. },
  27038. {
  27039. name: "Macro",
  27040. height: math.unit(350, "feet")
  27041. },
  27042. {
  27043. name: "Macro+",
  27044. height: math.unit(1000, "feet")
  27045. },
  27046. {
  27047. name: "Megamacro",
  27048. height: math.unit(20, "km")
  27049. },
  27050. {
  27051. name: "Megamacro+",
  27052. height: math.unit(1000, "km")
  27053. },
  27054. {
  27055. name: "Gigamacro",
  27056. height: math.unit(2.5, "Gm")
  27057. },
  27058. {
  27059. name: "Teramacro",
  27060. height: math.unit(15, "Tm")
  27061. },
  27062. {
  27063. name: "Galactic",
  27064. height: math.unit(30, "Zm")
  27065. },
  27066. {
  27067. name: "Universal",
  27068. height: math.unit(21000, "Ym")
  27069. },
  27070. {
  27071. name: "Omniversal",
  27072. height: math.unit(9.861e50, "Ym")
  27073. },
  27074. {
  27075. name: "Existential",
  27076. height: math.unit(1e300, "meters")
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27082. {
  27083. side: {
  27084. height: math.unit(25, "feet"),
  27085. weight: math.unit(90000, "lb"),
  27086. name: "Side",
  27087. image: {
  27088. source: "./media/characters/mandarax/side.svg",
  27089. extra: 614 / 332,
  27090. bottom: 55 / 630
  27091. }
  27092. },
  27093. lounging: {
  27094. height: math.unit(15.4, "feet"),
  27095. weight: math.unit(90000, "lb"),
  27096. name: "Lounging",
  27097. image: {
  27098. source: "./media/characters/mandarax/lounging.svg",
  27099. extra: 817/609,
  27100. bottom: 685/1502
  27101. }
  27102. },
  27103. head: {
  27104. height: math.unit(11.4, "feet"),
  27105. name: "Head",
  27106. image: {
  27107. source: "./media/characters/mandarax/head.svg"
  27108. }
  27109. },
  27110. belly: {
  27111. height: math.unit(33, "feet"),
  27112. name: "Belly",
  27113. preyCapacity: math.unit(500, "people"),
  27114. image: {
  27115. source: "./media/characters/mandarax/belly.svg"
  27116. }
  27117. },
  27118. dick: {
  27119. height: math.unit(8.46, "feet"),
  27120. name: "Dick",
  27121. image: {
  27122. source: "./media/characters/mandarax/dick.svg"
  27123. }
  27124. },
  27125. top: {
  27126. height: math.unit(28, "meters"),
  27127. name: "Top",
  27128. image: {
  27129. source: "./media/characters/mandarax/top.svg"
  27130. }
  27131. },
  27132. },
  27133. [
  27134. {
  27135. name: "Normal",
  27136. height: math.unit(25, "feet"),
  27137. default: true
  27138. },
  27139. ]
  27140. ))
  27141. characterMakers.push(() => makeCharacter(
  27142. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27143. {
  27144. front: {
  27145. height: math.unit(5, "feet"),
  27146. weight: math.unit(90, "lb"),
  27147. name: "Front",
  27148. image: {
  27149. source: "./media/characters/pixil/front.svg",
  27150. extra: 2000 / 1618,
  27151. bottom: 12.3 / 2011
  27152. }
  27153. },
  27154. },
  27155. [
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(5, "feet"),
  27159. default: true
  27160. },
  27161. {
  27162. name: "Megamacro",
  27163. height: math.unit(10, "miles"),
  27164. },
  27165. ]
  27166. ))
  27167. characterMakers.push(() => makeCharacter(
  27168. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27169. {
  27170. front: {
  27171. height: math.unit(7 + 2 / 12, "feet"),
  27172. weight: math.unit(200, "lb"),
  27173. name: "Front",
  27174. image: {
  27175. source: "./media/characters/angel/front.svg",
  27176. extra: 1830 / 1737,
  27177. bottom: 22.6 / 1854,
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Normal",
  27184. height: math.unit(7 + 2 / 12, "feet"),
  27185. default: true
  27186. },
  27187. {
  27188. name: "Macro",
  27189. height: math.unit(1000, "feet")
  27190. },
  27191. {
  27192. name: "Megamacro",
  27193. height: math.unit(2, "miles")
  27194. },
  27195. {
  27196. name: "Gigamacro",
  27197. height: math.unit(20, "earths")
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27203. {
  27204. front: {
  27205. height: math.unit(5, "feet"),
  27206. weight: math.unit(180, "lb"),
  27207. name: "Front",
  27208. image: {
  27209. source: "./media/characters/mekana/front.svg",
  27210. extra: 1671 / 1605,
  27211. bottom: 3.5 / 1691
  27212. }
  27213. },
  27214. side: {
  27215. height: math.unit(5, "feet"),
  27216. weight: math.unit(180, "lb"),
  27217. name: "Side",
  27218. image: {
  27219. source: "./media/characters/mekana/side.svg",
  27220. extra: 1671 / 1605,
  27221. bottom: 3.5 / 1691
  27222. }
  27223. },
  27224. back: {
  27225. height: math.unit(5, "feet"),
  27226. weight: math.unit(180, "lb"),
  27227. name: "Back",
  27228. image: {
  27229. source: "./media/characters/mekana/back.svg",
  27230. extra: 1671 / 1605,
  27231. bottom: 3.5 / 1691
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(5, "feet"),
  27239. default: true
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27245. {
  27246. front: {
  27247. height: math.unit(4 + 6 / 12, "feet"),
  27248. weight: math.unit(80, "lb"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/pixie/front.svg",
  27252. extra: 1924 / 1825,
  27253. bottom: 22.4 / 1946
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(4 + 6 / 12, "feet"),
  27261. default: true
  27262. },
  27263. {
  27264. name: "Macro",
  27265. height: math.unit(40, "feet")
  27266. },
  27267. ]
  27268. ))
  27269. characterMakers.push(() => makeCharacter(
  27270. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27271. {
  27272. front: {
  27273. height: math.unit(2.1, "meters"),
  27274. weight: math.unit(200, "lb"),
  27275. name: "Front",
  27276. image: {
  27277. source: "./media/characters/the-lascivious/front.svg",
  27278. extra: 1 / 0.893,
  27279. bottom: 3.5 / 573.7
  27280. }
  27281. },
  27282. },
  27283. [
  27284. {
  27285. name: "Human Scale",
  27286. height: math.unit(2.1, "meters")
  27287. },
  27288. {
  27289. name: "Wolxi Scale",
  27290. height: math.unit(46.2, "m"),
  27291. default: true
  27292. },
  27293. {
  27294. name: "Boinker of Buildings",
  27295. height: math.unit(10, "km")
  27296. },
  27297. {
  27298. name: "Shagger of Skyscrapers",
  27299. height: math.unit(40, "km")
  27300. },
  27301. {
  27302. name: "Banger of Boroughs",
  27303. height: math.unit(4000, "km")
  27304. },
  27305. {
  27306. name: "Screwer of States",
  27307. height: math.unit(100000, "km")
  27308. },
  27309. {
  27310. name: "Pounder of Planets",
  27311. height: math.unit(2000000, "km")
  27312. },
  27313. ]
  27314. ))
  27315. characterMakers.push(() => makeCharacter(
  27316. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27317. {
  27318. front: {
  27319. height: math.unit(6, "feet"),
  27320. weight: math.unit(150, "lb"),
  27321. name: "Front",
  27322. image: {
  27323. source: "./media/characters/aj/front.svg",
  27324. extra: 2039 / 1562,
  27325. bottom: 40 / 2079
  27326. }
  27327. },
  27328. },
  27329. [
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(11 + 6 / 12, "feet"),
  27333. default: true
  27334. },
  27335. {
  27336. name: "Megamacro",
  27337. height: math.unit(60, "megameters")
  27338. },
  27339. ]
  27340. ))
  27341. characterMakers.push(() => makeCharacter(
  27342. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27343. {
  27344. side: {
  27345. height: math.unit(31 + 8 / 12, "feet"),
  27346. weight: math.unit(75000, "kg"),
  27347. name: "Side",
  27348. image: {
  27349. source: "./media/characters/koros/side.svg",
  27350. extra: 1442 / 1297,
  27351. bottom: 122.7 / 1562
  27352. }
  27353. },
  27354. dicksKingsCrown: {
  27355. height: math.unit(6, "feet"),
  27356. name: "Dicks (King's Crown)",
  27357. image: {
  27358. source: "./media/characters/koros/dicks-kings-crown.svg"
  27359. }
  27360. },
  27361. dicksTailSet: {
  27362. height: math.unit(3, "feet"),
  27363. name: "Dicks (Tail Set)",
  27364. image: {
  27365. source: "./media/characters/koros/dicks-tail-set.svg"
  27366. }
  27367. },
  27368. dickCumming: {
  27369. height: math.unit(7.98, "feet"),
  27370. name: "Dick (Cumming)",
  27371. image: {
  27372. source: "./media/characters/koros/dick-cumming.svg"
  27373. }
  27374. },
  27375. dicksBack: {
  27376. height: math.unit(5.9, "feet"),
  27377. name: "Dicks (Back)",
  27378. image: {
  27379. source: "./media/characters/koros/dicks-back.svg"
  27380. }
  27381. },
  27382. dicksFront: {
  27383. height: math.unit(3.72, "feet"),
  27384. name: "Dicks (Front)",
  27385. image: {
  27386. source: "./media/characters/koros/dicks-front.svg"
  27387. }
  27388. },
  27389. dicksPeeking: {
  27390. height: math.unit(3.0, "feet"),
  27391. name: "Dicks (Peeking)",
  27392. image: {
  27393. source: "./media/characters/koros/dicks-peeking.svg"
  27394. }
  27395. },
  27396. eye: {
  27397. height: math.unit(1.7, "feet"),
  27398. name: "Eye",
  27399. image: {
  27400. source: "./media/characters/koros/eye.svg"
  27401. }
  27402. },
  27403. headFront: {
  27404. height: math.unit(11.69, "feet"),
  27405. name: "Head (Front)",
  27406. image: {
  27407. source: "./media/characters/koros/head-front.svg"
  27408. }
  27409. },
  27410. headSide: {
  27411. height: math.unit(14, "feet"),
  27412. name: "Head (Side)",
  27413. image: {
  27414. source: "./media/characters/koros/head-side.svg"
  27415. }
  27416. },
  27417. leg: {
  27418. height: math.unit(17, "feet"),
  27419. name: "Leg",
  27420. image: {
  27421. source: "./media/characters/koros/leg.svg"
  27422. }
  27423. },
  27424. mawSide: {
  27425. height: math.unit(12.8, "feet"),
  27426. name: "Maw (Side)",
  27427. image: {
  27428. source: "./media/characters/koros/maw-side.svg"
  27429. }
  27430. },
  27431. mawSpitting: {
  27432. height: math.unit(17, "feet"),
  27433. name: "Maw (Spitting)",
  27434. image: {
  27435. source: "./media/characters/koros/maw-spitting.svg"
  27436. }
  27437. },
  27438. slit: {
  27439. height: math.unit(2.8, "feet"),
  27440. name: "Slit",
  27441. image: {
  27442. source: "./media/characters/koros/slit.svg"
  27443. }
  27444. },
  27445. stomach: {
  27446. height: math.unit(6.8, "feet"),
  27447. preyCapacity: math.unit(20, "people"),
  27448. name: "Stomach",
  27449. image: {
  27450. source: "./media/characters/koros/stomach.svg"
  27451. }
  27452. },
  27453. wingspanBottom: {
  27454. height: math.unit(114, "feet"),
  27455. name: "Wingspan (Bottom)",
  27456. image: {
  27457. source: "./media/characters/koros/wingspan-bottom.svg"
  27458. }
  27459. },
  27460. wingspanTop: {
  27461. height: math.unit(104, "feet"),
  27462. name: "Wingspan (Top)",
  27463. image: {
  27464. source: "./media/characters/koros/wingspan-top.svg"
  27465. }
  27466. },
  27467. },
  27468. [
  27469. {
  27470. name: "Normal",
  27471. height: math.unit(31 + 8 / 12, "feet"),
  27472. default: true
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27478. {
  27479. front: {
  27480. height: math.unit(18 + 5 / 12, "feet"),
  27481. weight: math.unit(3750, "kg"),
  27482. name: "Front",
  27483. image: {
  27484. source: "./media/characters/vexx/front.svg",
  27485. extra: 426 / 396,
  27486. bottom: 31.5 / 458
  27487. }
  27488. },
  27489. maw: {
  27490. height: math.unit(6, "feet"),
  27491. name: "Maw",
  27492. image: {
  27493. source: "./media/characters/vexx/maw.svg"
  27494. }
  27495. },
  27496. },
  27497. [
  27498. {
  27499. name: "Normal",
  27500. height: math.unit(18 + 5 / 12, "feet"),
  27501. default: true
  27502. },
  27503. ]
  27504. ))
  27505. characterMakers.push(() => makeCharacter(
  27506. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27507. {
  27508. front: {
  27509. height: math.unit(17 + 6 / 12, "feet"),
  27510. weight: math.unit(150, "lb"),
  27511. name: "Front",
  27512. image: {
  27513. source: "./media/characters/baadra/front.svg",
  27514. extra: 1694/1553,
  27515. bottom: 179/1873
  27516. }
  27517. },
  27518. frontAlt: {
  27519. height: math.unit(17 + 6 / 12, "feet"),
  27520. weight: math.unit(150, "lb"),
  27521. name: "Front (Alt)",
  27522. image: {
  27523. source: "./media/characters/baadra/front-alt.svg",
  27524. extra: 3137 / 2890,
  27525. bottom: 168.4 / 3305
  27526. }
  27527. },
  27528. back: {
  27529. height: math.unit(17 + 6 / 12, "feet"),
  27530. weight: math.unit(150, "lb"),
  27531. name: "Back",
  27532. image: {
  27533. source: "./media/characters/baadra/back.svg",
  27534. extra: 3142 / 2890,
  27535. bottom: 220 / 3371
  27536. }
  27537. },
  27538. head: {
  27539. height: math.unit(5.45, "feet"),
  27540. name: "Head",
  27541. image: {
  27542. source: "./media/characters/baadra/head.svg"
  27543. }
  27544. },
  27545. headAngry: {
  27546. height: math.unit(4.95, "feet"),
  27547. name: "Head (Angry)",
  27548. image: {
  27549. source: "./media/characters/baadra/head-angry.svg"
  27550. }
  27551. },
  27552. headOpen: {
  27553. height: math.unit(6, "feet"),
  27554. name: "Head (Open)",
  27555. image: {
  27556. source: "./media/characters/baadra/head-open.svg"
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Normal",
  27563. height: math.unit(17 + 6 / 12, "feet"),
  27564. default: true
  27565. },
  27566. ]
  27567. ))
  27568. characterMakers.push(() => makeCharacter(
  27569. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27570. {
  27571. front: {
  27572. height: math.unit(7 + 3 / 12, "feet"),
  27573. weight: math.unit(180, "lb"),
  27574. name: "Front",
  27575. image: {
  27576. source: "./media/characters/juri/front.svg",
  27577. extra: 1401 / 1237,
  27578. bottom: 18.5 / 1418
  27579. }
  27580. },
  27581. side: {
  27582. height: math.unit(7 + 3 / 12, "feet"),
  27583. weight: math.unit(180, "lb"),
  27584. name: "Side",
  27585. image: {
  27586. source: "./media/characters/juri/side.svg",
  27587. extra: 1424 / 1242,
  27588. bottom: 18.5 / 1447
  27589. }
  27590. },
  27591. sitting: {
  27592. height: math.unit(6, "feet"),
  27593. weight: math.unit(180, "lb"),
  27594. name: "Sitting",
  27595. image: {
  27596. source: "./media/characters/juri/sitting.svg",
  27597. extra: 1270 / 1143,
  27598. bottom: 100 / 1343
  27599. }
  27600. },
  27601. back: {
  27602. height: math.unit(7 + 3 / 12, "feet"),
  27603. weight: math.unit(180, "lb"),
  27604. name: "Back",
  27605. image: {
  27606. source: "./media/characters/juri/back.svg",
  27607. extra: 1377 / 1240,
  27608. bottom: 23.7 / 1405
  27609. }
  27610. },
  27611. maw: {
  27612. height: math.unit(2.8, "feet"),
  27613. name: "Maw",
  27614. image: {
  27615. source: "./media/characters/juri/maw.svg"
  27616. }
  27617. },
  27618. stomach: {
  27619. height: math.unit(0.89, "feet"),
  27620. preyCapacity: math.unit(4, "liters"),
  27621. name: "Stomach",
  27622. image: {
  27623. source: "./media/characters/juri/stomach.svg"
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(7 + 3 / 12, "feet"),
  27631. default: true
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27637. {
  27638. fox: {
  27639. height: math.unit(5 + 6 / 12, "feet"),
  27640. weight: math.unit(140, "lb"),
  27641. name: "Fox",
  27642. image: {
  27643. source: "./media/characters/maxene-sita/fox.svg",
  27644. extra: 146 / 138,
  27645. bottom: 2.1 / 148.19
  27646. }
  27647. },
  27648. foxLaying: {
  27649. height: math.unit(1.70, "feet"),
  27650. weight: math.unit(140, "lb"),
  27651. name: "Fox (Laying)",
  27652. image: {
  27653. source: "./media/characters/maxene-sita/fox-laying.svg",
  27654. extra: 910 / 572,
  27655. bottom: 71 / 981
  27656. }
  27657. },
  27658. kitsune: {
  27659. height: math.unit(10, "feet"),
  27660. weight: math.unit(800, "lb"),
  27661. name: "Kitsune",
  27662. image: {
  27663. source: "./media/characters/maxene-sita/kitsune.svg",
  27664. extra: 185 / 176,
  27665. bottom: 4.7 / 189.9
  27666. }
  27667. },
  27668. hellhound: {
  27669. height: math.unit(10, "feet"),
  27670. weight: math.unit(700, "lb"),
  27671. name: "Hellhound",
  27672. image: {
  27673. source: "./media/characters/maxene-sita/hellhound.svg",
  27674. extra: 1600 / 1545,
  27675. bottom: 81 / 1681
  27676. }
  27677. },
  27678. },
  27679. [
  27680. {
  27681. name: "Normal",
  27682. height: math.unit(5 + 6 / 12, "feet"),
  27683. default: true
  27684. },
  27685. ]
  27686. ))
  27687. characterMakers.push(() => makeCharacter(
  27688. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27689. {
  27690. front: {
  27691. height: math.unit(3 + 4 / 12, "feet"),
  27692. weight: math.unit(70, "lb"),
  27693. name: "Front",
  27694. image: {
  27695. source: "./media/characters/maia/front.svg",
  27696. extra: 227 / 219.5,
  27697. bottom: 40 / 267
  27698. }
  27699. },
  27700. back: {
  27701. height: math.unit(3 + 4 / 12, "feet"),
  27702. weight: math.unit(70, "lb"),
  27703. name: "Back",
  27704. image: {
  27705. source: "./media/characters/maia/back.svg",
  27706. extra: 237 / 225
  27707. }
  27708. },
  27709. },
  27710. [
  27711. {
  27712. name: "Normal",
  27713. height: math.unit(3 + 4 / 12, "feet"),
  27714. default: true
  27715. },
  27716. ]
  27717. ))
  27718. characterMakers.push(() => makeCharacter(
  27719. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27720. {
  27721. front: {
  27722. height: math.unit(5 + 10 / 12, "feet"),
  27723. weight: math.unit(197, "lb"),
  27724. name: "Front",
  27725. image: {
  27726. source: "./media/characters/jabaro/front.svg",
  27727. extra: 225 / 216,
  27728. bottom: 5.06 / 230
  27729. }
  27730. },
  27731. back: {
  27732. height: math.unit(5 + 10 / 12, "feet"),
  27733. weight: math.unit(197, "lb"),
  27734. name: "Back",
  27735. image: {
  27736. source: "./media/characters/jabaro/back.svg",
  27737. extra: 225 / 219,
  27738. bottom: 1.9 / 227
  27739. }
  27740. },
  27741. },
  27742. [
  27743. {
  27744. name: "Normal",
  27745. height: math.unit(5 + 10 / 12, "feet"),
  27746. default: true
  27747. },
  27748. ]
  27749. ))
  27750. characterMakers.push(() => makeCharacter(
  27751. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27752. {
  27753. front: {
  27754. height: math.unit(5 + 8 / 12, "feet"),
  27755. weight: math.unit(139, "lb"),
  27756. name: "Front",
  27757. image: {
  27758. source: "./media/characters/risa/front.svg",
  27759. extra: 270 / 260,
  27760. bottom: 11.2 / 282
  27761. }
  27762. },
  27763. back: {
  27764. height: math.unit(5 + 8 / 12, "feet"),
  27765. weight: math.unit(139, "lb"),
  27766. name: "Back",
  27767. image: {
  27768. source: "./media/characters/risa/back.svg",
  27769. extra: 264 / 255,
  27770. bottom: 4 / 268
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(5 + 8 / 12, "feet"),
  27778. default: true
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27784. {
  27785. front: {
  27786. height: math.unit(2 + 11 / 12, "feet"),
  27787. weight: math.unit(30, "lb"),
  27788. name: "Front",
  27789. image: {
  27790. source: "./media/characters/weatley/front.svg",
  27791. bottom: 10.7 / 414,
  27792. extra: 403.5 / 362
  27793. }
  27794. },
  27795. back: {
  27796. height: math.unit(2 + 11 / 12, "feet"),
  27797. weight: math.unit(30, "lb"),
  27798. name: "Back",
  27799. image: {
  27800. source: "./media/characters/weatley/back.svg",
  27801. bottom: 10.7 / 414,
  27802. extra: 403.5 / 362
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(2 + 11 / 12, "feet"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27816. {
  27817. front: {
  27818. height: math.unit(5 + 2 / 12, "feet"),
  27819. weight: math.unit(50, "kg"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/mercury-crescent/front.svg",
  27823. extra: 1088 / 1033,
  27824. bottom: 18.9 / 1109
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(5 + 2 / 12, "feet"),
  27832. default: true
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27838. {
  27839. front: {
  27840. height: math.unit(2, "feet"),
  27841. weight: math.unit(15, "kg"),
  27842. name: "Front",
  27843. image: {
  27844. source: "./media/characters/diamond-jones/front.svg",
  27845. extra: 727/723,
  27846. bottom: 46/773
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(2, "feet"),
  27854. default: true
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(3, "feet"),
  27863. weight: math.unit(30, "kg"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/sweet-bit/front.svg",
  27867. extra: 675 / 567,
  27868. bottom: 27.7 / 703
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(3, "feet"),
  27876. default: true
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27882. {
  27883. side: {
  27884. height: math.unit(9.178, "feet"),
  27885. weight: math.unit(500, "lb"),
  27886. name: "Side",
  27887. image: {
  27888. source: "./media/characters/umbrazen/side.svg",
  27889. extra: 1730 / 1473,
  27890. bottom: 34.6 / 1765
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(9.178, "feet"),
  27898. default: true
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(10, "feet"),
  27907. weight: math.unit(750, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/arlist/front.svg",
  27911. extra: 961 / 778,
  27912. bottom: 6.2 / 986
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Normal",
  27919. height: math.unit(10, "feet"),
  27920. default: true
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(5 + 1 / 12, "feet"),
  27929. weight: math.unit(110, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/aradel/front.svg",
  27933. extra: 324 / 303,
  27934. bottom: 3.6 / 329.4
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Normal",
  27941. height: math.unit(5 + 1 / 12, "feet"),
  27942. default: true
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27948. {
  27949. dressed: {
  27950. height: math.unit(3 + 8 / 12, "feet"),
  27951. weight: math.unit(50, "lb"),
  27952. name: "Dressed",
  27953. image: {
  27954. source: "./media/characters/serryn/dressed.svg",
  27955. extra: 1792 / 1656,
  27956. bottom: 43.5 / 1840
  27957. }
  27958. },
  27959. nude: {
  27960. height: math.unit(3 + 8 / 12, "feet"),
  27961. weight: math.unit(50, "lb"),
  27962. name: "Nude",
  27963. image: {
  27964. source: "./media/characters/serryn/nude.svg",
  27965. extra: 1792 / 1656,
  27966. bottom: 43.5 / 1840
  27967. }
  27968. },
  27969. },
  27970. [
  27971. {
  27972. name: "Normal",
  27973. height: math.unit(3 + 8 / 12, "feet"),
  27974. default: true
  27975. },
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27980. {
  27981. front: {
  27982. height: math.unit(7 + 10 / 12, "feet"),
  27983. weight: math.unit(255, "lb"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/xavier-thyme/front.svg",
  27987. extra: 3733 / 3642,
  27988. bottom: 131 / 3869
  27989. }
  27990. },
  27991. frontRaven: {
  27992. height: math.unit(7 + 10 / 12, "feet"),
  27993. weight: math.unit(255, "lb"),
  27994. name: "Front (Raven)",
  27995. image: {
  27996. source: "./media/characters/xavier-thyme/front-raven.svg",
  27997. extra: 4385 / 3642,
  27998. bottom: 131 / 4517
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(7 + 10 / 12, "feet"),
  28006. default: true
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(1.6, "m"),
  28015. weight: math.unit(50, "kg"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/kiki/front.svg",
  28019. extra: 4682 / 3610,
  28020. bottom: 115 / 4777
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(1.6, "meters"),
  28028. default: true
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28034. {
  28035. front: {
  28036. height: math.unit(50, "m"),
  28037. weight: math.unit(500, "tonnes"),
  28038. name: "Front",
  28039. image: {
  28040. source: "./media/characters/ryoko/front.svg",
  28041. extra: 4632 / 3926,
  28042. bottom: 193 / 4823
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Normal",
  28049. height: math.unit(50, "meters"),
  28050. default: true
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28056. {
  28057. front: {
  28058. height: math.unit(30, "m"),
  28059. weight: math.unit(22, "tonnes"),
  28060. name: "Front",
  28061. image: {
  28062. source: "./media/characters/elio/front.svg",
  28063. extra: 4582 / 3720,
  28064. bottom: 236 / 4828
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(30, "meters"),
  28072. default: true
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28078. {
  28079. front: {
  28080. height: math.unit(6 + 3 / 12, "feet"),
  28081. weight: math.unit(120, "lb"),
  28082. name: "Front",
  28083. image: {
  28084. source: "./media/characters/azura/front.svg",
  28085. extra: 1149 / 1135,
  28086. bottom: 45 / 1194
  28087. }
  28088. },
  28089. frontClothed: {
  28090. height: math.unit(6 + 3 / 12, "feet"),
  28091. weight: math.unit(120, "lb"),
  28092. name: "Front (Clothed)",
  28093. image: {
  28094. source: "./media/characters/azura/front-clothed.svg",
  28095. extra: 1149 / 1135,
  28096. bottom: 45 / 1194
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Normal",
  28103. height: math.unit(6 + 3 / 12, "feet"),
  28104. default: true
  28105. },
  28106. {
  28107. name: "Macro",
  28108. height: math.unit(20 + 6 / 12, "feet")
  28109. },
  28110. {
  28111. name: "Megamacro",
  28112. height: math.unit(12, "miles")
  28113. },
  28114. {
  28115. name: "Gigamacro",
  28116. height: math.unit(10000, "miles")
  28117. },
  28118. {
  28119. name: "Teramacro",
  28120. height: math.unit(900000, "miles")
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28126. {
  28127. front: {
  28128. height: math.unit(12, "feet"),
  28129. weight: math.unit(1, "ton"),
  28130. capacity: math.unit(660000, "gallons"),
  28131. name: "Front",
  28132. image: {
  28133. source: "./media/characters/zeus/front.svg",
  28134. extra: 5005 / 4717,
  28135. bottom: 363 / 5388
  28136. }
  28137. },
  28138. },
  28139. [
  28140. {
  28141. name: "Normal",
  28142. height: math.unit(12, "feet")
  28143. },
  28144. {
  28145. name: "Preferred Size",
  28146. height: math.unit(0.5, "miles"),
  28147. default: true
  28148. },
  28149. {
  28150. name: "Giga Horse",
  28151. height: math.unit(300, "miles")
  28152. },
  28153. {
  28154. name: "Riding Planets",
  28155. height: math.unit(30, "megameters")
  28156. },
  28157. {
  28158. name: "Cosmic Giant",
  28159. height: math.unit(3, "zettameters")
  28160. },
  28161. {
  28162. name: "Breeding God",
  28163. height: math.unit(9.92e22, "yottameters")
  28164. },
  28165. ]
  28166. ))
  28167. characterMakers.push(() => makeCharacter(
  28168. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28169. {
  28170. side: {
  28171. height: math.unit(9, "feet"),
  28172. weight: math.unit(1500, "kg"),
  28173. name: "Side",
  28174. image: {
  28175. source: "./media/characters/fang/side.svg",
  28176. extra: 924 / 866,
  28177. bottom: 47.5 / 972.3
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(9, "feet"),
  28185. default: true
  28186. },
  28187. {
  28188. name: "Macro",
  28189. height: math.unit(75 + 6 / 12, "feet")
  28190. },
  28191. {
  28192. name: "Teramacro",
  28193. height: math.unit(50000, "miles")
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28199. {
  28200. front: {
  28201. height: math.unit(10, "feet"),
  28202. weight: math.unit(2, "tons"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/rekhit/front.svg",
  28206. extra: 2796 / 2590,
  28207. bottom: 225 / 3022
  28208. }
  28209. },
  28210. },
  28211. [
  28212. {
  28213. name: "Normal",
  28214. height: math.unit(10, "feet"),
  28215. default: true
  28216. },
  28217. {
  28218. name: "Macro",
  28219. height: math.unit(500, "feet")
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(7 + 6.451 / 12, "feet"),
  28228. weight: math.unit(310, "lb"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/dahlia-verrick/front.svg",
  28232. extra: 1488 / 1365,
  28233. bottom: 6.2 / 1495
  28234. }
  28235. },
  28236. back: {
  28237. height: math.unit(7 + 6.451 / 12, "feet"),
  28238. weight: math.unit(310, "lb"),
  28239. name: "Back",
  28240. image: {
  28241. source: "./media/characters/dahlia-verrick/back.svg",
  28242. extra: 1472 / 1351,
  28243. bottom: 5.28 / 1477
  28244. }
  28245. },
  28246. frontBusiness: {
  28247. height: math.unit(7 + 6.451 / 12, "feet"),
  28248. weight: math.unit(200, "lb"),
  28249. name: "Front (Business)",
  28250. image: {
  28251. source: "./media/characters/dahlia-verrick/front-business.svg",
  28252. extra: 1478 / 1381,
  28253. bottom: 5.5 / 1484
  28254. }
  28255. },
  28256. frontCasual: {
  28257. height: math.unit(7 + 6.451 / 12, "feet"),
  28258. weight: math.unit(200, "lb"),
  28259. name: "Front (Casual)",
  28260. image: {
  28261. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28262. extra: 1478 / 1381,
  28263. bottom: 5.5 / 1484
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Travel-Sized",
  28270. height: math.unit(7.45, "inches")
  28271. },
  28272. {
  28273. name: "Normal",
  28274. height: math.unit(7 + 6.451 / 12, "feet"),
  28275. default: true
  28276. },
  28277. {
  28278. name: "Hitting the Town",
  28279. height: math.unit(37 + 8 / 12, "feet")
  28280. },
  28281. {
  28282. name: "Stomp in the Suburbs",
  28283. height: math.unit(964 + 9.728 / 12, "feet")
  28284. },
  28285. {
  28286. name: "Sit on the City",
  28287. height: math.unit(61747 + 10.592 / 12, "feet")
  28288. },
  28289. {
  28290. name: "Glomp the Globe",
  28291. height: math.unit(252919327 + 4.832 / 12, "feet")
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(6 + 4 / 12, "feet"),
  28300. weight: math.unit(320, "lb"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/balina-mahigan/front.svg",
  28304. extra: 447 / 428,
  28305. bottom: 18 / 466
  28306. }
  28307. },
  28308. back: {
  28309. height: math.unit(6 + 4 / 12, "feet"),
  28310. weight: math.unit(320, "lb"),
  28311. name: "Back",
  28312. image: {
  28313. source: "./media/characters/balina-mahigan/back.svg",
  28314. extra: 445 / 428,
  28315. bottom: 4.07 / 448
  28316. }
  28317. },
  28318. arm: {
  28319. height: math.unit(1.88, "feet"),
  28320. name: "Arm",
  28321. image: {
  28322. source: "./media/characters/balina-mahigan/arm.svg"
  28323. }
  28324. },
  28325. backPort: {
  28326. height: math.unit(0.685, "feet"),
  28327. name: "Back Port",
  28328. image: {
  28329. source: "./media/characters/balina-mahigan/back-port.svg"
  28330. }
  28331. },
  28332. hoofpaw: {
  28333. height: math.unit(1.41, "feet"),
  28334. name: "Hoofpaw",
  28335. image: {
  28336. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28337. }
  28338. },
  28339. leftHandBack: {
  28340. height: math.unit(0.938, "feet"),
  28341. name: "Left Hand (Back)",
  28342. image: {
  28343. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28344. }
  28345. },
  28346. leftHandFront: {
  28347. height: math.unit(0.938, "feet"),
  28348. name: "Left Hand (Front)",
  28349. image: {
  28350. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28351. }
  28352. },
  28353. rightHandBack: {
  28354. height: math.unit(0.95, "feet"),
  28355. name: "Right Hand (Back)",
  28356. image: {
  28357. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28358. }
  28359. },
  28360. rightHandFront: {
  28361. height: math.unit(0.95, "feet"),
  28362. name: "Right Hand (Front)",
  28363. image: {
  28364. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Normal",
  28371. height: math.unit(6 + 4 / 12, "feet"),
  28372. default: true
  28373. },
  28374. ]
  28375. ))
  28376. characterMakers.push(() => makeCharacter(
  28377. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28378. {
  28379. front: {
  28380. height: math.unit(6, "feet"),
  28381. weight: math.unit(320, "lb"),
  28382. name: "Front",
  28383. image: {
  28384. source: "./media/characters/balina-mejeri/front.svg",
  28385. extra: 517 / 488,
  28386. bottom: 44.2 / 561
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(6 + 4 / 12, "feet")
  28394. },
  28395. {
  28396. name: "Business",
  28397. height: math.unit(155, "feet"),
  28398. default: true
  28399. },
  28400. ]
  28401. ))
  28402. characterMakers.push(() => makeCharacter(
  28403. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28404. {
  28405. kneeling: {
  28406. height: math.unit(6 + 4 / 12, "feet"),
  28407. weight: math.unit(300 * 20, "lb"),
  28408. name: "Kneeling",
  28409. image: {
  28410. source: "./media/characters/balbarian/kneeling.svg",
  28411. extra: 922 / 862,
  28412. bottom: 42.4 / 965
  28413. }
  28414. },
  28415. },
  28416. [
  28417. {
  28418. name: "Normal",
  28419. height: math.unit(6 + 4 / 12, "feet")
  28420. },
  28421. {
  28422. name: "Treasured",
  28423. height: math.unit(18 + 9 / 12, "feet"),
  28424. default: true
  28425. },
  28426. {
  28427. name: "Macro",
  28428. height: math.unit(900, "feet")
  28429. },
  28430. ]
  28431. ))
  28432. characterMakers.push(() => makeCharacter(
  28433. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28434. {
  28435. front: {
  28436. height: math.unit(6 + 4 / 12, "feet"),
  28437. weight: math.unit(325, "lb"),
  28438. name: "Front",
  28439. image: {
  28440. source: "./media/characters/balina-amarini/front.svg",
  28441. extra: 415 / 403,
  28442. bottom: 19 / 433.4
  28443. }
  28444. },
  28445. back: {
  28446. height: math.unit(6 + 4 / 12, "feet"),
  28447. weight: math.unit(325, "lb"),
  28448. name: "Back",
  28449. image: {
  28450. source: "./media/characters/balina-amarini/back.svg",
  28451. extra: 415 / 403,
  28452. bottom: 13.5 / 432
  28453. }
  28454. },
  28455. overdrive: {
  28456. height: math.unit(6 + 4 / 12, "feet"),
  28457. weight: math.unit(400, "lb"),
  28458. name: "Overdrive",
  28459. image: {
  28460. source: "./media/characters/balina-amarini/overdrive.svg",
  28461. extra: 269 / 259,
  28462. bottom: 12 / 282
  28463. }
  28464. },
  28465. },
  28466. [
  28467. {
  28468. name: "Boom",
  28469. height: math.unit(9 + 10 / 12, "feet"),
  28470. default: true
  28471. },
  28472. {
  28473. name: "Macro",
  28474. height: math.unit(280, "feet")
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28480. {
  28481. goddess: {
  28482. height: math.unit(600, "feet"),
  28483. weight: math.unit(2000000, "tons"),
  28484. name: "Goddess",
  28485. image: {
  28486. source: "./media/characters/lady-kubwa/goddess.svg",
  28487. extra: 1240.5 / 1223,
  28488. bottom: 22 / 1263
  28489. }
  28490. },
  28491. goddesser: {
  28492. height: math.unit(900, "feet"),
  28493. weight: math.unit(20000000, "lb"),
  28494. name: "Goddess-er",
  28495. image: {
  28496. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28497. extra: 899 / 888,
  28498. bottom: 12.6 / 912
  28499. }
  28500. },
  28501. },
  28502. [
  28503. {
  28504. name: "Macro",
  28505. height: math.unit(600, "feet"),
  28506. default: true
  28507. },
  28508. {
  28509. name: "Megamacro",
  28510. height: math.unit(250, "miles")
  28511. },
  28512. ]
  28513. ))
  28514. characterMakers.push(() => makeCharacter(
  28515. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28516. {
  28517. front: {
  28518. height: math.unit(7 + 7 / 12, "feet"),
  28519. weight: math.unit(250, "lb"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/tala-grovehorn/front.svg",
  28523. extra: 2636 / 2525,
  28524. bottom: 147 / 2781
  28525. }
  28526. },
  28527. back: {
  28528. height: math.unit(7 + 7 / 12, "feet"),
  28529. weight: math.unit(250, "lb"),
  28530. name: "Back",
  28531. image: {
  28532. source: "./media/characters/tala-grovehorn/back.svg",
  28533. extra: 2635 / 2539,
  28534. bottom: 100 / 2732.8
  28535. }
  28536. },
  28537. mouth: {
  28538. height: math.unit(1.15, "feet"),
  28539. name: "Mouth",
  28540. image: {
  28541. source: "./media/characters/tala-grovehorn/mouth.svg"
  28542. }
  28543. },
  28544. dick: {
  28545. height: math.unit(2.36, "feet"),
  28546. name: "Dick",
  28547. image: {
  28548. source: "./media/characters/tala-grovehorn/dick.svg"
  28549. }
  28550. },
  28551. slit: {
  28552. height: math.unit(0.61, "feet"),
  28553. name: "Slit",
  28554. image: {
  28555. source: "./media/characters/tala-grovehorn/slit.svg"
  28556. }
  28557. },
  28558. },
  28559. [
  28560. ]
  28561. ))
  28562. characterMakers.push(() => makeCharacter(
  28563. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28564. {
  28565. front: {
  28566. height: math.unit(7 + 7 / 12, "feet"),
  28567. weight: math.unit(225, "lb"),
  28568. name: "Front",
  28569. image: {
  28570. source: "./media/characters/epona/front.svg",
  28571. extra: 2445 / 2290,
  28572. bottom: 251 / 2696
  28573. }
  28574. },
  28575. back: {
  28576. height: math.unit(7 + 7 / 12, "feet"),
  28577. weight: math.unit(225, "lb"),
  28578. name: "Back",
  28579. image: {
  28580. source: "./media/characters/epona/back.svg",
  28581. extra: 2546 / 2408,
  28582. bottom: 44 / 2589
  28583. }
  28584. },
  28585. genitals: {
  28586. height: math.unit(1.5, "feet"),
  28587. name: "Genitals",
  28588. image: {
  28589. source: "./media/characters/epona/genitals.svg"
  28590. }
  28591. },
  28592. },
  28593. [
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(7 + 7 / 12, "feet"),
  28597. default: true
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(7, "feet"),
  28606. weight: math.unit(518, "lb"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/avia-bloodbourn/front.svg",
  28610. extra: 1466 / 1350,
  28611. bottom: 65 / 1527
  28612. }
  28613. },
  28614. },
  28615. [
  28616. ]
  28617. ))
  28618. characterMakers.push(() => makeCharacter(
  28619. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28620. {
  28621. front: {
  28622. height: math.unit(9.35, "feet"),
  28623. weight: math.unit(600, "lb"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/amera/front.svg",
  28627. extra: 891 / 818,
  28628. bottom: 30 / 922.7
  28629. }
  28630. },
  28631. back: {
  28632. height: math.unit(9.35, "feet"),
  28633. weight: math.unit(600, "lb"),
  28634. name: "Back",
  28635. image: {
  28636. source: "./media/characters/amera/back.svg",
  28637. extra: 876 / 824,
  28638. bottom: 6.8 / 884
  28639. }
  28640. },
  28641. dick: {
  28642. height: math.unit(2.14, "feet"),
  28643. name: "Dick",
  28644. image: {
  28645. source: "./media/characters/amera/dick.svg"
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Normal",
  28652. height: math.unit(9.35, "feet"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28659. {
  28660. kneeling: {
  28661. height: math.unit(3 + 4 / 12, "feet"),
  28662. weight: math.unit(90, "lb"),
  28663. name: "Kneeling",
  28664. image: {
  28665. source: "./media/characters/rosewen/kneeling.svg",
  28666. extra: 1835 / 1571,
  28667. bottom: 27.7 / 1862
  28668. }
  28669. },
  28670. },
  28671. [
  28672. {
  28673. name: "Normal",
  28674. height: math.unit(3 + 4 / 12, "feet"),
  28675. default: true
  28676. },
  28677. ]
  28678. ))
  28679. characterMakers.push(() => makeCharacter(
  28680. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28681. {
  28682. front: {
  28683. height: math.unit(5 + 10 / 12, "feet"),
  28684. weight: math.unit(200, "lb"),
  28685. name: "Front",
  28686. image: {
  28687. source: "./media/characters/sabah/front.svg",
  28688. extra: 849 / 763,
  28689. bottom: 33.9 / 881
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(5 + 10 / 12, "feet"),
  28697. default: true
  28698. },
  28699. ]
  28700. ))
  28701. characterMakers.push(() => makeCharacter(
  28702. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28703. {
  28704. front: {
  28705. height: math.unit(3 + 5 / 12, "feet"),
  28706. weight: math.unit(40, "kg"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/purple-flame/front.svg",
  28710. extra: 1577 / 1412,
  28711. bottom: 97 / 1694
  28712. }
  28713. },
  28714. frontDressed: {
  28715. height: math.unit(3 + 5 / 12, "feet"),
  28716. weight: math.unit(40, "kg"),
  28717. name: "Front (Dressed)",
  28718. image: {
  28719. source: "./media/characters/purple-flame/front-dressed.svg",
  28720. extra: 1577 / 1412,
  28721. bottom: 97 / 1694
  28722. }
  28723. },
  28724. headphones: {
  28725. height: math.unit(0.85, "feet"),
  28726. name: "Headphones",
  28727. image: {
  28728. source: "./media/characters/purple-flame/headphones.svg"
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Really Small",
  28735. height: math.unit(5, "cm")
  28736. },
  28737. {
  28738. name: "Micro",
  28739. height: math.unit(1 + 5 / 12, "feet")
  28740. },
  28741. {
  28742. name: "Normal",
  28743. height: math.unit(3 + 5 / 12, "feet"),
  28744. default: true
  28745. },
  28746. {
  28747. name: "Minimacro",
  28748. height: math.unit(125, "feet")
  28749. },
  28750. {
  28751. name: "Macro",
  28752. height: math.unit(0.5, "miles")
  28753. },
  28754. {
  28755. name: "Megamacro",
  28756. height: math.unit(50, "miles")
  28757. },
  28758. {
  28759. name: "Gigantic",
  28760. height: math.unit(750, "miles")
  28761. },
  28762. {
  28763. name: "Planetary",
  28764. height: math.unit(15000, "miles")
  28765. },
  28766. ]
  28767. ))
  28768. characterMakers.push(() => makeCharacter(
  28769. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28770. {
  28771. front: {
  28772. height: math.unit(14, "feet"),
  28773. weight: math.unit(959, "lb"),
  28774. name: "Front",
  28775. image: {
  28776. source: "./media/characters/arsenal/front.svg",
  28777. extra: 2357 / 2157,
  28778. bottom: 93 / 2458
  28779. }
  28780. },
  28781. },
  28782. [
  28783. {
  28784. name: "Normal",
  28785. height: math.unit(14, "feet"),
  28786. default: true
  28787. },
  28788. ]
  28789. ))
  28790. characterMakers.push(() => makeCharacter(
  28791. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28792. {
  28793. front: {
  28794. height: math.unit(6, "feet"),
  28795. weight: math.unit(150, "lb"),
  28796. name: "Front",
  28797. image: {
  28798. source: "./media/characters/adira/front.svg",
  28799. extra: 1078 / 1029,
  28800. bottom: 87 / 1166
  28801. }
  28802. },
  28803. },
  28804. [
  28805. {
  28806. name: "Micro",
  28807. height: math.unit(4, "inches"),
  28808. default: true
  28809. },
  28810. {
  28811. name: "Macro",
  28812. height: math.unit(50, "feet")
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28818. {
  28819. front: {
  28820. height: math.unit(16, "feet"),
  28821. weight: math.unit(1000, "lb"),
  28822. name: "Front",
  28823. image: {
  28824. source: "./media/characters/grim/front.svg",
  28825. extra: 622 / 614,
  28826. bottom: 18.1 / 642
  28827. }
  28828. },
  28829. back: {
  28830. height: math.unit(16, "feet"),
  28831. weight: math.unit(1000, "lb"),
  28832. name: "Back",
  28833. image: {
  28834. source: "./media/characters/grim/back.svg",
  28835. extra: 610.6 / 602,
  28836. bottom: 40.8 / 652
  28837. }
  28838. },
  28839. hunched: {
  28840. height: math.unit(9.75, "feet"),
  28841. weight: math.unit(1000, "lb"),
  28842. name: "Hunched",
  28843. image: {
  28844. source: "./media/characters/grim/hunched.svg",
  28845. extra: 304 / 297,
  28846. bottom: 35.4 / 394
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Normal",
  28853. height: math.unit(16, "feet"),
  28854. default: true
  28855. },
  28856. ]
  28857. ))
  28858. characterMakers.push(() => makeCharacter(
  28859. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28860. {
  28861. front: {
  28862. height: math.unit(2.3, "meters"),
  28863. weight: math.unit(300, "lb"),
  28864. name: "Front",
  28865. image: {
  28866. source: "./media/characters/sinja/front-sfw.svg",
  28867. extra: 1393 / 1294,
  28868. bottom: 70 / 1463
  28869. }
  28870. },
  28871. frontNsfw: {
  28872. height: math.unit(2.3, "meters"),
  28873. weight: math.unit(300, "lb"),
  28874. name: "Front (NSFW)",
  28875. image: {
  28876. source: "./media/characters/sinja/front-nsfw.svg",
  28877. extra: 1393 / 1294,
  28878. bottom: 70 / 1463
  28879. }
  28880. },
  28881. back: {
  28882. height: math.unit(2.3, "meters"),
  28883. weight: math.unit(300, "lb"),
  28884. name: "Back",
  28885. image: {
  28886. source: "./media/characters/sinja/back.svg",
  28887. extra: 1393 / 1294,
  28888. bottom: 70 / 1463
  28889. }
  28890. },
  28891. head: {
  28892. height: math.unit(1.771, "feet"),
  28893. name: "Head",
  28894. image: {
  28895. source: "./media/characters/sinja/head.svg"
  28896. }
  28897. },
  28898. slit: {
  28899. height: math.unit(0.8, "feet"),
  28900. name: "Slit",
  28901. image: {
  28902. source: "./media/characters/sinja/slit.svg"
  28903. }
  28904. },
  28905. },
  28906. [
  28907. {
  28908. name: "Normal",
  28909. height: math.unit(2.3, "meters")
  28910. },
  28911. {
  28912. name: "Macro",
  28913. height: math.unit(91, "meters"),
  28914. default: true
  28915. },
  28916. {
  28917. name: "Megamacro",
  28918. height: math.unit(91440, "meters")
  28919. },
  28920. {
  28921. name: "Gigamacro",
  28922. height: math.unit(60960000, "meters")
  28923. },
  28924. {
  28925. name: "Teramacro",
  28926. height: math.unit(9144000000, "meters")
  28927. },
  28928. ]
  28929. ))
  28930. characterMakers.push(() => makeCharacter(
  28931. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28932. {
  28933. front: {
  28934. height: math.unit(1.7, "meters"),
  28935. weight: math.unit(130, "lb"),
  28936. name: "Front",
  28937. image: {
  28938. source: "./media/characters/kyu/front.svg",
  28939. extra: 415 / 395,
  28940. bottom: 5 / 420
  28941. }
  28942. },
  28943. head: {
  28944. height: math.unit(1.75, "feet"),
  28945. name: "Head",
  28946. image: {
  28947. source: "./media/characters/kyu/head.svg"
  28948. }
  28949. },
  28950. foot: {
  28951. height: math.unit(0.81, "feet"),
  28952. name: "Foot",
  28953. image: {
  28954. source: "./media/characters/kyu/foot.svg"
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(1.7, "meters")
  28962. },
  28963. {
  28964. name: "Macro",
  28965. height: math.unit(131, "feet"),
  28966. default: true
  28967. },
  28968. {
  28969. name: "Megamacro",
  28970. height: math.unit(91440, "meters")
  28971. },
  28972. {
  28973. name: "Gigamacro",
  28974. height: math.unit(60960000, "meters")
  28975. },
  28976. {
  28977. name: "Teramacro",
  28978. height: math.unit(9144000000, "meters")
  28979. },
  28980. ]
  28981. ))
  28982. characterMakers.push(() => makeCharacter(
  28983. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28984. {
  28985. front: {
  28986. height: math.unit(7 + 1 / 12, "feet"),
  28987. weight: math.unit(250, "lb"),
  28988. name: "Front",
  28989. image: {
  28990. source: "./media/characters/joey/front.svg",
  28991. extra: 1791 / 1537,
  28992. bottom: 28 / 1816
  28993. }
  28994. },
  28995. },
  28996. [
  28997. {
  28998. name: "Micro",
  28999. height: math.unit(3, "inches")
  29000. },
  29001. {
  29002. name: "Normal",
  29003. height: math.unit(7 + 1 / 12, "feet"),
  29004. default: true
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(165, "cm"),
  29013. weight: math.unit(140, "lb"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/sam-evans/front.svg",
  29017. extra: 3417 / 3230,
  29018. bottom: 41.3 / 3417
  29019. }
  29020. },
  29021. frontSixTails: {
  29022. height: math.unit(165, "cm"),
  29023. weight: math.unit(140, "lb"),
  29024. name: "Front-six-tails",
  29025. image: {
  29026. source: "./media/characters/sam-evans/front-six-tails.svg",
  29027. extra: 3417 / 3230,
  29028. bottom: 41.3 / 3417
  29029. }
  29030. },
  29031. back: {
  29032. height: math.unit(165, "cm"),
  29033. weight: math.unit(140, "lb"),
  29034. name: "Back",
  29035. image: {
  29036. source: "./media/characters/sam-evans/back.svg",
  29037. extra: 3227 / 3032,
  29038. bottom: 6.8 / 3234
  29039. }
  29040. },
  29041. face: {
  29042. height: math.unit(0.68, "feet"),
  29043. name: "Face",
  29044. image: {
  29045. source: "./media/characters/sam-evans/face.svg"
  29046. }
  29047. },
  29048. },
  29049. [
  29050. {
  29051. name: "Normal",
  29052. height: math.unit(165, "cm"),
  29053. default: true
  29054. },
  29055. {
  29056. name: "Macro",
  29057. height: math.unit(100, "meters")
  29058. },
  29059. {
  29060. name: "Macro+",
  29061. height: math.unit(800, "meters")
  29062. },
  29063. {
  29064. name: "Macro++",
  29065. height: math.unit(3, "km")
  29066. },
  29067. {
  29068. name: "Macro+++",
  29069. height: math.unit(30, "km")
  29070. },
  29071. ]
  29072. ))
  29073. characterMakers.push(() => makeCharacter(
  29074. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29075. {
  29076. front: {
  29077. height: math.unit(10, "feet"),
  29078. weight: math.unit(750, "lb"),
  29079. name: "Front",
  29080. image: {
  29081. source: "./media/characters/juliet-a/front.svg",
  29082. extra: 1766 / 1720,
  29083. bottom: 43 / 1809
  29084. }
  29085. },
  29086. back: {
  29087. height: math.unit(10, "feet"),
  29088. weight: math.unit(750, "lb"),
  29089. name: "Back",
  29090. image: {
  29091. source: "./media/characters/juliet-a/back.svg",
  29092. extra: 1781 / 1734,
  29093. bottom: 35 / 1810,
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Normal",
  29100. height: math.unit(10, "feet"),
  29101. default: true
  29102. },
  29103. {
  29104. name: "Dragon Form",
  29105. height: math.unit(250, "feet")
  29106. },
  29107. {
  29108. name: "Macro",
  29109. height: math.unit(1000, "feet")
  29110. },
  29111. {
  29112. name: "Megamacro",
  29113. height: math.unit(10000, "feet")
  29114. }
  29115. ]
  29116. ))
  29117. characterMakers.push(() => makeCharacter(
  29118. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29119. {
  29120. regular: {
  29121. height: math.unit(7 + 3 / 12, "feet"),
  29122. weight: math.unit(260, "lb"),
  29123. name: "Regular",
  29124. image: {
  29125. source: "./media/characters/wild/regular.svg",
  29126. extra: 97.45 / 92,
  29127. bottom: 6.8 / 104.3
  29128. }
  29129. },
  29130. biggums: {
  29131. height: math.unit(8 + 6 / 12, "feet"),
  29132. weight: math.unit(425, "lb"),
  29133. name: "Biggums",
  29134. image: {
  29135. source: "./media/characters/wild/biggums.svg",
  29136. extra: 97.45 / 92,
  29137. bottom: 7.5 / 132.34
  29138. }
  29139. },
  29140. mawRegular: {
  29141. height: math.unit(1.24, "feet"),
  29142. name: "Maw (Regular)",
  29143. image: {
  29144. source: "./media/characters/wild/maw.svg"
  29145. }
  29146. },
  29147. mawBiggums: {
  29148. height: math.unit(1.47, "feet"),
  29149. name: "Maw (Biggums)",
  29150. image: {
  29151. source: "./media/characters/wild/maw.svg"
  29152. }
  29153. },
  29154. },
  29155. [
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(7 + 3 / 12, "feet"),
  29159. default: true
  29160. },
  29161. ]
  29162. ))
  29163. characterMakers.push(() => makeCharacter(
  29164. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29165. {
  29166. front: {
  29167. height: math.unit(2.5, "meters"),
  29168. weight: math.unit(200, "kg"),
  29169. name: "Front",
  29170. image: {
  29171. source: "./media/characters/vidar/front.svg",
  29172. extra: 2994 / 2795,
  29173. bottom: 56 / 3061
  29174. }
  29175. },
  29176. back: {
  29177. height: math.unit(2.5, "meters"),
  29178. weight: math.unit(200, "kg"),
  29179. name: "Back",
  29180. image: {
  29181. source: "./media/characters/vidar/back.svg",
  29182. extra: 3131 / 2928,
  29183. bottom: 13.5 / 3141.5
  29184. }
  29185. },
  29186. feral: {
  29187. height: math.unit(2.5, "meters"),
  29188. weight: math.unit(2000, "kg"),
  29189. name: "Feral",
  29190. image: {
  29191. source: "./media/characters/vidar/feral.svg",
  29192. extra: 2790 / 1765,
  29193. bottom: 6 / 2796
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Normal",
  29200. height: math.unit(2.5, "meters"),
  29201. default: true
  29202. },
  29203. {
  29204. name: "Macro",
  29205. height: math.unit(100, "meters")
  29206. },
  29207. ]
  29208. ))
  29209. characterMakers.push(() => makeCharacter(
  29210. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29211. {
  29212. front: {
  29213. height: math.unit(5 + 9 / 12, "feet"),
  29214. weight: math.unit(120, "lb"),
  29215. name: "Front",
  29216. image: {
  29217. source: "./media/characters/ash/front.svg",
  29218. extra: 2189 / 1961,
  29219. bottom: 5.2 / 2194
  29220. }
  29221. },
  29222. },
  29223. [
  29224. {
  29225. name: "Normal",
  29226. height: math.unit(5 + 9 / 12, "feet"),
  29227. default: true
  29228. },
  29229. ]
  29230. ))
  29231. characterMakers.push(() => makeCharacter(
  29232. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29233. {
  29234. front: {
  29235. height: math.unit(9, "feet"),
  29236. weight: math.unit(10000, "lb"),
  29237. name: "Front",
  29238. image: {
  29239. source: "./media/characters/gygabite/front.svg",
  29240. bottom: 31.7 / 537.8,
  29241. extra: 505 / 370
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(9, "feet"),
  29249. default: true
  29250. },
  29251. ]
  29252. ))
  29253. characterMakers.push(() => makeCharacter(
  29254. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29255. {
  29256. front: {
  29257. height: math.unit(12, "feet"),
  29258. weight: math.unit(4000, "lb"),
  29259. name: "Front",
  29260. image: {
  29261. source: "./media/characters/p0tat0/front.svg",
  29262. extra: 1065 / 921,
  29263. bottom: 55.7 / 1121.25
  29264. }
  29265. },
  29266. },
  29267. [
  29268. {
  29269. name: "Normal",
  29270. height: math.unit(12, "feet"),
  29271. default: true
  29272. },
  29273. ]
  29274. ))
  29275. characterMakers.push(() => makeCharacter(
  29276. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29277. {
  29278. side: {
  29279. height: math.unit(6.5, "feet"),
  29280. weight: math.unit(800, "lb"),
  29281. name: "Side",
  29282. image: {
  29283. source: "./media/characters/dusk/side.svg",
  29284. extra: 615 / 373,
  29285. bottom: 53 / 664
  29286. }
  29287. },
  29288. sitting: {
  29289. height: math.unit(7, "feet"),
  29290. weight: math.unit(800, "lb"),
  29291. name: "Sitting",
  29292. image: {
  29293. source: "./media/characters/dusk/sitting.svg",
  29294. extra: 753 / 425,
  29295. bottom: 33 / 774
  29296. }
  29297. },
  29298. head: {
  29299. height: math.unit(6.1, "feet"),
  29300. name: "Head",
  29301. image: {
  29302. source: "./media/characters/dusk/head.svg"
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(7, "feet"),
  29310. default: true
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29316. {
  29317. front: {
  29318. height: math.unit(15, "feet"),
  29319. weight: math.unit(7000, "lb"),
  29320. name: "Front",
  29321. image: {
  29322. source: "./media/characters/jay-direwolf/front.svg",
  29323. extra: 1810 / 1732,
  29324. bottom: 66 / 1892
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(15, "feet"),
  29332. default: true
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(4 + 9 / 12, "feet"),
  29341. weight: math.unit(130, "lb"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/anchovie/front.svg",
  29345. extra: 382 / 350,
  29346. bottom: 25 / 409
  29347. }
  29348. },
  29349. back: {
  29350. height: math.unit(4 + 9 / 12, "feet"),
  29351. weight: math.unit(130, "lb"),
  29352. name: "Back",
  29353. image: {
  29354. source: "./media/characters/anchovie/back.svg",
  29355. extra: 385 / 352,
  29356. bottom: 16.6 / 402
  29357. }
  29358. },
  29359. frontDressed: {
  29360. height: math.unit(4 + 9 / 12, "feet"),
  29361. weight: math.unit(130, "lb"),
  29362. name: "Front (Dressed)",
  29363. image: {
  29364. source: "./media/characters/anchovie/front-dressed.svg",
  29365. extra: 382 / 350,
  29366. bottom: 25 / 409
  29367. }
  29368. },
  29369. backDressed: {
  29370. height: math.unit(4 + 9 / 12, "feet"),
  29371. weight: math.unit(130, "lb"),
  29372. name: "Back (Dressed)",
  29373. image: {
  29374. source: "./media/characters/anchovie/back-dressed.svg",
  29375. extra: 385 / 352,
  29376. bottom: 16.6 / 402
  29377. }
  29378. },
  29379. },
  29380. [
  29381. {
  29382. name: "Micro",
  29383. height: math.unit(6.4, "inches")
  29384. },
  29385. {
  29386. name: "Normal",
  29387. height: math.unit(4 + 9 / 12, "feet"),
  29388. default: true
  29389. },
  29390. ]
  29391. ))
  29392. characterMakers.push(() => makeCharacter(
  29393. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29394. {
  29395. front: {
  29396. height: math.unit(2, "meters"),
  29397. weight: math.unit(180, "lb"),
  29398. name: "Front",
  29399. image: {
  29400. source: "./media/characters/acidrenamon/front.svg",
  29401. extra: 987 / 890,
  29402. bottom: 22.8 / 1009
  29403. }
  29404. },
  29405. back: {
  29406. height: math.unit(2, "meters"),
  29407. weight: math.unit(180, "lb"),
  29408. name: "Back",
  29409. image: {
  29410. source: "./media/characters/acidrenamon/back.svg",
  29411. extra: 983 / 891,
  29412. bottom: 8.4 / 992
  29413. }
  29414. },
  29415. head: {
  29416. height: math.unit(1.92, "feet"),
  29417. name: "Head",
  29418. image: {
  29419. source: "./media/characters/acidrenamon/head.svg"
  29420. }
  29421. },
  29422. rump: {
  29423. height: math.unit(1.72, "feet"),
  29424. name: "Rump",
  29425. image: {
  29426. source: "./media/characters/acidrenamon/rump.svg"
  29427. }
  29428. },
  29429. tail: {
  29430. height: math.unit(4.2, "feet"),
  29431. name: "Tail",
  29432. image: {
  29433. source: "./media/characters/acidrenamon/tail.svg"
  29434. }
  29435. },
  29436. },
  29437. [
  29438. {
  29439. name: "Normal",
  29440. height: math.unit(2, "meters"),
  29441. default: true
  29442. },
  29443. {
  29444. name: "Minimacro",
  29445. height: math.unit(7, "meters")
  29446. },
  29447. {
  29448. name: "Macro",
  29449. height: math.unit(200, "meters")
  29450. },
  29451. {
  29452. name: "Gigamacro",
  29453. height: math.unit(0.2, "earths")
  29454. },
  29455. ]
  29456. ))
  29457. characterMakers.push(() => makeCharacter(
  29458. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29459. {
  29460. front: {
  29461. height: math.unit(152, "feet"),
  29462. name: "Front",
  29463. image: {
  29464. source: "./media/characters/kenzie-lee/front.svg",
  29465. extra: 1869/1774,
  29466. bottom: 128/1997
  29467. }
  29468. },
  29469. side: {
  29470. height: math.unit(86, "feet"),
  29471. name: "Side",
  29472. image: {
  29473. source: "./media/characters/kenzie-lee/side.svg",
  29474. extra: 930/815,
  29475. bottom: 177/1107
  29476. }
  29477. },
  29478. paw: {
  29479. height: math.unit(15, "feet"),
  29480. name: "Paw",
  29481. image: {
  29482. source: "./media/characters/kenzie-lee/paw.svg"
  29483. }
  29484. },
  29485. },
  29486. [
  29487. {
  29488. name: "Kenzie Flea",
  29489. height: math.unit(2, "mm"),
  29490. default: true
  29491. },
  29492. {
  29493. name: "Micro",
  29494. height: math.unit(2, "inches")
  29495. },
  29496. {
  29497. name: "Normal",
  29498. height: math.unit(152, "feet")
  29499. },
  29500. {
  29501. name: "Megamacro",
  29502. height: math.unit(7, "miles")
  29503. },
  29504. {
  29505. name: "Gigamacro",
  29506. height: math.unit(8000, "miles")
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(6, "feet"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/withers/front.svg",
  29518. extra: 1935/1760,
  29519. bottom: 72/2007
  29520. }
  29521. },
  29522. back: {
  29523. height: math.unit(6, "feet"),
  29524. name: "Back",
  29525. image: {
  29526. source: "./media/characters/withers/back.svg",
  29527. extra: 1944/1792,
  29528. bottom: 12/1956
  29529. }
  29530. },
  29531. dressed: {
  29532. height: math.unit(6, "feet"),
  29533. name: "Dressed",
  29534. image: {
  29535. source: "./media/characters/withers/dressed.svg",
  29536. extra: 1937/1765,
  29537. bottom: 73/2010
  29538. }
  29539. },
  29540. phase1: {
  29541. height: math.unit(1.1, "feet"),
  29542. name: "Phase 1",
  29543. image: {
  29544. source: "./media/characters/withers/phase-1.svg",
  29545. extra: 1885/1232,
  29546. bottom: 0/1885
  29547. }
  29548. },
  29549. phase2: {
  29550. height: math.unit(1.05, "feet"),
  29551. name: "Phase 2",
  29552. image: {
  29553. source: "./media/characters/withers/phase-2.svg",
  29554. extra: 1792/1090,
  29555. bottom: 0/1792
  29556. }
  29557. },
  29558. partyWipe: {
  29559. height: math.unit(1.1, "feet"),
  29560. name: "Party Wipe",
  29561. image: {
  29562. source: "./media/characters/withers/party-wipe.svg",
  29563. extra: 1864/1207,
  29564. bottom: 0/1864
  29565. }
  29566. },
  29567. },
  29568. [
  29569. {
  29570. name: "Macro",
  29571. height: math.unit(167, "feet"),
  29572. default: true
  29573. },
  29574. {
  29575. name: "Megamacro",
  29576. height: math.unit(15, "miles")
  29577. }
  29578. ]
  29579. ))
  29580. characterMakers.push(() => makeCharacter(
  29581. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29582. {
  29583. front: {
  29584. height: math.unit(6 + 7 / 12, "feet"),
  29585. weight: math.unit(250, "lb"),
  29586. name: "Front",
  29587. image: {
  29588. source: "./media/characters/nemoskii/front.svg",
  29589. extra: 2270 / 1734,
  29590. bottom: 86 / 2354
  29591. }
  29592. },
  29593. back: {
  29594. height: math.unit(6 + 7 / 12, "feet"),
  29595. weight: math.unit(250, "lb"),
  29596. name: "Back",
  29597. image: {
  29598. source: "./media/characters/nemoskii/back.svg",
  29599. extra: 1845 / 1788,
  29600. bottom: 10.5 / 1852
  29601. }
  29602. },
  29603. head: {
  29604. height: math.unit(1.31, "feet"),
  29605. name: "Head",
  29606. image: {
  29607. source: "./media/characters/nemoskii/head.svg"
  29608. }
  29609. },
  29610. },
  29611. [
  29612. {
  29613. name: "Micro",
  29614. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29615. },
  29616. {
  29617. name: "Normal",
  29618. height: math.unit(6 + 7 / 12, "feet"),
  29619. default: true
  29620. },
  29621. {
  29622. name: "Macro",
  29623. height: math.unit((6 + 7 / 12) * 150, "feet")
  29624. },
  29625. {
  29626. name: "Macro+",
  29627. height: math.unit((6 + 7 / 12) * 500, "feet")
  29628. },
  29629. {
  29630. name: "Megamacro",
  29631. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(1, "mile"),
  29640. weight: math.unit(265261.9, "lb"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/shui/front.svg",
  29644. extra: 1633 / 1564,
  29645. bottom: 91.5 / 1726
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Macro",
  29652. height: math.unit(1, "mile"),
  29653. default: true
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(12 + 6 / 12, "feet"),
  29662. weight: math.unit(1342, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/arokh-takakura/front.svg",
  29666. extra: 1089 / 1043,
  29667. bottom: 77.4 / 1176.7
  29668. }
  29669. },
  29670. back: {
  29671. height: math.unit(12 + 6 / 12, "feet"),
  29672. weight: math.unit(1342, "lb"),
  29673. name: "Back",
  29674. image: {
  29675. source: "./media/characters/arokh-takakura/back.svg",
  29676. extra: 1046 / 1019,
  29677. bottom: 102 / 1150
  29678. }
  29679. },
  29680. },
  29681. [
  29682. {
  29683. name: "Big",
  29684. height: math.unit(12 + 6 / 12, "feet"),
  29685. default: true
  29686. },
  29687. ]
  29688. ))
  29689. characterMakers.push(() => makeCharacter(
  29690. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29691. {
  29692. front: {
  29693. height: math.unit(5 + 6 / 12, "feet"),
  29694. weight: math.unit(150, "lb"),
  29695. name: "Front",
  29696. image: {
  29697. source: "./media/characters/theo/front.svg",
  29698. extra: 1184 / 1131,
  29699. bottom: 7.4 / 1191
  29700. }
  29701. },
  29702. },
  29703. [
  29704. {
  29705. name: "Micro",
  29706. height: math.unit(5, "inches")
  29707. },
  29708. {
  29709. name: "Normal",
  29710. height: math.unit(5 + 6 / 12, "feet"),
  29711. default: true
  29712. },
  29713. ]
  29714. ))
  29715. characterMakers.push(() => makeCharacter(
  29716. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29717. {
  29718. front: {
  29719. height: math.unit(5 + 9 / 12, "feet"),
  29720. weight: math.unit(130, "lb"),
  29721. name: "Front",
  29722. image: {
  29723. source: "./media/characters/cecelia-swift/front.svg",
  29724. extra: 502 / 484,
  29725. bottom: 23 / 523
  29726. }
  29727. },
  29728. back: {
  29729. height: math.unit(5 + 9 / 12, "feet"),
  29730. weight: math.unit(130, "lb"),
  29731. name: "Back",
  29732. image: {
  29733. source: "./media/characters/cecelia-swift/back.svg",
  29734. extra: 499 / 485,
  29735. bottom: 12 / 511
  29736. }
  29737. },
  29738. head: {
  29739. height: math.unit(0.90, "feet"),
  29740. name: "Head",
  29741. image: {
  29742. source: "./media/characters/cecelia-swift/head.svg"
  29743. }
  29744. },
  29745. rump: {
  29746. height: math.unit(1.75, "feet"),
  29747. name: "Rump",
  29748. image: {
  29749. source: "./media/characters/cecelia-swift/rump.svg"
  29750. }
  29751. },
  29752. },
  29753. [
  29754. {
  29755. name: "Normal",
  29756. height: math.unit(5 + 9 / 12, "feet"),
  29757. default: true
  29758. },
  29759. {
  29760. name: "Big",
  29761. height: math.unit(50, "feet")
  29762. },
  29763. {
  29764. name: "Macro",
  29765. height: math.unit(100, "feet")
  29766. },
  29767. {
  29768. name: "Macro+",
  29769. height: math.unit(500, "feet")
  29770. },
  29771. {
  29772. name: "Macro++",
  29773. height: math.unit(1000, "feet")
  29774. },
  29775. ]
  29776. ))
  29777. characterMakers.push(() => makeCharacter(
  29778. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29779. {
  29780. front: {
  29781. height: math.unit(6, "feet"),
  29782. weight: math.unit(150, "lb"),
  29783. name: "Front",
  29784. image: {
  29785. source: "./media/characters/kaunan/front.svg",
  29786. extra: 2890 / 2523,
  29787. bottom: 49 / 2939
  29788. }
  29789. },
  29790. },
  29791. [
  29792. {
  29793. name: "Macro",
  29794. height: math.unit(150, "feet"),
  29795. default: true
  29796. },
  29797. ]
  29798. ))
  29799. characterMakers.push(() => makeCharacter(
  29800. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29801. {
  29802. dressed: {
  29803. height: math.unit(175, "cm"),
  29804. weight: math.unit(60, "kg"),
  29805. name: "Dressed",
  29806. image: {
  29807. source: "./media/characters/fei/dressed.svg",
  29808. extra: 1402/1278,
  29809. bottom: 27/1429
  29810. }
  29811. },
  29812. nude: {
  29813. height: math.unit(175, "cm"),
  29814. weight: math.unit(60, "kg"),
  29815. name: "Nude",
  29816. image: {
  29817. source: "./media/characters/fei/nude.svg",
  29818. extra: 1402/1278,
  29819. bottom: 27/1429
  29820. }
  29821. },
  29822. heels: {
  29823. height: math.unit(0.466, "feet"),
  29824. name: "Heels",
  29825. image: {
  29826. source: "./media/characters/fei/heels.svg",
  29827. extra: 156/152,
  29828. bottom: 28/184
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Mortal",
  29835. height: math.unit(175, "cm")
  29836. },
  29837. {
  29838. name: "Normal",
  29839. height: math.unit(3500, "m")
  29840. },
  29841. {
  29842. name: "Stroll",
  29843. height: math.unit(18.4, "km"),
  29844. default: true
  29845. },
  29846. {
  29847. name: "Showoff",
  29848. height: math.unit(175, "km")
  29849. },
  29850. ]
  29851. ))
  29852. characterMakers.push(() => makeCharacter(
  29853. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29854. {
  29855. front: {
  29856. height: math.unit(7, "feet"),
  29857. weight: math.unit(1000, "kg"),
  29858. name: "Front",
  29859. image: {
  29860. source: "./media/characters/edrax/front.svg",
  29861. extra: 2838 / 2550,
  29862. bottom: 130 / 2968
  29863. }
  29864. },
  29865. },
  29866. [
  29867. {
  29868. name: "Small",
  29869. height: math.unit(7, "feet")
  29870. },
  29871. {
  29872. name: "Normal",
  29873. height: math.unit(1500, "meters")
  29874. },
  29875. {
  29876. name: "Mega",
  29877. height: math.unit(12000000, "km"),
  29878. default: true
  29879. },
  29880. {
  29881. name: "Megamacro",
  29882. height: math.unit(10600000, "lightyears")
  29883. },
  29884. {
  29885. name: "Hypermacro",
  29886. height: math.unit(256, "yottameters")
  29887. },
  29888. ]
  29889. ))
  29890. characterMakers.push(() => makeCharacter(
  29891. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29892. {
  29893. front: {
  29894. height: math.unit(10, "feet"),
  29895. weight: math.unit(750, "lb"),
  29896. name: "Front",
  29897. image: {
  29898. source: "./media/characters/clove/front.svg",
  29899. extra: 1918/1751,
  29900. bottom: 52/1970
  29901. }
  29902. },
  29903. back: {
  29904. height: math.unit(10, "feet"),
  29905. weight: math.unit(750, "lb"),
  29906. name: "Back",
  29907. image: {
  29908. source: "./media/characters/clove/back.svg",
  29909. extra: 1912/1747,
  29910. bottom: 50/1962
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Normal",
  29917. height: math.unit(10, "feet"),
  29918. default: true
  29919. },
  29920. ]
  29921. ))
  29922. characterMakers.push(() => makeCharacter(
  29923. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29924. {
  29925. front: {
  29926. height: math.unit(4, "feet"),
  29927. weight: math.unit(50, "lb"),
  29928. name: "Front",
  29929. image: {
  29930. source: "./media/characters/alex-rabbit/front.svg",
  29931. extra: 507 / 458,
  29932. bottom: 18.5 / 527
  29933. }
  29934. },
  29935. back: {
  29936. height: math.unit(4, "feet"),
  29937. weight: math.unit(50, "lb"),
  29938. name: "Back",
  29939. image: {
  29940. source: "./media/characters/alex-rabbit/back.svg",
  29941. extra: 502 / 460,
  29942. bottom: 18.9 / 521
  29943. }
  29944. },
  29945. },
  29946. [
  29947. {
  29948. name: "Normal",
  29949. height: math.unit(4, "feet"),
  29950. default: true
  29951. },
  29952. ]
  29953. ))
  29954. characterMakers.push(() => makeCharacter(
  29955. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29956. {
  29957. front: {
  29958. height: math.unit(1 + 3 / 12, "feet"),
  29959. weight: math.unit(80, "lb"),
  29960. name: "Front",
  29961. image: {
  29962. source: "./media/characters/zander-rose/front.svg",
  29963. extra: 916 / 797,
  29964. bottom: 17 / 933
  29965. }
  29966. },
  29967. back: {
  29968. height: math.unit(1 + 3 / 12, "feet"),
  29969. weight: math.unit(80, "lb"),
  29970. name: "Back",
  29971. image: {
  29972. source: "./media/characters/zander-rose/back.svg",
  29973. extra: 903 / 779,
  29974. bottom: 31 / 934
  29975. }
  29976. },
  29977. },
  29978. [
  29979. {
  29980. name: "Normal",
  29981. height: math.unit(1 + 3 / 12, "feet"),
  29982. default: true
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29988. {
  29989. anthro: {
  29990. height: math.unit(6, "feet"),
  29991. weight: math.unit(150, "lb"),
  29992. name: "Anthro",
  29993. image: {
  29994. source: "./media/characters/razz/anthro.svg",
  29995. extra: 1437 / 1343,
  29996. bottom: 48 / 1485
  29997. }
  29998. },
  29999. feral: {
  30000. height: math.unit(6, "feet"),
  30001. weight: math.unit(150, "lb"),
  30002. name: "Feral",
  30003. image: {
  30004. source: "./media/characters/razz/feral.svg",
  30005. extra: 2569 / 1385,
  30006. bottom: 95 / 2664
  30007. }
  30008. },
  30009. },
  30010. [
  30011. {
  30012. name: "Normal",
  30013. height: math.unit(6, "feet"),
  30014. default: true
  30015. },
  30016. ]
  30017. ))
  30018. characterMakers.push(() => makeCharacter(
  30019. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30020. {
  30021. front: {
  30022. height: math.unit(9 + 4 / 12, "feet"),
  30023. weight: math.unit(500, "lb"),
  30024. name: "Front",
  30025. image: {
  30026. source: "./media/characters/morrigan/front.svg",
  30027. extra: 2707 / 2579,
  30028. bottom: 156 / 2863
  30029. }
  30030. },
  30031. },
  30032. [
  30033. {
  30034. name: "Normal",
  30035. height: math.unit(9 + 4 / 12, "feet"),
  30036. default: true
  30037. },
  30038. ]
  30039. ))
  30040. characterMakers.push(() => makeCharacter(
  30041. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30042. {
  30043. front: {
  30044. height: math.unit(5, "stories"),
  30045. weight: math.unit(4000, "lb"),
  30046. name: "Front",
  30047. image: {
  30048. source: "./media/characters/jenene/front.svg",
  30049. extra: 1780 / 1710,
  30050. bottom: 57 / 1837
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Normal",
  30057. height: math.unit(5, "stories"),
  30058. default: true
  30059. },
  30060. ]
  30061. ))
  30062. characterMakers.push(() => makeCharacter(
  30063. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30064. {
  30065. taurSfw: {
  30066. height: math.unit(10, "meters"),
  30067. weight: math.unit(17500, "kg"),
  30068. name: "Taur",
  30069. image: {
  30070. source: "./media/characters/faey/taur-sfw.svg",
  30071. extra: 1200 / 968,
  30072. bottom: 41 / 1241
  30073. }
  30074. },
  30075. chestmaw: {
  30076. height: math.unit(2.01, "meters"),
  30077. name: "Chestmaw",
  30078. image: {
  30079. source: "./media/characters/faey/chestmaw.svg"
  30080. }
  30081. },
  30082. foot: {
  30083. height: math.unit(2.43, "meters"),
  30084. name: "Foot",
  30085. image: {
  30086. source: "./media/characters/faey/foot.svg"
  30087. }
  30088. },
  30089. jaws: {
  30090. height: math.unit(1.66, "meters"),
  30091. name: "Jaws",
  30092. image: {
  30093. source: "./media/characters/faey/jaws.svg"
  30094. }
  30095. },
  30096. tongues: {
  30097. height: math.unit(2.01, "meters"),
  30098. name: "Tongues",
  30099. image: {
  30100. source: "./media/characters/faey/tongues.svg"
  30101. }
  30102. },
  30103. },
  30104. [
  30105. {
  30106. name: "Small",
  30107. height: math.unit(10, "meters"),
  30108. default: true
  30109. },
  30110. {
  30111. name: "Big",
  30112. height: math.unit(500000, "km")
  30113. },
  30114. ]
  30115. ))
  30116. characterMakers.push(() => makeCharacter(
  30117. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30118. {
  30119. front: {
  30120. height: math.unit(7, "feet"),
  30121. weight: math.unit(275, "lb"),
  30122. name: "Front",
  30123. image: {
  30124. source: "./media/characters/roku/front.svg",
  30125. extra: 903 / 878,
  30126. bottom: 37 / 940
  30127. }
  30128. },
  30129. },
  30130. [
  30131. {
  30132. name: "Normal",
  30133. height: math.unit(7, "feet"),
  30134. default: true
  30135. },
  30136. {
  30137. name: "Macro",
  30138. height: math.unit(500, "feet")
  30139. },
  30140. {
  30141. name: "Megamacro",
  30142. height: math.unit(200, "miles")
  30143. },
  30144. ]
  30145. ))
  30146. characterMakers.push(() => makeCharacter(
  30147. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30148. {
  30149. front: {
  30150. height: math.unit(6 + 2 / 12, "feet"),
  30151. weight: math.unit(150, "lb"),
  30152. name: "Front",
  30153. image: {
  30154. source: "./media/characters/lira/front.svg",
  30155. extra: 1727 / 1605,
  30156. bottom: 26 / 1753
  30157. }
  30158. },
  30159. back: {
  30160. height: math.unit(6 + 2 / 12, "feet"),
  30161. weight: math.unit(150, "lb"),
  30162. name: "Back",
  30163. image: {
  30164. source: "./media/characters/lira/back.svg",
  30165. extra: 1713/1621,
  30166. bottom: 20/1733
  30167. }
  30168. },
  30169. hand: {
  30170. height: math.unit(0.75, "feet"),
  30171. name: "Hand",
  30172. image: {
  30173. source: "./media/characters/lira/hand.svg"
  30174. }
  30175. },
  30176. maw: {
  30177. height: math.unit(0.65, "feet"),
  30178. name: "Maw",
  30179. image: {
  30180. source: "./media/characters/lira/maw.svg"
  30181. }
  30182. },
  30183. pawDigi: {
  30184. height: math.unit(1.6, "feet"),
  30185. name: "Paw Digi",
  30186. image: {
  30187. source: "./media/characters/lira/paw-digi.svg"
  30188. }
  30189. },
  30190. pawPlanti: {
  30191. height: math.unit(1.4, "feet"),
  30192. name: "Paw Planti",
  30193. image: {
  30194. source: "./media/characters/lira/paw-planti.svg"
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(6 + 2 / 12, "feet"),
  30202. default: true
  30203. },
  30204. {
  30205. name: "Macro",
  30206. height: math.unit(100, "feet")
  30207. },
  30208. {
  30209. name: "Macro²",
  30210. height: math.unit(1600, "feet")
  30211. },
  30212. {
  30213. name: "Planetary",
  30214. height: math.unit(20, "earths")
  30215. },
  30216. ]
  30217. ))
  30218. characterMakers.push(() => makeCharacter(
  30219. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30220. {
  30221. front: {
  30222. height: math.unit(6, "feet"),
  30223. weight: math.unit(150, "lb"),
  30224. name: "Front",
  30225. image: {
  30226. source: "./media/characters/hadjet/front.svg",
  30227. extra: 1480 / 1346,
  30228. bottom: 26 / 1506
  30229. }
  30230. },
  30231. frontNsfw: {
  30232. height: math.unit(6, "feet"),
  30233. weight: math.unit(150, "lb"),
  30234. name: "Front (NSFW)",
  30235. image: {
  30236. source: "./media/characters/hadjet/front-nsfw.svg",
  30237. extra: 1440 / 1358,
  30238. bottom: 52 / 1492
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Macro",
  30245. height: math.unit(10, "stories"),
  30246. default: true
  30247. },
  30248. {
  30249. name: "Megamacro",
  30250. height: math.unit(1.5, "miles")
  30251. },
  30252. {
  30253. name: "Megamacro+",
  30254. height: math.unit(5, "miles")
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30260. {
  30261. side: {
  30262. height: math.unit(106, "feet"),
  30263. weight: math.unit(500, "tonnes"),
  30264. name: "Side",
  30265. image: {
  30266. source: "./media/characters/kodran/side.svg",
  30267. extra: 553 / 480,
  30268. bottom: 33 / 586
  30269. }
  30270. },
  30271. front: {
  30272. height: math.unit(132, "feet"),
  30273. weight: math.unit(500, "tonnes"),
  30274. name: "Front",
  30275. image: {
  30276. source: "./media/characters/kodran/front.svg",
  30277. extra: 667 / 643,
  30278. bottom: 42 / 709
  30279. }
  30280. },
  30281. flying: {
  30282. height: math.unit(350, "feet"),
  30283. weight: math.unit(500, "tonnes"),
  30284. name: "Flying",
  30285. image: {
  30286. source: "./media/characters/kodran/flying.svg"
  30287. }
  30288. },
  30289. foot: {
  30290. height: math.unit(33, "feet"),
  30291. name: "Foot",
  30292. image: {
  30293. source: "./media/characters/kodran/foot.svg"
  30294. }
  30295. },
  30296. footFront: {
  30297. height: math.unit(19, "feet"),
  30298. name: "Foot (Front)",
  30299. image: {
  30300. source: "./media/characters/kodran/foot-front.svg",
  30301. extra: 261 / 261,
  30302. bottom: 91 / 352
  30303. }
  30304. },
  30305. headFront: {
  30306. height: math.unit(53, "feet"),
  30307. name: "Head (Front)",
  30308. image: {
  30309. source: "./media/characters/kodran/head-front.svg"
  30310. }
  30311. },
  30312. headSide: {
  30313. height: math.unit(65, "feet"),
  30314. name: "Head (Side)",
  30315. image: {
  30316. source: "./media/characters/kodran/head-side.svg"
  30317. }
  30318. },
  30319. throat: {
  30320. height: math.unit(79, "feet"),
  30321. name: "Throat",
  30322. image: {
  30323. source: "./media/characters/kodran/throat.svg"
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Large",
  30330. height: math.unit(106, "feet"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30337. {
  30338. side: {
  30339. height: math.unit(11, "feet"),
  30340. weight: math.unit(150, "lb"),
  30341. name: "Side",
  30342. image: {
  30343. source: "./media/characters/pyxaron/side.svg",
  30344. extra: 305 / 195,
  30345. bottom: 17 / 322
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "Normal",
  30352. height: math.unit(11, "feet"),
  30353. default: true
  30354. },
  30355. ]
  30356. ))
  30357. characterMakers.push(() => makeCharacter(
  30358. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30359. {
  30360. front: {
  30361. height: math.unit(6, "feet"),
  30362. weight: math.unit(150, "lb"),
  30363. name: "Front",
  30364. image: {
  30365. source: "./media/characters/meep/front.svg",
  30366. extra: 88 / 80,
  30367. bottom: 6 / 94
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Fun Sized",
  30374. height: math.unit(2, "inches"),
  30375. default: true
  30376. },
  30377. {
  30378. name: "Friend Sized",
  30379. height: math.unit(8, "inches")
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(15, "feet"),
  30388. weight: math.unit(2500, "lb"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/holly-rabbit/front.svg",
  30392. extra: 1433 / 1233,
  30393. bottom: 125 / 1558
  30394. }
  30395. },
  30396. dick: {
  30397. height: math.unit(4.6, "feet"),
  30398. name: "Dick",
  30399. image: {
  30400. source: "./media/characters/holly-rabbit/dick.svg"
  30401. }
  30402. },
  30403. },
  30404. [
  30405. {
  30406. name: "Normal",
  30407. height: math.unit(15, "feet"),
  30408. default: true
  30409. },
  30410. {
  30411. name: "Macro",
  30412. height: math.unit(250, "feet")
  30413. },
  30414. {
  30415. name: "Macro+",
  30416. height: math.unit(2500, "feet")
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30422. {
  30423. front: {
  30424. height: math.unit(3.02, "meters"),
  30425. weight: math.unit(500, "kg"),
  30426. name: "Front",
  30427. image: {
  30428. source: "./media/characters/drena/front.svg",
  30429. extra: 282 / 243,
  30430. bottom: 8 / 290
  30431. }
  30432. },
  30433. side: {
  30434. height: math.unit(3.02, "meters"),
  30435. weight: math.unit(500, "kg"),
  30436. name: "Side",
  30437. image: {
  30438. source: "./media/characters/drena/side.svg",
  30439. extra: 280 / 245,
  30440. bottom: 10 / 290
  30441. }
  30442. },
  30443. back: {
  30444. height: math.unit(3.02, "meters"),
  30445. weight: math.unit(500, "kg"),
  30446. name: "Back",
  30447. image: {
  30448. source: "./media/characters/drena/back.svg",
  30449. extra: 278 / 243,
  30450. bottom: 2 / 280
  30451. }
  30452. },
  30453. foot: {
  30454. height: math.unit(0.75, "meters"),
  30455. name: "Foot",
  30456. image: {
  30457. source: "./media/characters/drena/foot.svg"
  30458. }
  30459. },
  30460. maw: {
  30461. height: math.unit(0.82, "meters"),
  30462. name: "Maw",
  30463. image: {
  30464. source: "./media/characters/drena/maw.svg"
  30465. }
  30466. },
  30467. eating: {
  30468. height: math.unit(0.75, "meters"),
  30469. name: "Eating",
  30470. image: {
  30471. source: "./media/characters/drena/eating.svg"
  30472. }
  30473. },
  30474. rump: {
  30475. height: math.unit(0.93, "meters"),
  30476. name: "Rump",
  30477. image: {
  30478. source: "./media/characters/drena/rump.svg"
  30479. }
  30480. },
  30481. },
  30482. [
  30483. {
  30484. name: "Normal",
  30485. height: math.unit(3.02, "meters"),
  30486. default: true
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30492. {
  30493. front: {
  30494. height: math.unit(6 + 4 / 12, "feet"),
  30495. weight: math.unit(250, "lb"),
  30496. name: "Front",
  30497. image: {
  30498. source: "./media/characters/remmyzilla/front.svg",
  30499. extra: 4033 / 3588,
  30500. bottom: 123 / 4156
  30501. }
  30502. },
  30503. back: {
  30504. height: math.unit(6 + 4 / 12, "feet"),
  30505. weight: math.unit(250, "lb"),
  30506. name: "Back",
  30507. image: {
  30508. source: "./media/characters/remmyzilla/back.svg",
  30509. extra: 2687 / 2555,
  30510. bottom: 48 / 2735
  30511. }
  30512. },
  30513. paw: {
  30514. height: math.unit(1.73, "feet"),
  30515. name: "Paw",
  30516. image: {
  30517. source: "./media/characters/remmyzilla/paw.svg"
  30518. },
  30519. extraAttributes: {
  30520. "toeSize": {
  30521. name: "Toe Size",
  30522. power: 2,
  30523. type: "area",
  30524. base: math.unit(0.0035, "m^2")
  30525. },
  30526. "padSize": {
  30527. name: "Pad Size",
  30528. power: 2,
  30529. type: "area",
  30530. base: math.unit(0.015, "m^2")
  30531. },
  30532. "pawsize": {
  30533. name: "Paw Size",
  30534. power: 2,
  30535. type: "area",
  30536. base: math.unit(0.072, "m^2")
  30537. },
  30538. }
  30539. },
  30540. maw: {
  30541. height: math.unit(1.73, "feet"),
  30542. name: "Maw",
  30543. image: {
  30544. source: "./media/characters/remmyzilla/maw.svg"
  30545. }
  30546. },
  30547. },
  30548. [
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(6 + 4 / 12, "feet")
  30552. },
  30553. {
  30554. name: "Minimacro",
  30555. height: math.unit(12 + 8 / 12, "feet")
  30556. },
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(640, "feet"),
  30560. default: true
  30561. },
  30562. {
  30563. name: "Megamacro",
  30564. height: math.unit(6400, "feet")
  30565. },
  30566. {
  30567. name: "Gigamacro",
  30568. height: math.unit(64000, "miles")
  30569. },
  30570. ]
  30571. ))
  30572. characterMakers.push(() => makeCharacter(
  30573. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30574. {
  30575. front: {
  30576. height: math.unit(2.5, "meters"),
  30577. weight: math.unit(300, "lb"),
  30578. name: "Front",
  30579. image: {
  30580. source: "./media/characters/lawrence/front.svg",
  30581. extra: 357 / 335,
  30582. bottom: 30 / 387
  30583. }
  30584. },
  30585. back: {
  30586. height: math.unit(2.5, "meters"),
  30587. weight: math.unit(300, "lb"),
  30588. name: "Back",
  30589. image: {
  30590. source: "./media/characters/lawrence/back.svg",
  30591. extra: 357 / 338,
  30592. bottom: 16 / 373
  30593. }
  30594. },
  30595. head: {
  30596. height: math.unit(0.9, "meter"),
  30597. name: "Head",
  30598. image: {
  30599. source: "./media/characters/lawrence/head.svg"
  30600. }
  30601. },
  30602. maw: {
  30603. height: math.unit(0.7, "meter"),
  30604. name: "Maw",
  30605. image: {
  30606. source: "./media/characters/lawrence/maw.svg"
  30607. }
  30608. },
  30609. footBottom: {
  30610. height: math.unit(0.5, "meter"),
  30611. name: "Foot (Bottom)",
  30612. image: {
  30613. source: "./media/characters/lawrence/foot-bottom.svg"
  30614. }
  30615. },
  30616. footTop: {
  30617. height: math.unit(0.5, "meter"),
  30618. name: "Foot (Top)",
  30619. image: {
  30620. source: "./media/characters/lawrence/foot-top.svg"
  30621. }
  30622. },
  30623. },
  30624. [
  30625. {
  30626. name: "Normal",
  30627. height: math.unit(2.5, "meters"),
  30628. default: true
  30629. },
  30630. {
  30631. name: "Macro",
  30632. height: math.unit(95, "meters")
  30633. },
  30634. {
  30635. name: "Megamacro",
  30636. height: math.unit(150, "km")
  30637. },
  30638. ]
  30639. ))
  30640. characterMakers.push(() => makeCharacter(
  30641. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30642. {
  30643. front: {
  30644. height: math.unit(4.2, "meters"),
  30645. name: "Front",
  30646. image: {
  30647. source: "./media/characters/sydney/front.svg",
  30648. extra: 1323 / 1277,
  30649. bottom: 111 / 1434
  30650. }
  30651. },
  30652. },
  30653. [
  30654. {
  30655. name: "Normal",
  30656. height: math.unit(4.2, "meters"),
  30657. default: true
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30663. {
  30664. back: {
  30665. height: math.unit(201, "feet"),
  30666. name: "Back",
  30667. image: {
  30668. source: "./media/characters/jessica/back.svg",
  30669. extra: 273 / 259,
  30670. bottom: 7 / 280
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Normal",
  30677. height: math.unit(201, "feet"),
  30678. default: true
  30679. },
  30680. {
  30681. name: "Megamacro",
  30682. height: math.unit(8, "miles")
  30683. },
  30684. ]
  30685. ))
  30686. characterMakers.push(() => makeCharacter(
  30687. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30688. {
  30689. side: {
  30690. height: math.unit(5.6, "m"),
  30691. weight: math.unit(8000, "kg"),
  30692. name: "Side",
  30693. image: {
  30694. source: "./media/characters/victoria/side.svg",
  30695. extra: 1542/1229,
  30696. bottom: 124/1666
  30697. }
  30698. },
  30699. maw: {
  30700. height: math.unit(7.14, "feet"),
  30701. name: "Maw",
  30702. image: {
  30703. source: "./media/characters/victoria/maw.svg"
  30704. }
  30705. },
  30706. },
  30707. [
  30708. {
  30709. name: "Normal",
  30710. height: math.unit(5.6, "m"),
  30711. default: true
  30712. },
  30713. ]
  30714. ))
  30715. characterMakers.push(() => makeCharacter(
  30716. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30717. {
  30718. front: {
  30719. height: math.unit(5 + 6 / 12, "feet"),
  30720. name: "Front",
  30721. image: {
  30722. source: "./media/characters/cat/front.svg",
  30723. extra: 1449/1295,
  30724. bottom: 34/1483
  30725. },
  30726. form: "cat",
  30727. default: true
  30728. },
  30729. back: {
  30730. height: math.unit(5 + 6 / 12, "feet"),
  30731. name: "Back",
  30732. image: {
  30733. source: "./media/characters/cat/back.svg",
  30734. extra: 1466/1301,
  30735. bottom: 19/1485
  30736. },
  30737. form: "cat"
  30738. },
  30739. taur: {
  30740. height: math.unit(7, "feet"),
  30741. name: "Taur",
  30742. image: {
  30743. source: "./media/characters/cat/taur.svg",
  30744. extra: 1389/1233,
  30745. bottom: 83/1472
  30746. },
  30747. form: "taur",
  30748. default: true
  30749. },
  30750. lucarioFront: {
  30751. height: math.unit(4, "feet"),
  30752. name: "Lucario (Front)",
  30753. image: {
  30754. source: "./media/characters/cat/lucario-front.svg",
  30755. extra: 1149/1019,
  30756. bottom: 84/1233
  30757. },
  30758. form: "lucario",
  30759. default: true
  30760. },
  30761. lucarioBack: {
  30762. height: math.unit(4, "feet"),
  30763. name: "Lucario (Back)",
  30764. image: {
  30765. source: "./media/characters/cat/lucario-back.svg",
  30766. extra: 1190/1059,
  30767. bottom: 33/1223
  30768. },
  30769. form: "lucario"
  30770. },
  30771. megaLucario: {
  30772. height: math.unit(4, "feet"),
  30773. name: "Mega Lucario",
  30774. image: {
  30775. source: "./media/characters/cat/mega-lucario.svg",
  30776. extra: 1515 / 1319,
  30777. bottom: 63 / 1578
  30778. },
  30779. form: "lucario"
  30780. },
  30781. nickit: {
  30782. height: math.unit(2, "feet"),
  30783. name: "Nickit",
  30784. image: {
  30785. source: "./media/characters/cat/nickit.svg",
  30786. extra: 1980 / 1585,
  30787. bottom: 102 / 2082
  30788. },
  30789. form: "nickit",
  30790. default: true
  30791. },
  30792. lopunnyFront: {
  30793. height: math.unit(5, "feet"),
  30794. name: "Lopunny (Front)",
  30795. image: {
  30796. source: "./media/characters/cat/lopunny-front.svg",
  30797. extra: 1782 / 1469,
  30798. bottom: 38 / 1820
  30799. },
  30800. form: "lopunny",
  30801. default: true
  30802. },
  30803. lopunnyBack: {
  30804. height: math.unit(5, "feet"),
  30805. name: "Lopunny (Back)",
  30806. image: {
  30807. source: "./media/characters/cat/lopunny-back.svg",
  30808. extra: 1660 / 1490,
  30809. bottom: 25 / 1685
  30810. },
  30811. form: "lopunny"
  30812. },
  30813. },
  30814. [
  30815. {
  30816. name: "Really small",
  30817. height: math.unit(1, "nm")
  30818. },
  30819. {
  30820. name: "Micro",
  30821. height: math.unit(5, "inches")
  30822. },
  30823. {
  30824. name: "Normal",
  30825. height: math.unit(5 + 6 / 12, "feet"),
  30826. default: true
  30827. },
  30828. {
  30829. name: "Macro",
  30830. height: math.unit(50, "feet")
  30831. },
  30832. {
  30833. name: "Macro+",
  30834. height: math.unit(150, "feet")
  30835. },
  30836. {
  30837. name: "Megamacro",
  30838. height: math.unit(100, "miles")
  30839. },
  30840. ]
  30841. ))
  30842. characterMakers.push(() => makeCharacter(
  30843. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30844. {
  30845. front: {
  30846. height: math.unit(63.4, "meters"),
  30847. weight: math.unit(3.28349e+6, "kilograms"),
  30848. name: "Front",
  30849. image: {
  30850. source: "./media/characters/kirina-violet/front.svg",
  30851. extra: 2812 / 2725,
  30852. bottom: 0 / 2812
  30853. }
  30854. },
  30855. back: {
  30856. height: math.unit(63.4, "meters"),
  30857. weight: math.unit(3.28349e+6, "kilograms"),
  30858. name: "Back",
  30859. image: {
  30860. source: "./media/characters/kirina-violet/back.svg",
  30861. extra: 2812 / 2725,
  30862. bottom: 0 / 2812
  30863. }
  30864. },
  30865. mouth: {
  30866. height: math.unit(4.35, "meters"),
  30867. name: "Mouth",
  30868. image: {
  30869. source: "./media/characters/kirina-violet/mouth.svg"
  30870. }
  30871. },
  30872. paw: {
  30873. height: math.unit(5.6, "meters"),
  30874. name: "Paw",
  30875. image: {
  30876. source: "./media/characters/kirina-violet/paw.svg"
  30877. }
  30878. },
  30879. tail: {
  30880. height: math.unit(18, "meters"),
  30881. name: "Tail",
  30882. image: {
  30883. source: "./media/characters/kirina-violet/tail.svg"
  30884. }
  30885. },
  30886. },
  30887. [
  30888. {
  30889. name: "Macro",
  30890. height: math.unit(63.4, "meters"),
  30891. default: true
  30892. },
  30893. ]
  30894. ))
  30895. characterMakers.push(() => makeCharacter(
  30896. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30897. {
  30898. front: {
  30899. height: math.unit(75, "feet"),
  30900. name: "Front",
  30901. image: {
  30902. source: "./media/characters/cat-gigachu/front.svg",
  30903. extra: 1239/1027,
  30904. bottom: 32/1271
  30905. }
  30906. },
  30907. back: {
  30908. height: math.unit(75, "feet"),
  30909. name: "Back",
  30910. image: {
  30911. source: "./media/characters/cat-gigachu/back.svg",
  30912. extra: 1229/1030,
  30913. bottom: 9/1238
  30914. }
  30915. },
  30916. },
  30917. [
  30918. {
  30919. name: "Dynamax",
  30920. height: math.unit(75, "feet"),
  30921. default: true
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30927. {
  30928. front: {
  30929. height: math.unit(6, "feet"),
  30930. weight: math.unit(150, "lb"),
  30931. name: "Front",
  30932. image: {
  30933. source: "./media/characters/sfaiyan/front.svg",
  30934. extra: 999 / 978,
  30935. bottom: 5 / 1004
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Normal",
  30942. height: math.unit(1.82, "meters")
  30943. },
  30944. {
  30945. name: "Giant",
  30946. height: math.unit(2.27, "km"),
  30947. default: true
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(179, "cm"),
  30956. weight: math.unit(100, "kg"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/raunehkeli/front.svg",
  30960. extra: 1934 / 1926,
  30961. bottom: 0 / 1934
  30962. }
  30963. },
  30964. },
  30965. [
  30966. {
  30967. name: "Normal",
  30968. height: math.unit(179, "cm")
  30969. },
  30970. {
  30971. name: "Maximum",
  30972. height: math.unit(575, "meters"),
  30973. default: true
  30974. },
  30975. ]
  30976. ))
  30977. characterMakers.push(() => makeCharacter(
  30978. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30979. {
  30980. front: {
  30981. height: math.unit(6, "feet"),
  30982. weight: math.unit(150, "lb"),
  30983. name: "Front",
  30984. image: {
  30985. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30986. extra: 2625 / 2518,
  30987. bottom: 60 / 2685
  30988. }
  30989. },
  30990. },
  30991. [
  30992. {
  30993. name: "Normal",
  30994. height: math.unit(6 + 2 / 12, "feet")
  30995. },
  30996. {
  30997. name: "Macro",
  30998. height: math.unit(1180, "feet"),
  30999. default: true
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31005. {
  31006. front: {
  31007. height: math.unit(5 + 6 / 12, "feet"),
  31008. weight: math.unit(108, "lb"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/lilith-zott/front.svg",
  31012. extra: 2510 / 2238,
  31013. bottom: 100 / 2610
  31014. }
  31015. },
  31016. frontDressed: {
  31017. height: math.unit(5 + 6 / 12, "feet"),
  31018. weight: math.unit(108, "lb"),
  31019. name: "Front (Dressed)",
  31020. image: {
  31021. source: "./media/characters/lilith-zott/front-dressed.svg",
  31022. extra: 2510 / 2238,
  31023. bottom: 100 / 2610
  31024. }
  31025. },
  31026. },
  31027. [
  31028. {
  31029. name: "Normal",
  31030. height: math.unit(5 + 6 / 12, "feet")
  31031. },
  31032. {
  31033. name: "Macro",
  31034. height: math.unit(1030, "feet"),
  31035. default: true
  31036. },
  31037. ]
  31038. ))
  31039. characterMakers.push(() => makeCharacter(
  31040. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31041. {
  31042. front: {
  31043. height: math.unit(6, "feet"),
  31044. weight: math.unit(150, "lb"),
  31045. name: "Front",
  31046. image: {
  31047. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31048. extra: 2567 / 2435,
  31049. bottom: 39 / 2606
  31050. }
  31051. },
  31052. frontSuper: {
  31053. height: math.unit(6, "feet"),
  31054. name: "Front (Super)",
  31055. image: {
  31056. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31057. extra: 2567 / 2435,
  31058. bottom: 39 / 2606
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Normal",
  31065. height: math.unit(5 + 10 / 12, "feet")
  31066. },
  31067. {
  31068. name: "Macro",
  31069. height: math.unit(1100, "feet"),
  31070. default: true
  31071. },
  31072. ]
  31073. ))
  31074. characterMakers.push(() => makeCharacter(
  31075. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31076. {
  31077. front: {
  31078. height: math.unit(100, "miles"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/sona/front.svg",
  31082. extra: 2433 / 2201,
  31083. bottom: 53 / 2486
  31084. }
  31085. },
  31086. foot: {
  31087. height: math.unit(16.1, "miles"),
  31088. name: "Foot",
  31089. image: {
  31090. source: "./media/characters/sona/foot.svg"
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Macro",
  31097. height: math.unit(100, "miles"),
  31098. default: true
  31099. },
  31100. ]
  31101. ))
  31102. characterMakers.push(() => makeCharacter(
  31103. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31104. {
  31105. front: {
  31106. height: math.unit(6, "feet"),
  31107. weight: math.unit(150, "lb"),
  31108. name: "Front",
  31109. image: {
  31110. source: "./media/characters/bailey/front.svg",
  31111. extra: 1778 / 1724,
  31112. bottom: 30 / 1808
  31113. }
  31114. },
  31115. },
  31116. [
  31117. {
  31118. name: "Micro",
  31119. height: math.unit(4, "inches")
  31120. },
  31121. {
  31122. name: "Normal",
  31123. height: math.unit(5 + 5 / 12, "feet"),
  31124. default: true
  31125. },
  31126. {
  31127. name: "Macro",
  31128. height: math.unit(250, "feet")
  31129. },
  31130. {
  31131. name: "Megamacro",
  31132. height: math.unit(100, "miles")
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(5 + 2 / 12, "feet"),
  31141. weight: math.unit(120, "lb"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/snaps/front.svg",
  31145. extra: 2370 / 2177,
  31146. bottom: 48 / 2418
  31147. }
  31148. },
  31149. back: {
  31150. height: math.unit(5 + 2 / 12, "feet"),
  31151. weight: math.unit(120, "lb"),
  31152. name: "Back",
  31153. image: {
  31154. source: "./media/characters/snaps/back.svg",
  31155. extra: 2408 / 2258,
  31156. bottom: 15 / 2423
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Micro",
  31163. height: math.unit(9, "inches")
  31164. },
  31165. {
  31166. name: "Normal",
  31167. height: math.unit(5 + 2 / 12, "feet"),
  31168. default: true
  31169. },
  31170. {
  31171. name: "Mini Macro",
  31172. height: math.unit(10, "feet")
  31173. },
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31178. {
  31179. front: {
  31180. height: math.unit(1.8, "meters"),
  31181. weight: math.unit(85, "kg"),
  31182. name: "Front",
  31183. image: {
  31184. source: "./media/characters/azteck/front.svg",
  31185. extra: 2815 / 2625,
  31186. bottom: 89 / 2904
  31187. }
  31188. },
  31189. back: {
  31190. height: math.unit(1.8, "meters"),
  31191. weight: math.unit(85, "kg"),
  31192. name: "Back",
  31193. image: {
  31194. source: "./media/characters/azteck/back.svg",
  31195. extra: 2856 / 2648,
  31196. bottom: 85 / 2941
  31197. }
  31198. },
  31199. frontDressed: {
  31200. height: math.unit(1.8, "meters"),
  31201. weight: math.unit(85, "kg"),
  31202. name: "Front (Dressed)",
  31203. image: {
  31204. source: "./media/characters/azteck/front-dressed.svg",
  31205. extra: 2147 / 2003,
  31206. bottom: 68 / 2215
  31207. }
  31208. },
  31209. head: {
  31210. height: math.unit(0.47, "meters"),
  31211. weight: math.unit(85, "kg"),
  31212. name: "Head",
  31213. image: {
  31214. source: "./media/characters/azteck/head.svg"
  31215. }
  31216. },
  31217. },
  31218. [
  31219. {
  31220. name: "Bite sized",
  31221. height: math.unit(16, "cm")
  31222. },
  31223. {
  31224. name: "Normal",
  31225. height: math.unit(1.8, "meters"),
  31226. default: true
  31227. },
  31228. ]
  31229. ))
  31230. characterMakers.push(() => makeCharacter(
  31231. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31232. {
  31233. front: {
  31234. height: math.unit(6, "feet"),
  31235. weight: math.unit(150, "lb"),
  31236. name: "Front",
  31237. image: {
  31238. source: "./media/characters/pidge/front.svg",
  31239. extra: 1936/1820,
  31240. bottom: 0/1936
  31241. }
  31242. },
  31243. back: {
  31244. height: math.unit(6, "feet"),
  31245. weight: math.unit(150, "lb"),
  31246. name: "Back",
  31247. image: {
  31248. source: "./media/characters/pidge/back.svg",
  31249. extra: 1938/1843,
  31250. bottom: 0/1938
  31251. }
  31252. },
  31253. casual: {
  31254. height: math.unit(6, "feet"),
  31255. weight: math.unit(150, "lb"),
  31256. name: "Casual",
  31257. image: {
  31258. source: "./media/characters/pidge/casual.svg",
  31259. extra: 1936/1820,
  31260. bottom: 0/1936
  31261. }
  31262. },
  31263. tech: {
  31264. height: math.unit(6, "feet"),
  31265. weight: math.unit(150, "lb"),
  31266. name: "Tech",
  31267. image: {
  31268. source: "./media/characters/pidge/tech.svg",
  31269. extra: 1802/1682,
  31270. bottom: 0/1802
  31271. }
  31272. },
  31273. head: {
  31274. height: math.unit(1.61, "feet"),
  31275. name: "Head",
  31276. image: {
  31277. source: "./media/characters/pidge/head.svg"
  31278. }
  31279. },
  31280. collar: {
  31281. height: math.unit(0.82, "feet"),
  31282. name: "Collar",
  31283. image: {
  31284. source: "./media/characters/pidge/collar.svg"
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Macro",
  31291. height: math.unit(2, "mile"),
  31292. default: true
  31293. },
  31294. {
  31295. name: "PUPPY",
  31296. height: math.unit(20, "miles")
  31297. },
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31302. {
  31303. front: {
  31304. height: math.unit(6, "feet"),
  31305. weight: math.unit(150, "lb"),
  31306. name: "Front",
  31307. image: {
  31308. source: "./media/characters/en/front.svg",
  31309. extra: 1697 / 1563,
  31310. bottom: 103 / 1800
  31311. }
  31312. },
  31313. back: {
  31314. height: math.unit(6, "feet"),
  31315. weight: math.unit(150, "lb"),
  31316. name: "Back",
  31317. image: {
  31318. source: "./media/characters/en/back.svg",
  31319. extra: 1700 / 1570,
  31320. bottom: 51 / 1751
  31321. }
  31322. },
  31323. frontDressed: {
  31324. height: math.unit(6, "feet"),
  31325. weight: math.unit(150, "lb"),
  31326. name: "Front (Dressed)",
  31327. image: {
  31328. source: "./media/characters/en/front-dressed.svg",
  31329. extra: 1697 / 1563,
  31330. bottom: 103 / 1800
  31331. }
  31332. },
  31333. backDressed: {
  31334. height: math.unit(6, "feet"),
  31335. weight: math.unit(150, "lb"),
  31336. name: "Back (Dressed)",
  31337. image: {
  31338. source: "./media/characters/en/back-dressed.svg",
  31339. extra: 1700 / 1570,
  31340. bottom: 51 / 1751
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Macro",
  31347. height: math.unit(210, "feet"),
  31348. default: true
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(6, "feet"),
  31357. weight: math.unit(150, "lb"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/haze-orris/front.svg",
  31361. extra: 3975 / 3525,
  31362. bottom: 137 / 4112
  31363. }
  31364. },
  31365. },
  31366. [
  31367. {
  31368. name: "Micro",
  31369. height: math.unit(150, "mm"),
  31370. default: true
  31371. },
  31372. ]
  31373. ))
  31374. characterMakers.push(() => makeCharacter(
  31375. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31376. {
  31377. front: {
  31378. height: math.unit(6, "feet"),
  31379. weight: math.unit(150, "lb"),
  31380. name: "Front",
  31381. image: {
  31382. source: "./media/characters/casselene-yaro/front.svg",
  31383. extra: 4721 / 4541,
  31384. bottom: 82 / 4803
  31385. }
  31386. },
  31387. back: {
  31388. height: math.unit(6, "feet"),
  31389. weight: math.unit(150, "lb"),
  31390. name: "Back",
  31391. image: {
  31392. source: "./media/characters/casselene-yaro/back.svg",
  31393. extra: 4569 / 4377,
  31394. bottom: 69 / 4638
  31395. }
  31396. },
  31397. dressed: {
  31398. height: math.unit(6, "feet"),
  31399. weight: math.unit(150, "lb"),
  31400. name: "Dressed",
  31401. image: {
  31402. source: "./media/characters/casselene-yaro/dressed.svg",
  31403. extra: 4721 / 4541,
  31404. bottom: 82 / 4803
  31405. }
  31406. },
  31407. maw: {
  31408. height: math.unit(1, "feet"),
  31409. name: "Maw",
  31410. image: {
  31411. source: "./media/characters/casselene-yaro/maw.svg"
  31412. }
  31413. },
  31414. },
  31415. [
  31416. {
  31417. name: "Macro",
  31418. height: math.unit(190, "feet"),
  31419. default: true
  31420. },
  31421. ]
  31422. ))
  31423. characterMakers.push(() => makeCharacter(
  31424. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31425. {
  31426. front: {
  31427. height: math.unit(10, "feet"),
  31428. weight: math.unit(15015, "lb"),
  31429. name: "Front",
  31430. image: {
  31431. source: "./media/characters/platine/front.svg",
  31432. extra: 1741/1650,
  31433. bottom: 84/1825
  31434. }
  31435. },
  31436. side: {
  31437. height: math.unit(10, "feet"),
  31438. weight: math.unit(15015, "lb"),
  31439. name: "Side",
  31440. image: {
  31441. source: "./media/characters/platine/side.svg",
  31442. extra: 1790/1705,
  31443. bottom: 29/1819
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Normal",
  31450. height: math.unit(10, "feet"),
  31451. default: true
  31452. },
  31453. {
  31454. name: "Macro",
  31455. height: math.unit(100, "feet")
  31456. },
  31457. {
  31458. name: "Megamacro",
  31459. height: math.unit(1000, "feet")
  31460. },
  31461. ]
  31462. ))
  31463. characterMakers.push(() => makeCharacter(
  31464. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31465. {
  31466. front: {
  31467. height: math.unit(15 + 5 / 12, "feet"),
  31468. weight: math.unit(4600, "lb"),
  31469. name: "Front",
  31470. image: {
  31471. source: "./media/characters/neapolitan-ananassa/front.svg",
  31472. extra: 2903 / 2736,
  31473. bottom: 0 / 2903
  31474. }
  31475. },
  31476. side: {
  31477. height: math.unit(15 + 5 / 12, "feet"),
  31478. weight: math.unit(4600, "lb"),
  31479. name: "Side",
  31480. image: {
  31481. source: "./media/characters/neapolitan-ananassa/side.svg",
  31482. extra: 2925 / 2719,
  31483. bottom: 0 / 2925
  31484. }
  31485. },
  31486. back: {
  31487. height: math.unit(15 + 5 / 12, "feet"),
  31488. weight: math.unit(4600, "lb"),
  31489. name: "Back",
  31490. image: {
  31491. source: "./media/characters/neapolitan-ananassa/back.svg",
  31492. extra: 2903 / 2736,
  31493. bottom: 0 / 2903
  31494. }
  31495. },
  31496. },
  31497. [
  31498. {
  31499. name: "Normal",
  31500. height: math.unit(15 + 5 / 12, "feet"),
  31501. default: true
  31502. },
  31503. {
  31504. name: "Post-Millenium",
  31505. height: math.unit(35 + 5 / 12, "feet")
  31506. },
  31507. {
  31508. name: "Post-Era",
  31509. height: math.unit(450 + 5 / 12, "feet")
  31510. },
  31511. ]
  31512. ))
  31513. characterMakers.push(() => makeCharacter(
  31514. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31515. {
  31516. front: {
  31517. height: math.unit(300, "meters"),
  31518. weight: math.unit(125000, "tonnes"),
  31519. name: "Front",
  31520. image: {
  31521. source: "./media/characters/pazuzu/front.svg",
  31522. extra: 877 / 794,
  31523. bottom: 47 / 924
  31524. }
  31525. },
  31526. },
  31527. [
  31528. {
  31529. name: "Macro",
  31530. height: math.unit(300, "meters"),
  31531. default: true
  31532. },
  31533. ]
  31534. ))
  31535. characterMakers.push(() => makeCharacter(
  31536. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31537. {
  31538. side: {
  31539. height: math.unit(10 + 7 / 12, "feet"),
  31540. weight: math.unit(2.5, "tons"),
  31541. name: "Side",
  31542. image: {
  31543. source: "./media/characters/aasha/side.svg",
  31544. extra: 1345 / 1245,
  31545. bottom: 111 / 1456
  31546. }
  31547. },
  31548. back: {
  31549. height: math.unit(10 + 7 / 12, "feet"),
  31550. weight: math.unit(2.5, "tons"),
  31551. name: "Back",
  31552. image: {
  31553. source: "./media/characters/aasha/back.svg",
  31554. extra: 1133 / 1057,
  31555. bottom: 257 / 1390
  31556. }
  31557. },
  31558. },
  31559. [
  31560. {
  31561. name: "Normal",
  31562. height: math.unit(10 + 7 / 12, "feet"),
  31563. default: true
  31564. },
  31565. ]
  31566. ))
  31567. characterMakers.push(() => makeCharacter(
  31568. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31569. {
  31570. front: {
  31571. height: math.unit(6 + 3 / 12, "feet"),
  31572. name: "Front",
  31573. image: {
  31574. source: "./media/characters/nevan/front.svg",
  31575. extra: 704 / 704,
  31576. bottom: 28 / 732
  31577. }
  31578. },
  31579. back: {
  31580. height: math.unit(6 + 3 / 12, "feet"),
  31581. name: "Back",
  31582. image: {
  31583. source: "./media/characters/nevan/back.svg",
  31584. extra: 714 / 714,
  31585. bottom: 21 / 735
  31586. }
  31587. },
  31588. frontFlaccid: {
  31589. height: math.unit(6 + 3 / 12, "feet"),
  31590. name: "Front (Flaccid)",
  31591. image: {
  31592. source: "./media/characters/nevan/front-flaccid.svg",
  31593. extra: 704 / 704,
  31594. bottom: 28 / 732
  31595. }
  31596. },
  31597. frontErect: {
  31598. height: math.unit(6 + 3 / 12, "feet"),
  31599. name: "Front (Erect)",
  31600. image: {
  31601. source: "./media/characters/nevan/front-erect.svg",
  31602. extra: 704 / 704,
  31603. bottom: 28 / 732
  31604. }
  31605. },
  31606. backFlaccid: {
  31607. height: math.unit(6 + 3 / 12, "feet"),
  31608. name: "Back (Flaccid)",
  31609. image: {
  31610. source: "./media/characters/nevan/back-flaccid.svg",
  31611. extra: 714 / 714,
  31612. bottom: 21 / 735
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(6 + 3 / 12, "feet"),
  31620. default: true
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(4, "feet"),
  31629. name: "Front",
  31630. image: {
  31631. source: "./media/characters/arhan/front.svg",
  31632. extra: 3368 / 3133,
  31633. bottom: 0 / 3368
  31634. }
  31635. },
  31636. side: {
  31637. height: math.unit(4, "feet"),
  31638. name: "Side",
  31639. image: {
  31640. source: "./media/characters/arhan/side.svg",
  31641. extra: 3347 / 3105,
  31642. bottom: 0 / 3347
  31643. }
  31644. },
  31645. tongue: {
  31646. height: math.unit(1.42, "feet"),
  31647. name: "Tongue",
  31648. image: {
  31649. source: "./media/characters/arhan/tongue.svg"
  31650. }
  31651. },
  31652. head: {
  31653. height: math.unit(0.85, "feet"),
  31654. name: "Head",
  31655. image: {
  31656. source: "./media/characters/arhan/head.svg"
  31657. }
  31658. },
  31659. },
  31660. [
  31661. {
  31662. name: "Normal",
  31663. height: math.unit(4, "feet"),
  31664. default: true
  31665. },
  31666. ]
  31667. ))
  31668. characterMakers.push(() => makeCharacter(
  31669. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31670. {
  31671. front: {
  31672. height: math.unit(5 + 7.5 / 12, "feet"),
  31673. weight: math.unit(120, "lb"),
  31674. name: "Front",
  31675. image: {
  31676. source: "./media/characters/digi-duncan/front.svg",
  31677. extra: 330 / 326,
  31678. bottom: 16 / 346
  31679. }
  31680. },
  31681. side: {
  31682. height: math.unit(5 + 7.5 / 12, "feet"),
  31683. weight: math.unit(120, "lb"),
  31684. name: "Side",
  31685. image: {
  31686. source: "./media/characters/digi-duncan/side.svg",
  31687. extra: 341 / 337,
  31688. bottom: 1 / 342
  31689. }
  31690. },
  31691. back: {
  31692. height: math.unit(5 + 7.5 / 12, "feet"),
  31693. weight: math.unit(120, "lb"),
  31694. name: "Back",
  31695. image: {
  31696. source: "./media/characters/digi-duncan/back.svg",
  31697. extra: 330 / 326,
  31698. bottom: 12 / 342
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Speck",
  31705. height: math.unit(0.25, "mm")
  31706. },
  31707. {
  31708. name: "Micro",
  31709. height: math.unit(5, "mm")
  31710. },
  31711. {
  31712. name: "Tiny",
  31713. height: math.unit(0.5, "inches"),
  31714. default: true
  31715. },
  31716. {
  31717. name: "Human",
  31718. height: math.unit(5 + 7.5 / 12, "feet")
  31719. },
  31720. {
  31721. name: "Minigiant",
  31722. height: math.unit(8 + 5.25, "feet")
  31723. },
  31724. {
  31725. name: "Giant",
  31726. height: math.unit(2000, "feet")
  31727. },
  31728. {
  31729. name: "Mega",
  31730. height: math.unit(371.1, "miles")
  31731. },
  31732. ]
  31733. ))
  31734. characterMakers.push(() => makeCharacter(
  31735. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31736. {
  31737. front: {
  31738. height: math.unit(2, "meters"),
  31739. weight: math.unit(350, "kg"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31743. extra: 898 / 838,
  31744. bottom: 9 / 907
  31745. }
  31746. },
  31747. },
  31748. [
  31749. {
  31750. name: "Micro",
  31751. height: math.unit(8, "meters")
  31752. },
  31753. {
  31754. name: "Normal",
  31755. height: math.unit(50, "meters"),
  31756. default: true
  31757. },
  31758. {
  31759. name: "Macro",
  31760. height: math.unit(500, "meters")
  31761. },
  31762. ]
  31763. ))
  31764. characterMakers.push(() => makeCharacter(
  31765. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31766. {
  31767. front: {
  31768. height: math.unit(6 + 6 / 12, "feet"),
  31769. name: "Front",
  31770. image: {
  31771. source: "./media/characters/khardesh/front.svg",
  31772. extra: 1788/1596,
  31773. bottom: 66/1854
  31774. }
  31775. },
  31776. back: {
  31777. height: math.unit(6 + 6 / 12, "feet"),
  31778. name: "Back",
  31779. image: {
  31780. source: "./media/characters/khardesh/back.svg",
  31781. extra: 1781/1584,
  31782. bottom: 68/1849
  31783. }
  31784. },
  31785. },
  31786. [
  31787. {
  31788. name: "Normal",
  31789. height: math.unit(6 + 6 / 12, "feet"),
  31790. default: true
  31791. },
  31792. {
  31793. name: "Normal+",
  31794. height: math.unit(4, "meters")
  31795. },
  31796. {
  31797. name: "Macro",
  31798. height: math.unit(50, "meters")
  31799. },
  31800. {
  31801. name: "Macro+",
  31802. height: math.unit(100, "meters")
  31803. },
  31804. {
  31805. name: "Megamacro",
  31806. height: math.unit(20, "km")
  31807. },
  31808. ]
  31809. ))
  31810. characterMakers.push(() => makeCharacter(
  31811. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31812. {
  31813. front: {
  31814. height: math.unit(6, "feet"),
  31815. weight: math.unit(150, "lb"),
  31816. name: "Front",
  31817. image: {
  31818. source: "./media/characters/kosho/front.svg",
  31819. extra: 1847 / 1847,
  31820. bottom: 86 / 1933
  31821. }
  31822. },
  31823. },
  31824. [
  31825. {
  31826. name: "Second-stage micro",
  31827. height: math.unit(0.5, "inches")
  31828. },
  31829. {
  31830. name: "First-stage micro",
  31831. height: math.unit(6, "inches")
  31832. },
  31833. {
  31834. name: "Normal",
  31835. height: math.unit(6, "feet"),
  31836. default: true
  31837. },
  31838. {
  31839. name: "First-stage macro",
  31840. height: math.unit(72, "feet")
  31841. },
  31842. {
  31843. name: "Second-stage macro",
  31844. height: math.unit(864, "feet")
  31845. },
  31846. ]
  31847. ))
  31848. characterMakers.push(() => makeCharacter(
  31849. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31850. {
  31851. normal: {
  31852. height: math.unit(4 + 6 / 12, "feet"),
  31853. name: "Normal",
  31854. image: {
  31855. source: "./media/characters/hydra/normal.svg",
  31856. extra: 2833 / 2634,
  31857. bottom: 68 / 2901
  31858. }
  31859. },
  31860. smol: {
  31861. height: math.unit(0.705, "inches"),
  31862. name: "Smol",
  31863. image: {
  31864. source: "./media/characters/hydra/smol.svg",
  31865. extra: 2715 / 2540,
  31866. bottom: 0 / 2715
  31867. }
  31868. },
  31869. },
  31870. [
  31871. {
  31872. name: "Normal",
  31873. height: math.unit(4 + 6 / 12, "feet"),
  31874. default: true
  31875. }
  31876. ]
  31877. ))
  31878. characterMakers.push(() => makeCharacter(
  31879. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31880. {
  31881. front: {
  31882. height: math.unit(0.6, "cm"),
  31883. name: "Front",
  31884. image: {
  31885. source: "./media/characters/daz/front.svg",
  31886. extra: 1682 / 1164,
  31887. bottom: 42 / 1724
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Normal",
  31894. height: math.unit(0.6, "cm"),
  31895. default: true
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31901. {
  31902. front: {
  31903. height: math.unit(6, "feet"),
  31904. weight: math.unit(235, "lb"),
  31905. name: "Front",
  31906. image: {
  31907. source: "./media/characters/theo-pangolin/front.svg",
  31908. extra: 1996 / 1969,
  31909. bottom: 115 / 2111
  31910. }
  31911. },
  31912. back: {
  31913. height: math.unit(6, "feet"),
  31914. weight: math.unit(235, "lb"),
  31915. name: "Back",
  31916. image: {
  31917. source: "./media/characters/theo-pangolin/back.svg",
  31918. extra: 1979 / 1979,
  31919. bottom: 40 / 2019
  31920. }
  31921. },
  31922. feral: {
  31923. height: math.unit(2, "feet"),
  31924. weight: math.unit(30, "lb"),
  31925. name: "Feral",
  31926. image: {
  31927. source: "./media/characters/theo-pangolin/feral.svg",
  31928. extra: 803 / 791,
  31929. bottom: 181 / 984
  31930. }
  31931. },
  31932. footFive: {
  31933. height: math.unit(1.43, "feet"),
  31934. name: "Foot (Five Toes)",
  31935. image: {
  31936. source: "./media/characters/theo-pangolin/foot-five.svg"
  31937. }
  31938. },
  31939. footFour: {
  31940. height: math.unit(1.43, "feet"),
  31941. name: "Foot (Four Toes)",
  31942. image: {
  31943. source: "./media/characters/theo-pangolin/foot-four.svg"
  31944. }
  31945. },
  31946. handFour: {
  31947. height: math.unit(0.81, "feet"),
  31948. name: "Hand (Four Fingers)",
  31949. image: {
  31950. source: "./media/characters/theo-pangolin/hand-four.svg"
  31951. }
  31952. },
  31953. handThree: {
  31954. height: math.unit(0.81, "feet"),
  31955. name: "Hand (Three Fingers)",
  31956. image: {
  31957. source: "./media/characters/theo-pangolin/hand-three.svg"
  31958. }
  31959. },
  31960. headFront: {
  31961. height: math.unit(1.37, "feet"),
  31962. name: "Head (Front)",
  31963. image: {
  31964. source: "./media/characters/theo-pangolin/head-front.svg"
  31965. }
  31966. },
  31967. headSide: {
  31968. height: math.unit(1.43, "feet"),
  31969. name: "Head (Side)",
  31970. image: {
  31971. source: "./media/characters/theo-pangolin/head-side.svg"
  31972. }
  31973. },
  31974. tongue: {
  31975. height: math.unit(2.29, "feet"),
  31976. name: "Tongue",
  31977. image: {
  31978. source: "./media/characters/theo-pangolin/tongue.svg"
  31979. }
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Normal",
  31985. height: math.unit(6, "feet")
  31986. },
  31987. {
  31988. name: "Macro",
  31989. height: math.unit(400, "feet"),
  31990. default: true
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31996. {
  31997. front: {
  31998. height: math.unit(6, "inches"),
  31999. weight: math.unit(0.036, "kg"),
  32000. name: "Front",
  32001. image: {
  32002. source: "./media/characters/renée/front.svg",
  32003. extra: 900 / 886,
  32004. bottom: 8 / 908
  32005. }
  32006. },
  32007. },
  32008. [
  32009. {
  32010. name: "Nano",
  32011. height: math.unit(1, "nm")
  32012. },
  32013. {
  32014. name: "Micro",
  32015. height: math.unit(1, "mm")
  32016. },
  32017. {
  32018. name: "Normal",
  32019. height: math.unit(6, "inches")
  32020. },
  32021. {
  32022. name: "Macro",
  32023. height: math.unit(2000, "feet"),
  32024. default: true
  32025. },
  32026. {
  32027. name: "Megamacro",
  32028. height: math.unit(2, "km")
  32029. },
  32030. {
  32031. name: "Gigamacro",
  32032. height: math.unit(2000, "km")
  32033. },
  32034. {
  32035. name: "Teramacro",
  32036. height: math.unit(250000, "km")
  32037. },
  32038. ]
  32039. ))
  32040. characterMakers.push(() => makeCharacter(
  32041. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32042. {
  32043. front: {
  32044. height: math.unit(4, "meters"),
  32045. weight: math.unit(150, "kg"),
  32046. name: "Front",
  32047. image: {
  32048. source: "./media/characters/caledvwlch/front.svg",
  32049. extra: 1757/1537,
  32050. bottom: 31/1788
  32051. }
  32052. },
  32053. side: {
  32054. height: math.unit(4, "meters"),
  32055. weight: math.unit(150, "kg"),
  32056. name: "Side",
  32057. image: {
  32058. source: "./media/characters/caledvwlch/side.svg",
  32059. extra: 1605 / 1536,
  32060. bottom: 31 / 1636
  32061. }
  32062. },
  32063. back: {
  32064. height: math.unit(4, "meters"),
  32065. weight: math.unit(150, "kg"),
  32066. name: "Back",
  32067. image: {
  32068. source: "./media/characters/caledvwlch/back.svg",
  32069. extra: 1635 / 1565,
  32070. bottom: 27 / 1662
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "\"Incognito\"",
  32077. height: math.unit(4, "meters")
  32078. },
  32079. {
  32080. name: "Small rampage",
  32081. height: math.unit(600, "meters")
  32082. },
  32083. {
  32084. name: "Mega",
  32085. height: math.unit(30, "km")
  32086. },
  32087. {
  32088. name: "Home-size",
  32089. height: math.unit(50, "km"),
  32090. default: true
  32091. },
  32092. {
  32093. name: "Giga",
  32094. height: math.unit(300, "km")
  32095. },
  32096. {
  32097. name: "Lounging",
  32098. height: math.unit(11000, "km")
  32099. },
  32100. {
  32101. name: "Planet snacking",
  32102. height: math.unit(2000000, "km")
  32103. },
  32104. ]
  32105. ))
  32106. characterMakers.push(() => makeCharacter(
  32107. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32108. {
  32109. front: {
  32110. height: math.unit(6, "feet"),
  32111. weight: math.unit(215, "lb"),
  32112. name: "Front",
  32113. image: {
  32114. source: "./media/characters/sapphire-svell/front.svg",
  32115. extra: 495 / 455,
  32116. bottom: 20 / 515
  32117. }
  32118. },
  32119. back: {
  32120. height: math.unit(6, "feet"),
  32121. weight: math.unit(216, "lb"),
  32122. name: "Back",
  32123. image: {
  32124. source: "./media/characters/sapphire-svell/back.svg",
  32125. extra: 497 / 477,
  32126. bottom: 7 / 504
  32127. }
  32128. },
  32129. maw: {
  32130. height: math.unit(1.57, "feet"),
  32131. name: "Maw",
  32132. image: {
  32133. source: "./media/characters/sapphire-svell/maw.svg"
  32134. }
  32135. },
  32136. foot: {
  32137. height: math.unit(1.07, "feet"),
  32138. name: "Foot",
  32139. image: {
  32140. source: "./media/characters/sapphire-svell/foot.svg"
  32141. }
  32142. },
  32143. toering: {
  32144. height: math.unit(1.7, "inch"),
  32145. name: "Toering",
  32146. image: {
  32147. source: "./media/characters/sapphire-svell/toering.svg"
  32148. }
  32149. },
  32150. },
  32151. [
  32152. {
  32153. name: "Normal",
  32154. height: math.unit(300, "feet"),
  32155. default: true
  32156. },
  32157. {
  32158. name: "Augmented",
  32159. height: math.unit(1250, "feet")
  32160. },
  32161. {
  32162. name: "Unleashed",
  32163. height: math.unit(3000, "feet")
  32164. },
  32165. ]
  32166. ))
  32167. characterMakers.push(() => makeCharacter(
  32168. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32169. {
  32170. side: {
  32171. height: math.unit(2 + 3 / 12, "feet"),
  32172. weight: math.unit(110, "lb"),
  32173. name: "Side",
  32174. image: {
  32175. source: "./media/characters/glitch-flux/side.svg",
  32176. extra: 997 / 805,
  32177. bottom: 20 / 1017
  32178. }
  32179. },
  32180. },
  32181. [
  32182. {
  32183. name: "Normal",
  32184. height: math.unit(2 + 3 / 12, "feet"),
  32185. default: true
  32186. },
  32187. ]
  32188. ))
  32189. characterMakers.push(() => makeCharacter(
  32190. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32191. {
  32192. front: {
  32193. height: math.unit(4, "meters"),
  32194. name: "Front",
  32195. image: {
  32196. source: "./media/characters/mid/front.svg",
  32197. extra: 507 / 476,
  32198. bottom: 17 / 524
  32199. }
  32200. },
  32201. back: {
  32202. height: math.unit(4, "meters"),
  32203. name: "Back",
  32204. image: {
  32205. source: "./media/characters/mid/back.svg",
  32206. extra: 519 / 487,
  32207. bottom: 7 / 526
  32208. }
  32209. },
  32210. stuck: {
  32211. height: math.unit(2.2, "meters"),
  32212. name: "Stuck",
  32213. image: {
  32214. source: "./media/characters/mid/stuck.svg",
  32215. extra: 1951 / 1869,
  32216. bottom: 88 / 2039
  32217. }
  32218. }
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(4, "meters"),
  32224. default: true
  32225. },
  32226. {
  32227. name: "Big",
  32228. height: math.unit(10, "meters")
  32229. },
  32230. {
  32231. name: "Macro",
  32232. height: math.unit(800, "meters")
  32233. },
  32234. {
  32235. name: "Megamacro",
  32236. height: math.unit(100, "km")
  32237. },
  32238. {
  32239. name: "Overgrown",
  32240. height: math.unit(1, "parsec")
  32241. },
  32242. ]
  32243. ))
  32244. characterMakers.push(() => makeCharacter(
  32245. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32246. {
  32247. front: {
  32248. height: math.unit(2.5, "meters"),
  32249. weight: math.unit(225, "kg"),
  32250. name: "Front",
  32251. image: {
  32252. source: "./media/characters/iris/front.svg",
  32253. extra: 3348 / 3251,
  32254. bottom: 205 / 3553
  32255. }
  32256. },
  32257. maw: {
  32258. height: math.unit(0.56, "meter"),
  32259. name: "Maw",
  32260. image: {
  32261. source: "./media/characters/iris/maw.svg"
  32262. }
  32263. },
  32264. },
  32265. [
  32266. {
  32267. name: "Mewter cat",
  32268. height: math.unit(1.2, "meters")
  32269. },
  32270. {
  32271. name: "Normal",
  32272. height: math.unit(2.5, "meters"),
  32273. default: true
  32274. },
  32275. {
  32276. name: "Minimacro",
  32277. height: math.unit(18, "feet")
  32278. },
  32279. {
  32280. name: "Macro",
  32281. height: math.unit(140, "feet")
  32282. },
  32283. {
  32284. name: "Macro+",
  32285. height: math.unit(180, "meters")
  32286. },
  32287. {
  32288. name: "Megamacro",
  32289. height: math.unit(2746, "meters")
  32290. },
  32291. ]
  32292. ))
  32293. characterMakers.push(() => makeCharacter(
  32294. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32295. {
  32296. front: {
  32297. height: math.unit(6, "feet"),
  32298. weight: math.unit(135, "lb"),
  32299. name: "Front",
  32300. image: {
  32301. source: "./media/characters/axel/front.svg",
  32302. extra: 908 / 908,
  32303. bottom: 58 / 966
  32304. }
  32305. },
  32306. side: {
  32307. height: math.unit(6, "feet"),
  32308. weight: math.unit(135, "lb"),
  32309. name: "Side",
  32310. image: {
  32311. source: "./media/characters/axel/side.svg",
  32312. extra: 958 / 958,
  32313. bottom: 11 / 969
  32314. }
  32315. },
  32316. back: {
  32317. height: math.unit(6, "feet"),
  32318. weight: math.unit(135, "lb"),
  32319. name: "Back",
  32320. image: {
  32321. source: "./media/characters/axel/back.svg",
  32322. extra: 887 / 887,
  32323. bottom: 34 / 921
  32324. }
  32325. },
  32326. head: {
  32327. height: math.unit(1.07, "feet"),
  32328. name: "Head",
  32329. image: {
  32330. source: "./media/characters/axel/head.svg"
  32331. }
  32332. },
  32333. beak: {
  32334. height: math.unit(1.4, "feet"),
  32335. name: "Beak",
  32336. image: {
  32337. source: "./media/characters/axel/beak.svg"
  32338. }
  32339. },
  32340. beakSide: {
  32341. height: math.unit(1.4, "feet"),
  32342. name: "Beak Side",
  32343. image: {
  32344. source: "./media/characters/axel/beak-side.svg"
  32345. }
  32346. },
  32347. sheath: {
  32348. height: math.unit(0.5, "feet"),
  32349. name: "Sheath",
  32350. image: {
  32351. source: "./media/characters/axel/sheath.svg"
  32352. }
  32353. },
  32354. dick: {
  32355. height: math.unit(0.98, "feet"),
  32356. name: "Dick",
  32357. image: {
  32358. source: "./media/characters/axel/dick.svg"
  32359. }
  32360. },
  32361. },
  32362. [
  32363. {
  32364. name: "Macro",
  32365. height: math.unit(68, "meters"),
  32366. default: true
  32367. },
  32368. ]
  32369. ))
  32370. characterMakers.push(() => makeCharacter(
  32371. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32372. {
  32373. front: {
  32374. height: math.unit(3.5, "meters"),
  32375. weight: math.unit(1200, "kg"),
  32376. name: "Front",
  32377. image: {
  32378. source: "./media/characters/joanna/front.svg",
  32379. extra: 1596 / 1488,
  32380. bottom: 29 / 1625
  32381. }
  32382. },
  32383. back: {
  32384. height: math.unit(3.5, "meters"),
  32385. weight: math.unit(1200, "kg"),
  32386. name: "Back",
  32387. image: {
  32388. source: "./media/characters/joanna/back.svg",
  32389. extra: 1594 / 1495,
  32390. bottom: 26 / 1620
  32391. }
  32392. },
  32393. frontShorts: {
  32394. height: math.unit(3.5, "meters"),
  32395. weight: math.unit(1200, "kg"),
  32396. name: "Front (Shorts)",
  32397. image: {
  32398. source: "./media/characters/joanna/front-shorts.svg",
  32399. extra: 1596 / 1488,
  32400. bottom: 29 / 1625
  32401. }
  32402. },
  32403. frontBiker: {
  32404. height: math.unit(3.5, "meters"),
  32405. weight: math.unit(1200, "kg"),
  32406. name: "Front (Biker)",
  32407. image: {
  32408. source: "./media/characters/joanna/front-biker.svg",
  32409. extra: 1596 / 1488,
  32410. bottom: 29 / 1625
  32411. }
  32412. },
  32413. backBiker: {
  32414. height: math.unit(3.5, "meters"),
  32415. weight: math.unit(1200, "kg"),
  32416. name: "Back (Biker)",
  32417. image: {
  32418. source: "./media/characters/joanna/back-biker.svg",
  32419. extra: 1594 / 1495,
  32420. bottom: 88 / 1682
  32421. }
  32422. },
  32423. bikeLeft: {
  32424. height: math.unit(2.4, "meters"),
  32425. weight: math.unit(1600, "kg"),
  32426. name: "Bike (Left)",
  32427. image: {
  32428. source: "./media/characters/joanna/bike-left.svg",
  32429. extra: 720 / 720,
  32430. bottom: 8 / 728
  32431. }
  32432. },
  32433. bikeRight: {
  32434. height: math.unit(2.4, "meters"),
  32435. weight: math.unit(1600, "kg"),
  32436. name: "Bike (Right)",
  32437. image: {
  32438. source: "./media/characters/joanna/bike-right.svg",
  32439. extra: 720 / 720,
  32440. bottom: 8 / 728
  32441. }
  32442. },
  32443. },
  32444. [
  32445. {
  32446. name: "Incognito",
  32447. height: math.unit(3.5, "meters")
  32448. },
  32449. {
  32450. name: "Casual Big",
  32451. height: math.unit(200, "meters")
  32452. },
  32453. {
  32454. name: "Macro",
  32455. height: math.unit(600, "meters")
  32456. },
  32457. {
  32458. name: "Original",
  32459. height: math.unit(20, "km"),
  32460. default: true
  32461. },
  32462. {
  32463. name: "Giga",
  32464. height: math.unit(400, "km")
  32465. },
  32466. {
  32467. name: "Lounging",
  32468. height: math.unit(1500, "km")
  32469. },
  32470. {
  32471. name: "Planetary",
  32472. height: math.unit(200000, "km")
  32473. },
  32474. ]
  32475. ))
  32476. characterMakers.push(() => makeCharacter(
  32477. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32478. {
  32479. front: {
  32480. height: math.unit(6, "feet"),
  32481. weight: math.unit(150, "lb"),
  32482. name: "Front",
  32483. image: {
  32484. source: "./media/characters/hugo-sigil/front.svg",
  32485. extra: 522 / 500,
  32486. bottom: 2 / 524
  32487. }
  32488. },
  32489. back: {
  32490. height: math.unit(6, "feet"),
  32491. weight: math.unit(150, "lb"),
  32492. name: "Back",
  32493. image: {
  32494. source: "./media/characters/hugo-sigil/back.svg",
  32495. extra: 519 / 495,
  32496. bottom: 5 / 524
  32497. }
  32498. },
  32499. maw: {
  32500. height: math.unit(1.4, "feet"),
  32501. weight: math.unit(150, "lb"),
  32502. name: "Maw",
  32503. image: {
  32504. source: "./media/characters/hugo-sigil/maw.svg"
  32505. }
  32506. },
  32507. feet: {
  32508. height: math.unit(1.56, "feet"),
  32509. weight: math.unit(150, "lb"),
  32510. name: "Feet",
  32511. image: {
  32512. source: "./media/characters/hugo-sigil/feet.svg",
  32513. extra: 177 / 177,
  32514. bottom: 12 / 189
  32515. }
  32516. },
  32517. },
  32518. [
  32519. {
  32520. name: "Normal",
  32521. height: math.unit(6, "feet")
  32522. },
  32523. {
  32524. name: "Macro",
  32525. height: math.unit(200, "feet"),
  32526. default: true
  32527. },
  32528. ]
  32529. ))
  32530. characterMakers.push(() => makeCharacter(
  32531. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32532. {
  32533. front: {
  32534. height: math.unit(6, "feet"),
  32535. weight: math.unit(150, "lb"),
  32536. name: "Front",
  32537. image: {
  32538. source: "./media/characters/peri/front.svg",
  32539. extra: 2354 / 2233,
  32540. bottom: 49 / 2403
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Really Small",
  32547. height: math.unit(1, "nm")
  32548. },
  32549. {
  32550. name: "Micro",
  32551. height: math.unit(4, "inches")
  32552. },
  32553. {
  32554. name: "Normal",
  32555. height: math.unit(7, "inches"),
  32556. default: true
  32557. },
  32558. {
  32559. name: "Macro",
  32560. height: math.unit(400, "feet")
  32561. },
  32562. {
  32563. name: "Megamacro",
  32564. height: math.unit(100, "miles")
  32565. },
  32566. ]
  32567. ))
  32568. characterMakers.push(() => makeCharacter(
  32569. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32570. {
  32571. frontSlim: {
  32572. height: math.unit(7, "feet"),
  32573. name: "Front (Slim)",
  32574. image: {
  32575. source: "./media/characters/issilora/front-slim.svg",
  32576. extra: 529 / 449,
  32577. bottom: 53 / 582
  32578. }
  32579. },
  32580. sideSlim: {
  32581. height: math.unit(7, "feet"),
  32582. name: "Side (Slim)",
  32583. image: {
  32584. source: "./media/characters/issilora/side-slim.svg",
  32585. extra: 570 / 480,
  32586. bottom: 30 / 600
  32587. }
  32588. },
  32589. backSlim: {
  32590. height: math.unit(7, "feet"),
  32591. name: "Back (Slim)",
  32592. image: {
  32593. source: "./media/characters/issilora/back-slim.svg",
  32594. extra: 537 / 455,
  32595. bottom: 46 / 583
  32596. }
  32597. },
  32598. frontBuff: {
  32599. height: math.unit(7, "feet"),
  32600. name: "Front (Buff)",
  32601. image: {
  32602. source: "./media/characters/issilora/front-buff.svg",
  32603. extra: 2310 / 2035,
  32604. bottom: 335 / 2645
  32605. }
  32606. },
  32607. head: {
  32608. height: math.unit(1.94, "feet"),
  32609. name: "Head",
  32610. image: {
  32611. source: "./media/characters/issilora/head.svg"
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Minimum",
  32618. height: math.unit(7, "feet")
  32619. },
  32620. {
  32621. name: "Comfortable",
  32622. height: math.unit(17, "feet")
  32623. },
  32624. {
  32625. name: "Fun Size",
  32626. height: math.unit(47, "feet")
  32627. },
  32628. {
  32629. name: "Natural Macro",
  32630. height: math.unit(137, "feet"),
  32631. default: true
  32632. },
  32633. {
  32634. name: "Maximum Kaiju",
  32635. height: math.unit(397, "feet")
  32636. },
  32637. ]
  32638. ))
  32639. characterMakers.push(() => makeCharacter(
  32640. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32641. {
  32642. front: {
  32643. height: math.unit(50 + 9/12, "feet"),
  32644. weight: math.unit(32.8, "tons"),
  32645. name: "Front",
  32646. image: {
  32647. source: "./media/characters/irb'iiritaahn/front.svg",
  32648. extra: 1878/1826,
  32649. bottom: 326/2204
  32650. }
  32651. },
  32652. back: {
  32653. height: math.unit(50 + 9/12, "feet"),
  32654. weight: math.unit(32.8, "tons"),
  32655. name: "Back",
  32656. image: {
  32657. source: "./media/characters/irb'iiritaahn/back.svg",
  32658. extra: 2052/2018,
  32659. bottom: 152/2204
  32660. }
  32661. },
  32662. head: {
  32663. height: math.unit(12.86, "feet"),
  32664. name: "Head",
  32665. image: {
  32666. source: "./media/characters/irb'iiritaahn/head.svg"
  32667. }
  32668. },
  32669. maw: {
  32670. height: math.unit(9.66, "feet"),
  32671. name: "Maw",
  32672. image: {
  32673. source: "./media/characters/irb'iiritaahn/maw.svg"
  32674. }
  32675. },
  32676. frontDick: {
  32677. height: math.unit(8.78461, "feet"),
  32678. name: "Front Dick",
  32679. image: {
  32680. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32681. }
  32682. },
  32683. rearDick: {
  32684. height: math.unit(8.78461, "feet"),
  32685. name: "Rear Dick",
  32686. image: {
  32687. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32688. }
  32689. },
  32690. rearDickUnfolded: {
  32691. height: math.unit(8.78, "feet"),
  32692. name: "Rear Dick (Unfolded)",
  32693. image: {
  32694. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32695. }
  32696. },
  32697. wings: {
  32698. height: math.unit(43, "feet"),
  32699. name: "Wings",
  32700. image: {
  32701. source: "./media/characters/irb'iiritaahn/wings.svg"
  32702. }
  32703. },
  32704. },
  32705. [
  32706. {
  32707. name: "Macro",
  32708. height: math.unit(50 + 9/12, "feet"),
  32709. default: true
  32710. },
  32711. ]
  32712. ))
  32713. characterMakers.push(() => makeCharacter(
  32714. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32715. {
  32716. front: {
  32717. height: math.unit(205, "cm"),
  32718. weight: math.unit(102, "kg"),
  32719. name: "Front",
  32720. image: {
  32721. source: "./media/characters/irbisgreif/front.svg",
  32722. extra: 785/706,
  32723. bottom: 13/798
  32724. }
  32725. },
  32726. back: {
  32727. height: math.unit(205, "cm"),
  32728. weight: math.unit(102, "kg"),
  32729. name: "Back",
  32730. image: {
  32731. source: "./media/characters/irbisgreif/back.svg",
  32732. extra: 713/701,
  32733. bottom: 26/739
  32734. }
  32735. },
  32736. frontDressed: {
  32737. height: math.unit(216, "cm"),
  32738. weight: math.unit(102, "kg"),
  32739. name: "Front-dressed",
  32740. image: {
  32741. source: "./media/characters/irbisgreif/front-dressed.svg",
  32742. extra: 902/776,
  32743. bottom: 14/916
  32744. }
  32745. },
  32746. sideDressed: {
  32747. height: math.unit(195, "cm"),
  32748. weight: math.unit(102, "kg"),
  32749. name: "Side-dressed",
  32750. image: {
  32751. source: "./media/characters/irbisgreif/side-dressed.svg",
  32752. extra: 788/688,
  32753. bottom: 21/809
  32754. }
  32755. },
  32756. backDressed: {
  32757. height: math.unit(216, "cm"),
  32758. weight: math.unit(102, "kg"),
  32759. name: "Back-dressed",
  32760. image: {
  32761. source: "./media/characters/irbisgreif/back-dressed.svg",
  32762. extra: 901/783,
  32763. bottom: 10/911
  32764. }
  32765. },
  32766. dick: {
  32767. height: math.unit(0.49, "feet"),
  32768. name: "Dick",
  32769. image: {
  32770. source: "./media/characters/irbisgreif/dick.svg"
  32771. }
  32772. },
  32773. wingTop: {
  32774. height: math.unit(1.93 , "feet"),
  32775. name: "Wing-top",
  32776. image: {
  32777. source: "./media/characters/irbisgreif/wing-top.svg"
  32778. }
  32779. },
  32780. wingBottom: {
  32781. height: math.unit(1.93 , "feet"),
  32782. name: "Wing-bottom",
  32783. image: {
  32784. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32785. }
  32786. },
  32787. },
  32788. [
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(216, "cm"),
  32792. default: true
  32793. },
  32794. ]
  32795. ))
  32796. characterMakers.push(() => makeCharacter(
  32797. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32798. {
  32799. front: {
  32800. height: math.unit(6, "feet"),
  32801. weight: math.unit(150, "lb"),
  32802. name: "Front",
  32803. image: {
  32804. source: "./media/characters/pride/front.svg",
  32805. extra: 1299/1230,
  32806. bottom: 18/1317
  32807. }
  32808. },
  32809. },
  32810. [
  32811. {
  32812. name: "Normal",
  32813. height: math.unit(7, "feet")
  32814. },
  32815. {
  32816. name: "Mini-macro",
  32817. height: math.unit(11, "feet")
  32818. },
  32819. {
  32820. name: "Macro",
  32821. height: math.unit(15, "meters"),
  32822. default: true
  32823. },
  32824. {
  32825. name: "Macro+",
  32826. height: math.unit(40, "meters")
  32827. },
  32828. ]
  32829. ))
  32830. characterMakers.push(() => makeCharacter(
  32831. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32832. {
  32833. front: {
  32834. height: math.unit(4 + 2 / 12, "feet"),
  32835. weight: math.unit(95, "lb"),
  32836. name: "Front",
  32837. image: {
  32838. source: "./media/characters/vaelophis-nyx/front.svg",
  32839. extra: 2532/2330,
  32840. bottom: 0/2532
  32841. }
  32842. },
  32843. back: {
  32844. height: math.unit(4 + 2 / 12, "feet"),
  32845. weight: math.unit(95, "lb"),
  32846. name: "Back",
  32847. image: {
  32848. source: "./media/characters/vaelophis-nyx/back.svg",
  32849. extra: 2484/2361,
  32850. bottom: 0/2484
  32851. }
  32852. },
  32853. feralSide: {
  32854. height: math.unit(2 + 1/12, "feet"),
  32855. weight: math.unit(20, "lb"),
  32856. name: "Feral (Side)",
  32857. image: {
  32858. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32859. extra: 1721/1581,
  32860. bottom: 70/1791
  32861. }
  32862. },
  32863. feralLazing: {
  32864. height: math.unit(1.08, "feet"),
  32865. weight: math.unit(20, "lb"),
  32866. name: "Feral (Lazing)",
  32867. image: {
  32868. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32869. extra: 822/822,
  32870. bottom: 248/1070
  32871. }
  32872. },
  32873. ear: {
  32874. height: math.unit(0.416, "feet"),
  32875. name: "Ear",
  32876. image: {
  32877. source: "./media/characters/vaelophis-nyx/ear.svg"
  32878. }
  32879. },
  32880. eye: {
  32881. height: math.unit(0.0748, "feet"),
  32882. name: "Eye",
  32883. image: {
  32884. source: "./media/characters/vaelophis-nyx/eye.svg"
  32885. }
  32886. },
  32887. mouth: {
  32888. height: math.unit(0.378, "feet"),
  32889. name: "Mouth",
  32890. image: {
  32891. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32892. }
  32893. },
  32894. spade: {
  32895. height: math.unit(0.55, "feet"),
  32896. name: "Spade",
  32897. image: {
  32898. source: "./media/characters/vaelophis-nyx/spade.svg"
  32899. }
  32900. },
  32901. },
  32902. [
  32903. {
  32904. name: "Normal",
  32905. height: math.unit(4 + 2/12, "feet"),
  32906. default: true
  32907. },
  32908. ]
  32909. ))
  32910. characterMakers.push(() => makeCharacter(
  32911. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32912. {
  32913. front: {
  32914. height: math.unit(7, "feet"),
  32915. weight: math.unit(231, "lb"),
  32916. name: "Front",
  32917. image: {
  32918. source: "./media/characters/flux/front.svg",
  32919. extra: 919/871,
  32920. bottom: 0/919
  32921. }
  32922. },
  32923. back: {
  32924. height: math.unit(7, "feet"),
  32925. weight: math.unit(231, "lb"),
  32926. name: "Back",
  32927. image: {
  32928. source: "./media/characters/flux/back.svg",
  32929. extra: 1040/992,
  32930. bottom: 0/1040
  32931. }
  32932. },
  32933. frontDressed: {
  32934. height: math.unit(7, "feet"),
  32935. weight: math.unit(231, "lb"),
  32936. name: "Front (Dressed)",
  32937. image: {
  32938. source: "./media/characters/flux/front-dressed.svg",
  32939. extra: 919/871,
  32940. bottom: 0/919
  32941. }
  32942. },
  32943. feralSide: {
  32944. height: math.unit(5, "feet"),
  32945. weight: math.unit(150, "lb"),
  32946. name: "Feral (Side)",
  32947. image: {
  32948. source: "./media/characters/flux/feral-side.svg",
  32949. extra: 598/528,
  32950. bottom: 28/626
  32951. }
  32952. },
  32953. head: {
  32954. height: math.unit(1.585, "feet"),
  32955. name: "Head",
  32956. image: {
  32957. source: "./media/characters/flux/head.svg"
  32958. }
  32959. },
  32960. headSide: {
  32961. height: math.unit(1.74, "feet"),
  32962. name: "Head (Side)",
  32963. image: {
  32964. source: "./media/characters/flux/head-side.svg"
  32965. }
  32966. },
  32967. headSideFire: {
  32968. height: math.unit(1.76, "feet"),
  32969. name: "Head (Side, Fire)",
  32970. image: {
  32971. source: "./media/characters/flux/head-side-fire.svg"
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Normal",
  32978. height: math.unit(7, "feet"),
  32979. default: true
  32980. },
  32981. ]
  32982. ))
  32983. characterMakers.push(() => makeCharacter(
  32984. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32985. {
  32986. front: {
  32987. height: math.unit(9, "feet"),
  32988. weight: math.unit(1012, "lb"),
  32989. name: "Front",
  32990. image: {
  32991. source: "./media/characters/ulfra-lupae/front.svg",
  32992. extra: 1083/1011,
  32993. bottom: 67/1150
  32994. }
  32995. },
  32996. },
  32997. [
  32998. {
  32999. name: "Micro",
  33000. height: math.unit(6, "inches")
  33001. },
  33002. {
  33003. name: "Socializing",
  33004. height: math.unit(6 + 5/12, "feet")
  33005. },
  33006. {
  33007. name: "Normal",
  33008. height: math.unit(9, "feet"),
  33009. default: true
  33010. },
  33011. {
  33012. name: "Macro",
  33013. height: math.unit(150, "feet")
  33014. },
  33015. ]
  33016. ))
  33017. characterMakers.push(() => makeCharacter(
  33018. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33019. {
  33020. front: {
  33021. height: math.unit(5 + 2/12, "feet"),
  33022. weight: math.unit(120, "lb"),
  33023. name: "Front",
  33024. image: {
  33025. source: "./media/characters/timber/front.svg",
  33026. extra: 2814/2705,
  33027. bottom: 181/2995
  33028. }
  33029. },
  33030. },
  33031. [
  33032. {
  33033. name: "Normal",
  33034. height: math.unit(5 + 2/12, "feet"),
  33035. default: true
  33036. },
  33037. ]
  33038. ))
  33039. characterMakers.push(() => makeCharacter(
  33040. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33041. {
  33042. front: {
  33043. height: math.unit(9, "feet"),
  33044. name: "Front",
  33045. image: {
  33046. source: "./media/characters/nicki/front.svg",
  33047. extra: 1240/990,
  33048. bottom: 45/1285
  33049. },
  33050. form: "anthro",
  33051. default: true
  33052. },
  33053. side: {
  33054. height: math.unit(9, "feet"),
  33055. name: "Side",
  33056. image: {
  33057. source: "./media/characters/nicki/side.svg",
  33058. extra: 1047/973,
  33059. bottom: 61/1108
  33060. },
  33061. form: "anthro"
  33062. },
  33063. back: {
  33064. height: math.unit(9, "feet"),
  33065. name: "Back",
  33066. image: {
  33067. source: "./media/characters/nicki/back.svg",
  33068. extra: 1006/965,
  33069. bottom: 39/1045
  33070. },
  33071. form: "anthro"
  33072. },
  33073. taur: {
  33074. height: math.unit(15, "feet"),
  33075. name: "Taur",
  33076. image: {
  33077. source: "./media/characters/nicki/taur.svg",
  33078. extra: 1592/1347,
  33079. bottom: 0/1592
  33080. },
  33081. form: "taur",
  33082. default: true
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Normal",
  33088. height: math.unit(9, "feet"),
  33089. form: "anthro",
  33090. default: true
  33091. },
  33092. {
  33093. name: "Normal",
  33094. height: math.unit(15, "feet"),
  33095. form: "taur",
  33096. default: true
  33097. }
  33098. ],
  33099. {
  33100. "anthro": {
  33101. name: "Anthro",
  33102. default: true
  33103. },
  33104. "taur": {
  33105. name: "Taur"
  33106. }
  33107. }
  33108. ))
  33109. characterMakers.push(() => makeCharacter(
  33110. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33111. {
  33112. front: {
  33113. height: math.unit(7 + 10/12, "feet"),
  33114. weight: math.unit(3.5, "tons"),
  33115. name: "Front",
  33116. image: {
  33117. source: "./media/characters/lee/front.svg",
  33118. extra: 1773/1615,
  33119. bottom: 86/1859
  33120. }
  33121. },
  33122. hand: {
  33123. height: math.unit(1.78, "feet"),
  33124. name: "Hand",
  33125. image: {
  33126. source: "./media/characters/lee/hand.svg"
  33127. }
  33128. },
  33129. maw: {
  33130. height: math.unit(1.18, "feet"),
  33131. name: "Maw",
  33132. image: {
  33133. source: "./media/characters/lee/maw.svg"
  33134. }
  33135. },
  33136. },
  33137. [
  33138. {
  33139. name: "Normal",
  33140. height: math.unit(7 + 10/12, "feet"),
  33141. default: true
  33142. },
  33143. ]
  33144. ))
  33145. characterMakers.push(() => makeCharacter(
  33146. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33147. {
  33148. front: {
  33149. height: math.unit(9, "feet"),
  33150. name: "Front",
  33151. image: {
  33152. source: "./media/characters/guti/front.svg",
  33153. extra: 4551/4355,
  33154. bottom: 123/4674
  33155. }
  33156. },
  33157. tongue: {
  33158. height: math.unit(1, "feet"),
  33159. name: "Tongue",
  33160. image: {
  33161. source: "./media/characters/guti/tongue.svg"
  33162. }
  33163. },
  33164. paw: {
  33165. height: math.unit(1.18, "feet"),
  33166. name: "Paw",
  33167. image: {
  33168. source: "./media/characters/guti/paw.svg"
  33169. }
  33170. },
  33171. },
  33172. [
  33173. {
  33174. name: "Normal",
  33175. height: math.unit(9, "feet"),
  33176. default: true
  33177. },
  33178. ]
  33179. ))
  33180. characterMakers.push(() => makeCharacter(
  33181. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33182. {
  33183. side: {
  33184. height: math.unit(5, "meters"),
  33185. name: "Side",
  33186. image: {
  33187. source: "./media/characters/vesper/side.svg",
  33188. extra: 1605/1518,
  33189. bottom: 0/1605
  33190. }
  33191. },
  33192. },
  33193. [
  33194. {
  33195. name: "Small",
  33196. height: math.unit(5, "meters")
  33197. },
  33198. {
  33199. name: "Sage",
  33200. height: math.unit(100, "meters"),
  33201. default: true
  33202. },
  33203. {
  33204. name: "Fun Size",
  33205. height: math.unit(600, "meters")
  33206. },
  33207. {
  33208. name: "Goddess",
  33209. height: math.unit(20000, "km")
  33210. },
  33211. {
  33212. name: "Maximum",
  33213. height: math.unit(5, "galaxies")
  33214. },
  33215. ]
  33216. ))
  33217. characterMakers.push(() => makeCharacter(
  33218. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33219. {
  33220. front: {
  33221. height: math.unit(6 + 3/12, "feet"),
  33222. weight: math.unit(190, "lb"),
  33223. name: "Front",
  33224. image: {
  33225. source: "./media/characters/gawain/front.svg",
  33226. extra: 2222/2139,
  33227. bottom: 90/2312
  33228. }
  33229. },
  33230. back: {
  33231. height: math.unit(6 + 3/12, "feet"),
  33232. weight: math.unit(190, "lb"),
  33233. name: "Back",
  33234. image: {
  33235. source: "./media/characters/gawain/back.svg",
  33236. extra: 2199/2111,
  33237. bottom: 73/2272
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Normal",
  33244. height: math.unit(6 + 3/12, "feet"),
  33245. default: true
  33246. },
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33251. {
  33252. side: {
  33253. height: math.unit(3.5, "meters"),
  33254. weight: math.unit(16000, "lb"),
  33255. name: "Side",
  33256. image: {
  33257. source: "./media/characters/dascalti/side.svg",
  33258. extra: 392/273,
  33259. bottom: 47/439
  33260. }
  33261. },
  33262. breath: {
  33263. height: math.unit(7.4, "feet"),
  33264. name: "Breath",
  33265. image: {
  33266. source: "./media/characters/dascalti/breath.svg"
  33267. }
  33268. },
  33269. fed: {
  33270. height: math.unit(3.6, "meters"),
  33271. weight: math.unit(16000, "lb"),
  33272. name: "Fed",
  33273. image: {
  33274. source: "./media/characters/dascalti/fed.svg",
  33275. extra: 1419/820,
  33276. bottom: 95/1514
  33277. }
  33278. },
  33279. },
  33280. [
  33281. {
  33282. name: "Normal",
  33283. height: math.unit(3.5, "meters"),
  33284. default: true
  33285. },
  33286. ]
  33287. ))
  33288. characterMakers.push(() => makeCharacter(
  33289. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33290. {
  33291. front: {
  33292. height: math.unit(3 + 5/12, "feet"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/mauve/front.svg",
  33296. extra: 1126/1033,
  33297. bottom: 65/1191
  33298. }
  33299. },
  33300. side: {
  33301. height: math.unit(3 + 5/12, "feet"),
  33302. name: "Side",
  33303. image: {
  33304. source: "./media/characters/mauve/side.svg",
  33305. extra: 1089/1001,
  33306. bottom: 29/1118
  33307. }
  33308. },
  33309. back: {
  33310. height: math.unit(3 + 5/12, "feet"),
  33311. name: "Back",
  33312. image: {
  33313. source: "./media/characters/mauve/back.svg",
  33314. extra: 1173/1053,
  33315. bottom: 109/1282
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(3 + 5/12, "feet"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33329. {
  33330. front: {
  33331. height: math.unit(6 + 3/12, "feet"),
  33332. weight: math.unit(430, "lb"),
  33333. name: "Front",
  33334. image: {
  33335. source: "./media/characters/carlos/front.svg",
  33336. extra: 1964/1913,
  33337. bottom: 70/2034
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(6 + 3/12, "feet"),
  33345. default: true
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33351. {
  33352. back: {
  33353. height: math.unit(5 + 10/12, "feet"),
  33354. weight: math.unit(200, "lb"),
  33355. name: "Back",
  33356. image: {
  33357. source: "./media/characters/jax/back.svg",
  33358. extra: 764/739,
  33359. bottom: 25/789
  33360. }
  33361. },
  33362. },
  33363. [
  33364. {
  33365. name: "Normal",
  33366. height: math.unit(5 + 10/12, "feet"),
  33367. default: true
  33368. },
  33369. ]
  33370. ))
  33371. characterMakers.push(() => makeCharacter(
  33372. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33373. {
  33374. front: {
  33375. height: math.unit(8, "feet"),
  33376. weight: math.unit(250, "lb"),
  33377. name: "Front",
  33378. image: {
  33379. source: "./media/characters/eikthynir/front.svg",
  33380. extra: 1332/1166,
  33381. bottom: 82/1414
  33382. }
  33383. },
  33384. back: {
  33385. height: math.unit(8, "feet"),
  33386. weight: math.unit(250, "lb"),
  33387. name: "Back",
  33388. image: {
  33389. source: "./media/characters/eikthynir/back.svg",
  33390. extra: 1342/1190,
  33391. bottom: 19/1361
  33392. }
  33393. },
  33394. dick: {
  33395. height: math.unit(2.35, "feet"),
  33396. name: "Dick",
  33397. image: {
  33398. source: "./media/characters/eikthynir/dick.svg"
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Normal",
  33405. height: math.unit(8, "feet"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33412. {
  33413. front: {
  33414. height: math.unit(99, "meters"),
  33415. weight: math.unit(13000, "tons"),
  33416. name: "Front",
  33417. image: {
  33418. source: "./media/characters/zlmos/front.svg",
  33419. extra: 2202/1992,
  33420. bottom: 315/2517
  33421. }
  33422. },
  33423. },
  33424. [
  33425. {
  33426. name: "Macro",
  33427. height: math.unit(99, "meters"),
  33428. default: true
  33429. },
  33430. ]
  33431. ))
  33432. characterMakers.push(() => makeCharacter(
  33433. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33434. {
  33435. front: {
  33436. height: math.unit(6 + 5/12, "feet"),
  33437. name: "Front",
  33438. image: {
  33439. source: "./media/characters/purri/front.svg",
  33440. extra: 1698/1610,
  33441. bottom: 32/1730
  33442. }
  33443. },
  33444. frontAlt: {
  33445. height: math.unit(6 + 5/12, "feet"),
  33446. name: "Front (Alt)",
  33447. image: {
  33448. source: "./media/characters/purri/front-alt.svg",
  33449. extra: 450/420,
  33450. bottom: 26/476
  33451. }
  33452. },
  33453. boots: {
  33454. height: math.unit(5.5, "feet"),
  33455. name: "Boots",
  33456. image: {
  33457. source: "./media/characters/purri/boots.svg",
  33458. extra: 905/853,
  33459. bottom: 18/923
  33460. }
  33461. },
  33462. lying: {
  33463. height: math.unit(2, "feet"),
  33464. name: "Lying",
  33465. image: {
  33466. source: "./media/characters/purri/lying.svg",
  33467. extra: 940/843,
  33468. bottom: 146/1086
  33469. }
  33470. },
  33471. devious: {
  33472. height: math.unit(1.77, "feet"),
  33473. name: "Devious",
  33474. image: {
  33475. source: "./media/characters/purri/devious.svg",
  33476. extra: 1440/1155,
  33477. bottom: 147/1587
  33478. }
  33479. },
  33480. bean: {
  33481. height: math.unit(1.94, "feet"),
  33482. name: "Bean",
  33483. image: {
  33484. source: "./media/characters/purri/bean.svg"
  33485. }
  33486. },
  33487. },
  33488. [
  33489. {
  33490. name: "Micro",
  33491. height: math.unit(1, "mm")
  33492. },
  33493. {
  33494. name: "Normal",
  33495. height: math.unit(6 + 5/12, "feet"),
  33496. default: true
  33497. },
  33498. {
  33499. name: "Macro :3c",
  33500. height: math.unit(2, "miles")
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33506. {
  33507. front: {
  33508. height: math.unit(6 + 2/12, "feet"),
  33509. weight: math.unit(250, "lb"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/moonlight/front.svg",
  33513. extra: 1044/908,
  33514. bottom: 56/1100
  33515. }
  33516. },
  33517. feral: {
  33518. height: math.unit(3 + 1/12, "feet"),
  33519. weight: math.unit(50, "kg"),
  33520. name: "Feral",
  33521. image: {
  33522. source: "./media/characters/moonlight/feral.svg",
  33523. extra: 3705/2791,
  33524. bottom: 145/3850
  33525. }
  33526. },
  33527. paw: {
  33528. height: math.unit(1, "feet"),
  33529. name: "Paw",
  33530. image: {
  33531. source: "./media/characters/moonlight/paw.svg"
  33532. }
  33533. },
  33534. paws: {
  33535. height: math.unit(0.98, "feet"),
  33536. name: "Paws",
  33537. image: {
  33538. source: "./media/characters/moonlight/paws.svg",
  33539. extra: 939/939,
  33540. bottom: 50/989
  33541. }
  33542. },
  33543. mouth: {
  33544. height: math.unit(0.48, "feet"),
  33545. name: "Mouth",
  33546. image: {
  33547. source: "./media/characters/moonlight/mouth.svg"
  33548. }
  33549. },
  33550. dick: {
  33551. height: math.unit(1.46, "feet"),
  33552. name: "Dick",
  33553. image: {
  33554. source: "./media/characters/moonlight/dick.svg"
  33555. }
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Normal",
  33561. height: math.unit(6 + 2/12, "feet"),
  33562. default: true
  33563. },
  33564. {
  33565. name: "Macro",
  33566. height: math.unit(300, "feet")
  33567. },
  33568. {
  33569. name: "Macro+",
  33570. height: math.unit(1, "mile")
  33571. },
  33572. {
  33573. name: "Mt. Moon",
  33574. height: math.unit(5, "miles")
  33575. },
  33576. {
  33577. name: "Megamacro",
  33578. height: math.unit(15, "miles")
  33579. },
  33580. ]
  33581. ))
  33582. characterMakers.push(() => makeCharacter(
  33583. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33584. {
  33585. back: {
  33586. height: math.unit(6, "feet"),
  33587. weight: math.unit(150, "lb"),
  33588. name: "Back",
  33589. image: {
  33590. source: "./media/characters/sylen/back.svg",
  33591. extra: 1335/1273,
  33592. bottom: 107/1442
  33593. }
  33594. },
  33595. },
  33596. [
  33597. {
  33598. name: "Normal",
  33599. height: math.unit(5 + 5/12, "feet")
  33600. },
  33601. {
  33602. name: "Megamacro",
  33603. height: math.unit(3, "miles"),
  33604. default: true
  33605. },
  33606. ]
  33607. ))
  33608. characterMakers.push(() => makeCharacter(
  33609. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33610. {
  33611. front: {
  33612. height: math.unit(6, "feet"),
  33613. weight: math.unit(190, "lb"),
  33614. name: "Front",
  33615. image: {
  33616. source: "./media/characters/huttser/front.svg",
  33617. extra: 1152/1058,
  33618. bottom: 23/1175
  33619. }
  33620. },
  33621. side: {
  33622. height: math.unit(6, "feet"),
  33623. weight: math.unit(190, "lb"),
  33624. name: "Side",
  33625. image: {
  33626. source: "./media/characters/huttser/side.svg",
  33627. extra: 1174/1065,
  33628. bottom: 18/1192
  33629. }
  33630. },
  33631. back: {
  33632. height: math.unit(6, "feet"),
  33633. weight: math.unit(190, "lb"),
  33634. name: "Back",
  33635. image: {
  33636. source: "./media/characters/huttser/back.svg",
  33637. extra: 1158/1056,
  33638. bottom: 12/1170
  33639. }
  33640. },
  33641. },
  33642. [
  33643. ]
  33644. ))
  33645. characterMakers.push(() => makeCharacter(
  33646. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33647. {
  33648. side: {
  33649. height: math.unit(12 + 9/12, "feet"),
  33650. weight: math.unit(15000, "lb"),
  33651. name: "Side",
  33652. image: {
  33653. source: "./media/characters/faan/side.svg",
  33654. extra: 2747/2697,
  33655. bottom: 0/2747
  33656. }
  33657. },
  33658. front: {
  33659. height: math.unit(12 + 9/12, "feet"),
  33660. weight: math.unit(15000, "lb"),
  33661. name: "Front",
  33662. image: {
  33663. source: "./media/characters/faan/front.svg",
  33664. extra: 607/571,
  33665. bottom: 24/631
  33666. }
  33667. },
  33668. head: {
  33669. height: math.unit(2.85, "feet"),
  33670. name: "Head",
  33671. image: {
  33672. source: "./media/characters/faan/head.svg"
  33673. }
  33674. },
  33675. headAlt: {
  33676. height: math.unit(3.13, "feet"),
  33677. name: "Head-alt",
  33678. image: {
  33679. source: "./media/characters/faan/head-alt.svg"
  33680. }
  33681. },
  33682. },
  33683. [
  33684. {
  33685. name: "Normal",
  33686. height: math.unit(12 + 9/12, "feet"),
  33687. default: true
  33688. },
  33689. ]
  33690. ))
  33691. characterMakers.push(() => makeCharacter(
  33692. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33693. {
  33694. front: {
  33695. height: math.unit(6, "feet"),
  33696. weight: math.unit(300, "lb"),
  33697. name: "Front",
  33698. image: {
  33699. source: "./media/characters/tanio/front.svg",
  33700. extra: 711/673,
  33701. bottom: 25/736
  33702. }
  33703. },
  33704. },
  33705. [
  33706. {
  33707. name: "Normal",
  33708. height: math.unit(6, "feet"),
  33709. default: true
  33710. },
  33711. ]
  33712. ))
  33713. characterMakers.push(() => makeCharacter(
  33714. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33715. {
  33716. front: {
  33717. height: math.unit(3, "inches"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/noboru/front.svg",
  33721. extra: 1039/932,
  33722. bottom: 18/1057
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Micro",
  33729. height: math.unit(3, "inches"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(1.85, "meters"),
  33739. weight: math.unit(80, "kg"),
  33740. name: "Front",
  33741. image: {
  33742. source: "./media/characters/daniel-barrett/front.svg",
  33743. extra: 355/337,
  33744. bottom: 9/364
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Pico",
  33751. height: math.unit(0.0433, "mm")
  33752. },
  33753. {
  33754. name: "Nano",
  33755. height: math.unit(1.5, "mm")
  33756. },
  33757. {
  33758. name: "Micro",
  33759. height: math.unit(5.3, "cm"),
  33760. default: true
  33761. },
  33762. {
  33763. name: "Normal",
  33764. height: math.unit(1.85, "meters")
  33765. },
  33766. {
  33767. name: "Macro",
  33768. height: math.unit(64.7, "meters")
  33769. },
  33770. {
  33771. name: "Megamacro",
  33772. height: math.unit(2.26, "km")
  33773. },
  33774. {
  33775. name: "Gigamacro",
  33776. height: math.unit(79, "km")
  33777. },
  33778. {
  33779. name: "Teramacro",
  33780. height: math.unit(2765, "km")
  33781. },
  33782. {
  33783. name: "Petamacro",
  33784. height: math.unit(96678, "km")
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33790. {
  33791. front: {
  33792. height: math.unit(30, "meters"),
  33793. weight: math.unit(400, "tons"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/zeel/front.svg",
  33797. extra: 2599/2599,
  33798. bottom: 226/2825
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Macro",
  33805. height: math.unit(30, "meters"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(6 + 7/12, "feet"),
  33815. weight: math.unit(210, "lb"),
  33816. name: "Front",
  33817. image: {
  33818. source: "./media/characters/tarn/front.svg",
  33819. extra: 3517/3220,
  33820. bottom: 91/3608
  33821. }
  33822. },
  33823. back: {
  33824. height: math.unit(6 + 7/12, "feet"),
  33825. weight: math.unit(210, "lb"),
  33826. name: "Back",
  33827. image: {
  33828. source: "./media/characters/tarn/back.svg",
  33829. extra: 3566/3241,
  33830. bottom: 34/3600
  33831. }
  33832. },
  33833. dick: {
  33834. height: math.unit(1.65, "feet"),
  33835. name: "Dick",
  33836. image: {
  33837. source: "./media/characters/tarn/dick.svg"
  33838. }
  33839. },
  33840. paw: {
  33841. height: math.unit(1.80, "feet"),
  33842. name: "Paw",
  33843. image: {
  33844. source: "./media/characters/tarn/paw.svg"
  33845. }
  33846. },
  33847. tongue: {
  33848. height: math.unit(0.97, "feet"),
  33849. name: "Tongue",
  33850. image: {
  33851. source: "./media/characters/tarn/tongue.svg"
  33852. }
  33853. },
  33854. },
  33855. [
  33856. {
  33857. name: "Micro",
  33858. height: math.unit(4, "inches")
  33859. },
  33860. {
  33861. name: "Normal",
  33862. height: math.unit(6 + 7/12, "feet"),
  33863. default: true
  33864. },
  33865. {
  33866. name: "Macro",
  33867. height: math.unit(300, "feet")
  33868. },
  33869. ]
  33870. ))
  33871. characterMakers.push(() => makeCharacter(
  33872. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33873. {
  33874. front: {
  33875. height: math.unit(5 + 7/12, "feet"),
  33876. weight: math.unit(80, "kg"),
  33877. name: "Front",
  33878. image: {
  33879. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33880. extra: 3023/2865,
  33881. bottom: 33/3056
  33882. }
  33883. },
  33884. back: {
  33885. height: math.unit(5 + 7/12, "feet"),
  33886. weight: math.unit(80, "kg"),
  33887. name: "Back",
  33888. image: {
  33889. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33890. extra: 3020/2886,
  33891. bottom: 30/3050
  33892. }
  33893. },
  33894. dick: {
  33895. height: math.unit(0.98, "feet"),
  33896. name: "Dick",
  33897. image: {
  33898. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33899. }
  33900. },
  33901. anatomy: {
  33902. height: math.unit(2.86, "feet"),
  33903. name: "Anatomy",
  33904. image: {
  33905. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Really Small",
  33912. height: math.unit(2, "inches")
  33913. },
  33914. {
  33915. name: "Micro",
  33916. height: math.unit(5.583, "inches")
  33917. },
  33918. {
  33919. name: "Normal",
  33920. height: math.unit(5 + 7/12, "feet"),
  33921. default: true
  33922. },
  33923. {
  33924. name: "Macro",
  33925. height: math.unit(67, "feet")
  33926. },
  33927. {
  33928. name: "Megamacro",
  33929. height: math.unit(134, "feet")
  33930. },
  33931. ]
  33932. ))
  33933. characterMakers.push(() => makeCharacter(
  33934. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33935. {
  33936. front: {
  33937. height: math.unit(9, "feet"),
  33938. weight: math.unit(120, "lb"),
  33939. name: "Front",
  33940. image: {
  33941. source: "./media/characters/sally/front.svg",
  33942. extra: 1506/1349,
  33943. bottom: 66/1572
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Normal",
  33950. height: math.unit(9, "feet"),
  33951. default: true
  33952. },
  33953. ]
  33954. ))
  33955. characterMakers.push(() => makeCharacter(
  33956. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33957. {
  33958. front: {
  33959. height: math.unit(8, "feet"),
  33960. weight: math.unit(900, "lb"),
  33961. name: "Front",
  33962. image: {
  33963. source: "./media/characters/owen/front.svg",
  33964. extra: 1761/1657,
  33965. bottom: 74/1835
  33966. }
  33967. },
  33968. side: {
  33969. height: math.unit(8, "feet"),
  33970. weight: math.unit(900, "lb"),
  33971. name: "Side",
  33972. image: {
  33973. source: "./media/characters/owen/side.svg",
  33974. extra: 1797/1734,
  33975. bottom: 30/1827
  33976. }
  33977. },
  33978. back: {
  33979. height: math.unit(8, "feet"),
  33980. weight: math.unit(900, "lb"),
  33981. name: "Back",
  33982. image: {
  33983. source: "./media/characters/owen/back.svg",
  33984. extra: 1796/1706,
  33985. bottom: 59/1855
  33986. }
  33987. },
  33988. maw: {
  33989. height: math.unit(1.76, "feet"),
  33990. name: "Maw",
  33991. image: {
  33992. source: "./media/characters/owen/maw.svg"
  33993. }
  33994. },
  33995. },
  33996. [
  33997. {
  33998. name: "Normal",
  33999. height: math.unit(8, "feet"),
  34000. default: true
  34001. },
  34002. ]
  34003. ))
  34004. characterMakers.push(() => makeCharacter(
  34005. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34006. {
  34007. front: {
  34008. height: math.unit(4, "feet"),
  34009. weight: math.unit(400, "lb"),
  34010. name: "Front",
  34011. image: {
  34012. source: "./media/characters/ryth/front.svg",
  34013. extra: 1920/1748,
  34014. bottom: 42/1962
  34015. }
  34016. },
  34017. back: {
  34018. height: math.unit(4, "feet"),
  34019. weight: math.unit(400, "lb"),
  34020. name: "Back",
  34021. image: {
  34022. source: "./media/characters/ryth/back.svg",
  34023. extra: 1897/1690,
  34024. bottom: 89/1986
  34025. }
  34026. },
  34027. mouth: {
  34028. height: math.unit(1.39, "feet"),
  34029. name: "Mouth",
  34030. image: {
  34031. source: "./media/characters/ryth/mouth.svg"
  34032. }
  34033. },
  34034. tailmaw: {
  34035. height: math.unit(1.23, "feet"),
  34036. name: "Tailmaw",
  34037. image: {
  34038. source: "./media/characters/ryth/tailmaw.svg"
  34039. }
  34040. },
  34041. goia: {
  34042. height: math.unit(4, "meters"),
  34043. weight: math.unit(10800, "lb"),
  34044. name: "Goia",
  34045. image: {
  34046. source: "./media/characters/ryth/goia.svg",
  34047. extra: 745/640,
  34048. bottom: 107/852
  34049. }
  34050. },
  34051. goiaFront: {
  34052. height: math.unit(4, "meters"),
  34053. weight: math.unit(10800, "lb"),
  34054. name: "Goia (Front)",
  34055. image: {
  34056. source: "./media/characters/ryth/goia-front.svg",
  34057. extra: 750/586,
  34058. bottom: 114/864
  34059. }
  34060. },
  34061. goiaMaw: {
  34062. height: math.unit(5.55, "feet"),
  34063. name: "Goia Maw",
  34064. image: {
  34065. source: "./media/characters/ryth/goia-maw.svg"
  34066. }
  34067. },
  34068. goiaForepaw: {
  34069. height: math.unit(3.5, "feet"),
  34070. name: "Goia Forepaw",
  34071. image: {
  34072. source: "./media/characters/ryth/goia-forepaw.svg"
  34073. }
  34074. },
  34075. goiaHindpaw: {
  34076. height: math.unit(5.55, "feet"),
  34077. name: "Goia Hindpaw",
  34078. image: {
  34079. source: "./media/characters/ryth/goia-hindpaw.svg"
  34080. }
  34081. },
  34082. },
  34083. [
  34084. {
  34085. name: "Normal",
  34086. height: math.unit(4, "feet"),
  34087. default: true
  34088. },
  34089. ]
  34090. ))
  34091. characterMakers.push(() => makeCharacter(
  34092. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34093. {
  34094. front: {
  34095. height: math.unit(7, "feet"),
  34096. weight: math.unit(180, "lb"),
  34097. name: "Front",
  34098. image: {
  34099. source: "./media/characters/necrolance/front.svg",
  34100. extra: 1062/947,
  34101. bottom: 41/1103
  34102. }
  34103. },
  34104. back: {
  34105. height: math.unit(7, "feet"),
  34106. weight: math.unit(180, "lb"),
  34107. name: "Back",
  34108. image: {
  34109. source: "./media/characters/necrolance/back.svg",
  34110. extra: 1045/984,
  34111. bottom: 14/1059
  34112. }
  34113. },
  34114. wing: {
  34115. height: math.unit(2.67, "feet"),
  34116. name: "Wing",
  34117. image: {
  34118. source: "./media/characters/necrolance/wing.svg"
  34119. }
  34120. },
  34121. },
  34122. [
  34123. {
  34124. name: "Normal",
  34125. height: math.unit(7, "feet"),
  34126. default: true
  34127. },
  34128. ]
  34129. ))
  34130. characterMakers.push(() => makeCharacter(
  34131. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34132. {
  34133. front: {
  34134. height: math.unit(76, "meters"),
  34135. weight: math.unit(30000, "tons"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/tyler/front.svg",
  34139. extra: 1640/1640,
  34140. bottom: 114/1754
  34141. }
  34142. },
  34143. },
  34144. [
  34145. {
  34146. name: "Macro",
  34147. height: math.unit(76, "meters"),
  34148. default: true
  34149. },
  34150. ]
  34151. ))
  34152. characterMakers.push(() => makeCharacter(
  34153. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34154. {
  34155. front: {
  34156. height: math.unit(4 + 11/12, "feet"),
  34157. weight: math.unit(132, "lb"),
  34158. name: "Front",
  34159. image: {
  34160. source: "./media/characters/icey/front.svg",
  34161. extra: 2750/2550,
  34162. bottom: 33/2783
  34163. }
  34164. },
  34165. back: {
  34166. height: math.unit(4 + 11/12, "feet"),
  34167. weight: math.unit(132, "lb"),
  34168. name: "Back",
  34169. image: {
  34170. source: "./media/characters/icey/back.svg",
  34171. extra: 2624/2481,
  34172. bottom: 35/2659
  34173. }
  34174. },
  34175. },
  34176. [
  34177. {
  34178. name: "Normal",
  34179. height: math.unit(4 + 11/12, "feet"),
  34180. default: true
  34181. },
  34182. ]
  34183. ))
  34184. characterMakers.push(() => makeCharacter(
  34185. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34186. {
  34187. front: {
  34188. height: math.unit(100, "feet"),
  34189. weight: math.unit(0, "lb"),
  34190. name: "Front",
  34191. image: {
  34192. source: "./media/characters/smile/front.svg",
  34193. extra: 2983/2912,
  34194. bottom: 162/3145
  34195. }
  34196. },
  34197. back: {
  34198. height: math.unit(100, "feet"),
  34199. weight: math.unit(0, "lb"),
  34200. name: "Back",
  34201. image: {
  34202. source: "./media/characters/smile/back.svg",
  34203. extra: 3143/3031,
  34204. bottom: 91/3234
  34205. }
  34206. },
  34207. head: {
  34208. height: math.unit(26.3, "feet"),
  34209. weight: math.unit(0, "lb"),
  34210. name: "Head",
  34211. image: {
  34212. source: "./media/characters/smile/head.svg"
  34213. }
  34214. },
  34215. collar: {
  34216. height: math.unit(5.3, "feet"),
  34217. weight: math.unit(0, "lb"),
  34218. name: "Collar",
  34219. image: {
  34220. source: "./media/characters/smile/collar.svg"
  34221. }
  34222. },
  34223. },
  34224. [
  34225. {
  34226. name: "Macro",
  34227. height: math.unit(100, "feet"),
  34228. default: true
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34234. {
  34235. dragon: {
  34236. height: math.unit(26, "feet"),
  34237. weight: math.unit(36, "tons"),
  34238. name: "Dragon",
  34239. image: {
  34240. source: "./media/characters/arimphae/dragon.svg",
  34241. extra: 1574/983,
  34242. bottom: 357/1931
  34243. }
  34244. },
  34245. drake: {
  34246. height: math.unit(9, "feet"),
  34247. weight: math.unit(1.5, "tons"),
  34248. name: "Drake",
  34249. image: {
  34250. source: "./media/characters/arimphae/drake.svg",
  34251. extra: 1120/925,
  34252. bottom: 435/1555
  34253. }
  34254. },
  34255. },
  34256. [
  34257. {
  34258. name: "Small",
  34259. height: math.unit(26*5/9, "feet")
  34260. },
  34261. {
  34262. name: "Normal",
  34263. height: math.unit(26, "feet"),
  34264. default: true
  34265. },
  34266. ]
  34267. ))
  34268. characterMakers.push(() => makeCharacter(
  34269. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34270. {
  34271. front: {
  34272. height: math.unit(8 + 9/12, "feet"),
  34273. name: "Front",
  34274. image: {
  34275. source: "./media/characters/xander/front.svg",
  34276. extra: 1237/974,
  34277. bottom: 94/1331
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Normal",
  34284. height: math.unit(8 + 9/12, "feet"),
  34285. default: true
  34286. },
  34287. {
  34288. name: "Gaze Grabber",
  34289. height: math.unit(13 + 8/12, "feet")
  34290. },
  34291. {
  34292. name: "Jaw Dropper",
  34293. height: math.unit(27, "feet")
  34294. },
  34295. {
  34296. name: "Show Stopper",
  34297. height: math.unit(136, "feet")
  34298. },
  34299. {
  34300. name: "Superstar",
  34301. height: math.unit(1.9e6, "miles")
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34307. {
  34308. side: {
  34309. height: math.unit(2100, "feet"),
  34310. name: "Side",
  34311. image: {
  34312. source: "./media/characters/osiris/side.svg",
  34313. extra: 1105/939,
  34314. bottom: 167/1272
  34315. }
  34316. },
  34317. },
  34318. [
  34319. {
  34320. name: "Macro",
  34321. height: math.unit(2100, "feet"),
  34322. default: true
  34323. },
  34324. ]
  34325. ))
  34326. characterMakers.push(() => makeCharacter(
  34327. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34328. {
  34329. front: {
  34330. height: math.unit(6 + 8/12, "feet"),
  34331. weight: math.unit(225, "lb"),
  34332. name: "Front",
  34333. image: {
  34334. source: "./media/characters/rhys-londe/front.svg",
  34335. extra: 2258/2141,
  34336. bottom: 188/2446
  34337. }
  34338. },
  34339. back: {
  34340. height: math.unit(6 + 8/12, "feet"),
  34341. weight: math.unit(225, "lb"),
  34342. name: "Back",
  34343. image: {
  34344. source: "./media/characters/rhys-londe/back.svg",
  34345. extra: 2237/2137,
  34346. bottom: 63/2300
  34347. }
  34348. },
  34349. frontNsfw: {
  34350. height: math.unit(6 + 8/12, "feet"),
  34351. weight: math.unit(225, "lb"),
  34352. name: "Front (NSFW)",
  34353. image: {
  34354. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34355. extra: 2258/2141,
  34356. bottom: 188/2446
  34357. }
  34358. },
  34359. backNsfw: {
  34360. height: math.unit(6 + 8/12, "feet"),
  34361. weight: math.unit(225, "lb"),
  34362. name: "Back (NSFW)",
  34363. image: {
  34364. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34365. extra: 2237/2137,
  34366. bottom: 63/2300
  34367. }
  34368. },
  34369. dick: {
  34370. height: math.unit(30, "inches"),
  34371. name: "Dick",
  34372. image: {
  34373. source: "./media/characters/rhys-londe/dick.svg"
  34374. }
  34375. },
  34376. maw: {
  34377. height: math.unit(1.6, "feet"),
  34378. name: "Maw",
  34379. image: {
  34380. source: "./media/characters/rhys-londe/maw.svg"
  34381. }
  34382. },
  34383. },
  34384. [
  34385. {
  34386. name: "Normal",
  34387. height: math.unit(6 + 8/12, "feet"),
  34388. default: true
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34394. {
  34395. front: {
  34396. height: math.unit(3 + 10/12, "feet"),
  34397. weight: math.unit(90, "lb"),
  34398. name: "Front",
  34399. image: {
  34400. source: "./media/characters/taivas-ensim/front.svg",
  34401. extra: 1327/1216,
  34402. bottom: 96/1423
  34403. }
  34404. },
  34405. back: {
  34406. height: math.unit(3 + 10/12, "feet"),
  34407. weight: math.unit(90, "lb"),
  34408. name: "Back",
  34409. image: {
  34410. source: "./media/characters/taivas-ensim/back.svg",
  34411. extra: 1355/1247,
  34412. bottom: 11/1366
  34413. }
  34414. },
  34415. frontNsfw: {
  34416. height: math.unit(3 + 10/12, "feet"),
  34417. weight: math.unit(90, "lb"),
  34418. name: "Front (NSFW)",
  34419. image: {
  34420. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34421. extra: 1327/1216,
  34422. bottom: 96/1423
  34423. }
  34424. },
  34425. backNsfw: {
  34426. height: math.unit(3 + 10/12, "feet"),
  34427. weight: math.unit(90, "lb"),
  34428. name: "Back (NSFW)",
  34429. image: {
  34430. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34431. extra: 1355/1247,
  34432. bottom: 11/1366
  34433. }
  34434. },
  34435. },
  34436. [
  34437. {
  34438. name: "Normal",
  34439. height: math.unit(3 + 10/12, "feet"),
  34440. default: true
  34441. },
  34442. ]
  34443. ))
  34444. characterMakers.push(() => makeCharacter(
  34445. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34446. {
  34447. front: {
  34448. height: math.unit(9 + 6/12, "feet"),
  34449. weight: math.unit(940, "lb"),
  34450. name: "Front",
  34451. image: {
  34452. source: "./media/characters/byliss/front.svg",
  34453. extra: 1327/1290,
  34454. bottom: 82/1409
  34455. }
  34456. },
  34457. back: {
  34458. height: math.unit(9 + 6/12, "feet"),
  34459. weight: math.unit(940, "lb"),
  34460. name: "Back",
  34461. image: {
  34462. source: "./media/characters/byliss/back.svg",
  34463. extra: 1376/1349,
  34464. bottom: 9/1385
  34465. }
  34466. },
  34467. frontNsfw: {
  34468. height: math.unit(9 + 6/12, "feet"),
  34469. weight: math.unit(940, "lb"),
  34470. name: "Front (NSFW)",
  34471. image: {
  34472. source: "./media/characters/byliss/front-nsfw.svg",
  34473. extra: 1327/1290,
  34474. bottom: 82/1409
  34475. }
  34476. },
  34477. backNsfw: {
  34478. height: math.unit(9 + 6/12, "feet"),
  34479. weight: math.unit(940, "lb"),
  34480. name: "Back (NSFW)",
  34481. image: {
  34482. source: "./media/characters/byliss/back-nsfw.svg",
  34483. extra: 1376/1349,
  34484. bottom: 9/1385
  34485. }
  34486. },
  34487. },
  34488. [
  34489. {
  34490. name: "Normal",
  34491. height: math.unit(9 + 6/12, "feet"),
  34492. default: true
  34493. },
  34494. ]
  34495. ))
  34496. characterMakers.push(() => makeCharacter(
  34497. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34498. {
  34499. front: {
  34500. height: math.unit(5 + 2/12, "feet"),
  34501. weight: math.unit(200, "lb"),
  34502. name: "Front",
  34503. image: {
  34504. source: "./media/characters/noraly/front.svg",
  34505. extra: 4985/4773,
  34506. bottom: 150/5135
  34507. }
  34508. },
  34509. full: {
  34510. height: math.unit(5 + 2/12, "feet"),
  34511. weight: math.unit(164, "lb"),
  34512. name: "Full",
  34513. image: {
  34514. source: "./media/characters/noraly/full.svg",
  34515. extra: 1114/1059,
  34516. bottom: 35/1149
  34517. }
  34518. },
  34519. fuller: {
  34520. height: math.unit(5 + 2/12, "feet"),
  34521. weight: math.unit(230, "lb"),
  34522. name: "Fuller",
  34523. image: {
  34524. source: "./media/characters/noraly/fuller.svg",
  34525. extra: 1114/1059,
  34526. bottom: 35/1149
  34527. }
  34528. },
  34529. fullest: {
  34530. height: math.unit(5 + 2/12, "feet"),
  34531. weight: math.unit(300, "lb"),
  34532. name: "Fullest",
  34533. image: {
  34534. source: "./media/characters/noraly/fullest.svg",
  34535. extra: 1114/1059,
  34536. bottom: 35/1149
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(5 + 2/12, "feet"),
  34544. default: true
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34550. {
  34551. front: {
  34552. height: math.unit(5 + 2/12, "feet"),
  34553. weight: math.unit(210, "lb"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/pera/front.svg",
  34557. extra: 1560/1531,
  34558. bottom: 165/1725
  34559. }
  34560. },
  34561. back: {
  34562. height: math.unit(5 + 2/12, "feet"),
  34563. weight: math.unit(210, "lb"),
  34564. name: "Back",
  34565. image: {
  34566. source: "./media/characters/pera/back.svg",
  34567. extra: 1523/1493,
  34568. bottom: 152/1675
  34569. }
  34570. },
  34571. dick: {
  34572. height: math.unit(2.4, "feet"),
  34573. name: "Dick",
  34574. image: {
  34575. source: "./media/characters/pera/dick.svg"
  34576. }
  34577. },
  34578. },
  34579. [
  34580. {
  34581. name: "Normal",
  34582. height: math.unit(5 + 2/12, "feet"),
  34583. default: true
  34584. },
  34585. ]
  34586. ))
  34587. characterMakers.push(() => makeCharacter(
  34588. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34589. {
  34590. front: {
  34591. height: math.unit(12, "feet"),
  34592. weight: math.unit(3200, "lb"),
  34593. name: "Front",
  34594. image: {
  34595. source: "./media/characters/julian/front.svg",
  34596. extra: 2962/2701,
  34597. bottom: 184/3146
  34598. }
  34599. },
  34600. maw: {
  34601. height: math.unit(5.35, "feet"),
  34602. name: "Maw",
  34603. image: {
  34604. source: "./media/characters/julian/maw.svg"
  34605. }
  34606. },
  34607. paw: {
  34608. height: math.unit(3.07, "feet"),
  34609. name: "Paw",
  34610. image: {
  34611. source: "./media/characters/julian/paw.svg"
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Default",
  34618. height: math.unit(12, "feet"),
  34619. default: true
  34620. },
  34621. {
  34622. name: "Big",
  34623. height: math.unit(50, "feet")
  34624. },
  34625. {
  34626. name: "Really Big",
  34627. height: math.unit(1, "mile")
  34628. },
  34629. {
  34630. name: "Extremely Big",
  34631. height: math.unit(100, "miles")
  34632. },
  34633. {
  34634. name: "Planet Hugger",
  34635. height: math.unit(200, "megameters")
  34636. },
  34637. {
  34638. name: "Unreasonably Big",
  34639. height: math.unit(1e300, "meters")
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34645. {
  34646. solgooleo: {
  34647. height: math.unit(4, "meters"),
  34648. weight: math.unit(6000*1.5, "kg"),
  34649. volume: math.unit(6000, "liters"),
  34650. name: "Solgooleo",
  34651. image: {
  34652. source: "./media/characters/pi/solgooleo.svg",
  34653. extra: 388/331,
  34654. bottom: 29/417
  34655. }
  34656. },
  34657. },
  34658. [
  34659. {
  34660. name: "Normal",
  34661. height: math.unit(4, "meters"),
  34662. default: true
  34663. },
  34664. ]
  34665. ))
  34666. characterMakers.push(() => makeCharacter(
  34667. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34668. {
  34669. front: {
  34670. height: math.unit(8, "feet"),
  34671. weight: math.unit(4, "tons"),
  34672. name: "Front",
  34673. image: {
  34674. source: "./media/characters/shaun/front.svg",
  34675. extra: 503/495,
  34676. bottom: 20/523
  34677. }
  34678. },
  34679. back: {
  34680. height: math.unit(8, "feet"),
  34681. weight: math.unit(4, "tons"),
  34682. name: "Back",
  34683. image: {
  34684. source: "./media/characters/shaun/back.svg",
  34685. extra: 487/480,
  34686. bottom: 20/507
  34687. }
  34688. },
  34689. },
  34690. [
  34691. {
  34692. name: "Lorg",
  34693. height: math.unit(8, "feet"),
  34694. default: true
  34695. },
  34696. ]
  34697. ))
  34698. characterMakers.push(() => makeCharacter(
  34699. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34700. {
  34701. frontAnthro: {
  34702. height: math.unit(7, "feet"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/sini/front-anthro.svg",
  34706. extra: 726/678,
  34707. bottom: 35/761
  34708. },
  34709. form: "anthro",
  34710. default: true
  34711. },
  34712. backAnthro: {
  34713. height: math.unit(7, "feet"),
  34714. name: "Back",
  34715. image: {
  34716. source: "./media/characters/sini/back-anthro.svg",
  34717. extra: 743/701,
  34718. bottom: 12/755
  34719. },
  34720. form: "anthro",
  34721. },
  34722. frontAnthroNsfw: {
  34723. height: math.unit(7, "feet"),
  34724. name: "Front (NSFW)",
  34725. image: {
  34726. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34727. extra: 726/678,
  34728. bottom: 35/761
  34729. },
  34730. form: "anthro"
  34731. },
  34732. backAnthroNsfw: {
  34733. height: math.unit(7, "feet"),
  34734. name: "Back (NSFW)",
  34735. image: {
  34736. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34737. extra: 743/701,
  34738. bottom: 12/755
  34739. },
  34740. form: "anthro",
  34741. },
  34742. mawAnthro: {
  34743. height: math.unit(2.14, "feet"),
  34744. name: "Maw",
  34745. image: {
  34746. source: "./media/characters/sini/maw-anthro.svg"
  34747. },
  34748. form: "anthro"
  34749. },
  34750. dick: {
  34751. height: math.unit(1.45, "feet"),
  34752. name: "Dick",
  34753. image: {
  34754. source: "./media/characters/sini/dick-anthro.svg"
  34755. },
  34756. form: "anthro"
  34757. },
  34758. feral: {
  34759. height: math.unit(16, "feet"),
  34760. name: "Feral",
  34761. image: {
  34762. source: "./media/characters/sini/feral.svg",
  34763. extra: 814/605,
  34764. bottom: 11/825
  34765. },
  34766. form: "feral",
  34767. default: true
  34768. },
  34769. feralNsfw: {
  34770. height: math.unit(16, "feet"),
  34771. name: "Feral (NSFW)",
  34772. image: {
  34773. source: "./media/characters/sini/feral-nsfw.svg",
  34774. extra: 814/605,
  34775. bottom: 11/825
  34776. },
  34777. form: "feral"
  34778. },
  34779. mawFeral: {
  34780. height: math.unit(5.66, "feet"),
  34781. name: "Maw",
  34782. image: {
  34783. source: "./media/characters/sini/maw-feral.svg"
  34784. },
  34785. form: "feral",
  34786. },
  34787. pawFeral: {
  34788. height: math.unit(5.17, "feet"),
  34789. name: "Paw",
  34790. image: {
  34791. source: "./media/characters/sini/paw-feral.svg"
  34792. },
  34793. form: "feral",
  34794. },
  34795. rumpFeral: {
  34796. height: math.unit(13.11, "feet"),
  34797. name: "Rump",
  34798. image: {
  34799. source: "./media/characters/sini/rump-feral.svg"
  34800. },
  34801. form: "feral",
  34802. },
  34803. dickFeral: {
  34804. height: math.unit(1, "feet"),
  34805. name: "Dick",
  34806. image: {
  34807. source: "./media/characters/sini/dick-feral.svg"
  34808. },
  34809. form: "feral",
  34810. },
  34811. eyeFeral: {
  34812. height: math.unit(1.23, "feet"),
  34813. name: "Eye",
  34814. image: {
  34815. source: "./media/characters/sini/eye-feral.svg"
  34816. },
  34817. form: "feral",
  34818. },
  34819. },
  34820. [
  34821. {
  34822. name: "Normal",
  34823. height: math.unit(7, "feet"),
  34824. default: true,
  34825. form: "anthro"
  34826. },
  34827. {
  34828. name: "Normal",
  34829. height: math.unit(16, "feet"),
  34830. default: true,
  34831. form: "feral"
  34832. },
  34833. ],
  34834. {
  34835. "anthro": {
  34836. name: "Anthro",
  34837. default: true
  34838. },
  34839. "feral": {
  34840. name: "Feral",
  34841. }
  34842. }
  34843. ))
  34844. characterMakers.push(() => makeCharacter(
  34845. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34846. {
  34847. side: {
  34848. height: math.unit(47.2, "meters"),
  34849. weight: math.unit(10000, "tons"),
  34850. name: "Side",
  34851. image: {
  34852. source: "./media/characters/raylldo/side.svg",
  34853. extra: 2363/642,
  34854. bottom: 221/2584
  34855. }
  34856. },
  34857. top: {
  34858. height: math.unit(240, "meters"),
  34859. weight: math.unit(10000, "tons"),
  34860. name: "Top",
  34861. image: {
  34862. source: "./media/characters/raylldo/top.svg"
  34863. }
  34864. },
  34865. bottom: {
  34866. height: math.unit(240, "meters"),
  34867. weight: math.unit(10000, "tons"),
  34868. name: "Bottom",
  34869. image: {
  34870. source: "./media/characters/raylldo/bottom.svg"
  34871. }
  34872. },
  34873. head: {
  34874. height: math.unit(38.6, "meters"),
  34875. name: "Head",
  34876. image: {
  34877. source: "./media/characters/raylldo/head.svg",
  34878. extra: 1335/1112,
  34879. bottom: 0/1335
  34880. }
  34881. },
  34882. maw: {
  34883. height: math.unit(16.37, "meters"),
  34884. name: "Maw",
  34885. image: {
  34886. source: "./media/characters/raylldo/maw.svg",
  34887. extra: 883/660,
  34888. bottom: 0/883
  34889. },
  34890. extraAttributes: {
  34891. preyCapacity: {
  34892. name: "Capacity",
  34893. power: 3,
  34894. type: "volume",
  34895. base: math.unit(1000, "people")
  34896. },
  34897. tongueSize: {
  34898. name: "Tongue Size",
  34899. power: 2,
  34900. type: "area",
  34901. base: math.unit(21, "m^2")
  34902. }
  34903. }
  34904. },
  34905. forepaw: {
  34906. height: math.unit(18, "meters"),
  34907. name: "Forepaw",
  34908. image: {
  34909. source: "./media/characters/raylldo/forepaw.svg"
  34910. }
  34911. },
  34912. hindpaw: {
  34913. height: math.unit(23, "meters"),
  34914. name: "Hindpaw",
  34915. image: {
  34916. source: "./media/characters/raylldo/hindpaw.svg"
  34917. }
  34918. },
  34919. genitals: {
  34920. height: math.unit(42, "meters"),
  34921. name: "Genitals",
  34922. image: {
  34923. source: "./media/characters/raylldo/genitals.svg"
  34924. }
  34925. },
  34926. },
  34927. [
  34928. {
  34929. name: "Normal",
  34930. height: math.unit(47.2, "meters"),
  34931. default: true
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34937. {
  34938. anthroFront: {
  34939. height: math.unit(9, "feet"),
  34940. weight: math.unit(600, "lb"),
  34941. name: "Anthro (Front)",
  34942. image: {
  34943. source: "./media/characters/glint/anthro-front.svg",
  34944. extra: 1097/1018,
  34945. bottom: 28/1125
  34946. }
  34947. },
  34948. anthroBack: {
  34949. height: math.unit(9, "feet"),
  34950. weight: math.unit(600, "lb"),
  34951. name: "Anthro (Back)",
  34952. image: {
  34953. source: "./media/characters/glint/anthro-back.svg",
  34954. extra: 1154/997,
  34955. bottom: 36/1190
  34956. }
  34957. },
  34958. feral: {
  34959. height: math.unit(11, "feet"),
  34960. weight: math.unit(50000, "lb"),
  34961. name: "Feral",
  34962. image: {
  34963. source: "./media/characters/glint/feral.svg",
  34964. extra: 3035/1585,
  34965. bottom: 1169/4204
  34966. }
  34967. },
  34968. dickAnthro: {
  34969. height: math.unit(0.7, "meters"),
  34970. name: "Dick (Anthro)",
  34971. image: {
  34972. source: "./media/characters/glint/dick-anthro.svg"
  34973. }
  34974. },
  34975. dickFeral: {
  34976. height: math.unit(2.65, "meters"),
  34977. name: "Dick (Feral)",
  34978. image: {
  34979. source: "./media/characters/glint/dick-feral.svg"
  34980. }
  34981. },
  34982. slitHidden: {
  34983. height: math.unit(5.85, "meters"),
  34984. name: "Slit (Hidden)",
  34985. image: {
  34986. source: "./media/characters/glint/slit-hidden.svg"
  34987. }
  34988. },
  34989. slitErect: {
  34990. height: math.unit(5.85, "meters"),
  34991. name: "Slit (Erect)",
  34992. image: {
  34993. source: "./media/characters/glint/slit-erect.svg"
  34994. }
  34995. },
  34996. mawAnthro: {
  34997. height: math.unit(0.63, "meters"),
  34998. name: "Maw (Anthro)",
  34999. image: {
  35000. source: "./media/characters/glint/maw.svg"
  35001. }
  35002. },
  35003. mawFeral: {
  35004. height: math.unit(2.89, "meters"),
  35005. name: "Maw (Feral)",
  35006. image: {
  35007. source: "./media/characters/glint/maw.svg"
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(9, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35021. {
  35022. side: {
  35023. height: math.unit(15, "feet"),
  35024. weight: math.unit(5000, "kg"),
  35025. name: "Side",
  35026. image: {
  35027. source: "./media/characters/kairne/side.svg",
  35028. extra: 979/811,
  35029. bottom: 13/992
  35030. }
  35031. },
  35032. front: {
  35033. height: math.unit(15, "feet"),
  35034. weight: math.unit(5000, "kg"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/kairne/front.svg",
  35038. extra: 908/814,
  35039. bottom: 26/934
  35040. }
  35041. },
  35042. sideNsfw: {
  35043. height: math.unit(15, "feet"),
  35044. weight: math.unit(5000, "kg"),
  35045. name: "Side (NSFW)",
  35046. image: {
  35047. source: "./media/characters/kairne/side-nsfw.svg",
  35048. extra: 979/811,
  35049. bottom: 13/992
  35050. }
  35051. },
  35052. frontNsfw: {
  35053. height: math.unit(15, "feet"),
  35054. weight: math.unit(5000, "kg"),
  35055. name: "Front (NSFW)",
  35056. image: {
  35057. source: "./media/characters/kairne/front-nsfw.svg",
  35058. extra: 908/814,
  35059. bottom: 26/934
  35060. }
  35061. },
  35062. dickCaged: {
  35063. height: math.unit(0.65, "meters"),
  35064. name: "Dick-caged",
  35065. image: {
  35066. source: "./media/characters/kairne/dick-caged.svg"
  35067. }
  35068. },
  35069. dick: {
  35070. height: math.unit(0.79, "meters"),
  35071. name: "Dick",
  35072. image: {
  35073. source: "./media/characters/kairne/dick.svg"
  35074. }
  35075. },
  35076. genitals: {
  35077. height: math.unit(1.29, "meters"),
  35078. name: "Genitals",
  35079. image: {
  35080. source: "./media/characters/kairne/genitals.svg"
  35081. }
  35082. },
  35083. maw: {
  35084. height: math.unit(1.73, "meters"),
  35085. name: "Maw",
  35086. image: {
  35087. source: "./media/characters/kairne/maw.svg"
  35088. }
  35089. },
  35090. },
  35091. [
  35092. {
  35093. name: "Normal",
  35094. height: math.unit(15, "feet"),
  35095. default: true
  35096. },
  35097. ]
  35098. ))
  35099. characterMakers.push(() => makeCharacter(
  35100. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35101. {
  35102. front: {
  35103. height: math.unit(5 + 8/12, "feet"),
  35104. weight: math.unit(139, "lb"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/biscuit-jackal/front.svg",
  35108. extra: 2106/1961,
  35109. bottom: 58/2164
  35110. }
  35111. },
  35112. back: {
  35113. height: math.unit(5 + 8/12, "feet"),
  35114. weight: math.unit(139, "lb"),
  35115. name: "Back",
  35116. image: {
  35117. source: "./media/characters/biscuit-jackal/back.svg",
  35118. extra: 2132/1976,
  35119. bottom: 57/2189
  35120. }
  35121. },
  35122. werejackal: {
  35123. height: math.unit(6 + 3/12, "feet"),
  35124. weight: math.unit(188, "lb"),
  35125. name: "Werejackal",
  35126. image: {
  35127. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35128. extra: 2373/2178,
  35129. bottom: 53/2426
  35130. }
  35131. },
  35132. },
  35133. [
  35134. {
  35135. name: "Normal",
  35136. height: math.unit(5 + 8/12, "feet"),
  35137. default: true
  35138. },
  35139. ]
  35140. ))
  35141. characterMakers.push(() => makeCharacter(
  35142. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35143. {
  35144. front: {
  35145. height: math.unit(140, "cm"),
  35146. weight: math.unit(45, "kg"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/tayra-white/front.svg",
  35150. extra: 2229/2192,
  35151. bottom: 75/2304
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(140, "cm"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(4 + 5/12, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/scoop/front.svg",
  35171. extra: 1257/1136,
  35172. bottom: 69/1326
  35173. }
  35174. },
  35175. back: {
  35176. height: math.unit(4 + 5/12, "feet"),
  35177. name: "Back",
  35178. image: {
  35179. source: "./media/characters/scoop/back.svg",
  35180. extra: 1321/1152,
  35181. bottom: 32/1353
  35182. }
  35183. },
  35184. maw: {
  35185. height: math.unit(0.68, "feet"),
  35186. name: "Maw",
  35187. image: {
  35188. source: "./media/characters/scoop/maw.svg"
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Really Small",
  35195. height: math.unit(1, "mm")
  35196. },
  35197. {
  35198. name: "Micro",
  35199. height: math.unit(1, "inch")
  35200. },
  35201. {
  35202. name: "Normal",
  35203. height: math.unit(4 + 5/12, "feet"),
  35204. default: true
  35205. },
  35206. {
  35207. name: "Macro",
  35208. height: math.unit(200, "feet")
  35209. },
  35210. {
  35211. name: "Megamacro",
  35212. height: math.unit(3240, "feet")
  35213. },
  35214. {
  35215. name: "Teramacro",
  35216. height: math.unit(2500, "miles")
  35217. },
  35218. ]
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35222. {
  35223. front: {
  35224. height: math.unit(15 + 7/12, "feet"),
  35225. weight: math.unit(1150, "tons"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/saphinara/front.svg",
  35229. extra: 1837/1643,
  35230. bottom: 84/1921
  35231. },
  35232. form: "normal",
  35233. default: true
  35234. },
  35235. side: {
  35236. height: math.unit(15 + 7/12, "feet"),
  35237. weight: math.unit(1150, "tons"),
  35238. name: "Side",
  35239. image: {
  35240. source: "./media/characters/saphinara/side.svg",
  35241. extra: 605/547,
  35242. bottom: 6/611
  35243. },
  35244. form: "normal"
  35245. },
  35246. back: {
  35247. height: math.unit(15 + 7/12, "feet"),
  35248. weight: math.unit(1150, "tons"),
  35249. name: "Back",
  35250. image: {
  35251. source: "./media/characters/saphinara/back.svg",
  35252. extra: 591/531,
  35253. bottom: 13/604
  35254. },
  35255. form: "normal"
  35256. },
  35257. frontTail: {
  35258. height: math.unit(15 + 7/12, "feet"),
  35259. weight: math.unit(1150, "tons"),
  35260. name: "Front (Full Tail)",
  35261. image: {
  35262. source: "./media/characters/saphinara/front-tail.svg",
  35263. extra: 2256/1630,
  35264. bottom: 261/2517
  35265. },
  35266. form: "normal"
  35267. },
  35268. insides: {
  35269. height: math.unit(11.92, "feet"),
  35270. name: "Insides",
  35271. image: {
  35272. source: "./media/characters/saphinara/insides.svg"
  35273. },
  35274. form: "normal"
  35275. },
  35276. head: {
  35277. height: math.unit(4.17, "feet"),
  35278. name: "Head",
  35279. image: {
  35280. source: "./media/characters/saphinara/head.svg"
  35281. },
  35282. form: "normal"
  35283. },
  35284. tongue: {
  35285. height: math.unit(4.60, "feet"),
  35286. name: "Tongue",
  35287. image: {
  35288. source: "./media/characters/saphinara/tongue.svg"
  35289. },
  35290. form: "normal"
  35291. },
  35292. headEnraged: {
  35293. height: math.unit(5.55, "feet"),
  35294. name: "Head (Enraged)",
  35295. image: {
  35296. source: "./media/characters/saphinara/head-enraged.svg"
  35297. },
  35298. form: "normal"
  35299. },
  35300. wings: {
  35301. height: math.unit(11.95, "feet"),
  35302. name: "Wings",
  35303. image: {
  35304. source: "./media/characters/saphinara/wings.svg"
  35305. },
  35306. form: "normal"
  35307. },
  35308. feathers: {
  35309. height: math.unit(8.92, "feet"),
  35310. name: "Feathers",
  35311. image: {
  35312. source: "./media/characters/saphinara/feathers.svg"
  35313. },
  35314. form: "normal"
  35315. },
  35316. shackles: {
  35317. height: math.unit(2, "feet"),
  35318. name: "Shackles",
  35319. image: {
  35320. source: "./media/characters/saphinara/shackles.svg"
  35321. },
  35322. form: "normal"
  35323. },
  35324. eyes: {
  35325. height: math.unit(1.331, "feet"),
  35326. name: "Eyes",
  35327. image: {
  35328. source: "./media/characters/saphinara/eyes.svg"
  35329. },
  35330. form: "normal"
  35331. },
  35332. eyesEnraged: {
  35333. height: math.unit(1.331, "feet"),
  35334. name: "Eyes (Enraged)",
  35335. image: {
  35336. source: "./media/characters/saphinara/eyes-enraged.svg"
  35337. },
  35338. form: "normal"
  35339. },
  35340. trueFormSide: {
  35341. height: math.unit(200, "feet"),
  35342. weight: math.unit(1e7, "tons"),
  35343. name: "Side",
  35344. image: {
  35345. source: "./media/characters/saphinara/true-form-side.svg",
  35346. extra: 1399/770,
  35347. bottom: 97/1496
  35348. },
  35349. form: "true-form",
  35350. default: true
  35351. },
  35352. trueFormMaw: {
  35353. height: math.unit(71.5, "feet"),
  35354. name: "Maw",
  35355. image: {
  35356. source: "./media/characters/saphinara/true-form-maw.svg",
  35357. extra: 2302/1453,
  35358. bottom: 0/2302
  35359. },
  35360. form: "true-form"
  35361. },
  35362. meowberusSide: {
  35363. height: math.unit(75, "feet"),
  35364. weight: math.unit(180000, "kg"),
  35365. preyCapacity: math.unit(50000, "people"),
  35366. name: "Side",
  35367. image: {
  35368. source: "./media/characters/saphinara/meowberus-side.svg",
  35369. extra: 1400/711,
  35370. bottom: 126/1526
  35371. },
  35372. form: "meowberus",
  35373. extraAttributes: {
  35374. "pawArea": {
  35375. name: "Paw Size",
  35376. power: 2,
  35377. type: "area",
  35378. base: math.unit(35, "m^2")
  35379. }
  35380. }
  35381. },
  35382. },
  35383. [
  35384. {
  35385. name: "Normal",
  35386. height: math.unit(15 + 7/12, "feet"),
  35387. default: true,
  35388. form: "normal"
  35389. },
  35390. {
  35391. name: "Angry",
  35392. height: math.unit(30 + 6/12, "feet"),
  35393. form: "normal"
  35394. },
  35395. {
  35396. name: "Enraged",
  35397. height: math.unit(102 + 1/12, "feet"),
  35398. form: "normal"
  35399. },
  35400. {
  35401. name: "True",
  35402. height: math.unit(200, "feet"),
  35403. default: true,
  35404. form: "true-form"
  35405. },
  35406. {
  35407. name: "Normal",
  35408. height: math.unit(75, "feet"),
  35409. default: true,
  35410. form: "meowberus"
  35411. },
  35412. ],
  35413. {
  35414. "normal": {
  35415. name: "Normal",
  35416. default: true
  35417. },
  35418. "true-form": {
  35419. name: "True Form"
  35420. },
  35421. "meowberus": {
  35422. name: "Meowberus",
  35423. },
  35424. }
  35425. ))
  35426. characterMakers.push(() => makeCharacter(
  35427. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35428. {
  35429. front: {
  35430. height: math.unit(6 + 8/12, "feet"),
  35431. weight: math.unit(300, "lb"),
  35432. name: "Front",
  35433. image: {
  35434. source: "./media/characters/jrain/front.svg",
  35435. extra: 3039/2865,
  35436. bottom: 399/3438
  35437. }
  35438. },
  35439. back: {
  35440. height: math.unit(6 + 8/12, "feet"),
  35441. weight: math.unit(300, "lb"),
  35442. name: "Back",
  35443. image: {
  35444. source: "./media/characters/jrain/back.svg",
  35445. extra: 3089/2938,
  35446. bottom: 172/3261
  35447. }
  35448. },
  35449. head: {
  35450. height: math.unit(2.14, "feet"),
  35451. name: "Head",
  35452. image: {
  35453. source: "./media/characters/jrain/head.svg"
  35454. }
  35455. },
  35456. maw: {
  35457. height: math.unit(1.77, "feet"),
  35458. name: "Maw",
  35459. image: {
  35460. source: "./media/characters/jrain/maw.svg"
  35461. }
  35462. },
  35463. leftHand: {
  35464. height: math.unit(1.1, "feet"),
  35465. name: "Left Hand",
  35466. image: {
  35467. source: "./media/characters/jrain/left-hand.svg"
  35468. }
  35469. },
  35470. rightHand: {
  35471. height: math.unit(1.1, "feet"),
  35472. name: "Right Hand",
  35473. image: {
  35474. source: "./media/characters/jrain/right-hand.svg"
  35475. }
  35476. },
  35477. eye: {
  35478. height: math.unit(0.35, "feet"),
  35479. name: "Eye",
  35480. image: {
  35481. source: "./media/characters/jrain/eye.svg"
  35482. }
  35483. },
  35484. },
  35485. [
  35486. {
  35487. name: "Normal",
  35488. height: math.unit(6 + 8/12, "feet"),
  35489. default: true
  35490. },
  35491. {
  35492. name: "Casually Large",
  35493. height: math.unit(25, "feet")
  35494. },
  35495. {
  35496. name: "Giant",
  35497. height: math.unit(100, "feet")
  35498. },
  35499. {
  35500. name: "Kaiju",
  35501. height: math.unit(300, "feet")
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35507. {
  35508. dragon: {
  35509. height: math.unit(5, "meters"),
  35510. name: "Dragon",
  35511. image: {
  35512. source: "./media/characters/sabrina/dragon.svg",
  35513. extra: 3670 / 2365,
  35514. bottom: 333 / 4003
  35515. }
  35516. },
  35517. gryphon: {
  35518. height: math.unit(3, "meters"),
  35519. name: "Gryphon",
  35520. image: {
  35521. source: "./media/characters/sabrina/gryphon.svg",
  35522. extra: 1576 / 945,
  35523. bottom: 71 / 1647
  35524. }
  35525. },
  35526. snake: {
  35527. height: math.unit(12, "meters"),
  35528. name: "Snake",
  35529. image: {
  35530. source: "./media/characters/sabrina/snake.svg",
  35531. extra: 1758 / 1320,
  35532. bottom: 186 / 1944
  35533. }
  35534. },
  35535. collar: {
  35536. height: math.unit(1.86, "meters"),
  35537. name: "Collar",
  35538. image: {
  35539. source: "./media/characters/sabrina/collar.svg"
  35540. }
  35541. },
  35542. eye: {
  35543. height: math.unit(0.53, "meters"),
  35544. name: "Eye",
  35545. image: {
  35546. source: "./media/characters/sabrina/eye.svg"
  35547. }
  35548. },
  35549. foot: {
  35550. height: math.unit(1.86, "meters"),
  35551. name: "Foot",
  35552. image: {
  35553. source: "./media/characters/sabrina/foot.svg"
  35554. }
  35555. },
  35556. hand: {
  35557. height: math.unit(1.32, "meters"),
  35558. name: "Hand",
  35559. image: {
  35560. source: "./media/characters/sabrina/hand.svg"
  35561. }
  35562. },
  35563. head: {
  35564. height: math.unit(2.44, "meters"),
  35565. name: "Head",
  35566. image: {
  35567. source: "./media/characters/sabrina/head.svg"
  35568. }
  35569. },
  35570. headAngry: {
  35571. height: math.unit(2.44, "meters"),
  35572. name: "Head (Angry))",
  35573. image: {
  35574. source: "./media/characters/sabrina/head-angry.svg"
  35575. }
  35576. },
  35577. maw: {
  35578. height: math.unit(1.65, "meters"),
  35579. name: "Maw",
  35580. image: {
  35581. source: "./media/characters/sabrina/maw.svg"
  35582. }
  35583. },
  35584. spikes: {
  35585. height: math.unit(1.69, "meters"),
  35586. name: "Spikes",
  35587. image: {
  35588. source: "./media/characters/sabrina/spikes.svg"
  35589. }
  35590. },
  35591. stomach: {
  35592. height: math.unit(1.15, "meters"),
  35593. name: "Stomach",
  35594. image: {
  35595. source: "./media/characters/sabrina/stomach.svg"
  35596. }
  35597. },
  35598. tongue: {
  35599. height: math.unit(1.27, "meters"),
  35600. name: "Tongue",
  35601. image: {
  35602. source: "./media/characters/sabrina/tongue.svg"
  35603. }
  35604. },
  35605. wingDorsal: {
  35606. height: math.unit(4.85, "meters"),
  35607. name: "Wing (Dorsal)",
  35608. image: {
  35609. source: "./media/characters/sabrina/wing-dorsal.svg"
  35610. }
  35611. },
  35612. wingVentral: {
  35613. height: math.unit(4.85, "meters"),
  35614. name: "Wing (Ventral)",
  35615. image: {
  35616. source: "./media/characters/sabrina/wing-ventral.svg"
  35617. }
  35618. },
  35619. },
  35620. [
  35621. {
  35622. name: "Normal",
  35623. height: math.unit(5, "meters"),
  35624. default: true
  35625. },
  35626. ]
  35627. ))
  35628. characterMakers.push(() => makeCharacter(
  35629. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35630. {
  35631. frontMaid: {
  35632. height: math.unit(5 + 5/12, "feet"),
  35633. weight: math.unit(130, "lb"),
  35634. name: "Front (Maid)",
  35635. image: {
  35636. source: "./media/characters/midnight-tales/front-maid.svg",
  35637. extra: 489/454,
  35638. bottom: 61/550
  35639. }
  35640. },
  35641. frontFormal: {
  35642. height: math.unit(5 + 5/12, "feet"),
  35643. weight: math.unit(130, "lb"),
  35644. name: "Front (Formal)",
  35645. image: {
  35646. source: "./media/characters/midnight-tales/front-formal.svg",
  35647. extra: 489/454,
  35648. bottom: 61/550
  35649. }
  35650. },
  35651. back: {
  35652. height: math.unit(5 + 5/12, "feet"),
  35653. weight: math.unit(130, "lb"),
  35654. name: "Back",
  35655. image: {
  35656. source: "./media/characters/midnight-tales/back.svg",
  35657. extra: 498/456,
  35658. bottom: 33/531
  35659. }
  35660. },
  35661. frontBeast: {
  35662. height: math.unit(40, "feet"),
  35663. weight: math.unit(64000, "lb"),
  35664. name: "Front (Beast)",
  35665. image: {
  35666. source: "./media/characters/midnight-tales/front-beast.svg",
  35667. extra: 927/860,
  35668. bottom: 53/980
  35669. }
  35670. },
  35671. backBeast: {
  35672. height: math.unit(40, "feet"),
  35673. weight: math.unit(64000, "lb"),
  35674. name: "Back (Beast)",
  35675. image: {
  35676. source: "./media/characters/midnight-tales/back-beast.svg",
  35677. extra: 929/855,
  35678. bottom: 16/945
  35679. }
  35680. },
  35681. footBeast: {
  35682. height: math.unit(6.7, "feet"),
  35683. name: "Foot (Beast)",
  35684. image: {
  35685. source: "./media/characters/midnight-tales/foot-beast.svg"
  35686. }
  35687. },
  35688. headBeast: {
  35689. height: math.unit(8, "feet"),
  35690. name: "Head (Beast)",
  35691. image: {
  35692. source: "./media/characters/midnight-tales/head-beast.svg"
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Normal",
  35699. height: math.unit(5 + 5 / 12, "feet"),
  35700. default: true
  35701. },
  35702. {
  35703. name: "Macro",
  35704. height: math.unit(25, "feet")
  35705. },
  35706. ]
  35707. ))
  35708. characterMakers.push(() => makeCharacter(
  35709. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35710. {
  35711. front: {
  35712. height: math.unit(5 + 10/12, "feet"),
  35713. name: "Front",
  35714. image: {
  35715. source: "./media/characters/argon/front.svg",
  35716. extra: 2009/1935,
  35717. bottom: 118/2127
  35718. }
  35719. },
  35720. back: {
  35721. height: math.unit(5 + 10/12, "feet"),
  35722. name: "Back",
  35723. image: {
  35724. source: "./media/characters/argon/back.svg",
  35725. extra: 2047/1992,
  35726. bottom: 20/2067
  35727. }
  35728. },
  35729. frontDressed: {
  35730. height: math.unit(5 + 10/12, "feet"),
  35731. name: "Front (Dressed)",
  35732. image: {
  35733. source: "./media/characters/argon/front-dressed.svg",
  35734. extra: 2009/1935,
  35735. bottom: 118/2127
  35736. }
  35737. },
  35738. },
  35739. [
  35740. {
  35741. name: "Normal",
  35742. height: math.unit(5 + 10/12, "feet"),
  35743. default: true
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35749. {
  35750. front: {
  35751. height: math.unit(8 + 6/12, "feet"),
  35752. weight: math.unit(1150, "lb"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/kichi/front.svg",
  35756. extra: 1267/1164,
  35757. bottom: 61/1328
  35758. }
  35759. },
  35760. back: {
  35761. height: math.unit(8 + 6/12, "feet"),
  35762. weight: math.unit(1150, "lb"),
  35763. name: "Back",
  35764. image: {
  35765. source: "./media/characters/kichi/back.svg",
  35766. extra: 1273/1166,
  35767. bottom: 33/1306
  35768. }
  35769. },
  35770. },
  35771. [
  35772. {
  35773. name: "Normal",
  35774. height: math.unit(8 + 6/12, "feet"),
  35775. default: true
  35776. },
  35777. ]
  35778. ))
  35779. characterMakers.push(() => makeCharacter(
  35780. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35781. {
  35782. front: {
  35783. height: math.unit(6, "feet"),
  35784. weight: math.unit(210, "lb"),
  35785. name: "Front",
  35786. image: {
  35787. source: "./media/characters/manetel-greyscale/front.svg",
  35788. extra: 350/312,
  35789. bottom: 8/358
  35790. }
  35791. },
  35792. },
  35793. [
  35794. {
  35795. name: "Micro",
  35796. height: math.unit(2, "inches")
  35797. },
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(6, "feet"),
  35801. default: true
  35802. },
  35803. {
  35804. name: "Minimacro",
  35805. height: math.unit(17, "feet")
  35806. },
  35807. {
  35808. name: "Macro",
  35809. height: math.unit(117, "feet")
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35815. {
  35816. side: {
  35817. height: math.unit(5 + 1/12, "feet"),
  35818. weight: math.unit(418, "lb"),
  35819. name: "Side",
  35820. image: {
  35821. source: "./media/characters/softpurr/side.svg",
  35822. extra: 1993/1945,
  35823. bottom: 134/2127
  35824. }
  35825. },
  35826. front: {
  35827. height: math.unit(5 + 1/12, "feet"),
  35828. weight: math.unit(418, "lb"),
  35829. name: "Front",
  35830. image: {
  35831. source: "./media/characters/softpurr/front.svg",
  35832. extra: 1950/1856,
  35833. bottom: 174/2124
  35834. }
  35835. },
  35836. paw: {
  35837. height: math.unit(1, "feet"),
  35838. name: "Paw",
  35839. image: {
  35840. source: "./media/characters/softpurr/paw.svg"
  35841. }
  35842. },
  35843. },
  35844. [
  35845. {
  35846. name: "Normal",
  35847. height: math.unit(5 + 1/12, "feet"),
  35848. default: true
  35849. },
  35850. ]
  35851. ))
  35852. characterMakers.push(() => makeCharacter(
  35853. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35854. {
  35855. front: {
  35856. height: math.unit(260, "meters"),
  35857. name: "Front",
  35858. image: {
  35859. source: "./media/characters/anahita/front.svg",
  35860. extra: 665/635,
  35861. bottom: 89/754
  35862. }
  35863. },
  35864. },
  35865. [
  35866. {
  35867. name: "Macro",
  35868. height: math.unit(260, "meters"),
  35869. default: true
  35870. },
  35871. ]
  35872. ))
  35873. characterMakers.push(() => makeCharacter(
  35874. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35875. {
  35876. front: {
  35877. height: math.unit(4 + 10/12, "feet"),
  35878. weight: math.unit(160, "lb"),
  35879. name: "Front",
  35880. image: {
  35881. source: "./media/characters/chip-mouse/front.svg",
  35882. extra: 3528/3408,
  35883. bottom: 0/3528
  35884. }
  35885. },
  35886. frontNsfw: {
  35887. height: math.unit(4 + 10/12, "feet"),
  35888. weight: math.unit(160, "lb"),
  35889. name: "Front (NSFW)",
  35890. image: {
  35891. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35892. extra: 3528/3408,
  35893. bottom: 0/3528
  35894. }
  35895. },
  35896. },
  35897. [
  35898. {
  35899. name: "Normal",
  35900. height: math.unit(4 + 10/12, "feet"),
  35901. default: true
  35902. },
  35903. ]
  35904. ))
  35905. characterMakers.push(() => makeCharacter(
  35906. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35907. {
  35908. side: {
  35909. height: math.unit(10, "feet"),
  35910. weight: math.unit(14000, "lb"),
  35911. name: "Side",
  35912. image: {
  35913. source: "./media/characters/kremm/side.svg",
  35914. extra: 1390/1053,
  35915. bottom: 90/1480
  35916. }
  35917. },
  35918. gut: {
  35919. height: math.unit(5.8, "feet"),
  35920. name: "Gut",
  35921. image: {
  35922. source: "./media/characters/kremm/gut.svg"
  35923. }
  35924. },
  35925. ass: {
  35926. height: math.unit(6.1, "feet"),
  35927. name: "Ass",
  35928. image: {
  35929. source: "./media/characters/kremm/ass.svg"
  35930. }
  35931. },
  35932. jaws: {
  35933. height: math.unit(2.2, "feet"),
  35934. name: "Jaws",
  35935. image: {
  35936. source: "./media/characters/kremm/jaws.svg"
  35937. }
  35938. },
  35939. dick: {
  35940. height: math.unit(4.26, "feet"),
  35941. name: "Dick",
  35942. image: {
  35943. source: "./media/characters/kremm/dick.svg"
  35944. }
  35945. },
  35946. },
  35947. [
  35948. {
  35949. name: "Normal",
  35950. height: math.unit(10, "feet"),
  35951. default: true
  35952. },
  35953. ]
  35954. ))
  35955. characterMakers.push(() => makeCharacter(
  35956. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35957. {
  35958. front: {
  35959. height: math.unit(30, "stories"),
  35960. name: "Front",
  35961. image: {
  35962. source: "./media/characters/kai/front.svg",
  35963. extra: 1892/1718,
  35964. bottom: 162/2054
  35965. }
  35966. },
  35967. },
  35968. [
  35969. {
  35970. name: "Macro",
  35971. height: math.unit(30, "stories"),
  35972. default: true
  35973. },
  35974. ]
  35975. ))
  35976. characterMakers.push(() => makeCharacter(
  35977. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35978. {
  35979. front: {
  35980. height: math.unit(6 + 4/12, "feet"),
  35981. weight: math.unit(145, "lb"),
  35982. name: "Front",
  35983. image: {
  35984. source: "./media/characters/sykes/front.svg",
  35985. extra: 1321 / 1187,
  35986. bottom: 66 / 1387
  35987. }
  35988. },
  35989. back: {
  35990. height: math.unit(6 + 4/12, "feet"),
  35991. weight: math.unit(145, "lb"),
  35992. name: "Back",
  35993. image: {
  35994. source: "./media/characters/sykes/back.svg",
  35995. extra: 1326/1181,
  35996. bottom: 31/1357
  35997. }
  35998. },
  35999. traditionalOutfit: {
  36000. height: math.unit(6 + 4/12, "feet"),
  36001. weight: math.unit(145, "lb"),
  36002. name: "Traditional Outfit",
  36003. image: {
  36004. source: "./media/characters/sykes/traditional-outfit.svg",
  36005. extra: 1321 / 1187,
  36006. bottom: 66 / 1387
  36007. }
  36008. },
  36009. adventureOutfit: {
  36010. height: math.unit(6 + 4/12, "feet"),
  36011. weight: math.unit(145, "lb"),
  36012. name: "Adventure Outfit",
  36013. image: {
  36014. source: "./media/characters/sykes/adventure-outfit.svg",
  36015. extra: 1321 / 1187,
  36016. bottom: 66 / 1387
  36017. }
  36018. },
  36019. handLeft: {
  36020. height: math.unit(0.9, "feet"),
  36021. name: "Hand (Left)",
  36022. image: {
  36023. source: "./media/characters/sykes/hand-left.svg"
  36024. }
  36025. },
  36026. handRight: {
  36027. height: math.unit(0.839, "feet"),
  36028. name: "Hand (Right)",
  36029. image: {
  36030. source: "./media/characters/sykes/hand-right.svg"
  36031. }
  36032. },
  36033. leftFoot: {
  36034. height: math.unit(1.2, "feet"),
  36035. name: "Foot (Left)",
  36036. image: {
  36037. source: "./media/characters/sykes/foot-left.svg"
  36038. }
  36039. },
  36040. rightFoot: {
  36041. height: math.unit(1.2, "feet"),
  36042. name: "Foot (Right)",
  36043. image: {
  36044. source: "./media/characters/sykes/foot-right.svg"
  36045. }
  36046. },
  36047. maw: {
  36048. height: math.unit(1.93, "feet"),
  36049. name: "Maw",
  36050. image: {
  36051. source: "./media/characters/sykes/maw.svg"
  36052. }
  36053. },
  36054. teeth: {
  36055. height: math.unit(0.51, "feet"),
  36056. name: "Teeth",
  36057. image: {
  36058. source: "./media/characters/sykes/teeth.svg"
  36059. }
  36060. },
  36061. tongue: {
  36062. height: math.unit(2.13, "feet"),
  36063. name: "Tongue",
  36064. image: {
  36065. source: "./media/characters/sykes/tongue.svg"
  36066. }
  36067. },
  36068. uvula: {
  36069. height: math.unit(0.16, "feet"),
  36070. name: "Uvula",
  36071. image: {
  36072. source: "./media/characters/sykes/uvula.svg"
  36073. }
  36074. },
  36075. collar: {
  36076. height: math.unit(0.287, "feet"),
  36077. name: "Collar",
  36078. image: {
  36079. source: "./media/characters/sykes/collar.svg"
  36080. }
  36081. },
  36082. tail: {
  36083. height: math.unit(3.8, "feet"),
  36084. name: "Tail",
  36085. image: {
  36086. source: "./media/characters/sykes/tail.svg"
  36087. }
  36088. },
  36089. },
  36090. [
  36091. {
  36092. name: "Shrunken",
  36093. height: math.unit(5, "inches")
  36094. },
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(6 + 4 / 12, "feet"),
  36098. default: true
  36099. },
  36100. {
  36101. name: "Big",
  36102. height: math.unit(15, "feet")
  36103. },
  36104. ]
  36105. ))
  36106. characterMakers.push(() => makeCharacter(
  36107. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36108. {
  36109. front: {
  36110. height: math.unit(5 + 8/12, "feet"),
  36111. weight: math.unit(190, "lb"),
  36112. name: "Front",
  36113. image: {
  36114. source: "./media/characters/oven-otter/front.svg",
  36115. extra: 1809/1740,
  36116. bottom: 181/1990
  36117. }
  36118. },
  36119. back: {
  36120. height: math.unit(5 + 8/12, "feet"),
  36121. weight: math.unit(190, "lb"),
  36122. name: "Back",
  36123. image: {
  36124. source: "./media/characters/oven-otter/back.svg",
  36125. extra: 1709/1635,
  36126. bottom: 118/1827
  36127. }
  36128. },
  36129. hand: {
  36130. height: math.unit(1.07, "feet"),
  36131. name: "Hand",
  36132. image: {
  36133. source: "./media/characters/oven-otter/hand.svg"
  36134. }
  36135. },
  36136. beans: {
  36137. height: math.unit(1.74, "feet"),
  36138. name: "Beans",
  36139. image: {
  36140. source: "./media/characters/oven-otter/beans.svg"
  36141. }
  36142. },
  36143. },
  36144. [
  36145. {
  36146. name: "Micro",
  36147. height: math.unit(0.5, "inches")
  36148. },
  36149. {
  36150. name: "Normal",
  36151. height: math.unit(5 + 8/12, "feet"),
  36152. default: true
  36153. },
  36154. {
  36155. name: "Macro",
  36156. height: math.unit(250, "feet")
  36157. },
  36158. {
  36159. name: "Really High",
  36160. height: math.unit(420, "feet")
  36161. },
  36162. ]
  36163. ))
  36164. characterMakers.push(() => makeCharacter(
  36165. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36166. {
  36167. front: {
  36168. height: math.unit(5, "meters"),
  36169. weight: math.unit(292000000000000, "kg"),
  36170. name: "Front",
  36171. image: {
  36172. source: "./media/characters/devourer/front.svg",
  36173. extra: 1800/1733,
  36174. bottom: 211/2011
  36175. }
  36176. },
  36177. maw: {
  36178. height: math.unit(1.1, "meter"),
  36179. name: "Maw",
  36180. image: {
  36181. source: "./media/characters/devourer/maw.svg"
  36182. }
  36183. },
  36184. },
  36185. [
  36186. {
  36187. name: "Small",
  36188. height: math.unit(3, "meters")
  36189. },
  36190. {
  36191. name: "Large",
  36192. height: math.unit(5, "meters"),
  36193. default: true
  36194. },
  36195. ]
  36196. ))
  36197. characterMakers.push(() => makeCharacter(
  36198. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36199. {
  36200. front: {
  36201. height: math.unit(6, "feet"),
  36202. weight: math.unit(400, "lb"),
  36203. name: "Front",
  36204. image: {
  36205. source: "./media/characters/ellarby/front.svg",
  36206. extra: 1909/1763,
  36207. bottom: 80/1989
  36208. }
  36209. },
  36210. back: {
  36211. height: math.unit(6, "feet"),
  36212. weight: math.unit(400, "lb"),
  36213. name: "Back",
  36214. image: {
  36215. source: "./media/characters/ellarby/back.svg",
  36216. extra: 1914/1784,
  36217. bottom: 172/2086
  36218. }
  36219. },
  36220. },
  36221. [
  36222. {
  36223. name: "Mischief",
  36224. height: math.unit(18, "inches")
  36225. },
  36226. {
  36227. name: "Trouble",
  36228. height: math.unit(12, "feet")
  36229. },
  36230. {
  36231. name: "Havoc",
  36232. height: math.unit(200, "feet"),
  36233. default: true
  36234. },
  36235. {
  36236. name: "Pandemonium",
  36237. height: math.unit(1, "mile")
  36238. },
  36239. {
  36240. name: "Catastrophe",
  36241. height: math.unit(100, "miles")
  36242. },
  36243. ]
  36244. ))
  36245. characterMakers.push(() => makeCharacter(
  36246. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36247. {
  36248. front: {
  36249. height: math.unit(4.7, "meters"),
  36250. weight: math.unit(6500, "kg"),
  36251. name: "Front",
  36252. image: {
  36253. source: "./media/characters/vex/front.svg",
  36254. extra: 1288/1140,
  36255. bottom: 100/1388
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(4.7, "meters"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36269. {
  36270. normal: {
  36271. height: math.unit(6, "feet"),
  36272. weight: math.unit(350, "lb"),
  36273. name: "Normal",
  36274. image: {
  36275. source: "./media/characters/teshy/normal.svg",
  36276. extra: 1795/1735,
  36277. bottom: 16/1811
  36278. }
  36279. },
  36280. monsterFront: {
  36281. height: math.unit(12, "feet"),
  36282. weight: math.unit(4700, "lb"),
  36283. name: "Monster (Front)",
  36284. image: {
  36285. source: "./media/characters/teshy/monster-front.svg",
  36286. extra: 2042/2034,
  36287. bottom: 128/2170
  36288. }
  36289. },
  36290. monsterSide: {
  36291. height: math.unit(12, "feet"),
  36292. weight: math.unit(4700, "lb"),
  36293. name: "Monster (Side)",
  36294. image: {
  36295. source: "./media/characters/teshy/monster-side.svg",
  36296. extra: 2067/2056,
  36297. bottom: 70/2137
  36298. }
  36299. },
  36300. monsterBack: {
  36301. height: math.unit(12, "feet"),
  36302. weight: math.unit(4700, "lb"),
  36303. name: "Monster (Back)",
  36304. image: {
  36305. source: "./media/characters/teshy/monster-back.svg",
  36306. extra: 1921/1914,
  36307. bottom: 171/2092
  36308. }
  36309. },
  36310. },
  36311. [
  36312. {
  36313. name: "Normal",
  36314. height: math.unit(6, "feet"),
  36315. default: true
  36316. },
  36317. ]
  36318. ))
  36319. characterMakers.push(() => makeCharacter(
  36320. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36321. {
  36322. front: {
  36323. height: math.unit(6, "feet"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/ramey/front.svg",
  36327. extra: 790/787,
  36328. bottom: 27/817
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Normal",
  36335. height: math.unit(6, "feet"),
  36336. default: true
  36337. },
  36338. ]
  36339. ))
  36340. characterMakers.push(() => makeCharacter(
  36341. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36342. {
  36343. front: {
  36344. height: math.unit(5 + 5/12, "feet"),
  36345. weight: math.unit(120, "lb"),
  36346. name: "Front",
  36347. image: {
  36348. source: "./media/characters/phirae/front.svg",
  36349. extra: 2491/2436,
  36350. bottom: 38/2529
  36351. }
  36352. },
  36353. },
  36354. [
  36355. {
  36356. name: "Normal",
  36357. height: math.unit(5 + 5/12, "feet"),
  36358. default: true
  36359. },
  36360. ]
  36361. ))
  36362. characterMakers.push(() => makeCharacter(
  36363. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36364. {
  36365. front: {
  36366. height: math.unit(5 + 3/12, "feet"),
  36367. name: "Front",
  36368. image: {
  36369. source: "./media/characters/stagglas/front.svg",
  36370. extra: 962/882,
  36371. bottom: 53/1015
  36372. }
  36373. },
  36374. feral: {
  36375. height: math.unit(335, "cm"),
  36376. name: "Feral",
  36377. image: {
  36378. source: "./media/characters/stagglas/feral.svg",
  36379. extra: 1732/1090,
  36380. bottom: 48/1780
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(5 + 3/12, "feet"),
  36388. default: true
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36394. {
  36395. front: {
  36396. height: math.unit(5 + 4/12, "feet"),
  36397. weight: math.unit(145, "lb"),
  36398. name: "Front",
  36399. image: {
  36400. source: "./media/characters/starra/front.svg",
  36401. extra: 1790/1691,
  36402. bottom: 91/1881
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Normal",
  36409. height: math.unit(5 + 4/12, "feet"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(2.2, "meters"),
  36419. name: "Front",
  36420. image: {
  36421. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36422. extra: 1248/972,
  36423. bottom: 38/1286
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Normal",
  36430. height: math.unit(2.2, "meters"),
  36431. default: true
  36432. },
  36433. ]
  36434. ))
  36435. characterMakers.push(() => makeCharacter(
  36436. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36437. {
  36438. side: {
  36439. height: math.unit(8 + 2/12, "feet"),
  36440. weight: math.unit(1240, "lb"),
  36441. name: "Side",
  36442. image: {
  36443. source: "./media/characters/mika-valentine/side.svg",
  36444. extra: 2670/2501,
  36445. bottom: 250/2920
  36446. }
  36447. },
  36448. },
  36449. [
  36450. {
  36451. name: "Normal",
  36452. height: math.unit(8 + 2/12, "feet"),
  36453. default: true
  36454. },
  36455. ]
  36456. ))
  36457. characterMakers.push(() => makeCharacter(
  36458. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36459. {
  36460. front: {
  36461. height: math.unit(7 + 2/12, "feet"),
  36462. name: "Front",
  36463. image: {
  36464. source: "./media/characters/xoltol/front.svg",
  36465. extra: 2212/2124,
  36466. bottom: 84/2296
  36467. }
  36468. },
  36469. side: {
  36470. height: math.unit(7 + 2/12, "feet"),
  36471. name: "Side",
  36472. image: {
  36473. source: "./media/characters/xoltol/side.svg",
  36474. extra: 2273/2197,
  36475. bottom: 26/2299
  36476. }
  36477. },
  36478. hand: {
  36479. height: math.unit(2.5, "feet"),
  36480. name: "Hand",
  36481. image: {
  36482. source: "./media/characters/xoltol/hand.svg"
  36483. }
  36484. },
  36485. },
  36486. [
  36487. {
  36488. name: "Small-ish",
  36489. height: math.unit(5 + 11/12, "feet")
  36490. },
  36491. {
  36492. name: "Normal",
  36493. height: math.unit(7 + 2/12, "feet")
  36494. },
  36495. {
  36496. name: "\"Macro\"",
  36497. height: math.unit(14 + 9/12, "feet"),
  36498. default: true
  36499. },
  36500. {
  36501. name: "Alternate Height",
  36502. height: math.unit(20, "feet")
  36503. },
  36504. {
  36505. name: "Actually Macro",
  36506. height: math.unit(100, "feet")
  36507. },
  36508. ]
  36509. ))
  36510. characterMakers.push(() => makeCharacter(
  36511. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36512. {
  36513. front: {
  36514. height: math.unit(5 + 2/12, "feet"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/kotetsu-redwood/front.svg",
  36518. extra: 1053/942,
  36519. bottom: 60/1113
  36520. }
  36521. },
  36522. },
  36523. [
  36524. {
  36525. name: "Normal",
  36526. height: math.unit(5 + 2/12, "feet"),
  36527. default: true
  36528. },
  36529. ]
  36530. ))
  36531. characterMakers.push(() => makeCharacter(
  36532. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36533. {
  36534. front: {
  36535. height: math.unit(2.4, "meters"),
  36536. weight: math.unit(125, "kg"),
  36537. name: "Front",
  36538. image: {
  36539. source: "./media/characters/lilith/front.svg",
  36540. extra: 1590/1513,
  36541. bottom: 203/1793
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Humanoid",
  36548. height: math.unit(2.4, "meters")
  36549. },
  36550. {
  36551. name: "Normal",
  36552. height: math.unit(6, "meters"),
  36553. default: true
  36554. },
  36555. {
  36556. name: "Largest",
  36557. height: math.unit(55, "meters")
  36558. },
  36559. ]
  36560. ))
  36561. characterMakers.push(() => makeCharacter(
  36562. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36563. {
  36564. front: {
  36565. height: math.unit(8 + 4/12, "feet"),
  36566. weight: math.unit(535, "lb"),
  36567. name: "Front",
  36568. image: {
  36569. source: "./media/characters/beh'kah-bolger/front.svg",
  36570. extra: 1660/1603,
  36571. bottom: 37/1697
  36572. }
  36573. },
  36574. },
  36575. [
  36576. {
  36577. name: "Normal",
  36578. height: math.unit(8 + 4/12, "feet"),
  36579. default: true
  36580. },
  36581. {
  36582. name: "Kaiju",
  36583. height: math.unit(250, "feet")
  36584. },
  36585. {
  36586. name: "Still Growing",
  36587. height: math.unit(10, "miles")
  36588. },
  36589. {
  36590. name: "Continental",
  36591. height: math.unit(5000, "miles")
  36592. },
  36593. {
  36594. name: "Final Form",
  36595. height: math.unit(2500000, "miles")
  36596. },
  36597. ]
  36598. ))
  36599. characterMakers.push(() => makeCharacter(
  36600. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36601. {
  36602. front: {
  36603. height: math.unit(7 + 2/12, "feet"),
  36604. weight: math.unit(230, "kg"),
  36605. name: "Front",
  36606. image: {
  36607. source: "./media/characters/tatyana-milewska/front.svg",
  36608. extra: 1199/1150,
  36609. bottom: 86/1285
  36610. }
  36611. },
  36612. },
  36613. [
  36614. {
  36615. name: "Normal",
  36616. height: math.unit(7 + 2/12, "feet"),
  36617. default: true
  36618. },
  36619. {
  36620. name: "Big",
  36621. height: math.unit(12, "feet")
  36622. },
  36623. {
  36624. name: "Minimacro",
  36625. height: math.unit(20, "feet")
  36626. },
  36627. {
  36628. name: "Macro",
  36629. height: math.unit(120, "feet")
  36630. },
  36631. ]
  36632. ))
  36633. characterMakers.push(() => makeCharacter(
  36634. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36635. {
  36636. front: {
  36637. height: math.unit(7 + 8/12, "feet"),
  36638. weight: math.unit(152, "kg"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/helen-arri/front.svg",
  36642. extra: 440/423,
  36643. bottom: 14/454
  36644. }
  36645. },
  36646. back: {
  36647. height: math.unit(7 + 8/12, "feet"),
  36648. weight: math.unit(152, "kg"),
  36649. name: "Back",
  36650. image: {
  36651. source: "./media/characters/helen-arri/back.svg",
  36652. extra: 443/426,
  36653. bottom: 8/451
  36654. }
  36655. },
  36656. },
  36657. [
  36658. {
  36659. name: "Normal",
  36660. height: math.unit(7 + 8/12, "feet"),
  36661. default: true
  36662. },
  36663. {
  36664. name: "Big",
  36665. height: math.unit(14, "feet")
  36666. },
  36667. {
  36668. name: "Minimacro",
  36669. height: math.unit(24, "feet")
  36670. },
  36671. {
  36672. name: "Macro",
  36673. height: math.unit(140, "feet")
  36674. },
  36675. ]
  36676. ))
  36677. characterMakers.push(() => makeCharacter(
  36678. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36679. {
  36680. front: {
  36681. height: math.unit(6, "meters"),
  36682. name: "Front",
  36683. image: {
  36684. source: "./media/characters/ehanu-rehu/front.svg",
  36685. extra: 1800/1800,
  36686. bottom: 59/1859
  36687. }
  36688. },
  36689. },
  36690. [
  36691. {
  36692. name: "Normal",
  36693. height: math.unit(6, "meters"),
  36694. default: true
  36695. },
  36696. ]
  36697. ))
  36698. characterMakers.push(() => makeCharacter(
  36699. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36700. {
  36701. front: {
  36702. height: math.unit(7 + 3/12, "feet"),
  36703. name: "Front",
  36704. image: {
  36705. source: "./media/characters/renholder/front.svg",
  36706. extra: 3096/2960,
  36707. bottom: 250/3346
  36708. }
  36709. },
  36710. },
  36711. [
  36712. {
  36713. name: "Normal Bat",
  36714. height: math.unit(7 + 3/12, "feet"),
  36715. default: true
  36716. },
  36717. {
  36718. name: "Slightly Tall Bat",
  36719. height: math.unit(100, "feet")
  36720. },
  36721. {
  36722. name: "Big Bat",
  36723. height: math.unit(1000, "feet")
  36724. },
  36725. {
  36726. name: "City-Sized Bat",
  36727. height: math.unit(200000, "feet")
  36728. },
  36729. {
  36730. name: "Bigger Bat",
  36731. height: math.unit(10000, "miles")
  36732. },
  36733. {
  36734. name: "Solar Sized Bat",
  36735. height: math.unit(100, "AU")
  36736. },
  36737. {
  36738. name: "Galactic Bat",
  36739. height: math.unit(200000, "lightyears")
  36740. },
  36741. {
  36742. name: "Universally Known Bat",
  36743. height: math.unit(1, "universe")
  36744. },
  36745. ]
  36746. ))
  36747. characterMakers.push(() => makeCharacter(
  36748. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36749. {
  36750. front: {
  36751. height: math.unit(6 + 11/12, "feet"),
  36752. weight: math.unit(250, "lb"),
  36753. name: "Front",
  36754. image: {
  36755. source: "./media/characters/cookiecat/front.svg",
  36756. extra: 893/827,
  36757. bottom: 14/907
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Micro",
  36764. height: math.unit(3, "inches")
  36765. },
  36766. {
  36767. name: "Normal",
  36768. height: math.unit(6 + 11/12, "feet"),
  36769. default: true
  36770. },
  36771. {
  36772. name: "Macro",
  36773. height: math.unit(100, "feet")
  36774. },
  36775. {
  36776. name: "Macro+",
  36777. height: math.unit(404, "feet")
  36778. },
  36779. {
  36780. name: "Megamacro",
  36781. height: math.unit(165, "miles")
  36782. },
  36783. {
  36784. name: "Planetary",
  36785. height: math.unit(4600, "miles")
  36786. },
  36787. ]
  36788. ))
  36789. characterMakers.push(() => makeCharacter(
  36790. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36791. {
  36792. front: {
  36793. height: math.unit(10 + 3/12, "feet"),
  36794. weight: math.unit(1500, "lb"),
  36795. name: "Front",
  36796. image: {
  36797. source: "./media/characters/tux-kusanagi/front.svg",
  36798. extra: 944/840,
  36799. bottom: 39/983
  36800. }
  36801. },
  36802. back: {
  36803. height: math.unit(10 + 3/12, "feet"),
  36804. weight: math.unit(1500, "lb"),
  36805. name: "Back",
  36806. image: {
  36807. source: "./media/characters/tux-kusanagi/back.svg",
  36808. extra: 941/842,
  36809. bottom: 28/969
  36810. }
  36811. },
  36812. rump: {
  36813. height: math.unit(5.25, "feet"),
  36814. name: "Rump",
  36815. image: {
  36816. source: "./media/characters/tux-kusanagi/rump.svg"
  36817. }
  36818. },
  36819. beak: {
  36820. height: math.unit(1.54, "feet"),
  36821. name: "Beak",
  36822. image: {
  36823. source: "./media/characters/tux-kusanagi/beak.svg"
  36824. }
  36825. },
  36826. },
  36827. [
  36828. {
  36829. name: "Normal",
  36830. height: math.unit(10 + 3/12, "feet"),
  36831. default: true
  36832. },
  36833. ]
  36834. ))
  36835. characterMakers.push(() => makeCharacter(
  36836. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36837. {
  36838. front: {
  36839. height: math.unit(58, "feet"),
  36840. weight: math.unit(200, "tons"),
  36841. name: "Front",
  36842. image: {
  36843. source: "./media/characters/uzarmazari/front.svg",
  36844. extra: 1575/1455,
  36845. bottom: 152/1727
  36846. }
  36847. },
  36848. back: {
  36849. height: math.unit(58, "feet"),
  36850. weight: math.unit(200, "tons"),
  36851. name: "Back",
  36852. image: {
  36853. source: "./media/characters/uzarmazari/back.svg",
  36854. extra: 1585/1510,
  36855. bottom: 157/1742
  36856. }
  36857. },
  36858. head: {
  36859. height: math.unit(26, "feet"),
  36860. name: "Head",
  36861. image: {
  36862. source: "./media/characters/uzarmazari/head.svg"
  36863. }
  36864. },
  36865. },
  36866. [
  36867. {
  36868. name: "Normal",
  36869. height: math.unit(58, "feet"),
  36870. default: true
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36876. {
  36877. side: {
  36878. height: math.unit(15, "feet"),
  36879. name: "Side",
  36880. image: {
  36881. source: "./media/characters/akitu/side.svg",
  36882. extra: 1421/1321,
  36883. bottom: 157/1578
  36884. }
  36885. },
  36886. front: {
  36887. height: math.unit(15, "feet"),
  36888. name: "Front",
  36889. image: {
  36890. source: "./media/characters/akitu/front.svg",
  36891. extra: 1435/1326,
  36892. bottom: 232/1667
  36893. }
  36894. },
  36895. },
  36896. [
  36897. {
  36898. name: "Normal",
  36899. height: math.unit(15, "feet"),
  36900. default: true
  36901. },
  36902. ]
  36903. ))
  36904. characterMakers.push(() => makeCharacter(
  36905. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36906. {
  36907. front: {
  36908. height: math.unit(10 + 8/12, "feet"),
  36909. name: "Front",
  36910. image: {
  36911. source: "./media/characters/azalie-croixland/front.svg",
  36912. extra: 1972/1856,
  36913. bottom: 31/2003
  36914. }
  36915. },
  36916. },
  36917. [
  36918. {
  36919. name: "Original Height",
  36920. height: math.unit(5 + 4/12, "feet")
  36921. },
  36922. {
  36923. name: "Normal Height",
  36924. height: math.unit(10 + 8/12, "feet"),
  36925. default: true
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36931. {
  36932. side: {
  36933. height: math.unit(7 + 1/12, "feet"),
  36934. weight: math.unit(245, "lb"),
  36935. name: "Side",
  36936. image: {
  36937. source: "./media/characters/kavus-kazian/side.svg",
  36938. extra: 349/342,
  36939. bottom: 15/364
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(7 + 1/12, "feet"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36953. {
  36954. normalFront: {
  36955. height: math.unit(5 + 11/12, "feet"),
  36956. name: "Front",
  36957. image: {
  36958. source: "./media/characters/moonlight-rose/normal-front.svg",
  36959. extra: 1980/1825,
  36960. bottom: 18/1998
  36961. },
  36962. form: "normal",
  36963. default: true
  36964. },
  36965. normalBack: {
  36966. height: math.unit(5 + 11/12, "feet"),
  36967. name: "Back",
  36968. image: {
  36969. source: "./media/characters/moonlight-rose/normal-back.svg",
  36970. extra: 2010/1839,
  36971. bottom: 10/2020
  36972. },
  36973. form: "normal"
  36974. },
  36975. demonFront: {
  36976. height: math.unit(1.5, "earths"),
  36977. name: "Front",
  36978. image: {
  36979. source: "./media/characters/moonlight-rose/demon.svg",
  36980. extra: 1400/1294,
  36981. bottom: 45/1445
  36982. },
  36983. form: "demon",
  36984. default: true
  36985. },
  36986. terraFront: {
  36987. height: math.unit(1.5, "earths"),
  36988. name: "Front",
  36989. image: {
  36990. source: "./media/characters/moonlight-rose/terra.svg"
  36991. },
  36992. form: "terra",
  36993. default: true
  36994. },
  36995. jupiterFront: {
  36996. height: math.unit(69911*2, "km"),
  36997. name: "Front",
  36998. image: {
  36999. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37000. extra: 1367/1286,
  37001. bottom: 55/1422
  37002. },
  37003. form: "jupiter",
  37004. default: true
  37005. },
  37006. neptuneFront: {
  37007. height: math.unit(24622*2, "feet"),
  37008. name: "Front",
  37009. image: {
  37010. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37011. extra: 1851/1712,
  37012. bottom: 0/1851
  37013. },
  37014. form: "neptune",
  37015. default: true
  37016. },
  37017. },
  37018. [
  37019. {
  37020. name: "\"Natural\" Height",
  37021. height: math.unit(5 + 11/12, "feet"),
  37022. form: "normal"
  37023. },
  37024. {
  37025. name: "Smallest comfortable size",
  37026. height: math.unit(40, "meters"),
  37027. form: "normal"
  37028. },
  37029. {
  37030. name: "Common size",
  37031. height: math.unit(50, "km"),
  37032. form: "normal",
  37033. default: true
  37034. },
  37035. {
  37036. name: "Normal",
  37037. height: math.unit(1.5, "earths"),
  37038. form: "demon",
  37039. default: true
  37040. },
  37041. {
  37042. name: "Universal",
  37043. height: math.unit(15, "universes"),
  37044. form: "demon"
  37045. },
  37046. {
  37047. name: "Earth",
  37048. height: math.unit(1.5, "earths"),
  37049. form: "terra",
  37050. default: true
  37051. },
  37052. {
  37053. name: "Super Earth",
  37054. height: math.unit(67.5, "earths"),
  37055. form: "terra"
  37056. },
  37057. {
  37058. name: "Doesn't fit in a solar system...",
  37059. height: math.unit(1, "galaxy"),
  37060. form: "terra"
  37061. },
  37062. {
  37063. name: "Saturn",
  37064. height: math.unit(58232*2, "km"),
  37065. form: "jupiter"
  37066. },
  37067. {
  37068. name: "Jupiter",
  37069. height: math.unit(69911*2, "km"),
  37070. form: "jupiter",
  37071. default: true
  37072. },
  37073. {
  37074. name: "HD 100546 b",
  37075. height: math.unit(482938, "km"),
  37076. form: "jupiter"
  37077. },
  37078. {
  37079. name: "Enceladus",
  37080. height: math.unit(513*2, "km"),
  37081. form: "neptune"
  37082. },
  37083. {
  37084. name: "Europe",
  37085. height: math.unit(1560*2, "km"),
  37086. form: "neptune"
  37087. },
  37088. {
  37089. name: "Neptune",
  37090. height: math.unit(24622*2, "km"),
  37091. form: "neptune",
  37092. default: true
  37093. },
  37094. {
  37095. name: "CoRoT-9b",
  37096. height: math.unit(75067*2, "km"),
  37097. form: "neptune"
  37098. },
  37099. ],
  37100. {
  37101. "normal": {
  37102. name: "Normal",
  37103. default: true
  37104. },
  37105. "demon": {
  37106. name: "Demon"
  37107. },
  37108. "terra": {
  37109. name: "Terra"
  37110. },
  37111. "jupiter": {
  37112. name: "Jupiter"
  37113. },
  37114. "neptune": {
  37115. name: "Neptune"
  37116. }
  37117. }
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37121. {
  37122. front: {
  37123. height: math.unit(16, "feet"),
  37124. weight: math.unit(610, "kg"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/huckle/front.svg",
  37128. extra: 1731/1625,
  37129. bottom: 33/1764
  37130. }
  37131. },
  37132. back: {
  37133. height: math.unit(16, "feet"),
  37134. weight: math.unit(610, "kg"),
  37135. name: "Back",
  37136. image: {
  37137. source: "./media/characters/huckle/back.svg",
  37138. extra: 1738/1651,
  37139. bottom: 37/1775
  37140. }
  37141. },
  37142. laughing: {
  37143. height: math.unit(3.75, "feet"),
  37144. name: "Laughing",
  37145. image: {
  37146. source: "./media/characters/huckle/laughing.svg"
  37147. }
  37148. },
  37149. angry: {
  37150. height: math.unit(4.15, "feet"),
  37151. name: "Angry",
  37152. image: {
  37153. source: "./media/characters/huckle/angry.svg"
  37154. }
  37155. },
  37156. },
  37157. [
  37158. {
  37159. name: "Normal",
  37160. height: math.unit(16, "feet"),
  37161. default: true
  37162. },
  37163. {
  37164. name: "Mini Macro",
  37165. height: math.unit(463, "feet")
  37166. },
  37167. {
  37168. name: "Macro",
  37169. height: math.unit(1680, "meters")
  37170. },
  37171. {
  37172. name: "Mega Macro",
  37173. height: math.unit(175, "km")
  37174. },
  37175. {
  37176. name: "Terra Macro",
  37177. height: math.unit(32, "gigameters")
  37178. },
  37179. {
  37180. name: "Multiverse+",
  37181. height: math.unit(2.56e23, "yottameters")
  37182. },
  37183. ]
  37184. ))
  37185. characterMakers.push(() => makeCharacter(
  37186. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37187. {
  37188. front: {
  37189. height: math.unit(6 + 9/12, "feet"),
  37190. weight: math.unit(280, "lb"),
  37191. name: "Front",
  37192. image: {
  37193. source: "./media/characters/candy/front.svg",
  37194. extra: 234/217,
  37195. bottom: 11/245
  37196. }
  37197. },
  37198. },
  37199. [
  37200. {
  37201. name: "Really Small",
  37202. height: math.unit(0.1, "nm")
  37203. },
  37204. {
  37205. name: "Micro",
  37206. height: math.unit(2, "inches")
  37207. },
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(6 + 9/12, "feet"),
  37211. default: true
  37212. },
  37213. {
  37214. name: "Small Macro",
  37215. height: math.unit(69, "feet")
  37216. },
  37217. {
  37218. name: "Macro",
  37219. height: math.unit(160, "feet")
  37220. },
  37221. {
  37222. name: "Megamacro",
  37223. height: math.unit(22000, "miles")
  37224. },
  37225. {
  37226. name: "Gigamacro",
  37227. height: math.unit(50000, "miles")
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37233. {
  37234. front: {
  37235. height: math.unit(4, "feet"),
  37236. weight: math.unit(90, "lb"),
  37237. name: "Front",
  37238. image: {
  37239. source: "./media/characters/joey-mcdonald/front.svg",
  37240. extra: 1059/852,
  37241. bottom: 33/1092
  37242. }
  37243. },
  37244. back: {
  37245. height: math.unit(4, "feet"),
  37246. weight: math.unit(90, "lb"),
  37247. name: "Back",
  37248. image: {
  37249. source: "./media/characters/joey-mcdonald/back.svg",
  37250. extra: 1077/879,
  37251. bottom: 5/1082
  37252. }
  37253. },
  37254. frontKobold: {
  37255. height: math.unit(4, "feet"),
  37256. weight: math.unit(100, "lb"),
  37257. name: "Front-kobold",
  37258. image: {
  37259. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37260. extra: 1480/1367,
  37261. bottom: 0/1480
  37262. }
  37263. },
  37264. backKobold: {
  37265. height: math.unit(4, "feet"),
  37266. weight: math.unit(100, "lb"),
  37267. name: "Back-kobold",
  37268. image: {
  37269. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37270. extra: 1449/1361,
  37271. bottom: 0/1449
  37272. }
  37273. },
  37274. },
  37275. [
  37276. {
  37277. name: "Normal",
  37278. height: math.unit(4, "feet"),
  37279. default: true
  37280. },
  37281. ]
  37282. ))
  37283. characterMakers.push(() => makeCharacter(
  37284. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37285. {
  37286. front: {
  37287. height: math.unit(12 + 6/12, "feet"),
  37288. name: "Front",
  37289. image: {
  37290. source: "./media/characters/kass-lockheed/front.svg",
  37291. extra: 354/343,
  37292. bottom: 9/363
  37293. }
  37294. },
  37295. back: {
  37296. height: math.unit(12 + 6/12, "feet"),
  37297. name: "Back",
  37298. image: {
  37299. source: "./media/characters/kass-lockheed/back.svg",
  37300. extra: 364/352,
  37301. bottom: 3/367
  37302. }
  37303. },
  37304. dick: {
  37305. height: math.unit(3.12, "feet"),
  37306. name: "Dick",
  37307. image: {
  37308. source: "./media/characters/kass-lockheed/dick.svg"
  37309. }
  37310. },
  37311. head: {
  37312. height: math.unit(2.6, "feet"),
  37313. name: "Head",
  37314. image: {
  37315. source: "./media/characters/kass-lockheed/head.svg"
  37316. }
  37317. },
  37318. bleh: {
  37319. height: math.unit(2.85, "feet"),
  37320. name: "Bleh",
  37321. image: {
  37322. source: "./media/characters/kass-lockheed/bleh.svg"
  37323. }
  37324. },
  37325. smug: {
  37326. height: math.unit(2.85, "feet"),
  37327. name: "Smug",
  37328. image: {
  37329. source: "./media/characters/kass-lockheed/smug.svg"
  37330. }
  37331. },
  37332. },
  37333. [
  37334. {
  37335. name: "Normal",
  37336. height: math.unit(12 + 6/12, "feet"),
  37337. default: true
  37338. },
  37339. ]
  37340. ))
  37341. characterMakers.push(() => makeCharacter(
  37342. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37343. {
  37344. front: {
  37345. height: math.unit(6 + 2/12, "feet"),
  37346. name: "Front",
  37347. image: {
  37348. source: "./media/characters/taylor/front.svg",
  37349. extra: 639/495,
  37350. bottom: 12/651
  37351. }
  37352. },
  37353. },
  37354. [
  37355. {
  37356. name: "Normal",
  37357. height: math.unit(6 + 2/12, "feet"),
  37358. default: true
  37359. },
  37360. {
  37361. name: "Big",
  37362. height: math.unit(15, "feet")
  37363. },
  37364. {
  37365. name: "Lorg",
  37366. height: math.unit(80, "feet")
  37367. },
  37368. {
  37369. name: "Too Lorg",
  37370. height: math.unit(120, "feet")
  37371. },
  37372. ]
  37373. ))
  37374. characterMakers.push(() => makeCharacter(
  37375. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37376. {
  37377. front: {
  37378. height: math.unit(15, "feet"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/kaizer/front.svg",
  37382. extra: 1612/1436,
  37383. bottom: 43/1655
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Normal",
  37390. height: math.unit(15, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(2, "feet"),
  37400. weight: math.unit(30, "lb"),
  37401. name: "Front",
  37402. image: {
  37403. source: "./media/characters/sandy/front.svg",
  37404. extra: 1439/1307,
  37405. bottom: 194/1633
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(2, "feet"),
  37413. default: true
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37419. {
  37420. front: {
  37421. height: math.unit(3, "feet"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/mellvi/front.svg",
  37425. extra: 1831/1630,
  37426. bottom: 58/1889
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Normal",
  37433. height: math.unit(3, "feet"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37440. {
  37441. front: {
  37442. height: math.unit(5 + 11/12, "feet"),
  37443. weight: math.unit(200, "lb"),
  37444. name: "Front",
  37445. image: {
  37446. source: "./media/characters/shirou/front.svg",
  37447. extra: 2491/2383,
  37448. bottom: 189/2680
  37449. }
  37450. },
  37451. back: {
  37452. height: math.unit(5 + 11/12, "feet"),
  37453. weight: math.unit(200, "lb"),
  37454. name: "Back",
  37455. image: {
  37456. source: "./media/characters/shirou/back.svg",
  37457. extra: 2554/2450,
  37458. bottom: 76/2630
  37459. }
  37460. },
  37461. },
  37462. [
  37463. {
  37464. name: "Normal",
  37465. height: math.unit(5 + 11/12, "feet"),
  37466. default: true
  37467. },
  37468. ]
  37469. ))
  37470. characterMakers.push(() => makeCharacter(
  37471. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37472. {
  37473. front: {
  37474. height: math.unit(6 + 3/12, "feet"),
  37475. weight: math.unit(177, "lb"),
  37476. name: "Front",
  37477. image: {
  37478. source: "./media/characters/noryu/front.svg",
  37479. extra: 973/885,
  37480. bottom: 10/983
  37481. }
  37482. },
  37483. },
  37484. [
  37485. {
  37486. name: "Normal",
  37487. height: math.unit(6 + 3/12, "feet"),
  37488. default: true
  37489. },
  37490. ]
  37491. ))
  37492. characterMakers.push(() => makeCharacter(
  37493. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37494. {
  37495. front: {
  37496. height: math.unit(5 + 6/12, "feet"),
  37497. weight: math.unit(170, "lb"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/mevolas-rubenido/front.svg",
  37501. extra: 2109/1901,
  37502. bottom: 96/2205
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(5 + 6/12, "feet"),
  37510. default: true
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(100, "feet"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/dee/front.svg",
  37522. extra: 2153/2036,
  37523. bottom: 59/2212
  37524. }
  37525. },
  37526. back: {
  37527. height: math.unit(100, "feet"),
  37528. name: "Back",
  37529. image: {
  37530. source: "./media/characters/dee/back.svg",
  37531. extra: 2183/2058,
  37532. bottom: 75/2258
  37533. }
  37534. },
  37535. foot: {
  37536. height: math.unit(19.43, "feet"),
  37537. name: "Foot",
  37538. image: {
  37539. source: "./media/characters/dee/foot.svg"
  37540. }
  37541. },
  37542. hoof: {
  37543. height: math.unit(20.6, "feet"),
  37544. name: "Hoof",
  37545. image: {
  37546. source: "./media/characters/dee/hoof.svg"
  37547. }
  37548. },
  37549. },
  37550. [
  37551. {
  37552. name: "Macro",
  37553. height: math.unit(100, "feet"),
  37554. default: true
  37555. },
  37556. ]
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(5 + 6/12, "feet"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/teh/front.svg",
  37566. extra: 1002/847,
  37567. bottom: 62/1064
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(5 + 6/12, "feet"),
  37575. default: true
  37576. },
  37577. ]
  37578. ))
  37579. characterMakers.push(() => makeCharacter(
  37580. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37581. {
  37582. side: {
  37583. height: math.unit(6 + 1/12, "feet"),
  37584. weight: math.unit(204, "lb"),
  37585. name: "Side",
  37586. image: {
  37587. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37588. extra: 974/775,
  37589. bottom: 169/1143
  37590. }
  37591. },
  37592. sitting: {
  37593. height: math.unit(6 + 2/12, "feet"),
  37594. weight: math.unit(204, "lb"),
  37595. name: "Sitting",
  37596. image: {
  37597. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37598. extra: 1175/964,
  37599. bottom: 378/1553
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Normal",
  37606. height: math.unit(6 + 1/12, "feet"),
  37607. default: true
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37613. {
  37614. front: {
  37615. height: math.unit(6, "inches"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/tululi/front.svg",
  37619. extra: 1997/1876,
  37620. bottom: 20/2017
  37621. }
  37622. },
  37623. },
  37624. [
  37625. {
  37626. name: "Normal",
  37627. height: math.unit(6, "inches"),
  37628. default: true
  37629. },
  37630. ]
  37631. ))
  37632. characterMakers.push(() => makeCharacter(
  37633. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37634. {
  37635. front: {
  37636. height: math.unit(4 + 1/12, "feet"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/star/front.svg",
  37640. extra: 1493/1189,
  37641. bottom: 48/1541
  37642. }
  37643. },
  37644. },
  37645. [
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(4 + 1/12, "feet"),
  37649. default: true
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(6 + 3/12, "feet"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/comet/front.svg",
  37661. extra: 1681/1462,
  37662. bottom: 26/1707
  37663. }
  37664. },
  37665. },
  37666. [
  37667. {
  37668. name: "Normal",
  37669. height: math.unit(6 + 3/12, "feet"),
  37670. default: true
  37671. },
  37672. ]
  37673. ))
  37674. characterMakers.push(() => makeCharacter(
  37675. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37676. {
  37677. front: {
  37678. height: math.unit(950, "feet"),
  37679. name: "Front",
  37680. image: {
  37681. source: "./media/characters/vortex/front.svg",
  37682. extra: 1497/1434,
  37683. bottom: 56/1553
  37684. }
  37685. },
  37686. maw: {
  37687. height: math.unit(285, "feet"),
  37688. name: "Maw",
  37689. image: {
  37690. source: "./media/characters/vortex/maw.svg"
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Macro",
  37697. height: math.unit(950, "feet"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(600, "feet"),
  37707. weight: math.unit(0.02, "grams"),
  37708. name: "Front",
  37709. image: {
  37710. source: "./media/characters/doodle/front.svg",
  37711. extra: 1578/1413,
  37712. bottom: 37/1615
  37713. }
  37714. },
  37715. },
  37716. [
  37717. {
  37718. name: "Macro",
  37719. height: math.unit(600, "feet"),
  37720. default: true
  37721. },
  37722. ]
  37723. ))
  37724. characterMakers.push(() => makeCharacter(
  37725. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37726. {
  37727. front: {
  37728. height: math.unit(6 + 6/12, "feet"),
  37729. name: "Front",
  37730. image: {
  37731. source: "./media/characters/jai/front.svg",
  37732. extra: 1645/1534,
  37733. bottom: 115/1760
  37734. }
  37735. },
  37736. },
  37737. [
  37738. {
  37739. name: "Normal",
  37740. height: math.unit(6 + 6/12, "feet"),
  37741. default: true
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(6 + 8/12, "feet"),
  37750. name: "Front",
  37751. image: {
  37752. source: "./media/characters/pixel/front.svg",
  37753. extra: 1900/1735,
  37754. bottom: 63/1963
  37755. }
  37756. },
  37757. },
  37758. [
  37759. {
  37760. name: "Normal",
  37761. height: math.unit(6 + 8/12, "feet"),
  37762. default: true
  37763. },
  37764. ]
  37765. ))
  37766. characterMakers.push(() => makeCharacter(
  37767. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37768. {
  37769. back: {
  37770. height: math.unit(4 + 1/12, "feet"),
  37771. weight: math.unit(75, "lb"),
  37772. name: "Back",
  37773. image: {
  37774. source: "./media/characters/rhett/back.svg",
  37775. extra: 930/878,
  37776. bottom: 25/955
  37777. }
  37778. },
  37779. front: {
  37780. height: math.unit(4 + 1/12, "feet"),
  37781. weight: math.unit(75, "lb"),
  37782. name: "Front",
  37783. image: {
  37784. source: "./media/characters/rhett/front.svg",
  37785. extra: 1682/1586,
  37786. bottom: 92/1774
  37787. }
  37788. },
  37789. },
  37790. [
  37791. {
  37792. name: "Micro",
  37793. height: math.unit(8, "inches")
  37794. },
  37795. {
  37796. name: "Tiny",
  37797. height: math.unit(2, "feet")
  37798. },
  37799. {
  37800. name: "Normal",
  37801. height: math.unit(4 + 1/12, "feet"),
  37802. default: true
  37803. },
  37804. ]
  37805. ))
  37806. characterMakers.push(() => makeCharacter(
  37807. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37808. {
  37809. front: {
  37810. height: math.unit(3 + 3/12, "feet"),
  37811. name: "Front",
  37812. image: {
  37813. source: "./media/characters/penny/front.svg",
  37814. extra: 1406/1311,
  37815. bottom: 26/1432
  37816. }
  37817. },
  37818. },
  37819. [
  37820. {
  37821. name: "Normal",
  37822. height: math.unit(3 + 3/12, "feet"),
  37823. default: true
  37824. },
  37825. ]
  37826. ))
  37827. characterMakers.push(() => makeCharacter(
  37828. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37829. {
  37830. front: {
  37831. height: math.unit(4 + 11/12, "feet"),
  37832. name: "Front",
  37833. image: {
  37834. source: "./media/characters/monty/front.svg",
  37835. extra: 1479/1209,
  37836. bottom: 0/1479
  37837. }
  37838. },
  37839. },
  37840. [
  37841. {
  37842. name: "Normal",
  37843. height: math.unit(4 + 11/12, "feet"),
  37844. default: true
  37845. },
  37846. ]
  37847. ))
  37848. characterMakers.push(() => makeCharacter(
  37849. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37850. {
  37851. front: {
  37852. height: math.unit(8 + 4/12, "feet"),
  37853. name: "Front",
  37854. image: {
  37855. source: "./media/characters/sterling/front.svg",
  37856. extra: 1420/1236,
  37857. bottom: 27/1447
  37858. }
  37859. },
  37860. },
  37861. [
  37862. {
  37863. name: "Normal",
  37864. height: math.unit(8 + 4/12, "feet"),
  37865. default: true
  37866. },
  37867. ]
  37868. ))
  37869. characterMakers.push(() => makeCharacter(
  37870. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37871. {
  37872. front: {
  37873. height: math.unit(15, "feet"),
  37874. name: "Front",
  37875. image: {
  37876. source: "./media/characters/marble/front.svg",
  37877. extra: 973/937,
  37878. bottom: 32/1005
  37879. }
  37880. },
  37881. },
  37882. [
  37883. {
  37884. name: "Normal",
  37885. height: math.unit(15, "feet"),
  37886. default: true
  37887. },
  37888. ]
  37889. ))
  37890. characterMakers.push(() => makeCharacter(
  37891. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37892. {
  37893. front: {
  37894. height: math.unit(3, "inches"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/powder/front.svg",
  37898. extra: 1504/1334,
  37899. bottom: 518/2022
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(3, "inches"),
  37907. default: true
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(4 + 5/12, "feet"),
  37916. name: "Front",
  37917. image: {
  37918. source: "./media/characters/joey-raccoon/front.svg",
  37919. extra: 1273/1197,
  37920. bottom: 0/1273
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Normal",
  37927. height: math.unit(4 + 5/12, "feet"),
  37928. default: true
  37929. },
  37930. ]
  37931. ))
  37932. characterMakers.push(() => makeCharacter(
  37933. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37934. {
  37935. front: {
  37936. height: math.unit(8 + 4/12, "feet"),
  37937. name: "Front",
  37938. image: {
  37939. source: "./media/characters/vick/front.svg",
  37940. extra: 2187/2118,
  37941. bottom: 47/2234
  37942. }
  37943. },
  37944. },
  37945. [
  37946. {
  37947. name: "Normal",
  37948. height: math.unit(8 + 4/12, "feet"),
  37949. default: true
  37950. },
  37951. ]
  37952. ))
  37953. characterMakers.push(() => makeCharacter(
  37954. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37955. {
  37956. front: {
  37957. height: math.unit(5 + 5/12, "feet"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/mitsy/front.svg",
  37961. extra: 1842/1695,
  37962. bottom: 0/1842
  37963. }
  37964. },
  37965. },
  37966. [
  37967. {
  37968. name: "Normal",
  37969. height: math.unit(5 + 5/12, "feet"),
  37970. default: true
  37971. },
  37972. ]
  37973. ))
  37974. characterMakers.push(() => makeCharacter(
  37975. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37976. {
  37977. front: {
  37978. height: math.unit(6 + 3/12, "feet"),
  37979. name: "Front",
  37980. image: {
  37981. source: "./media/characters/silvy/front.svg",
  37982. extra: 1995/1836,
  37983. bottom: 225/2220
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(6 + 3/12, "feet"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(3 + 8/12, "feet"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/rodney/front.svg",
  38003. extra: 1956/1747,
  38004. bottom: 31/1987
  38005. }
  38006. },
  38007. frontDressed: {
  38008. height: math.unit(2.9, "feet"),
  38009. name: "Front (Dressed)",
  38010. image: {
  38011. source: "./media/characters/rodney/front-dressed.svg",
  38012. extra: 1382/1241,
  38013. bottom: 385/1767
  38014. }
  38015. },
  38016. },
  38017. [
  38018. {
  38019. name: "Normal",
  38020. height: math.unit(3 + 8/12, "feet"),
  38021. default: true
  38022. },
  38023. ]
  38024. ))
  38025. characterMakers.push(() => makeCharacter(
  38026. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38027. {
  38028. front: {
  38029. height: math.unit(5 + 9/12, "feet"),
  38030. weight: math.unit(194, "lbs"),
  38031. name: "Front",
  38032. image: {
  38033. source: "./media/characters/zakail-sudekai/front.svg",
  38034. extra: 2696/2533,
  38035. bottom: 248/2944
  38036. }
  38037. },
  38038. maw: {
  38039. height: math.unit(1.35, "feet"),
  38040. name: "Maw",
  38041. image: {
  38042. source: "./media/characters/zakail-sudekai/maw.svg"
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(5 + 9/12, "feet"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38056. {
  38057. front: {
  38058. height: math.unit(8 + 4/12, "feet"),
  38059. weight: math.unit(1200, "lb"),
  38060. name: "Front",
  38061. image: {
  38062. source: "./media/characters/eleanor/front.svg",
  38063. extra: 1226/1192,
  38064. bottom: 52/1278
  38065. }
  38066. },
  38067. back: {
  38068. height: math.unit(8 + 4/12, "feet"),
  38069. weight: math.unit(1200, "lb"),
  38070. name: "Back",
  38071. image: {
  38072. source: "./media/characters/eleanor/back.svg",
  38073. extra: 1242/1184,
  38074. bottom: 60/1302
  38075. }
  38076. },
  38077. head: {
  38078. height: math.unit(2.62, "feet"),
  38079. name: "Head",
  38080. image: {
  38081. source: "./media/characters/eleanor/head.svg"
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(8 + 4/12, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(8 + 4/12, "feet"),
  38098. weight: math.unit(750, "lb"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/tanya/front.svg",
  38102. extra: 1749/1615,
  38103. bottom: 33/1782
  38104. }
  38105. },
  38106. },
  38107. [
  38108. {
  38109. name: "Normal",
  38110. height: math.unit(8 + 4/12, "feet"),
  38111. default: true
  38112. },
  38113. ]
  38114. ))
  38115. characterMakers.push(() => makeCharacter(
  38116. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38117. {
  38118. front: {
  38119. height: math.unit(5, "feet"),
  38120. weight: math.unit(225, "lb"),
  38121. name: "Front",
  38122. image: {
  38123. source: "./media/characters/cindy/front.svg",
  38124. extra: 1320/1250,
  38125. bottom: 42/1362
  38126. }
  38127. },
  38128. frontDressed: {
  38129. height: math.unit(5, "feet"),
  38130. weight: math.unit(225, "lb"),
  38131. name: "Front (Dressed)",
  38132. image: {
  38133. source: "./media/characters/cindy/front-dressed.svg",
  38134. extra: 1320/1250,
  38135. bottom: 42/1362
  38136. }
  38137. },
  38138. back: {
  38139. height: math.unit(5, "feet"),
  38140. weight: math.unit(225, "lb"),
  38141. name: "Back",
  38142. image: {
  38143. source: "./media/characters/cindy/back.svg",
  38144. extra: 1384/1346,
  38145. bottom: 14/1398
  38146. }
  38147. },
  38148. },
  38149. [
  38150. {
  38151. name: "Normal",
  38152. height: math.unit(5, "feet"),
  38153. default: true
  38154. },
  38155. ]
  38156. ))
  38157. characterMakers.push(() => makeCharacter(
  38158. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38159. {
  38160. front: {
  38161. height: math.unit(6 + 9/12, "feet"),
  38162. weight: math.unit(440, "lb"),
  38163. name: "Front",
  38164. image: {
  38165. source: "./media/characters/wilbur-owen/front.svg",
  38166. extra: 1575/1448,
  38167. bottom: 72/1647
  38168. }
  38169. },
  38170. back: {
  38171. height: math.unit(6 + 9/12, "feet"),
  38172. weight: math.unit(440, "lb"),
  38173. name: "Back",
  38174. image: {
  38175. source: "./media/characters/wilbur-owen/back.svg",
  38176. extra: 1578/1445,
  38177. bottom: 36/1614
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Normal",
  38184. height: math.unit(6 + 9/12, "feet"),
  38185. default: true
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38191. {
  38192. front: {
  38193. height: math.unit(6 + 5/12, "feet"),
  38194. weight: math.unit(650, "lb"),
  38195. name: "Front",
  38196. image: {
  38197. source: "./media/characters/keegan/front.svg",
  38198. extra: 2387/2198,
  38199. bottom: 33/2420
  38200. }
  38201. },
  38202. side: {
  38203. height: math.unit(6 + 5/12, "feet"),
  38204. weight: math.unit(650, "lb"),
  38205. name: "Side",
  38206. image: {
  38207. source: "./media/characters/keegan/side.svg",
  38208. extra: 2390/2202,
  38209. bottom: 47/2437
  38210. }
  38211. },
  38212. back: {
  38213. height: math.unit(6 + 5/12, "feet"),
  38214. weight: math.unit(650, "lb"),
  38215. name: "Back",
  38216. image: {
  38217. source: "./media/characters/keegan/back.svg",
  38218. extra: 2418/2268,
  38219. bottom: 15/2433
  38220. }
  38221. },
  38222. frontSfw: {
  38223. height: math.unit(6 + 5/12, "feet"),
  38224. weight: math.unit(650, "lb"),
  38225. name: "Front (SFW)",
  38226. image: {
  38227. source: "./media/characters/keegan/front-sfw.svg",
  38228. extra: 2387/2198,
  38229. bottom: 33/2420
  38230. }
  38231. },
  38232. beans: {
  38233. height: math.unit(1.85, "feet"),
  38234. name: "Beans",
  38235. image: {
  38236. source: "./media/characters/keegan/beans.svg"
  38237. }
  38238. },
  38239. },
  38240. [
  38241. {
  38242. name: "Normal",
  38243. height: math.unit(6 + 5/12, "feet"),
  38244. default: true
  38245. },
  38246. ]
  38247. ))
  38248. characterMakers.push(() => makeCharacter(
  38249. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38250. {
  38251. front: {
  38252. height: math.unit(9, "feet"),
  38253. name: "Front",
  38254. image: {
  38255. source: "./media/characters/colton/front.svg",
  38256. extra: 1589/1326,
  38257. bottom: 139/1728
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Normal",
  38264. height: math.unit(9, "feet"),
  38265. default: true
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38271. {
  38272. front: {
  38273. height: math.unit(2 + 9/12, "feet"),
  38274. name: "Front",
  38275. image: {
  38276. source: "./media/characters/bora/front.svg",
  38277. extra: 1265/1250,
  38278. bottom: 24/1289
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Normal",
  38285. height: math.unit(2 + 9/12, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38292. {
  38293. front: {
  38294. height: math.unit(8, "feet"),
  38295. name: "Front",
  38296. image: {
  38297. source: "./media/characters/myu-myu/front.svg",
  38298. extra: 1949/1857,
  38299. bottom: 90/2039
  38300. }
  38301. },
  38302. },
  38303. [
  38304. {
  38305. name: "Normal",
  38306. height: math.unit(8, "feet"),
  38307. default: true
  38308. },
  38309. {
  38310. name: "Big",
  38311. height: math.unit(15, "feet")
  38312. },
  38313. {
  38314. name: "BIG",
  38315. height: math.unit(25, "feet")
  38316. },
  38317. ]
  38318. ))
  38319. characterMakers.push(() => makeCharacter(
  38320. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38321. {
  38322. side: {
  38323. height: math.unit(7 + 5/12, "feet"),
  38324. weight: math.unit(2800, "lb"),
  38325. name: "Side",
  38326. image: {
  38327. source: "./media/characters/haloren/side.svg",
  38328. extra: 1793/409,
  38329. bottom: 59/1852
  38330. }
  38331. },
  38332. frontPaw: {
  38333. height: math.unit(2.36, "feet"),
  38334. name: "Front paw",
  38335. image: {
  38336. source: "./media/characters/haloren/front-paw.svg"
  38337. }
  38338. },
  38339. hindPaw: {
  38340. height: math.unit(3.18, "feet"),
  38341. name: "Hind paw",
  38342. image: {
  38343. source: "./media/characters/haloren/hind-paw.svg"
  38344. }
  38345. },
  38346. maw: {
  38347. height: math.unit(5.05, "feet"),
  38348. name: "Maw",
  38349. image: {
  38350. source: "./media/characters/haloren/maw.svg"
  38351. }
  38352. },
  38353. dick: {
  38354. height: math.unit(2.90, "feet"),
  38355. name: "Dick",
  38356. image: {
  38357. source: "./media/characters/haloren/dick.svg"
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Normal",
  38364. height: math.unit(7 + 5/12, "feet"),
  38365. default: true
  38366. },
  38367. {
  38368. name: "Enhanced",
  38369. height: math.unit(14 + 3/12, "feet")
  38370. },
  38371. ]
  38372. ))
  38373. characterMakers.push(() => makeCharacter(
  38374. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38375. {
  38376. front: {
  38377. height: math.unit(171, "cm"),
  38378. name: "Front",
  38379. image: {
  38380. source: "./media/characters/kimmy/front.svg",
  38381. extra: 1491/1435,
  38382. bottom: 53/1544
  38383. }
  38384. },
  38385. },
  38386. [
  38387. {
  38388. name: "Small",
  38389. height: math.unit(9, "cm")
  38390. },
  38391. {
  38392. name: "Normal",
  38393. height: math.unit(171, "cm"),
  38394. default: true
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(8, "feet"),
  38403. weight: math.unit(300, "lb"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/galeboomer/front.svg",
  38407. extra: 4651/4415,
  38408. bottom: 162/4813
  38409. }
  38410. },
  38411. back: {
  38412. height: math.unit(8, "feet"),
  38413. weight: math.unit(300, "lb"),
  38414. name: "Back",
  38415. image: {
  38416. source: "./media/characters/galeboomer/back.svg",
  38417. extra: 4544/4314,
  38418. bottom: 16/4560
  38419. }
  38420. },
  38421. frontAlt: {
  38422. height: math.unit(8, "feet"),
  38423. weight: math.unit(300, "lb"),
  38424. name: "Front (Alt)",
  38425. image: {
  38426. source: "./media/characters/galeboomer/front-alt.svg",
  38427. extra: 4458/4228,
  38428. bottom: 68/4526
  38429. }
  38430. },
  38431. maw: {
  38432. height: math.unit(1.2, "feet"),
  38433. name: "Maw",
  38434. image: {
  38435. source: "./media/characters/galeboomer/maw.svg"
  38436. }
  38437. },
  38438. },
  38439. [
  38440. {
  38441. name: "Normal",
  38442. height: math.unit(8, "feet"),
  38443. default: true
  38444. },
  38445. ]
  38446. ))
  38447. characterMakers.push(() => makeCharacter(
  38448. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38449. {
  38450. front: {
  38451. height: math.unit(5 + 9/12, "feet"),
  38452. weight: math.unit(120, "lb"),
  38453. name: "Front",
  38454. image: {
  38455. source: "./media/characters/chyr/front.svg",
  38456. extra: 1323/1254,
  38457. bottom: 63/1386
  38458. }
  38459. },
  38460. back: {
  38461. height: math.unit(5 + 9/12, "feet"),
  38462. weight: math.unit(120, "lb"),
  38463. name: "Back",
  38464. image: {
  38465. source: "./media/characters/chyr/back.svg",
  38466. extra: 1323/1252,
  38467. bottom: 48/1371
  38468. }
  38469. },
  38470. },
  38471. [
  38472. {
  38473. name: "Normal",
  38474. height: math.unit(5 + 9/12, "feet"),
  38475. default: true
  38476. },
  38477. ]
  38478. ))
  38479. characterMakers.push(() => makeCharacter(
  38480. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38481. {
  38482. front: {
  38483. height: math.unit(7, "feet"),
  38484. weight: math.unit(310, "lb"),
  38485. name: "Front",
  38486. image: {
  38487. source: "./media/characters/solarus/front.svg",
  38488. extra: 2415/2021,
  38489. bottom: 103/2518
  38490. }
  38491. },
  38492. back: {
  38493. height: math.unit(7, "feet"),
  38494. weight: math.unit(310, "lb"),
  38495. name: "Back",
  38496. image: {
  38497. source: "./media/characters/solarus/back.svg",
  38498. extra: 2463/2089,
  38499. bottom: 79/2542
  38500. }
  38501. },
  38502. },
  38503. [
  38504. {
  38505. name: "Normal",
  38506. height: math.unit(7, "feet"),
  38507. default: true
  38508. },
  38509. ]
  38510. ))
  38511. characterMakers.push(() => makeCharacter(
  38512. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38513. {
  38514. front: {
  38515. height: math.unit(16, "feet"),
  38516. name: "Front",
  38517. image: {
  38518. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38519. extra: 1844/1780,
  38520. bottom: 58/1902
  38521. }
  38522. },
  38523. winterCoat: {
  38524. height: math.unit(16, "feet"),
  38525. name: "Winter Coat",
  38526. image: {
  38527. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38528. extra: 1807/1775,
  38529. bottom: 69/1876
  38530. }
  38531. },
  38532. },
  38533. [
  38534. {
  38535. name: "Normal",
  38536. height: math.unit(16, "feet"),
  38537. default: true
  38538. },
  38539. {
  38540. name: "Chicago Size",
  38541. height: math.unit(560, "feet")
  38542. },
  38543. ]
  38544. ))
  38545. characterMakers.push(() => makeCharacter(
  38546. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38547. {
  38548. front: {
  38549. height: math.unit(11 + 6/12, "feet"),
  38550. weight: math.unit(1366, "lb"),
  38551. name: "Front",
  38552. image: {
  38553. source: "./media/characters/lexor/front.svg",
  38554. extra: 1560/1481,
  38555. bottom: 211/1771
  38556. }
  38557. },
  38558. back: {
  38559. height: math.unit(11 + 6/12, "feet"),
  38560. weight: math.unit(1366, "lb"),
  38561. name: "Back",
  38562. image: {
  38563. source: "./media/characters/lexor/back.svg",
  38564. extra: 1614/1533,
  38565. bottom: 76/1690
  38566. }
  38567. },
  38568. maw: {
  38569. height: math.unit(3, "feet"),
  38570. name: "Maw",
  38571. image: {
  38572. source: "./media/characters/lexor/maw.svg"
  38573. }
  38574. },
  38575. dick: {
  38576. height: math.unit(2.59, "feet"),
  38577. name: "Dick",
  38578. image: {
  38579. source: "./media/characters/lexor/dick.svg"
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(11 + 6/12, "feet"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(5 + 8/12, "feet"),
  38596. name: "Front",
  38597. image: {
  38598. source: "./media/characters/magnum/front.svg",
  38599. extra: 942/855,
  38600. bottom: 26/968
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(5 + 8/12, "feet"),
  38608. default: true
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38614. {
  38615. front: {
  38616. height: math.unit(18 + 4/12, "feet"),
  38617. weight: math.unit(1500, "kg"),
  38618. name: "Front",
  38619. image: {
  38620. source: "./media/characters/solas-sharpsman/front.svg",
  38621. extra: 1698/1589,
  38622. bottom: 0/1698
  38623. }
  38624. },
  38625. },
  38626. [
  38627. {
  38628. name: "Normal",
  38629. height: math.unit(18 + 4/12, "feet"),
  38630. default: true
  38631. },
  38632. ]
  38633. ))
  38634. characterMakers.push(() => makeCharacter(
  38635. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38636. {
  38637. front: {
  38638. height: math.unit(5 + 5/12, "feet"),
  38639. weight: math.unit(180, "lb"),
  38640. name: "Front",
  38641. image: {
  38642. source: "./media/characters/october/front.svg",
  38643. extra: 1800/1650,
  38644. bottom: 0/1800
  38645. }
  38646. },
  38647. frontNsfw: {
  38648. height: math.unit(5 + 5/12, "feet"),
  38649. weight: math.unit(180, "lb"),
  38650. name: "Front (NSFW)",
  38651. image: {
  38652. source: "./media/characters/october/front-nsfw.svg",
  38653. extra: 1392/1307,
  38654. bottom: 42/1434
  38655. }
  38656. },
  38657. },
  38658. [
  38659. {
  38660. name: "Normal",
  38661. height: math.unit(5 + 5/12, "feet"),
  38662. default: true
  38663. },
  38664. ]
  38665. ))
  38666. characterMakers.push(() => makeCharacter(
  38667. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38668. {
  38669. front: {
  38670. height: math.unit(8 + 6/12, "feet"),
  38671. name: "Front",
  38672. image: {
  38673. source: "./media/characters/essynkardi/front.svg",
  38674. extra: 1914/1846,
  38675. bottom: 22/1936
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Normal",
  38682. height: math.unit(8 + 6/12, "feet"),
  38683. default: true
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38689. {
  38690. front: {
  38691. height: math.unit(6 + 6/12, "feet"),
  38692. weight: math.unit(7, "lb"),
  38693. name: "Front",
  38694. image: {
  38695. source: "./media/characters/icky/front.svg",
  38696. extra: 813/782,
  38697. bottom: 66/879
  38698. }
  38699. },
  38700. back: {
  38701. height: math.unit(6 + 6/12, "feet"),
  38702. weight: math.unit(7, "lb"),
  38703. name: "Back",
  38704. image: {
  38705. source: "./media/characters/icky/back.svg",
  38706. extra: 754/735,
  38707. bottom: 56/810
  38708. }
  38709. },
  38710. },
  38711. [
  38712. {
  38713. name: "Normal",
  38714. height: math.unit(6 + 6/12, "feet"),
  38715. default: true
  38716. },
  38717. ]
  38718. ))
  38719. characterMakers.push(() => makeCharacter(
  38720. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38721. {
  38722. front: {
  38723. height: math.unit(15, "feet"),
  38724. name: "Front",
  38725. image: {
  38726. source: "./media/characters/rojas/front.svg",
  38727. extra: 1462/1408,
  38728. bottom: 95/1557
  38729. }
  38730. },
  38731. back: {
  38732. height: math.unit(15, "feet"),
  38733. name: "Back",
  38734. image: {
  38735. source: "./media/characters/rojas/back.svg",
  38736. extra: 1023/954,
  38737. bottom: 28/1051
  38738. }
  38739. },
  38740. },
  38741. [
  38742. {
  38743. name: "Normal",
  38744. height: math.unit(15, "feet"),
  38745. default: true
  38746. },
  38747. ]
  38748. ))
  38749. characterMakers.push(() => makeCharacter(
  38750. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38751. {
  38752. frontHuman: {
  38753. height: math.unit(5 + 7/12, "feet"),
  38754. name: "Front (Human)",
  38755. image: {
  38756. source: "./media/characters/alek-dryagan/front-human.svg",
  38757. extra: 1687/1667,
  38758. bottom: 69/1756
  38759. }
  38760. },
  38761. backHuman: {
  38762. height: math.unit(5 + 7/12, "feet"),
  38763. name: "Back (Human)",
  38764. image: {
  38765. source: "./media/characters/alek-dryagan/back-human.svg",
  38766. extra: 1670/1649,
  38767. bottom: 65/1735
  38768. }
  38769. },
  38770. frontDemi: {
  38771. height: math.unit(65, "feet"),
  38772. name: "Front (Demi)",
  38773. image: {
  38774. source: "./media/characters/alek-dryagan/front-demi.svg",
  38775. extra: 1669/1642,
  38776. bottom: 49/1718
  38777. }
  38778. },
  38779. backDemi: {
  38780. height: math.unit(65, "feet"),
  38781. name: "Back (Demi)",
  38782. image: {
  38783. source: "./media/characters/alek-dryagan/back-demi.svg",
  38784. extra: 1658/1637,
  38785. bottom: 40/1698
  38786. }
  38787. },
  38788. mawHuman: {
  38789. height: math.unit(0.3, "feet"),
  38790. name: "Maw (Human)",
  38791. image: {
  38792. source: "./media/characters/alek-dryagan/maw-human.svg"
  38793. }
  38794. },
  38795. mawDemi: {
  38796. height: math.unit(3.8, "feet"),
  38797. name: "Maw (Demi)",
  38798. image: {
  38799. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38800. }
  38801. },
  38802. },
  38803. [
  38804. {
  38805. name: "Normal",
  38806. height: math.unit(5 + 7/12, "feet"),
  38807. default: true
  38808. },
  38809. ]
  38810. ))
  38811. characterMakers.push(() => makeCharacter(
  38812. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38813. {
  38814. frontHuman: {
  38815. height: math.unit(5 + 2/12, "feet"),
  38816. name: "Front (Human)",
  38817. image: {
  38818. source: "./media/characters/gen/front-human.svg",
  38819. extra: 1627/1538,
  38820. bottom: 71/1698
  38821. }
  38822. },
  38823. backHuman: {
  38824. height: math.unit(5 + 2/12, "feet"),
  38825. name: "Back (Human)",
  38826. image: {
  38827. source: "./media/characters/gen/back-human.svg",
  38828. extra: 1638/1548,
  38829. bottom: 69/1707
  38830. }
  38831. },
  38832. frontDemi: {
  38833. height: math.unit(5 + 2/12, "feet"),
  38834. name: "Front (Demi)",
  38835. image: {
  38836. source: "./media/characters/gen/front-demi.svg",
  38837. extra: 1627/1538,
  38838. bottom: 71/1698
  38839. }
  38840. },
  38841. backDemi: {
  38842. height: math.unit(5 + 2/12, "feet"),
  38843. name: "Back (Demi)",
  38844. image: {
  38845. source: "./media/characters/gen/back-demi.svg",
  38846. extra: 1638/1548,
  38847. bottom: 69/1707
  38848. }
  38849. },
  38850. },
  38851. [
  38852. {
  38853. name: "Normal",
  38854. height: math.unit(5 + 2/12, "feet"),
  38855. default: true
  38856. },
  38857. ]
  38858. ))
  38859. characterMakers.push(() => makeCharacter(
  38860. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38861. {
  38862. frontImp: {
  38863. height: math.unit(1 + 11/12, "feet"),
  38864. name: "Front (Imp)",
  38865. image: {
  38866. source: "./media/characters/max-kobold/front-imp.svg",
  38867. extra: 1238/1134,
  38868. bottom: 81/1319
  38869. }
  38870. },
  38871. backImp: {
  38872. height: math.unit(1 + 11/12, "feet"),
  38873. name: "Back (Imp)",
  38874. image: {
  38875. source: "./media/characters/max-kobold/back-imp.svg",
  38876. extra: 1334/1175,
  38877. bottom: 34/1368
  38878. }
  38879. },
  38880. frontDemi: {
  38881. height: math.unit(5 + 9/12, "feet"),
  38882. name: "Front (Demi)",
  38883. image: {
  38884. source: "./media/characters/max-kobold/front-demi.svg",
  38885. extra: 1715/1685,
  38886. bottom: 54/1769
  38887. }
  38888. },
  38889. backDemi: {
  38890. height: math.unit(5 + 9/12, "feet"),
  38891. name: "Back (Demi)",
  38892. image: {
  38893. source: "./media/characters/max-kobold/back-demi.svg",
  38894. extra: 1752/1729,
  38895. bottom: 41/1793
  38896. }
  38897. },
  38898. handImp: {
  38899. height: math.unit(0.45, "feet"),
  38900. name: "Hand (Imp)",
  38901. image: {
  38902. source: "./media/characters/max-kobold/hand.svg"
  38903. }
  38904. },
  38905. pawImp: {
  38906. height: math.unit(0.46, "feet"),
  38907. name: "Paw (Imp)",
  38908. image: {
  38909. source: "./media/characters/max-kobold/paw.svg"
  38910. }
  38911. },
  38912. handDemi: {
  38913. height: math.unit(0.80, "feet"),
  38914. name: "Hand (Demi)",
  38915. image: {
  38916. source: "./media/characters/max-kobold/hand.svg"
  38917. }
  38918. },
  38919. pawDemi: {
  38920. height: math.unit(1.1, "feet"),
  38921. name: "Paw (Demi)",
  38922. image: {
  38923. source: "./media/characters/max-kobold/paw.svg"
  38924. }
  38925. },
  38926. headImp: {
  38927. height: math.unit(1.33, "feet"),
  38928. name: "Head (Imp)",
  38929. image: {
  38930. source: "./media/characters/max-kobold/head-imp.svg"
  38931. }
  38932. },
  38933. mawImp: {
  38934. height: math.unit(0.75, "feet"),
  38935. name: "Maw (Imp)",
  38936. image: {
  38937. source: "./media/characters/max-kobold/maw-imp.svg"
  38938. }
  38939. },
  38940. mawDemi: {
  38941. height: math.unit(0.42, "feet"),
  38942. name: "Maw (Demi)",
  38943. image: {
  38944. source: "./media/characters/max-kobold/maw-demi.svg"
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(1 + 11/12, "feet"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(7 + 5/12, "feet"),
  38961. name: "Front",
  38962. image: {
  38963. source: "./media/characters/carbon/front.svg",
  38964. extra: 1754/1689,
  38965. bottom: 65/1819
  38966. }
  38967. },
  38968. back: {
  38969. height: math.unit(7 + 5/12, "feet"),
  38970. name: "Back",
  38971. image: {
  38972. source: "./media/characters/carbon/back.svg",
  38973. extra: 1762/1695,
  38974. bottom: 24/1786
  38975. }
  38976. },
  38977. frontGigantamax: {
  38978. height: math.unit(150, "feet"),
  38979. name: "Front (Gigantamax)",
  38980. image: {
  38981. source: "./media/characters/carbon/front-gigantamax.svg",
  38982. extra: 1826/1669,
  38983. bottom: 59/1885
  38984. }
  38985. },
  38986. backGigantamax: {
  38987. height: math.unit(150, "feet"),
  38988. name: "Back (Gigantamax)",
  38989. image: {
  38990. source: "./media/characters/carbon/back-gigantamax.svg",
  38991. extra: 1796/1653,
  38992. bottom: 53/1849
  38993. }
  38994. },
  38995. maw: {
  38996. height: math.unit(0.48, "feet"),
  38997. name: "Maw",
  38998. image: {
  38999. source: "./media/characters/carbon/maw.svg"
  39000. }
  39001. },
  39002. mawGigantamax: {
  39003. height: math.unit(7.5, "feet"),
  39004. name: "Maw (Gigantamax)",
  39005. image: {
  39006. source: "./media/characters/carbon/maw-gigantamax.svg"
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Normal",
  39013. height: math.unit(7 + 5/12, "feet"),
  39014. default: true
  39015. },
  39016. ]
  39017. ))
  39018. characterMakers.push(() => makeCharacter(
  39019. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39020. {
  39021. front: {
  39022. height: math.unit(6, "feet"),
  39023. name: "Front",
  39024. image: {
  39025. source: "./media/characters/maverick/front.svg",
  39026. extra: 1672/1661,
  39027. bottom: 85/1757
  39028. }
  39029. },
  39030. back: {
  39031. height: math.unit(6, "feet"),
  39032. name: "Back",
  39033. image: {
  39034. source: "./media/characters/maverick/back.svg",
  39035. extra: 1642/1631,
  39036. bottom: 38/1680
  39037. }
  39038. },
  39039. },
  39040. [
  39041. {
  39042. name: "Normal",
  39043. height: math.unit(6, "feet"),
  39044. default: true
  39045. },
  39046. ]
  39047. ))
  39048. characterMakers.push(() => makeCharacter(
  39049. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39050. {
  39051. front: {
  39052. height: math.unit(15, "feet"),
  39053. weight: math.unit(615, "lb"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/grockle/front.svg",
  39057. extra: 1535/1427,
  39058. bottom: 56/1591
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Normal",
  39065. height: math.unit(15, "feet"),
  39066. default: true
  39067. },
  39068. {
  39069. name: "Large",
  39070. height: math.unit(150, "feet")
  39071. },
  39072. {
  39073. name: "Macro",
  39074. height: math.unit(1876, "feet")
  39075. },
  39076. {
  39077. name: "Mega Macro",
  39078. height: math.unit(121940, "feet")
  39079. },
  39080. {
  39081. name: "Giga Macro",
  39082. height: math.unit(750, "km")
  39083. },
  39084. {
  39085. name: "Tera Macro",
  39086. height: math.unit(750000, "km")
  39087. },
  39088. {
  39089. name: "Galactic",
  39090. height: math.unit(1.4e5, "km")
  39091. },
  39092. {
  39093. name: "Godlike",
  39094. height: math.unit(9.8e280, "galaxies")
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(11, "meters"),
  39103. weight: math.unit(20, "tonnes"),
  39104. name: "Front",
  39105. image: {
  39106. source: "./media/characters/alistair/front.svg",
  39107. extra: 1265/1009,
  39108. bottom: 93/1358
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Normal",
  39115. height: math.unit(11, "meters"),
  39116. default: true
  39117. },
  39118. ]
  39119. ))
  39120. characterMakers.push(() => makeCharacter(
  39121. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39122. {
  39123. front: {
  39124. height: math.unit(5 + 8/12, "feet"),
  39125. name: "Front",
  39126. image: {
  39127. source: "./media/characters/haruka/front.svg",
  39128. extra: 2012/1952,
  39129. bottom: 0/2012
  39130. }
  39131. },
  39132. },
  39133. [
  39134. {
  39135. name: "Normal",
  39136. height: math.unit(5 + 8/12, "feet"),
  39137. default: true
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39143. {
  39144. back: {
  39145. height: math.unit(9, "feet"),
  39146. name: "Back",
  39147. image: {
  39148. source: "./media/characters/vivian-sylveon/back.svg",
  39149. extra: 1853/1714,
  39150. bottom: 0/1853
  39151. }
  39152. },
  39153. },
  39154. [
  39155. {
  39156. name: "Normal",
  39157. height: math.unit(9, "feet"),
  39158. default: true
  39159. },
  39160. {
  39161. name: "Macro",
  39162. height: math.unit(500, "feet")
  39163. },
  39164. {
  39165. name: "Megamacro",
  39166. height: math.unit(600, "miles")
  39167. },
  39168. {
  39169. name: "Gigamacro",
  39170. height: math.unit(30000, "miles")
  39171. },
  39172. ]
  39173. ))
  39174. characterMakers.push(() => makeCharacter(
  39175. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39176. {
  39177. anthro: {
  39178. height: math.unit(5 + 10/12, "feet"),
  39179. weight: math.unit(100, "lb"),
  39180. name: "Anthro",
  39181. image: {
  39182. source: "./media/characters/daiki/anthro.svg",
  39183. extra: 1115/1027,
  39184. bottom: 69/1184
  39185. }
  39186. },
  39187. feral: {
  39188. height: math.unit(200, "feet"),
  39189. name: "Feral",
  39190. image: {
  39191. source: "./media/characters/daiki/feral.svg",
  39192. extra: 1256/313,
  39193. bottom: 39/1295
  39194. }
  39195. },
  39196. feralHead: {
  39197. height: math.unit(171, "feet"),
  39198. name: "Feral Head",
  39199. image: {
  39200. source: "./media/characters/daiki/feral-head.svg"
  39201. }
  39202. },
  39203. manaDragon: {
  39204. height: math.unit(170, "meters"),
  39205. name: "Mana-dragon",
  39206. image: {
  39207. source: "./media/characters/daiki/mana-dragon.svg",
  39208. extra: 763/420,
  39209. bottom: 97/860
  39210. }
  39211. },
  39212. },
  39213. [
  39214. {
  39215. name: "Normal",
  39216. height: math.unit(5 + 10/12, "feet"),
  39217. default: true
  39218. },
  39219. ]
  39220. ))
  39221. characterMakers.push(() => makeCharacter(
  39222. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39223. {
  39224. fullyEquippedFront: {
  39225. height: math.unit(3 + 1/12, "feet"),
  39226. weight: math.unit(24, "lb"),
  39227. name: "Fully Equipped (Front)",
  39228. image: {
  39229. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39230. extra: 687/605,
  39231. bottom: 18/705
  39232. }
  39233. },
  39234. fullyEquippedBack: {
  39235. height: math.unit(3 + 1/12, "feet"),
  39236. weight: math.unit(24, "lb"),
  39237. name: "Fully Equipped (Back)",
  39238. image: {
  39239. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39240. extra: 689/590,
  39241. bottom: 18/707
  39242. }
  39243. },
  39244. dailyWear: {
  39245. height: math.unit(3 + 1/12, "feet"),
  39246. weight: math.unit(24, "lb"),
  39247. name: "Daily Wear",
  39248. image: {
  39249. source: "./media/characters/tea-spot/daily-wear.svg",
  39250. extra: 701/620,
  39251. bottom: 21/722
  39252. }
  39253. },
  39254. maidWork: {
  39255. height: math.unit(3 + 1/12, "feet"),
  39256. weight: math.unit(24, "lb"),
  39257. name: "Maid Work",
  39258. image: {
  39259. source: "./media/characters/tea-spot/maid-work.svg",
  39260. extra: 693/609,
  39261. bottom: 15/708
  39262. }
  39263. },
  39264. },
  39265. [
  39266. {
  39267. name: "Normal",
  39268. height: math.unit(3 + 1/12, "feet"),
  39269. default: true
  39270. },
  39271. ]
  39272. ))
  39273. characterMakers.push(() => makeCharacter(
  39274. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39275. {
  39276. front: {
  39277. height: math.unit(175, "cm"),
  39278. weight: math.unit(75, "kg"),
  39279. name: "Front",
  39280. image: {
  39281. source: "./media/characters/chee/front.svg",
  39282. extra: 1796/1740,
  39283. bottom: 40/1836
  39284. }
  39285. },
  39286. },
  39287. [
  39288. {
  39289. name: "Micro-Micro",
  39290. height: math.unit(1, "nm")
  39291. },
  39292. {
  39293. name: "Micro-erst",
  39294. height: math.unit(1, "micrometer")
  39295. },
  39296. {
  39297. name: "Micro-er",
  39298. height: math.unit(1, "cm")
  39299. },
  39300. {
  39301. name: "Normal",
  39302. height: math.unit(175, "cm"),
  39303. default: true
  39304. },
  39305. {
  39306. name: "Macro",
  39307. height: math.unit(100, "m")
  39308. },
  39309. {
  39310. name: "Macro-er",
  39311. height: math.unit(1, "km")
  39312. },
  39313. {
  39314. name: "Macro-erst",
  39315. height: math.unit(10, "km")
  39316. },
  39317. {
  39318. name: "Macro-Macro",
  39319. height: math.unit(100, "km")
  39320. },
  39321. ]
  39322. ))
  39323. characterMakers.push(() => makeCharacter(
  39324. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39325. {
  39326. front: {
  39327. height: math.unit(11 + 9/12, "feet"),
  39328. weight: math.unit(935, "lb"),
  39329. name: "Front",
  39330. image: {
  39331. source: "./media/characters/kingsley/front.svg",
  39332. extra: 1803/1674,
  39333. bottom: 127/1930
  39334. }
  39335. },
  39336. frontNude: {
  39337. height: math.unit(11 + 9/12, "feet"),
  39338. weight: math.unit(935, "lb"),
  39339. name: "Front (Nude)",
  39340. image: {
  39341. source: "./media/characters/kingsley/front-nude.svg",
  39342. extra: 1803/1674,
  39343. bottom: 127/1930
  39344. }
  39345. },
  39346. },
  39347. [
  39348. {
  39349. name: "Normal",
  39350. height: math.unit(11 + 9/12, "feet"),
  39351. default: true
  39352. },
  39353. ]
  39354. ))
  39355. characterMakers.push(() => makeCharacter(
  39356. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39357. {
  39358. side: {
  39359. height: math.unit(9, "feet"),
  39360. name: "Side",
  39361. image: {
  39362. source: "./media/characters/rymel/side.svg",
  39363. extra: 792/469,
  39364. bottom: 121/913
  39365. }
  39366. },
  39367. maw: {
  39368. height: math.unit(2.4, "meters"),
  39369. name: "Maw",
  39370. image: {
  39371. source: "./media/characters/rymel/maw.svg"
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "House Drake",
  39378. height: math.unit(2, "feet")
  39379. },
  39380. {
  39381. name: "Reduced",
  39382. height: math.unit(4.5, "feet")
  39383. },
  39384. {
  39385. name: "Normal",
  39386. height: math.unit(9, "feet"),
  39387. default: true
  39388. },
  39389. ]
  39390. ))
  39391. characterMakers.push(() => makeCharacter(
  39392. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39393. {
  39394. front: {
  39395. height: math.unit(1.74, "meters"),
  39396. weight: math.unit(55, "kg"),
  39397. name: "Front",
  39398. image: {
  39399. source: "./media/characters/rubus/front.svg",
  39400. extra: 1894/1742,
  39401. bottom: 44/1938
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Normal",
  39408. height: math.unit(1.74, "meters"),
  39409. default: true
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39415. {
  39416. front: {
  39417. height: math.unit(5 + 2/12, "feet"),
  39418. weight: math.unit(112, "lb"),
  39419. name: "Front",
  39420. image: {
  39421. source: "./media/characters/cassie-kingston/front.svg",
  39422. extra: 1438/1390,
  39423. bottom: 47/1485
  39424. }
  39425. },
  39426. },
  39427. [
  39428. {
  39429. name: "Normal",
  39430. height: math.unit(5 + 2/12, "feet"),
  39431. default: true
  39432. },
  39433. {
  39434. name: "Macro",
  39435. height: math.unit(128, "feet")
  39436. },
  39437. {
  39438. name: "Megamacro",
  39439. height: math.unit(2.56, "miles")
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(7, "feet"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/fox/front.svg",
  39451. extra: 1798/1703,
  39452. bottom: 55/1853
  39453. }
  39454. },
  39455. back: {
  39456. height: math.unit(7, "feet"),
  39457. name: "Back",
  39458. image: {
  39459. source: "./media/characters/fox/back.svg",
  39460. extra: 1748/1649,
  39461. bottom: 32/1780
  39462. }
  39463. },
  39464. head: {
  39465. height: math.unit(1.95, "feet"),
  39466. name: "Head",
  39467. image: {
  39468. source: "./media/characters/fox/head.svg"
  39469. }
  39470. },
  39471. dick: {
  39472. height: math.unit(1.33, "feet"),
  39473. name: "Dick",
  39474. image: {
  39475. source: "./media/characters/fox/dick.svg"
  39476. }
  39477. },
  39478. foot: {
  39479. height: math.unit(1, "feet"),
  39480. name: "Foot",
  39481. image: {
  39482. source: "./media/characters/fox/foot.svg"
  39483. }
  39484. },
  39485. paw: {
  39486. height: math.unit(0.92, "feet"),
  39487. name: "Paw",
  39488. image: {
  39489. source: "./media/characters/fox/paw.svg"
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Small",
  39496. height: math.unit(3, "inches")
  39497. },
  39498. {
  39499. name: "\"Realistic\"",
  39500. height: math.unit(7, "feet")
  39501. },
  39502. {
  39503. name: "Normal",
  39504. height: math.unit(150, "feet"),
  39505. default: true
  39506. },
  39507. {
  39508. name: "BIG",
  39509. height: math.unit(1200, "feet")
  39510. },
  39511. {
  39512. name: "👀",
  39513. height: math.unit(5, "miles")
  39514. },
  39515. {
  39516. name: "👀👀👀",
  39517. height: math.unit(64, "miles")
  39518. },
  39519. ]
  39520. ))
  39521. characterMakers.push(() => makeCharacter(
  39522. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39523. {
  39524. front: {
  39525. height: math.unit(625, "feet"),
  39526. name: "Front",
  39527. image: {
  39528. source: "./media/characters/asonja-rossa/front.svg",
  39529. extra: 1833/1686,
  39530. bottom: 24/1857
  39531. }
  39532. },
  39533. back: {
  39534. height: math.unit(625, "feet"),
  39535. name: "Back",
  39536. image: {
  39537. source: "./media/characters/asonja-rossa/back.svg",
  39538. extra: 1852/1753,
  39539. bottom: 26/1878
  39540. }
  39541. },
  39542. },
  39543. [
  39544. {
  39545. name: "Macro",
  39546. height: math.unit(625, "feet"),
  39547. default: true
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39553. {
  39554. side: {
  39555. height: math.unit(8, "feet"),
  39556. name: "Side",
  39557. image: {
  39558. source: "./media/characters/rezukii/side.svg",
  39559. extra: 979/542,
  39560. bottom: 87/1066
  39561. }
  39562. },
  39563. sitting: {
  39564. height: math.unit(14.6, "feet"),
  39565. name: "Sitting",
  39566. image: {
  39567. source: "./media/characters/rezukii/sitting.svg",
  39568. extra: 1023/813,
  39569. bottom: 45/1068
  39570. }
  39571. },
  39572. },
  39573. [
  39574. {
  39575. name: "Tiny",
  39576. height: math.unit(2, "feet")
  39577. },
  39578. {
  39579. name: "Smol",
  39580. height: math.unit(4, "feet")
  39581. },
  39582. {
  39583. name: "Normal",
  39584. height: math.unit(8, "feet"),
  39585. default: true
  39586. },
  39587. {
  39588. name: "Big",
  39589. height: math.unit(12, "feet")
  39590. },
  39591. {
  39592. name: "Macro",
  39593. height: math.unit(30, "feet")
  39594. },
  39595. ]
  39596. ))
  39597. characterMakers.push(() => makeCharacter(
  39598. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39599. {
  39600. front: {
  39601. height: math.unit(14, "feet"),
  39602. weight: math.unit(9.5, "tonnes"),
  39603. name: "Front",
  39604. image: {
  39605. source: "./media/characters/dawnheart/front.svg",
  39606. extra: 2792/2675,
  39607. bottom: 64/2856
  39608. }
  39609. },
  39610. },
  39611. [
  39612. {
  39613. name: "Normal",
  39614. height: math.unit(14, "feet"),
  39615. default: true
  39616. },
  39617. ]
  39618. ))
  39619. characterMakers.push(() => makeCharacter(
  39620. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39621. {
  39622. front: {
  39623. height: math.unit(1.7, "m"),
  39624. name: "Front",
  39625. image: {
  39626. source: "./media/characters/gladi/front.svg",
  39627. extra: 1460/1362,
  39628. bottom: 19/1479
  39629. }
  39630. },
  39631. back: {
  39632. height: math.unit(1.7, "m"),
  39633. name: "Back",
  39634. image: {
  39635. source: "./media/characters/gladi/back.svg",
  39636. extra: 1459/1357,
  39637. bottom: 12/1471
  39638. }
  39639. },
  39640. feral: {
  39641. height: math.unit(2.05, "m"),
  39642. name: "Feral",
  39643. image: {
  39644. source: "./media/characters/gladi/feral.svg",
  39645. extra: 821/557,
  39646. bottom: 91/912
  39647. }
  39648. },
  39649. },
  39650. [
  39651. {
  39652. name: "Shortest",
  39653. height: math.unit(70, "cm")
  39654. },
  39655. {
  39656. name: "Normal",
  39657. height: math.unit(1.7, "m")
  39658. },
  39659. {
  39660. name: "Macro",
  39661. height: math.unit(10, "m"),
  39662. default: true
  39663. },
  39664. {
  39665. name: "Tallest",
  39666. height: math.unit(200, "m")
  39667. },
  39668. ]
  39669. ))
  39670. characterMakers.push(() => makeCharacter(
  39671. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39672. {
  39673. front: {
  39674. height: math.unit(5 + 7/12, "feet"),
  39675. weight: math.unit(2, "tons"),
  39676. name: "Front",
  39677. image: {
  39678. source: "./media/characters/erdno/front.svg",
  39679. extra: 1234/1129,
  39680. bottom: 35/1269
  39681. }
  39682. },
  39683. angled: {
  39684. height: math.unit(5 + 7/12, "feet"),
  39685. weight: math.unit(2, "tons"),
  39686. name: "Angled",
  39687. image: {
  39688. source: "./media/characters/erdno/angled.svg",
  39689. extra: 1185/1139,
  39690. bottom: 36/1221
  39691. }
  39692. },
  39693. side: {
  39694. height: math.unit(5 + 7/12, "feet"),
  39695. weight: math.unit(2, "tons"),
  39696. name: "Side",
  39697. image: {
  39698. source: "./media/characters/erdno/side.svg",
  39699. extra: 1191/1144,
  39700. bottom: 40/1231
  39701. }
  39702. },
  39703. back: {
  39704. height: math.unit(5 + 7/12, "feet"),
  39705. weight: math.unit(2, "tons"),
  39706. name: "Back",
  39707. image: {
  39708. source: "./media/characters/erdno/back.svg",
  39709. extra: 1202/1146,
  39710. bottom: 17/1219
  39711. }
  39712. },
  39713. frontNsfw: {
  39714. height: math.unit(5 + 7/12, "feet"),
  39715. weight: math.unit(2, "tons"),
  39716. name: "Front (NSFW)",
  39717. image: {
  39718. source: "./media/characters/erdno/front-nsfw.svg",
  39719. extra: 1234/1129,
  39720. bottom: 35/1269
  39721. }
  39722. },
  39723. angledNsfw: {
  39724. height: math.unit(5 + 7/12, "feet"),
  39725. weight: math.unit(2, "tons"),
  39726. name: "Angled (NSFW)",
  39727. image: {
  39728. source: "./media/characters/erdno/angled-nsfw.svg",
  39729. extra: 1185/1139,
  39730. bottom: 36/1221
  39731. }
  39732. },
  39733. sideNsfw: {
  39734. height: math.unit(5 + 7/12, "feet"),
  39735. weight: math.unit(2, "tons"),
  39736. name: "Side (NSFW)",
  39737. image: {
  39738. source: "./media/characters/erdno/side-nsfw.svg",
  39739. extra: 1191/1144,
  39740. bottom: 40/1231
  39741. }
  39742. },
  39743. backNsfw: {
  39744. height: math.unit(5 + 7/12, "feet"),
  39745. weight: math.unit(2, "tons"),
  39746. name: "Back (NSFW)",
  39747. image: {
  39748. source: "./media/characters/erdno/back-nsfw.svg",
  39749. extra: 1202/1146,
  39750. bottom: 17/1219
  39751. }
  39752. },
  39753. frontHyper: {
  39754. height: math.unit(5 + 7/12, "feet"),
  39755. weight: math.unit(2, "tons"),
  39756. name: "Front (Hyper)",
  39757. image: {
  39758. source: "./media/characters/erdno/front-hyper.svg",
  39759. extra: 1298/1136,
  39760. bottom: 35/1333
  39761. }
  39762. },
  39763. },
  39764. [
  39765. {
  39766. name: "Normal",
  39767. height: math.unit(5 + 7/12, "feet"),
  39768. default: true
  39769. },
  39770. {
  39771. name: "Big",
  39772. height: math.unit(5.7, "meters")
  39773. },
  39774. {
  39775. name: "Macro",
  39776. height: math.unit(5.7, "kilometers")
  39777. },
  39778. {
  39779. name: "Megamacro",
  39780. height: math.unit(5.7, "earths")
  39781. },
  39782. ]
  39783. ))
  39784. characterMakers.push(() => makeCharacter(
  39785. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39786. {
  39787. front: {
  39788. height: math.unit(5 + 10/12, "feet"),
  39789. weight: math.unit(150, "lb"),
  39790. name: "Front",
  39791. image: {
  39792. source: "./media/characters/jamie/front.svg",
  39793. extra: 1908/1768,
  39794. bottom: 19/1927
  39795. }
  39796. },
  39797. },
  39798. [
  39799. {
  39800. name: "Minimum",
  39801. height: math.unit(2, "cm")
  39802. },
  39803. {
  39804. name: "Micro",
  39805. height: math.unit(3, "inches")
  39806. },
  39807. {
  39808. name: "Normal",
  39809. height: math.unit(5 + 10/12, "feet"),
  39810. default: true
  39811. },
  39812. {
  39813. name: "Macro",
  39814. height: math.unit(150, "feet")
  39815. },
  39816. {
  39817. name: "Megamacro",
  39818. height: math.unit(10000, "m")
  39819. },
  39820. ]
  39821. ))
  39822. characterMakers.push(() => makeCharacter(
  39823. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39824. {
  39825. front: {
  39826. height: math.unit(2, "meters"),
  39827. weight: math.unit(100, "kg"),
  39828. name: "Front",
  39829. image: {
  39830. source: "./media/characters/shiron/front.svg",
  39831. extra: 2103/1985,
  39832. bottom: 98/2201
  39833. }
  39834. },
  39835. back: {
  39836. height: math.unit(2, "meters"),
  39837. weight: math.unit(100, "kg"),
  39838. name: "Back",
  39839. image: {
  39840. source: "./media/characters/shiron/back.svg",
  39841. extra: 2110/2015,
  39842. bottom: 89/2199
  39843. }
  39844. },
  39845. hand: {
  39846. height: math.unit(0.96, "feet"),
  39847. name: "Hand",
  39848. image: {
  39849. source: "./media/characters/shiron/hand.svg"
  39850. }
  39851. },
  39852. foot: {
  39853. height: math.unit(1.464, "feet"),
  39854. name: "Foot",
  39855. image: {
  39856. source: "./media/characters/shiron/foot.svg"
  39857. }
  39858. },
  39859. },
  39860. [
  39861. {
  39862. name: "Normal",
  39863. height: math.unit(2, "meters")
  39864. },
  39865. {
  39866. name: "Macro",
  39867. height: math.unit(500, "meters"),
  39868. default: true
  39869. },
  39870. {
  39871. name: "Megamacro",
  39872. height: math.unit(20, "km")
  39873. },
  39874. ]
  39875. ))
  39876. characterMakers.push(() => makeCharacter(
  39877. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39878. {
  39879. front: {
  39880. height: math.unit(6, "feet"),
  39881. name: "Front",
  39882. image: {
  39883. source: "./media/characters/sam/front.svg",
  39884. extra: 849/826,
  39885. bottom: 19/868
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Normal",
  39892. height: math.unit(6, "feet"),
  39893. default: true
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39899. {
  39900. front: {
  39901. height: math.unit(8 + 4/12, "feet"),
  39902. weight: math.unit(122, "kg"),
  39903. name: "Front",
  39904. image: {
  39905. source: "./media/characters/namori-kurogawa/front.svg",
  39906. extra: 1894/1576,
  39907. bottom: 34/1928
  39908. }
  39909. },
  39910. },
  39911. [
  39912. {
  39913. name: "Normal",
  39914. height: math.unit(8 + 4/12, "feet"),
  39915. default: true
  39916. },
  39917. ]
  39918. ))
  39919. characterMakers.push(() => makeCharacter(
  39920. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39921. {
  39922. front: {
  39923. height: math.unit(9, "feet"),
  39924. weight: math.unit(621, "lb"),
  39925. name: "Front",
  39926. image: {
  39927. source: "./media/characters/unmru/front.svg",
  39928. extra: 1853/1747,
  39929. bottom: 73/1926
  39930. }
  39931. },
  39932. side: {
  39933. height: math.unit(9, "feet"),
  39934. weight: math.unit(621, "lb"),
  39935. name: "Side",
  39936. image: {
  39937. source: "./media/characters/unmru/side.svg",
  39938. extra: 1781/1671,
  39939. bottom: 127/1908
  39940. }
  39941. },
  39942. back: {
  39943. height: math.unit(9, "feet"),
  39944. weight: math.unit(621, "lb"),
  39945. name: "Back",
  39946. image: {
  39947. source: "./media/characters/unmru/back.svg",
  39948. extra: 1894/1765,
  39949. bottom: 75/1969
  39950. }
  39951. },
  39952. dick: {
  39953. height: math.unit(3, "feet"),
  39954. weight: math.unit(35, "lb"),
  39955. name: "Dick",
  39956. image: {
  39957. source: "./media/characters/unmru/dick.svg"
  39958. }
  39959. },
  39960. },
  39961. [
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(9, "feet")
  39965. },
  39966. {
  39967. name: "Natural",
  39968. height: math.unit(27, "feet"),
  39969. default: true
  39970. },
  39971. {
  39972. name: "Giant",
  39973. height: math.unit(90, "feet")
  39974. },
  39975. {
  39976. name: "Kaiju",
  39977. height: math.unit(270, "feet")
  39978. },
  39979. {
  39980. name: "Macro",
  39981. height: math.unit(900, "feet")
  39982. },
  39983. {
  39984. name: "Macro+",
  39985. height: math.unit(2700, "feet")
  39986. },
  39987. {
  39988. name: "Megamacro",
  39989. height: math.unit(9000, "feet")
  39990. },
  39991. {
  39992. name: "City-Crushing",
  39993. height: math.unit(27000, "feet")
  39994. },
  39995. {
  39996. name: "Mountain-Mashing",
  39997. height: math.unit(90000, "feet")
  39998. },
  39999. {
  40000. name: "Earth-Eclipsing",
  40001. height: math.unit(2.7e8, "feet")
  40002. },
  40003. {
  40004. name: "Sol-Swallowing",
  40005. height: math.unit(9e10, "feet")
  40006. },
  40007. {
  40008. name: "Majoris-Munching",
  40009. height: math.unit(2.7e13, "feet")
  40010. },
  40011. ]
  40012. ))
  40013. characterMakers.push(() => makeCharacter(
  40014. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40015. {
  40016. front: {
  40017. height: math.unit(1, "inch"),
  40018. name: "Front",
  40019. image: {
  40020. source: "./media/characters/squeaks-mouse/front.svg",
  40021. extra: 352/308,
  40022. bottom: 25/377
  40023. }
  40024. },
  40025. },
  40026. [
  40027. {
  40028. name: "Micro",
  40029. height: math.unit(1, "inch"),
  40030. default: true
  40031. },
  40032. ]
  40033. ))
  40034. characterMakers.push(() => makeCharacter(
  40035. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40036. {
  40037. side: {
  40038. height: math.unit(35, "feet"),
  40039. name: "Side",
  40040. image: {
  40041. source: "./media/characters/sayko/side.svg",
  40042. extra: 1697/1021,
  40043. bottom: 82/1779
  40044. }
  40045. },
  40046. head: {
  40047. height: math.unit(16, "feet"),
  40048. name: "Head",
  40049. image: {
  40050. source: "./media/characters/sayko/head.svg"
  40051. }
  40052. },
  40053. forepaw: {
  40054. height: math.unit(7.85, "feet"),
  40055. name: "Forepaw",
  40056. image: {
  40057. source: "./media/characters/sayko/forepaw.svg"
  40058. }
  40059. },
  40060. hindpaw: {
  40061. height: math.unit(8.8, "feet"),
  40062. name: "Hindpaw",
  40063. image: {
  40064. source: "./media/characters/sayko/hindpaw.svg"
  40065. }
  40066. },
  40067. },
  40068. [
  40069. {
  40070. name: "Normal",
  40071. height: math.unit(35, "feet"),
  40072. default: true
  40073. },
  40074. {
  40075. name: "Colossus",
  40076. height: math.unit(100, "meters")
  40077. },
  40078. {
  40079. name: "\"Small\" Deity",
  40080. height: math.unit(1, "km")
  40081. },
  40082. {
  40083. name: "\"Large\" Deity",
  40084. height: math.unit(15, "km")
  40085. },
  40086. ]
  40087. ))
  40088. characterMakers.push(() => makeCharacter(
  40089. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40090. {
  40091. front: {
  40092. height: math.unit(6, "feet"),
  40093. weight: math.unit(250, "lb"),
  40094. name: "Front",
  40095. image: {
  40096. source: "./media/characters/mukiro/front.svg",
  40097. extra: 1368/1310,
  40098. bottom: 34/1402
  40099. }
  40100. },
  40101. },
  40102. [
  40103. {
  40104. name: "Normal",
  40105. height: math.unit(6, "feet"),
  40106. default: true
  40107. },
  40108. ]
  40109. ))
  40110. characterMakers.push(() => makeCharacter(
  40111. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40112. {
  40113. front: {
  40114. height: math.unit(12 + 4/12, "feet"),
  40115. name: "Front",
  40116. image: {
  40117. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40118. extra: 1346/1311,
  40119. bottom: 65/1411
  40120. }
  40121. },
  40122. },
  40123. [
  40124. {
  40125. name: "Base",
  40126. height: math.unit(12 + 4/12, "feet"),
  40127. default: true
  40128. },
  40129. {
  40130. name: "Macro",
  40131. height: math.unit(150, "feet")
  40132. },
  40133. {
  40134. name: "Mega",
  40135. height: math.unit(2, "miles")
  40136. },
  40137. {
  40138. name: "Demi God",
  40139. height: math.unit(4, "AU")
  40140. },
  40141. {
  40142. name: "God Size",
  40143. height: math.unit(1, "universe")
  40144. },
  40145. ]
  40146. ))
  40147. characterMakers.push(() => makeCharacter(
  40148. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40149. {
  40150. front: {
  40151. height: math.unit(3 + 3/12, "feet"),
  40152. weight: math.unit(88, "lb"),
  40153. name: "Front",
  40154. image: {
  40155. source: "./media/characters/trey/front.svg",
  40156. extra: 1815/1509,
  40157. bottom: 60/1875
  40158. }
  40159. },
  40160. },
  40161. [
  40162. {
  40163. name: "Normal",
  40164. height: math.unit(3 + 3/12, "feet"),
  40165. default: true
  40166. },
  40167. ]
  40168. ))
  40169. characterMakers.push(() => makeCharacter(
  40170. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40171. {
  40172. front: {
  40173. height: math.unit(4, "meters"),
  40174. name: "Front",
  40175. image: {
  40176. source: "./media/characters/adelonda/front.svg",
  40177. extra: 1077/982,
  40178. bottom: 39/1116
  40179. }
  40180. },
  40181. back: {
  40182. height: math.unit(4, "meters"),
  40183. name: "Back",
  40184. image: {
  40185. source: "./media/characters/adelonda/back.svg",
  40186. extra: 1105/1003,
  40187. bottom: 25/1130
  40188. }
  40189. },
  40190. feral: {
  40191. height: math.unit(40/1.5, "meters"),
  40192. name: "Feral",
  40193. image: {
  40194. source: "./media/characters/adelonda/feral.svg",
  40195. extra: 597/271,
  40196. bottom: 387/984
  40197. }
  40198. },
  40199. },
  40200. [
  40201. {
  40202. name: "Normal",
  40203. height: math.unit(4, "meters"),
  40204. default: true
  40205. },
  40206. ]
  40207. ))
  40208. characterMakers.push(() => makeCharacter(
  40209. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40210. {
  40211. front: {
  40212. height: math.unit(8 + 4/12, "feet"),
  40213. weight: math.unit(670, "lb"),
  40214. name: "Front",
  40215. image: {
  40216. source: "./media/characters/acadiel/front.svg",
  40217. extra: 1901/1595,
  40218. bottom: 142/2043
  40219. }
  40220. },
  40221. },
  40222. [
  40223. {
  40224. name: "Normal",
  40225. height: math.unit(8 + 4/12, "feet"),
  40226. default: true
  40227. },
  40228. {
  40229. name: "Macro",
  40230. height: math.unit(200, "feet")
  40231. },
  40232. ]
  40233. ))
  40234. characterMakers.push(() => makeCharacter(
  40235. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40236. {
  40237. front: {
  40238. height: math.unit(6 + 2/12, "feet"),
  40239. weight: math.unit(185, "lb"),
  40240. name: "Front",
  40241. image: {
  40242. source: "./media/characters/kayne-ein/front.svg",
  40243. extra: 1780/1560,
  40244. bottom: 81/1861
  40245. }
  40246. },
  40247. },
  40248. [
  40249. {
  40250. name: "Normal",
  40251. height: math.unit(6 + 2/12, "feet"),
  40252. default: true
  40253. },
  40254. {
  40255. name: "Transformation Stage",
  40256. height: math.unit(15, "feet")
  40257. },
  40258. {
  40259. name: "Macro",
  40260. height: math.unit(150, "feet")
  40261. },
  40262. {
  40263. name: "Earth's Shadow",
  40264. height: math.unit(6200, "miles")
  40265. },
  40266. {
  40267. name: "Universal Demon",
  40268. height: math.unit(28e9, "parsecs")
  40269. },
  40270. {
  40271. name: "Multiverse God",
  40272. height: math.unit(3, "multiverses")
  40273. },
  40274. ]
  40275. ))
  40276. characterMakers.push(() => makeCharacter(
  40277. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40278. {
  40279. front: {
  40280. height: math.unit(5 + 5/12, "feet"),
  40281. name: "Front",
  40282. image: {
  40283. source: "./media/characters/fawn/front.svg",
  40284. extra: 1873/1731,
  40285. bottom: 95/1968
  40286. }
  40287. },
  40288. back: {
  40289. height: math.unit(5 + 5/12, "feet"),
  40290. name: "Back",
  40291. image: {
  40292. source: "./media/characters/fawn/back.svg",
  40293. extra: 1813/1700,
  40294. bottom: 14/1827
  40295. }
  40296. },
  40297. hoof: {
  40298. height: math.unit(1.45, "feet"),
  40299. name: "Hoof",
  40300. image: {
  40301. source: "./media/characters/fawn/hoof.svg"
  40302. }
  40303. },
  40304. },
  40305. [
  40306. {
  40307. name: "Normal",
  40308. height: math.unit(5 + 5/12, "feet"),
  40309. default: true
  40310. },
  40311. ]
  40312. ))
  40313. characterMakers.push(() => makeCharacter(
  40314. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40315. {
  40316. front: {
  40317. height: math.unit(2 + 5/12, "feet"),
  40318. name: "Front",
  40319. image: {
  40320. source: "./media/characters/orion/front.svg",
  40321. extra: 1366/1304,
  40322. bottom: 43/1409
  40323. }
  40324. },
  40325. paw: {
  40326. height: math.unit(0.52, "feet"),
  40327. name: "Paw",
  40328. image: {
  40329. source: "./media/characters/orion/paw.svg"
  40330. }
  40331. },
  40332. },
  40333. [
  40334. {
  40335. name: "Normal",
  40336. height: math.unit(2 + 5/12, "feet"),
  40337. default: true
  40338. },
  40339. ]
  40340. ))
  40341. characterMakers.push(() => makeCharacter(
  40342. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40343. {
  40344. front: {
  40345. height: math.unit(5 + 10/12, "feet"),
  40346. name: "Front",
  40347. image: {
  40348. source: "./media/characters/vera/front.svg",
  40349. extra: 1680/1575,
  40350. bottom: 49/1729
  40351. }
  40352. },
  40353. back: {
  40354. height: math.unit(5 + 10/12, "feet"),
  40355. name: "Back",
  40356. image: {
  40357. source: "./media/characters/vera/back.svg",
  40358. extra: 1700/1588,
  40359. bottom: 18/1718
  40360. }
  40361. },
  40362. arcanine: {
  40363. height: math.unit(6 + 8/12, "feet"),
  40364. name: "Arcanine",
  40365. image: {
  40366. source: "./media/characters/vera/arcanine.svg",
  40367. extra: 1590/1511,
  40368. bottom: 71/1661
  40369. }
  40370. },
  40371. maw: {
  40372. height: math.unit(0.82, "feet"),
  40373. name: "Maw",
  40374. image: {
  40375. source: "./media/characters/vera/maw.svg"
  40376. }
  40377. },
  40378. mawArcanine: {
  40379. height: math.unit(0.97, "feet"),
  40380. name: "Maw (Arcanine)",
  40381. image: {
  40382. source: "./media/characters/vera/maw-arcanine.svg"
  40383. }
  40384. },
  40385. paw: {
  40386. height: math.unit(0.75, "feet"),
  40387. name: "Paw",
  40388. image: {
  40389. source: "./media/characters/vera/paw.svg"
  40390. }
  40391. },
  40392. pawprint: {
  40393. height: math.unit(0.52, "feet"),
  40394. name: "Pawprint",
  40395. image: {
  40396. source: "./media/characters/vera/pawprint.svg"
  40397. }
  40398. },
  40399. },
  40400. [
  40401. {
  40402. name: "Normal",
  40403. height: math.unit(5 + 10/12, "feet"),
  40404. default: true
  40405. },
  40406. {
  40407. name: "Macro",
  40408. height: math.unit(75, "feet")
  40409. },
  40410. ]
  40411. ))
  40412. characterMakers.push(() => makeCharacter(
  40413. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40414. {
  40415. front: {
  40416. height: math.unit(4, "feet"),
  40417. weight: math.unit(40, "lb"),
  40418. name: "Front",
  40419. image: {
  40420. source: "./media/characters/orvan-rabbit/front.svg",
  40421. extra: 1896/1642,
  40422. bottom: 29/1925
  40423. }
  40424. },
  40425. },
  40426. [
  40427. {
  40428. name: "Normal",
  40429. height: math.unit(4, "feet"),
  40430. default: true
  40431. },
  40432. ]
  40433. ))
  40434. characterMakers.push(() => makeCharacter(
  40435. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40436. {
  40437. front: {
  40438. height: math.unit(6, "feet"),
  40439. weight: math.unit(168, "lb"),
  40440. name: "Front",
  40441. image: {
  40442. source: "./media/characters/lisa/front.svg",
  40443. extra: 2065/1867,
  40444. bottom: 46/2111
  40445. }
  40446. },
  40447. back: {
  40448. height: math.unit(6, "feet"),
  40449. weight: math.unit(168, "lb"),
  40450. name: "Back",
  40451. image: {
  40452. source: "./media/characters/lisa/back.svg",
  40453. extra: 1982/1838,
  40454. bottom: 29/2011
  40455. }
  40456. },
  40457. maw: {
  40458. height: math.unit(0.81, "feet"),
  40459. name: "Maw",
  40460. image: {
  40461. source: "./media/characters/lisa/maw.svg"
  40462. }
  40463. },
  40464. paw: {
  40465. height: math.unit(0.9, "feet"),
  40466. name: "Paw",
  40467. image: {
  40468. source: "./media/characters/lisa/paw.svg"
  40469. }
  40470. },
  40471. caribousune: {
  40472. height: math.unit(7 + 2/12, "feet"),
  40473. weight: math.unit(268, "lb"),
  40474. name: "Caribousune",
  40475. image: {
  40476. source: "./media/characters/lisa/caribousune.svg",
  40477. extra: 1843/1633,
  40478. bottom: 29/1872
  40479. }
  40480. },
  40481. frontCaribousune: {
  40482. height: math.unit(7 + 2/12, "feet"),
  40483. weight: math.unit(268, "lb"),
  40484. name: "Front (Caribousune)",
  40485. image: {
  40486. source: "./media/characters/lisa/front-caribousune.svg",
  40487. extra: 1818/1638,
  40488. bottom: 52/1870
  40489. }
  40490. },
  40491. sideCaribousune: {
  40492. height: math.unit(7 + 2/12, "feet"),
  40493. weight: math.unit(268, "lb"),
  40494. name: "Side (Caribousune)",
  40495. image: {
  40496. source: "./media/characters/lisa/side-caribousune.svg",
  40497. extra: 1851/1635,
  40498. bottom: 16/1867
  40499. }
  40500. },
  40501. backCaribousune: {
  40502. height: math.unit(7 + 2/12, "feet"),
  40503. weight: math.unit(268, "lb"),
  40504. name: "Back (Caribousune)",
  40505. image: {
  40506. source: "./media/characters/lisa/back-caribousune.svg",
  40507. extra: 1801/1604,
  40508. bottom: 44/1845
  40509. }
  40510. },
  40511. caribou: {
  40512. height: math.unit(7 + 2/12, "feet"),
  40513. weight: math.unit(268, "lb"),
  40514. name: "Caribou",
  40515. image: {
  40516. source: "./media/characters/lisa/caribou.svg",
  40517. extra: 1843/1633,
  40518. bottom: 29/1872
  40519. }
  40520. },
  40521. frontCaribou: {
  40522. height: math.unit(7 + 2/12, "feet"),
  40523. weight: math.unit(268, "lb"),
  40524. name: "Front (Caribou)",
  40525. image: {
  40526. source: "./media/characters/lisa/front-caribou.svg",
  40527. extra: 1818/1638,
  40528. bottom: 52/1870
  40529. }
  40530. },
  40531. sideCaribou: {
  40532. height: math.unit(7 + 2/12, "feet"),
  40533. weight: math.unit(268, "lb"),
  40534. name: "Side (Caribou)",
  40535. image: {
  40536. source: "./media/characters/lisa/side-caribou.svg",
  40537. extra: 1851/1635,
  40538. bottom: 16/1867
  40539. }
  40540. },
  40541. backCaribou: {
  40542. height: math.unit(7 + 2/12, "feet"),
  40543. weight: math.unit(268, "lb"),
  40544. name: "Back (Caribou)",
  40545. image: {
  40546. source: "./media/characters/lisa/back-caribou.svg",
  40547. extra: 1801/1604,
  40548. bottom: 44/1845
  40549. }
  40550. },
  40551. mawCaribou: {
  40552. height: math.unit(1.45, "feet"),
  40553. name: "Maw (Caribou)",
  40554. image: {
  40555. source: "./media/characters/lisa/maw-caribou.svg"
  40556. }
  40557. },
  40558. mawCaribousune: {
  40559. height: math.unit(1.45, "feet"),
  40560. name: "Maw (Caribousune)",
  40561. image: {
  40562. source: "./media/characters/lisa/maw-caribousune.svg"
  40563. }
  40564. },
  40565. pawCaribousune: {
  40566. height: math.unit(1.61, "feet"),
  40567. name: "Paw (Caribou)",
  40568. image: {
  40569. source: "./media/characters/lisa/paw-caribousune.svg"
  40570. }
  40571. },
  40572. },
  40573. [
  40574. {
  40575. name: "Normal",
  40576. height: math.unit(6, "feet")
  40577. },
  40578. {
  40579. name: "God Size",
  40580. height: math.unit(72, "feet"),
  40581. default: true
  40582. },
  40583. {
  40584. name: "Towering",
  40585. height: math.unit(288, "feet")
  40586. },
  40587. {
  40588. name: "City Size",
  40589. height: math.unit(48384, "feet")
  40590. },
  40591. {
  40592. name: "Continental",
  40593. height: math.unit(4200, "miles")
  40594. },
  40595. {
  40596. name: "Planet Eater",
  40597. height: math.unit(42, "earths")
  40598. },
  40599. {
  40600. name: "Star Swallower",
  40601. height: math.unit(42, "solarradii")
  40602. },
  40603. {
  40604. name: "System Swallower",
  40605. height: math.unit(84000, "AU")
  40606. },
  40607. {
  40608. name: "Galaxy Gobbler",
  40609. height: math.unit(42, "galaxies")
  40610. },
  40611. {
  40612. name: "Universe Devourer",
  40613. height: math.unit(42, "universes")
  40614. },
  40615. {
  40616. name: "Multiverse Muncher",
  40617. height: math.unit(42, "multiverses")
  40618. },
  40619. ]
  40620. ))
  40621. characterMakers.push(() => makeCharacter(
  40622. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40623. {
  40624. front: {
  40625. height: math.unit(36, "feet"),
  40626. name: "Front",
  40627. image: {
  40628. source: "./media/characters/shadow-rat/front.svg",
  40629. extra: 1845/1758,
  40630. bottom: 83/1928
  40631. }
  40632. },
  40633. },
  40634. [
  40635. {
  40636. name: "Macro",
  40637. height: math.unit(36, "feet"),
  40638. default: true
  40639. },
  40640. ]
  40641. ))
  40642. characterMakers.push(() => makeCharacter(
  40643. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40644. {
  40645. side: {
  40646. height: math.unit(8, "feet"),
  40647. weight: math.unit(2630, "lb"),
  40648. name: "Side",
  40649. image: {
  40650. source: "./media/characters/torallia/side.svg",
  40651. extra: 2164/2021,
  40652. bottom: 371/2535
  40653. }
  40654. },
  40655. },
  40656. [
  40657. {
  40658. name: "Mortal Interaction",
  40659. height: math.unit(8, "feet")
  40660. },
  40661. {
  40662. name: "Natural",
  40663. height: math.unit(24, "feet"),
  40664. default: true
  40665. },
  40666. {
  40667. name: "Giant",
  40668. height: math.unit(80, "feet")
  40669. },
  40670. {
  40671. name: "Kaiju",
  40672. height: math.unit(240, "feet")
  40673. },
  40674. {
  40675. name: "Macro",
  40676. height: math.unit(800, "feet")
  40677. },
  40678. {
  40679. name: "Macro+",
  40680. height: math.unit(2400, "feet")
  40681. },
  40682. {
  40683. name: "Macro++",
  40684. height: math.unit(8000, "feet")
  40685. },
  40686. {
  40687. name: "City-Crushing",
  40688. height: math.unit(24000, "feet")
  40689. },
  40690. {
  40691. name: "Mountain-Mashing",
  40692. height: math.unit(80000, "feet")
  40693. },
  40694. {
  40695. name: "District Demolisher",
  40696. height: math.unit(240000, "feet")
  40697. },
  40698. {
  40699. name: "Tri-County Terror",
  40700. height: math.unit(800000, "feet")
  40701. },
  40702. {
  40703. name: "State Smasher",
  40704. height: math.unit(2.4e6, "feet")
  40705. },
  40706. {
  40707. name: "Nation Nemesis",
  40708. height: math.unit(8e6, "feet")
  40709. },
  40710. {
  40711. name: "Continent Cracker",
  40712. height: math.unit(2.4e7, "feet")
  40713. },
  40714. {
  40715. name: "Planet-Pillaging",
  40716. height: math.unit(8e7, "feet")
  40717. },
  40718. {
  40719. name: "Earth-Eclipsing",
  40720. height: math.unit(2.4e8, "feet")
  40721. },
  40722. {
  40723. name: "Jovian-Jostling",
  40724. height: math.unit(8e8, "feet")
  40725. },
  40726. {
  40727. name: "Gas Giant Gulper",
  40728. height: math.unit(2.4e9, "feet")
  40729. },
  40730. {
  40731. name: "Astral Annihilator",
  40732. height: math.unit(8e9, "feet")
  40733. },
  40734. {
  40735. name: "Celestial Conqueror",
  40736. height: math.unit(2.4e10, "feet")
  40737. },
  40738. {
  40739. name: "Sol-Swallowing",
  40740. height: math.unit(8e10, "feet")
  40741. },
  40742. {
  40743. name: "Hunter of the Heavens",
  40744. height: math.unit(2.4e13, "feet")
  40745. },
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40750. {
  40751. front: {
  40752. height: math.unit(6 + 8/12, "feet"),
  40753. weight: math.unit(250, "kilograms"),
  40754. volume: math.unit(28, "liters"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/rebecca-pawlson/front.svg",
  40758. extra: 1737/1596,
  40759. bottom: 107/1844
  40760. }
  40761. },
  40762. back: {
  40763. height: math.unit(6 + 8/12, "feet"),
  40764. weight: math.unit(250, "kilograms"),
  40765. volume: math.unit(28, "liters"),
  40766. name: "Back",
  40767. image: {
  40768. source: "./media/characters/rebecca-pawlson/back.svg",
  40769. extra: 1702/1523,
  40770. bottom: 86/1788
  40771. }
  40772. },
  40773. },
  40774. [
  40775. {
  40776. name: "Normal",
  40777. height: math.unit(6 + 8/12, "feet")
  40778. },
  40779. {
  40780. name: "Mini Macro",
  40781. height: math.unit(10, "feet"),
  40782. default: true
  40783. },
  40784. {
  40785. name: "Macro",
  40786. height: math.unit(100, "feet")
  40787. },
  40788. {
  40789. name: "Mega Macro",
  40790. height: math.unit(2500, "feet")
  40791. },
  40792. {
  40793. name: "Giga Macro",
  40794. height: math.unit(50, "miles")
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(7 + 6/12, "feet"),
  40803. weight: math.unit(600, "lb"),
  40804. name: "Front",
  40805. image: {
  40806. source: "./media/characters/moxie-nova/front.svg",
  40807. extra: 1734/1652,
  40808. bottom: 41/1775
  40809. }
  40810. },
  40811. },
  40812. [
  40813. {
  40814. name: "Normal",
  40815. height: math.unit(7 + 6/12, "feet"),
  40816. default: true
  40817. },
  40818. ]
  40819. ))
  40820. characterMakers.push(() => makeCharacter(
  40821. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40822. {
  40823. goat: {
  40824. height: math.unit(4, "feet"),
  40825. weight: math.unit(180, "lb"),
  40826. name: "Goat",
  40827. image: {
  40828. source: "./media/characters/tiffany/goat.svg",
  40829. extra: 1845/1595,
  40830. bottom: 106/1951
  40831. }
  40832. },
  40833. front: {
  40834. height: math.unit(5, "feet"),
  40835. weight: math.unit(150, "lb"),
  40836. name: "Foxcoon",
  40837. image: {
  40838. source: "./media/characters/tiffany/foxcoon.svg",
  40839. extra: 1941/1845,
  40840. bottom: 58/1999
  40841. }
  40842. },
  40843. },
  40844. [
  40845. {
  40846. name: "Normal",
  40847. height: math.unit(5, "feet"),
  40848. default: true
  40849. },
  40850. ]
  40851. ))
  40852. characterMakers.push(() => makeCharacter(
  40853. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40854. {
  40855. front: {
  40856. height: math.unit(8, "feet"),
  40857. weight: math.unit(300, "lb"),
  40858. name: "Front",
  40859. image: {
  40860. source: "./media/characters/raxinath/front.svg",
  40861. extra: 1407/1309,
  40862. bottom: 39/1446
  40863. }
  40864. },
  40865. back: {
  40866. height: math.unit(8, "feet"),
  40867. weight: math.unit(300, "lb"),
  40868. name: "Back",
  40869. image: {
  40870. source: "./media/characters/raxinath/back.svg",
  40871. extra: 1405/1315,
  40872. bottom: 9/1414
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Speck",
  40879. height: math.unit(0.5, "nm")
  40880. },
  40881. {
  40882. name: "Micro",
  40883. height: math.unit(3, "inches")
  40884. },
  40885. {
  40886. name: "Kobold",
  40887. height: math.unit(3, "feet")
  40888. },
  40889. {
  40890. name: "Normal",
  40891. height: math.unit(8, "feet"),
  40892. default: true
  40893. },
  40894. {
  40895. name: "Giant",
  40896. height: math.unit(50, "feet")
  40897. },
  40898. {
  40899. name: "Macro",
  40900. height: math.unit(1000, "feet")
  40901. },
  40902. {
  40903. name: "Megamacro",
  40904. height: math.unit(1, "mile")
  40905. },
  40906. ]
  40907. ))
  40908. characterMakers.push(() => makeCharacter(
  40909. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40910. {
  40911. front: {
  40912. height: math.unit(10, "feet"),
  40913. weight: math.unit(1442, "lb"),
  40914. name: "Front",
  40915. image: {
  40916. source: "./media/characters/mal-dragon/front.svg",
  40917. extra: 1515/1444,
  40918. bottom: 113/1628
  40919. }
  40920. },
  40921. back: {
  40922. height: math.unit(10, "feet"),
  40923. weight: math.unit(1442, "lb"),
  40924. name: "Back",
  40925. image: {
  40926. source: "./media/characters/mal-dragon/back.svg",
  40927. extra: 1527/1434,
  40928. bottom: 25/1552
  40929. }
  40930. },
  40931. },
  40932. [
  40933. {
  40934. name: "Mortal Interaction",
  40935. height: math.unit(10, "feet"),
  40936. default: true
  40937. },
  40938. {
  40939. name: "Large",
  40940. height: math.unit(30, "feet")
  40941. },
  40942. {
  40943. name: "Kaiju",
  40944. height: math.unit(300, "feet")
  40945. },
  40946. {
  40947. name: "Megamacro",
  40948. height: math.unit(10000, "feet")
  40949. },
  40950. {
  40951. name: "Continent Cracker",
  40952. height: math.unit(30000000, "feet")
  40953. },
  40954. {
  40955. name: "Sol-Swallowing",
  40956. height: math.unit(1e11, "feet")
  40957. },
  40958. {
  40959. name: "Light Universal",
  40960. height: math.unit(5, "universes")
  40961. },
  40962. {
  40963. name: "Universe Atoms",
  40964. height: math.unit(1.829e9, "universes")
  40965. },
  40966. {
  40967. name: "Light Multiversal",
  40968. height: math.unit(5, "multiverses")
  40969. },
  40970. {
  40971. name: "Multiverse Atoms",
  40972. height: math.unit(1.829e9, "multiverses")
  40973. },
  40974. {
  40975. name: "Fabric of Time",
  40976. height: math.unit(1e262, "multiverses")
  40977. },
  40978. ]
  40979. ))
  40980. characterMakers.push(() => makeCharacter(
  40981. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40982. {
  40983. front: {
  40984. height: math.unit(9, "feet"),
  40985. weight: math.unit(1050, "lb"),
  40986. name: "Front",
  40987. image: {
  40988. source: "./media/characters/tabitha/front.svg",
  40989. extra: 2083/1994,
  40990. bottom: 68/2151
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Baseline",
  40997. height: math.unit(9, "feet"),
  40998. default: true
  40999. },
  41000. {
  41001. name: "Giant",
  41002. height: math.unit(90, "feet")
  41003. },
  41004. {
  41005. name: "Macro",
  41006. height: math.unit(900, "feet")
  41007. },
  41008. {
  41009. name: "Megamacro",
  41010. height: math.unit(9000, "feet")
  41011. },
  41012. {
  41013. name: "City-Crushing",
  41014. height: math.unit(27000, "feet")
  41015. },
  41016. {
  41017. name: "Mountain-Mashing",
  41018. height: math.unit(90000, "feet")
  41019. },
  41020. {
  41021. name: "Nation Nemesis",
  41022. height: math.unit(9e6, "feet")
  41023. },
  41024. {
  41025. name: "Continent Cracker",
  41026. height: math.unit(27e6, "feet")
  41027. },
  41028. {
  41029. name: "Earth-Eclipsing",
  41030. height: math.unit(2.7e8, "feet")
  41031. },
  41032. {
  41033. name: "Gas Giant Gulper",
  41034. height: math.unit(2.7e9, "feet")
  41035. },
  41036. {
  41037. name: "Sol-Swallowing",
  41038. height: math.unit(9e10, "feet")
  41039. },
  41040. {
  41041. name: "Galaxy Gulper",
  41042. height: math.unit(9, "galaxies")
  41043. },
  41044. {
  41045. name: "Cosmos Churner",
  41046. height: math.unit(9, "universes")
  41047. },
  41048. ]
  41049. ))
  41050. characterMakers.push(() => makeCharacter(
  41051. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41052. {
  41053. front: {
  41054. height: math.unit(160, "cm"),
  41055. weight: math.unit(55, "kg"),
  41056. name: "Front",
  41057. image: {
  41058. source: "./media/characters/tow/front.svg",
  41059. extra: 1751/1722,
  41060. bottom: 74/1825
  41061. }
  41062. },
  41063. },
  41064. [
  41065. {
  41066. name: "Norm",
  41067. height: math.unit(160, "cm")
  41068. },
  41069. {
  41070. name: "Casual",
  41071. height: math.unit(3200, "m"),
  41072. default: true
  41073. },
  41074. {
  41075. name: "Show-Off",
  41076. height: math.unit(160, "km")
  41077. },
  41078. ]
  41079. ))
  41080. characterMakers.push(() => makeCharacter(
  41081. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41082. {
  41083. front: {
  41084. height: math.unit(7 + 11/12, "feet"),
  41085. weight: math.unit(342.8, "lb"),
  41086. name: "Front",
  41087. image: {
  41088. source: "./media/characters/vivian-orca-dragon/front.svg",
  41089. extra: 1890/1865,
  41090. bottom: 28/1918
  41091. }
  41092. },
  41093. },
  41094. [
  41095. {
  41096. name: "Micro",
  41097. height: math.unit(5, "inches")
  41098. },
  41099. {
  41100. name: "Normal",
  41101. height: math.unit(7 + 11/12, "feet"),
  41102. default: true
  41103. },
  41104. {
  41105. name: "Macro",
  41106. height: math.unit(395 + 7/12, "feet")
  41107. },
  41108. ]
  41109. ))
  41110. characterMakers.push(() => makeCharacter(
  41111. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41112. {
  41113. side: {
  41114. height: math.unit(10, "feet"),
  41115. weight: math.unit(1442, "lb"),
  41116. name: "Side",
  41117. image: {
  41118. source: "./media/characters/lotherakon/side.svg",
  41119. extra: 1604/1497,
  41120. bottom: 89/1693
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Mortal Interaction",
  41127. height: math.unit(10, "feet")
  41128. },
  41129. {
  41130. name: "Large",
  41131. height: math.unit(30, "feet"),
  41132. default: true
  41133. },
  41134. {
  41135. name: "Giant",
  41136. height: math.unit(100, "feet")
  41137. },
  41138. {
  41139. name: "Kaiju",
  41140. height: math.unit(300, "feet")
  41141. },
  41142. {
  41143. name: "Macro",
  41144. height: math.unit(1000, "feet")
  41145. },
  41146. {
  41147. name: "Macro+",
  41148. height: math.unit(3000, "feet")
  41149. },
  41150. {
  41151. name: "Megamacro",
  41152. height: math.unit(10000, "feet")
  41153. },
  41154. {
  41155. name: "City-Crushing",
  41156. height: math.unit(30000, "feet")
  41157. },
  41158. {
  41159. name: "Continent Cracker",
  41160. height: math.unit(30e6, "feet")
  41161. },
  41162. {
  41163. name: "Earth Eclipsing",
  41164. height: math.unit(3e8, "feet")
  41165. },
  41166. {
  41167. name: "Gas Giant Gulper",
  41168. height: math.unit(3e9, "feet")
  41169. },
  41170. {
  41171. name: "Sol-Swallowing",
  41172. height: math.unit(1e11, "feet")
  41173. },
  41174. {
  41175. name: "System Swallower",
  41176. height: math.unit(3e14, "feet")
  41177. },
  41178. {
  41179. name: "Galaxy Gulper",
  41180. height: math.unit(10, "galaxies")
  41181. },
  41182. {
  41183. name: "Light Universal",
  41184. height: math.unit(5, "universes")
  41185. },
  41186. {
  41187. name: "Universe Palm",
  41188. height: math.unit(20, "universes")
  41189. },
  41190. {
  41191. name: "Light Multiversal",
  41192. height: math.unit(5, "multiverses")
  41193. },
  41194. {
  41195. name: "Multiverse Palm",
  41196. height: math.unit(20, "multiverses")
  41197. },
  41198. {
  41199. name: "Inferno Incarnate",
  41200. height: math.unit(1e7, "multiverses")
  41201. },
  41202. ]
  41203. ))
  41204. characterMakers.push(() => makeCharacter(
  41205. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41206. {
  41207. front: {
  41208. height: math.unit(8, "feet"),
  41209. weight: math.unit(1200, "lb"),
  41210. name: "Front",
  41211. image: {
  41212. source: "./media/characters/malithee/front.svg",
  41213. extra: 1675/1640,
  41214. bottom: 162/1837
  41215. }
  41216. },
  41217. },
  41218. [
  41219. {
  41220. name: "Mortal Interaction",
  41221. height: math.unit(8, "feet"),
  41222. default: true
  41223. },
  41224. {
  41225. name: "Large",
  41226. height: math.unit(24, "feet")
  41227. },
  41228. {
  41229. name: "Kaiju",
  41230. height: math.unit(240, "feet")
  41231. },
  41232. {
  41233. name: "Megamacro",
  41234. height: math.unit(8000, "feet")
  41235. },
  41236. {
  41237. name: "Continent Cracker",
  41238. height: math.unit(24e6, "feet")
  41239. },
  41240. {
  41241. name: "Earth-Eclipsing",
  41242. height: math.unit(2.4e8, "feet")
  41243. },
  41244. {
  41245. name: "Sol-Swallowing",
  41246. height: math.unit(8e10, "feet")
  41247. },
  41248. {
  41249. name: "Galaxy Gulper",
  41250. height: math.unit(8, "galaxies")
  41251. },
  41252. {
  41253. name: "Light Universal",
  41254. height: math.unit(4, "universes")
  41255. },
  41256. {
  41257. name: "Universe Atoms",
  41258. height: math.unit(1.829e9, "universes")
  41259. },
  41260. {
  41261. name: "Light Multiversal",
  41262. height: math.unit(4, "multiverses")
  41263. },
  41264. {
  41265. name: "Multiverse Atoms",
  41266. height: math.unit(1.829e9, "multiverses")
  41267. },
  41268. {
  41269. name: "Nigh-Omnipresence",
  41270. height: math.unit(8e261, "multiverses")
  41271. },
  41272. ]
  41273. ))
  41274. characterMakers.push(() => makeCharacter(
  41275. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41276. {
  41277. front: {
  41278. height: math.unit(10, "feet"),
  41279. weight: math.unit(1500, "lb"),
  41280. name: "Front",
  41281. image: {
  41282. source: "./media/characters/miles-thestia/front.svg",
  41283. extra: 1812/1727,
  41284. bottom: 86/1898
  41285. }
  41286. },
  41287. back: {
  41288. height: math.unit(10, "feet"),
  41289. weight: math.unit(1500, "lb"),
  41290. name: "Back",
  41291. image: {
  41292. source: "./media/characters/miles-thestia/back.svg",
  41293. extra: 1799/1690,
  41294. bottom: 47/1846
  41295. }
  41296. },
  41297. frontNsfw: {
  41298. height: math.unit(10, "feet"),
  41299. weight: math.unit(1500, "lb"),
  41300. name: "Front (NSFW)",
  41301. image: {
  41302. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41303. extra: 1812/1727,
  41304. bottom: 86/1898
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Mini-Macro",
  41311. height: math.unit(10, "feet"),
  41312. default: true
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(25, "feet"),
  41321. name: "Front",
  41322. image: {
  41323. source: "./media/characters/titan-s-wulf/front.svg",
  41324. extra: 1560/1484,
  41325. bottom: 76/1636
  41326. }
  41327. },
  41328. },
  41329. [
  41330. {
  41331. name: "Smallest",
  41332. height: math.unit(25, "feet"),
  41333. default: true
  41334. },
  41335. {
  41336. name: "Normal",
  41337. height: math.unit(200, "feet")
  41338. },
  41339. {
  41340. name: "Macro",
  41341. height: math.unit(200000, "feet")
  41342. },
  41343. {
  41344. name: "Multiversal Original",
  41345. height: math.unit(10000, "multiverses")
  41346. },
  41347. ]
  41348. ))
  41349. characterMakers.push(() => makeCharacter(
  41350. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41351. {
  41352. front: {
  41353. height: math.unit(8, "feet"),
  41354. weight: math.unit(553, "lb"),
  41355. name: "Front",
  41356. image: {
  41357. source: "./media/characters/tawendeh/front.svg",
  41358. extra: 2365/2268,
  41359. bottom: 83/2448
  41360. }
  41361. },
  41362. frontClothed: {
  41363. height: math.unit(8, "feet"),
  41364. weight: math.unit(553, "lb"),
  41365. name: "Front (Clothed)",
  41366. image: {
  41367. source: "./media/characters/tawendeh/front-clothed.svg",
  41368. extra: 2365/2268,
  41369. bottom: 83/2448
  41370. }
  41371. },
  41372. back: {
  41373. height: math.unit(8, "feet"),
  41374. weight: math.unit(553, "lb"),
  41375. name: "Back",
  41376. image: {
  41377. source: "./media/characters/tawendeh/back.svg",
  41378. extra: 2397/2294,
  41379. bottom: 42/2439
  41380. }
  41381. },
  41382. },
  41383. [
  41384. {
  41385. name: "Mortal Interaction",
  41386. height: math.unit(8, "feet"),
  41387. default: true
  41388. },
  41389. {
  41390. name: "Giant",
  41391. height: math.unit(80, "feet")
  41392. },
  41393. {
  41394. name: "Macro",
  41395. height: math.unit(800, "feet")
  41396. },
  41397. {
  41398. name: "Megamacro",
  41399. height: math.unit(8000, "feet")
  41400. },
  41401. {
  41402. name: "City-Crushing",
  41403. height: math.unit(24000, "feet")
  41404. },
  41405. {
  41406. name: "Mountain-Mashing",
  41407. height: math.unit(80000, "feet")
  41408. },
  41409. {
  41410. name: "Nation Nemesis",
  41411. height: math.unit(8e6, "feet")
  41412. },
  41413. {
  41414. name: "Continent Cracker",
  41415. height: math.unit(24e6, "feet")
  41416. },
  41417. {
  41418. name: "Earth-Eclipsing",
  41419. height: math.unit(2.4e8, "feet")
  41420. },
  41421. {
  41422. name: "Gas Giant Gulper",
  41423. height: math.unit(2.4e9, "feet")
  41424. },
  41425. {
  41426. name: "Sol-Swallowing",
  41427. height: math.unit(8e10, "feet")
  41428. },
  41429. {
  41430. name: "Galaxy Gulper",
  41431. height: math.unit(8, "galaxies")
  41432. },
  41433. {
  41434. name: "Cosmos Churner",
  41435. height: math.unit(8, "universes")
  41436. },
  41437. {
  41438. name: "Omnipotent Otter",
  41439. height: math.unit(80, "universes")
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41445. {
  41446. front: {
  41447. height: math.unit(2.6, "meters"),
  41448. weight: math.unit(900, "kg"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/neesha/front.svg",
  41452. extra: 1803/1653,
  41453. bottom: 128/1931
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(2.6, "meters"),
  41461. default: true
  41462. },
  41463. {
  41464. name: "Macro",
  41465. height: math.unit(50, "meters")
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(5, "feet"),
  41474. weight: math.unit(185, "lb"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/kyera/front.svg",
  41478. extra: 1875/1790,
  41479. bottom: 96/1971
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(5, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(7 + 6/12, "feet"),
  41496. weight: math.unit(540, "lb"),
  41497. name: "Front",
  41498. image: {
  41499. source: "./media/characters/yuko/front.svg",
  41500. extra: 1282/1222,
  41501. bottom: 101/1383
  41502. }
  41503. },
  41504. frontClothed: {
  41505. height: math.unit(7 + 6/12, "feet"),
  41506. weight: math.unit(540, "lb"),
  41507. name: "Front (Clothed)",
  41508. image: {
  41509. source: "./media/characters/yuko/front-clothed.svg",
  41510. extra: 1282/1222,
  41511. bottom: 101/1383
  41512. }
  41513. },
  41514. },
  41515. [
  41516. {
  41517. name: "Normal",
  41518. height: math.unit(7 + 6/12, "feet"),
  41519. default: true
  41520. },
  41521. {
  41522. name: "Macro",
  41523. height: math.unit(26 + 9/12, "feet")
  41524. },
  41525. {
  41526. name: "Megamacro",
  41527. height: math.unit(300, "feet")
  41528. },
  41529. {
  41530. name: "Gigamacro",
  41531. height: math.unit(5000, "feet")
  41532. },
  41533. {
  41534. name: "Planetary",
  41535. height: math.unit(10000, "miles")
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(8 + 2/12, "feet"),
  41544. weight: math.unit(600, "lb"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/deam-nitrel/front.svg",
  41548. extra: 1308/1234,
  41549. bottom: 125/1433
  41550. }
  41551. },
  41552. },
  41553. [
  41554. {
  41555. name: "Normal",
  41556. height: math.unit(8 + 2/12, "feet"),
  41557. default: true
  41558. },
  41559. ]
  41560. ))
  41561. characterMakers.push(() => makeCharacter(
  41562. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41563. {
  41564. front: {
  41565. height: math.unit(6.1, "feet"),
  41566. weight: math.unit(180, "lb"),
  41567. name: "Front",
  41568. image: {
  41569. source: "./media/characters/skyress/front.svg",
  41570. extra: 1045/915,
  41571. bottom: 28/1073
  41572. }
  41573. },
  41574. maw: {
  41575. height: math.unit(1, "feet"),
  41576. name: "Maw",
  41577. image: {
  41578. source: "./media/characters/skyress/maw.svg"
  41579. }
  41580. },
  41581. },
  41582. [
  41583. {
  41584. name: "Normal",
  41585. height: math.unit(6.1, "feet"),
  41586. default: true
  41587. },
  41588. {
  41589. name: "Macro",
  41590. height: math.unit(200, "feet")
  41591. },
  41592. ]
  41593. ))
  41594. characterMakers.push(() => makeCharacter(
  41595. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41596. {
  41597. front: {
  41598. height: math.unit(4 + 2/12, "feet"),
  41599. weight: math.unit(40, "kg"),
  41600. name: "Front",
  41601. image: {
  41602. source: "./media/characters/amethyst-jones/front.svg",
  41603. extra: 1220/1150,
  41604. bottom: 101/1321
  41605. }
  41606. },
  41607. },
  41608. [
  41609. {
  41610. name: "Normal",
  41611. height: math.unit(4 + 2/12, "feet"),
  41612. default: true
  41613. },
  41614. ]
  41615. ))
  41616. characterMakers.push(() => makeCharacter(
  41617. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41618. {
  41619. front: {
  41620. height: math.unit(1.7, "m"),
  41621. weight: math.unit(135, "lb"),
  41622. name: "Front",
  41623. image: {
  41624. source: "./media/characters/jade/front.svg",
  41625. extra: 1818/1767,
  41626. bottom: 32/1850
  41627. }
  41628. },
  41629. back: {
  41630. height: math.unit(1.7, "m"),
  41631. weight: math.unit(135, "lb"),
  41632. name: "Back",
  41633. image: {
  41634. source: "./media/characters/jade/back.svg",
  41635. extra: 1869/1809,
  41636. bottom: 35/1904
  41637. }
  41638. },
  41639. hand: {
  41640. height: math.unit(0.24, "m"),
  41641. name: "Hand",
  41642. image: {
  41643. source: "./media/characters/jade/hand.svg"
  41644. }
  41645. },
  41646. foot: {
  41647. height: math.unit(0.263, "m"),
  41648. name: "Foot",
  41649. image: {
  41650. source: "./media/characters/jade/foot.svg"
  41651. }
  41652. },
  41653. dick: {
  41654. height: math.unit(0.47, "m"),
  41655. name: "Dick",
  41656. image: {
  41657. source: "./media/characters/jade/dick.svg"
  41658. }
  41659. },
  41660. },
  41661. [
  41662. {
  41663. name: "Micro",
  41664. height: math.unit(22, "cm")
  41665. },
  41666. {
  41667. name: "Normal",
  41668. height: math.unit(1.7, "m"),
  41669. default: true
  41670. },
  41671. {
  41672. name: "Macro",
  41673. height: math.unit(152, "m")
  41674. },
  41675. ]
  41676. ))
  41677. characterMakers.push(() => makeCharacter(
  41678. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41679. {
  41680. front: {
  41681. height: math.unit(100, "miles"),
  41682. weight: math.unit(20000, "tons"),
  41683. name: "Front",
  41684. image: {
  41685. source: "./media/characters/cookie/front.svg",
  41686. extra: 1125/1070,
  41687. bottom: 30/1155
  41688. }
  41689. },
  41690. },
  41691. [
  41692. {
  41693. name: "Big",
  41694. height: math.unit(50, "feet")
  41695. },
  41696. {
  41697. name: "Macro",
  41698. height: math.unit(100, "miles"),
  41699. default: true
  41700. },
  41701. {
  41702. name: "Megamacro",
  41703. height: math.unit(90000, "miles")
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41709. {
  41710. front: {
  41711. height: math.unit(6, "feet"),
  41712. weight: math.unit(145, "lb"),
  41713. name: "Front",
  41714. image: {
  41715. source: "./media/characters/farzian/front.svg",
  41716. extra: 1902/1693,
  41717. bottom: 108/2010
  41718. }
  41719. },
  41720. },
  41721. [
  41722. {
  41723. name: "Macro",
  41724. height: math.unit(500, "feet"),
  41725. default: true
  41726. },
  41727. ]
  41728. ))
  41729. characterMakers.push(() => makeCharacter(
  41730. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41731. {
  41732. front: {
  41733. height: math.unit(3 + 6/12, "feet"),
  41734. weight: math.unit(50, "lb"),
  41735. name: "Front",
  41736. image: {
  41737. source: "./media/characters/kimberly-tilson/front.svg",
  41738. extra: 1400/1322,
  41739. bottom: 36/1436
  41740. }
  41741. },
  41742. back: {
  41743. height: math.unit(3 + 6/12, "feet"),
  41744. weight: math.unit(50, "lb"),
  41745. name: "Back",
  41746. image: {
  41747. source: "./media/characters/kimberly-tilson/back.svg",
  41748. extra: 1370/1307,
  41749. bottom: 20/1390
  41750. }
  41751. },
  41752. },
  41753. [
  41754. {
  41755. name: "Normal",
  41756. height: math.unit(3 + 6/12, "feet"),
  41757. default: true
  41758. },
  41759. ]
  41760. ))
  41761. characterMakers.push(() => makeCharacter(
  41762. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41763. {
  41764. front: {
  41765. height: math.unit(1148, "feet"),
  41766. weight: math.unit(34057, "lb"),
  41767. name: "Front",
  41768. image: {
  41769. source: "./media/characters/harthos/front.svg",
  41770. extra: 1391/1339,
  41771. bottom: 13/1404
  41772. }
  41773. },
  41774. },
  41775. [
  41776. {
  41777. name: "Macro",
  41778. height: math.unit(1148, "feet"),
  41779. default: true
  41780. },
  41781. ]
  41782. ))
  41783. characterMakers.push(() => makeCharacter(
  41784. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41785. {
  41786. front: {
  41787. height: math.unit(15, "feet"),
  41788. name: "Front",
  41789. image: {
  41790. source: "./media/characters/hypatia/front.svg",
  41791. extra: 1653/1591,
  41792. bottom: 79/1732
  41793. }
  41794. },
  41795. },
  41796. [
  41797. {
  41798. name: "Normal",
  41799. height: math.unit(15, "feet")
  41800. },
  41801. {
  41802. name: "Small",
  41803. height: math.unit(300, "feet")
  41804. },
  41805. {
  41806. name: "Macro",
  41807. height: math.unit(2500, "feet"),
  41808. default: true
  41809. },
  41810. {
  41811. name: "Mega Macro",
  41812. height: math.unit(1500, "miles")
  41813. },
  41814. {
  41815. name: "Giga Macro",
  41816. height: math.unit(1.5e6, "miles")
  41817. },
  41818. ]
  41819. ))
  41820. characterMakers.push(() => makeCharacter(
  41821. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41822. {
  41823. front: {
  41824. height: math.unit(6, "feet"),
  41825. weight: math.unit(200, "lb"),
  41826. name: "Front",
  41827. image: {
  41828. source: "./media/characters/wulver/front.svg",
  41829. extra: 1724/1632,
  41830. bottom: 130/1854
  41831. }
  41832. },
  41833. frontNsfw: {
  41834. height: math.unit(6, "feet"),
  41835. weight: math.unit(200, "lb"),
  41836. name: "Front (NSFW)",
  41837. image: {
  41838. source: "./media/characters/wulver/front-nsfw.svg",
  41839. extra: 1724/1632,
  41840. bottom: 130/1854
  41841. }
  41842. },
  41843. },
  41844. [
  41845. {
  41846. name: "Human-Sized",
  41847. height: math.unit(6, "feet")
  41848. },
  41849. {
  41850. name: "Normal",
  41851. height: math.unit(4, "meters"),
  41852. default: true
  41853. },
  41854. {
  41855. name: "Large",
  41856. height: math.unit(6, "m")
  41857. },
  41858. ]
  41859. ))
  41860. characterMakers.push(() => makeCharacter(
  41861. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41862. {
  41863. front: {
  41864. height: math.unit(7, "feet"),
  41865. name: "Front",
  41866. image: {
  41867. source: "./media/characters/maru/front.svg",
  41868. extra: 1595/1570,
  41869. bottom: 0/1595
  41870. }
  41871. },
  41872. },
  41873. [
  41874. {
  41875. name: "Normal",
  41876. height: math.unit(7, "feet"),
  41877. default: true
  41878. },
  41879. {
  41880. name: "Macro",
  41881. height: math.unit(700, "feet")
  41882. },
  41883. {
  41884. name: "Mega Macro",
  41885. height: math.unit(25, "miles")
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(6, "feet"),
  41894. weight: math.unit(170, "lb"),
  41895. name: "Front",
  41896. image: {
  41897. source: "./media/characters/xenon/front.svg",
  41898. extra: 1376/1305,
  41899. bottom: 56/1432
  41900. }
  41901. },
  41902. back: {
  41903. height: math.unit(6, "feet"),
  41904. weight: math.unit(170, "lb"),
  41905. name: "Back",
  41906. image: {
  41907. source: "./media/characters/xenon/back.svg",
  41908. extra: 1328/1259,
  41909. bottom: 95/1423
  41910. }
  41911. },
  41912. maw: {
  41913. height: math.unit(0.52, "feet"),
  41914. name: "Maw",
  41915. image: {
  41916. source: "./media/characters/xenon/maw.svg"
  41917. }
  41918. },
  41919. handLeft: {
  41920. height: math.unit(0.82 * 169 / 153, "feet"),
  41921. name: "Hand (Left)",
  41922. image: {
  41923. source: "./media/characters/xenon/hand-left.svg"
  41924. }
  41925. },
  41926. handRight: {
  41927. height: math.unit(0.82, "feet"),
  41928. name: "Hand (Right)",
  41929. image: {
  41930. source: "./media/characters/xenon/hand-right.svg"
  41931. }
  41932. },
  41933. footLeft: {
  41934. height: math.unit(1.13, "feet"),
  41935. name: "Foot (Left)",
  41936. image: {
  41937. source: "./media/characters/xenon/foot-left.svg"
  41938. }
  41939. },
  41940. footRight: {
  41941. height: math.unit(1.13 * 194 / 196, "feet"),
  41942. name: "Foot (Right)",
  41943. image: {
  41944. source: "./media/characters/xenon/foot-right.svg"
  41945. }
  41946. },
  41947. },
  41948. [
  41949. {
  41950. name: "Micro",
  41951. height: math.unit(0.8, "inches")
  41952. },
  41953. {
  41954. name: "Normal",
  41955. height: math.unit(6, "feet")
  41956. },
  41957. {
  41958. name: "Macro",
  41959. height: math.unit(50, "feet"),
  41960. default: true
  41961. },
  41962. {
  41963. name: "Macro+",
  41964. height: math.unit(250, "feet")
  41965. },
  41966. {
  41967. name: "Megamacro",
  41968. height: math.unit(1500, "feet")
  41969. },
  41970. ]
  41971. ))
  41972. characterMakers.push(() => makeCharacter(
  41973. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41974. {
  41975. front: {
  41976. height: math.unit(7 + 5/12, "feet"),
  41977. name: "Front",
  41978. image: {
  41979. source: "./media/characters/zane/front.svg",
  41980. extra: 1260/1203,
  41981. bottom: 94/1354
  41982. }
  41983. },
  41984. back: {
  41985. height: math.unit(5.05, "feet"),
  41986. name: "Back",
  41987. image: {
  41988. source: "./media/characters/zane/back.svg",
  41989. extra: 893/829,
  41990. bottom: 30/923
  41991. }
  41992. },
  41993. werewolf: {
  41994. height: math.unit(11, "feet"),
  41995. name: "Werewolf",
  41996. image: {
  41997. source: "./media/characters/zane/werewolf.svg",
  41998. extra: 1383/1323,
  41999. bottom: 89/1472
  42000. }
  42001. },
  42002. foot: {
  42003. height: math.unit(1.46, "feet"),
  42004. name: "Foot",
  42005. image: {
  42006. source: "./media/characters/zane/foot.svg"
  42007. }
  42008. },
  42009. footFront: {
  42010. height: math.unit(0.784, "feet"),
  42011. name: "Foot (Front)",
  42012. image: {
  42013. source: "./media/characters/zane/foot-front.svg"
  42014. }
  42015. },
  42016. dick: {
  42017. height: math.unit(1.95, "feet"),
  42018. name: "Dick",
  42019. image: {
  42020. source: "./media/characters/zane/dick.svg"
  42021. }
  42022. },
  42023. dickWerewolf: {
  42024. height: math.unit(3.77, "feet"),
  42025. name: "Dick (Werewolf)",
  42026. image: {
  42027. source: "./media/characters/zane/dick.svg"
  42028. }
  42029. },
  42030. },
  42031. [
  42032. {
  42033. name: "Normal",
  42034. height: math.unit(7 + 5/12, "feet"),
  42035. default: true
  42036. },
  42037. ]
  42038. ))
  42039. characterMakers.push(() => makeCharacter(
  42040. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42041. {
  42042. front: {
  42043. height: math.unit(6 + 2/12, "feet"),
  42044. weight: math.unit(284, "lb"),
  42045. name: "Front",
  42046. image: {
  42047. source: "./media/characters/benni-desparque/front.svg",
  42048. extra: 1353/1126,
  42049. bottom: 69/1422
  42050. }
  42051. },
  42052. },
  42053. [
  42054. {
  42055. name: "Civilian",
  42056. height: math.unit(6 + 2/12, "feet")
  42057. },
  42058. {
  42059. name: "Normal",
  42060. height: math.unit(98, "feet"),
  42061. default: true
  42062. },
  42063. {
  42064. name: "Kaiju Fighter",
  42065. height: math.unit(268, "feet")
  42066. },
  42067. ]
  42068. ))
  42069. characterMakers.push(() => makeCharacter(
  42070. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42071. {
  42072. front: {
  42073. height: math.unit(5, "feet"),
  42074. weight: math.unit(105, "lb"),
  42075. name: "Front",
  42076. image: {
  42077. source: "./media/characters/maxine/front.svg",
  42078. extra: 1386/1250,
  42079. bottom: 71/1457
  42080. }
  42081. },
  42082. },
  42083. [
  42084. {
  42085. name: "Normal",
  42086. height: math.unit(5, "feet"),
  42087. default: true
  42088. },
  42089. ]
  42090. ))
  42091. characterMakers.push(() => makeCharacter(
  42092. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42093. {
  42094. front: {
  42095. height: math.unit(11 + 7/12, "feet"),
  42096. weight: math.unit(9576, "lb"),
  42097. name: "Front",
  42098. image: {
  42099. source: "./media/characters/scaly/front.svg",
  42100. extra: 888/867,
  42101. bottom: 36/924
  42102. }
  42103. },
  42104. },
  42105. [
  42106. {
  42107. name: "Normal",
  42108. height: math.unit(11 + 7/12, "feet"),
  42109. default: true
  42110. },
  42111. ]
  42112. ))
  42113. characterMakers.push(() => makeCharacter(
  42114. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42115. {
  42116. front: {
  42117. height: math.unit(6 + 3/12, "feet"),
  42118. name: "Front",
  42119. image: {
  42120. source: "./media/characters/saelria/front.svg",
  42121. extra: 1243/1138,
  42122. bottom: 46/1289
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Micro",
  42129. height: math.unit(6, "inches"),
  42130. },
  42131. {
  42132. name: "Normal",
  42133. height: math.unit(6 + 3/12, "feet"),
  42134. default: true
  42135. },
  42136. {
  42137. name: "Macro",
  42138. height: math.unit(25, "feet")
  42139. },
  42140. ]
  42141. ))
  42142. characterMakers.push(() => makeCharacter(
  42143. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42144. {
  42145. front: {
  42146. height: math.unit(80, "meters"),
  42147. weight: math.unit(7000, "tonnes"),
  42148. name: "Front",
  42149. image: {
  42150. source: "./media/characters/tef/front.svg",
  42151. extra: 2036/1991,
  42152. bottom: 54/2090
  42153. }
  42154. },
  42155. back: {
  42156. height: math.unit(80, "meters"),
  42157. weight: math.unit(7000, "tonnes"),
  42158. name: "Back",
  42159. image: {
  42160. source: "./media/characters/tef/back.svg",
  42161. extra: 2036/1991,
  42162. bottom: 54/2090
  42163. }
  42164. },
  42165. },
  42166. [
  42167. {
  42168. name: "Macro",
  42169. height: math.unit(80, "meters"),
  42170. default: true
  42171. },
  42172. ]
  42173. ))
  42174. characterMakers.push(() => makeCharacter(
  42175. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42176. {
  42177. front: {
  42178. height: math.unit(13, "feet"),
  42179. weight: math.unit(6, "tons"),
  42180. name: "Front",
  42181. image: {
  42182. source: "./media/characters/rover/front.svg",
  42183. extra: 1233/1156,
  42184. bottom: 50/1283
  42185. }
  42186. },
  42187. back: {
  42188. height: math.unit(13, "feet"),
  42189. weight: math.unit(6, "tons"),
  42190. name: "Back",
  42191. image: {
  42192. source: "./media/characters/rover/back.svg",
  42193. extra: 1327/1258,
  42194. bottom: 39/1366
  42195. }
  42196. },
  42197. },
  42198. [
  42199. {
  42200. name: "Normal",
  42201. height: math.unit(13, "feet"),
  42202. default: true
  42203. },
  42204. {
  42205. name: "Macro",
  42206. height: math.unit(1300, "feet")
  42207. },
  42208. {
  42209. name: "Megamacro",
  42210. height: math.unit(1300, "miles")
  42211. },
  42212. {
  42213. name: "Gigamacro",
  42214. height: math.unit(1300000, "miles")
  42215. },
  42216. ]
  42217. ))
  42218. characterMakers.push(() => makeCharacter(
  42219. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42220. {
  42221. front: {
  42222. height: math.unit(6, "feet"),
  42223. weight: math.unit(150, "lb"),
  42224. name: "Front",
  42225. image: {
  42226. source: "./media/characters/ariz/front.svg",
  42227. extra: 1401/1346,
  42228. bottom: 5/1406
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Normal",
  42235. height: math.unit(10, "feet"),
  42236. default: true
  42237. },
  42238. ]
  42239. ))
  42240. characterMakers.push(() => makeCharacter(
  42241. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42242. {
  42243. front: {
  42244. height: math.unit(6, "feet"),
  42245. weight: math.unit(140, "lb"),
  42246. name: "Front",
  42247. image: {
  42248. source: "./media/characters/sigrun/front.svg",
  42249. extra: 1418/1359,
  42250. bottom: 27/1445
  42251. }
  42252. },
  42253. },
  42254. [
  42255. {
  42256. name: "Macro",
  42257. height: math.unit(35, "feet"),
  42258. default: true
  42259. },
  42260. ]
  42261. ))
  42262. characterMakers.push(() => makeCharacter(
  42263. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42264. {
  42265. front: {
  42266. height: math.unit(6, "feet"),
  42267. weight: math.unit(150, "lb"),
  42268. name: "Front",
  42269. image: {
  42270. source: "./media/characters/numin/front.svg",
  42271. extra: 1433/1388,
  42272. bottom: 12/1445
  42273. }
  42274. },
  42275. },
  42276. [
  42277. {
  42278. name: "Macro",
  42279. height: math.unit(21.5, "km"),
  42280. default: true
  42281. },
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42286. {
  42287. front: {
  42288. height: math.unit(6, "feet"),
  42289. weight: math.unit(463, "lb"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/melwa/front.svg",
  42293. extra: 1307/1248,
  42294. bottom: 93/1400
  42295. }
  42296. },
  42297. },
  42298. [
  42299. {
  42300. name: "Macro",
  42301. height: math.unit(50, "meters"),
  42302. default: true
  42303. },
  42304. ]
  42305. ))
  42306. characterMakers.push(() => makeCharacter(
  42307. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42308. {
  42309. front: {
  42310. height: math.unit(325, "feet"),
  42311. name: "Front",
  42312. image: {
  42313. source: "./media/characters/zorkaiju/front.svg",
  42314. extra: 1955/1814,
  42315. bottom: 40/1995
  42316. }
  42317. },
  42318. frontExtended: {
  42319. height: math.unit(325, "feet"),
  42320. name: "Front (Extended)",
  42321. image: {
  42322. source: "./media/characters/zorkaiju/front-extended.svg",
  42323. extra: 1955/1814,
  42324. bottom: 40/1995
  42325. }
  42326. },
  42327. side: {
  42328. height: math.unit(325, "feet"),
  42329. name: "Side",
  42330. image: {
  42331. source: "./media/characters/zorkaiju/side.svg",
  42332. extra: 1495/1396,
  42333. bottom: 17/1512
  42334. }
  42335. },
  42336. sideExtended: {
  42337. height: math.unit(325, "feet"),
  42338. name: "Side (Extended)",
  42339. image: {
  42340. source: "./media/characters/zorkaiju/side-extended.svg",
  42341. extra: 1495/1396,
  42342. bottom: 17/1512
  42343. }
  42344. },
  42345. back: {
  42346. height: math.unit(325, "feet"),
  42347. name: "Back",
  42348. image: {
  42349. source: "./media/characters/zorkaiju/back.svg",
  42350. extra: 1959/1821,
  42351. bottom: 31/1990
  42352. }
  42353. },
  42354. backExtended: {
  42355. height: math.unit(325, "feet"),
  42356. name: "Back (Extended)",
  42357. image: {
  42358. source: "./media/characters/zorkaiju/back-extended.svg",
  42359. extra: 1959/1821,
  42360. bottom: 31/1990
  42361. }
  42362. },
  42363. hand: {
  42364. height: math.unit(58.4, "feet"),
  42365. name: "Hand",
  42366. image: {
  42367. source: "./media/characters/zorkaiju/hand.svg"
  42368. }
  42369. },
  42370. handExtended: {
  42371. height: math.unit(61.4, "feet"),
  42372. name: "Hand (Extended)",
  42373. image: {
  42374. source: "./media/characters/zorkaiju/hand-extended.svg"
  42375. }
  42376. },
  42377. foot: {
  42378. height: math.unit(95, "feet"),
  42379. name: "Foot",
  42380. image: {
  42381. source: "./media/characters/zorkaiju/foot.svg"
  42382. }
  42383. },
  42384. leftArm: {
  42385. height: math.unit(59, "feet"),
  42386. name: "Left Arm",
  42387. image: {
  42388. source: "./media/characters/zorkaiju/left-arm.svg"
  42389. }
  42390. },
  42391. rightArm: {
  42392. height: math.unit(59, "feet"),
  42393. name: "Right Arm",
  42394. image: {
  42395. source: "./media/characters/zorkaiju/right-arm.svg"
  42396. }
  42397. },
  42398. leftArmExtended: {
  42399. height: math.unit(59 * 1.033546, "feet"),
  42400. name: "Left Arm (Extended)",
  42401. image: {
  42402. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42403. }
  42404. },
  42405. rightArmExtended: {
  42406. height: math.unit(59 * 1.0496, "feet"),
  42407. name: "Right Arm (Extended)",
  42408. image: {
  42409. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42410. }
  42411. },
  42412. tail: {
  42413. height: math.unit(104, "feet"),
  42414. name: "Tail",
  42415. image: {
  42416. source: "./media/characters/zorkaiju/tail.svg"
  42417. }
  42418. },
  42419. tailExtended: {
  42420. height: math.unit(104, "feet"),
  42421. name: "Tail (Extended)",
  42422. image: {
  42423. source: "./media/characters/zorkaiju/tail-extended.svg"
  42424. }
  42425. },
  42426. tailBottom: {
  42427. height: math.unit(104, "feet"),
  42428. name: "Tail Bottom",
  42429. image: {
  42430. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42431. }
  42432. },
  42433. crystal: {
  42434. height: math.unit(27.54, "feet"),
  42435. name: "Crystal",
  42436. image: {
  42437. source: "./media/characters/zorkaiju/crystal.svg"
  42438. }
  42439. },
  42440. },
  42441. [
  42442. {
  42443. name: "Kaiju",
  42444. height: math.unit(325, "feet"),
  42445. default: true
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42451. {
  42452. front: {
  42453. height: math.unit(6 + 1/12, "feet"),
  42454. weight: math.unit(115, "lb"),
  42455. name: "Front",
  42456. image: {
  42457. source: "./media/characters/bailey-belfry/front.svg",
  42458. extra: 1240/1121,
  42459. bottom: 101/1341
  42460. }
  42461. },
  42462. },
  42463. [
  42464. {
  42465. name: "Normal",
  42466. height: math.unit(6 + 1/12, "feet"),
  42467. default: true
  42468. },
  42469. ]
  42470. ))
  42471. characterMakers.push(() => makeCharacter(
  42472. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42473. {
  42474. side: {
  42475. height: math.unit(4, "meters"),
  42476. weight: math.unit(250, "kg"),
  42477. name: "Side",
  42478. image: {
  42479. source: "./media/characters/blacky/side.svg",
  42480. extra: 1027/919,
  42481. bottom: 43/1070
  42482. }
  42483. },
  42484. maw: {
  42485. height: math.unit(1, "meters"),
  42486. name: "Maw",
  42487. image: {
  42488. source: "./media/characters/blacky/maw.svg"
  42489. }
  42490. },
  42491. paw: {
  42492. height: math.unit(1, "meters"),
  42493. name: "Paw",
  42494. image: {
  42495. source: "./media/characters/blacky/paw.svg"
  42496. }
  42497. },
  42498. },
  42499. [
  42500. {
  42501. name: "Normal",
  42502. height: math.unit(4, "meters"),
  42503. default: true
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(170, "cm"),
  42512. weight: math.unit(66, "kg"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/thux-ei/front.svg",
  42516. extra: 1109/1011,
  42517. bottom: 8/1117
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Normal",
  42524. height: math.unit(170, "cm"),
  42525. default: true
  42526. },
  42527. ]
  42528. ))
  42529. characterMakers.push(() => makeCharacter(
  42530. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42531. {
  42532. front: {
  42533. height: math.unit(5, "feet"),
  42534. weight: math.unit(120, "lb"),
  42535. name: "Front",
  42536. image: {
  42537. source: "./media/characters/roxanne-voltaire/front.svg",
  42538. extra: 1901/1779,
  42539. bottom: 53/1954
  42540. }
  42541. },
  42542. },
  42543. [
  42544. {
  42545. name: "Normal",
  42546. height: math.unit(5, "feet"),
  42547. default: true
  42548. },
  42549. {
  42550. name: "Giant",
  42551. height: math.unit(50, "feet")
  42552. },
  42553. {
  42554. name: "Titan",
  42555. height: math.unit(500, "feet")
  42556. },
  42557. {
  42558. name: "Macro",
  42559. height: math.unit(5000, "feet")
  42560. },
  42561. {
  42562. name: "Megamacro",
  42563. height: math.unit(50000, "feet")
  42564. },
  42565. {
  42566. name: "Gigamacro",
  42567. height: math.unit(500000, "feet")
  42568. },
  42569. {
  42570. name: "Teramacro",
  42571. height: math.unit(5e6, "feet")
  42572. },
  42573. ]
  42574. ))
  42575. characterMakers.push(() => makeCharacter(
  42576. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42577. {
  42578. front: {
  42579. height: math.unit(6 + 2/12, "feet"),
  42580. name: "Front",
  42581. image: {
  42582. source: "./media/characters/squeaks/front.svg",
  42583. extra: 1823/1768,
  42584. bottom: 138/1961
  42585. }
  42586. },
  42587. },
  42588. [
  42589. {
  42590. name: "Micro",
  42591. height: math.unit(0.5, "inches")
  42592. },
  42593. {
  42594. name: "Normal",
  42595. height: math.unit(6 + 2/12, "feet"),
  42596. default: true
  42597. },
  42598. {
  42599. name: "Macro",
  42600. height: math.unit(600, "feet")
  42601. },
  42602. ]
  42603. ))
  42604. characterMakers.push(() => makeCharacter(
  42605. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42606. {
  42607. front: {
  42608. height: math.unit(1.72, "meters"),
  42609. name: "Front",
  42610. image: {
  42611. source: "./media/characters/archinger/front.svg",
  42612. extra: 1861/1675,
  42613. bottom: 125/1986
  42614. }
  42615. },
  42616. back: {
  42617. height: math.unit(1.72, "meters"),
  42618. name: "Back",
  42619. image: {
  42620. source: "./media/characters/archinger/back.svg",
  42621. extra: 1844/1701,
  42622. bottom: 104/1948
  42623. }
  42624. },
  42625. cock: {
  42626. height: math.unit(0.59, "feet"),
  42627. name: "Cock",
  42628. image: {
  42629. source: "./media/characters/archinger/cock.svg"
  42630. }
  42631. },
  42632. },
  42633. [
  42634. {
  42635. name: "Normal",
  42636. height: math.unit(1.72, "meters"),
  42637. default: true
  42638. },
  42639. {
  42640. name: "Macro",
  42641. height: math.unit(84, "meters")
  42642. },
  42643. {
  42644. name: "Macro+",
  42645. height: math.unit(112, "meters")
  42646. },
  42647. {
  42648. name: "Macro++",
  42649. height: math.unit(960, "meters")
  42650. },
  42651. {
  42652. name: "Macro+++",
  42653. height: math.unit(4, "km")
  42654. },
  42655. {
  42656. name: "Macro++++",
  42657. height: math.unit(48, "km")
  42658. },
  42659. {
  42660. name: "Macro+++++",
  42661. height: math.unit(4500, "km")
  42662. },
  42663. ]
  42664. ))
  42665. characterMakers.push(() => makeCharacter(
  42666. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42667. {
  42668. front: {
  42669. height: math.unit(5 + 5/12, "feet"),
  42670. name: "Front",
  42671. image: {
  42672. source: "./media/characters/alsnapz/front.svg",
  42673. extra: 1157/1065,
  42674. bottom: 42/1199
  42675. }
  42676. },
  42677. },
  42678. [
  42679. {
  42680. name: "Normal",
  42681. height: math.unit(5 + 5/12, "feet"),
  42682. default: true
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42688. {
  42689. side: {
  42690. height: math.unit(3.2, "earths"),
  42691. name: "Side",
  42692. image: {
  42693. source: "./media/characters/mag/side.svg",
  42694. extra: 1331/1008,
  42695. bottom: 52/1383
  42696. }
  42697. },
  42698. wing: {
  42699. height: math.unit(1.94, "earths"),
  42700. name: "Wing",
  42701. image: {
  42702. source: "./media/characters/mag/wing.svg"
  42703. }
  42704. },
  42705. dick: {
  42706. height: math.unit(1.8, "earths"),
  42707. name: "Dick",
  42708. image: {
  42709. source: "./media/characters/mag/dick.svg"
  42710. }
  42711. },
  42712. ass: {
  42713. height: math.unit(1.33, "earths"),
  42714. name: "Ass",
  42715. image: {
  42716. source: "./media/characters/mag/ass.svg"
  42717. }
  42718. },
  42719. head: {
  42720. height: math.unit(1.1, "earths"),
  42721. name: "Head",
  42722. image: {
  42723. source: "./media/characters/mag/head.svg"
  42724. }
  42725. },
  42726. maw: {
  42727. height: math.unit(1.62, "earths"),
  42728. name: "Maw",
  42729. image: {
  42730. source: "./media/characters/mag/maw.svg"
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "Small",
  42737. height: math.unit(162, "feet")
  42738. },
  42739. {
  42740. name: "Normal",
  42741. height: math.unit(3.2, "earths"),
  42742. default: true
  42743. },
  42744. ]
  42745. ))
  42746. characterMakers.push(() => makeCharacter(
  42747. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42748. {
  42749. front: {
  42750. height: math.unit(512, "feet"),
  42751. weight: math.unit(63509, "tonnes"),
  42752. name: "Front",
  42753. image: {
  42754. source: "./media/characters/vorrel-harroc/front.svg",
  42755. extra: 1075/1063,
  42756. bottom: 62/1137
  42757. }
  42758. },
  42759. },
  42760. [
  42761. {
  42762. name: "Normal",
  42763. height: math.unit(10, "feet")
  42764. },
  42765. {
  42766. name: "Macro",
  42767. height: math.unit(512, "feet"),
  42768. default: true
  42769. },
  42770. {
  42771. name: "Megamacro",
  42772. height: math.unit(256, "miles")
  42773. },
  42774. {
  42775. name: "Gigamacro",
  42776. height: math.unit(4096, "miles")
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42782. {
  42783. side: {
  42784. height: math.unit(50, "feet"),
  42785. name: "Side",
  42786. image: {
  42787. source: "./media/characters/froimar/side.svg",
  42788. extra: 855/638,
  42789. bottom: 99/954
  42790. }
  42791. },
  42792. },
  42793. [
  42794. {
  42795. name: "Macro",
  42796. height: math.unit(50, "feet"),
  42797. default: true
  42798. },
  42799. ]
  42800. ))
  42801. characterMakers.push(() => makeCharacter(
  42802. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42803. {
  42804. front: {
  42805. height: math.unit(210, "miles"),
  42806. name: "Front",
  42807. image: {
  42808. source: "./media/characters/timothy/front.svg",
  42809. extra: 1007/943,
  42810. bottom: 62/1069
  42811. }
  42812. },
  42813. frontSkirt: {
  42814. height: math.unit(210, "miles"),
  42815. name: "Front (Skirt)",
  42816. image: {
  42817. source: "./media/characters/timothy/front-skirt.svg",
  42818. extra: 1007/943,
  42819. bottom: 62/1069
  42820. }
  42821. },
  42822. frontCoat: {
  42823. height: math.unit(210, "miles"),
  42824. name: "Front (Coat)",
  42825. image: {
  42826. source: "./media/characters/timothy/front-coat.svg",
  42827. extra: 1007/943,
  42828. bottom: 62/1069
  42829. }
  42830. },
  42831. },
  42832. [
  42833. {
  42834. name: "Macro",
  42835. height: math.unit(210, "miles"),
  42836. default: true
  42837. },
  42838. {
  42839. name: "Megamacro",
  42840. height: math.unit(210000, "miles")
  42841. },
  42842. ]
  42843. ))
  42844. characterMakers.push(() => makeCharacter(
  42845. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42846. {
  42847. front: {
  42848. height: math.unit(188, "feet"),
  42849. name: "Front",
  42850. image: {
  42851. source: "./media/characters/pyotr/front.svg",
  42852. extra: 1912/1826,
  42853. bottom: 18/1930
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Macro",
  42860. height: math.unit(188, "feet"),
  42861. default: true
  42862. },
  42863. {
  42864. name: "Megamacro",
  42865. height: math.unit(8, "miles")
  42866. },
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42871. {
  42872. side: {
  42873. height: math.unit(10, "feet"),
  42874. weight: math.unit(4500, "lb"),
  42875. name: "Side",
  42876. image: {
  42877. source: "./media/characters/ackart/side.svg",
  42878. extra: 1776/1668,
  42879. bottom: 116/1892
  42880. }
  42881. },
  42882. },
  42883. [
  42884. {
  42885. name: "Normal",
  42886. height: math.unit(10, "feet"),
  42887. default: true
  42888. },
  42889. ]
  42890. ))
  42891. characterMakers.push(() => makeCharacter(
  42892. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42893. {
  42894. side: {
  42895. height: math.unit(21, "feet"),
  42896. name: "Side",
  42897. image: {
  42898. source: "./media/characters/nolow/side.svg",
  42899. extra: 1484/1434,
  42900. bottom: 85/1569
  42901. }
  42902. },
  42903. sideErect: {
  42904. height: math.unit(21, "feet"),
  42905. name: "Side-erect",
  42906. image: {
  42907. source: "./media/characters/nolow/side-erect.svg",
  42908. extra: 1484/1434,
  42909. bottom: 85/1569
  42910. }
  42911. },
  42912. },
  42913. [
  42914. {
  42915. name: "Regular",
  42916. height: math.unit(12, "feet")
  42917. },
  42918. {
  42919. name: "Big Chee",
  42920. height: math.unit(21, "feet"),
  42921. default: true
  42922. },
  42923. ]
  42924. ))
  42925. characterMakers.push(() => makeCharacter(
  42926. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42927. {
  42928. front: {
  42929. height: math.unit(7, "feet"),
  42930. weight: math.unit(250, "lb"),
  42931. name: "Front",
  42932. image: {
  42933. source: "./media/characters/nines/front.svg",
  42934. extra: 1741/1607,
  42935. bottom: 41/1782
  42936. }
  42937. },
  42938. side: {
  42939. height: math.unit(7, "feet"),
  42940. weight: math.unit(250, "lb"),
  42941. name: "Side",
  42942. image: {
  42943. source: "./media/characters/nines/side.svg",
  42944. extra: 1854/1735,
  42945. bottom: 93/1947
  42946. }
  42947. },
  42948. back: {
  42949. height: math.unit(7, "feet"),
  42950. weight: math.unit(250, "lb"),
  42951. name: "Back",
  42952. image: {
  42953. source: "./media/characters/nines/back.svg",
  42954. extra: 1748/1615,
  42955. bottom: 20/1768
  42956. }
  42957. },
  42958. },
  42959. [
  42960. {
  42961. name: "Megamacro",
  42962. height: math.unit(99, "km"),
  42963. default: true
  42964. },
  42965. ]
  42966. ))
  42967. characterMakers.push(() => makeCharacter(
  42968. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42969. {
  42970. front: {
  42971. height: math.unit(5 + 10/12, "feet"),
  42972. weight: math.unit(210, "lb"),
  42973. name: "Front",
  42974. image: {
  42975. source: "./media/characters/zenith/front.svg",
  42976. extra: 1531/1452,
  42977. bottom: 198/1729
  42978. }
  42979. },
  42980. back: {
  42981. height: math.unit(5 + 10/12, "feet"),
  42982. weight: math.unit(210, "lb"),
  42983. name: "Back",
  42984. image: {
  42985. source: "./media/characters/zenith/back.svg",
  42986. extra: 1571/1487,
  42987. bottom: 75/1646
  42988. }
  42989. },
  42990. },
  42991. [
  42992. {
  42993. name: "Normal",
  42994. height: math.unit(5 + 10/12, "feet"),
  42995. default: true
  42996. }
  42997. ]
  42998. ))
  42999. characterMakers.push(() => makeCharacter(
  43000. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43001. {
  43002. front: {
  43003. height: math.unit(4, "feet"),
  43004. weight: math.unit(60, "lb"),
  43005. name: "Front",
  43006. image: {
  43007. source: "./media/characters/jasper/front.svg",
  43008. extra: 1450/1379,
  43009. bottom: 19/1469
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Normal",
  43016. height: math.unit(4, "feet"),
  43017. default: true
  43018. },
  43019. ]
  43020. ))
  43021. characterMakers.push(() => makeCharacter(
  43022. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43023. {
  43024. front: {
  43025. height: math.unit(6 + 5/12, "feet"),
  43026. weight: math.unit(290, "lb"),
  43027. name: "Front",
  43028. image: {
  43029. source: "./media/characters/tiberius-thyben/front.svg",
  43030. extra: 757/739,
  43031. bottom: 39/796
  43032. }
  43033. },
  43034. },
  43035. [
  43036. {
  43037. name: "Micro",
  43038. height: math.unit(1.5, "inches")
  43039. },
  43040. {
  43041. name: "Normal",
  43042. height: math.unit(6 + 5/12, "feet"),
  43043. default: true
  43044. },
  43045. {
  43046. name: "Macro",
  43047. height: math.unit(300, "feet")
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43053. {
  43054. front: {
  43055. height: math.unit(5 + 6/12, "feet"),
  43056. weight: math.unit(60, "kg"),
  43057. name: "Front",
  43058. image: {
  43059. source: "./media/characters/sabre/front.svg",
  43060. extra: 738/671,
  43061. bottom: 27/765
  43062. }
  43063. },
  43064. },
  43065. [
  43066. {
  43067. name: "Teeny",
  43068. height: math.unit(2, "inches")
  43069. },
  43070. {
  43071. name: "Smol",
  43072. height: math.unit(8, "inches")
  43073. },
  43074. {
  43075. name: "Normal",
  43076. height: math.unit(5 + 6/12, "feet"),
  43077. default: true
  43078. },
  43079. {
  43080. name: "Mini-Macro",
  43081. height: math.unit(15, "feet")
  43082. },
  43083. {
  43084. name: "Macro",
  43085. height: math.unit(50, "feet")
  43086. },
  43087. ]
  43088. ))
  43089. characterMakers.push(() => makeCharacter(
  43090. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43091. {
  43092. front: {
  43093. height: math.unit(6 + 4/12, "feet"),
  43094. weight: math.unit(170, "lb"),
  43095. name: "Front",
  43096. image: {
  43097. source: "./media/characters/charlie/front.svg",
  43098. extra: 1348/1228,
  43099. bottom: 15/1363
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Macro",
  43106. height: math.unit(1700, "meters"),
  43107. default: true
  43108. },
  43109. {
  43110. name: "MegaMacro",
  43111. height: math.unit(20400, "meters")
  43112. },
  43113. ]
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43117. {
  43118. front: {
  43119. height: math.unit(6 + 3/12, "feet"),
  43120. weight: math.unit(185, "lb"),
  43121. name: "Front",
  43122. image: {
  43123. source: "./media/characters/susan-grant/front.svg",
  43124. extra: 1351/1327,
  43125. bottom: 26/1377
  43126. }
  43127. },
  43128. },
  43129. [
  43130. {
  43131. name: "Normal",
  43132. height: math.unit(6 + 3/12, "feet"),
  43133. default: true
  43134. },
  43135. {
  43136. name: "Macro",
  43137. height: math.unit(225, "feet")
  43138. },
  43139. {
  43140. name: "Macro+",
  43141. height: math.unit(900, "feet")
  43142. },
  43143. {
  43144. name: "MegaMacro",
  43145. height: math.unit(14400, "feet")
  43146. },
  43147. ]
  43148. ))
  43149. characterMakers.push(() => makeCharacter(
  43150. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43151. {
  43152. front: {
  43153. height: math.unit(5 + 4/12, "feet"),
  43154. weight: math.unit(110, "lb"),
  43155. name: "Front",
  43156. image: {
  43157. source: "./media/characters/axel-isanov/front.svg",
  43158. extra: 1096/1065,
  43159. bottom: 13/1109
  43160. }
  43161. },
  43162. },
  43163. [
  43164. {
  43165. name: "Normal",
  43166. height: math.unit(5 + 4/12, "feet"),
  43167. default: true
  43168. },
  43169. ]
  43170. ))
  43171. characterMakers.push(() => makeCharacter(
  43172. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43173. {
  43174. front: {
  43175. height: math.unit(9, "feet"),
  43176. weight: math.unit(467, "lb"),
  43177. name: "Front",
  43178. image: {
  43179. source: "./media/characters/necahual/front.svg",
  43180. extra: 920/873,
  43181. bottom: 26/946
  43182. }
  43183. },
  43184. back: {
  43185. height: math.unit(9, "feet"),
  43186. weight: math.unit(467, "lb"),
  43187. name: "Back",
  43188. image: {
  43189. source: "./media/characters/necahual/back.svg",
  43190. extra: 930/884,
  43191. bottom: 16/946
  43192. }
  43193. },
  43194. frontUnderwear: {
  43195. height: math.unit(9, "feet"),
  43196. weight: math.unit(467, "lb"),
  43197. name: "Front (Underwear)",
  43198. image: {
  43199. source: "./media/characters/necahual/front-underwear.svg",
  43200. extra: 920/873,
  43201. bottom: 26/946
  43202. }
  43203. },
  43204. frontDressed: {
  43205. height: math.unit(9, "feet"),
  43206. weight: math.unit(467, "lb"),
  43207. name: "Front (Dressed)",
  43208. image: {
  43209. source: "./media/characters/necahual/front-dressed.svg",
  43210. extra: 920/873,
  43211. bottom: 26/946
  43212. }
  43213. },
  43214. },
  43215. [
  43216. {
  43217. name: "Comprsesed",
  43218. height: math.unit(9, "feet")
  43219. },
  43220. {
  43221. name: "Natural",
  43222. height: math.unit(15, "feet"),
  43223. default: true
  43224. },
  43225. {
  43226. name: "Boosted",
  43227. height: math.unit(50, "feet")
  43228. },
  43229. {
  43230. name: "Boosted+",
  43231. height: math.unit(150, "feet")
  43232. },
  43233. {
  43234. name: "Max",
  43235. height: math.unit(500, "feet")
  43236. },
  43237. ]
  43238. ))
  43239. characterMakers.push(() => makeCharacter(
  43240. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43241. {
  43242. front: {
  43243. height: math.unit(22 + 1/12, "feet"),
  43244. weight: math.unit(3200, "lb"),
  43245. name: "Front",
  43246. image: {
  43247. source: "./media/characters/theo-acacia/front.svg",
  43248. extra: 1796/1741,
  43249. bottom: 83/1879
  43250. }
  43251. },
  43252. frontUnderwear: {
  43253. height: math.unit(22 + 1/12, "feet"),
  43254. weight: math.unit(3200, "lb"),
  43255. name: "Front (Underwear)",
  43256. image: {
  43257. source: "./media/characters/theo-acacia/front-underwear.svg",
  43258. extra: 1796/1741,
  43259. bottom: 83/1879
  43260. }
  43261. },
  43262. frontNude: {
  43263. height: math.unit(22 + 1/12, "feet"),
  43264. weight: math.unit(3200, "lb"),
  43265. name: "Front (Nude)",
  43266. image: {
  43267. source: "./media/characters/theo-acacia/front-nude.svg",
  43268. extra: 1796/1741,
  43269. bottom: 83/1879
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Normal",
  43276. height: math.unit(22 + 1/12, "feet"),
  43277. default: true
  43278. },
  43279. ]
  43280. ))
  43281. characterMakers.push(() => makeCharacter(
  43282. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43283. {
  43284. front: {
  43285. height: math.unit(20, "feet"),
  43286. name: "Front",
  43287. image: {
  43288. source: "./media/characters/astra/front.svg",
  43289. extra: 1850/1714,
  43290. bottom: 106/1956
  43291. }
  43292. },
  43293. frontUndressed: {
  43294. height: math.unit(20, "feet"),
  43295. name: "Front (Undressed)",
  43296. image: {
  43297. source: "./media/characters/astra/front-undressed.svg",
  43298. extra: 1926/1749,
  43299. bottom: 0/1926
  43300. }
  43301. },
  43302. hand: {
  43303. height: math.unit(1.53, "feet"),
  43304. name: "Hand",
  43305. image: {
  43306. source: "./media/characters/astra/hand.svg"
  43307. }
  43308. },
  43309. paw: {
  43310. height: math.unit(1.53, "feet"),
  43311. name: "Paw",
  43312. image: {
  43313. source: "./media/characters/astra/paw.svg"
  43314. }
  43315. },
  43316. },
  43317. [
  43318. {
  43319. name: "Smallest",
  43320. height: math.unit(20, "feet")
  43321. },
  43322. {
  43323. name: "Normal",
  43324. height: math.unit(1e9, "miles"),
  43325. default: true
  43326. },
  43327. {
  43328. name: "Larger",
  43329. height: math.unit(5, "multiverses")
  43330. },
  43331. {
  43332. name: "Largest",
  43333. height: math.unit(1e9, "multiverses")
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43339. {
  43340. front: {
  43341. height: math.unit(8, "feet"),
  43342. name: "Front",
  43343. image: {
  43344. source: "./media/characters/breanna/front.svg",
  43345. extra: 1912/1632,
  43346. bottom: 33/1945
  43347. }
  43348. },
  43349. },
  43350. [
  43351. {
  43352. name: "Smallest",
  43353. height: math.unit(8, "feet")
  43354. },
  43355. {
  43356. name: "Normal",
  43357. height: math.unit(1, "mile"),
  43358. default: true
  43359. },
  43360. {
  43361. name: "Maximum",
  43362. height: math.unit(1500000000000, "lightyears")
  43363. },
  43364. ]
  43365. ))
  43366. characterMakers.push(() => makeCharacter(
  43367. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43368. {
  43369. front: {
  43370. height: math.unit(5 + 11/12, "feet"),
  43371. weight: math.unit(155, "lb"),
  43372. name: "Front",
  43373. image: {
  43374. source: "./media/characters/cai/front.svg",
  43375. extra: 1823/1702,
  43376. bottom: 32/1855
  43377. }
  43378. },
  43379. back: {
  43380. height: math.unit(5 + 11/12, "feet"),
  43381. weight: math.unit(155, "lb"),
  43382. name: "Back",
  43383. image: {
  43384. source: "./media/characters/cai/back.svg",
  43385. extra: 1809/1708,
  43386. bottom: 31/1840
  43387. }
  43388. },
  43389. },
  43390. [
  43391. {
  43392. name: "Normal",
  43393. height: math.unit(5 + 11/12, "feet"),
  43394. default: true
  43395. },
  43396. {
  43397. name: "Big",
  43398. height: math.unit(15, "feet")
  43399. },
  43400. {
  43401. name: "Macro",
  43402. height: math.unit(200, "feet")
  43403. },
  43404. ]
  43405. ))
  43406. characterMakers.push(() => makeCharacter(
  43407. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43408. {
  43409. front: {
  43410. height: math.unit(5 + 6/12, "feet"),
  43411. weight: math.unit(160, "lb"),
  43412. name: "Front",
  43413. image: {
  43414. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43415. extra: 1227/1174,
  43416. bottom: 37/1264
  43417. }
  43418. },
  43419. },
  43420. [
  43421. {
  43422. name: "Macro",
  43423. height: math.unit(444, "meters"),
  43424. default: true
  43425. },
  43426. ]
  43427. ))
  43428. characterMakers.push(() => makeCharacter(
  43429. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43430. {
  43431. front: {
  43432. height: math.unit(18 + 7/12, "feet"),
  43433. name: "Front",
  43434. image: {
  43435. source: "./media/characters/rex/front.svg",
  43436. extra: 1941/1807,
  43437. bottom: 66/2007
  43438. }
  43439. },
  43440. back: {
  43441. height: math.unit(18 + 7/12, "feet"),
  43442. name: "Back",
  43443. image: {
  43444. source: "./media/characters/rex/back.svg",
  43445. extra: 1937/1822,
  43446. bottom: 42/1979
  43447. }
  43448. },
  43449. boot: {
  43450. height: math.unit(3.45, "feet"),
  43451. name: "Boot",
  43452. image: {
  43453. source: "./media/characters/rex/boot.svg"
  43454. }
  43455. },
  43456. paw: {
  43457. height: math.unit(4.17, "feet"),
  43458. name: "Paw",
  43459. image: {
  43460. source: "./media/characters/rex/paw.svg"
  43461. }
  43462. },
  43463. head: {
  43464. height: math.unit(6.728, "feet"),
  43465. name: "Head",
  43466. image: {
  43467. source: "./media/characters/rex/head.svg"
  43468. }
  43469. },
  43470. },
  43471. [
  43472. {
  43473. name: "Nano",
  43474. height: math.unit(18 + 7/12, "feet")
  43475. },
  43476. {
  43477. name: "Micro",
  43478. height: math.unit(1.5, "megameters")
  43479. },
  43480. {
  43481. name: "Normal",
  43482. height: math.unit(440, "megameters"),
  43483. default: true
  43484. },
  43485. {
  43486. name: "Macro",
  43487. height: math.unit(2.5, "gigameters")
  43488. },
  43489. {
  43490. name: "Gigamacro",
  43491. height: math.unit(2, "galaxies")
  43492. },
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43497. {
  43498. side: {
  43499. height: math.unit(32, "feet"),
  43500. weight: math.unit(250000, "lb"),
  43501. name: "Side",
  43502. image: {
  43503. source: "./media/characters/silverwing/side.svg",
  43504. extra: 1100/1019,
  43505. bottom: 204/1304
  43506. }
  43507. },
  43508. },
  43509. [
  43510. {
  43511. name: "Normal",
  43512. height: math.unit(32, "feet"),
  43513. default: true
  43514. },
  43515. ]
  43516. ))
  43517. characterMakers.push(() => makeCharacter(
  43518. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43519. {
  43520. front: {
  43521. height: math.unit(6 + 6/12, "feet"),
  43522. weight: math.unit(350, "lb"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/tristan-hawthorne/front.svg",
  43526. extra: 1159/1124,
  43527. bottom: 37/1196
  43528. },
  43529. form: "labrador",
  43530. default: true
  43531. },
  43532. skunkFront: {
  43533. height: math.unit(4 + 6/12, "feet"),
  43534. weight: math.unit(120, "lb"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43538. extra: 1609/1551,
  43539. bottom: 169/1778
  43540. },
  43541. form: "skunk",
  43542. default: true
  43543. },
  43544. },
  43545. [
  43546. {
  43547. name: "Normal",
  43548. height: math.unit(6 + 6/12, "feet"),
  43549. form: "labrador",
  43550. default: true
  43551. },
  43552. {
  43553. name: "Normal",
  43554. height: math.unit(4 + 6/12, "feet"),
  43555. form: "skunk",
  43556. default: true
  43557. },
  43558. ],
  43559. {
  43560. "labrador": {
  43561. name: "Labrador",
  43562. default: true
  43563. },
  43564. "skunk": {
  43565. name: "Skunk"
  43566. }
  43567. }
  43568. ))
  43569. characterMakers.push(() => makeCharacter(
  43570. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43571. {
  43572. front: {
  43573. height: math.unit(5 + 11/12, "feet"),
  43574. weight: math.unit(190, "lb"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/mizu/front.svg",
  43578. extra: 1988/1788,
  43579. bottom: 14/2002
  43580. }
  43581. },
  43582. },
  43583. [
  43584. {
  43585. name: "Normal",
  43586. height: math.unit(5 + 11/12, "feet"),
  43587. default: true
  43588. },
  43589. ]
  43590. ))
  43591. characterMakers.push(() => makeCharacter(
  43592. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43593. {
  43594. front: {
  43595. height: math.unit(1.7, "feet"),
  43596. weight: math.unit(50, "lb"),
  43597. name: "Front",
  43598. image: {
  43599. source: "./media/characters/dechroma/front.svg",
  43600. extra: 1095/859,
  43601. bottom: 64/1159
  43602. }
  43603. },
  43604. },
  43605. [
  43606. {
  43607. name: "Normal",
  43608. height: math.unit(1.7, "feet"),
  43609. default: true
  43610. },
  43611. ]
  43612. ))
  43613. characterMakers.push(() => makeCharacter(
  43614. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43615. {
  43616. side: {
  43617. height: math.unit(30, "feet"),
  43618. name: "Side",
  43619. image: {
  43620. source: "./media/characters/veluren-thanazel/side.svg",
  43621. extra: 1611/633,
  43622. bottom: 118/1729
  43623. }
  43624. },
  43625. front: {
  43626. height: math.unit(30, "feet"),
  43627. name: "Front",
  43628. image: {
  43629. source: "./media/characters/veluren-thanazel/front.svg",
  43630. extra: 1486/636,
  43631. bottom: 238/1724
  43632. }
  43633. },
  43634. head: {
  43635. height: math.unit(21.4, "feet"),
  43636. name: "Head",
  43637. image: {
  43638. source: "./media/characters/veluren-thanazel/head.svg"
  43639. }
  43640. },
  43641. genitals: {
  43642. height: math.unit(19.4, "feet"),
  43643. name: "Genitals",
  43644. image: {
  43645. source: "./media/characters/veluren-thanazel/genitals.svg"
  43646. }
  43647. },
  43648. },
  43649. [
  43650. {
  43651. name: "Social",
  43652. height: math.unit(6, "feet")
  43653. },
  43654. {
  43655. name: "Play",
  43656. height: math.unit(12, "feet")
  43657. },
  43658. {
  43659. name: "True",
  43660. height: math.unit(30, "feet"),
  43661. default: true
  43662. },
  43663. ]
  43664. ))
  43665. characterMakers.push(() => makeCharacter(
  43666. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43667. {
  43668. front: {
  43669. height: math.unit(7 + 6/12, "feet"),
  43670. weight: math.unit(500, "kg"),
  43671. name: "Front",
  43672. image: {
  43673. source: "./media/characters/arcturas/front.svg",
  43674. extra: 1700/1500,
  43675. bottom: 145/1845
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Normal",
  43682. height: math.unit(7 + 6/12, "feet"),
  43683. default: true
  43684. },
  43685. ]
  43686. ))
  43687. characterMakers.push(() => makeCharacter(
  43688. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43689. {
  43690. side: {
  43691. height: math.unit(6, "feet"),
  43692. weight: math.unit(2, "tons"),
  43693. name: "Side",
  43694. image: {
  43695. source: "./media/characters/vitaen/side.svg",
  43696. extra: 1157/617,
  43697. bottom: 122/1279
  43698. }
  43699. },
  43700. },
  43701. [
  43702. {
  43703. name: "Normal",
  43704. height: math.unit(6, "feet"),
  43705. default: true
  43706. },
  43707. ]
  43708. ))
  43709. characterMakers.push(() => makeCharacter(
  43710. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43711. {
  43712. front: {
  43713. height: math.unit(19, "feet"),
  43714. name: "Front",
  43715. image: {
  43716. source: "./media/characters/fia-dreamweaver/front.svg",
  43717. extra: 1630/1504,
  43718. bottom: 25/1655
  43719. }
  43720. },
  43721. },
  43722. [
  43723. {
  43724. name: "Normal",
  43725. height: math.unit(19, "feet"),
  43726. default: true
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(5 + 4/12, "feet"),
  43735. name: "Front",
  43736. image: {
  43737. source: "./media/characters/artan/front.svg",
  43738. extra: 1618/1535,
  43739. bottom: 46/1664
  43740. }
  43741. },
  43742. back: {
  43743. height: math.unit(5 + 4/12, "feet"),
  43744. name: "Back",
  43745. image: {
  43746. source: "./media/characters/artan/back.svg",
  43747. extra: 1618/1543,
  43748. bottom: 31/1649
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Normal",
  43755. height: math.unit(5 + 4/12, "feet"),
  43756. default: true
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43762. {
  43763. side: {
  43764. height: math.unit(182, "cm"),
  43765. weight: math.unit(1000, "lb"),
  43766. name: "Side",
  43767. image: {
  43768. source: "./media/characters/silver-dragon/side.svg",
  43769. extra: 710/287,
  43770. bottom: 88/798
  43771. }
  43772. },
  43773. },
  43774. [
  43775. {
  43776. name: "Normal",
  43777. height: math.unit(182, "cm"),
  43778. default: true
  43779. },
  43780. ]
  43781. ))
  43782. characterMakers.push(() => makeCharacter(
  43783. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43784. {
  43785. side: {
  43786. height: math.unit(6 + 6/12, "feet"),
  43787. weight: math.unit(1.5, "tons"),
  43788. name: "Side",
  43789. image: {
  43790. source: "./media/characters/zephyr/side.svg",
  43791. extra: 1433/586,
  43792. bottom: 109/1542
  43793. }
  43794. },
  43795. },
  43796. [
  43797. {
  43798. name: "Normal",
  43799. height: math.unit(6 + 6/12, "feet"),
  43800. default: true
  43801. },
  43802. ]
  43803. ))
  43804. characterMakers.push(() => makeCharacter(
  43805. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43806. {
  43807. side: {
  43808. height: math.unit(1, "feet"),
  43809. name: "Side",
  43810. image: {
  43811. source: "./media/characters/vixye/side.svg",
  43812. extra: 632/541,
  43813. bottom: 0/632
  43814. }
  43815. },
  43816. },
  43817. [
  43818. {
  43819. name: "Normal",
  43820. height: math.unit(1, "feet"),
  43821. default: true
  43822. },
  43823. {
  43824. name: "True",
  43825. height: math.unit(1e15, "multiverses")
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43831. {
  43832. front: {
  43833. height: math.unit(8 + 2/12, "feet"),
  43834. weight: math.unit(650, "lb"),
  43835. name: "Front",
  43836. image: {
  43837. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43838. extra: 1174/1137,
  43839. bottom: 82/1256
  43840. }
  43841. },
  43842. back: {
  43843. height: math.unit(8 + 2/12, "feet"),
  43844. weight: math.unit(650, "lb"),
  43845. name: "Back",
  43846. image: {
  43847. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43848. extra: 1204/1157,
  43849. bottom: 46/1250
  43850. }
  43851. },
  43852. },
  43853. [
  43854. {
  43855. name: "Wildform",
  43856. height: math.unit(8 + 2/12, "feet"),
  43857. default: true
  43858. },
  43859. ]
  43860. ))
  43861. characterMakers.push(() => makeCharacter(
  43862. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43863. {
  43864. front: {
  43865. height: math.unit(18, "feet"),
  43866. name: "Front",
  43867. image: {
  43868. source: "./media/characters/cyphin/front.svg",
  43869. extra: 970/886,
  43870. bottom: 42/1012
  43871. }
  43872. },
  43873. back: {
  43874. height: math.unit(18, "feet"),
  43875. name: "Back",
  43876. image: {
  43877. source: "./media/characters/cyphin/back.svg",
  43878. extra: 1009/894,
  43879. bottom: 24/1033
  43880. }
  43881. },
  43882. head: {
  43883. height: math.unit(5.05, "feet"),
  43884. name: "Head",
  43885. image: {
  43886. source: "./media/characters/cyphin/head.svg"
  43887. }
  43888. },
  43889. tailbud: {
  43890. height: math.unit(5, "feet"),
  43891. name: "Tailbud",
  43892. image: {
  43893. source: "./media/characters/cyphin/tailbud.svg"
  43894. }
  43895. },
  43896. },
  43897. [
  43898. ]
  43899. ))
  43900. characterMakers.push(() => makeCharacter(
  43901. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43902. {
  43903. side: {
  43904. height: math.unit(10, "feet"),
  43905. weight: math.unit(6, "tons"),
  43906. name: "Side",
  43907. image: {
  43908. source: "./media/characters/raijin/side.svg",
  43909. extra: 1529/613,
  43910. bottom: 337/1866
  43911. }
  43912. },
  43913. },
  43914. [
  43915. {
  43916. name: "Normal",
  43917. height: math.unit(10, "feet"),
  43918. default: true
  43919. },
  43920. ]
  43921. ))
  43922. characterMakers.push(() => makeCharacter(
  43923. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43924. {
  43925. side: {
  43926. height: math.unit(9, "feet"),
  43927. name: "Side",
  43928. image: {
  43929. source: "./media/characters/nilghais/side.svg",
  43930. extra: 1047/744,
  43931. bottom: 91/1138
  43932. }
  43933. },
  43934. head: {
  43935. height: math.unit(3.14, "feet"),
  43936. name: "Head",
  43937. image: {
  43938. source: "./media/characters/nilghais/head.svg"
  43939. }
  43940. },
  43941. mouth: {
  43942. height: math.unit(4.6, "feet"),
  43943. name: "Mouth",
  43944. image: {
  43945. source: "./media/characters/nilghais/mouth.svg"
  43946. }
  43947. },
  43948. wings: {
  43949. height: math.unit(24, "feet"),
  43950. name: "Wings",
  43951. image: {
  43952. source: "./media/characters/nilghais/wings.svg"
  43953. }
  43954. },
  43955. ass: {
  43956. height: math.unit(6.12, "feet"),
  43957. name: "Ass",
  43958. image: {
  43959. source: "./media/characters/nilghais/ass.svg"
  43960. }
  43961. },
  43962. },
  43963. [
  43964. {
  43965. name: "Normal",
  43966. height: math.unit(9, "feet"),
  43967. default: true
  43968. },
  43969. ]
  43970. ))
  43971. characterMakers.push(() => makeCharacter(
  43972. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43973. {
  43974. regular: {
  43975. height: math.unit(16 + 2/12, "feet"),
  43976. weight: math.unit(2300, "lb"),
  43977. name: "Regular",
  43978. image: {
  43979. source: "./media/characters/zolgar/regular.svg",
  43980. extra: 1246/1004,
  43981. bottom: 124/1370
  43982. }
  43983. },
  43984. boxers: {
  43985. height: math.unit(16 + 2/12, "feet"),
  43986. weight: math.unit(2300, "lb"),
  43987. name: "Boxers",
  43988. image: {
  43989. source: "./media/characters/zolgar/boxers.svg",
  43990. extra: 1246/1004,
  43991. bottom: 124/1370
  43992. }
  43993. },
  43994. armored: {
  43995. height: math.unit(16 + 2/12, "feet"),
  43996. weight: math.unit(2300, "lb"),
  43997. name: "Armored",
  43998. image: {
  43999. source: "./media/characters/zolgar/armored.svg",
  44000. extra: 1246/1004,
  44001. bottom: 124/1370
  44002. }
  44003. },
  44004. goth: {
  44005. height: math.unit(16 + 2/12, "feet"),
  44006. weight: math.unit(2300, "lb"),
  44007. name: "Goth",
  44008. image: {
  44009. source: "./media/characters/zolgar/goth.svg",
  44010. extra: 1246/1004,
  44011. bottom: 124/1370
  44012. }
  44013. },
  44014. },
  44015. [
  44016. {
  44017. name: "Shrunken Down",
  44018. height: math.unit(9 + 2/12, "feet")
  44019. },
  44020. {
  44021. name: "Normal",
  44022. height: math.unit(16 + 2/12, "feet"),
  44023. default: true
  44024. },
  44025. ]
  44026. ))
  44027. characterMakers.push(() => makeCharacter(
  44028. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44029. {
  44030. front: {
  44031. height: math.unit(6, "feet"),
  44032. weight: math.unit(168, "lb"),
  44033. name: "Front",
  44034. image: {
  44035. source: "./media/characters/luca/front.svg",
  44036. extra: 841/667,
  44037. bottom: 102/943
  44038. }
  44039. },
  44040. },
  44041. [
  44042. {
  44043. name: "Normal",
  44044. height: math.unit(6, "feet"),
  44045. default: true
  44046. },
  44047. ]
  44048. ))
  44049. characterMakers.push(() => makeCharacter(
  44050. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44051. {
  44052. side: {
  44053. height: math.unit(7 + 3/12, "feet"),
  44054. weight: math.unit(312, "lb"),
  44055. name: "Side",
  44056. image: {
  44057. source: "./media/characters/zezo/side.svg",
  44058. extra: 1192/1067,
  44059. bottom: 63/1255
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Normal",
  44066. height: math.unit(7 + 3/12, "feet"),
  44067. default: true
  44068. },
  44069. ]
  44070. ))
  44071. characterMakers.push(() => makeCharacter(
  44072. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44073. {
  44074. front: {
  44075. height: math.unit(5 + 5/12, "feet"),
  44076. weight: math.unit(170, "lb"),
  44077. name: "Front",
  44078. image: {
  44079. source: "./media/characters/mayso/front.svg",
  44080. extra: 1215/1108,
  44081. bottom: 16/1231
  44082. }
  44083. },
  44084. },
  44085. [
  44086. {
  44087. name: "Normal",
  44088. height: math.unit(5 + 5/12, "feet"),
  44089. default: true
  44090. },
  44091. ]
  44092. ))
  44093. characterMakers.push(() => makeCharacter(
  44094. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44095. {
  44096. front: {
  44097. height: math.unit(4 + 3/12, "feet"),
  44098. weight: math.unit(80, "lb"),
  44099. name: "Front",
  44100. image: {
  44101. source: "./media/characters/hess/front.svg",
  44102. extra: 1200/1123,
  44103. bottom: 16/1216
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Normal",
  44110. height: math.unit(4 + 3/12, "feet"),
  44111. default: true
  44112. },
  44113. ]
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44117. {
  44118. front: {
  44119. height: math.unit(1.9, "meters"),
  44120. name: "Front",
  44121. image: {
  44122. source: "./media/characters/ashgar/front.svg",
  44123. extra: 1177/1146,
  44124. bottom: 99/1276
  44125. }
  44126. },
  44127. back: {
  44128. height: math.unit(1.9, "meters"),
  44129. name: "Back",
  44130. image: {
  44131. source: "./media/characters/ashgar/back.svg",
  44132. extra: 1201/1183,
  44133. bottom: 53/1254
  44134. }
  44135. },
  44136. feral: {
  44137. height: math.unit(1.4, "meters"),
  44138. name: "Feral",
  44139. image: {
  44140. source: "./media/characters/ashgar/feral.svg",
  44141. extra: 370/345,
  44142. bottom: 45/415
  44143. }
  44144. },
  44145. },
  44146. [
  44147. {
  44148. name: "Normal",
  44149. height: math.unit(1.9, "meters"),
  44150. default: true
  44151. },
  44152. ]
  44153. ))
  44154. characterMakers.push(() => makeCharacter(
  44155. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44156. {
  44157. regular: {
  44158. height: math.unit(6, "feet"),
  44159. weight: math.unit(220, "lb"),
  44160. name: "Regular",
  44161. image: {
  44162. source: "./media/characters/phillip/regular.svg",
  44163. extra: 1373/1277,
  44164. bottom: 75/1448
  44165. }
  44166. },
  44167. dressed: {
  44168. height: math.unit(6, "feet"),
  44169. weight: math.unit(220, "lb"),
  44170. name: "Dressed",
  44171. image: {
  44172. source: "./media/characters/phillip/dressed.svg",
  44173. extra: 1373/1277,
  44174. bottom: 75/1448
  44175. }
  44176. },
  44177. paw: {
  44178. height: math.unit(1.44, "feet"),
  44179. name: "Paw",
  44180. image: {
  44181. source: "./media/characters/phillip/paw.svg"
  44182. }
  44183. },
  44184. },
  44185. [
  44186. {
  44187. name: "Normal",
  44188. height: math.unit(6, "feet"),
  44189. default: true
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44195. {
  44196. side: {
  44197. height: math.unit(42, "feet"),
  44198. name: "Side",
  44199. image: {
  44200. source: "./media/characters/uvula/side.svg",
  44201. extra: 683/586,
  44202. bottom: 60/743
  44203. }
  44204. },
  44205. front: {
  44206. height: math.unit(42, "feet"),
  44207. name: "Front",
  44208. image: {
  44209. source: "./media/characters/uvula/front.svg",
  44210. extra: 705/613,
  44211. bottom: 54/759
  44212. }
  44213. },
  44214. maw: {
  44215. height: math.unit(23.5, "feet"),
  44216. name: "Maw",
  44217. image: {
  44218. source: "./media/characters/uvula/maw.svg"
  44219. }
  44220. },
  44221. },
  44222. [
  44223. {
  44224. name: "Original Size",
  44225. height: math.unit(14, "inches")
  44226. },
  44227. {
  44228. name: "Human Size",
  44229. height: math.unit(6, "feet")
  44230. },
  44231. {
  44232. name: "Big",
  44233. height: math.unit(42, "feet"),
  44234. default: true
  44235. },
  44236. {
  44237. name: "Bigger",
  44238. height: math.unit(100, "feet")
  44239. },
  44240. ]
  44241. ))
  44242. characterMakers.push(() => makeCharacter(
  44243. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44244. {
  44245. front: {
  44246. height: math.unit(5 + 11/12, "feet"),
  44247. name: "Front",
  44248. image: {
  44249. source: "./media/characters/lannah/front.svg",
  44250. extra: 1208/1113,
  44251. bottom: 97/1305
  44252. }
  44253. },
  44254. },
  44255. [
  44256. {
  44257. name: "Normal",
  44258. height: math.unit(5 + 11/12, "feet"),
  44259. default: true
  44260. },
  44261. ]
  44262. ))
  44263. characterMakers.push(() => makeCharacter(
  44264. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44265. {
  44266. front: {
  44267. height: math.unit(6 + 3/12, "feet"),
  44268. weight: math.unit(3.5, "tons"),
  44269. name: "Front",
  44270. image: {
  44271. source: "./media/characters/emberflame/front.svg",
  44272. extra: 1198/672,
  44273. bottom: 82/1280
  44274. }
  44275. },
  44276. side: {
  44277. height: math.unit(6 + 3/12, "feet"),
  44278. weight: math.unit(3.5, "tons"),
  44279. name: "Side",
  44280. image: {
  44281. source: "./media/characters/emberflame/side.svg",
  44282. extra: 938/527,
  44283. bottom: 56/994
  44284. }
  44285. },
  44286. },
  44287. [
  44288. {
  44289. name: "Normal",
  44290. height: math.unit(6 + 3/12, "feet"),
  44291. default: true
  44292. },
  44293. ]
  44294. ))
  44295. characterMakers.push(() => makeCharacter(
  44296. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44297. {
  44298. side: {
  44299. height: math.unit(17.5, "feet"),
  44300. weight: math.unit(35, "tons"),
  44301. name: "Side",
  44302. image: {
  44303. source: "./media/characters/sophie-ambrose/side.svg",
  44304. extra: 1573/1242,
  44305. bottom: 71/1644
  44306. }
  44307. },
  44308. maw: {
  44309. height: math.unit(7.4, "feet"),
  44310. name: "Maw",
  44311. image: {
  44312. source: "./media/characters/sophie-ambrose/maw.svg"
  44313. }
  44314. },
  44315. },
  44316. [
  44317. {
  44318. name: "Normal",
  44319. height: math.unit(17.5, "feet"),
  44320. default: true
  44321. },
  44322. ]
  44323. ))
  44324. characterMakers.push(() => makeCharacter(
  44325. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44326. {
  44327. front: {
  44328. height: math.unit(280, "feet"),
  44329. weight: math.unit(550, "tons"),
  44330. name: "Front",
  44331. image: {
  44332. source: "./media/characters/king-mugi/front.svg",
  44333. extra: 1102/947,
  44334. bottom: 104/1206
  44335. }
  44336. },
  44337. },
  44338. [
  44339. {
  44340. name: "King Mugi",
  44341. height: math.unit(280, "feet"),
  44342. default: true
  44343. },
  44344. ]
  44345. ))
  44346. characterMakers.push(() => makeCharacter(
  44347. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44348. {
  44349. front: {
  44350. height: math.unit(64, "meters"),
  44351. name: "Front",
  44352. image: {
  44353. source: "./media/characters/nova-fox/front.svg",
  44354. extra: 1310/1246,
  44355. bottom: 65/1375
  44356. }
  44357. },
  44358. },
  44359. [
  44360. {
  44361. name: "Macro",
  44362. height: math.unit(64, "meters"),
  44363. default: true
  44364. },
  44365. ]
  44366. ))
  44367. characterMakers.push(() => makeCharacter(
  44368. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44369. {
  44370. front: {
  44371. height: math.unit(6 + 3/12, "feet"),
  44372. weight: math.unit(170, "lb"),
  44373. name: "Front",
  44374. image: {
  44375. source: "./media/characters/sam-bat/front.svg",
  44376. extra: 1601/1411,
  44377. bottom: 125/1726
  44378. }
  44379. },
  44380. back: {
  44381. height: math.unit(6 + 3/12, "feet"),
  44382. weight: math.unit(170, "lb"),
  44383. name: "Back",
  44384. image: {
  44385. source: "./media/characters/sam-bat/back.svg",
  44386. extra: 1577/1405,
  44387. bottom: 58/1635
  44388. }
  44389. },
  44390. },
  44391. [
  44392. {
  44393. name: "Normal",
  44394. height: math.unit(6 + 3/12, "feet"),
  44395. default: true
  44396. },
  44397. ]
  44398. ))
  44399. characterMakers.push(() => makeCharacter(
  44400. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44401. {
  44402. front: {
  44403. height: math.unit(59, "feet"),
  44404. weight: math.unit(40000, "lb"),
  44405. name: "Front",
  44406. image: {
  44407. source: "./media/characters/inari/front.svg",
  44408. extra: 1884/1350,
  44409. bottom: 95/1979
  44410. }
  44411. },
  44412. },
  44413. [
  44414. {
  44415. name: "Gigantamax",
  44416. height: math.unit(59, "feet"),
  44417. default: true
  44418. },
  44419. ]
  44420. ))
  44421. characterMakers.push(() => makeCharacter(
  44422. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44423. {
  44424. front: {
  44425. height: math.unit(5 + 8/12, "feet"),
  44426. name: "Front",
  44427. image: {
  44428. source: "./media/characters/elizabeth/front.svg",
  44429. extra: 1395/1298,
  44430. bottom: 54/1449
  44431. }
  44432. },
  44433. mouth: {
  44434. height: math.unit(1.97, "feet"),
  44435. name: "Mouth",
  44436. image: {
  44437. source: "./media/characters/elizabeth/mouth.svg"
  44438. }
  44439. },
  44440. foot: {
  44441. height: math.unit(1.17, "feet"),
  44442. name: "Foot",
  44443. image: {
  44444. source: "./media/characters/elizabeth/foot.svg"
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(5 + 8/12, "feet"),
  44452. default: true
  44453. },
  44454. {
  44455. name: "Minimacro",
  44456. height: math.unit(18, "feet")
  44457. },
  44458. {
  44459. name: "Macro",
  44460. height: math.unit(180, "feet")
  44461. },
  44462. ]
  44463. ))
  44464. characterMakers.push(() => makeCharacter(
  44465. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44466. {
  44467. front: {
  44468. height: math.unit(5 + 2/12, "feet"),
  44469. name: "Front",
  44470. image: {
  44471. source: "./media/characters/october-gossamer/front.svg",
  44472. extra: 505/454,
  44473. bottom: 7/512
  44474. }
  44475. },
  44476. back: {
  44477. height: math.unit(5 + 2/12, "feet"),
  44478. name: "Back",
  44479. image: {
  44480. source: "./media/characters/october-gossamer/back.svg",
  44481. extra: 501/454,
  44482. bottom: 11/512
  44483. }
  44484. },
  44485. },
  44486. [
  44487. {
  44488. name: "Normal",
  44489. height: math.unit(5 + 2/12, "feet"),
  44490. default: true
  44491. },
  44492. ]
  44493. ))
  44494. characterMakers.push(() => makeCharacter(
  44495. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44496. {
  44497. front: {
  44498. height: math.unit(5, "feet"),
  44499. name: "Front",
  44500. image: {
  44501. source: "./media/characters/epiglottis/front.svg",
  44502. extra: 923/849,
  44503. bottom: 17/940
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Original Size",
  44510. height: math.unit(10, "inches")
  44511. },
  44512. {
  44513. name: "Human Size",
  44514. height: math.unit(5, "feet"),
  44515. default: true
  44516. },
  44517. {
  44518. name: "Big",
  44519. height: math.unit(25, "feet")
  44520. },
  44521. {
  44522. name: "Bigger",
  44523. height: math.unit(50, "feet")
  44524. },
  44525. {
  44526. name: "oh lawd",
  44527. height: math.unit(75, "feet")
  44528. },
  44529. ]
  44530. ))
  44531. characterMakers.push(() => makeCharacter(
  44532. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44533. {
  44534. front: {
  44535. height: math.unit(2 + 4/12, "feet"),
  44536. weight: math.unit(60, "lb"),
  44537. name: "Front",
  44538. image: {
  44539. source: "./media/characters/lerm/front.svg",
  44540. extra: 796/790,
  44541. bottom: 79/875
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Normal",
  44548. height: math.unit(2 + 4/12, "feet"),
  44549. default: true
  44550. },
  44551. ]
  44552. ))
  44553. characterMakers.push(() => makeCharacter(
  44554. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44555. {
  44556. front: {
  44557. height: math.unit(5.5, "feet"),
  44558. weight: math.unit(130, "lb"),
  44559. name: "Front",
  44560. image: {
  44561. source: "./media/characters/xena-nebadon/front.svg",
  44562. extra: 1828/1730,
  44563. bottom: 79/1907
  44564. }
  44565. },
  44566. },
  44567. [
  44568. {
  44569. name: "Tiny Puppy",
  44570. height: math.unit(3, "inches")
  44571. },
  44572. {
  44573. name: "Normal",
  44574. height: math.unit(5.5, "feet"),
  44575. default: true
  44576. },
  44577. {
  44578. name: "Lotta Lady",
  44579. height: math.unit(12, "feet")
  44580. },
  44581. {
  44582. name: "Pretty Big",
  44583. height: math.unit(100, "feet")
  44584. },
  44585. {
  44586. name: "Big",
  44587. height: math.unit(500, "feet")
  44588. },
  44589. {
  44590. name: "Skyscraper Toys",
  44591. height: math.unit(2500, "feet")
  44592. },
  44593. {
  44594. name: "Plane Catcher",
  44595. height: math.unit(8, "miles")
  44596. },
  44597. {
  44598. name: "Planet Toys",
  44599. height: math.unit(15, "earths")
  44600. },
  44601. {
  44602. name: "Stardust",
  44603. height: math.unit(0.25, "galaxies")
  44604. },
  44605. {
  44606. name: "Snacks",
  44607. height: math.unit(70, "universes")
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44613. {
  44614. front: {
  44615. height: math.unit(1.6, "meters"),
  44616. weight: math.unit(60, "kg"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/bounty/front.svg",
  44620. extra: 1426/1308,
  44621. bottom: 15/1441
  44622. }
  44623. },
  44624. back: {
  44625. height: math.unit(1.6, "meters"),
  44626. weight: math.unit(60, "kg"),
  44627. name: "Back",
  44628. image: {
  44629. source: "./media/characters/bounty/back.svg",
  44630. extra: 1417/1307,
  44631. bottom: 8/1425
  44632. }
  44633. },
  44634. },
  44635. [
  44636. {
  44637. name: "Normal",
  44638. height: math.unit(1.6, "meters"),
  44639. default: true
  44640. },
  44641. {
  44642. name: "Macro",
  44643. height: math.unit(300, "meters")
  44644. },
  44645. ]
  44646. ))
  44647. characterMakers.push(() => makeCharacter(
  44648. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44649. {
  44650. front: {
  44651. height: math.unit(2 + 8/12, "feet"),
  44652. weight: math.unit(15, "lb"),
  44653. name: "Front",
  44654. image: {
  44655. source: "./media/characters/mochi/front.svg",
  44656. extra: 1022/852,
  44657. bottom: 435/1457
  44658. }
  44659. },
  44660. back: {
  44661. height: math.unit(2 + 8/12, "feet"),
  44662. weight: math.unit(15, "lb"),
  44663. name: "Back",
  44664. image: {
  44665. source: "./media/characters/mochi/back.svg",
  44666. extra: 1335/1119,
  44667. bottom: 39/1374
  44668. }
  44669. },
  44670. bird: {
  44671. height: math.unit(2 + 8/12, "feet"),
  44672. weight: math.unit(15, "lb"),
  44673. name: "Bird",
  44674. image: {
  44675. source: "./media/characters/mochi/bird.svg",
  44676. extra: 1251/1113,
  44677. bottom: 178/1429
  44678. }
  44679. },
  44680. kaiju: {
  44681. height: math.unit(154, "feet"),
  44682. weight: math.unit(1e7, "lb"),
  44683. name: "Kaiju",
  44684. image: {
  44685. source: "./media/characters/mochi/kaiju.svg",
  44686. extra: 460/324,
  44687. bottom: 40/500
  44688. }
  44689. },
  44690. head: {
  44691. height: math.unit(1.21, "feet"),
  44692. name: "Head",
  44693. image: {
  44694. source: "./media/characters/mochi/head.svg"
  44695. }
  44696. },
  44697. alternateTail: {
  44698. height: math.unit(2 + 8/12, "feet"),
  44699. weight: math.unit(45, "lb"),
  44700. name: "Alternate Tail",
  44701. image: {
  44702. source: "./media/characters/mochi/alternate-tail.svg",
  44703. extra: 139/76,
  44704. bottom: 45/184
  44705. }
  44706. },
  44707. },
  44708. [
  44709. {
  44710. name: "Micro",
  44711. height: math.unit(2, "inches")
  44712. },
  44713. {
  44714. name: "Normal",
  44715. height: math.unit(2 + 8/12, "feet"),
  44716. default: true
  44717. },
  44718. {
  44719. name: "Macro",
  44720. height: math.unit(106, "feet")
  44721. },
  44722. ]
  44723. ))
  44724. characterMakers.push(() => makeCharacter(
  44725. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44726. {
  44727. front: {
  44728. height: math.unit(5.67, "feet"),
  44729. weight: math.unit(135, "lb"),
  44730. name: "Front",
  44731. image: {
  44732. source: "./media/characters/sarel/front.svg",
  44733. extra: 865/788,
  44734. bottom: 97/962
  44735. }
  44736. },
  44737. back: {
  44738. height: math.unit(5.67, "feet"),
  44739. weight: math.unit(135, "lb"),
  44740. name: "Back",
  44741. image: {
  44742. source: "./media/characters/sarel/back.svg",
  44743. extra: 857/777,
  44744. bottom: 32/889
  44745. }
  44746. },
  44747. chozoan: {
  44748. height: math.unit(5.67, "feet"),
  44749. weight: math.unit(135, "lb"),
  44750. name: "Chozoan",
  44751. image: {
  44752. source: "./media/characters/sarel/chozoan.svg",
  44753. extra: 865/788,
  44754. bottom: 97/962
  44755. }
  44756. },
  44757. current: {
  44758. height: math.unit(5.67, "feet"),
  44759. weight: math.unit(135, "lb"),
  44760. name: "Current",
  44761. image: {
  44762. source: "./media/characters/sarel/current.svg",
  44763. extra: 865/788,
  44764. bottom: 97/962
  44765. }
  44766. },
  44767. head: {
  44768. height: math.unit(1.77, "feet"),
  44769. name: "Head",
  44770. image: {
  44771. source: "./media/characters/sarel/head.svg"
  44772. }
  44773. },
  44774. claws: {
  44775. height: math.unit(1.8, "feet"),
  44776. name: "Claws",
  44777. image: {
  44778. source: "./media/characters/sarel/claws.svg"
  44779. }
  44780. },
  44781. clawsAlt: {
  44782. height: math.unit(1.8, "feet"),
  44783. name: "Claws-alt",
  44784. image: {
  44785. source: "./media/characters/sarel/claws-alt.svg"
  44786. }
  44787. },
  44788. },
  44789. [
  44790. {
  44791. name: "Normal",
  44792. height: math.unit(5.67, "feet"),
  44793. default: true
  44794. },
  44795. ]
  44796. ))
  44797. characterMakers.push(() => makeCharacter(
  44798. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44799. {
  44800. front: {
  44801. height: math.unit(5500, "feet"),
  44802. name: "Front",
  44803. image: {
  44804. source: "./media/characters/alyonia/front.svg",
  44805. extra: 1200/1135,
  44806. bottom: 29/1229
  44807. }
  44808. },
  44809. back: {
  44810. height: math.unit(5500, "feet"),
  44811. name: "Back",
  44812. image: {
  44813. source: "./media/characters/alyonia/back.svg",
  44814. extra: 1205/1138,
  44815. bottom: 10/1215
  44816. }
  44817. },
  44818. },
  44819. [
  44820. {
  44821. name: "Small",
  44822. height: math.unit(10, "feet")
  44823. },
  44824. {
  44825. name: "Macro",
  44826. height: math.unit(500, "feet")
  44827. },
  44828. {
  44829. name: "Mega Macro",
  44830. height: math.unit(5500, "feet"),
  44831. default: true
  44832. },
  44833. {
  44834. name: "Mega Macro+",
  44835. height: math.unit(500000, "feet")
  44836. },
  44837. {
  44838. name: "Giga Macro",
  44839. height: math.unit(3000, "miles")
  44840. },
  44841. {
  44842. name: "Tera Macro",
  44843. height: math.unit(2.8e6, "miles")
  44844. },
  44845. {
  44846. name: "Galactic",
  44847. height: math.unit(120000, "lightyears")
  44848. },
  44849. ]
  44850. ))
  44851. characterMakers.push(() => makeCharacter(
  44852. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44853. {
  44854. werewolf: {
  44855. height: math.unit(8, "feet"),
  44856. weight: math.unit(425, "lb"),
  44857. name: "Werewolf",
  44858. image: {
  44859. source: "./media/characters/autumn/werewolf.svg",
  44860. extra: 2154/2031,
  44861. bottom: 160/2314
  44862. }
  44863. },
  44864. human: {
  44865. height: math.unit(5 + 8/12, "feet"),
  44866. weight: math.unit(150, "lb"),
  44867. name: "Human",
  44868. image: {
  44869. source: "./media/characters/autumn/human.svg",
  44870. extra: 1200/1149,
  44871. bottom: 30/1230
  44872. }
  44873. },
  44874. },
  44875. [
  44876. {
  44877. name: "Normal",
  44878. height: math.unit(8, "feet"),
  44879. default: true
  44880. },
  44881. ]
  44882. ))
  44883. characterMakers.push(() => makeCharacter(
  44884. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44885. {
  44886. front: {
  44887. height: math.unit(8 + 5/12, "feet"),
  44888. weight: math.unit(825, "lb"),
  44889. name: "Front",
  44890. image: {
  44891. source: "./media/characters/cobalt-charizard/front.svg",
  44892. extra: 1268/1155,
  44893. bottom: 122/1390
  44894. }
  44895. },
  44896. side: {
  44897. height: math.unit(8 + 5/12, "feet"),
  44898. weight: math.unit(825, "lb"),
  44899. name: "Side",
  44900. image: {
  44901. source: "./media/characters/cobalt-charizard/side.svg",
  44902. extra: 1348/1257,
  44903. bottom: 58/1406
  44904. }
  44905. },
  44906. gMax: {
  44907. height: math.unit(134 + 11/12, "feet"),
  44908. name: "G-Max",
  44909. image: {
  44910. source: "./media/characters/cobalt-charizard/g-max.svg",
  44911. extra: 1835/1541,
  44912. bottom: 151/1986
  44913. }
  44914. },
  44915. },
  44916. [
  44917. {
  44918. name: "Normal",
  44919. height: math.unit(8 + 5/12, "feet"),
  44920. default: true
  44921. },
  44922. ]
  44923. ))
  44924. characterMakers.push(() => makeCharacter(
  44925. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44926. {
  44927. front: {
  44928. height: math.unit(6 + 3/12, "feet"),
  44929. weight: math.unit(210, "lb"),
  44930. name: "Front",
  44931. image: {
  44932. source: "./media/characters/stella/front.svg",
  44933. extra: 3549/3335,
  44934. bottom: 51/3600
  44935. }
  44936. },
  44937. },
  44938. [
  44939. {
  44940. name: "Normal",
  44941. height: math.unit(6 + 3/12, "feet"),
  44942. default: true
  44943. },
  44944. ]
  44945. ))
  44946. characterMakers.push(() => makeCharacter(
  44947. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44948. {
  44949. front: {
  44950. height: math.unit(5, "feet"),
  44951. weight: math.unit(90, "lb"),
  44952. name: "Front",
  44953. image: {
  44954. source: "./media/characters/riley-bishop/front.svg",
  44955. extra: 1450/1428,
  44956. bottom: 152/1602
  44957. }
  44958. },
  44959. },
  44960. [
  44961. {
  44962. name: "Normal",
  44963. height: math.unit(5, "feet"),
  44964. default: true
  44965. },
  44966. ]
  44967. ))
  44968. characterMakers.push(() => makeCharacter(
  44969. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44970. {
  44971. side: {
  44972. height: math.unit(8 + 2/12, "feet"),
  44973. weight: math.unit(500, "kg"),
  44974. name: "Side",
  44975. image: {
  44976. source: "./media/characters/theo-arcanine/side.svg",
  44977. extra: 1342/1074,
  44978. bottom: 111/1453
  44979. }
  44980. },
  44981. },
  44982. [
  44983. {
  44984. name: "Normal",
  44985. height: math.unit(8 + 2/12, "feet"),
  44986. default: true
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44992. {
  44993. front: {
  44994. height: math.unit(4, "feet"),
  44995. name: "Front",
  44996. image: {
  44997. source: "./media/characters/kali/front.svg",
  44998. extra: 1921/1357,
  44999. bottom: 70/1991
  45000. }
  45001. },
  45002. },
  45003. [
  45004. {
  45005. name: "Normal",
  45006. height: math.unit(4, "feet"),
  45007. default: true
  45008. },
  45009. {
  45010. name: "Macro",
  45011. height: math.unit(32, "meters")
  45012. },
  45013. {
  45014. name: "Macro+",
  45015. height: math.unit(150, "meters")
  45016. },
  45017. {
  45018. name: "Megamacro",
  45019. height: math.unit(7500, "meters")
  45020. },
  45021. {
  45022. name: "Megamacro+",
  45023. height: math.unit(80, "kilometers")
  45024. },
  45025. ]
  45026. ))
  45027. characterMakers.push(() => makeCharacter(
  45028. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45029. {
  45030. side: {
  45031. height: math.unit(5 + 11/12, "feet"),
  45032. weight: math.unit(236, "lb"),
  45033. name: "Side",
  45034. image: {
  45035. source: "./media/characters/gapp/side.svg",
  45036. extra: 775/340,
  45037. bottom: 58/833
  45038. }
  45039. },
  45040. mouth: {
  45041. height: math.unit(2.98, "feet"),
  45042. name: "Mouth",
  45043. image: {
  45044. source: "./media/characters/gapp/mouth.svg"
  45045. }
  45046. },
  45047. },
  45048. [
  45049. {
  45050. name: "Normal",
  45051. height: math.unit(5 + 1/12, "feet"),
  45052. default: true
  45053. },
  45054. ]
  45055. ))
  45056. characterMakers.push(() => makeCharacter(
  45057. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45058. {
  45059. front: {
  45060. height: math.unit(6, "feet"),
  45061. name: "Front",
  45062. image: {
  45063. source: "./media/characters/persephone/front.svg",
  45064. extra: 1895/1717,
  45065. bottom: 96/1991
  45066. }
  45067. },
  45068. back: {
  45069. height: math.unit(6, "feet"),
  45070. name: "Back",
  45071. image: {
  45072. source: "./media/characters/persephone/back.svg",
  45073. extra: 1868/1679,
  45074. bottom: 26/1894
  45075. }
  45076. },
  45077. casual: {
  45078. height: math.unit(6, "feet"),
  45079. name: "Casual",
  45080. image: {
  45081. source: "./media/characters/persephone/casual.svg",
  45082. extra: 1713/1541,
  45083. bottom: 76/1789
  45084. }
  45085. },
  45086. },
  45087. [
  45088. {
  45089. name: "Human Size",
  45090. height: math.unit(6, "feet")
  45091. },
  45092. {
  45093. name: "Big Steppy",
  45094. height: math.unit(600, "meters"),
  45095. default: true
  45096. },
  45097. {
  45098. name: "Galaxy Brain",
  45099. height: math.unit(1, "zettameter")
  45100. },
  45101. ]
  45102. ))
  45103. characterMakers.push(() => makeCharacter(
  45104. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45105. {
  45106. front: {
  45107. height: math.unit(1.85, "meters"),
  45108. name: "Front",
  45109. image: {
  45110. source: "./media/characters/riley-foxthing/front.svg",
  45111. extra: 1495/1354,
  45112. bottom: 122/1617
  45113. }
  45114. },
  45115. frontAlt: {
  45116. height: math.unit(1.85, "meters"),
  45117. name: "Front (Alt)",
  45118. image: {
  45119. source: "./media/characters/riley-foxthing/front-alt.svg",
  45120. extra: 1572/1389,
  45121. bottom: 116/1688
  45122. }
  45123. },
  45124. },
  45125. [
  45126. {
  45127. name: "Normal Sized",
  45128. height: math.unit(1.85, "meters"),
  45129. default: true
  45130. },
  45131. {
  45132. name: "Quite Sizable",
  45133. height: math.unit(5, "meters")
  45134. },
  45135. {
  45136. name: "Rather Large",
  45137. height: math.unit(20, "meters")
  45138. },
  45139. {
  45140. name: "Macro",
  45141. height: math.unit(450, "meters")
  45142. },
  45143. {
  45144. name: "Giga",
  45145. height: math.unit(5, "km")
  45146. },
  45147. ]
  45148. ))
  45149. characterMakers.push(() => makeCharacter(
  45150. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45151. {
  45152. front: {
  45153. height: math.unit(6, "feet"),
  45154. weight: math.unit(200, "lb"),
  45155. name: "Front",
  45156. image: {
  45157. source: "./media/characters/blizzard/front.svg",
  45158. extra: 1136/990,
  45159. bottom: 136/1272
  45160. }
  45161. },
  45162. back: {
  45163. height: math.unit(6, "feet"),
  45164. weight: math.unit(200, "lb"),
  45165. name: "Back",
  45166. image: {
  45167. source: "./media/characters/blizzard/back.svg",
  45168. extra: 1175/1034,
  45169. bottom: 97/1272
  45170. }
  45171. },
  45172. sitting: {
  45173. height: math.unit(3.725, "feet"),
  45174. weight: math.unit(200, "lb"),
  45175. name: "Sitting",
  45176. image: {
  45177. source: "./media/characters/blizzard/sitting.svg",
  45178. extra: 581/485,
  45179. bottom: 90/671
  45180. }
  45181. },
  45182. frontWizard: {
  45183. height: math.unit(7.9, "feet"),
  45184. weight: math.unit(200, "lb"),
  45185. name: "Front (Wizard)",
  45186. image: {
  45187. source: "./media/characters/blizzard/front-wizard.svg"
  45188. }
  45189. },
  45190. backWizard: {
  45191. height: math.unit(7.9, "feet"),
  45192. weight: math.unit(200, "lb"),
  45193. name: "Back (Wizard)",
  45194. image: {
  45195. source: "./media/characters/blizzard/back-wizard.svg"
  45196. }
  45197. },
  45198. frontNsfw: {
  45199. height: math.unit(6, "feet"),
  45200. weight: math.unit(200, "lb"),
  45201. name: "Front (NSFW)",
  45202. image: {
  45203. source: "./media/characters/blizzard/front-nsfw.svg",
  45204. extra: 1136/990,
  45205. bottom: 136/1272
  45206. }
  45207. },
  45208. backNsfw: {
  45209. height: math.unit(6, "feet"),
  45210. weight: math.unit(200, "lb"),
  45211. name: "Back (NSFW)",
  45212. image: {
  45213. source: "./media/characters/blizzard/back-nsfw.svg",
  45214. extra: 1175/1034,
  45215. bottom: 97/1272
  45216. }
  45217. },
  45218. sittingNsfw: {
  45219. height: math.unit(3.725, "feet"),
  45220. weight: math.unit(200, "lb"),
  45221. name: "Sitting (NSFW)",
  45222. image: {
  45223. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45224. extra: 581/485,
  45225. bottom: 90/671
  45226. }
  45227. },
  45228. wizardFrontNsfw: {
  45229. height: math.unit(7.9, "feet"),
  45230. weight: math.unit(200, "lb"),
  45231. name: "Wizard (Front, NSFW)",
  45232. image: {
  45233. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45234. }
  45235. },
  45236. },
  45237. [
  45238. {
  45239. name: "Normal",
  45240. height: math.unit(6, "feet"),
  45241. default: true
  45242. },
  45243. ]
  45244. ))
  45245. characterMakers.push(() => makeCharacter(
  45246. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45247. {
  45248. front: {
  45249. height: math.unit(5 + 2/12, "feet"),
  45250. name: "Front",
  45251. image: {
  45252. source: "./media/characters/lumi/front.svg",
  45253. extra: 1328/1268,
  45254. bottom: 103/1431
  45255. }
  45256. },
  45257. back: {
  45258. height: math.unit(5 + 2/12, "feet"),
  45259. name: "Back",
  45260. image: {
  45261. source: "./media/characters/lumi/back.svg",
  45262. extra: 1381/1327,
  45263. bottom: 43/1424
  45264. }
  45265. },
  45266. },
  45267. [
  45268. {
  45269. name: "Normal",
  45270. height: math.unit(5 + 2/12, "feet"),
  45271. default: true
  45272. },
  45273. ]
  45274. ))
  45275. characterMakers.push(() => makeCharacter(
  45276. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45277. {
  45278. front: {
  45279. height: math.unit(5 + 9/12, "feet"),
  45280. name: "Front",
  45281. image: {
  45282. source: "./media/characters/aliya-cotton/front.svg",
  45283. extra: 577/564,
  45284. bottom: 29/606
  45285. }
  45286. },
  45287. },
  45288. [
  45289. {
  45290. name: "Normal",
  45291. height: math.unit(5 + 9/12, "feet"),
  45292. default: true
  45293. },
  45294. ]
  45295. ))
  45296. characterMakers.push(() => makeCharacter(
  45297. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45298. {
  45299. front: {
  45300. height: math.unit(2.7, "meters"),
  45301. weight: math.unit(25000, "lb"),
  45302. name: "Front",
  45303. image: {
  45304. source: "./media/characters/noah-luxray/front.svg",
  45305. extra: 1644/825,
  45306. bottom: 339/1983
  45307. }
  45308. },
  45309. side: {
  45310. height: math.unit(2.97, "meters"),
  45311. weight: math.unit(25000, "lb"),
  45312. name: "Side",
  45313. image: {
  45314. source: "./media/characters/noah-luxray/side.svg",
  45315. extra: 1319/650,
  45316. bottom: 163/1482
  45317. }
  45318. },
  45319. dick: {
  45320. height: math.unit(7.4, "feet"),
  45321. weight: math.unit(2500, "lb"),
  45322. name: "Dick",
  45323. image: {
  45324. source: "./media/characters/noah-luxray/dick.svg"
  45325. }
  45326. },
  45327. dickAlt: {
  45328. height: math.unit(10.83, "feet"),
  45329. weight: math.unit(2500, "lb"),
  45330. name: "Dick-alt",
  45331. image: {
  45332. source: "./media/characters/noah-luxray/dick-alt.svg"
  45333. }
  45334. },
  45335. },
  45336. [
  45337. {
  45338. name: "BIG",
  45339. height: math.unit(2.7, "meters"),
  45340. default: true
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45346. {
  45347. standing: {
  45348. height: math.unit(183, "cm"),
  45349. weight: math.unit(68, "kg"),
  45350. name: "Standing",
  45351. image: {
  45352. source: "./media/characters/arion/standing.svg",
  45353. extra: 1869/1807,
  45354. bottom: 93/1962
  45355. }
  45356. },
  45357. reclining: {
  45358. height: math.unit(70.5, "cm"),
  45359. weight: math.unit(68, "lb"),
  45360. name: "Reclining",
  45361. image: {
  45362. source: "./media/characters/arion/reclining.svg",
  45363. extra: 937/870,
  45364. bottom: 63/1000
  45365. }
  45366. },
  45367. },
  45368. [
  45369. {
  45370. name: "Colossus Size, Low",
  45371. height: math.unit(33, "meters"),
  45372. default: true
  45373. },
  45374. {
  45375. name: "Colossus Size, Mid",
  45376. height: math.unit(52, "meters")
  45377. },
  45378. {
  45379. name: "Colossus Size, High",
  45380. height: math.unit(60, "meters")
  45381. },
  45382. {
  45383. name: "Titan Size, Low",
  45384. height: math.unit(91, "meters"),
  45385. },
  45386. {
  45387. name: "Titan Size, Mid",
  45388. height: math.unit(122, "meters")
  45389. },
  45390. {
  45391. name: "Titan Size, High",
  45392. height: math.unit(162, "meters")
  45393. },
  45394. ]
  45395. ))
  45396. characterMakers.push(() => makeCharacter(
  45397. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45398. {
  45399. front: {
  45400. height: math.unit(53, "meters"),
  45401. name: "Front",
  45402. image: {
  45403. source: "./media/characters/stellar-marbey/front.svg",
  45404. extra: 1913/1805,
  45405. bottom: 92/2005
  45406. }
  45407. },
  45408. back: {
  45409. height: math.unit(53, "meters"),
  45410. name: "Back",
  45411. image: {
  45412. source: "./media/characters/stellar-marbey/back.svg",
  45413. extra: 1960/1851,
  45414. bottom: 28/1988
  45415. }
  45416. },
  45417. mouth: {
  45418. height: math.unit(3.5, "meters"),
  45419. name: "Mouth",
  45420. image: {
  45421. source: "./media/characters/stellar-marbey/mouth.svg"
  45422. }
  45423. },
  45424. },
  45425. [
  45426. {
  45427. name: "Macro",
  45428. height: math.unit(53, "meters"),
  45429. default: true
  45430. },
  45431. ]
  45432. ))
  45433. characterMakers.push(() => makeCharacter(
  45434. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45435. {
  45436. front: {
  45437. height: math.unit(8 + 1/12, "feet"),
  45438. weight: math.unit(233, "lb"),
  45439. name: "Front",
  45440. image: {
  45441. source: "./media/characters/matsu/front.svg",
  45442. extra: 832/772,
  45443. bottom: 40/872
  45444. }
  45445. },
  45446. back: {
  45447. height: math.unit(8 + 1/12, "feet"),
  45448. weight: math.unit(233, "lb"),
  45449. name: "Back",
  45450. image: {
  45451. source: "./media/characters/matsu/back.svg",
  45452. extra: 839/780,
  45453. bottom: 47/886
  45454. }
  45455. },
  45456. },
  45457. [
  45458. {
  45459. name: "Normal",
  45460. height: math.unit(8 + 1/12, "feet"),
  45461. default: true
  45462. },
  45463. ]
  45464. ))
  45465. characterMakers.push(() => makeCharacter(
  45466. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45467. {
  45468. front: {
  45469. height: math.unit(4, "feet"),
  45470. weight: math.unit(148, "lb"),
  45471. name: "Front",
  45472. image: {
  45473. source: "./media/characters/thiz/front.svg",
  45474. extra: 1913/1748,
  45475. bottom: 62/1975
  45476. }
  45477. },
  45478. },
  45479. [
  45480. {
  45481. name: "Normal",
  45482. height: math.unit(4, "feet"),
  45483. default: true
  45484. },
  45485. ]
  45486. ))
  45487. characterMakers.push(() => makeCharacter(
  45488. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45489. {
  45490. front: {
  45491. height: math.unit(7 + 6/12, "feet"),
  45492. weight: math.unit(267, "lb"),
  45493. name: "Front",
  45494. image: {
  45495. source: "./media/characters/marcel/front.svg",
  45496. extra: 1221/1096,
  45497. bottom: 76/1297
  45498. }
  45499. },
  45500. },
  45501. [
  45502. {
  45503. name: "Normal",
  45504. height: math.unit(7 + 6/12, "feet"),
  45505. default: true
  45506. },
  45507. ]
  45508. ))
  45509. characterMakers.push(() => makeCharacter(
  45510. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45511. {
  45512. side: {
  45513. height: math.unit(42, "meters"),
  45514. name: "Side",
  45515. image: {
  45516. source: "./media/characters/flake/side.svg",
  45517. extra: 1525/1306,
  45518. bottom: 209/1734
  45519. }
  45520. },
  45521. },
  45522. [
  45523. {
  45524. name: "Normal",
  45525. height: math.unit(42, "meters"),
  45526. default: true
  45527. },
  45528. ]
  45529. ))
  45530. characterMakers.push(() => makeCharacter(
  45531. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45532. {
  45533. dressed: {
  45534. height: math.unit(6 + 4/12, "feet"),
  45535. weight: math.unit(520, "lb"),
  45536. name: "Dressed",
  45537. image: {
  45538. source: "./media/characters/someonne/dressed.svg",
  45539. extra: 1020/1010,
  45540. bottom: 178/1198
  45541. }
  45542. },
  45543. undressed: {
  45544. height: math.unit(6 + 4/12, "feet"),
  45545. weight: math.unit(520, "lb"),
  45546. name: "Undressed",
  45547. image: {
  45548. source: "./media/characters/someonne/undressed.svg",
  45549. extra: 1019/1014,
  45550. bottom: 169/1188
  45551. }
  45552. },
  45553. },
  45554. [
  45555. {
  45556. name: "Normal",
  45557. height: math.unit(6 + 4/12, "feet"),
  45558. default: true
  45559. },
  45560. ]
  45561. ))
  45562. characterMakers.push(() => makeCharacter(
  45563. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45564. {
  45565. front: {
  45566. height: math.unit(3, "feet"),
  45567. weight: math.unit(30, "lb"),
  45568. name: "Front",
  45569. image: {
  45570. source: "./media/characters/till/front.svg",
  45571. extra: 892/823,
  45572. bottom: 55/947
  45573. }
  45574. },
  45575. },
  45576. [
  45577. {
  45578. name: "Normal",
  45579. height: math.unit(3, "feet"),
  45580. default: true
  45581. },
  45582. ]
  45583. ))
  45584. characterMakers.push(() => makeCharacter(
  45585. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45586. {
  45587. front: {
  45588. height: math.unit(9 + 8/12, "feet"),
  45589. weight: math.unit(800, "lb"),
  45590. name: "Front",
  45591. image: {
  45592. source: "./media/characters/sydney-heki/front.svg",
  45593. extra: 1360/1300,
  45594. bottom: 22/1382
  45595. }
  45596. },
  45597. back: {
  45598. height: math.unit(9 + 8/12, "feet"),
  45599. weight: math.unit(800, "lb"),
  45600. name: "Back",
  45601. image: {
  45602. source: "./media/characters/sydney-heki/back.svg",
  45603. extra: 1356/1293,
  45604. bottom: 12/1368
  45605. }
  45606. },
  45607. frontDressed: {
  45608. height: math.unit(9 + 8/12, "feet"),
  45609. weight: math.unit(800, "lb"),
  45610. name: "Front-dressed",
  45611. image: {
  45612. source: "./media/characters/sydney-heki/front-dressed.svg",
  45613. extra: 1360/1300,
  45614. bottom: 22/1382
  45615. }
  45616. },
  45617. },
  45618. [
  45619. {
  45620. name: "Normal",
  45621. height: math.unit(9 + 8/12, "feet"),
  45622. default: true
  45623. },
  45624. {
  45625. name: "Macro",
  45626. height: math.unit(500, "feet")
  45627. },
  45628. {
  45629. name: "Megamacro",
  45630. height: math.unit(3.6, "miles")
  45631. },
  45632. ]
  45633. ))
  45634. characterMakers.push(() => makeCharacter(
  45635. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45636. {
  45637. front: {
  45638. height: math.unit(200, "cm"),
  45639. weight: math.unit(250, "lb"),
  45640. name: "Front",
  45641. image: {
  45642. source: "./media/characters/fowler-karlsson/front.svg",
  45643. extra: 897/845,
  45644. bottom: 123/1020
  45645. }
  45646. },
  45647. back: {
  45648. height: math.unit(200, "cm"),
  45649. weight: math.unit(250, "lb"),
  45650. name: "Back",
  45651. image: {
  45652. source: "./media/characters/fowler-karlsson/back.svg",
  45653. extra: 999/944,
  45654. bottom: 26/1025
  45655. }
  45656. },
  45657. dick: {
  45658. height: math.unit(1.92, "feet"),
  45659. weight: math.unit(150, "lb"),
  45660. name: "Dick",
  45661. image: {
  45662. source: "./media/characters/fowler-karlsson/dick.svg"
  45663. }
  45664. },
  45665. },
  45666. [
  45667. {
  45668. name: "Normal",
  45669. height: math.unit(200, "cm"),
  45670. default: true
  45671. },
  45672. {
  45673. name: "Smaller Macro",
  45674. height: math.unit(90, "m")
  45675. },
  45676. {
  45677. name: "Macro",
  45678. height: math.unit(150, "m")
  45679. },
  45680. {
  45681. name: "Bigger Macro",
  45682. height: math.unit(300, "m")
  45683. },
  45684. ]
  45685. ))
  45686. characterMakers.push(() => makeCharacter(
  45687. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45688. {
  45689. side: {
  45690. height: math.unit(8 + 2/12, "feet"),
  45691. weight: math.unit(1, "tonne"),
  45692. name: "Side",
  45693. image: {
  45694. source: "./media/characters/rylide/side.svg",
  45695. extra: 1318/1034,
  45696. bottom: 106/1424
  45697. }
  45698. },
  45699. sitting: {
  45700. height: math.unit(303, "cm"),
  45701. weight: math.unit(1, "tonne"),
  45702. name: "Sitting",
  45703. image: {
  45704. source: "./media/characters/rylide/sitting.svg",
  45705. extra: 1303/1103,
  45706. bottom: 36/1339
  45707. }
  45708. },
  45709. },
  45710. [
  45711. {
  45712. name: "Normal",
  45713. height: math.unit(8 + 2/12, "feet"),
  45714. default: true
  45715. },
  45716. ]
  45717. ))
  45718. characterMakers.push(() => makeCharacter(
  45719. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45720. {
  45721. front: {
  45722. height: math.unit(5 + 10/12, "feet"),
  45723. weight: math.unit(160, "lb"),
  45724. name: "Front",
  45725. image: {
  45726. source: "./media/characters/pudask/front.svg",
  45727. extra: 1616/1590,
  45728. bottom: 161/1777
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Ferret Height",
  45735. height: math.unit(2 + 5/12, "feet")
  45736. },
  45737. {
  45738. name: "Canon Height",
  45739. height: math.unit(5 + 10/12, "feet"),
  45740. default: true
  45741. },
  45742. ]
  45743. ))
  45744. characterMakers.push(() => makeCharacter(
  45745. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45746. {
  45747. front: {
  45748. height: math.unit(3 + 6/12, "feet"),
  45749. weight: math.unit(60, "lb"),
  45750. name: "Front",
  45751. image: {
  45752. source: "./media/characters/ramita/front.svg",
  45753. extra: 1402/1232,
  45754. bottom: 62/1464
  45755. }
  45756. },
  45757. dressed: {
  45758. height: math.unit(3 + 6/12, "feet"),
  45759. weight: math.unit(60, "lb"),
  45760. name: "Dressed",
  45761. image: {
  45762. source: "./media/characters/ramita/dressed.svg",
  45763. extra: 1534/1249,
  45764. bottom: 50/1584
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Normal",
  45771. height: math.unit(3 + 6/12, "feet"),
  45772. default: true
  45773. },
  45774. ]
  45775. ))
  45776. characterMakers.push(() => makeCharacter(
  45777. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45778. {
  45779. front: {
  45780. height: math.unit(8, "feet"),
  45781. name: "Front",
  45782. image: {
  45783. source: "./media/characters/ark/front.svg",
  45784. extra: 772/693,
  45785. bottom: 45/817
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Normal",
  45792. height: math.unit(8, "feet"),
  45793. default: true
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45799. {
  45800. front: {
  45801. height: math.unit(6, "feet"),
  45802. weight: math.unit(250, "lb"),
  45803. volume: math.unit(5/8, "gallons"),
  45804. name: "Front",
  45805. image: {
  45806. source: "./media/characters/ludwig-horn/front.svg",
  45807. extra: 1782/1635,
  45808. bottom: 96/1878
  45809. }
  45810. },
  45811. back: {
  45812. height: math.unit(6, "feet"),
  45813. weight: math.unit(250, "lb"),
  45814. volume: math.unit(5/8, "gallons"),
  45815. name: "Back",
  45816. image: {
  45817. source: "./media/characters/ludwig-horn/back.svg",
  45818. extra: 1874/1729,
  45819. bottom: 27/1901
  45820. }
  45821. },
  45822. dick: {
  45823. height: math.unit(1.05, "feet"),
  45824. weight: math.unit(15, "lb"),
  45825. volume: math.unit(5/8, "gallons"),
  45826. name: "Dick",
  45827. image: {
  45828. source: "./media/characters/ludwig-horn/dick.svg"
  45829. }
  45830. },
  45831. },
  45832. [
  45833. {
  45834. name: "Small",
  45835. height: math.unit(6, "feet")
  45836. },
  45837. {
  45838. name: "Typical",
  45839. height: math.unit(12, "feet"),
  45840. default: true
  45841. },
  45842. {
  45843. name: "Building",
  45844. height: math.unit(80, "feet")
  45845. },
  45846. {
  45847. name: "Town",
  45848. height: math.unit(800, "feet")
  45849. },
  45850. {
  45851. name: "Kingdom",
  45852. height: math.unit(80000, "feet")
  45853. },
  45854. {
  45855. name: "Planet",
  45856. height: math.unit(8000000, "feet")
  45857. },
  45858. {
  45859. name: "Universe",
  45860. height: math.unit(8000000000, "feet")
  45861. },
  45862. {
  45863. name: "Transcended",
  45864. height: math.unit(8e27, "feet")
  45865. },
  45866. ]
  45867. ))
  45868. characterMakers.push(() => makeCharacter(
  45869. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45870. {
  45871. front: {
  45872. height: math.unit(5, "feet"),
  45873. weight: math.unit(50, "kg"),
  45874. name: "Front",
  45875. image: {
  45876. source: "./media/characters/biot-avery/front.svg",
  45877. extra: 1295/1232,
  45878. bottom: 86/1381
  45879. }
  45880. },
  45881. },
  45882. [
  45883. {
  45884. name: "Normal",
  45885. height: math.unit(5, "feet"),
  45886. default: true
  45887. },
  45888. ]
  45889. ))
  45890. characterMakers.push(() => makeCharacter(
  45891. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45892. {
  45893. front: {
  45894. height: math.unit(6, "feet"),
  45895. name: "Front",
  45896. image: {
  45897. source: "./media/characters/kitsune-kiro/front.svg",
  45898. extra: 1270/1158,
  45899. bottom: 42/1312
  45900. }
  45901. },
  45902. frontAlt: {
  45903. height: math.unit(6, "feet"),
  45904. name: "Front-alt",
  45905. image: {
  45906. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45907. extra: 1130/1081,
  45908. bottom: 36/1166
  45909. }
  45910. },
  45911. },
  45912. [
  45913. {
  45914. name: "Smol",
  45915. height: math.unit(3, "feet")
  45916. },
  45917. {
  45918. name: "Normal",
  45919. height: math.unit(6, "feet"),
  45920. default: true
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45926. {
  45927. front: {
  45928. height: math.unit(6, "feet"),
  45929. weight: math.unit(125, "lb"),
  45930. name: "Front",
  45931. image: {
  45932. source: "./media/characters/jack-thatcher/front.svg",
  45933. extra: 1474/1370,
  45934. bottom: 26/1500
  45935. }
  45936. },
  45937. back: {
  45938. height: math.unit(6, "feet"),
  45939. weight: math.unit(125, "lb"),
  45940. name: "Back",
  45941. image: {
  45942. source: "./media/characters/jack-thatcher/back.svg",
  45943. extra: 1489/1384,
  45944. bottom: 18/1507
  45945. }
  45946. },
  45947. },
  45948. [
  45949. {
  45950. name: "Normal",
  45951. height: math.unit(6, "feet"),
  45952. default: true
  45953. },
  45954. {
  45955. name: "Macro",
  45956. height: math.unit(75, "feet")
  45957. },
  45958. {
  45959. name: "Macro-er",
  45960. height: math.unit(250, "feet")
  45961. },
  45962. ]
  45963. ))
  45964. characterMakers.push(() => makeCharacter(
  45965. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45966. {
  45967. front: {
  45968. height: math.unit(7, "feet"),
  45969. weight: math.unit(110, "kg"),
  45970. name: "Front",
  45971. image: {
  45972. source: "./media/characters/max-hyper/front.svg",
  45973. extra: 1969/1881,
  45974. bottom: 49/2018
  45975. }
  45976. },
  45977. },
  45978. [
  45979. {
  45980. name: "Normal",
  45981. height: math.unit(7, "feet"),
  45982. default: true
  45983. },
  45984. ]
  45985. ))
  45986. characterMakers.push(() => makeCharacter(
  45987. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45988. {
  45989. front: {
  45990. height: math.unit(5 + 5/12, "feet"),
  45991. weight: math.unit(160, "lb"),
  45992. name: "Front",
  45993. image: {
  45994. source: "./media/characters/spook/front.svg",
  45995. extra: 794/791,
  45996. bottom: 54/848
  45997. }
  45998. },
  45999. back: {
  46000. height: math.unit(5 + 5/12, "feet"),
  46001. weight: math.unit(160, "lb"),
  46002. name: "Back",
  46003. image: {
  46004. source: "./media/characters/spook/back.svg",
  46005. extra: 812/798,
  46006. bottom: 32/844
  46007. }
  46008. },
  46009. },
  46010. [
  46011. {
  46012. name: "Normal",
  46013. height: math.unit(5 + 5/12, "feet"),
  46014. default: true
  46015. },
  46016. ]
  46017. ))
  46018. characterMakers.push(() => makeCharacter(
  46019. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46020. {
  46021. front: {
  46022. height: math.unit(18, "feet"),
  46023. name: "Front",
  46024. image: {
  46025. source: "./media/characters/xeaduulix/front.svg",
  46026. extra: 1380/1166,
  46027. bottom: 110/1490
  46028. }
  46029. },
  46030. back: {
  46031. height: math.unit(18, "feet"),
  46032. name: "Back",
  46033. image: {
  46034. source: "./media/characters/xeaduulix/back.svg",
  46035. extra: 1592/1170,
  46036. bottom: 128/1720
  46037. }
  46038. },
  46039. frontNsfw: {
  46040. height: math.unit(18, "feet"),
  46041. name: "Front (NSFW)",
  46042. image: {
  46043. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46044. extra: 1380/1166,
  46045. bottom: 110/1490
  46046. }
  46047. },
  46048. backNsfw: {
  46049. height: math.unit(18, "feet"),
  46050. name: "Back (NSFW)",
  46051. image: {
  46052. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46053. extra: 1592/1170,
  46054. bottom: 128/1720
  46055. }
  46056. },
  46057. },
  46058. [
  46059. {
  46060. name: "Normal",
  46061. height: math.unit(18, "feet"),
  46062. default: true
  46063. },
  46064. ]
  46065. ))
  46066. characterMakers.push(() => makeCharacter(
  46067. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46068. {
  46069. spreadWings: {
  46070. height: math.unit(20, "feet"),
  46071. name: "Spread Wings",
  46072. image: {
  46073. source: "./media/characters/fledge/spread-wings.svg",
  46074. extra: 693/635,
  46075. bottom: 26/719
  46076. }
  46077. },
  46078. front: {
  46079. height: math.unit(20, "feet"),
  46080. name: "Front",
  46081. image: {
  46082. source: "./media/characters/fledge/front.svg",
  46083. extra: 684/637,
  46084. bottom: 18/702
  46085. }
  46086. },
  46087. frontAlt: {
  46088. height: math.unit(20, "feet"),
  46089. name: "Front (Alt)",
  46090. image: {
  46091. source: "./media/characters/fledge/front-alt.svg",
  46092. extra: 708/664,
  46093. bottom: 13/721
  46094. }
  46095. },
  46096. back: {
  46097. height: math.unit(20, "feet"),
  46098. name: "Back",
  46099. image: {
  46100. source: "./media/characters/fledge/back.svg",
  46101. extra: 718/634,
  46102. bottom: 22/740
  46103. }
  46104. },
  46105. head: {
  46106. height: math.unit(5.55, "feet"),
  46107. name: "Head",
  46108. image: {
  46109. source: "./media/characters/fledge/head.svg"
  46110. }
  46111. },
  46112. headAlt: {
  46113. height: math.unit(5.1, "feet"),
  46114. name: "Head (Alt)",
  46115. image: {
  46116. source: "./media/characters/fledge/head-alt.svg"
  46117. }
  46118. },
  46119. },
  46120. [
  46121. {
  46122. name: "Small",
  46123. height: math.unit(6 + 2/12, "feet")
  46124. },
  46125. {
  46126. name: "Big",
  46127. height: math.unit(20, "feet"),
  46128. default: true
  46129. },
  46130. {
  46131. name: "Giant",
  46132. height: math.unit(100, "feet")
  46133. },
  46134. {
  46135. name: "Macro",
  46136. height: math.unit(200, "feet")
  46137. },
  46138. ]
  46139. ))
  46140. characterMakers.push(() => makeCharacter(
  46141. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46142. {
  46143. front: {
  46144. height: math.unit(1, "meter"),
  46145. name: "Front",
  46146. image: {
  46147. source: "./media/characters/atlas-morenai/front.svg",
  46148. extra: 1275/1043,
  46149. bottom: 19/1294
  46150. }
  46151. },
  46152. back: {
  46153. height: math.unit(1, "meter"),
  46154. name: "Back",
  46155. image: {
  46156. source: "./media/characters/atlas-morenai/back.svg",
  46157. extra: 1141/1001,
  46158. bottom: 25/1166
  46159. }
  46160. },
  46161. },
  46162. [
  46163. {
  46164. name: "Normal",
  46165. height: math.unit(1, "meter"),
  46166. default: true
  46167. },
  46168. {
  46169. name: "Magic-Infused",
  46170. height: math.unit(5, "meters")
  46171. },
  46172. ]
  46173. ))
  46174. characterMakers.push(() => makeCharacter(
  46175. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46176. {
  46177. front: {
  46178. height: math.unit(5, "meters"),
  46179. name: "Front",
  46180. image: {
  46181. source: "./media/characters/cintia/front.svg",
  46182. extra: 1312/1228,
  46183. bottom: 38/1350
  46184. }
  46185. },
  46186. back: {
  46187. height: math.unit(5, "meters"),
  46188. name: "Back",
  46189. image: {
  46190. source: "./media/characters/cintia/back.svg",
  46191. extra: 1260/1166,
  46192. bottom: 98/1358
  46193. }
  46194. },
  46195. frontDick: {
  46196. height: math.unit(5, "meters"),
  46197. name: "Front (Dick)",
  46198. image: {
  46199. source: "./media/characters/cintia/front-dick.svg",
  46200. extra: 1312/1228,
  46201. bottom: 38/1350
  46202. }
  46203. },
  46204. backDick: {
  46205. height: math.unit(5, "meters"),
  46206. name: "Back (Dick)",
  46207. image: {
  46208. source: "./media/characters/cintia/back-dick.svg",
  46209. extra: 1260/1166,
  46210. bottom: 98/1358
  46211. }
  46212. },
  46213. bust: {
  46214. height: math.unit(1.97, "meters"),
  46215. name: "Bust",
  46216. image: {
  46217. source: "./media/characters/cintia/bust.svg",
  46218. extra: 617/565,
  46219. bottom: 0/617
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(5, "meters"),
  46227. default: true
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46233. {
  46234. side: {
  46235. height: math.unit(100, "feet"),
  46236. name: "Side",
  46237. image: {
  46238. source: "./media/characters/denora/side.svg",
  46239. extra: 875/803,
  46240. bottom: 9/884
  46241. }
  46242. },
  46243. },
  46244. [
  46245. {
  46246. name: "Standard",
  46247. height: math.unit(100, "feet"),
  46248. default: true
  46249. },
  46250. {
  46251. name: "Grand",
  46252. height: math.unit(1000, "feet")
  46253. },
  46254. {
  46255. name: "Conquering",
  46256. height: math.unit(10000, "feet")
  46257. },
  46258. ]
  46259. ))
  46260. characterMakers.push(() => makeCharacter(
  46261. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46262. {
  46263. dressed: {
  46264. height: math.unit(8 + 5/12, "feet"),
  46265. weight: math.unit(700, "lb"),
  46266. name: "Dressed",
  46267. image: {
  46268. source: "./media/characters/kiva/dressed.svg",
  46269. extra: 1102/1055,
  46270. bottom: 60/1162
  46271. }
  46272. },
  46273. nude: {
  46274. height: math.unit(8 + 5/12, "feet"),
  46275. weight: math.unit(700, "lb"),
  46276. name: "Nude",
  46277. image: {
  46278. source: "./media/characters/kiva/nude.svg",
  46279. extra: 1102/1055,
  46280. bottom: 60/1162
  46281. }
  46282. },
  46283. },
  46284. [
  46285. {
  46286. name: "Base Height",
  46287. height: math.unit(8 + 5/12, "feet"),
  46288. default: true
  46289. },
  46290. {
  46291. name: "Macro",
  46292. height: math.unit(100, "feet")
  46293. },
  46294. {
  46295. name: "Max",
  46296. height: math.unit(3280, "feet")
  46297. },
  46298. ]
  46299. ))
  46300. characterMakers.push(() => makeCharacter(
  46301. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46302. {
  46303. front: {
  46304. height: math.unit(6 + 8/12, "feet"),
  46305. weight: math.unit(250, "lb"),
  46306. name: "Front",
  46307. image: {
  46308. source: "./media/characters/ztragon/front.svg",
  46309. extra: 1825/1684,
  46310. bottom: 98/1923
  46311. }
  46312. },
  46313. },
  46314. [
  46315. {
  46316. name: "Normal",
  46317. height: math.unit(6 + 8/12, "feet"),
  46318. default: true
  46319. },
  46320. {
  46321. name: "Macro",
  46322. height: math.unit(80, "feet")
  46323. },
  46324. ]
  46325. ))
  46326. characterMakers.push(() => makeCharacter(
  46327. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46328. {
  46329. front: {
  46330. height: math.unit(10.4, "feet"),
  46331. weight: math.unit(2, "tons"),
  46332. name: "Front",
  46333. image: {
  46334. source: "./media/characters/yesenia/front.svg",
  46335. extra: 1479/1474,
  46336. bottom: 233/1712
  46337. }
  46338. },
  46339. },
  46340. [
  46341. {
  46342. name: "Normal",
  46343. height: math.unit(10.4, "feet"),
  46344. default: true
  46345. },
  46346. ]
  46347. ))
  46348. characterMakers.push(() => makeCharacter(
  46349. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46350. {
  46351. normal: {
  46352. height: math.unit(6 + 1/12, "feet"),
  46353. weight: math.unit(180, "lb"),
  46354. name: "Normal",
  46355. image: {
  46356. source: "./media/characters/leanne-lycheborne/normal.svg",
  46357. extra: 1748/1660,
  46358. bottom: 98/1846
  46359. }
  46360. },
  46361. were: {
  46362. height: math.unit(12, "feet"),
  46363. weight: math.unit(1600, "lb"),
  46364. name: "Were",
  46365. image: {
  46366. source: "./media/characters/leanne-lycheborne/were.svg",
  46367. extra: 1485/1432,
  46368. bottom: 66/1551
  46369. }
  46370. },
  46371. },
  46372. [
  46373. {
  46374. name: "Normal",
  46375. height: math.unit(6 + 1/12, "feet"),
  46376. default: true
  46377. },
  46378. ]
  46379. ))
  46380. characterMakers.push(() => makeCharacter(
  46381. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46382. {
  46383. side: {
  46384. height: math.unit(13, "feet"),
  46385. name: "Side",
  46386. image: {
  46387. source: "./media/characters/kira-tyler/side.svg",
  46388. extra: 693/393,
  46389. bottom: 58/751
  46390. }
  46391. },
  46392. },
  46393. [
  46394. {
  46395. name: "Normal",
  46396. height: math.unit(13, "feet"),
  46397. default: true
  46398. },
  46399. ]
  46400. ))
  46401. characterMakers.push(() => makeCharacter(
  46402. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46403. {
  46404. front: {
  46405. height: math.unit(10.3, "feet"),
  46406. weight: math.unit(150, "lb"),
  46407. name: "Front",
  46408. image: {
  46409. source: "./media/characters/blaze/front.svg",
  46410. extra: 1378/1286,
  46411. bottom: 172/1550
  46412. }
  46413. },
  46414. },
  46415. [
  46416. {
  46417. name: "Normal",
  46418. height: math.unit(10.3, "feet"),
  46419. default: true
  46420. },
  46421. ]
  46422. ))
  46423. characterMakers.push(() => makeCharacter(
  46424. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46425. {
  46426. side: {
  46427. height: math.unit(2, "meters"),
  46428. weight: math.unit(400, "kg"),
  46429. name: "Side",
  46430. image: {
  46431. source: "./media/characters/anu/side.svg",
  46432. extra: 506/394,
  46433. bottom: 18/524
  46434. }
  46435. },
  46436. },
  46437. [
  46438. {
  46439. name: "Humanoid",
  46440. height: math.unit(2, "meters")
  46441. },
  46442. {
  46443. name: "Normal",
  46444. height: math.unit(5, "meters"),
  46445. default: true
  46446. },
  46447. ]
  46448. ))
  46449. characterMakers.push(() => makeCharacter(
  46450. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46451. {
  46452. front: {
  46453. height: math.unit(5 + 5/12, "feet"),
  46454. weight: math.unit(170, "lb"),
  46455. name: "Front",
  46456. image: {
  46457. source: "./media/characters/synx-the-lynx/front.svg",
  46458. extra: 1893/1745,
  46459. bottom: 17/1910
  46460. }
  46461. },
  46462. side: {
  46463. height: math.unit(5 + 5/12, "feet"),
  46464. weight: math.unit(170, "lb"),
  46465. name: "Side",
  46466. image: {
  46467. source: "./media/characters/synx-the-lynx/side.svg",
  46468. extra: 1884/1740,
  46469. bottom: 39/1923
  46470. }
  46471. },
  46472. back: {
  46473. height: math.unit(5 + 5/12, "feet"),
  46474. weight: math.unit(170, "lb"),
  46475. name: "Back",
  46476. image: {
  46477. source: "./media/characters/synx-the-lynx/back.svg",
  46478. extra: 1903/1755,
  46479. bottom: 14/1917
  46480. }
  46481. },
  46482. },
  46483. [
  46484. {
  46485. name: "Normal",
  46486. height: math.unit(5 + 5/12, "feet"),
  46487. default: true
  46488. },
  46489. ]
  46490. ))
  46491. characterMakers.push(() => makeCharacter(
  46492. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46493. {
  46494. back: {
  46495. height: math.unit(15, "feet"),
  46496. name: "Back",
  46497. image: {
  46498. source: "./media/characters/nadezda-fex/back.svg",
  46499. extra: 1695/1481,
  46500. bottom: 25/1720
  46501. }
  46502. },
  46503. },
  46504. [
  46505. {
  46506. name: "Normal",
  46507. height: math.unit(15, "feet"),
  46508. default: true
  46509. },
  46510. {
  46511. name: "Macro",
  46512. height: math.unit(2.5, "miles")
  46513. },
  46514. {
  46515. name: "Goddess",
  46516. height: math.unit(2, "multiverses")
  46517. },
  46518. ]
  46519. ))
  46520. characterMakers.push(() => makeCharacter(
  46521. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46522. {
  46523. front: {
  46524. height: math.unit(216, "cm"),
  46525. name: "Front",
  46526. image: {
  46527. source: "./media/characters/lev/front.svg",
  46528. extra: 1728/1670,
  46529. bottom: 82/1810
  46530. }
  46531. },
  46532. back: {
  46533. height: math.unit(216, "cm"),
  46534. name: "Back",
  46535. image: {
  46536. source: "./media/characters/lev/back.svg",
  46537. extra: 1738/1675,
  46538. bottom: 24/1762
  46539. }
  46540. },
  46541. dressed: {
  46542. height: math.unit(216, "cm"),
  46543. name: "Dressed",
  46544. image: {
  46545. source: "./media/characters/lev/dressed.svg",
  46546. extra: 1397/1351,
  46547. bottom: 73/1470
  46548. }
  46549. },
  46550. head: {
  46551. height: math.unit(0.51, "meter"),
  46552. name: "Head",
  46553. image: {
  46554. source: "./media/characters/lev/head.svg"
  46555. }
  46556. },
  46557. },
  46558. [
  46559. {
  46560. name: "Normal",
  46561. height: math.unit(216, "cm"),
  46562. default: true
  46563. },
  46564. {
  46565. name: "Relatively Macro",
  46566. height: math.unit(80, "meters")
  46567. },
  46568. {
  46569. name: "Megamacro",
  46570. height: math.unit(21600, "meters")
  46571. },
  46572. {
  46573. name: "Megamacro+",
  46574. height: math.unit(64800, "meters")
  46575. },
  46576. ]
  46577. ))
  46578. characterMakers.push(() => makeCharacter(
  46579. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46580. {
  46581. front: {
  46582. height: math.unit(2, "meters"),
  46583. weight: math.unit(80, "kg"),
  46584. name: "Front",
  46585. image: {
  46586. source: "./media/characters/moka/front.svg",
  46587. extra: 1337/1255,
  46588. bottom: 58/1395
  46589. }
  46590. },
  46591. },
  46592. [
  46593. {
  46594. name: "Micro",
  46595. height: math.unit(15, "cm")
  46596. },
  46597. {
  46598. name: "Normal",
  46599. height: math.unit(2, "meters"),
  46600. default: true
  46601. },
  46602. {
  46603. name: "Macro",
  46604. height: math.unit(20, "meters"),
  46605. },
  46606. ]
  46607. ))
  46608. characterMakers.push(() => makeCharacter(
  46609. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46610. {
  46611. front: {
  46612. height: math.unit(9, "feet"),
  46613. weight: math.unit(240, "lb"),
  46614. name: "Front",
  46615. image: {
  46616. source: "./media/characters/kuzco/front.svg",
  46617. extra: 1593/1487,
  46618. bottom: 32/1625
  46619. }
  46620. },
  46621. side: {
  46622. height: math.unit(9, "feet"),
  46623. weight: math.unit(240, "lb"),
  46624. name: "Side",
  46625. image: {
  46626. source: "./media/characters/kuzco/side.svg",
  46627. extra: 1575/1485,
  46628. bottom: 30/1605
  46629. }
  46630. },
  46631. back: {
  46632. height: math.unit(9, "feet"),
  46633. weight: math.unit(240, "lb"),
  46634. name: "Back",
  46635. image: {
  46636. source: "./media/characters/kuzco/back.svg",
  46637. extra: 1603/1514,
  46638. bottom: 14/1617
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Normal",
  46645. height: math.unit(9, "feet"),
  46646. default: true
  46647. },
  46648. ]
  46649. ))
  46650. characterMakers.push(() => makeCharacter(
  46651. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46652. {
  46653. side: {
  46654. height: math.unit(2, "meters"),
  46655. weight: math.unit(300, "kg"),
  46656. name: "Side",
  46657. image: {
  46658. source: "./media/characters/ceruleus/side.svg",
  46659. extra: 1068/974,
  46660. bottom: 126/1194
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(16, "meters"),
  46668. default: true
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(9, "feet"),
  46677. weight: math.unit(500, "kg"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/acouya/front.svg",
  46681. extra: 1660/1473,
  46682. bottom: 28/1688
  46683. }
  46684. },
  46685. },
  46686. [
  46687. {
  46688. name: "Normal",
  46689. height: math.unit(9, "feet"),
  46690. default: true
  46691. },
  46692. ]
  46693. ))
  46694. characterMakers.push(() => makeCharacter(
  46695. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46696. {
  46697. front: {
  46698. height: math.unit(5 + 6/12, "feet"),
  46699. weight: math.unit(195, "lb"),
  46700. name: "Front",
  46701. image: {
  46702. source: "./media/characters/vant/front.svg",
  46703. extra: 1396/1320,
  46704. bottom: 20/1416
  46705. }
  46706. },
  46707. back: {
  46708. height: math.unit(5 + 6/12, "feet"),
  46709. weight: math.unit(195, "lb"),
  46710. name: "Back",
  46711. image: {
  46712. source: "./media/characters/vant/back.svg",
  46713. extra: 1396/1320,
  46714. bottom: 20/1416
  46715. }
  46716. },
  46717. maw: {
  46718. height: math.unit(0.75, "feet"),
  46719. name: "Maw",
  46720. image: {
  46721. source: "./media/characters/vant/maw.svg"
  46722. }
  46723. },
  46724. paw: {
  46725. height: math.unit(1.07, "feet"),
  46726. name: "Paw",
  46727. image: {
  46728. source: "./media/characters/vant/paw.svg"
  46729. }
  46730. },
  46731. },
  46732. [
  46733. {
  46734. name: "Micro",
  46735. height: math.unit(0.25, "inches")
  46736. },
  46737. {
  46738. name: "Normal",
  46739. height: math.unit(5 + 6/12, "feet"),
  46740. default: true
  46741. },
  46742. {
  46743. name: "Macro",
  46744. height: math.unit(75, "feet")
  46745. },
  46746. ]
  46747. ))
  46748. characterMakers.push(() => makeCharacter(
  46749. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46750. {
  46751. front: {
  46752. height: math.unit(30, "meters"),
  46753. weight: math.unit(363, "tons"),
  46754. name: "Front",
  46755. image: {
  46756. source: "./media/characters/ahra/front.svg",
  46757. extra: 1914/1814,
  46758. bottom: 46/1960
  46759. }
  46760. },
  46761. },
  46762. [
  46763. {
  46764. name: "Macro",
  46765. height: math.unit(30, "meters"),
  46766. default: true
  46767. },
  46768. ]
  46769. ))
  46770. characterMakers.push(() => makeCharacter(
  46771. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46772. {
  46773. undressed: {
  46774. height: math.unit(2, "m"),
  46775. weight: math.unit(250, "kg"),
  46776. name: "Undressed",
  46777. image: {
  46778. source: "./media/characters/coriander/undressed.svg",
  46779. extra: 1757/1606,
  46780. bottom: 107/1864
  46781. }
  46782. },
  46783. dressed: {
  46784. height: math.unit(2, "m"),
  46785. weight: math.unit(250, "kg"),
  46786. name: "Dressed",
  46787. image: {
  46788. source: "./media/characters/coriander/dressed.svg",
  46789. extra: 1757/1606,
  46790. bottom: 107/1864
  46791. }
  46792. },
  46793. },
  46794. [
  46795. {
  46796. name: "Normal",
  46797. height: math.unit(4, "meters"),
  46798. default: true
  46799. },
  46800. {
  46801. name: "XL",
  46802. height: math.unit(6, "meters")
  46803. },
  46804. {
  46805. name: "XXL",
  46806. height: math.unit(8, "meters")
  46807. },
  46808. ]
  46809. ))
  46810. characterMakers.push(() => makeCharacter(
  46811. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46812. {
  46813. front: {
  46814. height: math.unit(6, "feet"),
  46815. name: "Front",
  46816. image: {
  46817. source: "./media/characters/syrinx/front.svg",
  46818. extra: 1557/1259,
  46819. bottom: 171/1728
  46820. }
  46821. },
  46822. },
  46823. [
  46824. {
  46825. name: "Normal",
  46826. height: math.unit(6 + 3/12, "feet"),
  46827. default: true
  46828. },
  46829. ]
  46830. ))
  46831. characterMakers.push(() => makeCharacter(
  46832. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46833. {
  46834. front: {
  46835. height: math.unit(11 + 6/12, "feet"),
  46836. weight: math.unit(1.5, "tons"),
  46837. name: "Front",
  46838. image: {
  46839. source: "./media/characters/bor/front.svg",
  46840. extra: 1189/1109,
  46841. bottom: 170/1359
  46842. }
  46843. },
  46844. },
  46845. [
  46846. {
  46847. name: "Normal",
  46848. height: math.unit(11 + 6/12, "feet"),
  46849. default: true
  46850. },
  46851. {
  46852. name: "Macro",
  46853. height: math.unit(32 + 9/12, "feet")
  46854. },
  46855. ]
  46856. ))
  46857. characterMakers.push(() => makeCharacter(
  46858. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46859. {
  46860. anthro: {
  46861. height: math.unit(9, "feet"),
  46862. weight: math.unit(2076, "lb"),
  46863. name: "Anthro",
  46864. image: {
  46865. source: "./media/characters/abacus/anthro.svg",
  46866. extra: 1540/1494,
  46867. bottom: 233/1773
  46868. }
  46869. },
  46870. pigeon: {
  46871. height: math.unit(1, "feet"),
  46872. name: "Pigeon",
  46873. image: {
  46874. source: "./media/characters/abacus/pigeon.svg",
  46875. extra: 528/525,
  46876. bottom: 46/574
  46877. }
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(9, "feet"),
  46884. default: true
  46885. },
  46886. ]
  46887. ))
  46888. characterMakers.push(() => makeCharacter(
  46889. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46890. {
  46891. side: {
  46892. height: math.unit(6, "feet"),
  46893. name: "Side",
  46894. image: {
  46895. source: "./media/characters/delkhan/side.svg",
  46896. extra: 1884/1786,
  46897. bottom: 308/2192
  46898. }
  46899. },
  46900. head: {
  46901. height: math.unit(3.38, "feet"),
  46902. name: "Head",
  46903. image: {
  46904. source: "./media/characters/delkhan/head.svg"
  46905. }
  46906. },
  46907. },
  46908. [
  46909. {
  46910. name: "Normal",
  46911. height: math.unit(72, "feet"),
  46912. default: true
  46913. },
  46914. {
  46915. name: "Giant",
  46916. height: math.unit(172, "feet")
  46917. },
  46918. ]
  46919. ))
  46920. characterMakers.push(() => makeCharacter(
  46921. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46922. {
  46923. standing: {
  46924. height: math.unit(6, "feet"),
  46925. name: "Standing",
  46926. image: {
  46927. source: "./media/characters/euchidat/standing.svg",
  46928. extra: 1612/1553,
  46929. bottom: 116/1728
  46930. }
  46931. },
  46932. leaning: {
  46933. height: math.unit(6, "feet"),
  46934. name: "Leaning",
  46935. image: {
  46936. source: "./media/characters/euchidat/leaning.svg",
  46937. extra: 1719/1674,
  46938. bottom: 27/1746
  46939. }
  46940. },
  46941. },
  46942. [
  46943. {
  46944. name: "Normal",
  46945. height: math.unit(175, "feet"),
  46946. default: true
  46947. },
  46948. {
  46949. name: "Megamacro",
  46950. height: math.unit(190, "miles")
  46951. },
  46952. {
  46953. name: "Gigamacro",
  46954. height: math.unit(190000, "miles")
  46955. },
  46956. ]
  46957. ))
  46958. characterMakers.push(() => makeCharacter(
  46959. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46960. {
  46961. front: {
  46962. height: math.unit(6, "feet"),
  46963. weight: math.unit(150, "lb"),
  46964. name: "Front",
  46965. image: {
  46966. source: "./media/characters/rebecca-stack/front.svg",
  46967. extra: 1256/1201,
  46968. bottom: 18/1274
  46969. }
  46970. },
  46971. },
  46972. [
  46973. {
  46974. name: "Normal",
  46975. height: math.unit(5 + 8/12, "feet"),
  46976. default: true
  46977. },
  46978. {
  46979. name: "Demolitionist",
  46980. height: math.unit(200, "feet")
  46981. },
  46982. {
  46983. name: "Out of Control",
  46984. height: math.unit(2, "miles")
  46985. },
  46986. {
  46987. name: "Giga",
  46988. height: math.unit(7200, "miles")
  46989. },
  46990. ]
  46991. ))
  46992. characterMakers.push(() => makeCharacter(
  46993. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46994. {
  46995. front: {
  46996. height: math.unit(6, "feet"),
  46997. weight: math.unit(150, "lb"),
  46998. name: "Front",
  46999. image: {
  47000. source: "./media/characters/jenny-cartwright/front.svg",
  47001. extra: 1384/1376,
  47002. bottom: 58/1442
  47003. }
  47004. },
  47005. },
  47006. [
  47007. {
  47008. name: "Normal",
  47009. height: math.unit(6 + 7/12, "feet"),
  47010. default: true
  47011. },
  47012. {
  47013. name: "Librarian",
  47014. height: math.unit(55, "feet")
  47015. },
  47016. {
  47017. name: "Sightseer",
  47018. height: math.unit(50, "miles")
  47019. },
  47020. {
  47021. name: "Giga",
  47022. height: math.unit(30000, "miles")
  47023. },
  47024. ]
  47025. ))
  47026. characterMakers.push(() => makeCharacter(
  47027. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47028. {
  47029. nude: {
  47030. height: math.unit(8, "feet"),
  47031. weight: math.unit(225, "lb"),
  47032. name: "Nude",
  47033. image: {
  47034. source: "./media/characters/marvy/nude.svg",
  47035. extra: 1900/1683,
  47036. bottom: 89/1989
  47037. }
  47038. },
  47039. dressed: {
  47040. height: math.unit(8, "feet"),
  47041. weight: math.unit(225, "lb"),
  47042. name: "Dressed",
  47043. image: {
  47044. source: "./media/characters/marvy/dressed.svg",
  47045. extra: 1900/1683,
  47046. bottom: 89/1989
  47047. }
  47048. },
  47049. head: {
  47050. height: math.unit(2.85, "feet"),
  47051. name: "Head",
  47052. image: {
  47053. source: "./media/characters/marvy/head.svg"
  47054. }
  47055. },
  47056. },
  47057. [
  47058. {
  47059. name: "Normal",
  47060. height: math.unit(8, "feet"),
  47061. default: true
  47062. },
  47063. ]
  47064. ))
  47065. characterMakers.push(() => makeCharacter(
  47066. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47067. {
  47068. front: {
  47069. height: math.unit(8, "feet"),
  47070. weight: math.unit(250, "lb"),
  47071. name: "Front",
  47072. image: {
  47073. source: "./media/characters/leah/front.svg",
  47074. extra: 1257/1149,
  47075. bottom: 109/1366
  47076. }
  47077. },
  47078. },
  47079. [
  47080. {
  47081. name: "Normal",
  47082. height: math.unit(8, "feet"),
  47083. default: true
  47084. },
  47085. {
  47086. name: "Minimacro",
  47087. height: math.unit(40, "feet")
  47088. },
  47089. {
  47090. name: "Macro",
  47091. height: math.unit(124, "feet")
  47092. },
  47093. {
  47094. name: "Megamacro",
  47095. height: math.unit(850, "feet")
  47096. },
  47097. ]
  47098. ))
  47099. characterMakers.push(() => makeCharacter(
  47100. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47101. {
  47102. side: {
  47103. height: math.unit(13 + 6/12, "feet"),
  47104. weight: math.unit(3200, "lb"),
  47105. name: "Side",
  47106. image: {
  47107. source: "./media/characters/alvir/side.svg",
  47108. extra: 896/589,
  47109. bottom: 26/922
  47110. }
  47111. },
  47112. },
  47113. [
  47114. {
  47115. name: "Normal",
  47116. height: math.unit(13 + 6/12, "feet"),
  47117. default: true
  47118. },
  47119. ]
  47120. ))
  47121. characterMakers.push(() => makeCharacter(
  47122. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47123. {
  47124. front: {
  47125. height: math.unit(5 + 4/12, "feet"),
  47126. weight: math.unit(236, "lb"),
  47127. name: "Front",
  47128. image: {
  47129. source: "./media/characters/zaina-khalil/front.svg",
  47130. extra: 1533/1485,
  47131. bottom: 94/1627
  47132. }
  47133. },
  47134. side: {
  47135. height: math.unit(5 + 4/12, "feet"),
  47136. weight: math.unit(236, "lb"),
  47137. name: "Side",
  47138. image: {
  47139. source: "./media/characters/zaina-khalil/side.svg",
  47140. extra: 1537/1498,
  47141. bottom: 66/1603
  47142. }
  47143. },
  47144. back: {
  47145. height: math.unit(5 + 4/12, "feet"),
  47146. weight: math.unit(236, "lb"),
  47147. name: "Back",
  47148. image: {
  47149. source: "./media/characters/zaina-khalil/back.svg",
  47150. extra: 1546/1494,
  47151. bottom: 89/1635
  47152. }
  47153. },
  47154. },
  47155. [
  47156. {
  47157. name: "Normal",
  47158. height: math.unit(5 + 4/12, "feet"),
  47159. default: true
  47160. },
  47161. ]
  47162. ))
  47163. characterMakers.push(() => makeCharacter(
  47164. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47165. {
  47166. side: {
  47167. height: math.unit(12, "feet"),
  47168. weight: math.unit(4000, "lb"),
  47169. name: "Side",
  47170. image: {
  47171. source: "./media/characters/terry/side.svg",
  47172. extra: 1518/1439,
  47173. bottom: 149/1667
  47174. }
  47175. },
  47176. },
  47177. [
  47178. {
  47179. name: "Normal",
  47180. height: math.unit(12, "feet"),
  47181. default: true
  47182. },
  47183. ]
  47184. ))
  47185. characterMakers.push(() => makeCharacter(
  47186. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47187. {
  47188. front: {
  47189. height: math.unit(12, "feet"),
  47190. weight: math.unit(1500, "lb"),
  47191. name: "Front",
  47192. image: {
  47193. source: "./media/characters/kahea/front.svg",
  47194. extra: 1722/1617,
  47195. bottom: 179/1901
  47196. }
  47197. },
  47198. },
  47199. [
  47200. {
  47201. name: "Normal",
  47202. height: math.unit(12, "feet"),
  47203. default: true
  47204. },
  47205. ]
  47206. ))
  47207. characterMakers.push(() => makeCharacter(
  47208. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47209. {
  47210. demonFront: {
  47211. height: math.unit(36, "feet"),
  47212. name: "Front",
  47213. image: {
  47214. source: "./media/characters/alex-xuria/demon-front.svg",
  47215. extra: 1705/1673,
  47216. bottom: 198/1903
  47217. },
  47218. form: "demon",
  47219. default: true
  47220. },
  47221. demonBack: {
  47222. height: math.unit(36, "feet"),
  47223. name: "Back",
  47224. image: {
  47225. source: "./media/characters/alex-xuria/demon-back.svg",
  47226. extra: 1725/1693,
  47227. bottom: 70/1795
  47228. },
  47229. form: "demon"
  47230. },
  47231. demonHead: {
  47232. height: math.unit(2.14, "meters"),
  47233. name: "Head",
  47234. image: {
  47235. source: "./media/characters/alex-xuria/demon-head.svg"
  47236. },
  47237. form: "demon"
  47238. },
  47239. demonHand: {
  47240. height: math.unit(1.61, "meters"),
  47241. name: "Hand",
  47242. image: {
  47243. source: "./media/characters/alex-xuria/demon-hand.svg"
  47244. },
  47245. form: "demon"
  47246. },
  47247. demonPaw: {
  47248. height: math.unit(1.35, "meters"),
  47249. name: "Paw",
  47250. image: {
  47251. source: "./media/characters/alex-xuria/demon-paw.svg"
  47252. },
  47253. form: "demon"
  47254. },
  47255. demonFoot: {
  47256. height: math.unit(2.2, "meters"),
  47257. name: "Foot",
  47258. image: {
  47259. source: "./media/characters/alex-xuria/demon-foot.svg"
  47260. },
  47261. form: "demon"
  47262. },
  47263. demonCock: {
  47264. height: math.unit(1.74, "meters"),
  47265. name: "Cock",
  47266. image: {
  47267. source: "./media/characters/alex-xuria/demon-cock.svg"
  47268. },
  47269. form: "demon"
  47270. },
  47271. demonTailClosed: {
  47272. height: math.unit(1.47, "meters"),
  47273. name: "Tail (Closed)",
  47274. image: {
  47275. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47276. },
  47277. form: "demon"
  47278. },
  47279. demonTailOpen: {
  47280. height: math.unit(2.85, "meters"),
  47281. name: "Tail (Open)",
  47282. image: {
  47283. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47284. },
  47285. form: "demon"
  47286. },
  47287. incubusFront: {
  47288. height: math.unit(12, "feet"),
  47289. name: "Front",
  47290. image: {
  47291. source: "./media/characters/alex-xuria/incubus-front.svg",
  47292. extra: 1754/1677,
  47293. bottom: 125/1879
  47294. },
  47295. form: "incubus",
  47296. default: true
  47297. },
  47298. incubusBack: {
  47299. height: math.unit(12, "feet"),
  47300. name: "Back",
  47301. image: {
  47302. source: "./media/characters/alex-xuria/incubus-back.svg",
  47303. extra: 1702/1647,
  47304. bottom: 30/1732
  47305. },
  47306. form: "incubus"
  47307. },
  47308. incubusHead: {
  47309. height: math.unit(3.45, "feet"),
  47310. name: "Head",
  47311. image: {
  47312. source: "./media/characters/alex-xuria/incubus-head.svg"
  47313. },
  47314. form: "incubus"
  47315. },
  47316. rabbitFront: {
  47317. height: math.unit(6, "feet"),
  47318. name: "Front",
  47319. image: {
  47320. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47321. extra: 1369/1349,
  47322. bottom: 45/1414
  47323. },
  47324. form: "rabbit",
  47325. default: true
  47326. },
  47327. rabbitSide: {
  47328. height: math.unit(6, "feet"),
  47329. name: "Side",
  47330. image: {
  47331. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47332. extra: 1370/1356,
  47333. bottom: 37/1407
  47334. },
  47335. form: "rabbit"
  47336. },
  47337. rabbitBack: {
  47338. height: math.unit(6, "feet"),
  47339. name: "Back",
  47340. image: {
  47341. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47342. extra: 1375/1358,
  47343. bottom: 43/1418
  47344. },
  47345. form: "rabbit"
  47346. },
  47347. },
  47348. [
  47349. {
  47350. name: "Normal",
  47351. height: math.unit(6, "feet"),
  47352. default: true,
  47353. form: "rabbit"
  47354. },
  47355. {
  47356. name: "Incubus",
  47357. height: math.unit(12, "feet"),
  47358. default: true,
  47359. form: "incubus"
  47360. },
  47361. {
  47362. name: "Demon",
  47363. height: math.unit(36, "feet"),
  47364. default: true,
  47365. form: "demon"
  47366. }
  47367. ],
  47368. {
  47369. "demon": {
  47370. name: "Demon",
  47371. default: true
  47372. },
  47373. "incubus": {
  47374. name: "Incubus",
  47375. },
  47376. "rabbit": {
  47377. name: "Rabbit"
  47378. }
  47379. }
  47380. ))
  47381. characterMakers.push(() => makeCharacter(
  47382. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47383. {
  47384. front: {
  47385. height: math.unit(7 + 5/12, "feet"),
  47386. weight: math.unit(510, "lb"),
  47387. name: "Front",
  47388. image: {
  47389. source: "./media/characters/syrup/front.svg",
  47390. extra: 932/916,
  47391. bottom: 26/958
  47392. }
  47393. },
  47394. },
  47395. [
  47396. {
  47397. name: "Normal",
  47398. height: math.unit(7 + 5/12, "feet"),
  47399. default: true
  47400. },
  47401. {
  47402. name: "Big",
  47403. height: math.unit(50, "feet")
  47404. },
  47405. {
  47406. name: "Macro",
  47407. height: math.unit(300, "feet")
  47408. },
  47409. {
  47410. name: "Megamacro",
  47411. height: math.unit(1, "mile")
  47412. },
  47413. ]
  47414. ))
  47415. characterMakers.push(() => makeCharacter(
  47416. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47417. {
  47418. front: {
  47419. height: math.unit(6 + 9/12, "feet"),
  47420. name: "Front",
  47421. image: {
  47422. source: "./media/characters/zeimne/front.svg",
  47423. extra: 1969/1806,
  47424. bottom: 53/2022
  47425. }
  47426. },
  47427. },
  47428. [
  47429. {
  47430. name: "Normal",
  47431. height: math.unit(6 + 9/12, "feet"),
  47432. default: true
  47433. },
  47434. {
  47435. name: "Giant",
  47436. height: math.unit(550, "feet")
  47437. },
  47438. {
  47439. name: "Mega",
  47440. height: math.unit(3, "miles")
  47441. },
  47442. {
  47443. name: "Giga",
  47444. height: math.unit(250, "miles")
  47445. },
  47446. {
  47447. name: "Tera",
  47448. height: math.unit(1, "AU")
  47449. },
  47450. ]
  47451. ))
  47452. characterMakers.push(() => makeCharacter(
  47453. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47454. {
  47455. front: {
  47456. height: math.unit(5 + 2/12, "feet"),
  47457. name: "Front",
  47458. image: {
  47459. source: "./media/characters/grar/front.svg",
  47460. extra: 1331/1119,
  47461. bottom: 60/1391
  47462. }
  47463. },
  47464. back: {
  47465. height: math.unit(5 + 2/12, "feet"),
  47466. name: "Back",
  47467. image: {
  47468. source: "./media/characters/grar/back.svg",
  47469. extra: 1385/1169,
  47470. bottom: 23/1408
  47471. }
  47472. },
  47473. },
  47474. [
  47475. {
  47476. name: "Normal",
  47477. height: math.unit(5 + 2/12, "feet"),
  47478. default: true
  47479. },
  47480. ]
  47481. ))
  47482. characterMakers.push(() => makeCharacter(
  47483. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47484. {
  47485. front: {
  47486. height: math.unit(13 + 7/12, "feet"),
  47487. weight: math.unit(2200, "lb"),
  47488. name: "Front",
  47489. image: {
  47490. source: "./media/characters/endraya/front.svg",
  47491. extra: 1289/1215,
  47492. bottom: 50/1339
  47493. }
  47494. },
  47495. nude: {
  47496. height: math.unit(13 + 7/12, "feet"),
  47497. weight: math.unit(2200, "lb"),
  47498. name: "Nude",
  47499. image: {
  47500. source: "./media/characters/endraya/nude.svg",
  47501. extra: 1247/1171,
  47502. bottom: 40/1287
  47503. }
  47504. },
  47505. head: {
  47506. height: math.unit(2.6, "feet"),
  47507. name: "Head",
  47508. image: {
  47509. source: "./media/characters/endraya/head.svg"
  47510. }
  47511. },
  47512. slit: {
  47513. height: math.unit(3.4, "feet"),
  47514. name: "Slit",
  47515. image: {
  47516. source: "./media/characters/endraya/slit.svg"
  47517. }
  47518. },
  47519. },
  47520. [
  47521. {
  47522. name: "Normal",
  47523. height: math.unit(13 + 7/12, "feet"),
  47524. default: true
  47525. },
  47526. {
  47527. name: "Macro",
  47528. height: math.unit(200, "feet")
  47529. },
  47530. ]
  47531. ))
  47532. characterMakers.push(() => makeCharacter(
  47533. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47534. {
  47535. front: {
  47536. height: math.unit(1.81, "meters"),
  47537. weight: math.unit(69, "kg"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/rodryana/front.svg",
  47541. extra: 2002/1921,
  47542. bottom: 53/2055
  47543. }
  47544. },
  47545. back: {
  47546. height: math.unit(1.81, "meters"),
  47547. weight: math.unit(69, "kg"),
  47548. name: "Back",
  47549. image: {
  47550. source: "./media/characters/rodryana/back.svg",
  47551. extra: 1993/1926,
  47552. bottom: 48/2041
  47553. }
  47554. },
  47555. maw: {
  47556. height: math.unit(0.19769417475, "meters"),
  47557. name: "Maw",
  47558. image: {
  47559. source: "./media/characters/rodryana/maw.svg"
  47560. }
  47561. },
  47562. slit: {
  47563. height: math.unit(0.31631067961, "meters"),
  47564. name: "Slit",
  47565. image: {
  47566. source: "./media/characters/rodryana/slit.svg"
  47567. }
  47568. },
  47569. },
  47570. [
  47571. {
  47572. name: "Normal",
  47573. height: math.unit(1.81, "meters")
  47574. },
  47575. {
  47576. name: "Mini Macro",
  47577. height: math.unit(181, "meters")
  47578. },
  47579. {
  47580. name: "Macro",
  47581. height: math.unit(452, "meters"),
  47582. default: true
  47583. },
  47584. {
  47585. name: "Mega Macro",
  47586. height: math.unit(1.375, "km")
  47587. },
  47588. {
  47589. name: "Giga Macro",
  47590. height: math.unit(13.575, "km")
  47591. },
  47592. ]
  47593. ))
  47594. characterMakers.push(() => makeCharacter(
  47595. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47596. {
  47597. front: {
  47598. height: math.unit(6, "feet"),
  47599. weight: math.unit(1000, "lb"),
  47600. name: "Front",
  47601. image: {
  47602. source: "./media/characters/asaya/front.svg",
  47603. extra: 1460/1200,
  47604. bottom: 71/1531
  47605. }
  47606. },
  47607. },
  47608. [
  47609. {
  47610. name: "Normal",
  47611. height: math.unit(8, "km"),
  47612. default: true
  47613. },
  47614. ]
  47615. ))
  47616. characterMakers.push(() => makeCharacter(
  47617. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47618. {
  47619. front: {
  47620. height: math.unit(3.5, "meters"),
  47621. name: "Front",
  47622. image: {
  47623. source: "./media/characters/sarzu-and-israz/front.svg",
  47624. extra: 1570/1558,
  47625. bottom: 150/1720
  47626. },
  47627. },
  47628. back: {
  47629. height: math.unit(3.5, "meters"),
  47630. name: "Back",
  47631. image: {
  47632. source: "./media/characters/sarzu-and-israz/back.svg",
  47633. extra: 1523/1509,
  47634. bottom: 132/1655
  47635. },
  47636. },
  47637. frontFemale: {
  47638. height: math.unit(3.5, "meters"),
  47639. name: "Front (Female)",
  47640. image: {
  47641. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47642. extra: 1570/1558,
  47643. bottom: 150/1720
  47644. },
  47645. },
  47646. frontHerm: {
  47647. height: math.unit(3.5, "meters"),
  47648. name: "Front (Herm)",
  47649. image: {
  47650. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47651. extra: 1570/1558,
  47652. bottom: 150/1720
  47653. },
  47654. },
  47655. },
  47656. [
  47657. {
  47658. name: "Normal",
  47659. height: math.unit(3.5, "meters"),
  47660. default: true,
  47661. },
  47662. {
  47663. name: "Macro",
  47664. height: math.unit(65.5, "meters"),
  47665. },
  47666. ],
  47667. ))
  47668. characterMakers.push(() => makeCharacter(
  47669. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47670. {
  47671. front: {
  47672. height: math.unit(6, "feet"),
  47673. weight: math.unit(250, "lb"),
  47674. name: "Front",
  47675. image: {
  47676. source: "./media/characters/zenimma/front.svg",
  47677. extra: 1346/1320,
  47678. bottom: 58/1404
  47679. }
  47680. },
  47681. back: {
  47682. height: math.unit(6, "feet"),
  47683. weight: math.unit(250, "lb"),
  47684. name: "Back",
  47685. image: {
  47686. source: "./media/characters/zenimma/back.svg",
  47687. extra: 1324/1308,
  47688. bottom: 44/1368
  47689. }
  47690. },
  47691. dick: {
  47692. height: math.unit(1.44, "feet"),
  47693. name: "Dick",
  47694. image: {
  47695. source: "./media/characters/zenimma/dick.svg"
  47696. }
  47697. },
  47698. },
  47699. [
  47700. {
  47701. name: "Canon Height",
  47702. height: math.unit(66, "miles"),
  47703. default: true
  47704. },
  47705. ]
  47706. ))
  47707. characterMakers.push(() => makeCharacter(
  47708. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47709. {
  47710. nude: {
  47711. height: math.unit(6, "feet"),
  47712. weight: math.unit(150, "lb"),
  47713. name: "Nude",
  47714. image: {
  47715. source: "./media/characters/shavon/nude.svg",
  47716. extra: 1242/1096,
  47717. bottom: 98/1340
  47718. }
  47719. },
  47720. dressed: {
  47721. height: math.unit(6, "feet"),
  47722. weight: math.unit(150, "lb"),
  47723. name: "Dressed",
  47724. image: {
  47725. source: "./media/characters/shavon/dressed.svg",
  47726. extra: 1242/1096,
  47727. bottom: 98/1340
  47728. }
  47729. },
  47730. },
  47731. [
  47732. {
  47733. name: "Macro",
  47734. height: math.unit(255, "feet"),
  47735. default: true
  47736. },
  47737. ]
  47738. ))
  47739. characterMakers.push(() => makeCharacter(
  47740. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47741. {
  47742. front: {
  47743. height: math.unit(6, "feet"),
  47744. name: "Front",
  47745. image: {
  47746. source: "./media/characters/steph/front.svg",
  47747. extra: 1430/1330,
  47748. bottom: 54/1484
  47749. }
  47750. },
  47751. },
  47752. [
  47753. {
  47754. name: "Normal",
  47755. height: math.unit(6, "feet"),
  47756. default: true
  47757. },
  47758. ]
  47759. ))
  47760. characterMakers.push(() => makeCharacter(
  47761. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47762. {
  47763. front: {
  47764. height: math.unit(9, "feet"),
  47765. weight: math.unit(400, "lb"),
  47766. name: "Front",
  47767. image: {
  47768. source: "./media/characters/kil'aman/front.svg",
  47769. extra: 1210/1159,
  47770. bottom: 109/1319
  47771. }
  47772. },
  47773. head: {
  47774. height: math.unit(2.14, "feet"),
  47775. name: "Head",
  47776. image: {
  47777. source: "./media/characters/kil'aman/head.svg"
  47778. }
  47779. },
  47780. maw: {
  47781. height: math.unit(1.21, "feet"),
  47782. name: "Maw",
  47783. image: {
  47784. source: "./media/characters/kil'aman/maw.svg"
  47785. }
  47786. },
  47787. foot: {
  47788. height: math.unit(1.7, "feet"),
  47789. name: "Foot",
  47790. image: {
  47791. source: "./media/characters/kil'aman/foot.svg"
  47792. }
  47793. },
  47794. dick: {
  47795. height: math.unit(2.1, "feet"),
  47796. name: "Dick",
  47797. image: {
  47798. source: "./media/characters/kil'aman/dick.svg"
  47799. }
  47800. },
  47801. },
  47802. [
  47803. {
  47804. name: "Normal",
  47805. height: math.unit(9, "feet")
  47806. },
  47807. {
  47808. name: "Canon Height",
  47809. height: math.unit(10, "miles"),
  47810. default: true
  47811. },
  47812. {
  47813. name: "Maximum",
  47814. height: math.unit(6e9, "miles")
  47815. },
  47816. ]
  47817. ))
  47818. characterMakers.push(() => makeCharacter(
  47819. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47820. {
  47821. front: {
  47822. height: math.unit(90, "feet"),
  47823. weight: math.unit(675000, "lb"),
  47824. name: "Front",
  47825. image: {
  47826. source: "./media/characters/qadan/front.svg",
  47827. extra: 1012/1004,
  47828. bottom: 78/1090
  47829. }
  47830. },
  47831. back: {
  47832. height: math.unit(90, "feet"),
  47833. weight: math.unit(675000, "lb"),
  47834. name: "Back",
  47835. image: {
  47836. source: "./media/characters/qadan/back.svg",
  47837. extra: 1042/1031,
  47838. bottom: 55/1097
  47839. }
  47840. },
  47841. armored: {
  47842. height: math.unit(90, "feet"),
  47843. weight: math.unit(675000, "lb"),
  47844. name: "Armored",
  47845. image: {
  47846. source: "./media/characters/qadan/armored.svg",
  47847. extra: 1047/1037,
  47848. bottom: 48/1095
  47849. }
  47850. },
  47851. },
  47852. [
  47853. {
  47854. name: "Normal",
  47855. height: math.unit(90, "feet"),
  47856. default: true
  47857. },
  47858. ]
  47859. ))
  47860. characterMakers.push(() => makeCharacter(
  47861. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47862. {
  47863. front: {
  47864. height: math.unit(6, "feet"),
  47865. weight: math.unit(225, "lb"),
  47866. name: "Front",
  47867. image: {
  47868. source: "./media/characters/brooke/front.svg",
  47869. extra: 1050/1010,
  47870. bottom: 66/1116
  47871. }
  47872. },
  47873. back: {
  47874. height: math.unit(6, "feet"),
  47875. weight: math.unit(225, "lb"),
  47876. name: "Back",
  47877. image: {
  47878. source: "./media/characters/brooke/back.svg",
  47879. extra: 1053/1013,
  47880. bottom: 41/1094
  47881. }
  47882. },
  47883. dressed: {
  47884. height: math.unit(6, "feet"),
  47885. weight: math.unit(225, "lb"),
  47886. name: "Dressed",
  47887. image: {
  47888. source: "./media/characters/brooke/dressed.svg",
  47889. extra: 1050/1010,
  47890. bottom: 66/1116
  47891. }
  47892. },
  47893. },
  47894. [
  47895. {
  47896. name: "Canon Height",
  47897. height: math.unit(500, "miles"),
  47898. default: true
  47899. },
  47900. ]
  47901. ))
  47902. characterMakers.push(() => makeCharacter(
  47903. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47904. {
  47905. front: {
  47906. height: math.unit(6 + 2/12, "feet"),
  47907. weight: math.unit(210, "lb"),
  47908. name: "Front",
  47909. image: {
  47910. source: "./media/characters/wubs/front.svg",
  47911. extra: 1345/1325,
  47912. bottom: 70/1415
  47913. }
  47914. },
  47915. back: {
  47916. height: math.unit(6 + 2/12, "feet"),
  47917. weight: math.unit(210, "lb"),
  47918. name: "Back",
  47919. image: {
  47920. source: "./media/characters/wubs/back.svg",
  47921. extra: 1296/1275,
  47922. bottom: 58/1354
  47923. }
  47924. },
  47925. },
  47926. [
  47927. {
  47928. name: "Normal",
  47929. height: math.unit(6 + 2/12, "feet"),
  47930. default: true
  47931. },
  47932. {
  47933. name: "Macro",
  47934. height: math.unit(1000, "feet")
  47935. },
  47936. {
  47937. name: "Megamacro",
  47938. height: math.unit(1, "mile")
  47939. },
  47940. ]
  47941. ))
  47942. characterMakers.push(() => makeCharacter(
  47943. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47944. {
  47945. front: {
  47946. height: math.unit(4, "feet"),
  47947. weight: math.unit(120, "lb"),
  47948. name: "Front",
  47949. image: {
  47950. source: "./media/characters/blue/front.svg",
  47951. extra: 1636/1525,
  47952. bottom: 43/1679
  47953. }
  47954. },
  47955. back: {
  47956. height: math.unit(4, "feet"),
  47957. weight: math.unit(120, "lb"),
  47958. name: "Back",
  47959. image: {
  47960. source: "./media/characters/blue/back.svg",
  47961. extra: 1660/1560,
  47962. bottom: 57/1717
  47963. }
  47964. },
  47965. paws: {
  47966. height: math.unit(0.826, "feet"),
  47967. name: "Paws",
  47968. image: {
  47969. source: "./media/characters/blue/paws.svg"
  47970. }
  47971. },
  47972. },
  47973. [
  47974. {
  47975. name: "Micro",
  47976. height: math.unit(3, "inches")
  47977. },
  47978. {
  47979. name: "Normal",
  47980. height: math.unit(4, "feet"),
  47981. default: true
  47982. },
  47983. {
  47984. name: "Femenine Form",
  47985. height: math.unit(14, "feet")
  47986. },
  47987. {
  47988. name: "Werebat Form",
  47989. height: math.unit(18, "feet")
  47990. },
  47991. ]
  47992. ))
  47993. characterMakers.push(() => makeCharacter(
  47994. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47995. {
  47996. female: {
  47997. height: math.unit(7 + 4/12, "feet"),
  47998. weight: math.unit(243, "lb"),
  47999. name: "Female",
  48000. image: {
  48001. source: "./media/characters/kaya/female.svg",
  48002. extra: 975/898,
  48003. bottom: 34/1009
  48004. }
  48005. },
  48006. herm: {
  48007. height: math.unit(7 + 4/12, "feet"),
  48008. weight: math.unit(243, "lb"),
  48009. name: "Herm",
  48010. image: {
  48011. source: "./media/characters/kaya/herm.svg",
  48012. extra: 975/898,
  48013. bottom: 34/1009
  48014. }
  48015. },
  48016. },
  48017. [
  48018. {
  48019. name: "Normal",
  48020. height: math.unit(7 + 4/12, "feet"),
  48021. default: true
  48022. },
  48023. ]
  48024. ))
  48025. characterMakers.push(() => makeCharacter(
  48026. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48027. {
  48028. female: {
  48029. height: math.unit(9 + 4/12, "feet"),
  48030. weight: math.unit(398, "lb"),
  48031. name: "Female",
  48032. image: {
  48033. source: "./media/characters/kassandra/female.svg",
  48034. extra: 908/839,
  48035. bottom: 61/969
  48036. }
  48037. },
  48038. intersex: {
  48039. height: math.unit(9 + 4/12, "feet"),
  48040. weight: math.unit(398, "lb"),
  48041. name: "Intersex",
  48042. image: {
  48043. source: "./media/characters/kassandra/intersex.svg",
  48044. extra: 908/839,
  48045. bottom: 61/969
  48046. }
  48047. },
  48048. },
  48049. [
  48050. {
  48051. name: "Normal",
  48052. height: math.unit(9 + 4/12, "feet"),
  48053. default: true
  48054. },
  48055. ]
  48056. ))
  48057. characterMakers.push(() => makeCharacter(
  48058. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48059. {
  48060. front: {
  48061. height: math.unit(3, "meters"),
  48062. name: "Front",
  48063. image: {
  48064. source: "./media/characters/amy/front.svg",
  48065. extra: 1380/1343,
  48066. bottom: 70/1450
  48067. }
  48068. },
  48069. back: {
  48070. height: math.unit(3, "meters"),
  48071. name: "Back",
  48072. image: {
  48073. source: "./media/characters/amy/back.svg",
  48074. extra: 1380/1347,
  48075. bottom: 66/1446
  48076. }
  48077. },
  48078. },
  48079. [
  48080. {
  48081. name: "Normal",
  48082. height: math.unit(3, "meters"),
  48083. default: true
  48084. },
  48085. ]
  48086. ))
  48087. characterMakers.push(() => makeCharacter(
  48088. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48089. {
  48090. side: {
  48091. height: math.unit(47, "cm"),
  48092. weight: math.unit(10.8, "kg"),
  48093. name: "Side",
  48094. image: {
  48095. source: "./media/characters/alphaschakal/side.svg",
  48096. extra: 1058/568,
  48097. bottom: 62/1120
  48098. }
  48099. },
  48100. back: {
  48101. height: math.unit(78, "cm"),
  48102. weight: math.unit(10.8, "kg"),
  48103. name: "Back",
  48104. image: {
  48105. source: "./media/characters/alphaschakal/back.svg",
  48106. extra: 1102/942,
  48107. bottom: 185/1287
  48108. }
  48109. },
  48110. head: {
  48111. height: math.unit(28, "cm"),
  48112. name: "Head",
  48113. image: {
  48114. source: "./media/characters/alphaschakal/head.svg",
  48115. extra: 696/508,
  48116. bottom: 0/696
  48117. }
  48118. },
  48119. paw: {
  48120. height: math.unit(16, "cm"),
  48121. name: "Paw",
  48122. image: {
  48123. source: "./media/characters/alphaschakal/paw.svg"
  48124. }
  48125. },
  48126. },
  48127. [
  48128. {
  48129. name: "Normal",
  48130. height: math.unit(47, "cm"),
  48131. default: true
  48132. },
  48133. {
  48134. name: "Macro",
  48135. height: math.unit(340, "cm")
  48136. },
  48137. ]
  48138. ))
  48139. characterMakers.push(() => makeCharacter(
  48140. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48141. {
  48142. front: {
  48143. height: math.unit(36, "earths"),
  48144. name: "Front",
  48145. image: {
  48146. source: "./media/characters/ecobyss/front.svg",
  48147. extra: 1282/1215,
  48148. bottom: 11/1293
  48149. }
  48150. },
  48151. back: {
  48152. height: math.unit(36, "earths"),
  48153. name: "Back",
  48154. image: {
  48155. source: "./media/characters/ecobyss/back.svg",
  48156. extra: 1291/1222,
  48157. bottom: 8/1299
  48158. }
  48159. },
  48160. },
  48161. [
  48162. {
  48163. name: "Normal",
  48164. height: math.unit(36, "earths"),
  48165. default: true
  48166. },
  48167. ]
  48168. ))
  48169. characterMakers.push(() => makeCharacter(
  48170. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48171. {
  48172. front: {
  48173. height: math.unit(12, "feet"),
  48174. name: "Front",
  48175. image: {
  48176. source: "./media/characters/vasuk/front.svg",
  48177. extra: 1326/1207,
  48178. bottom: 64/1390
  48179. }
  48180. },
  48181. },
  48182. [
  48183. {
  48184. name: "Normal",
  48185. height: math.unit(12, "feet"),
  48186. default: true
  48187. },
  48188. ]
  48189. ))
  48190. characterMakers.push(() => makeCharacter(
  48191. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48192. {
  48193. side: {
  48194. height: math.unit(100, "feet"),
  48195. name: "Side",
  48196. image: {
  48197. source: "./media/characters/linneaus/side.svg",
  48198. extra: 987/807,
  48199. bottom: 47/1034
  48200. }
  48201. },
  48202. },
  48203. [
  48204. {
  48205. name: "Macro",
  48206. height: math.unit(100, "feet"),
  48207. default: true
  48208. },
  48209. ]
  48210. ))
  48211. characterMakers.push(() => makeCharacter(
  48212. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48213. {
  48214. front: {
  48215. height: math.unit(8, "feet"),
  48216. weight: math.unit(1200, "lb"),
  48217. name: "Front",
  48218. image: {
  48219. source: "./media/characters/nyterious-daligdig/front.svg",
  48220. extra: 1284/1094,
  48221. bottom: 84/1368
  48222. }
  48223. },
  48224. back: {
  48225. height: math.unit(8, "feet"),
  48226. weight: math.unit(1200, "lb"),
  48227. name: "Back",
  48228. image: {
  48229. source: "./media/characters/nyterious-daligdig/back.svg",
  48230. extra: 1301/1121,
  48231. bottom: 129/1430
  48232. }
  48233. },
  48234. mouth: {
  48235. height: math.unit(1.464, "feet"),
  48236. name: "Mouth",
  48237. image: {
  48238. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48239. }
  48240. },
  48241. },
  48242. [
  48243. {
  48244. name: "Small",
  48245. height: math.unit(8, "feet"),
  48246. default: true
  48247. },
  48248. {
  48249. name: "Normal",
  48250. height: math.unit(15, "feet")
  48251. },
  48252. {
  48253. name: "Macro",
  48254. height: math.unit(90, "feet")
  48255. },
  48256. ]
  48257. ))
  48258. characterMakers.push(() => makeCharacter(
  48259. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48260. {
  48261. front: {
  48262. height: math.unit(7 + 4/12, "feet"),
  48263. weight: math.unit(252, "lb"),
  48264. name: "Front",
  48265. image: {
  48266. source: "./media/characters/bandel/front.svg",
  48267. extra: 1946/1775,
  48268. bottom: 26/1972
  48269. }
  48270. },
  48271. back: {
  48272. height: math.unit(7 + 4/12, "feet"),
  48273. weight: math.unit(252, "lb"),
  48274. name: "Back",
  48275. image: {
  48276. source: "./media/characters/bandel/back.svg",
  48277. extra: 1940/1770,
  48278. bottom: 25/1965
  48279. }
  48280. },
  48281. maw: {
  48282. height: math.unit(2.15, "feet"),
  48283. name: "Maw",
  48284. image: {
  48285. source: "./media/characters/bandel/maw.svg"
  48286. }
  48287. },
  48288. stomach: {
  48289. height: math.unit(1.95, "feet"),
  48290. name: "Stomach",
  48291. image: {
  48292. source: "./media/characters/bandel/stomach.svg"
  48293. }
  48294. },
  48295. },
  48296. [
  48297. {
  48298. name: "Normal",
  48299. height: math.unit(7 + 4/12, "feet"),
  48300. default: true
  48301. },
  48302. ]
  48303. ))
  48304. characterMakers.push(() => makeCharacter(
  48305. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48306. {
  48307. front: {
  48308. height: math.unit(10 + 5/12, "feet"),
  48309. weight: math.unit(773.5, "kg"),
  48310. name: "Front",
  48311. image: {
  48312. source: "./media/characters/zed/front.svg",
  48313. extra: 987/941,
  48314. bottom: 52/1039
  48315. }
  48316. },
  48317. },
  48318. [
  48319. {
  48320. name: "Short",
  48321. height: math.unit(5 + 4/12, "feet")
  48322. },
  48323. {
  48324. name: "Average",
  48325. height: math.unit(10 + 5/12, "feet"),
  48326. default: true
  48327. },
  48328. {
  48329. name: "Mini-Macro",
  48330. height: math.unit(24 + 9/12, "feet")
  48331. },
  48332. {
  48333. name: "Macro",
  48334. height: math.unit(249, "feet")
  48335. },
  48336. {
  48337. name: "Mega-Macro",
  48338. height: math.unit(12490, "feet")
  48339. },
  48340. {
  48341. name: "Giga-Macro",
  48342. height: math.unit(24.9, "miles")
  48343. },
  48344. {
  48345. name: "Tera-Macro",
  48346. height: math.unit(24900, "miles")
  48347. },
  48348. {
  48349. name: "Cosmic Scale",
  48350. height: math.unit(38.9, "lightyears")
  48351. },
  48352. {
  48353. name: "Universal Scale",
  48354. height: math.unit(138e12, "lightyears")
  48355. },
  48356. ]
  48357. ))
  48358. characterMakers.push(() => makeCharacter(
  48359. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48360. {
  48361. front: {
  48362. height: math.unit(1561, "inches"),
  48363. name: "Front",
  48364. image: {
  48365. source: "./media/characters/ivan/front.svg",
  48366. extra: 1126/1071,
  48367. bottom: 26/1152
  48368. }
  48369. },
  48370. back: {
  48371. height: math.unit(1561, "inches"),
  48372. name: "Back",
  48373. image: {
  48374. source: "./media/characters/ivan/back.svg",
  48375. extra: 1134/1079,
  48376. bottom: 30/1164
  48377. }
  48378. },
  48379. },
  48380. [
  48381. {
  48382. name: "Normal",
  48383. height: math.unit(1561, "inches"),
  48384. default: true
  48385. },
  48386. ]
  48387. ))
  48388. characterMakers.push(() => makeCharacter(
  48389. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48390. {
  48391. front: {
  48392. height: math.unit(5 + 7/12, "feet"),
  48393. weight: math.unit(150, "lb"),
  48394. name: "Front",
  48395. image: {
  48396. source: "./media/characters/robin-arctic-hare/front.svg",
  48397. extra: 1148/974,
  48398. bottom: 20/1168
  48399. }
  48400. },
  48401. },
  48402. [
  48403. {
  48404. name: "Normal",
  48405. height: math.unit(5 + 7/12, "feet"),
  48406. default: true
  48407. },
  48408. ]
  48409. ))
  48410. characterMakers.push(() => makeCharacter(
  48411. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48412. {
  48413. side: {
  48414. height: math.unit(5, "feet"),
  48415. name: "Side",
  48416. image: {
  48417. source: "./media/characters/birch/side.svg",
  48418. extra: 985/796,
  48419. bottom: 111/1096
  48420. }
  48421. },
  48422. },
  48423. [
  48424. {
  48425. name: "Normal",
  48426. height: math.unit(5, "feet"),
  48427. default: true
  48428. },
  48429. ]
  48430. ))
  48431. characterMakers.push(() => makeCharacter(
  48432. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48433. {
  48434. front: {
  48435. height: math.unit(4, "feet"),
  48436. name: "Front",
  48437. image: {
  48438. source: "./media/characters/rasp/front.svg",
  48439. extra: 561/478,
  48440. bottom: 74/635
  48441. }
  48442. },
  48443. },
  48444. [
  48445. {
  48446. name: "Normal",
  48447. height: math.unit(4, "feet"),
  48448. default: true
  48449. },
  48450. ]
  48451. ))
  48452. characterMakers.push(() => makeCharacter(
  48453. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48454. {
  48455. front: {
  48456. height: math.unit(4 + 6/12, "feet"),
  48457. name: "Front",
  48458. image: {
  48459. source: "./media/characters/agatha/front.svg",
  48460. extra: 947/933,
  48461. bottom: 42/989
  48462. }
  48463. },
  48464. back: {
  48465. height: math.unit(4 + 6/12, "feet"),
  48466. name: "Back",
  48467. image: {
  48468. source: "./media/characters/agatha/back.svg",
  48469. extra: 935/922,
  48470. bottom: 48/983
  48471. }
  48472. },
  48473. },
  48474. [
  48475. {
  48476. name: "Normal",
  48477. height: math.unit(4 + 6 /12, "feet"),
  48478. default: true
  48479. },
  48480. {
  48481. name: "Max Size",
  48482. height: math.unit(500, "feet")
  48483. },
  48484. ]
  48485. ))
  48486. characterMakers.push(() => makeCharacter(
  48487. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48488. {
  48489. side: {
  48490. height: math.unit(30, "feet"),
  48491. name: "Side",
  48492. image: {
  48493. source: "./media/characters/roggy/side.svg",
  48494. extra: 909/643,
  48495. bottom: 63/972
  48496. }
  48497. },
  48498. lounging: {
  48499. height: math.unit(20, "feet"),
  48500. name: "Lounging",
  48501. image: {
  48502. source: "./media/characters/roggy/lounging.svg",
  48503. extra: 643/479,
  48504. bottom: 145/788
  48505. }
  48506. },
  48507. handpaw: {
  48508. height: math.unit(13.1, "feet"),
  48509. name: "Handpaw",
  48510. image: {
  48511. source: "./media/characters/roggy/handpaw.svg"
  48512. }
  48513. },
  48514. footpaw: {
  48515. height: math.unit(15.8, "feet"),
  48516. name: "Footpaw",
  48517. image: {
  48518. source: "./media/characters/roggy/footpaw.svg"
  48519. }
  48520. },
  48521. },
  48522. [
  48523. {
  48524. name: "Menacing",
  48525. height: math.unit(30, "feet"),
  48526. default: true
  48527. },
  48528. ]
  48529. ))
  48530. characterMakers.push(() => makeCharacter(
  48531. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48532. {
  48533. front: {
  48534. height: math.unit(5 + 7/12, "feet"),
  48535. weight: math.unit(135, "lb"),
  48536. name: "Front",
  48537. image: {
  48538. source: "./media/characters/naomi/front.svg",
  48539. extra: 1209/1154,
  48540. bottom: 129/1338
  48541. }
  48542. },
  48543. back: {
  48544. height: math.unit(5 + 7/12, "feet"),
  48545. weight: math.unit(135, "lb"),
  48546. name: "Back",
  48547. image: {
  48548. source: "./media/characters/naomi/back.svg",
  48549. extra: 1252/1190,
  48550. bottom: 23/1275
  48551. }
  48552. },
  48553. },
  48554. [
  48555. {
  48556. name: "Normal",
  48557. height: math.unit(5 + 7 /12, "feet"),
  48558. default: true
  48559. },
  48560. ]
  48561. ))
  48562. characterMakers.push(() => makeCharacter(
  48563. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48564. {
  48565. side: {
  48566. height: math.unit(35, "meters"),
  48567. name: "Side",
  48568. image: {
  48569. source: "./media/characters/kimpi/side.svg",
  48570. extra: 419/382,
  48571. bottom: 63/482
  48572. }
  48573. },
  48574. hand: {
  48575. height: math.unit(8.96, "meters"),
  48576. name: "Hand",
  48577. image: {
  48578. source: "./media/characters/kimpi/hand.svg"
  48579. }
  48580. },
  48581. },
  48582. [
  48583. {
  48584. name: "Normal",
  48585. height: math.unit(35, "meters"),
  48586. default: true
  48587. },
  48588. ]
  48589. ))
  48590. characterMakers.push(() => makeCharacter(
  48591. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48592. {
  48593. front: {
  48594. height: math.unit(4 + 4/12, "feet"),
  48595. name: "Front",
  48596. image: {
  48597. source: "./media/characters/pepper-purrloin/front.svg",
  48598. extra: 1141/1024,
  48599. bottom: 21/1162
  48600. }
  48601. },
  48602. },
  48603. [
  48604. {
  48605. name: "Normal",
  48606. height: math.unit(4 + 4/12, "feet"),
  48607. default: true
  48608. },
  48609. ]
  48610. ))
  48611. characterMakers.push(() => makeCharacter(
  48612. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48613. {
  48614. front: {
  48615. height: math.unit(6 + 2/12, "feet"),
  48616. name: "Front",
  48617. image: {
  48618. source: "./media/characters/raphael/front.svg",
  48619. extra: 1101/962,
  48620. bottom: 59/1160
  48621. }
  48622. },
  48623. },
  48624. [
  48625. {
  48626. name: "Normal",
  48627. height: math.unit(6 + 2/12, "feet"),
  48628. default: true
  48629. },
  48630. ]
  48631. ))
  48632. characterMakers.push(() => makeCharacter(
  48633. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48634. {
  48635. front: {
  48636. height: math.unit(6, "feet"),
  48637. weight: math.unit(150, "lb"),
  48638. name: "Front",
  48639. image: {
  48640. source: "./media/characters/victor-williams/front.svg",
  48641. extra: 1894/1825,
  48642. bottom: 67/1961
  48643. }
  48644. },
  48645. },
  48646. [
  48647. {
  48648. name: "Normal",
  48649. height: math.unit(6, "feet"),
  48650. default: true
  48651. },
  48652. ]
  48653. ))
  48654. characterMakers.push(() => makeCharacter(
  48655. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48656. {
  48657. front: {
  48658. height: math.unit(5 + 8/12, "feet"),
  48659. weight: math.unit(150, "lb"),
  48660. name: "Front",
  48661. image: {
  48662. source: "./media/characters/rachel/front.svg",
  48663. extra: 1902/1787,
  48664. bottom: 46/1948
  48665. }
  48666. },
  48667. },
  48668. [
  48669. {
  48670. name: "Base Height",
  48671. height: math.unit(5 + 8/12, "feet"),
  48672. default: true
  48673. },
  48674. {
  48675. name: "Macro",
  48676. height: math.unit(200, "feet")
  48677. },
  48678. {
  48679. name: "Mega Macro",
  48680. height: math.unit(1, "mile")
  48681. },
  48682. {
  48683. name: "Giga Macro",
  48684. height: math.unit(1500, "miles")
  48685. },
  48686. {
  48687. name: "Tera Macro",
  48688. height: math.unit(8000, "miles")
  48689. },
  48690. {
  48691. name: "Tera Macro+",
  48692. height: math.unit(2e5, "miles")
  48693. },
  48694. ]
  48695. ))
  48696. characterMakers.push(() => makeCharacter(
  48697. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48698. {
  48699. front: {
  48700. height: math.unit(6.5, "feet"),
  48701. name: "Front",
  48702. image: {
  48703. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48704. extra: 860/819,
  48705. bottom: 307/1167
  48706. }
  48707. },
  48708. back: {
  48709. height: math.unit(6.5, "feet"),
  48710. name: "Back",
  48711. image: {
  48712. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48713. extra: 880/837,
  48714. bottom: 395/1275
  48715. }
  48716. },
  48717. sleeping: {
  48718. height: math.unit(2.79, "feet"),
  48719. name: "Sleeping",
  48720. image: {
  48721. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48722. extra: 465/383,
  48723. bottom: 263/728
  48724. }
  48725. },
  48726. maw: {
  48727. height: math.unit(2.52, "feet"),
  48728. name: "Maw",
  48729. image: {
  48730. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48731. }
  48732. },
  48733. },
  48734. [
  48735. {
  48736. name: "Normal",
  48737. height: math.unit(6.5, "feet"),
  48738. default: true
  48739. },
  48740. ]
  48741. ))
  48742. characterMakers.push(() => makeCharacter(
  48743. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48744. {
  48745. front: {
  48746. height: math.unit(5, "feet"),
  48747. name: "Front",
  48748. image: {
  48749. source: "./media/characters/nova-nerium/front.svg",
  48750. extra: 1548/1392,
  48751. bottom: 374/1922
  48752. }
  48753. },
  48754. back: {
  48755. height: math.unit(5, "feet"),
  48756. name: "Back",
  48757. image: {
  48758. source: "./media/characters/nova-nerium/back.svg",
  48759. extra: 1658/1468,
  48760. bottom: 257/1915
  48761. }
  48762. },
  48763. },
  48764. [
  48765. {
  48766. name: "Normal",
  48767. height: math.unit(5, "feet"),
  48768. default: true
  48769. },
  48770. ]
  48771. ))
  48772. characterMakers.push(() => makeCharacter(
  48773. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48774. {
  48775. front: {
  48776. height: math.unit(5 + 4/12, "feet"),
  48777. name: "Front",
  48778. image: {
  48779. source: "./media/characters/ashe-pyriph/front.svg",
  48780. extra: 1935/1747,
  48781. bottom: 60/1995
  48782. }
  48783. },
  48784. },
  48785. [
  48786. {
  48787. name: "Normal",
  48788. height: math.unit(5 + 4/12, "feet"),
  48789. default: true
  48790. },
  48791. ]
  48792. ))
  48793. characterMakers.push(() => makeCharacter(
  48794. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48795. {
  48796. front: {
  48797. height: math.unit(8.7, "feet"),
  48798. name: "Front",
  48799. image: {
  48800. source: "./media/characters/flicker-wisp/front.svg",
  48801. extra: 1835/1613,
  48802. bottom: 449/2284
  48803. }
  48804. },
  48805. side: {
  48806. height: math.unit(8.7, "feet"),
  48807. name: "Side",
  48808. image: {
  48809. source: "./media/characters/flicker-wisp/side.svg",
  48810. extra: 1841/1642,
  48811. bottom: 336/2177
  48812. },
  48813. default: true
  48814. },
  48815. maw: {
  48816. height: math.unit(3.35, "feet"),
  48817. name: "Maw",
  48818. image: {
  48819. source: "./media/characters/flicker-wisp/maw.svg",
  48820. extra: 2338/1506,
  48821. bottom: 0/2338
  48822. }
  48823. },
  48824. ovipositor: {
  48825. height: math.unit(4.95, "feet"),
  48826. name: "Ovipositor",
  48827. image: {
  48828. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48829. }
  48830. },
  48831. egg: {
  48832. height: math.unit(0.385, "feet"),
  48833. weight: math.unit(2, "lb"),
  48834. name: "Egg",
  48835. image: {
  48836. source: "./media/characters/flicker-wisp/egg.svg"
  48837. }
  48838. },
  48839. },
  48840. [
  48841. {
  48842. name: "Normal",
  48843. height: math.unit(8.7, "feet"),
  48844. default: true
  48845. },
  48846. ]
  48847. ))
  48848. characterMakers.push(() => makeCharacter(
  48849. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48850. {
  48851. side: {
  48852. height: math.unit(11, "feet"),
  48853. name: "Side",
  48854. image: {
  48855. source: "./media/characters/faefnul/side.svg",
  48856. extra: 1100/1007,
  48857. bottom: 0/1100
  48858. }
  48859. },
  48860. },
  48861. [
  48862. {
  48863. name: "Normal",
  48864. height: math.unit(11, "feet"),
  48865. default: true
  48866. },
  48867. ]
  48868. ))
  48869. characterMakers.push(() => makeCharacter(
  48870. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48871. {
  48872. front: {
  48873. height: math.unit(6 + 2/12, "feet"),
  48874. name: "Front",
  48875. image: {
  48876. source: "./media/characters/shady/front.svg",
  48877. extra: 502/461,
  48878. bottom: 9/511
  48879. }
  48880. },
  48881. kneeling: {
  48882. height: math.unit(4.6, "feet"),
  48883. name: "Kneeling",
  48884. image: {
  48885. source: "./media/characters/shady/kneeling.svg",
  48886. extra: 1328/1219,
  48887. bottom: 117/1445
  48888. }
  48889. },
  48890. maw: {
  48891. height: math.unit(2, "feet"),
  48892. name: "Maw",
  48893. image: {
  48894. source: "./media/characters/shady/maw.svg"
  48895. }
  48896. },
  48897. },
  48898. [
  48899. {
  48900. name: "Nano",
  48901. height: math.unit(1, "mm")
  48902. },
  48903. {
  48904. name: "Micro",
  48905. height: math.unit(12, "mm")
  48906. },
  48907. {
  48908. name: "Tiny",
  48909. height: math.unit(3, "inches")
  48910. },
  48911. {
  48912. name: "Normal",
  48913. height: math.unit(6 + 2/12, "feet"),
  48914. default: true
  48915. },
  48916. {
  48917. name: "Big",
  48918. height: math.unit(15, "feet")
  48919. },
  48920. {
  48921. name: "Macro",
  48922. height: math.unit(150, "feet")
  48923. },
  48924. {
  48925. name: "Titanic",
  48926. height: math.unit(500, "feet")
  48927. },
  48928. ]
  48929. ))
  48930. characterMakers.push(() => makeCharacter(
  48931. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48932. {
  48933. front: {
  48934. height: math.unit(12, "feet"),
  48935. name: "Front",
  48936. image: {
  48937. source: "./media/characters/fenrir/front.svg",
  48938. extra: 968/875,
  48939. bottom: 22/990
  48940. }
  48941. },
  48942. },
  48943. [
  48944. {
  48945. name: "Big",
  48946. height: math.unit(12, "feet"),
  48947. default: true
  48948. },
  48949. ]
  48950. ))
  48951. characterMakers.push(() => makeCharacter(
  48952. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48953. {
  48954. front: {
  48955. height: math.unit(5 + 4/12, "feet"),
  48956. name: "Front",
  48957. image: {
  48958. source: "./media/characters/makar/front.svg",
  48959. extra: 1181/1112,
  48960. bottom: 78/1259
  48961. }
  48962. },
  48963. },
  48964. [
  48965. {
  48966. name: "Normal",
  48967. height: math.unit(5 + 4/12, "feet"),
  48968. default: true
  48969. },
  48970. ]
  48971. ))
  48972. characterMakers.push(() => makeCharacter(
  48973. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48974. {
  48975. front: {
  48976. height: math.unit(5 + 7/12, "feet"),
  48977. name: "Front",
  48978. image: {
  48979. source: "./media/characters/callow/front.svg",
  48980. extra: 1482/1304,
  48981. bottom: 23/1505
  48982. }
  48983. },
  48984. back: {
  48985. height: math.unit(5 + 7/12, "feet"),
  48986. name: "Back",
  48987. image: {
  48988. source: "./media/characters/callow/back.svg",
  48989. extra: 1484/1296,
  48990. bottom: 25/1509
  48991. }
  48992. },
  48993. },
  48994. [
  48995. {
  48996. name: "Micro",
  48997. height: math.unit(3, "inches"),
  48998. default: true
  48999. },
  49000. {
  49001. name: "Normal",
  49002. height: math.unit(5 + 7/12, "feet")
  49003. },
  49004. ]
  49005. ))
  49006. characterMakers.push(() => makeCharacter(
  49007. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49008. {
  49009. front: {
  49010. height: math.unit(6 + 2/12, "feet"),
  49011. name: "Front",
  49012. image: {
  49013. source: "./media/characters/natel/front.svg",
  49014. extra: 1833/1692,
  49015. bottom: 166/1999
  49016. }
  49017. },
  49018. },
  49019. [
  49020. {
  49021. name: "Normal",
  49022. height: math.unit(6 + 2/12, "feet"),
  49023. default: true
  49024. },
  49025. ]
  49026. ))
  49027. characterMakers.push(() => makeCharacter(
  49028. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49029. {
  49030. front: {
  49031. height: math.unit(1.75, "meters"),
  49032. name: "Front",
  49033. image: {
  49034. source: "./media/characters/misu/front.svg",
  49035. extra: 1690/1558,
  49036. bottom: 234/1924
  49037. }
  49038. },
  49039. back: {
  49040. height: math.unit(1.75, "meters"),
  49041. name: "Back",
  49042. image: {
  49043. source: "./media/characters/misu/back.svg",
  49044. extra: 1762/1618,
  49045. bottom: 146/1908
  49046. }
  49047. },
  49048. frontNude: {
  49049. height: math.unit(1.75, "meters"),
  49050. name: "Front (Nude)",
  49051. image: {
  49052. source: "./media/characters/misu/front-nude.svg",
  49053. extra: 1690/1558,
  49054. bottom: 234/1924
  49055. }
  49056. },
  49057. backNude: {
  49058. height: math.unit(1.75, "meters"),
  49059. name: "Back (Nude)",
  49060. image: {
  49061. source: "./media/characters/misu/back-nude.svg",
  49062. extra: 1762/1618,
  49063. bottom: 146/1908
  49064. }
  49065. },
  49066. frontErect: {
  49067. height: math.unit(1.75, "meters"),
  49068. name: "Front (Erect)",
  49069. image: {
  49070. source: "./media/characters/misu/front-erect.svg",
  49071. extra: 1690/1558,
  49072. bottom: 234/1924
  49073. }
  49074. },
  49075. maw: {
  49076. height: math.unit(0.47, "meters"),
  49077. name: "Maw",
  49078. image: {
  49079. source: "./media/characters/misu/maw.svg"
  49080. }
  49081. },
  49082. head: {
  49083. height: math.unit(0.35, "meters"),
  49084. name: "Head",
  49085. image: {
  49086. source: "./media/characters/misu/head.svg"
  49087. }
  49088. },
  49089. rear: {
  49090. height: math.unit(0.47, "meters"),
  49091. name: "Rear",
  49092. image: {
  49093. source: "./media/characters/misu/rear.svg"
  49094. }
  49095. },
  49096. },
  49097. [
  49098. {
  49099. name: "Normal",
  49100. height: math.unit(1.75, "meters")
  49101. },
  49102. {
  49103. name: "Not good for the people",
  49104. height: math.unit(42, "meters")
  49105. },
  49106. {
  49107. name: "Not good for the neighborhood",
  49108. height: math.unit(135, "meters")
  49109. },
  49110. {
  49111. name: "Bit bigger problem",
  49112. height: math.unit(380, "meters"),
  49113. default: true
  49114. },
  49115. {
  49116. name: "Not good for the city",
  49117. height: math.unit(1.5, "km")
  49118. },
  49119. {
  49120. name: "Not good for the county",
  49121. height: math.unit(5.5, "km")
  49122. },
  49123. {
  49124. name: "Not good for the state",
  49125. height: math.unit(25, "km")
  49126. },
  49127. {
  49128. name: "Not good for the country",
  49129. height: math.unit(125, "km")
  49130. },
  49131. {
  49132. name: "Not good for the continent",
  49133. height: math.unit(2100, "km")
  49134. },
  49135. {
  49136. name: "Not good for the planet",
  49137. height: math.unit(35000, "km")
  49138. },
  49139. {
  49140. name: "Just no",
  49141. height: math.unit(8.5e18, "km")
  49142. },
  49143. ]
  49144. ))
  49145. characterMakers.push(() => makeCharacter(
  49146. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49147. {
  49148. front: {
  49149. height: math.unit(6.5, "feet"),
  49150. name: "Front",
  49151. image: {
  49152. source: "./media/characters/poppy/front.svg",
  49153. extra: 1878/1812,
  49154. bottom: 43/1921
  49155. }
  49156. },
  49157. feet: {
  49158. height: math.unit(1.06, "feet"),
  49159. name: "Feet",
  49160. image: {
  49161. source: "./media/characters/poppy/feet.svg",
  49162. extra: 1083/1083,
  49163. bottom: 87/1170
  49164. }
  49165. },
  49166. },
  49167. [
  49168. {
  49169. name: "Human",
  49170. height: math.unit(6.5, "feet")
  49171. },
  49172. {
  49173. name: "Default",
  49174. height: math.unit(300, "feet"),
  49175. default: true
  49176. },
  49177. {
  49178. name: "Huge",
  49179. height: math.unit(850, "feet")
  49180. },
  49181. {
  49182. name: "Mega",
  49183. height: math.unit(8000, "feet")
  49184. },
  49185. {
  49186. name: "Giga",
  49187. height: math.unit(300, "miles")
  49188. },
  49189. ]
  49190. ))
  49191. characterMakers.push(() => makeCharacter(
  49192. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49193. {
  49194. bipedal: {
  49195. height: math.unit(7, "feet"),
  49196. name: "Bipedal",
  49197. image: {
  49198. source: "./media/characters/zener/bipedal.svg",
  49199. extra: 874/805,
  49200. bottom: 109/983
  49201. }
  49202. },
  49203. quadrupedal: {
  49204. height: math.unit(4.64, "feet"),
  49205. name: "Quadrupedal",
  49206. image: {
  49207. source: "./media/characters/zener/quadrupedal.svg",
  49208. extra: 638/507,
  49209. bottom: 190/828
  49210. }
  49211. },
  49212. cock: {
  49213. height: math.unit(18, "inches"),
  49214. name: "Cock",
  49215. image: {
  49216. source: "./media/characters/zener/cock.svg"
  49217. }
  49218. },
  49219. },
  49220. [
  49221. {
  49222. name: "Normal",
  49223. height: math.unit(7, "feet"),
  49224. default: true
  49225. },
  49226. ]
  49227. ))
  49228. characterMakers.push(() => makeCharacter(
  49229. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49230. {
  49231. nude: {
  49232. height: math.unit(5 + 6/12, "feet"),
  49233. name: "Nude",
  49234. image: {
  49235. source: "./media/characters/charlie-dog/nude.svg",
  49236. extra: 768/734,
  49237. bottom: 26/794
  49238. }
  49239. },
  49240. dressed: {
  49241. height: math.unit(5 + 6/12, "feet"),
  49242. name: "Dressed",
  49243. image: {
  49244. source: "./media/characters/charlie-dog/dressed.svg",
  49245. extra: 768/734,
  49246. bottom: 26/794
  49247. }
  49248. },
  49249. },
  49250. [
  49251. {
  49252. name: "Normal",
  49253. height: math.unit(5 + 6/12, "feet"),
  49254. default: true
  49255. },
  49256. ]
  49257. ))
  49258. characterMakers.push(() => makeCharacter(
  49259. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49260. {
  49261. front: {
  49262. height: math.unit(6 + 4/12, "feet"),
  49263. name: "Front",
  49264. image: {
  49265. source: "./media/characters/ir'istrasz/front.svg",
  49266. extra: 1014/977,
  49267. bottom: 65/1079
  49268. }
  49269. },
  49270. back: {
  49271. height: math.unit(6 + 4/12, "feet"),
  49272. name: "Back",
  49273. image: {
  49274. source: "./media/characters/ir'istrasz/back.svg",
  49275. extra: 1024/992,
  49276. bottom: 34/1058
  49277. }
  49278. },
  49279. },
  49280. [
  49281. {
  49282. name: "Normal",
  49283. height: math.unit(6 + 4/12, "feet"),
  49284. default: true
  49285. },
  49286. ]
  49287. ))
  49288. characterMakers.push(() => makeCharacter(
  49289. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49290. {
  49291. front: {
  49292. height: math.unit(5 + 8/12, "feet"),
  49293. name: "Front",
  49294. image: {
  49295. source: "./media/characters/dee-ditto/front.svg",
  49296. extra: 1874/1785,
  49297. bottom: 68/1942
  49298. }
  49299. },
  49300. back: {
  49301. height: math.unit(5 + 8/12, "feet"),
  49302. name: "Back",
  49303. image: {
  49304. source: "./media/characters/dee-ditto/back.svg",
  49305. extra: 1870/1783,
  49306. bottom: 77/1947
  49307. }
  49308. },
  49309. },
  49310. [
  49311. {
  49312. name: "Normal",
  49313. height: math.unit(5 + 8/12, "feet"),
  49314. default: true
  49315. },
  49316. ]
  49317. ))
  49318. characterMakers.push(() => makeCharacter(
  49319. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49320. {
  49321. front: {
  49322. height: math.unit(7 + 6/12, "feet"),
  49323. name: "Front",
  49324. image: {
  49325. source: "./media/characters/fey/front.svg",
  49326. extra: 995/979,
  49327. bottom: 30/1025
  49328. }
  49329. },
  49330. back: {
  49331. height: math.unit(7 + 6/12, "feet"),
  49332. name: "Back",
  49333. image: {
  49334. source: "./media/characters/fey/back.svg",
  49335. extra: 1079/1008,
  49336. bottom: 5/1084
  49337. }
  49338. },
  49339. dressed: {
  49340. height: math.unit(7 + 6/12, "feet"),
  49341. name: "Dressed",
  49342. image: {
  49343. source: "./media/characters/fey/dressed.svg",
  49344. extra: 995/979,
  49345. bottom: 30/1025
  49346. }
  49347. },
  49348. },
  49349. [
  49350. {
  49351. name: "Normal",
  49352. height: math.unit(7 + 6/12, "feet"),
  49353. default: true
  49354. },
  49355. ]
  49356. ))
  49357. characterMakers.push(() => makeCharacter(
  49358. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49359. {
  49360. standing: {
  49361. height: math.unit(17, "feet"),
  49362. name: "Standing",
  49363. image: {
  49364. source: "./media/characters/aster/standing.svg",
  49365. extra: 1798/1598,
  49366. bottom: 117/1915
  49367. }
  49368. },
  49369. },
  49370. [
  49371. {
  49372. name: "Normal",
  49373. height: math.unit(17, "feet"),
  49374. default: true
  49375. },
  49376. {
  49377. name: "Homewrecker",
  49378. height: math.unit(95, "feet")
  49379. },
  49380. {
  49381. name: "Planet Devourer",
  49382. height: math.unit(1008000, "miles")
  49383. },
  49384. ]
  49385. ))
  49386. characterMakers.push(() => makeCharacter(
  49387. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49388. {
  49389. front: {
  49390. height: math.unit(6 + 5/12, "feet"),
  49391. weight: math.unit(265, "lb"),
  49392. name: "Front",
  49393. image: {
  49394. source: "./media/characters/devon-childs/front.svg",
  49395. extra: 1795/1721,
  49396. bottom: 41/1836
  49397. }
  49398. },
  49399. side: {
  49400. height: math.unit(6 + 5/12, "feet"),
  49401. weight: math.unit(265, "lb"),
  49402. name: "Side",
  49403. image: {
  49404. source: "./media/characters/devon-childs/side.svg",
  49405. extra: 1812/1738,
  49406. bottom: 30/1842
  49407. }
  49408. },
  49409. back: {
  49410. height: math.unit(6 + 5/12, "feet"),
  49411. weight: math.unit(265, "lb"),
  49412. name: "Back",
  49413. image: {
  49414. source: "./media/characters/devon-childs/back.svg",
  49415. extra: 1808/1735,
  49416. bottom: 23/1831
  49417. }
  49418. },
  49419. hand: {
  49420. height: math.unit(1.464, "feet"),
  49421. name: "Hand",
  49422. image: {
  49423. source: "./media/characters/devon-childs/hand.svg"
  49424. }
  49425. },
  49426. foot: {
  49427. height: math.unit(1.6, "feet"),
  49428. name: "Foot",
  49429. image: {
  49430. source: "./media/characters/devon-childs/foot.svg"
  49431. }
  49432. },
  49433. },
  49434. [
  49435. {
  49436. name: "Micro",
  49437. height: math.unit(7, "cm")
  49438. },
  49439. {
  49440. name: "Normal",
  49441. height: math.unit(6 + 5/12, "feet"),
  49442. default: true
  49443. },
  49444. {
  49445. name: "Macro",
  49446. height: math.unit(154, "feet")
  49447. },
  49448. ]
  49449. ))
  49450. characterMakers.push(() => makeCharacter(
  49451. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49452. {
  49453. front: {
  49454. height: math.unit(6, "feet"),
  49455. weight: math.unit(180, "lb"),
  49456. name: "Front",
  49457. image: {
  49458. source: "./media/characters/lydemox-vir/front.svg",
  49459. extra: 1632/1435,
  49460. bottom: 58/1690
  49461. }
  49462. },
  49463. frontSFW: {
  49464. height: math.unit(6, "feet"),
  49465. weight: math.unit(180, "lb"),
  49466. name: "Front (SFW)",
  49467. image: {
  49468. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49469. extra: 1632/1435,
  49470. bottom: 58/1690
  49471. }
  49472. },
  49473. back: {
  49474. height: math.unit(6, "feet"),
  49475. weight: math.unit(180, "lb"),
  49476. name: "Back",
  49477. image: {
  49478. source: "./media/characters/lydemox-vir/back.svg",
  49479. extra: 1593/1408,
  49480. bottom: 31/1624
  49481. }
  49482. },
  49483. paw: {
  49484. height: math.unit(1.85, "feet"),
  49485. name: "Paw",
  49486. image: {
  49487. source: "./media/characters/lydemox-vir/paw.svg"
  49488. }
  49489. },
  49490. dick: {
  49491. height: math.unit(1.8, "feet"),
  49492. name: "Dick",
  49493. image: {
  49494. source: "./media/characters/lydemox-vir/dick.svg"
  49495. }
  49496. },
  49497. },
  49498. [
  49499. {
  49500. name: "Macro",
  49501. height: math.unit(100, "feet"),
  49502. default: true
  49503. },
  49504. {
  49505. name: "Teramacro",
  49506. height: math.unit(1, "earth")
  49507. },
  49508. {
  49509. name: "Planetary",
  49510. height: math.unit(20, "earths")
  49511. },
  49512. ]
  49513. ))
  49514. characterMakers.push(() => makeCharacter(
  49515. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49516. {
  49517. front: {
  49518. height: math.unit(15 + 8/12, "feet"),
  49519. weight: math.unit(1237, "kg"),
  49520. name: "Front",
  49521. image: {
  49522. source: "./media/characters/mia/front.svg",
  49523. extra: 1573/1446,
  49524. bottom: 58/1631
  49525. }
  49526. },
  49527. },
  49528. [
  49529. {
  49530. name: "Small",
  49531. height: math.unit(9 + 5/12, "feet")
  49532. },
  49533. {
  49534. name: "Normal",
  49535. height: math.unit(15 + 8/12, "feet"),
  49536. default: true
  49537. },
  49538. ]
  49539. ))
  49540. characterMakers.push(() => makeCharacter(
  49541. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49542. {
  49543. front: {
  49544. height: math.unit(10 + 6/12, "feet"),
  49545. weight: math.unit(1.3, "tons"),
  49546. name: "Front",
  49547. image: {
  49548. source: "./media/characters/mr-graves/front.svg",
  49549. extra: 1779/1695,
  49550. bottom: 198/1977
  49551. }
  49552. },
  49553. },
  49554. [
  49555. {
  49556. name: "Normal",
  49557. height: math.unit(10 + 6 /12, "feet"),
  49558. default: true
  49559. },
  49560. ]
  49561. ))
  49562. characterMakers.push(() => makeCharacter(
  49563. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49564. {
  49565. dressedFront: {
  49566. height: math.unit(5 + 8/12, "feet"),
  49567. weight: math.unit(125, "lb"),
  49568. name: "Dressed (Front)",
  49569. image: {
  49570. source: "./media/characters/jess/dressed-front.svg",
  49571. extra: 1176/1152,
  49572. bottom: 42/1218
  49573. }
  49574. },
  49575. dressedSide: {
  49576. height: math.unit(5 + 8/12, "feet"),
  49577. weight: math.unit(125, "lb"),
  49578. name: "Dressed (Side)",
  49579. image: {
  49580. source: "./media/characters/jess/dressed-side.svg",
  49581. extra: 1204/1190,
  49582. bottom: 6/1210
  49583. }
  49584. },
  49585. nudeFront: {
  49586. height: math.unit(5 + 8/12, "feet"),
  49587. weight: math.unit(125, "lb"),
  49588. name: "Nude (Front)",
  49589. image: {
  49590. source: "./media/characters/jess/nude-front.svg",
  49591. extra: 1176/1152,
  49592. bottom: 42/1218
  49593. }
  49594. },
  49595. nudeSide: {
  49596. height: math.unit(5 + 8/12, "feet"),
  49597. weight: math.unit(125, "lb"),
  49598. name: "Nude (Side)",
  49599. image: {
  49600. source: "./media/characters/jess/nude-side.svg",
  49601. extra: 1204/1190,
  49602. bottom: 6/1210
  49603. }
  49604. },
  49605. organsFront: {
  49606. height: math.unit(2.83799342105, "feet"),
  49607. name: "Organs (Front)",
  49608. image: {
  49609. source: "./media/characters/jess/organs-front.svg"
  49610. }
  49611. },
  49612. organsSide: {
  49613. height: math.unit(2.64225290474, "feet"),
  49614. name: "Organs (Side)",
  49615. image: {
  49616. source: "./media/characters/jess/organs-side.svg"
  49617. }
  49618. },
  49619. digestiveTractFront: {
  49620. height: math.unit(2.8106580871, "feet"),
  49621. name: "Digestive Tract (Front)",
  49622. image: {
  49623. source: "./media/characters/jess/digestive-tract-front.svg"
  49624. }
  49625. },
  49626. digestiveTractSide: {
  49627. height: math.unit(2.54365045014, "feet"),
  49628. name: "Digestive Tract (Side)",
  49629. image: {
  49630. source: "./media/characters/jess/digestive-tract-side.svg"
  49631. }
  49632. },
  49633. respiratorySystemFront: {
  49634. height: math.unit(1.11196233456, "feet"),
  49635. name: "Respiratory System (Front)",
  49636. image: {
  49637. source: "./media/characters/jess/respiratory-system-front.svg"
  49638. }
  49639. },
  49640. respiratorySystemSide: {
  49641. height: math.unit(0.89327966297, "feet"),
  49642. name: "Respiratory System (Side)",
  49643. image: {
  49644. source: "./media/characters/jess/respiratory-system-side.svg"
  49645. }
  49646. },
  49647. urinaryTractFront: {
  49648. height: math.unit(1.16126356186, "feet"),
  49649. name: "Urinary Tract (Front)",
  49650. image: {
  49651. source: "./media/characters/jess/urinary-tract-front.svg"
  49652. }
  49653. },
  49654. urinaryTractSide: {
  49655. height: math.unit(1.20910039627, "feet"),
  49656. name: "Urinary Tract (Side)",
  49657. image: {
  49658. source: "./media/characters/jess/urinary-tract-side.svg"
  49659. }
  49660. },
  49661. reproductiveOrgansFront: {
  49662. height: math.unit(0.48422591566, "feet"),
  49663. name: "Reproductive Organs (Front)",
  49664. image: {
  49665. source: "./media/characters/jess/reproductive-organs-front.svg"
  49666. }
  49667. },
  49668. reproductiveOrgansSide: {
  49669. height: math.unit(0.61553314481, "feet"),
  49670. name: "Reproductive Organs (Side)",
  49671. image: {
  49672. source: "./media/characters/jess/reproductive-organs-side.svg"
  49673. }
  49674. },
  49675. breastsFront: {
  49676. height: math.unit(0.47690395121, "feet"),
  49677. name: "Breasts (Front)",
  49678. image: {
  49679. source: "./media/characters/jess/breasts-front.svg"
  49680. }
  49681. },
  49682. breastsSide: {
  49683. height: math.unit(0.30556998307, "feet"),
  49684. name: "Breasts (Side)",
  49685. image: {
  49686. source: "./media/characters/jess/breasts-side.svg"
  49687. }
  49688. },
  49689. heartFront: {
  49690. height: math.unit(0.53011022622, "feet"),
  49691. name: "Heart (Front)",
  49692. image: {
  49693. source: "./media/characters/jess/heart-front.svg"
  49694. }
  49695. },
  49696. heartSide: {
  49697. height: math.unit(0.51790695213, "feet"),
  49698. name: "Heart (Side)",
  49699. image: {
  49700. source: "./media/characters/jess/heart-side.svg"
  49701. }
  49702. },
  49703. earsAndNoseFront: {
  49704. height: math.unit(0.29385483995, "feet"),
  49705. name: "Ears and Nose (Front)",
  49706. image: {
  49707. source: "./media/characters/jess/ears-and-nose-front.svg"
  49708. }
  49709. },
  49710. earsAndNoseSide: {
  49711. height: math.unit(0.18109658741, "feet"),
  49712. name: "Ears and Nose (Side)",
  49713. image: {
  49714. source: "./media/characters/jess/ears-and-nose-side.svg"
  49715. }
  49716. },
  49717. },
  49718. [
  49719. {
  49720. name: "Normal",
  49721. height: math.unit(5 + 8/12, "feet"),
  49722. default: true
  49723. },
  49724. ]
  49725. ))
  49726. characterMakers.push(() => makeCharacter(
  49727. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49728. {
  49729. front: {
  49730. height: math.unit(6, "feet"),
  49731. weight: math.unit(6.64467e-7, "grams"),
  49732. name: "Front",
  49733. image: {
  49734. source: "./media/characters/wimpering/front.svg",
  49735. extra: 597/587,
  49736. bottom: 34/631
  49737. }
  49738. },
  49739. },
  49740. [
  49741. {
  49742. name: "Micro",
  49743. height: math.unit(0.4, "mm"),
  49744. default: true
  49745. },
  49746. ]
  49747. ))
  49748. characterMakers.push(() => makeCharacter(
  49749. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49750. {
  49751. front: {
  49752. height: math.unit(5 + 2/12, "feet"),
  49753. weight: math.unit(110, "lb"),
  49754. name: "Front",
  49755. image: {
  49756. source: "./media/characters/keltre/front.svg",
  49757. extra: 1099/1057,
  49758. bottom: 22/1121
  49759. }
  49760. },
  49761. back: {
  49762. height: math.unit(5 + 2/12, "feet"),
  49763. weight: math.unit(110, "lb"),
  49764. name: "Back",
  49765. image: {
  49766. source: "./media/characters/keltre/back.svg",
  49767. extra: 1095/1053,
  49768. bottom: 17/1112
  49769. }
  49770. },
  49771. dressed: {
  49772. height: math.unit(5 + 2/12, "feet"),
  49773. weight: math.unit(110, "lb"),
  49774. name: "Dressed",
  49775. image: {
  49776. source: "./media/characters/keltre/dressed.svg",
  49777. extra: 1099/1057,
  49778. bottom: 22/1121
  49779. }
  49780. },
  49781. winter: {
  49782. height: math.unit(5 + 2/12, "feet"),
  49783. weight: math.unit(110, "lb"),
  49784. name: "Winter",
  49785. image: {
  49786. source: "./media/characters/keltre/winter.svg",
  49787. extra: 1099/1057,
  49788. bottom: 22/1121
  49789. }
  49790. },
  49791. head: {
  49792. height: math.unit(1.61 * 0.86, "feet"),
  49793. name: "Head",
  49794. image: {
  49795. source: "./media/characters/keltre/head.svg",
  49796. extra: 534/421,
  49797. bottom: 0/534
  49798. }
  49799. },
  49800. hand: {
  49801. height: math.unit(1.3 * 0.86, "feet"),
  49802. name: "Hand",
  49803. image: {
  49804. source: "./media/characters/keltre/hand.svg"
  49805. }
  49806. },
  49807. foot: {
  49808. height: math.unit(1.8 * 0.86, "feet"),
  49809. name: "Foot",
  49810. image: {
  49811. source: "./media/characters/keltre/foot.svg"
  49812. }
  49813. },
  49814. },
  49815. [
  49816. {
  49817. name: "Fine",
  49818. height: math.unit(1, "inch")
  49819. },
  49820. {
  49821. name: "Dimnutive",
  49822. height: math.unit(4, "inches")
  49823. },
  49824. {
  49825. name: "Tiny",
  49826. height: math.unit(1, "foot")
  49827. },
  49828. {
  49829. name: "Small",
  49830. height: math.unit(3, "feet")
  49831. },
  49832. {
  49833. name: "Normal",
  49834. height: math.unit(5 + 2/12, "feet"),
  49835. default: true
  49836. },
  49837. ]
  49838. ))
  49839. characterMakers.push(() => makeCharacter(
  49840. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49841. {
  49842. front: {
  49843. height: math.unit(6 + 2/12, "feet"),
  49844. name: "Front",
  49845. image: {
  49846. source: "./media/characters/nox/front.svg",
  49847. extra: 1917/1830,
  49848. bottom: 74/1991
  49849. }
  49850. },
  49851. back: {
  49852. height: math.unit(6 + 2/12, "feet"),
  49853. name: "Back",
  49854. image: {
  49855. source: "./media/characters/nox/back.svg",
  49856. extra: 1896/1815,
  49857. bottom: 21/1917
  49858. }
  49859. },
  49860. head: {
  49861. height: math.unit(1.1, "feet"),
  49862. name: "Head",
  49863. image: {
  49864. source: "./media/characters/nox/head.svg",
  49865. extra: 874/704,
  49866. bottom: 0/874
  49867. }
  49868. },
  49869. tattoo: {
  49870. height: math.unit(0.729, "feet"),
  49871. name: "Tattoo",
  49872. image: {
  49873. source: "./media/characters/nox/tattoo.svg"
  49874. }
  49875. },
  49876. },
  49877. [
  49878. {
  49879. name: "Normal",
  49880. height: math.unit(6 + 2/12, "feet")
  49881. },
  49882. {
  49883. name: "Gigamacro",
  49884. height: math.unit(2, "earths"),
  49885. default: true
  49886. },
  49887. {
  49888. name: "Cosmic",
  49889. height: math.unit(867, "yottameters")
  49890. },
  49891. ]
  49892. ))
  49893. characterMakers.push(() => makeCharacter(
  49894. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49895. {
  49896. front: {
  49897. height: math.unit(6, "feet"),
  49898. weight: math.unit(150, "lb"),
  49899. name: "Front",
  49900. image: {
  49901. source: "./media/characters/caspian/front.svg",
  49902. extra: 1443/1359,
  49903. bottom: 0/1443
  49904. }
  49905. },
  49906. back: {
  49907. height: math.unit(6, "feet"),
  49908. weight: math.unit(150, "lb"),
  49909. name: "Back",
  49910. image: {
  49911. source: "./media/characters/caspian/back.svg",
  49912. extra: 1379/1309,
  49913. bottom: 0/1379
  49914. }
  49915. },
  49916. head: {
  49917. height: math.unit(0.9, "feet"),
  49918. name: "Head",
  49919. image: {
  49920. source: "./media/characters/caspian/head.svg",
  49921. extra: 692/492,
  49922. bottom: 0/692
  49923. }
  49924. },
  49925. headAlt: {
  49926. height: math.unit(0.95, "feet"),
  49927. name: "Head (Alt)",
  49928. image: {
  49929. source: "./media/characters/caspian/head-alt.svg",
  49930. extra: 668/508,
  49931. bottom: 0/668
  49932. }
  49933. },
  49934. hand: {
  49935. height: math.unit(0.8, "feet"),
  49936. name: "Hand",
  49937. image: {
  49938. source: "./media/characters/caspian/hand.svg"
  49939. }
  49940. },
  49941. paw: {
  49942. height: math.unit(0.95, "feet"),
  49943. name: "Paw",
  49944. image: {
  49945. source: "./media/characters/caspian/paw.svg"
  49946. }
  49947. },
  49948. },
  49949. [
  49950. {
  49951. name: "Normal",
  49952. height: math.unit(162, "feet"),
  49953. default: true
  49954. },
  49955. ]
  49956. ))
  49957. characterMakers.push(() => makeCharacter(
  49958. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49959. {
  49960. front: {
  49961. height: math.unit(6, "feet"),
  49962. name: "Front",
  49963. image: {
  49964. source: "./media/characters/myra-aisling/front.svg",
  49965. extra: 1268/1166,
  49966. bottom: 73/1341
  49967. }
  49968. },
  49969. back: {
  49970. height: math.unit(6, "feet"),
  49971. name: "Back",
  49972. image: {
  49973. source: "./media/characters/myra-aisling/back.svg",
  49974. extra: 1249/1149,
  49975. bottom: 79/1328
  49976. }
  49977. },
  49978. dressed: {
  49979. height: math.unit(6, "feet"),
  49980. name: "Dressed",
  49981. image: {
  49982. source: "./media/characters/myra-aisling/dressed.svg",
  49983. extra: 1290/1189,
  49984. bottom: 47/1337
  49985. }
  49986. },
  49987. hand: {
  49988. height: math.unit(1.1, "feet"),
  49989. name: "Hand",
  49990. image: {
  49991. source: "./media/characters/myra-aisling/hand.svg"
  49992. }
  49993. },
  49994. paw: {
  49995. height: math.unit(1.23, "feet"),
  49996. name: "Paw",
  49997. image: {
  49998. source: "./media/characters/myra-aisling/paw.svg"
  49999. }
  50000. },
  50001. },
  50002. [
  50003. {
  50004. name: "Normal",
  50005. height: math.unit(160, "feet"),
  50006. default: true
  50007. },
  50008. ]
  50009. ))
  50010. characterMakers.push(() => makeCharacter(
  50011. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50012. {
  50013. front: {
  50014. height: math.unit(6, "feet"),
  50015. name: "Front",
  50016. image: {
  50017. source: "./media/characters/tenley-sidero/front.svg",
  50018. extra: 1365/1276,
  50019. bottom: 47/1412
  50020. }
  50021. },
  50022. back: {
  50023. height: math.unit(6, "feet"),
  50024. name: "Back",
  50025. image: {
  50026. source: "./media/characters/tenley-sidero/back.svg",
  50027. extra: 1383/1283,
  50028. bottom: 35/1418
  50029. }
  50030. },
  50031. dressed: {
  50032. height: math.unit(6, "feet"),
  50033. name: "Dressed",
  50034. image: {
  50035. source: "./media/characters/tenley-sidero/dressed.svg",
  50036. extra: 1364/1275,
  50037. bottom: 42/1406
  50038. }
  50039. },
  50040. head: {
  50041. height: math.unit(1.47, "feet"),
  50042. name: "Head",
  50043. image: {
  50044. source: "./media/characters/tenley-sidero/head.svg",
  50045. extra: 610/490,
  50046. bottom: 0/610
  50047. }
  50048. },
  50049. },
  50050. [
  50051. {
  50052. name: "Normal",
  50053. height: math.unit(154, "feet"),
  50054. default: true
  50055. },
  50056. ]
  50057. ))
  50058. characterMakers.push(() => makeCharacter(
  50059. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50060. {
  50061. front: {
  50062. height: math.unit(5, "inches"),
  50063. name: "Front",
  50064. image: {
  50065. source: "./media/characters/mallory/front.svg",
  50066. extra: 1919/1678,
  50067. bottom: 29/1948
  50068. }
  50069. },
  50070. hand: {
  50071. height: math.unit(0.73, "inches"),
  50072. name: "Hand",
  50073. image: {
  50074. source: "./media/characters/mallory/hand.svg"
  50075. }
  50076. },
  50077. paw: {
  50078. height: math.unit(0.68, "inches"),
  50079. name: "Paw",
  50080. image: {
  50081. source: "./media/characters/mallory/paw.svg"
  50082. }
  50083. },
  50084. },
  50085. [
  50086. {
  50087. name: "Small",
  50088. height: math.unit(5, "inches"),
  50089. default: true
  50090. },
  50091. ]
  50092. ))
  50093. characterMakers.push(() => makeCharacter(
  50094. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50095. {
  50096. naked: {
  50097. height: math.unit(6, "feet"),
  50098. name: "Naked",
  50099. image: {
  50100. source: "./media/characters/mab/naked.svg",
  50101. extra: 1855/1757,
  50102. bottom: 208/2063
  50103. }
  50104. },
  50105. outside: {
  50106. height: math.unit(6, "feet"),
  50107. name: "Outside",
  50108. image: {
  50109. source: "./media/characters/mab/outside.svg",
  50110. extra: 1855/1757,
  50111. bottom: 208/2063
  50112. }
  50113. },
  50114. party: {
  50115. height: math.unit(6, "feet"),
  50116. name: "Party",
  50117. image: {
  50118. source: "./media/characters/mab/party.svg",
  50119. extra: 1855/1757,
  50120. bottom: 208/2063
  50121. }
  50122. },
  50123. },
  50124. [
  50125. {
  50126. name: "Normal",
  50127. height: math.unit(165, "feet"),
  50128. default: true
  50129. },
  50130. ]
  50131. ))
  50132. characterMakers.push(() => makeCharacter(
  50133. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50134. {
  50135. feral: {
  50136. height: math.unit(12, "feet"),
  50137. weight: math.unit(20000, "lb"),
  50138. name: "Side",
  50139. image: {
  50140. source: "./media/characters/winter/feral.svg",
  50141. extra: 1286/943,
  50142. bottom: 112/1398
  50143. },
  50144. form: "feral",
  50145. default: true
  50146. },
  50147. feralNsfw: {
  50148. height: math.unit(12, "feet"),
  50149. weight: math.unit(20000, "lb"),
  50150. name: "Side (NSFW)",
  50151. image: {
  50152. source: "./media/characters/winter/feral-nsfw.svg",
  50153. extra: 1286/943,
  50154. bottom: 112/1398
  50155. },
  50156. form: "feral"
  50157. },
  50158. dick: {
  50159. height: math.unit(3.79, "feet"),
  50160. name: "Dick",
  50161. image: {
  50162. source: "./media/characters/winter/dick.svg"
  50163. },
  50164. form: "feral"
  50165. },
  50166. anthro: {
  50167. height: math.unit(12, "feet"),
  50168. weight: math.unit(10, "tons"),
  50169. name: "Anthro",
  50170. image: {
  50171. source: "./media/characters/winter/anthro.svg",
  50172. extra: 1701/1553,
  50173. bottom: 64/1765
  50174. },
  50175. form: "anthro",
  50176. default: true
  50177. },
  50178. },
  50179. [
  50180. {
  50181. name: "Big",
  50182. height: math.unit(12, "feet"),
  50183. default: true,
  50184. form: "feral"
  50185. },
  50186. {
  50187. name: "Big",
  50188. height: math.unit(12, "feet"),
  50189. default: true,
  50190. form: "anthro"
  50191. },
  50192. ],
  50193. {
  50194. "feral": {
  50195. name: "Feral",
  50196. default: true
  50197. },
  50198. "anthro": {
  50199. name: "Anthro"
  50200. }
  50201. }
  50202. ))
  50203. characterMakers.push(() => makeCharacter(
  50204. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50205. {
  50206. front: {
  50207. height: math.unit(4.1, "inches"),
  50208. name: "Front",
  50209. image: {
  50210. source: "./media/characters/alto/front.svg",
  50211. extra: 736/627,
  50212. bottom: 90/826
  50213. }
  50214. },
  50215. },
  50216. [
  50217. {
  50218. name: "Normal",
  50219. height: math.unit(4.1, "inches"),
  50220. default: true
  50221. },
  50222. ]
  50223. ))
  50224. characterMakers.push(() => makeCharacter(
  50225. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50226. {
  50227. sitting: {
  50228. height: math.unit(3, "feet"),
  50229. name: "Sitting",
  50230. image: {
  50231. source: "./media/characters/ratstrid-v/sitting.svg",
  50232. extra: 355/310,
  50233. bottom: 136/491
  50234. }
  50235. },
  50236. },
  50237. [
  50238. {
  50239. name: "Normal",
  50240. height: math.unit(3, "feet"),
  50241. default: true
  50242. },
  50243. ]
  50244. ))
  50245. characterMakers.push(() => makeCharacter(
  50246. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50247. {
  50248. back: {
  50249. height: math.unit(6, "feet"),
  50250. weight: math.unit(450, "lb"),
  50251. name: "Back",
  50252. image: {
  50253. source: "./media/characters/siz/back.svg",
  50254. extra: 1449/1274,
  50255. bottom: 13/1462
  50256. }
  50257. },
  50258. },
  50259. [
  50260. {
  50261. name: "Smallest",
  50262. height: math.unit(18 + 3/12, "feet")
  50263. },
  50264. {
  50265. name: "Modest",
  50266. height: math.unit(56 + 8/12, "feet"),
  50267. default: true
  50268. },
  50269. {
  50270. name: "Largest",
  50271. height: math.unit(3590, "feet")
  50272. },
  50273. ]
  50274. ))
  50275. characterMakers.push(() => makeCharacter(
  50276. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50277. {
  50278. front: {
  50279. height: math.unit(5 + 9/12, "feet"),
  50280. weight: math.unit(150, "lb"),
  50281. name: "Front",
  50282. image: {
  50283. source: "./media/characters/ven/front.svg",
  50284. extra: 1372/1320,
  50285. bottom: 73/1445
  50286. }
  50287. },
  50288. side: {
  50289. height: math.unit(5 + 9/12, "feet"),
  50290. weight: math.unit(1150, "lb"),
  50291. name: "Side",
  50292. image: {
  50293. source: "./media/characters/ven/side.svg",
  50294. extra: 1119/1070,
  50295. bottom: 42/1161
  50296. },
  50297. default: true
  50298. },
  50299. },
  50300. [
  50301. {
  50302. name: "Normal",
  50303. height: math.unit(5 + 9/12, "feet"),
  50304. default: true
  50305. },
  50306. ]
  50307. ))
  50308. characterMakers.push(() => makeCharacter(
  50309. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50310. {
  50311. front: {
  50312. height: math.unit(12, "feet"),
  50313. weight: math.unit(1000, "kg"),
  50314. name: "Front",
  50315. image: {
  50316. source: "./media/characters/maple/front.svg",
  50317. extra: 1193/1081,
  50318. bottom: 22/1215
  50319. }
  50320. },
  50321. },
  50322. [
  50323. {
  50324. name: "Compressed",
  50325. height: math.unit(7, "feet")
  50326. },
  50327. {
  50328. name: "Normal",
  50329. height: math.unit(12, "feet"),
  50330. default: true
  50331. },
  50332. ]
  50333. ))
  50334. characterMakers.push(() => makeCharacter(
  50335. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50336. {
  50337. front: {
  50338. height: math.unit(9, "feet"),
  50339. weight: math.unit(1500, "lb"),
  50340. name: "Front",
  50341. image: {
  50342. source: "./media/characters/nora/front.svg",
  50343. extra: 1348/1286,
  50344. bottom: 218/1566
  50345. }
  50346. },
  50347. erect: {
  50348. height: math.unit(9, "feet"),
  50349. weight: math.unit(11500, "lb"),
  50350. name: "Erect",
  50351. image: {
  50352. source: "./media/characters/nora/erect.svg",
  50353. extra: 1488/1433,
  50354. bottom: 133/1621
  50355. }
  50356. },
  50357. },
  50358. [
  50359. {
  50360. name: "Normal",
  50361. height: math.unit(9, "feet"),
  50362. default: true
  50363. },
  50364. ]
  50365. ))
  50366. characterMakers.push(() => makeCharacter(
  50367. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50368. {
  50369. front: {
  50370. height: math.unit(25, "feet"),
  50371. weight: math.unit(27500, "lb"),
  50372. name: "Front",
  50373. image: {
  50374. source: "./media/characters/north-caudin/front.svg",
  50375. extra: 1184/1082,
  50376. bottom: 23/1207
  50377. }
  50378. },
  50379. },
  50380. [
  50381. {
  50382. name: "Compressed",
  50383. height: math.unit(10, "feet")
  50384. },
  50385. {
  50386. name: "Normal",
  50387. height: math.unit(25, "feet"),
  50388. default: true
  50389. },
  50390. ]
  50391. ))
  50392. characterMakers.push(() => makeCharacter(
  50393. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50394. {
  50395. front: {
  50396. height: math.unit(9, "feet"),
  50397. weight: math.unit(1250, "lb"),
  50398. name: "Front",
  50399. image: {
  50400. source: "./media/characters/merrian/front.svg",
  50401. extra: 2393/2304,
  50402. bottom: 40/2433
  50403. }
  50404. },
  50405. },
  50406. [
  50407. {
  50408. name: "Normal",
  50409. height: math.unit(9, "feet"),
  50410. default: true
  50411. },
  50412. ]
  50413. ))
  50414. characterMakers.push(() => makeCharacter(
  50415. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50416. {
  50417. front: {
  50418. height: math.unit(9, "feet"),
  50419. weight: math.unit(1000, "lb"),
  50420. name: "Front",
  50421. image: {
  50422. source: "./media/characters/hazel/front.svg",
  50423. extra: 2351/2298,
  50424. bottom: 38/2389
  50425. }
  50426. },
  50427. },
  50428. [
  50429. {
  50430. name: "Normal",
  50431. height: math.unit(9, "feet"),
  50432. default: true
  50433. },
  50434. ]
  50435. ))
  50436. characterMakers.push(() => makeCharacter(
  50437. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50438. {
  50439. front: {
  50440. height: math.unit(13, "feet"),
  50441. weight: math.unit(3200, "lb"),
  50442. name: "Front",
  50443. image: {
  50444. source: "./media/characters/emma/front.svg",
  50445. extra: 2263/2029,
  50446. bottom: 68/2331
  50447. }
  50448. },
  50449. },
  50450. [
  50451. {
  50452. name: "Normal",
  50453. height: math.unit(13, "feet"),
  50454. default: true
  50455. },
  50456. ]
  50457. ))
  50458. characterMakers.push(() => makeCharacter(
  50459. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50460. {
  50461. front: {
  50462. height: math.unit(11 + 9/12, "feet"),
  50463. weight: math.unit(2500, "lb"),
  50464. name: "Front",
  50465. image: {
  50466. source: "./media/characters/ilumina/front.svg",
  50467. extra: 2248/2209,
  50468. bottom: 164/2412
  50469. }
  50470. },
  50471. },
  50472. [
  50473. {
  50474. name: "Normal",
  50475. height: math.unit(11 + 9/12, "feet"),
  50476. default: true
  50477. },
  50478. ]
  50479. ))
  50480. characterMakers.push(() => makeCharacter(
  50481. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50482. {
  50483. front: {
  50484. height: math.unit(8 + 10/12, "feet"),
  50485. weight: math.unit(1350, "lb"),
  50486. name: "Front",
  50487. image: {
  50488. source: "./media/characters/moonshine/front.svg",
  50489. extra: 2395/2288,
  50490. bottom: 40/2435
  50491. }
  50492. },
  50493. },
  50494. [
  50495. {
  50496. name: "Normal",
  50497. height: math.unit(8 + 10/12, "feet"),
  50498. default: true
  50499. },
  50500. ]
  50501. ))
  50502. characterMakers.push(() => makeCharacter(
  50503. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50504. {
  50505. front: {
  50506. height: math.unit(14, "feet"),
  50507. weight: math.unit(3400, "lb"),
  50508. name: "Front",
  50509. image: {
  50510. source: "./media/characters/aletia/front.svg",
  50511. extra: 1185/1052,
  50512. bottom: 21/1206
  50513. }
  50514. },
  50515. },
  50516. [
  50517. {
  50518. name: "Compressed",
  50519. height: math.unit(8, "feet")
  50520. },
  50521. {
  50522. name: "Normal",
  50523. height: math.unit(14, "feet"),
  50524. default: true
  50525. },
  50526. ]
  50527. ))
  50528. characterMakers.push(() => makeCharacter(
  50529. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50530. {
  50531. front: {
  50532. height: math.unit(17, "feet"),
  50533. weight: math.unit(6500, "lb"),
  50534. name: "Front",
  50535. image: {
  50536. source: "./media/characters/deidra/front.svg",
  50537. extra: 1201/1081,
  50538. bottom: 16/1217
  50539. }
  50540. },
  50541. },
  50542. [
  50543. {
  50544. name: "Compressed",
  50545. height: math.unit(9 + 6/12, "feet")
  50546. },
  50547. {
  50548. name: "Normal",
  50549. height: math.unit(17, "feet"),
  50550. default: true
  50551. },
  50552. ]
  50553. ))
  50554. characterMakers.push(() => makeCharacter(
  50555. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50556. {
  50557. front: {
  50558. height: math.unit(7 + 4/12, "feet"),
  50559. weight: math.unit(280, "lb"),
  50560. name: "Front",
  50561. image: {
  50562. source: "./media/characters/freki-yrmori/front.svg",
  50563. extra: 1286/1182,
  50564. bottom: 29/1315
  50565. }
  50566. },
  50567. maw: {
  50568. height: math.unit(0.9, "feet"),
  50569. name: "Maw",
  50570. image: {
  50571. source: "./media/characters/freki-yrmori/maw.svg"
  50572. }
  50573. },
  50574. },
  50575. [
  50576. {
  50577. name: "Normal",
  50578. height: math.unit(7 + 4/12, "feet"),
  50579. default: true
  50580. },
  50581. {
  50582. name: "Macro",
  50583. height: math.unit(38.5, "meters")
  50584. },
  50585. ]
  50586. ))
  50587. characterMakers.push(() => makeCharacter(
  50588. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50589. {
  50590. side: {
  50591. height: math.unit(47.2, "meters"),
  50592. weight: math.unit(10000, "tons"),
  50593. name: "Side",
  50594. image: {
  50595. source: "./media/characters/aetherios/side.svg",
  50596. extra: 2363/642,
  50597. bottom: 221/2584
  50598. }
  50599. },
  50600. top: {
  50601. height: math.unit(240, "meters"),
  50602. weight: math.unit(10000, "tons"),
  50603. name: "Top",
  50604. image: {
  50605. source: "./media/characters/aetherios/top.svg"
  50606. }
  50607. },
  50608. bottom: {
  50609. height: math.unit(240, "meters"),
  50610. weight: math.unit(10000, "tons"),
  50611. name: "Bottom",
  50612. image: {
  50613. source: "./media/characters/aetherios/bottom.svg"
  50614. }
  50615. },
  50616. head: {
  50617. height: math.unit(38.6, "meters"),
  50618. name: "Head",
  50619. image: {
  50620. source: "./media/characters/aetherios/head.svg",
  50621. extra: 1335/1112,
  50622. bottom: 0/1335
  50623. }
  50624. },
  50625. front: {
  50626. height: math.unit(29, "meters"),
  50627. name: "Front",
  50628. image: {
  50629. source: "./media/characters/aetherios/front.svg",
  50630. extra: 1266/953,
  50631. bottom: 158/1424
  50632. }
  50633. },
  50634. maw: {
  50635. height: math.unit(16.37, "meters"),
  50636. name: "Maw",
  50637. image: {
  50638. source: "./media/characters/aetherios/maw.svg",
  50639. extra: 748/637,
  50640. bottom: 0/748
  50641. },
  50642. extraAttributes: {
  50643. preyCapacity: {
  50644. name: "Capacity",
  50645. power: 3,
  50646. type: "volume",
  50647. base: math.unit(1000, "people")
  50648. },
  50649. tongueSize: {
  50650. name: "Tongue Size",
  50651. power: 2,
  50652. type: "area",
  50653. base: math.unit(21, "m^2")
  50654. }
  50655. }
  50656. },
  50657. forepaw: {
  50658. height: math.unit(18, "meters"),
  50659. name: "Forepaw",
  50660. image: {
  50661. source: "./media/characters/aetherios/forepaw.svg"
  50662. }
  50663. },
  50664. hindpaw: {
  50665. height: math.unit(23, "meters"),
  50666. name: "Hindpaw",
  50667. image: {
  50668. source: "./media/characters/aetherios/hindpaw.svg"
  50669. }
  50670. },
  50671. genitals: {
  50672. height: math.unit(42, "meters"),
  50673. name: "Genitals",
  50674. image: {
  50675. source: "./media/characters/aetherios/genitals.svg"
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(47.2, "meters"),
  50683. default: true
  50684. },
  50685. {
  50686. name: "Macro",
  50687. height: math.unit(160, "meters")
  50688. },
  50689. {
  50690. name: "Mega",
  50691. height: math.unit(1.87, "km")
  50692. },
  50693. {
  50694. name: "Giga",
  50695. height: math.unit(40000, "km")
  50696. },
  50697. {
  50698. name: "Stellar",
  50699. height: math.unit(158000000, "km")
  50700. },
  50701. {
  50702. name: "Cosmic",
  50703. height: math.unit(9.46e12, "km")
  50704. },
  50705. ]
  50706. ))
  50707. characterMakers.push(() => makeCharacter(
  50708. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50709. {
  50710. front: {
  50711. height: math.unit(5 + 4/12, "feet"),
  50712. weight: math.unit(80, "lb"),
  50713. name: "Front",
  50714. image: {
  50715. source: "./media/characters/mizu-gieeg/front.svg",
  50716. extra: 850/709,
  50717. bottom: 52/902
  50718. }
  50719. },
  50720. back: {
  50721. height: math.unit(5 + 4/12, "feet"),
  50722. weight: math.unit(80, "lb"),
  50723. name: "Back",
  50724. image: {
  50725. source: "./media/characters/mizu-gieeg/back.svg",
  50726. extra: 882/745,
  50727. bottom: 25/907
  50728. }
  50729. },
  50730. },
  50731. [
  50732. {
  50733. name: "Normal",
  50734. height: math.unit(5 + 4/12, "feet"),
  50735. default: true
  50736. },
  50737. ]
  50738. ))
  50739. characterMakers.push(() => makeCharacter(
  50740. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50741. {
  50742. front: {
  50743. height: math.unit(6, "feet"),
  50744. name: "Front",
  50745. image: {
  50746. source: "./media/characters/roselle-st-papier/front.svg",
  50747. extra: 1430/1280,
  50748. bottom: 37/1467
  50749. }
  50750. },
  50751. back: {
  50752. height: math.unit(6, "feet"),
  50753. name: "Back",
  50754. image: {
  50755. source: "./media/characters/roselle-st-papier/back.svg",
  50756. extra: 1491/1296,
  50757. bottom: 23/1514
  50758. }
  50759. },
  50760. ear: {
  50761. height: math.unit(1.26, "feet"),
  50762. name: "Ear",
  50763. image: {
  50764. source: "./media/characters/roselle-st-papier/ear.svg"
  50765. }
  50766. },
  50767. },
  50768. [
  50769. {
  50770. name: "Normal",
  50771. height: math.unit(150, "feet"),
  50772. default: true
  50773. },
  50774. ]
  50775. ))
  50776. characterMakers.push(() => makeCharacter(
  50777. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50778. {
  50779. front: {
  50780. height: math.unit(1, "inches"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/valargent/front.svg",
  50784. extra: 1825/1694,
  50785. bottom: 62/1887
  50786. }
  50787. },
  50788. back: {
  50789. height: math.unit(1, "inches"),
  50790. name: "Back",
  50791. image: {
  50792. source: "./media/characters/valargent/back.svg",
  50793. extra: 1775/1682,
  50794. bottom: 88/1863
  50795. }
  50796. },
  50797. },
  50798. [
  50799. {
  50800. name: "Micro",
  50801. height: math.unit(1, "inch"),
  50802. default: true
  50803. },
  50804. ]
  50805. ))
  50806. characterMakers.push(() => makeCharacter(
  50807. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50808. {
  50809. front: {
  50810. height: math.unit(3.4, "meters"),
  50811. name: "Front",
  50812. image: {
  50813. source: "./media/characters/zarina/front.svg",
  50814. extra: 1733/1425,
  50815. bottom: 93/1826
  50816. }
  50817. },
  50818. squatting: {
  50819. height: math.unit(2.14, "meters"),
  50820. name: "Squatting",
  50821. image: {
  50822. source: "./media/characters/zarina/squatting.svg",
  50823. extra: 1073/788,
  50824. bottom: 63/1136
  50825. }
  50826. },
  50827. back: {
  50828. height: math.unit(2.14, "meters"),
  50829. name: "Back",
  50830. image: {
  50831. source: "./media/characters/zarina/back.svg",
  50832. extra: 1128/885,
  50833. bottom: 0/1128
  50834. }
  50835. },
  50836. },
  50837. [
  50838. {
  50839. name: "Normal",
  50840. height: math.unit(3.4, "meters"),
  50841. default: true
  50842. },
  50843. {
  50844. name: "Big",
  50845. height: math.unit(5, "meters")
  50846. },
  50847. {
  50848. name: "Macro",
  50849. height: math.unit(110, "meters")
  50850. },
  50851. ]
  50852. ))
  50853. characterMakers.push(() => makeCharacter(
  50854. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50855. {
  50856. front: {
  50857. height: math.unit(7, "feet"),
  50858. name: "Front",
  50859. image: {
  50860. source: "./media/characters/ventus-astro-fox/front.svg",
  50861. extra: 1792/1623,
  50862. bottom: 28/1820
  50863. }
  50864. },
  50865. back: {
  50866. height: math.unit(7, "feet"),
  50867. name: "Back",
  50868. image: {
  50869. source: "./media/characters/ventus-astro-fox/back.svg",
  50870. extra: 1789/1620,
  50871. bottom: 31/1820
  50872. }
  50873. },
  50874. outfit: {
  50875. height: math.unit(7, "feet"),
  50876. name: "Outfit",
  50877. image: {
  50878. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50879. extra: 1054/925,
  50880. bottom: 15/1069
  50881. }
  50882. },
  50883. head: {
  50884. height: math.unit(1.12, "feet"),
  50885. name: "Head",
  50886. image: {
  50887. source: "./media/characters/ventus-astro-fox/head.svg",
  50888. extra: 866/504,
  50889. bottom: 0/866
  50890. }
  50891. },
  50892. hand: {
  50893. height: math.unit(1, "feet"),
  50894. name: "Hand",
  50895. image: {
  50896. source: "./media/characters/ventus-astro-fox/hand.svg"
  50897. }
  50898. },
  50899. paw: {
  50900. height: math.unit(1.5, "feet"),
  50901. name: "Paw",
  50902. image: {
  50903. source: "./media/characters/ventus-astro-fox/paw.svg"
  50904. }
  50905. },
  50906. },
  50907. [
  50908. {
  50909. name: "Normal",
  50910. height: math.unit(7, "feet"),
  50911. default: true
  50912. },
  50913. {
  50914. name: "Macro",
  50915. height: math.unit(200, "feet")
  50916. },
  50917. {
  50918. name: "Cosmic",
  50919. height: math.unit(3, "universes")
  50920. },
  50921. ]
  50922. ))
  50923. characterMakers.push(() => makeCharacter(
  50924. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50925. {
  50926. front: {
  50927. height: math.unit(3, "meters"),
  50928. weight: math.unit(7000, "lb"),
  50929. name: "Front",
  50930. image: {
  50931. source: "./media/characters/core-t/front.svg",
  50932. extra: 5729/4941,
  50933. bottom: 1129/6858
  50934. }
  50935. },
  50936. },
  50937. [
  50938. {
  50939. name: "Big",
  50940. height: math.unit(3, "meters"),
  50941. default: true
  50942. },
  50943. ]
  50944. ))
  50945. characterMakers.push(() => makeCharacter(
  50946. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50947. {
  50948. normal: {
  50949. height: math.unit(6 + 6/12, "feet"),
  50950. weight: math.unit(275, "lb"),
  50951. name: "Front",
  50952. image: {
  50953. source: "./media/characters/cadbunny/normal.svg",
  50954. extra: 1129/947,
  50955. bottom: 93/1222
  50956. },
  50957. default: true,
  50958. form: "normal"
  50959. },
  50960. gigantamax: {
  50961. height: math.unit(26, "feet"),
  50962. weight: math.unit(16000, "lb"),
  50963. name: "Front",
  50964. image: {
  50965. source: "./media/characters/cadbunny/gigantamax.svg",
  50966. extra: 1133/944,
  50967. bottom: 90/1223
  50968. },
  50969. default: true,
  50970. form: "gigantamax"
  50971. },
  50972. },
  50973. [
  50974. {
  50975. name: "Normal",
  50976. height: math.unit(6 + 6/12, "feet"),
  50977. default: true,
  50978. form: "normal"
  50979. },
  50980. {
  50981. name: "Small",
  50982. height: math.unit(26, "feet"),
  50983. default: true,
  50984. form: "gigantamax"
  50985. },
  50986. {
  50987. name: "Large",
  50988. height: math.unit(78, "feet"),
  50989. form: "gigantamax"
  50990. },
  50991. ],
  50992. {
  50993. "normal": {
  50994. name: "Normal",
  50995. default: true
  50996. },
  50997. "gigantamax": {
  50998. name: "Gigantamax"
  50999. }
  51000. }
  51001. ))
  51002. characterMakers.push(() => makeCharacter(
  51003. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51004. {
  51005. anthroFront: {
  51006. height: math.unit(8, "feet"),
  51007. weight: math.unit(300, "lb"),
  51008. name: "Front",
  51009. image: {
  51010. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51011. extra: 1272/1176,
  51012. bottom: 53/1325
  51013. },
  51014. form: "anthro",
  51015. default: true
  51016. },
  51017. feralSide: {
  51018. height: math.unit(4, "feet"),
  51019. weight: math.unit(250, "lb"),
  51020. name: "Side",
  51021. image: {
  51022. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51023. extra: 731/621,
  51024. bottom: 0/731
  51025. },
  51026. form: "feral",
  51027. default: true
  51028. },
  51029. },
  51030. [
  51031. {
  51032. name: "Regular",
  51033. height: math.unit(8, "feet"),
  51034. form: "anthro"
  51035. },
  51036. {
  51037. name: "Macro",
  51038. height: math.unit(250, "feet"),
  51039. form: "anthro",
  51040. default: true
  51041. },
  51042. {
  51043. name: "Regular",
  51044. height: math.unit(4, "feet"),
  51045. form: "feral"
  51046. },
  51047. {
  51048. name: "Macro",
  51049. height: math.unit(125, "feet"),
  51050. form: "feral",
  51051. default: true
  51052. },
  51053. ],
  51054. {
  51055. "anthro": {
  51056. name: "Anthro",
  51057. default: true
  51058. },
  51059. "feral": {
  51060. name: "Feral",
  51061. },
  51062. }
  51063. ))
  51064. characterMakers.push(() => makeCharacter(
  51065. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51066. {
  51067. front: {
  51068. height: math.unit(11 + 10/12, "feet"),
  51069. weight: math.unit(1587, "kg"),
  51070. name: "Front",
  51071. image: {
  51072. source: "./media/characters/maple-javira-dragon/front.svg",
  51073. extra: 1136/744,
  51074. bottom: 73/1209
  51075. }
  51076. },
  51077. side: {
  51078. height: math.unit(11 + 10/12, "feet"),
  51079. weight: math.unit(1587, "kg"),
  51080. name: "Side",
  51081. image: {
  51082. source: "./media/characters/maple-javira-dragon/side.svg",
  51083. extra: 712/505,
  51084. bottom: 17/729
  51085. }
  51086. },
  51087. head: {
  51088. height: math.unit(8.05, "feet"),
  51089. name: "Head",
  51090. image: {
  51091. source: "./media/characters/maple-javira-dragon/head.svg",
  51092. extra: 1420/1344,
  51093. bottom: 0/1420
  51094. }
  51095. },
  51096. },
  51097. [
  51098. {
  51099. name: "Normal",
  51100. height: math.unit(11 + 10/12, "feet"),
  51101. default: true
  51102. },
  51103. ]
  51104. ))
  51105. characterMakers.push(() => makeCharacter(
  51106. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51107. {
  51108. front: {
  51109. height: math.unit(117, "cm"),
  51110. weight: math.unit(50, "kg"),
  51111. name: "Front",
  51112. image: {
  51113. source: "./media/characters/sonia-wyverntail/front.svg",
  51114. extra: 708/592,
  51115. bottom: 25/733
  51116. }
  51117. },
  51118. },
  51119. [
  51120. {
  51121. name: "Normal",
  51122. height: math.unit(117, "cm"),
  51123. default: true
  51124. },
  51125. ]
  51126. ))
  51127. characterMakers.push(() => makeCharacter(
  51128. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51129. {
  51130. front: {
  51131. height: math.unit(6 + 5/12, "feet"),
  51132. name: "Front",
  51133. image: {
  51134. source: "./media/characters/micah/front.svg",
  51135. extra: 1758/1546,
  51136. bottom: 214/1972
  51137. }
  51138. },
  51139. },
  51140. [
  51141. {
  51142. name: "Normal",
  51143. height: math.unit(6 + 5/12, "feet"),
  51144. default: true
  51145. },
  51146. ]
  51147. ))
  51148. characterMakers.push(() => makeCharacter(
  51149. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51150. {
  51151. front: {
  51152. height: math.unit(5 + 10/12, "feet"),
  51153. weight: math.unit(220, "lb"),
  51154. name: "Front",
  51155. image: {
  51156. source: "./media/characters/zarya/front.svg",
  51157. extra: 593/572,
  51158. bottom: 50/643
  51159. }
  51160. },
  51161. back: {
  51162. height: math.unit(5 + 10/12, "feet"),
  51163. weight: math.unit(220, "lb"),
  51164. name: "Back",
  51165. image: {
  51166. source: "./media/characters/zarya/back.svg",
  51167. extra: 603/582,
  51168. bottom: 38/641
  51169. }
  51170. },
  51171. },
  51172. [
  51173. {
  51174. name: "Normal",
  51175. height: math.unit(5 + 10/12, "feet"),
  51176. default: true
  51177. },
  51178. ]
  51179. ))
  51180. characterMakers.push(() => makeCharacter(
  51181. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51182. {
  51183. front: {
  51184. height: math.unit(7.5, "feet"),
  51185. name: "Front",
  51186. image: {
  51187. source: "./media/characters/sven-hatisson/front.svg",
  51188. extra: 917/857,
  51189. bottom: 42/959
  51190. }
  51191. },
  51192. back: {
  51193. height: math.unit(7.5, "feet"),
  51194. name: "Back",
  51195. image: {
  51196. source: "./media/characters/sven-hatisson/back.svg",
  51197. extra: 903/856,
  51198. bottom: 15/918
  51199. }
  51200. },
  51201. },
  51202. [
  51203. {
  51204. name: "Base Height",
  51205. height: math.unit(7.5, "feet")
  51206. },
  51207. {
  51208. name: "Usual Height",
  51209. height: math.unit(13.5, "feet"),
  51210. default: true
  51211. },
  51212. {
  51213. name: "Smaller Macro",
  51214. height: math.unit(85, "feet")
  51215. },
  51216. {
  51217. name: "Moderate Macro",
  51218. height: math.unit(320, "feet")
  51219. },
  51220. {
  51221. name: "Large Macro",
  51222. height: math.unit(1000, "feet")
  51223. },
  51224. {
  51225. name: "Largest Size",
  51226. height: math.unit(2, "miles")
  51227. },
  51228. ]
  51229. ))
  51230. characterMakers.push(() => makeCharacter(
  51231. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51232. {
  51233. side: {
  51234. height: math.unit(1.8, "meters"),
  51235. weight: math.unit(275, "kg"),
  51236. name: "Side",
  51237. image: {
  51238. source: "./media/characters/terra/side.svg",
  51239. extra: 1273/1147,
  51240. bottom: 0/1273
  51241. }
  51242. },
  51243. },
  51244. [
  51245. {
  51246. name: "Normal",
  51247. height: math.unit(16.2, "meters"),
  51248. default: true
  51249. },
  51250. ]
  51251. ))
  51252. characterMakers.push(() => makeCharacter(
  51253. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51254. {
  51255. borzoiFront: {
  51256. height: math.unit(6 + 9/12, "feet"),
  51257. name: "Front",
  51258. image: {
  51259. source: "./media/characters/rae/borzoi-front.svg",
  51260. extra: 1161/1098,
  51261. bottom: 31/1192
  51262. },
  51263. form: "borzoi",
  51264. default: true
  51265. },
  51266. werewolfFront: {
  51267. height: math.unit(8 + 7/12, "feet"),
  51268. name: "Front",
  51269. image: {
  51270. source: "./media/characters/rae/werewolf-front.svg",
  51271. extra: 1411/1334,
  51272. bottom: 127/1538
  51273. },
  51274. form: "werewolf",
  51275. default: true
  51276. },
  51277. },
  51278. [
  51279. {
  51280. name: "Normal",
  51281. height: math.unit(6 + 9/12, "feet"),
  51282. default: true,
  51283. form: "borzoi"
  51284. },
  51285. {
  51286. name: "Normal",
  51287. height: math.unit(8 + 7/12, "feet"),
  51288. default: true,
  51289. form: "werewolf"
  51290. },
  51291. ],
  51292. {
  51293. "borzoi": {
  51294. name: "Borzoi",
  51295. default: true
  51296. },
  51297. "werewolf": {
  51298. name: "Werewolf",
  51299. },
  51300. }
  51301. ))
  51302. characterMakers.push(() => makeCharacter(
  51303. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51304. {
  51305. front: {
  51306. height: math.unit(8 + 7/12, "feet"),
  51307. weight: math.unit(482, "lb"),
  51308. name: "Front",
  51309. image: {
  51310. source: "./media/characters/kit/front.svg",
  51311. extra: 1247/1103,
  51312. bottom: 41/1288
  51313. }
  51314. },
  51315. back: {
  51316. height: math.unit(8 + 7/12, "feet"),
  51317. weight: math.unit(482, "lb"),
  51318. name: "Back",
  51319. image: {
  51320. source: "./media/characters/kit/back.svg",
  51321. extra: 1252/1123,
  51322. bottom: 21/1273
  51323. }
  51324. },
  51325. paw: {
  51326. height: math.unit(1.46, "feet"),
  51327. name: "Paw",
  51328. image: {
  51329. source: "./media/characters/kit/paw.svg"
  51330. }
  51331. },
  51332. },
  51333. [
  51334. {
  51335. name: "Normal",
  51336. height: math.unit(2.61, "meters"),
  51337. default: true
  51338. },
  51339. {
  51340. name: "\"Tall\"",
  51341. height: math.unit(8.21, "meters")
  51342. },
  51343. {
  51344. name: "Tall",
  51345. height: math.unit(19.6, "meters")
  51346. },
  51347. {
  51348. name: "Very Tall",
  51349. height: math.unit(57.91, "meters")
  51350. },
  51351. {
  51352. name: "Semi-Macro",
  51353. height: math.unit(138.64, "meters")
  51354. },
  51355. {
  51356. name: "Macro",
  51357. height: math.unit(831.99, "meters")
  51358. },
  51359. {
  51360. name: "EX-Macro",
  51361. height: math.unit(96451121, "meters")
  51362. },
  51363. {
  51364. name: "S1-Omnipotent",
  51365. height: math.unit(4.42074e+9, "meters")
  51366. },
  51367. {
  51368. name: "S2-Omnipotent",
  51369. height: math.unit(9.42074e+17, "meters")
  51370. },
  51371. {
  51372. name: "Omnipotent",
  51373. height: math.unit(4.23112e+24, "meters")
  51374. },
  51375. {
  51376. name: "Hypergod",
  51377. height: math.unit(5.05176e+27, "meters")
  51378. },
  51379. {
  51380. name: "Hypergod-EX",
  51381. height: math.unit(9.45532e+49, "meters")
  51382. },
  51383. {
  51384. name: "Hypergod-SP",
  51385. height: math.unit(9.45532e+195, "meters")
  51386. },
  51387. ]
  51388. ))
  51389. characterMakers.push(() => makeCharacter(
  51390. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51391. {
  51392. side: {
  51393. height: math.unit(0.6, "meters"),
  51394. weight: math.unit(24, "kg"),
  51395. name: "Side",
  51396. image: {
  51397. source: "./media/characters/celeste/side.svg",
  51398. extra: 810/517,
  51399. bottom: 53/863
  51400. }
  51401. },
  51402. },
  51403. [
  51404. {
  51405. name: "Velociraptor",
  51406. height: math.unit(0.6, "meters"),
  51407. default: true
  51408. },
  51409. {
  51410. name: "Utahraptor",
  51411. height: math.unit(1.8, "meters")
  51412. },
  51413. {
  51414. name: "Gallimimus",
  51415. height: math.unit(4.0, "meters")
  51416. },
  51417. {
  51418. name: "Large",
  51419. height: math.unit(20, "meters")
  51420. },
  51421. {
  51422. name: "Planetary",
  51423. height: math.unit(50, "megameters")
  51424. },
  51425. {
  51426. name: "Stellar",
  51427. height: math.unit(1.5, "gigameters")
  51428. },
  51429. {
  51430. name: "Galactic",
  51431. height: math.unit(100, "exameters")
  51432. },
  51433. ]
  51434. ))
  51435. characterMakers.push(() => makeCharacter(
  51436. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51437. {
  51438. front: {
  51439. height: math.unit(6, "feet"),
  51440. weight: math.unit(210, "lb"),
  51441. name: "Front",
  51442. image: {
  51443. source: "./media/characters/glacia/front.svg",
  51444. extra: 958/901,
  51445. bottom: 45/1003
  51446. }
  51447. },
  51448. },
  51449. [
  51450. {
  51451. name: "Macro",
  51452. height: math.unit(1000, "meters"),
  51453. default: true
  51454. },
  51455. ]
  51456. ))
  51457. characterMakers.push(() => makeCharacter(
  51458. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51459. {
  51460. front: {
  51461. height: math.unit(4, "meters"),
  51462. name: "Front",
  51463. image: {
  51464. source: "./media/characters/giri/front.svg",
  51465. extra: 966/894,
  51466. bottom: 21/987
  51467. }
  51468. },
  51469. },
  51470. [
  51471. {
  51472. name: "Normal",
  51473. height: math.unit(4, "meters"),
  51474. default: true
  51475. },
  51476. ]
  51477. ))
  51478. characterMakers.push(() => makeCharacter(
  51479. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51480. {
  51481. back: {
  51482. height: math.unit(4, "feet"),
  51483. weight: math.unit(37, "lb"),
  51484. name: "Back",
  51485. image: {
  51486. source: "./media/characters/tin/back.svg",
  51487. extra: 845/780,
  51488. bottom: 28/873
  51489. }
  51490. },
  51491. },
  51492. [
  51493. {
  51494. name: "Normal",
  51495. height: math.unit(4, "feet"),
  51496. default: true
  51497. },
  51498. ]
  51499. ))
  51500. characterMakers.push(() => makeCharacter(
  51501. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51502. {
  51503. front: {
  51504. height: math.unit(25, "feet"),
  51505. name: "Front",
  51506. image: {
  51507. source: "./media/characters/cadenza-vivace/front.svg",
  51508. extra: 1842/1578,
  51509. bottom: 30/1872
  51510. }
  51511. },
  51512. },
  51513. [
  51514. {
  51515. name: "Macro",
  51516. height: math.unit(25, "feet"),
  51517. default: true
  51518. },
  51519. ]
  51520. ))
  51521. characterMakers.push(() => makeCharacter(
  51522. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51523. {
  51524. front: {
  51525. height: math.unit(10, "feet"),
  51526. weight: math.unit(625, "kg"),
  51527. name: "Front",
  51528. image: {
  51529. source: "./media/characters/zain/front.svg",
  51530. extra: 1682/1498,
  51531. bottom: 223/1905
  51532. }
  51533. },
  51534. back: {
  51535. height: math.unit(10, "feet"),
  51536. weight: math.unit(625, "kg"),
  51537. name: "Back",
  51538. image: {
  51539. source: "./media/characters/zain/back.svg",
  51540. extra: 1814/1657,
  51541. bottom: 152/1966
  51542. }
  51543. },
  51544. head: {
  51545. height: math.unit(10, "feet"),
  51546. weight: math.unit(625, "kg"),
  51547. name: "Head",
  51548. image: {
  51549. source: "./media/characters/zain/head.svg",
  51550. extra: 1059/762,
  51551. bottom: 0/1059
  51552. }
  51553. },
  51554. },
  51555. [
  51556. {
  51557. name: "Normal",
  51558. height: math.unit(10, "feet"),
  51559. default: true
  51560. },
  51561. ]
  51562. ))
  51563. characterMakers.push(() => makeCharacter(
  51564. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51565. {
  51566. front: {
  51567. height: math.unit(6 + 5/12, "feet"),
  51568. weight: math.unit(750, "lb"),
  51569. name: "Front",
  51570. image: {
  51571. source: "./media/characters/ruchex/front.svg",
  51572. extra: 877/820,
  51573. bottom: 17/894
  51574. },
  51575. extraAttributes: {
  51576. "width": {
  51577. name: "Width",
  51578. power: 1,
  51579. type: "length",
  51580. base: math.unit(4.757, "feet")
  51581. },
  51582. }
  51583. },
  51584. },
  51585. [
  51586. {
  51587. name: "Normal",
  51588. height: math.unit(6 + 5/12, "feet"),
  51589. default: true
  51590. },
  51591. ]
  51592. ))
  51593. characterMakers.push(() => makeCharacter(
  51594. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51595. {
  51596. dressedFront: {
  51597. height: math.unit(191, "cm"),
  51598. weight: math.unit(80, "kg"),
  51599. name: "Front",
  51600. image: {
  51601. source: "./media/characters/buster/dressed-front.svg",
  51602. extra: 1022/973,
  51603. bottom: 69/1091
  51604. }
  51605. },
  51606. dressedBack: {
  51607. height: math.unit(191, "cm"),
  51608. weight: math.unit(80, "kg"),
  51609. name: "Back",
  51610. image: {
  51611. source: "./media/characters/buster/dressed-back.svg",
  51612. extra: 1018/970,
  51613. bottom: 55/1073
  51614. }
  51615. },
  51616. nudeFront: {
  51617. height: math.unit(191, "cm"),
  51618. weight: math.unit(80, "kg"),
  51619. name: "Front (Nude)",
  51620. image: {
  51621. source: "./media/characters/buster/nude-front.svg",
  51622. extra: 1022/973,
  51623. bottom: 69/1091
  51624. }
  51625. },
  51626. nudeBack: {
  51627. height: math.unit(191, "cm"),
  51628. weight: math.unit(80, "kg"),
  51629. name: "Back (Nude)",
  51630. image: {
  51631. source: "./media/characters/buster/nude-back.svg",
  51632. extra: 1018/970,
  51633. bottom: 55/1073
  51634. }
  51635. },
  51636. dick: {
  51637. height: math.unit(2.59, "feet"),
  51638. name: "Dick",
  51639. image: {
  51640. source: "./media/characters/buster/dick.svg"
  51641. }
  51642. },
  51643. ass: {
  51644. height: math.unit(1.2, "feet"),
  51645. name: "Ass",
  51646. image: {
  51647. source: "./media/characters/buster/ass.svg"
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Normal",
  51654. height: math.unit(191, "cm"),
  51655. default: true
  51656. },
  51657. ]
  51658. ))
  51659. characterMakers.push(() => makeCharacter(
  51660. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51661. {
  51662. side: {
  51663. height: math.unit(8.1, "feet"),
  51664. weight: math.unit(3500, "lb"),
  51665. name: "Side",
  51666. image: {
  51667. source: "./media/characters/sonya/side.svg",
  51668. extra: 1730/1317,
  51669. bottom: 86/1816
  51670. }
  51671. },
  51672. },
  51673. [
  51674. {
  51675. name: "Normal",
  51676. height: math.unit(8.1, "feet"),
  51677. default: true
  51678. },
  51679. ]
  51680. ))
  51681. characterMakers.push(() => makeCharacter(
  51682. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51683. {
  51684. front: {
  51685. height: math.unit(6, "feet"),
  51686. weight: math.unit(150, "lb"),
  51687. name: "Front",
  51688. image: {
  51689. source: "./media/characters/cadence-andrysiak/front.svg",
  51690. extra: 1164/1121,
  51691. bottom: 60/1224
  51692. }
  51693. },
  51694. back: {
  51695. height: math.unit(6, "feet"),
  51696. weight: math.unit(150, "lb"),
  51697. name: "Back",
  51698. image: {
  51699. source: "./media/characters/cadence-andrysiak/back.svg",
  51700. extra: 1200/1165,
  51701. bottom: 9/1209
  51702. }
  51703. },
  51704. dressed: {
  51705. height: math.unit(6, "feet"),
  51706. weight: math.unit(150, "lb"),
  51707. name: "Dressed",
  51708. image: {
  51709. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51710. extra: 1164/1121,
  51711. bottom: 60/1224
  51712. }
  51713. },
  51714. },
  51715. [
  51716. {
  51717. name: "Micro",
  51718. height: math.unit(1, "mm")
  51719. },
  51720. {
  51721. name: "Normal",
  51722. height: math.unit(6, "feet"),
  51723. default: true
  51724. },
  51725. ]
  51726. ))
  51727. characterMakers.push(() => makeCharacter(
  51728. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51729. {
  51730. front: {
  51731. height: math.unit(60, "inches"),
  51732. weight: math.unit(16, "lb"),
  51733. preyCapacity: math.unit(80, "liters"),
  51734. name: "Front",
  51735. image: {
  51736. source: "./media/characters/penny-lynx/front.svg",
  51737. extra: 1959/1769,
  51738. bottom: 49/2008
  51739. }
  51740. },
  51741. },
  51742. [
  51743. {
  51744. name: "Nokia",
  51745. height: math.unit(2, "inches")
  51746. },
  51747. {
  51748. name: "Desktop",
  51749. height: math.unit(24, "inches")
  51750. },
  51751. {
  51752. name: "TV",
  51753. height: math.unit(60, "inches")
  51754. },
  51755. {
  51756. name: "Jumbotron",
  51757. height: math.unit(12, "feet")
  51758. },
  51759. {
  51760. name: "Billboard",
  51761. height: math.unit(48, "feet"),
  51762. default: true
  51763. },
  51764. {
  51765. name: "IMAX",
  51766. height: math.unit(96, "feet")
  51767. },
  51768. {
  51769. name: "SINGULARITY",
  51770. height: math.unit(864938, "miles")
  51771. },
  51772. ]
  51773. ))
  51774. characterMakers.push(() => makeCharacter(
  51775. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51776. {
  51777. front: {
  51778. height: math.unit(5 + 4/12, "feet"),
  51779. weight: math.unit(230, "lb"),
  51780. name: "Front",
  51781. image: {
  51782. source: "./media/characters/sukebe/front.svg",
  51783. extra: 2130/2038,
  51784. bottom: 90/2220
  51785. }
  51786. },
  51787. back: {
  51788. height: math.unit(3.48, "feet"),
  51789. weight: math.unit(230, "lb"),
  51790. name: "Back",
  51791. image: {
  51792. source: "./media/characters/sukebe/back.svg",
  51793. extra: 1670/1604,
  51794. bottom: 0/1670
  51795. }
  51796. },
  51797. },
  51798. [
  51799. {
  51800. name: "Normal",
  51801. height: math.unit(5 + 4/12, "feet"),
  51802. default: true
  51803. },
  51804. ]
  51805. ))
  51806. characterMakers.push(() => makeCharacter(
  51807. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51808. {
  51809. front: {
  51810. height: math.unit(6, "feet"),
  51811. name: "Front",
  51812. image: {
  51813. source: "./media/characters/nylla/front.svg",
  51814. extra: 1868/1699,
  51815. bottom: 97/1965
  51816. }
  51817. },
  51818. back: {
  51819. height: math.unit(6, "feet"),
  51820. name: "Back",
  51821. image: {
  51822. source: "./media/characters/nylla/back.svg",
  51823. extra: 1889/1712,
  51824. bottom: 93/1982
  51825. }
  51826. },
  51827. frontNsfw: {
  51828. height: math.unit(6, "feet"),
  51829. name: "Front (NSFW)",
  51830. image: {
  51831. source: "./media/characters/nylla/front-nsfw.svg",
  51832. extra: 1868/1699,
  51833. bottom: 97/1965
  51834. },
  51835. extraAttributes: {
  51836. "dickLength": {
  51837. name: "Dick Length",
  51838. power: 1,
  51839. type: "length",
  51840. base: math.unit(1.4, "feet")
  51841. },
  51842. "cumVolume": {
  51843. name: "Cum Volume",
  51844. power: 3,
  51845. type: "volume",
  51846. base: math.unit(100, "mL")
  51847. },
  51848. }
  51849. },
  51850. backNsfw: {
  51851. height: math.unit(6, "feet"),
  51852. name: "Back (NSFW)",
  51853. image: {
  51854. source: "./media/characters/nylla/back-nsfw.svg",
  51855. extra: 1889/1712,
  51856. bottom: 93/1982
  51857. }
  51858. },
  51859. maw: {
  51860. height: math.unit(2.10, "feet"),
  51861. name: "Maw",
  51862. image: {
  51863. source: "./media/characters/nylla/maw.svg"
  51864. }
  51865. },
  51866. paws: {
  51867. height: math.unit(2.06, "feet"),
  51868. name: "Paws",
  51869. image: {
  51870. source: "./media/characters/nylla/paws.svg"
  51871. }
  51872. },
  51873. muzzle: {
  51874. height: math.unit(0.61, "feet"),
  51875. name: "Muzzle",
  51876. image: {
  51877. source: "./media/characters/nylla/muzzle.svg"
  51878. }
  51879. },
  51880. sheath: {
  51881. height: math.unit(1.305, "feet"),
  51882. name: "Sheath",
  51883. image: {
  51884. source: "./media/characters/nylla/sheath.svg"
  51885. }
  51886. },
  51887. },
  51888. [
  51889. {
  51890. name: "Micro",
  51891. height: math.unit(7.5, "inches")
  51892. },
  51893. {
  51894. name: "Normal",
  51895. height: math.unit(7, "feet"),
  51896. default: true
  51897. },
  51898. {
  51899. name: "Macro",
  51900. height: math.unit(60, "feet")
  51901. },
  51902. {
  51903. name: "Mega",
  51904. height: math.unit(200, "feet")
  51905. },
  51906. ]
  51907. ))
  51908. characterMakers.push(() => makeCharacter(
  51909. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51910. {
  51911. front: {
  51912. height: math.unit(10, "feet"),
  51913. weight: math.unit(2300, "lb"),
  51914. name: "Front",
  51915. image: {
  51916. source: "./media/characters/hunt3r/front.svg",
  51917. extra: 1909/1742,
  51918. bottom: 46/1955
  51919. }
  51920. },
  51921. },
  51922. [
  51923. {
  51924. name: "Normal",
  51925. height: math.unit(10, "feet"),
  51926. default: true
  51927. },
  51928. ]
  51929. ))
  51930. characterMakers.push(() => makeCharacter(
  51931. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51932. {
  51933. dressed: {
  51934. height: math.unit(11, "feet"),
  51935. weight: math.unit(18500, "lb"),
  51936. preyCapacity: math.unit(9, "people"),
  51937. name: "Dressed",
  51938. image: {
  51939. source: "./media/characters/cylphis/dressed.svg",
  51940. extra: 1028/1003,
  51941. bottom: 75/1103
  51942. },
  51943. },
  51944. undressed: {
  51945. height: math.unit(11, "feet"),
  51946. weight: math.unit(18500, "lb"),
  51947. preyCapacity: math.unit(9, "people"),
  51948. name: "Undressed",
  51949. image: {
  51950. source: "./media/characters/cylphis/undressed.svg",
  51951. extra: 1028/1003,
  51952. bottom: 75/1103
  51953. }
  51954. },
  51955. full: {
  51956. height: math.unit(11, "feet"),
  51957. weight: math.unit(18500 + 150*9, "lb"),
  51958. preyCapacity: math.unit(9, "people"),
  51959. name: "Full",
  51960. image: {
  51961. source: "./media/characters/cylphis/full.svg",
  51962. extra: 1028/1003,
  51963. bottom: 75/1103
  51964. }
  51965. },
  51966. },
  51967. [
  51968. {
  51969. name: "Small",
  51970. height: math.unit(8, "feet")
  51971. },
  51972. {
  51973. name: "Normal",
  51974. height: math.unit(11, "feet"),
  51975. default: true
  51976. },
  51977. ]
  51978. ))
  51979. characterMakers.push(() => makeCharacter(
  51980. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51981. {
  51982. front: {
  51983. height: math.unit(2 + 7/12, "feet"),
  51984. name: "Front",
  51985. image: {
  51986. source: "./media/characters/orishan/front.svg",
  51987. extra: 1058/1023,
  51988. bottom: 23/1081
  51989. }
  51990. },
  51991. back: {
  51992. height: math.unit(2 + 7/12, "feet"),
  51993. name: "Back",
  51994. image: {
  51995. source: "./media/characters/orishan/back.svg",
  51996. extra: 1058/1023,
  51997. bottom: 23/1081
  51998. }
  51999. },
  52000. },
  52001. [
  52002. {
  52003. name: "Micro",
  52004. height: math.unit(2, "cm")
  52005. },
  52006. {
  52007. name: "Normal",
  52008. height: math.unit(2 + 7/12, "feet"),
  52009. default: true
  52010. },
  52011. ]
  52012. ))
  52013. characterMakers.push(() => makeCharacter(
  52014. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52015. {
  52016. front: {
  52017. height: math.unit(3, "meters"),
  52018. weight: math.unit(508, "kg"),
  52019. name: "Front",
  52020. image: {
  52021. source: "./media/characters/seranis/front.svg",
  52022. extra: 1478/1454,
  52023. bottom: 41/1519
  52024. }
  52025. },
  52026. },
  52027. [
  52028. {
  52029. name: "Normal",
  52030. height: math.unit(3, "meters"),
  52031. default: true
  52032. },
  52033. {
  52034. name: "Macro",
  52035. height: math.unit(108, "meters")
  52036. },
  52037. {
  52038. name: "Megamacro",
  52039. height: math.unit(1250, "meters")
  52040. },
  52041. ]
  52042. ))
  52043. characterMakers.push(() => makeCharacter(
  52044. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52045. {
  52046. undressed: {
  52047. height: math.unit(5 + 3/12, "feet"),
  52048. name: "Undressed",
  52049. image: {
  52050. source: "./media/characters/ankou/undressed.svg",
  52051. extra: 1301/1213,
  52052. bottom: 87/1388
  52053. }
  52054. },
  52055. dressed: {
  52056. height: math.unit(5 + 3/12, "feet"),
  52057. name: "Dressed",
  52058. image: {
  52059. source: "./media/characters/ankou/dressed.svg",
  52060. extra: 1301/1213,
  52061. bottom: 87/1388
  52062. }
  52063. },
  52064. head: {
  52065. height: math.unit(1.61, "feet"),
  52066. name: "Head",
  52067. image: {
  52068. source: "./media/characters/ankou/head.svg"
  52069. }
  52070. },
  52071. },
  52072. [
  52073. {
  52074. name: "Normal",
  52075. height: math.unit(5 + 3/12, "feet"),
  52076. default: true
  52077. },
  52078. ]
  52079. ))
  52080. characterMakers.push(() => makeCharacter(
  52081. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52082. {
  52083. side: {
  52084. height: math.unit(6 + 3/12, "feet"),
  52085. weight: math.unit(200, "kg"),
  52086. name: "Side",
  52087. image: {
  52088. source: "./media/characters/juniper-skunktaur/side.svg",
  52089. extra: 1574/1229,
  52090. bottom: 38/1612
  52091. }
  52092. },
  52093. front: {
  52094. height: math.unit(6 + 3/12, "feet"),
  52095. weight: math.unit(200, "kg"),
  52096. name: "Front",
  52097. image: {
  52098. source: "./media/characters/juniper-skunktaur/front.svg",
  52099. extra: 1337/1278,
  52100. bottom: 22/1359
  52101. }
  52102. },
  52103. back: {
  52104. height: math.unit(6 + 3/12, "feet"),
  52105. weight: math.unit(200, "kg"),
  52106. name: "Back",
  52107. image: {
  52108. source: "./media/characters/juniper-skunktaur/back.svg",
  52109. extra: 1618/1273,
  52110. bottom: 13/1631
  52111. }
  52112. },
  52113. top: {
  52114. height: math.unit(2.62, "feet"),
  52115. weight: math.unit(200, "kg"),
  52116. name: "Top",
  52117. image: {
  52118. source: "./media/characters/juniper-skunktaur/top.svg"
  52119. }
  52120. },
  52121. },
  52122. [
  52123. {
  52124. name: "Normal",
  52125. height: math.unit(6 + 3/12, "feet"),
  52126. default: true
  52127. },
  52128. ]
  52129. ))
  52130. characterMakers.push(() => makeCharacter(
  52131. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52132. {
  52133. front: {
  52134. height: math.unit(20.5, "feet"),
  52135. name: "Front",
  52136. image: {
  52137. source: "./media/characters/rei/front.svg",
  52138. extra: 1349/1195,
  52139. bottom: 31/1380
  52140. }
  52141. },
  52142. back: {
  52143. height: math.unit(20.5, "feet"),
  52144. name: "Back",
  52145. image: {
  52146. source: "./media/characters/rei/back.svg",
  52147. extra: 1358/1204,
  52148. bottom: 22/1380
  52149. }
  52150. },
  52151. pawsDigi: {
  52152. height: math.unit(3.45, "feet"),
  52153. name: "Paws (Digi)",
  52154. image: {
  52155. source: "./media/characters/rei/paws-digi.svg"
  52156. }
  52157. },
  52158. pawsPlanti: {
  52159. height: math.unit(3.45, "feet"),
  52160. name: "Paws (Planti)",
  52161. image: {
  52162. source: "./media/characters/rei/paws-planti.svg"
  52163. }
  52164. },
  52165. },
  52166. [
  52167. {
  52168. name: "Normal",
  52169. height: math.unit(20.5, "feet"),
  52170. default: true
  52171. },
  52172. ]
  52173. ))
  52174. characterMakers.push(() => makeCharacter(
  52175. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52176. {
  52177. front: {
  52178. height: math.unit(5 + 11/12, "feet"),
  52179. name: "Front",
  52180. image: {
  52181. source: "./media/characters/carina/front.svg",
  52182. extra: 1720/1449,
  52183. bottom: 14/1734
  52184. }
  52185. },
  52186. back: {
  52187. height: math.unit(5 + 11/12, "feet"),
  52188. name: "Back",
  52189. image: {
  52190. source: "./media/characters/carina/back.svg",
  52191. extra: 1493/1445,
  52192. bottom: 17/1510
  52193. }
  52194. },
  52195. paw: {
  52196. height: math.unit(0.92, "feet"),
  52197. name: "Paw",
  52198. image: {
  52199. source: "./media/characters/carina/paw.svg"
  52200. }
  52201. },
  52202. },
  52203. [
  52204. {
  52205. name: "Normal",
  52206. height: math.unit(5 + 11/12, "feet"),
  52207. default: true
  52208. },
  52209. ]
  52210. ))
  52211. characterMakers.push(() => makeCharacter(
  52212. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52213. {
  52214. front: {
  52215. height: math.unit(4.88, "meters"),
  52216. name: "Front",
  52217. image: {
  52218. source: "./media/characters/maya/front.svg",
  52219. extra: 1222/1145,
  52220. bottom: 57/1279
  52221. }
  52222. },
  52223. },
  52224. [
  52225. {
  52226. name: "Normal",
  52227. height: math.unit(4.88, "meters"),
  52228. default: true
  52229. },
  52230. {
  52231. name: "Macro",
  52232. height: math.unit(38.1, "meters")
  52233. },
  52234. {
  52235. name: "Macro+",
  52236. height: math.unit(152.4, "meters")
  52237. },
  52238. {
  52239. name: "Macro++",
  52240. height: math.unit(16.09, "km")
  52241. },
  52242. {
  52243. name: "Mega-macro",
  52244. height: math.unit(700, "megameters")
  52245. },
  52246. ]
  52247. ))
  52248. characterMakers.push(() => makeCharacter(
  52249. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52250. {
  52251. front: {
  52252. height: math.unit(6 + 2/12, "feet"),
  52253. weight: math.unit(500, "lb"),
  52254. preyCapacity: math.unit(4, "people"),
  52255. name: "Front",
  52256. image: {
  52257. source: "./media/characters/yepir/front.svg"
  52258. }
  52259. },
  52260. side: {
  52261. height: math.unit(6 + 2/12, "feet"),
  52262. weight: math.unit(500, "lb"),
  52263. preyCapacity: math.unit(4, "people"),
  52264. name: "Side",
  52265. image: {
  52266. source: "./media/characters/yepir/side.svg"
  52267. }
  52268. },
  52269. paw: {
  52270. height: math.unit(1.05, "feet"),
  52271. name: "Paw",
  52272. image: {
  52273. source: "./media/characters/yepir/paw.svg"
  52274. }
  52275. },
  52276. },
  52277. [
  52278. {
  52279. name: "Normal",
  52280. height: math.unit(6 + 2/12, "feet"),
  52281. default: true
  52282. },
  52283. ]
  52284. ))
  52285. characterMakers.push(() => makeCharacter(
  52286. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52287. {
  52288. front: {
  52289. height: math.unit(5 + 4/12, "feet"),
  52290. name: "Front",
  52291. image: {
  52292. source: "./media/characters/russec/front.svg",
  52293. extra: 1926/1626,
  52294. bottom: 72/1998
  52295. }
  52296. },
  52297. back: {
  52298. height: math.unit(5 + 4/12, "feet"),
  52299. name: "Back",
  52300. image: {
  52301. source: "./media/characters/russec/back.svg",
  52302. extra: 1910/1591,
  52303. bottom: 48/1958
  52304. }
  52305. },
  52306. },
  52307. [
  52308. {
  52309. name: "Small",
  52310. height: math.unit(5 + 4/12, "feet")
  52311. },
  52312. {
  52313. name: "Normal",
  52314. height: math.unit(72, "feet"),
  52315. default: true
  52316. },
  52317. ]
  52318. ))
  52319. characterMakers.push(() => makeCharacter(
  52320. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52321. {
  52322. side: {
  52323. height: math.unit(12, "feet"),
  52324. name: "Side",
  52325. image: {
  52326. source: "./media/characters/cianus/side.svg",
  52327. extra: 808/526,
  52328. bottom: 61/869
  52329. }
  52330. },
  52331. },
  52332. [
  52333. {
  52334. name: "Normal",
  52335. height: math.unit(12, "feet"),
  52336. default: true
  52337. },
  52338. ]
  52339. ))
  52340. characterMakers.push(() => makeCharacter(
  52341. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52342. {
  52343. front: {
  52344. height: math.unit(9 + 6/12, "feet"),
  52345. weight: math.unit(300, "lb"),
  52346. name: "Front",
  52347. image: {
  52348. source: "./media/characters/ahab/front.svg",
  52349. extra: 1897/1868,
  52350. bottom: 121/2018
  52351. }
  52352. },
  52353. frontNsfw: {
  52354. height: math.unit(9 + 6/12, "feet"),
  52355. weight: math.unit(300, "lb"),
  52356. name: "Front-nsfw",
  52357. image: {
  52358. source: "./media/characters/ahab/front-nsfw.svg",
  52359. extra: 1897/1868,
  52360. bottom: 121/2018
  52361. }
  52362. },
  52363. },
  52364. [
  52365. {
  52366. name: "Normal",
  52367. height: math.unit(9 + 6/12, "feet")
  52368. },
  52369. {
  52370. name: "Macro",
  52371. height: math.unit(657, "feet"),
  52372. default: true
  52373. },
  52374. ]
  52375. ))
  52376. characterMakers.push(() => makeCharacter(
  52377. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52378. {
  52379. front: {
  52380. height: math.unit(2.69, "meters"),
  52381. weight: math.unit(132, "kg"),
  52382. name: "Front",
  52383. image: {
  52384. source: "./media/characters/aarkus/front.svg",
  52385. extra: 1400/1231,
  52386. bottom: 34/1434
  52387. }
  52388. },
  52389. back: {
  52390. height: math.unit(2.69, "meters"),
  52391. weight: math.unit(132, "kg"),
  52392. name: "Back",
  52393. image: {
  52394. source: "./media/characters/aarkus/back.svg",
  52395. extra: 1381/1218,
  52396. bottom: 30/1411
  52397. }
  52398. },
  52399. frontNsfw: {
  52400. height: math.unit(2.69, "meters"),
  52401. weight: math.unit(132, "kg"),
  52402. name: "Front (NSFW)",
  52403. image: {
  52404. source: "./media/characters/aarkus/front-nsfw.svg",
  52405. extra: 1400/1231,
  52406. bottom: 34/1434
  52407. }
  52408. },
  52409. foot: {
  52410. height: math.unit(1.45, "feet"),
  52411. name: "Foot",
  52412. image: {
  52413. source: "./media/characters/aarkus/foot.svg"
  52414. }
  52415. },
  52416. head: {
  52417. height: math.unit(2.85, "feet"),
  52418. name: "Head",
  52419. image: {
  52420. source: "./media/characters/aarkus/head.svg"
  52421. }
  52422. },
  52423. headAlt: {
  52424. height: math.unit(3.07, "feet"),
  52425. name: "Head (Alt)",
  52426. image: {
  52427. source: "./media/characters/aarkus/head-alt.svg"
  52428. }
  52429. },
  52430. mouth: {
  52431. height: math.unit(1.25, "feet"),
  52432. name: "Mouth",
  52433. image: {
  52434. source: "./media/characters/aarkus/mouth.svg"
  52435. }
  52436. },
  52437. dick: {
  52438. height: math.unit(1.77, "feet"),
  52439. name: "Dick",
  52440. image: {
  52441. source: "./media/characters/aarkus/dick.svg"
  52442. }
  52443. },
  52444. },
  52445. [
  52446. {
  52447. name: "Normal",
  52448. height: math.unit(2.69, "meters"),
  52449. default: true
  52450. },
  52451. {
  52452. name: "Macro",
  52453. height: math.unit(269, "meters")
  52454. },
  52455. {
  52456. name: "Macro+",
  52457. height: math.unit(672.5, "meters")
  52458. },
  52459. {
  52460. name: "Megamacro",
  52461. height: math.unit(2.017, "km")
  52462. },
  52463. ]
  52464. ))
  52465. characterMakers.push(() => makeCharacter(
  52466. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52467. {
  52468. front: {
  52469. height: math.unit(23.47, "cm"),
  52470. weight: math.unit(600, "grams"),
  52471. name: "Front",
  52472. image: {
  52473. source: "./media/characters/diode/front.svg",
  52474. extra: 1778/1396,
  52475. bottom: 95/1873
  52476. }
  52477. },
  52478. side: {
  52479. height: math.unit(23.47, "cm"),
  52480. weight: math.unit(600, "grams"),
  52481. name: "Side",
  52482. image: {
  52483. source: "./media/characters/diode/side.svg",
  52484. extra: 1831/1404,
  52485. bottom: 86/1917
  52486. }
  52487. },
  52488. wings: {
  52489. height: math.unit(0.683, "feet"),
  52490. name: "Wings",
  52491. image: {
  52492. source: "./media/characters/diode/wings.svg"
  52493. }
  52494. },
  52495. },
  52496. [
  52497. {
  52498. name: "Normal",
  52499. height: math.unit(23.47, "cm"),
  52500. default: true
  52501. },
  52502. ]
  52503. ))
  52504. characterMakers.push(() => makeCharacter(
  52505. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52506. {
  52507. front: {
  52508. height: math.unit(6 + 3/12, "feet"),
  52509. weight: math.unit(250, "lb"),
  52510. name: "Front",
  52511. image: {
  52512. source: "./media/characters/reika/front.svg",
  52513. extra: 1120/1078,
  52514. bottom: 86/1206
  52515. }
  52516. },
  52517. },
  52518. [
  52519. {
  52520. name: "Normal",
  52521. height: math.unit(6 + 3/12, "feet"),
  52522. default: true
  52523. },
  52524. ]
  52525. ))
  52526. characterMakers.push(() => makeCharacter(
  52527. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52528. {
  52529. front: {
  52530. height: math.unit(16 + 8/12, "feet"),
  52531. weight: math.unit(9000, "lb"),
  52532. name: "Front",
  52533. image: {
  52534. source: "./media/characters/lokuto-takama/front.svg",
  52535. extra: 1774/1632,
  52536. bottom: 147/1921
  52537. },
  52538. extraAttributes: {
  52539. "bustWidth": {
  52540. name: "Bust Width",
  52541. power: 1,
  52542. type: "length",
  52543. base: math.unit(2.4, "meters")
  52544. },
  52545. "breastWeight": {
  52546. name: "Breast Weight",
  52547. power: 3,
  52548. type: "mass",
  52549. base: math.unit(1000, "kg")
  52550. },
  52551. }
  52552. },
  52553. },
  52554. [
  52555. {
  52556. name: "Normal",
  52557. height: math.unit(16 + 8/12, "feet"),
  52558. default: true
  52559. },
  52560. ]
  52561. ))
  52562. characterMakers.push(() => makeCharacter(
  52563. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52564. {
  52565. front: {
  52566. height: math.unit(10, "cm"),
  52567. weight: math.unit(850, "grams"),
  52568. name: "Front",
  52569. image: {
  52570. source: "./media/characters/owak-bone/front.svg",
  52571. extra: 1965/1801,
  52572. bottom: 31/1996
  52573. }
  52574. },
  52575. },
  52576. [
  52577. {
  52578. name: "Normal",
  52579. height: math.unit(10, "cm"),
  52580. default: true
  52581. },
  52582. ]
  52583. ))
  52584. characterMakers.push(() => makeCharacter(
  52585. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52586. {
  52587. front: {
  52588. height: math.unit(2 + 6/12, "feet"),
  52589. weight: math.unit(9, "lb"),
  52590. name: "Front",
  52591. image: {
  52592. source: "./media/characters/muffin/front.svg",
  52593. extra: 1220/1195,
  52594. bottom: 84/1304
  52595. }
  52596. },
  52597. },
  52598. [
  52599. {
  52600. name: "Normal",
  52601. height: math.unit(2 + 6/12, "feet"),
  52602. default: true
  52603. },
  52604. ]
  52605. ))
  52606. characterMakers.push(() => makeCharacter(
  52607. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52608. {
  52609. front: {
  52610. height: math.unit(7, "feet"),
  52611. name: "Front",
  52612. image: {
  52613. source: "./media/characters/chimera/front.svg",
  52614. extra: 1752/1614,
  52615. bottom: 68/1820
  52616. }
  52617. },
  52618. },
  52619. [
  52620. {
  52621. name: "Normal",
  52622. height: math.unit(7, "feet")
  52623. },
  52624. {
  52625. name: "Gigamacro",
  52626. height: math.unit(2.9, "gigameters"),
  52627. default: true
  52628. },
  52629. {
  52630. name: "Universal",
  52631. height: math.unit(1.56e26, "yottameters")
  52632. },
  52633. ]
  52634. ))
  52635. characterMakers.push(() => makeCharacter(
  52636. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52637. {
  52638. front: {
  52639. height: math.unit(3, "feet"),
  52640. weight: math.unit(20, "lb"),
  52641. name: "Front",
  52642. image: {
  52643. source: "./media/characters/kit-fennec-fox/front.svg",
  52644. extra: 1027/932,
  52645. bottom: 16/1043
  52646. }
  52647. },
  52648. back: {
  52649. height: math.unit(3, "feet"),
  52650. weight: math.unit(20, "lb"),
  52651. name: "Back",
  52652. image: {
  52653. source: "./media/characters/kit-fennec-fox/back.svg",
  52654. extra: 1027/932,
  52655. bottom: 16/1043
  52656. }
  52657. },
  52658. },
  52659. [
  52660. {
  52661. name: "Normal",
  52662. height: math.unit(3, "feet"),
  52663. default: true
  52664. },
  52665. ]
  52666. ))
  52667. characterMakers.push(() => makeCharacter(
  52668. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52669. {
  52670. front: {
  52671. height: math.unit(167, "cm"),
  52672. name: "Front",
  52673. image: {
  52674. source: "./media/characters/blue-otter/front.svg",
  52675. extra: 1951/1920,
  52676. bottom: 31/1982
  52677. }
  52678. },
  52679. },
  52680. [
  52681. {
  52682. name: "Otter-Sized",
  52683. height: math.unit(100, "cm")
  52684. },
  52685. {
  52686. name: "Normal",
  52687. height: math.unit(167, "cm"),
  52688. default: true
  52689. },
  52690. ]
  52691. ))
  52692. characterMakers.push(() => makeCharacter(
  52693. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52694. {
  52695. front: {
  52696. height: math.unit(4 + 4/12, "feet"),
  52697. name: "Front",
  52698. image: {
  52699. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52700. extra: 1072/1067,
  52701. bottom: 117/1189
  52702. }
  52703. },
  52704. back: {
  52705. height: math.unit(4 + 4/12, "feet"),
  52706. name: "Back",
  52707. image: {
  52708. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52709. extra: 1135/1129,
  52710. bottom: 57/1192
  52711. }
  52712. },
  52713. head: {
  52714. height: math.unit(1.77, "feet"),
  52715. name: "Head",
  52716. image: {
  52717. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52718. }
  52719. },
  52720. },
  52721. [
  52722. {
  52723. name: "Normal",
  52724. height: math.unit(4 + 4/12, "feet"),
  52725. default: true
  52726. },
  52727. ]
  52728. ))
  52729. characterMakers.push(() => makeCharacter(
  52730. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52731. {
  52732. front: {
  52733. height: math.unit(2, "inches"),
  52734. name: "Front",
  52735. image: {
  52736. source: "./media/characters/carley-hartford/front.svg",
  52737. extra: 1035/988,
  52738. bottom: 23/1058
  52739. }
  52740. },
  52741. back: {
  52742. height: math.unit(2, "inches"),
  52743. name: "Back",
  52744. image: {
  52745. source: "./media/characters/carley-hartford/back.svg",
  52746. extra: 1035/988,
  52747. bottom: 23/1058
  52748. }
  52749. },
  52750. dressed: {
  52751. height: math.unit(2, "inches"),
  52752. name: "Dressed",
  52753. image: {
  52754. source: "./media/characters/carley-hartford/dressed.svg",
  52755. extra: 651/620,
  52756. bottom: 0/651
  52757. }
  52758. },
  52759. },
  52760. [
  52761. {
  52762. name: "Micro",
  52763. height: math.unit(2, "inches"),
  52764. default: true
  52765. },
  52766. {
  52767. name: "Macro",
  52768. height: math.unit(6 + 3/12, "feet")
  52769. },
  52770. ]
  52771. ))
  52772. characterMakers.push(() => makeCharacter(
  52773. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52774. {
  52775. front: {
  52776. height: math.unit(2 + 3/12, "feet"),
  52777. weight: math.unit(15 + 7/16, "lb"),
  52778. name: "Front",
  52779. image: {
  52780. source: "./media/characters/duke/front.svg",
  52781. extra: 910/815,
  52782. bottom: 30/940
  52783. }
  52784. },
  52785. },
  52786. [
  52787. {
  52788. name: "Normal",
  52789. height: math.unit(2 + 3/12, "feet"),
  52790. default: true
  52791. },
  52792. ]
  52793. ))
  52794. characterMakers.push(() => makeCharacter(
  52795. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52796. {
  52797. front: {
  52798. height: math.unit(5 + 4/12, "feet"),
  52799. weight: math.unit(156, "lb"),
  52800. name: "Front",
  52801. image: {
  52802. source: "./media/characters/dein/front.svg",
  52803. extra: 855/815,
  52804. bottom: 48/903
  52805. }
  52806. },
  52807. side: {
  52808. height: math.unit(5 + 4/12, "feet"),
  52809. weight: math.unit(156, "lb"),
  52810. name: "side",
  52811. image: {
  52812. source: "./media/characters/dein/side.svg",
  52813. extra: 846/803,
  52814. bottom: 25/871
  52815. }
  52816. },
  52817. maw: {
  52818. height: math.unit(1.45, "feet"),
  52819. name: "Maw",
  52820. image: {
  52821. source: "./media/characters/dein/maw.svg"
  52822. }
  52823. },
  52824. },
  52825. [
  52826. {
  52827. name: "Ferret Sized",
  52828. height: math.unit(2 + 5/12, "feet")
  52829. },
  52830. {
  52831. name: "Normal",
  52832. height: math.unit(5 + 4/12, "feet"),
  52833. default: true
  52834. },
  52835. ]
  52836. ))
  52837. characterMakers.push(() => makeCharacter(
  52838. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52839. {
  52840. front: {
  52841. height: math.unit(84 + 8/12, "feet"),
  52842. weight: math.unit(942180, "lb"),
  52843. name: "Front",
  52844. image: {
  52845. source: "./media/characters/daurine-arima/front.svg",
  52846. extra: 1989/1782,
  52847. bottom: 37/2026
  52848. }
  52849. },
  52850. side: {
  52851. height: math.unit(84 + 8/12, "feet"),
  52852. weight: math.unit(942180, "lb"),
  52853. name: "Side",
  52854. image: {
  52855. source: "./media/characters/daurine-arima/side.svg",
  52856. extra: 1997/1790,
  52857. bottom: 21/2018
  52858. }
  52859. },
  52860. back: {
  52861. height: math.unit(84 + 8/12, "feet"),
  52862. weight: math.unit(942180, "lb"),
  52863. name: "Back",
  52864. image: {
  52865. source: "./media/characters/daurine-arima/back.svg",
  52866. extra: 1992/1800,
  52867. bottom: 12/2004
  52868. }
  52869. },
  52870. head: {
  52871. height: math.unit(15.5, "feet"),
  52872. name: "Head",
  52873. image: {
  52874. source: "./media/characters/daurine-arima/head.svg"
  52875. }
  52876. },
  52877. headAlt: {
  52878. height: math.unit(19.19, "feet"),
  52879. name: "Head (Alt)",
  52880. image: {
  52881. source: "./media/characters/daurine-arima/head-alt.svg"
  52882. }
  52883. },
  52884. },
  52885. [
  52886. {
  52887. name: "Minimum height",
  52888. height: math.unit(8 + 10/12, "feet")
  52889. },
  52890. {
  52891. name: "Comfort height",
  52892. height: math.unit(19 + 6 /12, "feet")
  52893. },
  52894. {
  52895. name: "\"Normal\" height",
  52896. height: math.unit(28 + 10/12, "feet")
  52897. },
  52898. {
  52899. name: "Base height",
  52900. height: math.unit(84 + 8/12, "feet"),
  52901. default: true
  52902. },
  52903. {
  52904. name: "Mini-macro",
  52905. height: math.unit(2360, "feet")
  52906. },
  52907. {
  52908. name: "Macro",
  52909. height: math.unit(10, "miles")
  52910. },
  52911. {
  52912. name: "Goddess",
  52913. height: math.unit(9.99e40, "yottameters")
  52914. },
  52915. ]
  52916. ))
  52917. characterMakers.push(() => makeCharacter(
  52918. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52919. {
  52920. front: {
  52921. height: math.unit(2.3, "meters"),
  52922. name: "Front",
  52923. image: {
  52924. source: "./media/characters/cilenomon/front.svg",
  52925. extra: 1963/1778,
  52926. bottom: 54/2017
  52927. }
  52928. },
  52929. },
  52930. [
  52931. {
  52932. name: "Normal",
  52933. height: math.unit(2.3, "meters"),
  52934. default: true
  52935. },
  52936. {
  52937. name: "Big",
  52938. height: math.unit(5, "meters")
  52939. },
  52940. {
  52941. name: "Macro",
  52942. height: math.unit(30, "meters")
  52943. },
  52944. {
  52945. name: "True",
  52946. height: math.unit(1, "universe")
  52947. },
  52948. ]
  52949. ))
  52950. characterMakers.push(() => makeCharacter(
  52951. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52952. {
  52953. front: {
  52954. height: math.unit(5, "feet"),
  52955. name: "Front",
  52956. image: {
  52957. source: "./media/characters/sen-mink/front.svg",
  52958. extra: 1727/1675,
  52959. bottom: 35/1762
  52960. }
  52961. },
  52962. },
  52963. [
  52964. {
  52965. name: "Normal",
  52966. height: math.unit(5, "feet"),
  52967. default: true
  52968. },
  52969. ]
  52970. ))
  52971. characterMakers.push(() => makeCharacter(
  52972. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52973. {
  52974. front: {
  52975. height: math.unit(5.42999, "feet"),
  52976. weight: math.unit(100, "lb"),
  52977. name: "Front",
  52978. image: {
  52979. source: "./media/characters/ophois/front.svg",
  52980. extra: 1429/1286,
  52981. bottom: 60/1489
  52982. }
  52983. },
  52984. },
  52985. [
  52986. {
  52987. name: "Normal",
  52988. height: math.unit(5.42999, "feet"),
  52989. default: true
  52990. },
  52991. ]
  52992. ))
  52993. characterMakers.push(() => makeCharacter(
  52994. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52995. {
  52996. front: {
  52997. height: math.unit(2, "meters"),
  52998. name: "Front",
  52999. image: {
  53000. source: "./media/characters/riley/front.svg",
  53001. extra: 1779/1754,
  53002. bottom: 139/1918
  53003. }
  53004. },
  53005. },
  53006. [
  53007. {
  53008. name: "Normal",
  53009. height: math.unit(2, "meters"),
  53010. default: true
  53011. },
  53012. ]
  53013. ))
  53014. characterMakers.push(() => makeCharacter(
  53015. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53016. {
  53017. front: {
  53018. height: math.unit(6 + 2/12, "feet"),
  53019. weight: math.unit(195, "lb"),
  53020. preyCapacity: math.unit(6, "people"),
  53021. name: "Front",
  53022. image: {
  53023. source: "./media/characters/shuken-flash/front.svg",
  53024. extra: 1905/1739,
  53025. bottom: 65/1970
  53026. }
  53027. },
  53028. back: {
  53029. height: math.unit(6 + 2/12, "feet"),
  53030. weight: math.unit(195, "lb"),
  53031. preyCapacity: math.unit(6, "people"),
  53032. name: "Back",
  53033. image: {
  53034. source: "./media/characters/shuken-flash/back.svg",
  53035. extra: 1912/1751,
  53036. bottom: 13/1925
  53037. }
  53038. },
  53039. },
  53040. [
  53041. {
  53042. name: "Normal",
  53043. height: math.unit(6 + 2/12, "feet"),
  53044. default: true
  53045. },
  53046. ]
  53047. ))
  53048. characterMakers.push(() => makeCharacter(
  53049. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53050. {
  53051. front: {
  53052. height: math.unit(5 + 9/12, "feet"),
  53053. weight: math.unit(150, "lb"),
  53054. name: "Front",
  53055. image: {
  53056. source: "./media/characters/plat/front.svg",
  53057. extra: 1816/1703,
  53058. bottom: 43/1859
  53059. }
  53060. },
  53061. side: {
  53062. height: math.unit(5 + 9/12, "feet"),
  53063. weight: math.unit(300, "lb"),
  53064. name: "Side",
  53065. image: {
  53066. source: "./media/characters/plat/side.svg",
  53067. extra: 1824/1699,
  53068. bottom: 18/1842
  53069. }
  53070. },
  53071. },
  53072. [
  53073. {
  53074. name: "Normal",
  53075. height: math.unit(5 + 9/12, "feet"),
  53076. default: true
  53077. },
  53078. ]
  53079. ))
  53080. characterMakers.push(() => makeCharacter(
  53081. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53082. {
  53083. front: {
  53084. height: math.unit(9, "feet"),
  53085. weight: math.unit(1800, "lb"),
  53086. name: "Front",
  53087. image: {
  53088. source: "./media/characters/elaine/front.svg",
  53089. extra: 1833/1354,
  53090. bottom: 25/1858
  53091. }
  53092. },
  53093. back: {
  53094. height: math.unit(8.8, "feet"),
  53095. weight: math.unit(1800, "lb"),
  53096. name: "Back",
  53097. image: {
  53098. source: "./media/characters/elaine/back.svg",
  53099. extra: 1641/1233,
  53100. bottom: 53/1694
  53101. }
  53102. },
  53103. },
  53104. [
  53105. {
  53106. name: "Normal",
  53107. height: math.unit(9, "feet"),
  53108. default: true
  53109. },
  53110. ]
  53111. ))
  53112. characterMakers.push(() => makeCharacter(
  53113. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53114. {
  53115. front: {
  53116. height: math.unit(17 + 9/12, "feet"),
  53117. weight: math.unit(8000, "lb"),
  53118. name: "Front",
  53119. image: {
  53120. source: "./media/characters/vera-raven/front.svg",
  53121. extra: 1457/1412,
  53122. bottom: 121/1578
  53123. }
  53124. },
  53125. side: {
  53126. height: math.unit(17 + 9/12, "feet"),
  53127. weight: math.unit(8000, "lb"),
  53128. name: "Side",
  53129. image: {
  53130. source: "./media/characters/vera-raven/side.svg",
  53131. extra: 1510/1464,
  53132. bottom: 54/1564
  53133. }
  53134. },
  53135. },
  53136. [
  53137. {
  53138. name: "Normal",
  53139. height: math.unit(17 + 9/12, "feet"),
  53140. default: true
  53141. },
  53142. ]
  53143. ))
  53144. characterMakers.push(() => makeCharacter(
  53145. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53146. {
  53147. dressed: {
  53148. height: math.unit(6 + 9/12, "feet"),
  53149. name: "Dressed",
  53150. image: {
  53151. source: "./media/characters/nakisha/dressed.svg",
  53152. extra: 1909/1757,
  53153. bottom: 48/1957
  53154. }
  53155. },
  53156. nude: {
  53157. height: math.unit(6 + 9/12, "feet"),
  53158. name: "Nude",
  53159. image: {
  53160. source: "./media/characters/nakisha/nude.svg",
  53161. extra: 1917/1765,
  53162. bottom: 34/1951
  53163. }
  53164. },
  53165. },
  53166. [
  53167. {
  53168. name: "Normal",
  53169. height: math.unit(6 + 9/12, "feet"),
  53170. default: true
  53171. },
  53172. ]
  53173. ))
  53174. characterMakers.push(() => makeCharacter(
  53175. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53176. {
  53177. front: {
  53178. height: math.unit(87, "meters"),
  53179. name: "Front",
  53180. image: {
  53181. source: "./media/characters/serafin/front.svg",
  53182. extra: 1919/1776,
  53183. bottom: 65/1984
  53184. }
  53185. },
  53186. },
  53187. [
  53188. {
  53189. name: "Normal",
  53190. height: math.unit(87, "meters"),
  53191. default: true
  53192. },
  53193. ]
  53194. ))
  53195. characterMakers.push(() => makeCharacter(
  53196. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53197. {
  53198. front: {
  53199. height: math.unit(6, "feet"),
  53200. weight: math.unit(200, "lb"),
  53201. name: "Front",
  53202. image: {
  53203. source: "./media/characters/poptart/front.svg",
  53204. extra: 615/583,
  53205. bottom: 23/638
  53206. }
  53207. },
  53208. back: {
  53209. height: math.unit(6, "feet"),
  53210. weight: math.unit(200, "lb"),
  53211. name: "Back",
  53212. image: {
  53213. source: "./media/characters/poptart/back.svg",
  53214. extra: 617/584,
  53215. bottom: 22/639
  53216. }
  53217. },
  53218. frontNsfw: {
  53219. height: math.unit(6, "feet"),
  53220. weight: math.unit(200, "lb"),
  53221. name: "Front (NSFW)",
  53222. image: {
  53223. source: "./media/characters/poptart/front-nsfw.svg",
  53224. extra: 615/583,
  53225. bottom: 23/638
  53226. }
  53227. },
  53228. backNsfw: {
  53229. height: math.unit(6, "feet"),
  53230. weight: math.unit(200, "lb"),
  53231. name: "Back (NSFW)",
  53232. image: {
  53233. source: "./media/characters/poptart/back-nsfw.svg",
  53234. extra: 617/584,
  53235. bottom: 22/639
  53236. }
  53237. },
  53238. hand: {
  53239. height: math.unit(1.14, "feet"),
  53240. name: "Hand",
  53241. image: {
  53242. source: "./media/characters/poptart/hand.svg"
  53243. }
  53244. },
  53245. foot: {
  53246. height: math.unit(1.5, "feet"),
  53247. name: "Foot",
  53248. image: {
  53249. source: "./media/characters/poptart/foot.svg"
  53250. }
  53251. },
  53252. },
  53253. [
  53254. {
  53255. name: "Normal",
  53256. height: math.unit(6, "feet"),
  53257. default: true
  53258. },
  53259. {
  53260. name: "Grande",
  53261. height: math.unit(350, "feet")
  53262. },
  53263. {
  53264. name: "Massif",
  53265. height: math.unit(967, "feet")
  53266. },
  53267. ]
  53268. ))
  53269. characterMakers.push(() => makeCharacter(
  53270. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53271. {
  53272. hyenaSide: {
  53273. height: math.unit(120, "cm"),
  53274. weight: math.unit(120, "lb"),
  53275. name: "Side",
  53276. image: {
  53277. source: "./media/characters/trance/hyena-side.svg",
  53278. extra: 998/904,
  53279. bottom: 76/1074
  53280. }
  53281. },
  53282. },
  53283. [
  53284. {
  53285. name: "Normal",
  53286. height: math.unit(120, "cm"),
  53287. default: true
  53288. },
  53289. {
  53290. name: "Dire",
  53291. height: math.unit(230, "cm")
  53292. },
  53293. {
  53294. name: "Macro",
  53295. height: math.unit(37, "feet")
  53296. },
  53297. ]
  53298. ))
  53299. characterMakers.push(() => makeCharacter(
  53300. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53301. {
  53302. front: {
  53303. height: math.unit(6 + 3/12, "feet"),
  53304. name: "Front",
  53305. image: {
  53306. source: "./media/characters/michael-berretta/front.svg",
  53307. extra: 515/494,
  53308. bottom: 20/535
  53309. }
  53310. },
  53311. back: {
  53312. height: math.unit(6 + 3/12, "feet"),
  53313. name: "Back",
  53314. image: {
  53315. source: "./media/characters/michael-berretta/back.svg",
  53316. extra: 520/497,
  53317. bottom: 21/541
  53318. }
  53319. },
  53320. frontNsfw: {
  53321. height: math.unit(6 + 3/12, "feet"),
  53322. name: "Front (NSFW)",
  53323. image: {
  53324. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53325. extra: 515/494,
  53326. bottom: 20/535
  53327. }
  53328. },
  53329. dick: {
  53330. height: math.unit(1, "feet"),
  53331. name: "Dick",
  53332. image: {
  53333. source: "./media/characters/michael-berretta/dick.svg"
  53334. }
  53335. },
  53336. },
  53337. [
  53338. {
  53339. name: "Normal",
  53340. height: math.unit(6 + 3/12, "feet"),
  53341. default: true
  53342. },
  53343. {
  53344. name: "Big",
  53345. height: math.unit(12, "feet")
  53346. },
  53347. {
  53348. name: "Macro",
  53349. height: math.unit(187.5, "feet")
  53350. },
  53351. ]
  53352. ))
  53353. characterMakers.push(() => makeCharacter(
  53354. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53355. {
  53356. front: {
  53357. height: math.unit(9 + 9/12, "feet"),
  53358. weight: math.unit(1244, "lb"),
  53359. name: "Front",
  53360. image: {
  53361. source: "./media/characters/stella-edgecomb/front.svg",
  53362. extra: 1835/1706,
  53363. bottom: 49/1884
  53364. }
  53365. },
  53366. pen: {
  53367. height: math.unit(0.95, "feet"),
  53368. name: "Pen",
  53369. image: {
  53370. source: "./media/characters/stella-edgecomb/pen.svg"
  53371. }
  53372. },
  53373. },
  53374. [
  53375. {
  53376. name: "Cozy Bear",
  53377. height: math.unit(0.5, "inches")
  53378. },
  53379. {
  53380. name: "Normal",
  53381. height: math.unit(9 + 9/12, "feet"),
  53382. default: true
  53383. },
  53384. {
  53385. name: "Giga Bear",
  53386. height: math.unit(1, "mile")
  53387. },
  53388. {
  53389. name: "Great Bear",
  53390. height: math.unit(53, "miles")
  53391. },
  53392. {
  53393. name: "Goddess Bear",
  53394. height: math.unit(40000, "miles")
  53395. },
  53396. {
  53397. name: "Sun Bear",
  53398. height: math.unit(900000, "miles")
  53399. },
  53400. ]
  53401. ))
  53402. characterMakers.push(() => makeCharacter(
  53403. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53404. {
  53405. anthroFront: {
  53406. height: math.unit(556, "cm"),
  53407. weight: math.unit(2650, "kg"),
  53408. preyCapacity: math.unit(3, "people"),
  53409. name: "Front",
  53410. image: {
  53411. source: "./media/characters/ash´iika/front.svg",
  53412. extra: 710/673,
  53413. bottom: 15/725
  53414. },
  53415. form: "anthro",
  53416. default: true
  53417. },
  53418. anthroSide: {
  53419. height: math.unit(556, "cm"),
  53420. weight: math.unit(2650, "kg"),
  53421. preyCapacity: math.unit(3, "people"),
  53422. name: "Side",
  53423. image: {
  53424. source: "./media/characters/ash´iika/side.svg",
  53425. extra: 696/676,
  53426. bottom: 13/709
  53427. },
  53428. form: "anthro"
  53429. },
  53430. anthroDressed: {
  53431. height: math.unit(556, "cm"),
  53432. weight: math.unit(2650, "kg"),
  53433. preyCapacity: math.unit(3, "people"),
  53434. name: "Dressed",
  53435. image: {
  53436. source: "./media/characters/ash´iika/dressed.svg",
  53437. extra: 710/673,
  53438. bottom: 15/725
  53439. },
  53440. form: "anthro"
  53441. },
  53442. anthroHead: {
  53443. height: math.unit(3.5, "feet"),
  53444. name: "Head",
  53445. image: {
  53446. source: "./media/characters/ash´iika/head.svg",
  53447. extra: 348/291,
  53448. bottom: 45/393
  53449. },
  53450. form: "anthro"
  53451. },
  53452. feralSide: {
  53453. height: math.unit(870, "cm"),
  53454. weight: math.unit(17500, "kg"),
  53455. preyCapacity: math.unit(15, "people"),
  53456. name: "Side",
  53457. image: {
  53458. source: "./media/characters/ash´iika/feral.svg",
  53459. extra: 595/199,
  53460. bottom: 7/602
  53461. },
  53462. form: "feral",
  53463. default: true,
  53464. },
  53465. },
  53466. [
  53467. {
  53468. name: "Normal",
  53469. height: math.unit(556, "cm"),
  53470. default: true,
  53471. form: "anthro"
  53472. },
  53473. {
  53474. name: "Macro",
  53475. height: math.unit(88, "meters"),
  53476. form: "anthro"
  53477. },
  53478. {
  53479. name: "Normal",
  53480. height: math.unit(870, "cm"),
  53481. default: true,
  53482. form: "feral"
  53483. },
  53484. {
  53485. name: "Large",
  53486. height: math.unit(25, "meters"),
  53487. form: "feral"
  53488. },
  53489. ],
  53490. {
  53491. "anthro": {
  53492. name: "Anthro",
  53493. default: true
  53494. },
  53495. "feral": {
  53496. name: "Feral",
  53497. },
  53498. }
  53499. ))
  53500. characterMakers.push(() => makeCharacter(
  53501. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53502. {
  53503. front: {
  53504. height: math.unit(10, "feet"),
  53505. weight: math.unit(800, "lb"),
  53506. name: "Front",
  53507. image: {
  53508. source: "./media/characters/yen/front.svg",
  53509. extra: 443/411,
  53510. bottom: 6/449
  53511. }
  53512. },
  53513. sleeping: {
  53514. height: math.unit(10, "feet"),
  53515. weight: math.unit(800, "lb"),
  53516. name: "Sleeping",
  53517. image: {
  53518. source: "./media/characters/yen/sleeping.svg",
  53519. extra: 470/422,
  53520. bottom: 0/470
  53521. }
  53522. },
  53523. head: {
  53524. height: math.unit(2.2, "feet"),
  53525. name: "Head",
  53526. image: {
  53527. source: "./media/characters/yen/head.svg"
  53528. }
  53529. },
  53530. headAlt: {
  53531. height: math.unit(2.1, "feet"),
  53532. name: "Head (Alt)",
  53533. image: {
  53534. source: "./media/characters/yen/head-alt.svg"
  53535. }
  53536. },
  53537. },
  53538. [
  53539. {
  53540. name: "Normal",
  53541. height: math.unit(10, "feet"),
  53542. default: true
  53543. },
  53544. ]
  53545. ))
  53546. characterMakers.push(() => makeCharacter(
  53547. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53548. {
  53549. front: {
  53550. height: math.unit(12, "feet"),
  53551. name: "Front",
  53552. image: {
  53553. source: "./media/characters/citra/front.svg",
  53554. extra: 1950/1710,
  53555. bottom: 47/1997
  53556. }
  53557. },
  53558. },
  53559. [
  53560. {
  53561. name: "Normal",
  53562. height: math.unit(12, "feet"),
  53563. default: true
  53564. },
  53565. ]
  53566. ))
  53567. characterMakers.push(() => makeCharacter(
  53568. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53569. {
  53570. side: {
  53571. height: math.unit(7 + 10/12, "feet"),
  53572. name: "Side",
  53573. image: {
  53574. source: "./media/characters/sholstim/side.svg",
  53575. extra: 786/682,
  53576. bottom: 40/826
  53577. }
  53578. },
  53579. },
  53580. [
  53581. {
  53582. name: "Normal",
  53583. height: math.unit(7 + 10/12, "feet"),
  53584. default: true
  53585. },
  53586. ]
  53587. ))
  53588. characterMakers.push(() => makeCharacter(
  53589. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53590. {
  53591. front: {
  53592. height: math.unit(3.10, "meters"),
  53593. name: "Front",
  53594. image: {
  53595. source: "./media/characters/aggyn/front.svg",
  53596. extra: 1188/963,
  53597. bottom: 24/1212
  53598. }
  53599. },
  53600. },
  53601. [
  53602. {
  53603. name: "Normal",
  53604. height: math.unit(3.10, "meters"),
  53605. default: true
  53606. },
  53607. ]
  53608. ))
  53609. characterMakers.push(() => makeCharacter(
  53610. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53611. {
  53612. front: {
  53613. height: math.unit(7 + 5/12, "feet"),
  53614. weight: math.unit(687, "lb"),
  53615. name: "Front",
  53616. image: {
  53617. source: "./media/characters/alsandair-hergenroether/front.svg",
  53618. extra: 1251/1186,
  53619. bottom: 75/1326
  53620. }
  53621. },
  53622. back: {
  53623. height: math.unit(7 + 5/12, "feet"),
  53624. weight: math.unit(687, "lb"),
  53625. name: "Back",
  53626. image: {
  53627. source: "./media/characters/alsandair-hergenroether/back.svg",
  53628. extra: 1290/1229,
  53629. bottom: 17/1307
  53630. }
  53631. },
  53632. },
  53633. [
  53634. {
  53635. name: "Max Compression",
  53636. height: math.unit(7 + 5/12, "feet"),
  53637. default: true
  53638. },
  53639. {
  53640. name: "\"Normal\"",
  53641. height: math.unit(2, "universes")
  53642. },
  53643. ]
  53644. ))
  53645. characterMakers.push(() => makeCharacter(
  53646. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53647. {
  53648. front: {
  53649. height: math.unit(4 + 1/12, "feet"),
  53650. weight: math.unit(92, "lb"),
  53651. name: "Front",
  53652. image: {
  53653. source: "./media/characters/ie/front.svg",
  53654. extra: 1585/1352,
  53655. bottom: 91/1676
  53656. }
  53657. },
  53658. },
  53659. [
  53660. {
  53661. name: "Normal",
  53662. height: math.unit(4 + 1/12, "feet"),
  53663. default: true
  53664. },
  53665. ]
  53666. ))
  53667. characterMakers.push(() => makeCharacter(
  53668. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53669. {
  53670. anthro: {
  53671. height: math.unit(6, "feet"),
  53672. weight: math.unit(150, "lb"),
  53673. name: "Front",
  53674. image: {
  53675. source: "./media/characters/willow/anthro.svg",
  53676. extra: 1073/986,
  53677. bottom: 34/1107
  53678. },
  53679. form: "anthro",
  53680. default: true
  53681. },
  53682. taur: {
  53683. height: math.unit(6, "feet"),
  53684. weight: math.unit(150, "lb"),
  53685. name: "Side",
  53686. image: {
  53687. source: "./media/characters/willow/taur.svg",
  53688. extra: 647/512,
  53689. bottom: 136/783
  53690. },
  53691. form: "taur",
  53692. default: true
  53693. },
  53694. },
  53695. [
  53696. {
  53697. name: "Humanoid",
  53698. height: math.unit(2.7, "meters"),
  53699. form: "anthro"
  53700. },
  53701. {
  53702. name: "Normal",
  53703. height: math.unit(9, "meters"),
  53704. form: "anthro",
  53705. default: true
  53706. },
  53707. {
  53708. name: "Humanoid",
  53709. height: math.unit(2.1, "meters"),
  53710. form: "taur"
  53711. },
  53712. {
  53713. name: "Normal",
  53714. height: math.unit(7, "meters"),
  53715. form: "taur",
  53716. default: true
  53717. },
  53718. ],
  53719. {
  53720. "anthro": {
  53721. name: "Anthro",
  53722. default: true
  53723. },
  53724. "taur": {
  53725. name: "Taur",
  53726. },
  53727. }
  53728. ))
  53729. characterMakers.push(() => makeCharacter(
  53730. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53731. {
  53732. front: {
  53733. height: math.unit(2 + 5/12, "feet"),
  53734. name: "Front",
  53735. image: {
  53736. source: "./media/characters/kyan/front.svg",
  53737. extra: 460/334,
  53738. bottom: 23/483
  53739. },
  53740. extraAttributes: {
  53741. "toeLength": {
  53742. name: "Toe Length",
  53743. power: 1,
  53744. type: "length",
  53745. base: math.unit(7, "cm")
  53746. },
  53747. "toeclawLength": {
  53748. name: "Toeclaw Length",
  53749. power: 1,
  53750. type: "length",
  53751. base: math.unit(4.7, "cm")
  53752. },
  53753. "earHeight": {
  53754. name: "Ear Height",
  53755. power: 1,
  53756. type: "length",
  53757. base: math.unit(14.1, "cm")
  53758. },
  53759. }
  53760. },
  53761. paws: {
  53762. height: math.unit(0.45, "feet"),
  53763. name: "Paws",
  53764. image: {
  53765. source: "./media/characters/kyan/paws.svg",
  53766. extra: 581/581,
  53767. bottom: 114/695
  53768. }
  53769. },
  53770. },
  53771. [
  53772. {
  53773. name: "Normal",
  53774. height: math.unit(2 + 5/12, "feet"),
  53775. default: true
  53776. },
  53777. ]
  53778. ))
  53779. characterMakers.push(() => makeCharacter(
  53780. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53781. {
  53782. front: {
  53783. height: math.unit(2 + 2/3, "feet"),
  53784. name: "Front",
  53785. image: {
  53786. source: "./media/characters/xazzon/front.svg",
  53787. extra: 1109/984,
  53788. bottom: 42/1151
  53789. }
  53790. },
  53791. back: {
  53792. height: math.unit(2 + 2/3, "feet"),
  53793. name: "Back",
  53794. image: {
  53795. source: "./media/characters/xazzon/back.svg",
  53796. extra: 1095/971,
  53797. bottom: 23/1118
  53798. }
  53799. },
  53800. },
  53801. [
  53802. {
  53803. name: "Normal",
  53804. height: math.unit(2 + 2/3, "feet"),
  53805. default: true
  53806. },
  53807. ]
  53808. ))
  53809. characterMakers.push(() => makeCharacter(
  53810. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53811. {
  53812. dressed: {
  53813. height: math.unit(5 + 7/12, "feet"),
  53814. weight: math.unit(173, "lb"),
  53815. name: "Dressed",
  53816. image: {
  53817. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53818. extra: 3262/2862,
  53819. bottom: 188/3450
  53820. }
  53821. },
  53822. undressed: {
  53823. height: math.unit(5 + 7/12, "feet"),
  53824. weight: math.unit(173, "lb"),
  53825. name: "Undressed",
  53826. image: {
  53827. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53828. extra: 3262/2862,
  53829. bottom: 188/3450
  53830. }
  53831. },
  53832. },
  53833. [
  53834. {
  53835. name: "The void",
  53836. height: math.unit(7.29193e-34, "angstroms")
  53837. },
  53838. {
  53839. name: "Uh-Oh.",
  53840. height: math.unit(5.734e-7, "angstroms")
  53841. },
  53842. {
  53843. name: "Pico",
  53844. height: math.unit(0.876, "angstroms")
  53845. },
  53846. {
  53847. name: "Nano",
  53848. height: math.unit(0.000134200, "mm")
  53849. },
  53850. {
  53851. name: "Micro",
  53852. height: math.unit(0.0673020, "mm")
  53853. },
  53854. {
  53855. name: "Tiny",
  53856. height: math.unit(2.4, "mm")
  53857. },
  53858. {
  53859. name: "Actual Normal",
  53860. height: math.unit(3, "inches"),
  53861. default: true
  53862. },
  53863. {
  53864. name: "Normal",
  53865. height: math.unit(5 + 8/12, "feet")
  53866. },
  53867. {
  53868. name: "Giant",
  53869. height: math.unit(12, "feet")
  53870. },
  53871. {
  53872. name: "City Ruler",
  53873. height: math.unit(270, "meters")
  53874. },
  53875. {
  53876. name: "Giga",
  53877. height: math.unit(1117.6, "km")
  53878. },
  53879. {
  53880. name: "All-Powerful Queen",
  53881. height: math.unit(70.8, "gigameters")
  53882. },
  53883. {
  53884. name: "'Goddess'",
  53885. height: math.unit(600, "yottameters")
  53886. },
  53887. {
  53888. name: "Biggest!",
  53889. height: math.unit(4.23e5, "yottameters")
  53890. },
  53891. ]
  53892. ))
  53893. characterMakers.push(() => makeCharacter(
  53894. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53895. {
  53896. front: {
  53897. height: math.unit(8, "feet"),
  53898. weight: math.unit(300, "lb"),
  53899. name: "Front",
  53900. image: {
  53901. source: "./media/characters/khyla-shadowsong/front.svg",
  53902. extra: 861/798,
  53903. bottom: 32/893
  53904. }
  53905. },
  53906. side: {
  53907. height: math.unit(8, "feet"),
  53908. weight: math.unit(300, "lb"),
  53909. name: "Side",
  53910. image: {
  53911. source: "./media/characters/khyla-shadowsong/side.svg",
  53912. extra: 790/750,
  53913. bottom: 87/877
  53914. }
  53915. },
  53916. back: {
  53917. height: math.unit(8, "feet"),
  53918. weight: math.unit(300, "lb"),
  53919. name: "Back",
  53920. image: {
  53921. source: "./media/characters/khyla-shadowsong/back.svg",
  53922. extra: 855/808,
  53923. bottom: 14/869
  53924. }
  53925. },
  53926. head: {
  53927. height: math.unit(2.7, "feet"),
  53928. name: "Head",
  53929. image: {
  53930. source: "./media/characters/khyla-shadowsong/head.svg"
  53931. }
  53932. },
  53933. },
  53934. [
  53935. {
  53936. name: "Micro",
  53937. height: math.unit(6, "inches")
  53938. },
  53939. {
  53940. name: "Normal",
  53941. height: math.unit(8, "feet"),
  53942. default: true
  53943. },
  53944. ]
  53945. ))
  53946. characterMakers.push(() => makeCharacter(
  53947. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53948. {
  53949. hyperFront: {
  53950. height: math.unit(9 + 4/12, "feet"),
  53951. weight: math.unit(2000, "lb"),
  53952. name: "Front",
  53953. image: {
  53954. source: "./media/characters/tiden/hyper-front.svg",
  53955. extra: 400/382,
  53956. bottom: 6/406
  53957. },
  53958. form: "hyper",
  53959. },
  53960. regularFront: {
  53961. height: math.unit(7 + 10/12, "feet"),
  53962. weight: math.unit(470, "lb"),
  53963. name: "Front",
  53964. image: {
  53965. source: "./media/characters/tiden/regular-front.svg",
  53966. extra: 468/442,
  53967. bottom: 6/474
  53968. },
  53969. form: "regular",
  53970. },
  53971. },
  53972. [
  53973. {
  53974. name: "Normal",
  53975. height: math.unit(9 + 4/12, "feet"),
  53976. default: true,
  53977. form: "hyper"
  53978. },
  53979. {
  53980. name: "Normal",
  53981. height: math.unit(7 + 10/12, "feet"),
  53982. default: true,
  53983. form: "regular"
  53984. },
  53985. ],
  53986. {
  53987. "hyper": {
  53988. name: "Hyper",
  53989. default: true
  53990. },
  53991. "regular": {
  53992. name: "Regular",
  53993. },
  53994. }
  53995. ))
  53996. characterMakers.push(() => makeCharacter(
  53997. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53998. {
  53999. side: {
  54000. height: math.unit(6, "feet"),
  54001. weight: math.unit(150, "lb"),
  54002. name: "Side",
  54003. image: {
  54004. source: "./media/characters/jason-crowe/side.svg",
  54005. extra: 1771/766,
  54006. bottom: 219/1990
  54007. }
  54008. },
  54009. },
  54010. [
  54011. {
  54012. name: "Pocket Gryphon",
  54013. height: math.unit(6, "cm")
  54014. },
  54015. {
  54016. name: "Raven",
  54017. height: math.unit(60, "cm")
  54018. },
  54019. {
  54020. name: "Normal",
  54021. height: math.unit(1, "meter"),
  54022. default: true
  54023. },
  54024. ]
  54025. ))
  54026. characterMakers.push(() => makeCharacter(
  54027. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54028. {
  54029. front: {
  54030. height: math.unit(9 + 6/12, "feet"),
  54031. weight: math.unit(1100, "lb"),
  54032. name: "Front",
  54033. image: {
  54034. source: "./media/characters/django/front.svg",
  54035. extra: 1231/1136,
  54036. bottom: 34/1265
  54037. }
  54038. },
  54039. side: {
  54040. height: math.unit(9 + 6/12, "feet"),
  54041. weight: math.unit(1100, "lb"),
  54042. name: "Side",
  54043. image: {
  54044. source: "./media/characters/django/side.svg",
  54045. extra: 1267/1174,
  54046. bottom: 9/1276
  54047. }
  54048. },
  54049. },
  54050. [
  54051. {
  54052. name: "Normal",
  54053. height: math.unit(9 + 6/12, "feet"),
  54054. default: true
  54055. },
  54056. {
  54057. name: "Macro 1",
  54058. height: math.unit(50, "feet")
  54059. },
  54060. {
  54061. name: "Macro 2",
  54062. height: math.unit(500, "feet")
  54063. },
  54064. {
  54065. name: "Mega Macro",
  54066. height: math.unit(5300, "feet")
  54067. },
  54068. ]
  54069. ))
  54070. characterMakers.push(() => makeCharacter(
  54071. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54072. {
  54073. frontSfw: {
  54074. height: math.unit(120, "cm"),
  54075. weight: math.unit(15, "kg"),
  54076. name: "Front (SFW)",
  54077. image: {
  54078. source: "./media/characters/eri/front-sfw.svg",
  54079. extra: 1014/939,
  54080. bottom: 37/1051
  54081. },
  54082. form: "moth",
  54083. },
  54084. frontNsfw: {
  54085. height: math.unit(120, "cm"),
  54086. weight: math.unit(15, "kg"),
  54087. name: "Front (NSFW)",
  54088. image: {
  54089. source: "./media/characters/eri/front-nsfw.svg",
  54090. extra: 1014/939,
  54091. bottom: 37/1051
  54092. },
  54093. form: "moth",
  54094. default: true
  54095. },
  54096. egg: {
  54097. height: math.unit(10, "cm"),
  54098. name: "Egg",
  54099. image: {
  54100. source: "./media/characters/eri/egg.svg"
  54101. },
  54102. form: "egg",
  54103. default: true
  54104. },
  54105. },
  54106. [
  54107. {
  54108. name: "Normal",
  54109. height: math.unit(120, "cm"),
  54110. default: true,
  54111. form: "moth"
  54112. },
  54113. {
  54114. name: "Normal",
  54115. height: math.unit(10, "cm"),
  54116. default: true,
  54117. form: "egg"
  54118. },
  54119. ],
  54120. {
  54121. "moth": {
  54122. name: "Moth",
  54123. default: true
  54124. },
  54125. "egg": {
  54126. name: "Egg",
  54127. },
  54128. }
  54129. ))
  54130. characterMakers.push(() => makeCharacter(
  54131. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54132. {
  54133. front: {
  54134. height: math.unit(200, "feet"),
  54135. name: "Front",
  54136. image: {
  54137. source: "./media/characters/bishop-dowser/front.svg",
  54138. extra: 933/868,
  54139. bottom: 106/1039
  54140. }
  54141. },
  54142. },
  54143. [
  54144. {
  54145. name: "Giant",
  54146. height: math.unit(200, "feet"),
  54147. default: true
  54148. },
  54149. ]
  54150. ))
  54151. characterMakers.push(() => makeCharacter(
  54152. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54153. {
  54154. front: {
  54155. height: math.unit(2, "meters"),
  54156. preyCapacity: math.unit(3, "people"),
  54157. name: "Front",
  54158. image: {
  54159. source: "./media/characters/fryra/front.svg",
  54160. extra: 1025/948,
  54161. bottom: 30/1055
  54162. },
  54163. extraAttributes: {
  54164. "breastVolume": {
  54165. name: "Breast Volume",
  54166. power: 3,
  54167. type: "volume",
  54168. base: math.unit(8, "liters")
  54169. },
  54170. }
  54171. },
  54172. back: {
  54173. height: math.unit(2, "meters"),
  54174. preyCapacity: math.unit(3, "people"),
  54175. name: "Back",
  54176. image: {
  54177. source: "./media/characters/fryra/back.svg",
  54178. extra: 993/938,
  54179. bottom: 38/1031
  54180. },
  54181. extraAttributes: {
  54182. "breastVolume": {
  54183. name: "Breast Volume",
  54184. power: 3,
  54185. type: "volume",
  54186. base: math.unit(8, "liters")
  54187. },
  54188. }
  54189. },
  54190. head: {
  54191. height: math.unit(1.33, "feet"),
  54192. name: "Head",
  54193. image: {
  54194. source: "./media/characters/fryra/head.svg"
  54195. }
  54196. },
  54197. maw: {
  54198. height: math.unit(0.56, "feet"),
  54199. name: "Maw",
  54200. image: {
  54201. source: "./media/characters/fryra/maw.svg"
  54202. }
  54203. },
  54204. },
  54205. [
  54206. {
  54207. name: "Micro",
  54208. height: math.unit(5, "cm")
  54209. },
  54210. {
  54211. name: "Normal",
  54212. height: math.unit(2, "meters"),
  54213. default: true
  54214. },
  54215. {
  54216. name: "Small Macro",
  54217. height: math.unit(8, "meters")
  54218. },
  54219. {
  54220. name: "Macro",
  54221. height: math.unit(50, "meters")
  54222. },
  54223. {
  54224. name: "Megamacro",
  54225. height: math.unit(1, "km")
  54226. },
  54227. {
  54228. name: "Planetary",
  54229. height: math.unit(300000, "km")
  54230. },
  54231. {
  54232. name: "Universal",
  54233. height: math.unit(250, "lightyears")
  54234. },
  54235. {
  54236. name: "Fabric of Reality",
  54237. height: math.unit(1000, "multiverses")
  54238. },
  54239. ]
  54240. ))
  54241. characterMakers.push(() => makeCharacter(
  54242. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54243. {
  54244. frontDressed: {
  54245. height: math.unit(6 + 2/12, "feet"),
  54246. name: "Front (Dressed)",
  54247. image: {
  54248. source: "./media/characters/fiera/front-dressed.svg",
  54249. extra: 1883/1793,
  54250. bottom: 70/1953
  54251. }
  54252. },
  54253. backDressed: {
  54254. height: math.unit(6 + 2/12, "feet"),
  54255. name: "Back (Dressed)",
  54256. image: {
  54257. source: "./media/characters/fiera/back-dressed.svg",
  54258. extra: 1847/1780,
  54259. bottom: 70/1917
  54260. }
  54261. },
  54262. frontNude: {
  54263. height: math.unit(6 + 2/12, "feet"),
  54264. name: "Front (Nude)",
  54265. image: {
  54266. source: "./media/characters/fiera/front-nude.svg",
  54267. extra: 1875/1785,
  54268. bottom: 66/1941
  54269. }
  54270. },
  54271. backNude: {
  54272. height: math.unit(6 + 2/12, "feet"),
  54273. name: "Back (Nude)",
  54274. image: {
  54275. source: "./media/characters/fiera/back-nude.svg",
  54276. extra: 1855/1788,
  54277. bottom: 44/1899
  54278. }
  54279. },
  54280. maw: {
  54281. height: math.unit(1.3, "feet"),
  54282. name: "Maw",
  54283. image: {
  54284. source: "./media/characters/fiera/maw.svg"
  54285. }
  54286. },
  54287. paw: {
  54288. height: math.unit(1, "feet"),
  54289. name: "Paw",
  54290. image: {
  54291. source: "./media/characters/fiera/paw.svg"
  54292. }
  54293. },
  54294. shoe: {
  54295. height: math.unit(1.05, "feet"),
  54296. name: "Shoe",
  54297. image: {
  54298. source: "./media/characters/fiera/shoe.svg"
  54299. }
  54300. },
  54301. },
  54302. [
  54303. {
  54304. name: "Normal",
  54305. height: math.unit(6 + 2/12, "feet"),
  54306. default: true
  54307. },
  54308. {
  54309. name: "Size Difference",
  54310. height: math.unit(13, "feet")
  54311. },
  54312. {
  54313. name: "Macro",
  54314. height: math.unit(60, "feet")
  54315. },
  54316. {
  54317. name: "Mega Macro",
  54318. height: math.unit(200, "feet")
  54319. },
  54320. ]
  54321. ))
  54322. characterMakers.push(() => makeCharacter(
  54323. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54324. {
  54325. back: {
  54326. height: math.unit(6, "feet"),
  54327. name: "Back",
  54328. image: {
  54329. source: "./media/characters/flare/back.svg",
  54330. extra: 1883/1765,
  54331. bottom: 32/1915
  54332. }
  54333. },
  54334. },
  54335. [
  54336. {
  54337. name: "Normal",
  54338. height: math.unit(6 + 2/12, "feet"),
  54339. default: true
  54340. },
  54341. {
  54342. name: "Size Difference",
  54343. height: math.unit(13, "feet")
  54344. },
  54345. {
  54346. name: "Macro",
  54347. height: math.unit(60, "feet")
  54348. },
  54349. {
  54350. name: "Macro 2",
  54351. height: math.unit(100, "feet")
  54352. },
  54353. {
  54354. name: "Mega Macro",
  54355. height: math.unit(200, "feet")
  54356. },
  54357. ]
  54358. ))
  54359. characterMakers.push(() => makeCharacter(
  54360. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54361. {
  54362. front: {
  54363. height: math.unit(2.2, "m"),
  54364. weight: math.unit(300, "kg"),
  54365. name: "Front",
  54366. image: {
  54367. source: "./media/characters/hanna/front.svg",
  54368. extra: 1696/1502,
  54369. bottom: 206/1902
  54370. }
  54371. },
  54372. },
  54373. [
  54374. {
  54375. name: "Humanoid",
  54376. height: math.unit(2.2, "meters")
  54377. },
  54378. {
  54379. name: "Normal",
  54380. height: math.unit(4.8, "meters"),
  54381. default: true
  54382. },
  54383. ]
  54384. ))
  54385. characterMakers.push(() => makeCharacter(
  54386. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54387. {
  54388. front: {
  54389. height: math.unit(2.8, "meters"),
  54390. name: "Front",
  54391. image: {
  54392. source: "./media/characters/argo/front.svg",
  54393. extra: 731/518,
  54394. bottom: 84/815
  54395. }
  54396. },
  54397. },
  54398. [
  54399. {
  54400. name: "Normal",
  54401. height: math.unit(3, "meters"),
  54402. default: true
  54403. },
  54404. ]
  54405. ))
  54406. characterMakers.push(() => makeCharacter(
  54407. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54408. {
  54409. side: {
  54410. height: math.unit(3.8, "meters"),
  54411. name: "Side",
  54412. image: {
  54413. source: "./media/characters/sybil/side.svg",
  54414. extra: 382/361,
  54415. bottom: 25/407
  54416. }
  54417. },
  54418. },
  54419. [
  54420. {
  54421. name: "Normal",
  54422. height: math.unit(3.8, "meters"),
  54423. default: true
  54424. },
  54425. ]
  54426. ))
  54427. characterMakers.push(() => makeCharacter(
  54428. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54429. {
  54430. side: {
  54431. height: math.unit(6, "meters"),
  54432. name: "Side",
  54433. image: {
  54434. source: "./media/characters/plum/side.svg",
  54435. extra: 858/755,
  54436. bottom: 45/903
  54437. },
  54438. form: "taur",
  54439. default: true
  54440. },
  54441. back: {
  54442. height: math.unit(6.3, "meters"),
  54443. name: "Back",
  54444. image: {
  54445. source: "./media/characters/plum/back.svg",
  54446. extra: 887/813,
  54447. bottom: 32/919
  54448. },
  54449. form: "taur",
  54450. },
  54451. feral: {
  54452. height: math.unit(5.5, "meter"),
  54453. name: "Front",
  54454. image: {
  54455. source: "./media/characters/plum/feral.svg",
  54456. extra: 568/403,
  54457. bottom: 51/619
  54458. },
  54459. form: "feral",
  54460. default: true
  54461. },
  54462. head: {
  54463. height: math.unit(1.46, "meter"),
  54464. name: "Head",
  54465. image: {
  54466. source: "./media/characters/plum/head.svg"
  54467. },
  54468. form: "taur"
  54469. },
  54470. tailTop: {
  54471. height: math.unit(5.6, "meter"),
  54472. name: "Tail (Top)",
  54473. image: {
  54474. source: "./media/characters/plum/tail-top.svg"
  54475. },
  54476. form: "taur",
  54477. },
  54478. tailBottom: {
  54479. height: math.unit(5.6, "meter"),
  54480. name: "Tail (Bottom)",
  54481. image: {
  54482. source: "./media/characters/plum/tail-bottom.svg"
  54483. },
  54484. form: "taur",
  54485. },
  54486. feralHead: {
  54487. height: math.unit(2.56549521, "meter"),
  54488. name: "Head",
  54489. image: {
  54490. source: "./media/characters/plum/head.svg"
  54491. },
  54492. form: "feral"
  54493. },
  54494. feralTailTop: {
  54495. height: math.unit(5.44728435, "meter"),
  54496. name: "Tail (Top)",
  54497. image: {
  54498. source: "./media/characters/plum/tail-top.svg"
  54499. },
  54500. form: "feral",
  54501. },
  54502. feralTailBottom: {
  54503. height: math.unit(5.44728435, "meter"),
  54504. name: "Tail (Bottom)",
  54505. image: {
  54506. source: "./media/characters/plum/tail-bottom.svg"
  54507. },
  54508. form: "feral",
  54509. },
  54510. },
  54511. [
  54512. {
  54513. name: "Normal",
  54514. height: math.unit(6, "meters"),
  54515. default: true,
  54516. form: "taur"
  54517. },
  54518. {
  54519. name: "Normal",
  54520. height: math.unit(5.5, "meters"),
  54521. default: true,
  54522. form: "feral"
  54523. },
  54524. ],
  54525. {
  54526. "taur": {
  54527. name: "Taur",
  54528. default: true
  54529. },
  54530. "feral": {
  54531. name: "Feral",
  54532. },
  54533. }
  54534. ))
  54535. characterMakers.push(() => makeCharacter(
  54536. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54537. {
  54538. front: {
  54539. height: math.unit(6, "feet"),
  54540. weight: math.unit(115, "lb"),
  54541. name: "Front",
  54542. image: {
  54543. source: "./media/characters/celeste-kitsune/front.svg",
  54544. extra: 393/366,
  54545. bottom: 7/400
  54546. }
  54547. },
  54548. side: {
  54549. height: math.unit(6, "feet"),
  54550. weight: math.unit(115, "lb"),
  54551. name: "Side",
  54552. image: {
  54553. source: "./media/characters/celeste-kitsune/side.svg",
  54554. extra: 818/765,
  54555. bottom: 40/858
  54556. }
  54557. },
  54558. },
  54559. [
  54560. {
  54561. name: "Megamacro",
  54562. height: math.unit(1500, "miles"),
  54563. default: true
  54564. },
  54565. ]
  54566. ))
  54567. characterMakers.push(() => makeCharacter(
  54568. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54569. {
  54570. front: {
  54571. height: math.unit(8, "meters"),
  54572. name: "Front",
  54573. image: {
  54574. source: "./media/characters/io/front.svg",
  54575. extra: 865/722,
  54576. bottom: 58/923
  54577. }
  54578. },
  54579. back: {
  54580. height: math.unit(8, "meters"),
  54581. name: "Back",
  54582. image: {
  54583. source: "./media/characters/io/back.svg",
  54584. extra: 920/776,
  54585. bottom: 42/962
  54586. }
  54587. },
  54588. head: {
  54589. height: math.unit(5.09, "meters"),
  54590. name: "Head",
  54591. image: {
  54592. source: "./media/characters/io/head.svg"
  54593. }
  54594. },
  54595. hand: {
  54596. height: math.unit(1.6, "meters"),
  54597. name: "Hand",
  54598. image: {
  54599. source: "./media/characters/io/hand.svg"
  54600. }
  54601. },
  54602. foot: {
  54603. height: math.unit(2.4, "meters"),
  54604. name: "Foot",
  54605. image: {
  54606. source: "./media/characters/io/foot.svg"
  54607. }
  54608. },
  54609. },
  54610. [
  54611. {
  54612. name: "Normal",
  54613. height: math.unit(8, "meters"),
  54614. default: true
  54615. },
  54616. ]
  54617. ))
  54618. characterMakers.push(() => makeCharacter(
  54619. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54620. {
  54621. side: {
  54622. height: math.unit(6 + 3/12, "feet"),
  54623. weight: math.unit(225, "lb"),
  54624. name: "Side",
  54625. image: {
  54626. source: "./media/characters/silas/side.svg",
  54627. extra: 703/653,
  54628. bottom: 23/726
  54629. },
  54630. extraAttributes: {
  54631. "pawLength": {
  54632. name: "Paw Length",
  54633. power: 1,
  54634. type: "length",
  54635. base: math.unit(12, "inches")
  54636. },
  54637. "pawWidth": {
  54638. name: "Paw Width",
  54639. power: 1,
  54640. type: "length",
  54641. base: math.unit(4.5, "inches")
  54642. },
  54643. "pawArea": {
  54644. name: "Paw Area",
  54645. power: 2,
  54646. type: "area",
  54647. base: math.unit(12 * 4.5, "inches^2")
  54648. },
  54649. }
  54650. },
  54651. },
  54652. [
  54653. {
  54654. name: "Normal",
  54655. height: math.unit(6 + 3/12, "feet"),
  54656. default: true
  54657. },
  54658. ]
  54659. ))
  54660. characterMakers.push(() => makeCharacter(
  54661. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54662. {
  54663. back: {
  54664. height: math.unit(1.6, "meters"),
  54665. weight: math.unit(150, "lb"),
  54666. name: "Back",
  54667. image: {
  54668. source: "./media/characters/zari/back.svg",
  54669. extra: 424/411,
  54670. bottom: 32/456
  54671. },
  54672. extraAttributes: {
  54673. "bladderCapacity": {
  54674. name: "Bladder Size",
  54675. power: 3,
  54676. type: "volume",
  54677. base: math.unit(500, "mL")
  54678. },
  54679. "bladderFlow": {
  54680. name: "Flow Rate",
  54681. power: 3,
  54682. type: "volume",
  54683. base: math.unit(25, "mL")
  54684. },
  54685. }
  54686. },
  54687. },
  54688. [
  54689. {
  54690. name: "Normal",
  54691. height: math.unit(1.6, "meters"),
  54692. default: true
  54693. },
  54694. ]
  54695. ))
  54696. characterMakers.push(() => makeCharacter(
  54697. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54698. {
  54699. front: {
  54700. height: math.unit(25, "feet"),
  54701. weight: math.unit(5, "tons"),
  54702. name: "Front",
  54703. image: {
  54704. source: "./media/characters/charlie-human/front.svg",
  54705. extra: 1870/1740,
  54706. bottom: 102/1972
  54707. },
  54708. extraAttributes: {
  54709. "dickLength": {
  54710. name: "Dick Length",
  54711. power: 1,
  54712. type: "length",
  54713. base: math.unit(9, "feet")
  54714. },
  54715. }
  54716. },
  54717. back: {
  54718. height: math.unit(25, "feet"),
  54719. weight: math.unit(5, "tons"),
  54720. name: "Back",
  54721. image: {
  54722. source: "./media/characters/charlie-human/back.svg",
  54723. extra: 1858/1733,
  54724. bottom: 105/1963
  54725. },
  54726. extraAttributes: {
  54727. "dickLength": {
  54728. name: "Dick Length",
  54729. power: 1,
  54730. type: "length",
  54731. base: math.unit(9, "feet")
  54732. },
  54733. }
  54734. },
  54735. },
  54736. [
  54737. {
  54738. name: "\"Normal\"",
  54739. height: math.unit(6 + 4/12, "feet")
  54740. },
  54741. {
  54742. name: "Big",
  54743. height: math.unit(25, "feet"),
  54744. default: true
  54745. },
  54746. ]
  54747. ))
  54748. characterMakers.push(() => makeCharacter(
  54749. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54750. {
  54751. front: {
  54752. height: math.unit(6 + 4/12, "feet"),
  54753. weight: math.unit(320, "lb"),
  54754. name: "Front",
  54755. image: {
  54756. source: "./media/characters/ookitsu/front.svg",
  54757. extra: 1160/976,
  54758. bottom: 38/1198
  54759. }
  54760. },
  54761. frontNsfw: {
  54762. height: math.unit(6 + 4/12, "feet"),
  54763. weight: math.unit(320, "lb"),
  54764. name: "Front (NSFW)",
  54765. image: {
  54766. source: "./media/characters/ookitsu/front-nsfw.svg",
  54767. extra: 1160/976,
  54768. bottom: 38/1198
  54769. }
  54770. },
  54771. back: {
  54772. height: math.unit(6 + 4/12, "feet"),
  54773. weight: math.unit(320, "lb"),
  54774. name: "Back",
  54775. image: {
  54776. source: "./media/characters/ookitsu/back.svg",
  54777. extra: 1030/975,
  54778. bottom: 70/1100
  54779. }
  54780. },
  54781. head: {
  54782. height: math.unit(1.79, "feet"),
  54783. name: "Head",
  54784. image: {
  54785. source: "./media/characters/ookitsu/head.svg"
  54786. }
  54787. },
  54788. hand: {
  54789. height: math.unit(0.92, "feet"),
  54790. name: "Hand",
  54791. image: {
  54792. source: "./media/characters/ookitsu/hand.svg"
  54793. }
  54794. },
  54795. tails: {
  54796. height: math.unit(3.3, "feet"),
  54797. name: "Tails",
  54798. image: {
  54799. source: "./media/characters/ookitsu/tails.svg"
  54800. }
  54801. },
  54802. dick: {
  54803. height: math.unit(1.10833, "feet"),
  54804. name: "Dick",
  54805. image: {
  54806. source: "./media/characters/ookitsu/dick.svg"
  54807. }
  54808. },
  54809. },
  54810. [
  54811. {
  54812. name: "Normal",
  54813. height: math.unit(6 + 4/12, "feet"),
  54814. default: true
  54815. },
  54816. {
  54817. name: "Macro",
  54818. height: math.unit(30, "feet")
  54819. },
  54820. ]
  54821. ))
  54822. characterMakers.push(() => makeCharacter(
  54823. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54824. {
  54825. anthroFront: {
  54826. height: math.unit(6, "feet"),
  54827. weight: math.unit(250, "lb"),
  54828. name: "Front",
  54829. image: {
  54830. source: "./media/characters/jhusky/anthro-front.svg",
  54831. extra: 474/439,
  54832. bottom: 7/481
  54833. },
  54834. form: "anthro",
  54835. default: true
  54836. },
  54837. taurSideSfw: {
  54838. height: math.unit(6 + 4/12, "feet"),
  54839. weight: math.unit(500, "lb"),
  54840. name: "Side (SFW)",
  54841. image: {
  54842. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54843. extra: 1741/1629,
  54844. bottom: 196/1937
  54845. },
  54846. form: "taur",
  54847. default: true
  54848. },
  54849. taurSideNsfw: {
  54850. height: math.unit(6 + 4/12, "feet"),
  54851. weight: math.unit(500, "lb"),
  54852. name: "Taur (NSFW)",
  54853. image: {
  54854. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54855. extra: 1741/1629,
  54856. bottom: 196/1937
  54857. },
  54858. form: "taur",
  54859. },
  54860. },
  54861. [
  54862. {
  54863. name: "Huge",
  54864. height: math.unit(500, "feet"),
  54865. form: "anthro"
  54866. },
  54867. {
  54868. name: "Macro",
  54869. height: math.unit(1000, "feet"),
  54870. default: true,
  54871. form: "anthro"
  54872. },
  54873. {
  54874. name: "Megamacro",
  54875. height: math.unit(10000, "feet"),
  54876. form: "anthro"
  54877. },
  54878. {
  54879. name: "Huge",
  54880. height: math.unit(528, "feet"),
  54881. form: "taur"
  54882. },
  54883. {
  54884. name: "Macro",
  54885. height: math.unit(1056, "feet"),
  54886. default: true,
  54887. form: "taur"
  54888. },
  54889. {
  54890. name: "Megamacro",
  54891. height: math.unit(10556, "feet"),
  54892. form: "taur"
  54893. },
  54894. ],
  54895. {
  54896. "anthro": {
  54897. name: "Anthro",
  54898. default: true
  54899. },
  54900. "taur": {
  54901. name: "Taur",
  54902. },
  54903. }
  54904. ))
  54905. characterMakers.push(() => makeCharacter(
  54906. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54907. {
  54908. front: {
  54909. height: math.unit(8, "feet"),
  54910. weight: math.unit(500, "lb"),
  54911. name: "Front",
  54912. image: {
  54913. source: "./media/characters/armail/front.svg",
  54914. extra: 1753/1669,
  54915. bottom: 155/1908
  54916. }
  54917. },
  54918. back: {
  54919. height: math.unit(8, "feet"),
  54920. weight: math.unit(500, "lb"),
  54921. name: "Back",
  54922. image: {
  54923. source: "./media/characters/armail/back.svg",
  54924. extra: 1872/1803,
  54925. bottom: 63/1935
  54926. }
  54927. },
  54928. },
  54929. [
  54930. {
  54931. name: "Micro",
  54932. height: math.unit(0.25, "feet")
  54933. },
  54934. {
  54935. name: "Normal",
  54936. height: math.unit(8, "feet"),
  54937. default: true
  54938. },
  54939. {
  54940. name: "Mini-macro",
  54941. height: math.unit(30, "feet")
  54942. },
  54943. {
  54944. name: "Macro",
  54945. height: math.unit(400, "feet")
  54946. },
  54947. {
  54948. name: "Mega-macro",
  54949. height: math.unit(6000, "feet")
  54950. },
  54951. ]
  54952. ))
  54953. characterMakers.push(() => makeCharacter(
  54954. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54955. {
  54956. front: {
  54957. height: math.unit(6 + 7/12, "feet"),
  54958. weight: math.unit(210, "lb"),
  54959. name: "Front",
  54960. image: {
  54961. source: "./media/characters/wilfred-t-buxton/front.svg",
  54962. extra: 1068/882,
  54963. bottom: 28/1096
  54964. }
  54965. },
  54966. },
  54967. [
  54968. {
  54969. name: "Normal",
  54970. height: math.unit(6 + 7/12, "feet"),
  54971. default: true
  54972. },
  54973. ]
  54974. ))
  54975. //characters
  54976. function makeCharacters() {
  54977. const results = [];
  54978. characterMakers.forEach(character => {
  54979. results.push(character());
  54980. });
  54981. return results;
  54982. }